@deliverart/sdk-js-core 2.16.3 → 2.17.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -22,7 +22,7 @@ declare abstract class AbstractApiRequest<TInputSchema extends ZodType<any, any,
|
|
|
22
22
|
*/
|
|
23
23
|
pagination?: boolean;
|
|
24
24
|
} | undefined;
|
|
25
|
-
abstract readonly method: 'GET' | 'POST' | 'PATCH' | 'DELETE';
|
|
25
|
+
abstract readonly method: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE';
|
|
26
26
|
abstract readonly contentType: 'application/json' | 'multipart/form-data' | 'application/merge-patch+json';
|
|
27
27
|
abstract readonly accept: 'application/json';
|
|
28
28
|
abstract readonly inputSchema: TInputSchema;
|
package/dist/index.d.ts
CHANGED
|
@@ -22,7 +22,7 @@ declare abstract class AbstractApiRequest<TInputSchema extends ZodType<any, any,
|
|
|
22
22
|
*/
|
|
23
23
|
pagination?: boolean;
|
|
24
24
|
} | undefined;
|
|
25
|
-
abstract readonly method: 'GET' | 'POST' | 'PATCH' | 'DELETE';
|
|
25
|
+
abstract readonly method: 'GET' | 'POST' | 'PUT' | 'PATCH' | 'DELETE';
|
|
26
26
|
abstract readonly contentType: 'application/json' | 'multipart/form-data' | 'application/merge-patch+json';
|
|
27
27
|
abstract readonly accept: 'application/json';
|
|
28
28
|
abstract readonly inputSchema: TInputSchema;
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deliverart/sdk-js-core",
|
|
3
3
|
"description": "Core SDK for DeliverArt, providing essential functionalities and utilities.",
|
|
4
|
-
"version": "2.
|
|
4
|
+
"version": "2.17.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -25,7 +25,7 @@
|
|
|
25
25
|
},
|
|
26
26
|
"devDependencies": {
|
|
27
27
|
"@types/qs": "^6.14.0",
|
|
28
|
-
"@deliverart/sdk-js-global-types": "2.
|
|
28
|
+
"@deliverart/sdk-js-global-types": "2.17.0"
|
|
29
29
|
},
|
|
30
30
|
"scripts": {
|
|
31
31
|
"build": "tsup src/index.ts --dts --format esm,cjs",
|