npm package diff

Package: @forge/sql

Versions: 2.4.3-next.0-experimental-f55f6f2 - 2.5.0-next.1

Modified: package/out/sql.js

Index: package/out/sql.js
===================================================================
--- package/out/sql.js
+++ package/out/sql.js
@@ -46,12 +46,9 @@
     async executeRaw(query) {
         return await this.prepare(query, exports.SQL_API_ENDPOINTS.EXECUTE).execute();
     }
     async _provision() {
-        const response = await this.sendRequest('/api/v1/provision', {
-            method: 'POST'
-        });
-        await (0, error_handling_1.checkResponseError)(response, 'Unexpected error in provision request');
+        return;
     }
     async executeDDL(query) {
         return await this.prepare(query, exports.SQL_API_ENDPOINTS.EXECUTE_DDL).execute();
     }

Modified: package/out/__test__/sql.test.js

Index: package/out/__test__/sql.test.js
===================================================================
--- package/out/__test__/sql.test.js
+++ package/out/__test__/sql.test.js
@@ -138,37 +138,20 @@
             await expect(sqlClient.executeRaw('INVALID SQL QUERY')).rejects.toThrow(new errors_1.ForgeSQLAPIError(mockResponse, forgeError));
         });
     });
     describe('_provision', () => {
-        it('should work if the response is a 201', async () => {
+        it('should do nothing', async () => {
             const mockResponse = new Response(JSON.stringify({ success: true }), {
                 status: 201,
                 statusText: 'OK'
             });
             mockFetch.mockResolvedValue(mockResponse);
-            await sqlClient._provision();
-            expect(mockFetch).toHaveBeenCalledWith('/api/v1/provision', expect.objectContaining({ method: 'POST' }));
+            await expect(sqlClient._provision()).resolves.toBeUndefined();
+            expect(mockFetch).not.toHaveBeenCalled();
         });
-        it('should work if the response is a 204', async () => {
-            const mockResponse = new Response(undefined, {
-                status: 204,
-                statusText: 'OK'
-            });
-            mockFetch.mockResolvedValue(mockResponse);
-            await sqlClient._provision();
-            expect(mockFetch).toHaveBeenCalledWith('/api/v1/provision', expect.objectContaining({ method: 'POST' }));
-        });
-        it('should throw an error if the response is not 201 or 204', async () => {
-            const mockResponse = new Response('Server Error', {
-                status: 500,
-                statusText: 'Bad Request'
-            });
-            mockFetch.mockResolvedValue(mockResponse);
-            await expect(sqlClient._provision()).rejects.toThrow('Unexpected error in provision request');
-        });
     });
     describe('executeDDL', () => {
-        it('should return a valid Result object when DDL query gexecuted successfully', async () => {
+        it('should return a valid Result object when DDL query executed successfully', async () => {
             const mockResponse = {
                 ok: true,
                 status: 200,
                 text: jest.fn().mockResolvedValue(JSON.stringify({ success: true }))

Modified: package/package.json

Index: package/package.json
===================================================================
--- package/package.json
+++ package/package.json
@@ -1,7 +1,7 @@
 {
   "name": "@forge/sql",
-  "version": "2.4.3-next.0-experimental-f55f6f2",
+  "version": "2.5.0-next.1",
   "description": "Forge SQL sdk",
   "author": "Atlassian",
   "license": "SEE LICENSE IN LICENSE.txt",
   "main": "out/index.js",
@@ -19,9 +19,9 @@
     "expect-type": "^0.17.3",
     "jest-when": "^3.6.0"
   },
   "dependencies": {
-    "@forge/api": "^5.2.0-next.0-experimental-f55f6f2"
+    "@forge/api": "^5.2.0-next.0"
   },
   "publishConfig": {
     "registry": "https://packages.atlassian.com/api/npm/npm-public/"
   }

Modified: package/out/sql.d.ts.map

Index: package/out/sql.d.ts.map
===================================================================
--- package/out/sql.d.ts.map
+++ package/out/sql.d.ts.map
@@ -1,1 +1,1 @@
-{"version":3,"file":"sql.d.ts","sourceRoot":"","sources":["../src/sql.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACvC,OAAO,EAAgC,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAI7E,eAAO,MAAM,iBAAiB;;;CAGpB,CAAC;AAEX,aAAK,eAAe,GAAG,CAAC,OAAO,iBAAiB,CAAC,CAAC,MAAM,OAAO,iBAAiB,CAAC,CAAC;AAElF,qBAAa,SAAS;YACN,WAAW;YAYX,UAAU;YAsBV,qBAAqB;IAYnC,OAAO,CAAC,QAAQ,EACd,KAAK,EAAE,MAAM,EACb,QAAQ,GAAE,eAA2C,GACpD,YAAY,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;IAU3B,UAAU,CAAC,QAAQ,EAAE,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;IAK9D,UAAU,IAAI,OAAO,CAAC,IAAI,CAAC;IAkB3B,UAAU,CAAC,QAAQ,EAAE,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;CAGrE;AAED,eAAO,MAAM,GAAG,WAAkB,CAAC"}
\ No newline at end of file
+{"version":3,"file":"sql.d.ts","sourceRoot":"","sources":["../src/sql.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,MAAM,EAAE,MAAM,eAAe,CAAC;AACvC,OAAO,EAAgC,YAAY,EAAE,MAAM,iBAAiB,CAAC;AAI7E,eAAO,MAAM,iBAAiB;;;CAGpB,CAAC;AAEX,aAAK,eAAe,GAAG,CAAC,OAAO,iBAAiB,CAAC,CAAC,MAAM,OAAO,iBAAiB,CAAC,CAAC;AAElF,qBAAa,SAAS;YACN,WAAW;YAYX,UAAU;YAsBV,qBAAqB;IAYnC,OAAO,CAAC,QAAQ,EACd,KAAK,EAAE,MAAM,EACb,QAAQ,GAAE,eAA2C,GACpD,YAAY,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;IAU3B,UAAU,CAAC,QAAQ,EAAE,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;IAQ9D,UAAU,IAAI,OAAO,CAAC,IAAI,CAAC;IAY3B,UAAU,CAAC,QAAQ,EAAE,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC;CAGrE;AAED,eAAO,MAAM,GAAG,WAAkB,CAAC"}
\ No newline at end of file