@deliverart/sdk-js-sales-mode 2.2.0 → 2.2.1
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 +12 -12
- package/dist/index.d.ts +12 -12
- package/package.json +4 -4
package/dist/index.d.cts
CHANGED
|
@@ -144,12 +144,12 @@ declare const getSalesModesResponseSchema: z.ZodObject<{
|
|
|
144
144
|
updatedAt: z.ZodString;
|
|
145
145
|
}, z.core.$strip>>;
|
|
146
146
|
pagination: z.ZodObject<{
|
|
147
|
-
from: z.
|
|
148
|
-
to: z.
|
|
149
|
-
itemsPerPage: z.
|
|
150
|
-
totalItems: z.
|
|
151
|
-
currentPage: z.
|
|
152
|
-
lastPage: z.
|
|
147
|
+
from: z.ZodCoercedNumber<unknown>;
|
|
148
|
+
to: z.ZodCoercedNumber<unknown>;
|
|
149
|
+
itemsPerPage: z.ZodCoercedNumber<unknown>;
|
|
150
|
+
totalItems: z.ZodCoercedNumber<unknown>;
|
|
151
|
+
currentPage: z.ZodCoercedNumber<unknown>;
|
|
152
|
+
lastPage: z.ZodCoercedNumber<unknown>;
|
|
153
153
|
}, z.core.$strip>;
|
|
154
154
|
}, z.core.$strip>;
|
|
155
155
|
type GetSalesModesResponse = z.infer<typeof getSalesModesResponseSchema>;
|
|
@@ -167,12 +167,12 @@ declare class GetSalesModes extends AbstractApiRequest<typeof getSalesModesInput
|
|
|
167
167
|
updatedAt: z.ZodString;
|
|
168
168
|
}, z.core.$strip>>;
|
|
169
169
|
pagination: z.ZodObject<{
|
|
170
|
-
from: z.
|
|
171
|
-
to: z.
|
|
172
|
-
itemsPerPage: z.
|
|
173
|
-
totalItems: z.
|
|
174
|
-
currentPage: z.
|
|
175
|
-
lastPage: z.
|
|
170
|
+
from: z.ZodCoercedNumber<unknown>;
|
|
171
|
+
to: z.ZodCoercedNumber<unknown>;
|
|
172
|
+
itemsPerPage: z.ZodCoercedNumber<unknown>;
|
|
173
|
+
totalItems: z.ZodCoercedNumber<unknown>;
|
|
174
|
+
currentPage: z.ZodCoercedNumber<unknown>;
|
|
175
|
+
lastPage: z.ZodCoercedNumber<unknown>;
|
|
176
176
|
}, z.core.$strip>;
|
|
177
177
|
}, z.core.$strip>;
|
|
178
178
|
readonly querySchema: z.ZodObject<{
|
package/dist/index.d.ts
CHANGED
|
@@ -144,12 +144,12 @@ declare const getSalesModesResponseSchema: z.ZodObject<{
|
|
|
144
144
|
updatedAt: z.ZodString;
|
|
145
145
|
}, z.core.$strip>>;
|
|
146
146
|
pagination: z.ZodObject<{
|
|
147
|
-
from: z.
|
|
148
|
-
to: z.
|
|
149
|
-
itemsPerPage: z.
|
|
150
|
-
totalItems: z.
|
|
151
|
-
currentPage: z.
|
|
152
|
-
lastPage: z.
|
|
147
|
+
from: z.ZodCoercedNumber<unknown>;
|
|
148
|
+
to: z.ZodCoercedNumber<unknown>;
|
|
149
|
+
itemsPerPage: z.ZodCoercedNumber<unknown>;
|
|
150
|
+
totalItems: z.ZodCoercedNumber<unknown>;
|
|
151
|
+
currentPage: z.ZodCoercedNumber<unknown>;
|
|
152
|
+
lastPage: z.ZodCoercedNumber<unknown>;
|
|
153
153
|
}, z.core.$strip>;
|
|
154
154
|
}, z.core.$strip>;
|
|
155
155
|
type GetSalesModesResponse = z.infer<typeof getSalesModesResponseSchema>;
|
|
@@ -167,12 +167,12 @@ declare class GetSalesModes extends AbstractApiRequest<typeof getSalesModesInput
|
|
|
167
167
|
updatedAt: z.ZodString;
|
|
168
168
|
}, z.core.$strip>>;
|
|
169
169
|
pagination: z.ZodObject<{
|
|
170
|
-
from: z.
|
|
171
|
-
to: z.
|
|
172
|
-
itemsPerPage: z.
|
|
173
|
-
totalItems: z.
|
|
174
|
-
currentPage: z.
|
|
175
|
-
lastPage: z.
|
|
170
|
+
from: z.ZodCoercedNumber<unknown>;
|
|
171
|
+
to: z.ZodCoercedNumber<unknown>;
|
|
172
|
+
itemsPerPage: z.ZodCoercedNumber<unknown>;
|
|
173
|
+
totalItems: z.ZodCoercedNumber<unknown>;
|
|
174
|
+
currentPage: z.ZodCoercedNumber<unknown>;
|
|
175
|
+
lastPage: z.ZodCoercedNumber<unknown>;
|
|
176
176
|
}, z.core.$strip>;
|
|
177
177
|
}, z.core.$strip>;
|
|
178
178
|
readonly querySchema: z.ZodObject<{
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deliverart/sdk-js-sales-mode",
|
|
3
3
|
"description": "Deliverart JavaScript SDK for Sales Modes Management",
|
|
4
|
-
"version": "2.2.
|
|
4
|
+
"version": "2.2.1",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -18,9 +18,9 @@
|
|
|
18
18
|
"dist"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@deliverart/sdk-js-core": "2.2.
|
|
22
|
-
"@deliverart/sdk-js-
|
|
23
|
-
"@deliverart/sdk-js-
|
|
21
|
+
"@deliverart/sdk-js-core": "2.2.1",
|
|
22
|
+
"@deliverart/sdk-js-global-types": "2.2.1",
|
|
23
|
+
"@deliverart/sdk-js-point-of-sale": "2.2.1"
|
|
24
24
|
},
|
|
25
25
|
"publishConfig": {
|
|
26
26
|
"access": "public"
|