@deliverart/sdk-js-point-of-sale 2.6.1 → 2.6.3
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.cjs +5 -5
- package/dist/index.d.cts +20 -362
- package/dist/index.d.ts +20 -362
- package/dist/index.js +10 -10
- package/package.json +5 -5
package/dist/index.cjs
CHANGED
|
@@ -11577,7 +11577,7 @@ var import_sdk_js_core3 = require("@deliverart/sdk-js-core");
|
|
|
11577
11577
|
var import_sdk_js_global_types4 = require("@deliverart/sdk-js-global-types");
|
|
11578
11578
|
var getPointOfSaleUsersQuerySchema = pointOfSaleUsersQuerySchema;
|
|
11579
11579
|
var getPointOfSaleUsersInputSchema = external_exports.undefined();
|
|
11580
|
-
var getPointOfSaleUsersResponseSchema = (0, import_sdk_js_global_types4.
|
|
11580
|
+
var getPointOfSaleUsersResponseSchema = (0, import_sdk_js_global_types4.createPaginatedSchema)(pointOfSaleUserSchema);
|
|
11581
11581
|
var GetPointOfSaleUsers = class extends import_sdk_js_core3.AbstractApiRequest {
|
|
11582
11582
|
constructor(options) {
|
|
11583
11583
|
super(void 0, options);
|
|
@@ -11839,7 +11839,7 @@ var getPointOfSaleMenuVersionsQuerySchema = external_exports.object({
|
|
|
11839
11839
|
page: external_exports.coerce.number().optional()
|
|
11840
11840
|
});
|
|
11841
11841
|
var getPointOfSaleMenuVersionsInputSchema = external_exports.undefined();
|
|
11842
|
-
var getPointOfSaleMenuVersionsResponseSchema = (0, import_sdk_js_global_types6.
|
|
11842
|
+
var getPointOfSaleMenuVersionsResponseSchema = (0, import_sdk_js_global_types6.createPaginatedSchema)(menuVersionSchema);
|
|
11843
11843
|
var GetPointOfSaleMenuVersions = class extends import_sdk_js_core14.AbstractApiRequest {
|
|
11844
11844
|
constructor(pointOfSaleId, options) {
|
|
11845
11845
|
super(void 0, options);
|
|
@@ -11865,7 +11865,7 @@ var import_sdk_js_core15 = require("@deliverart/sdk-js-core");
|
|
|
11865
11865
|
var import_sdk_js_global_types7 = require("@deliverart/sdk-js-global-types");
|
|
11866
11866
|
var getPointOfSalesQuerySchema = pointOfSalesQuerySchema;
|
|
11867
11867
|
var getPointOfSalesInputSchema = external_exports.undefined();
|
|
11868
|
-
var getPointOfSalesResponseSchema = (0, import_sdk_js_global_types7.
|
|
11868
|
+
var getPointOfSalesResponseSchema = (0, import_sdk_js_global_types7.createPaginatedSchema)(pointOfSaleSchema);
|
|
11869
11869
|
var GetPointOfSales = class extends import_sdk_js_core15.AbstractApiRequest {
|
|
11870
11870
|
constructor(options) {
|
|
11871
11871
|
super(void 0, options);
|
|
@@ -11974,7 +11974,7 @@ var import_sdk_js_core20 = require("@deliverart/sdk-js-core");
|
|
|
11974
11974
|
var import_sdk_js_global_types9 = require("@deliverart/sdk-js-global-types");
|
|
11975
11975
|
var getPointOfSaleTimeOverridesQuerySchema = pointOfSaleTimeOverridesQuerySchema;
|
|
11976
11976
|
var getPointOfSaleTimeOverridesInputSchema = external_exports.undefined();
|
|
11977
|
-
var getPointOfSaleTimeOverridesResponseSchema = (0, import_sdk_js_global_types9.
|
|
11977
|
+
var getPointOfSaleTimeOverridesResponseSchema = (0, import_sdk_js_global_types9.createPaginatedSchema)(
|
|
11978
11978
|
pointOfSaleTimeOverrideSchema
|
|
11979
11979
|
);
|
|
11980
11980
|
var GetPointOfSaleTimeOverrides = class extends import_sdk_js_core20.AbstractApiRequest {
|
|
@@ -12000,7 +12000,7 @@ var import_sdk_js_core21 = require("@deliverart/sdk-js-core");
|
|
|
12000
12000
|
var import_sdk_js_global_types10 = require("@deliverart/sdk-js-global-types");
|
|
12001
12001
|
var getPointOfSaleTimeOverridesFromPointOfSaleQuerySchema = pointOfSaleTimeOverridesQuerySchema;
|
|
12002
12002
|
var getPointOfSaleTimeOverridesFromPointOfSaleInputSchema = external_exports.undefined();
|
|
12003
|
-
var getPointOfSaleTimeOverridesFromPointOfSaleResponseSchema = (0, import_sdk_js_global_types10.
|
|
12003
|
+
var getPointOfSaleTimeOverridesFromPointOfSaleResponseSchema = (0, import_sdk_js_global_types10.createPaginatedSchema)(
|
|
12004
12004
|
pointOfSaleTimeOverrideSchema
|
|
12005
12005
|
);
|
|
12006
12006
|
var GetPointOfSaleTimeOverridesFromPointOfSale = class extends import_sdk_js_core21.AbstractApiRequest {
|
package/dist/index.d.cts
CHANGED
|
@@ -1038,7 +1038,7 @@ declare const getPointOfSaleUsersQuerySchema: z.ZodObject<{
|
|
|
1038
1038
|
type GetPointOfSaleUsersQueryParams = z.infer<typeof getPointOfSaleUsersQuerySchema>;
|
|
1039
1039
|
declare const getPointOfSaleUsersInputSchema: z.ZodUndefined;
|
|
1040
1040
|
type GetPointOfSaleUsersInput = z.input<typeof getPointOfSaleUsersInputSchema>;
|
|
1041
|
-
declare const getPointOfSaleUsersResponseSchema: z.
|
|
1041
|
+
declare const getPointOfSaleUsersResponseSchema: z.ZodObject<{
|
|
1042
1042
|
data: z.ZodArray<z.ZodObject<{
|
|
1043
1043
|
id: z.ZodString;
|
|
1044
1044
|
user: z.ZodObject<{
|
|
@@ -1143,109 +1143,14 @@ declare const getPointOfSaleUsersResponseSchema: z.ZodUnion<readonly [z.ZodObjec
|
|
|
1143
1143
|
currentPage: z.ZodCoercedNumber<unknown>;
|
|
1144
1144
|
lastPage: z.ZodCoercedNumber<unknown>;
|
|
1145
1145
|
}, z.core.$strip>;
|
|
1146
|
-
}, z.core.$strip
|
|
1147
|
-
id: z.ZodString;
|
|
1148
|
-
user: z.ZodObject<{
|
|
1149
|
-
id: z.ZodString;
|
|
1150
|
-
firstName: z.ZodString;
|
|
1151
|
-
lastName: z.ZodString;
|
|
1152
|
-
email: z.ZodEmail;
|
|
1153
|
-
roles: z.ZodArray<z.ZodEnum<{
|
|
1154
|
-
ROLE_CUSTOMER_ACCESS: "ROLE_CUSTOMER_ACCESS";
|
|
1155
|
-
ROLE_BUNDLE_ACCESS: "ROLE_BUNDLE_ACCESS";
|
|
1156
|
-
ROLE_DELIVERY_ACCESS: "ROLE_DELIVERY_ACCESS";
|
|
1157
|
-
ROLE_POINT_OF_SALE_ACCESS: "ROLE_POINT_OF_SALE_ACCESS";
|
|
1158
|
-
ROLE_MENU_ACCESS: "ROLE_MENU_ACCESS";
|
|
1159
|
-
ROLE_INTEGRATION_ACCESS: "ROLE_INTEGRATION_ACCESS";
|
|
1160
|
-
ROLE_ORDER_ACCESS: "ROLE_ORDER_ACCESS";
|
|
1161
|
-
ROLE_LEAD_ACCESS: "ROLE_LEAD_ACCESS";
|
|
1162
|
-
ROLE_COMPANY_ACCESS: "ROLE_COMPANY_ACCESS";
|
|
1163
|
-
ROLE_USER_ACCESS: "ROLE_USER_ACCESS";
|
|
1164
|
-
ROLE_SUBSCRIPTION_ACCESS: "ROLE_SUBSCRIPTION_ACCESS";
|
|
1165
|
-
ROLE_PAYMENT_ACCESS: "ROLE_PAYMENT_ACCESS";
|
|
1166
|
-
ROLE_PAYMENT_CONFIG_ACCESS: "ROLE_PAYMENT_CONFIG_ACCESS";
|
|
1167
|
-
ROLE_DEV_ACCESS: "ROLE_DEV_ACCESS";
|
|
1168
|
-
ROLE_CUSTOMER_ADMIN: "ROLE_CUSTOMER_ADMIN";
|
|
1169
|
-
ROLE_BUNDLE_ADMIN: "ROLE_BUNDLE_ADMIN";
|
|
1170
|
-
ROLE_DELIVERY_ADMIN: "ROLE_DELIVERY_ADMIN";
|
|
1171
|
-
ROLE_POINT_OF_SALE_ADMIN: "ROLE_POINT_OF_SALE_ADMIN";
|
|
1172
|
-
ROLE_MENU_ADMIN: "ROLE_MENU_ADMIN";
|
|
1173
|
-
ROLE_INTEGRATION_ADMIN: "ROLE_INTEGRATION_ADMIN";
|
|
1174
|
-
ROLE_ORDER_ADMIN: "ROLE_ORDER_ADMIN";
|
|
1175
|
-
ROLE_LEAD_ADMIN: "ROLE_LEAD_ADMIN";
|
|
1176
|
-
ROLE_COMPANY_ADMIN: "ROLE_COMPANY_ADMIN";
|
|
1177
|
-
ROLE_USER_ADMIN: "ROLE_USER_ADMIN";
|
|
1178
|
-
ROLE_SUBSCRIPTION_ADMIN: "ROLE_SUBSCRIPTION_ADMIN";
|
|
1179
|
-
ROLE_PAYMENT_ADMIN: "ROLE_PAYMENT_ADMIN";
|
|
1180
|
-
ROLE_PAYMENT_CONFIG_ADMIN: "ROLE_PAYMENT_CONFIG_ADMIN";
|
|
1181
|
-
ROLE_DEV_ADMIN: "ROLE_DEV_ADMIN";
|
|
1182
|
-
ROLE_COURIER: "ROLE_COURIER";
|
|
1183
|
-
ROLE_CUSTOMER: "ROLE_CUSTOMER";
|
|
1184
|
-
ROLE_MANAGER: "ROLE_MANAGER";
|
|
1185
|
-
ROLE_SUPER_ADMIN: "ROLE_SUPER_ADMIN";
|
|
1186
|
-
ROLE_KITCHEN: "ROLE_KITCHEN";
|
|
1187
|
-
ROLE_USER: "ROLE_USER";
|
|
1188
|
-
}>>;
|
|
1189
|
-
completedSteps: z.ZodArray<z.ZodEnum<{
|
|
1190
|
-
registration: "registration";
|
|
1191
|
-
verify_email: "verify_email";
|
|
1192
|
-
create_company: "create_company";
|
|
1193
|
-
create_point_of_sale: "create_point_of_sale";
|
|
1194
|
-
}>>;
|
|
1195
|
-
emailVerified: z.ZodBoolean;
|
|
1196
|
-
suspended: z.ZodBoolean;
|
|
1197
|
-
createdAt: z.ZodString;
|
|
1198
|
-
updatedAt: z.ZodString;
|
|
1199
|
-
}, z.core.$strip>;
|
|
1200
|
-
pointOfSale: z.ZodObject<{
|
|
1201
|
-
id: z.ZodString;
|
|
1202
|
-
name: z.ZodString;
|
|
1203
|
-
address: z.ZodObject<{
|
|
1204
|
-
line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1205
|
-
line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1206
|
-
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1207
|
-
region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1208
|
-
postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1209
|
-
country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1210
|
-
}, z.core.$strip>;
|
|
1211
|
-
timezone: z.ZodString;
|
|
1212
|
-
location: z.ZodObject<{
|
|
1213
|
-
latitude: z.ZodNumber;
|
|
1214
|
-
longitude: z.ZodNumber;
|
|
1215
|
-
}, z.core.$strip>;
|
|
1216
|
-
capabilities: z.ZodArray<z.ZodEnum<{
|
|
1217
|
-
DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
|
|
1218
|
-
}>>;
|
|
1219
|
-
openingStatus: z.ZodEnum<{
|
|
1220
|
-
OPEN: "OPEN";
|
|
1221
|
-
CLOSED: "CLOSED";
|
|
1222
|
-
}>;
|
|
1223
|
-
nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
|
|
1224
|
-
currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
|
|
1225
|
-
integrationsStats: z.ZodObject<{
|
|
1226
|
-
integrationsCount: z.ZodCoercedNumber<unknown>;
|
|
1227
|
-
pendingIntegrationsCount: z.ZodCoercedNumber<unknown>;
|
|
1228
|
-
erroringIntegrationsCount: z.ZodCoercedNumber<unknown>;
|
|
1229
|
-
activationRequestsCount: z.ZodCoercedNumber<unknown>;
|
|
1230
|
-
cancellationRequestsCount: z.ZodCoercedNumber<unknown>;
|
|
1231
|
-
}, z.core.$strip>;
|
|
1232
|
-
createdAt: z.ZodString;
|
|
1233
|
-
updatedAt: z.ZodString;
|
|
1234
|
-
}, z.core.$strip>;
|
|
1235
|
-
role: z.ZodEnum<{
|
|
1236
|
-
ROLE_ADMIN: "ROLE_ADMIN";
|
|
1237
|
-
ROLE_READER: "ROLE_READER";
|
|
1238
|
-
}>;
|
|
1239
|
-
createdAt: z.ZodString;
|
|
1240
|
-
updatedAt: z.ZodString;
|
|
1241
|
-
}, z.core.$strip>>]>;
|
|
1146
|
+
}, z.core.$strip>;
|
|
1242
1147
|
type GetPointOfSaleUsersResponse = z.infer<typeof getPointOfSaleUsersResponseSchema>;
|
|
1243
1148
|
declare class GetPointOfSaleUsers extends AbstractApiRequest<typeof getPointOfSaleUsersInputSchema, typeof getPointOfSaleUsersResponseSchema, GetPointOfSaleUsersQueryParams> {
|
|
1244
1149
|
readonly method: "GET";
|
|
1245
1150
|
readonly contentType: "application/json";
|
|
1246
1151
|
readonly accept: "application/json";
|
|
1247
1152
|
readonly inputSchema: z.ZodUndefined;
|
|
1248
|
-
readonly outputSchema: z.
|
|
1153
|
+
readonly outputSchema: z.ZodObject<{
|
|
1249
1154
|
data: z.ZodArray<z.ZodObject<{
|
|
1250
1155
|
id: z.ZodString;
|
|
1251
1156
|
user: z.ZodObject<{
|
|
@@ -1350,102 +1255,7 @@ declare class GetPointOfSaleUsers extends AbstractApiRequest<typeof getPointOfSa
|
|
|
1350
1255
|
currentPage: z.ZodCoercedNumber<unknown>;
|
|
1351
1256
|
lastPage: z.ZodCoercedNumber<unknown>;
|
|
1352
1257
|
}, z.core.$strip>;
|
|
1353
|
-
}, z.core.$strip
|
|
1354
|
-
id: z.ZodString;
|
|
1355
|
-
user: z.ZodObject<{
|
|
1356
|
-
id: z.ZodString;
|
|
1357
|
-
firstName: z.ZodString;
|
|
1358
|
-
lastName: z.ZodString;
|
|
1359
|
-
email: z.ZodEmail;
|
|
1360
|
-
roles: z.ZodArray<z.ZodEnum<{
|
|
1361
|
-
ROLE_CUSTOMER_ACCESS: "ROLE_CUSTOMER_ACCESS";
|
|
1362
|
-
ROLE_BUNDLE_ACCESS: "ROLE_BUNDLE_ACCESS";
|
|
1363
|
-
ROLE_DELIVERY_ACCESS: "ROLE_DELIVERY_ACCESS";
|
|
1364
|
-
ROLE_POINT_OF_SALE_ACCESS: "ROLE_POINT_OF_SALE_ACCESS";
|
|
1365
|
-
ROLE_MENU_ACCESS: "ROLE_MENU_ACCESS";
|
|
1366
|
-
ROLE_INTEGRATION_ACCESS: "ROLE_INTEGRATION_ACCESS";
|
|
1367
|
-
ROLE_ORDER_ACCESS: "ROLE_ORDER_ACCESS";
|
|
1368
|
-
ROLE_LEAD_ACCESS: "ROLE_LEAD_ACCESS";
|
|
1369
|
-
ROLE_COMPANY_ACCESS: "ROLE_COMPANY_ACCESS";
|
|
1370
|
-
ROLE_USER_ACCESS: "ROLE_USER_ACCESS";
|
|
1371
|
-
ROLE_SUBSCRIPTION_ACCESS: "ROLE_SUBSCRIPTION_ACCESS";
|
|
1372
|
-
ROLE_PAYMENT_ACCESS: "ROLE_PAYMENT_ACCESS";
|
|
1373
|
-
ROLE_PAYMENT_CONFIG_ACCESS: "ROLE_PAYMENT_CONFIG_ACCESS";
|
|
1374
|
-
ROLE_DEV_ACCESS: "ROLE_DEV_ACCESS";
|
|
1375
|
-
ROLE_CUSTOMER_ADMIN: "ROLE_CUSTOMER_ADMIN";
|
|
1376
|
-
ROLE_BUNDLE_ADMIN: "ROLE_BUNDLE_ADMIN";
|
|
1377
|
-
ROLE_DELIVERY_ADMIN: "ROLE_DELIVERY_ADMIN";
|
|
1378
|
-
ROLE_POINT_OF_SALE_ADMIN: "ROLE_POINT_OF_SALE_ADMIN";
|
|
1379
|
-
ROLE_MENU_ADMIN: "ROLE_MENU_ADMIN";
|
|
1380
|
-
ROLE_INTEGRATION_ADMIN: "ROLE_INTEGRATION_ADMIN";
|
|
1381
|
-
ROLE_ORDER_ADMIN: "ROLE_ORDER_ADMIN";
|
|
1382
|
-
ROLE_LEAD_ADMIN: "ROLE_LEAD_ADMIN";
|
|
1383
|
-
ROLE_COMPANY_ADMIN: "ROLE_COMPANY_ADMIN";
|
|
1384
|
-
ROLE_USER_ADMIN: "ROLE_USER_ADMIN";
|
|
1385
|
-
ROLE_SUBSCRIPTION_ADMIN: "ROLE_SUBSCRIPTION_ADMIN";
|
|
1386
|
-
ROLE_PAYMENT_ADMIN: "ROLE_PAYMENT_ADMIN";
|
|
1387
|
-
ROLE_PAYMENT_CONFIG_ADMIN: "ROLE_PAYMENT_CONFIG_ADMIN";
|
|
1388
|
-
ROLE_DEV_ADMIN: "ROLE_DEV_ADMIN";
|
|
1389
|
-
ROLE_COURIER: "ROLE_COURIER";
|
|
1390
|
-
ROLE_CUSTOMER: "ROLE_CUSTOMER";
|
|
1391
|
-
ROLE_MANAGER: "ROLE_MANAGER";
|
|
1392
|
-
ROLE_SUPER_ADMIN: "ROLE_SUPER_ADMIN";
|
|
1393
|
-
ROLE_KITCHEN: "ROLE_KITCHEN";
|
|
1394
|
-
ROLE_USER: "ROLE_USER";
|
|
1395
|
-
}>>;
|
|
1396
|
-
completedSteps: z.ZodArray<z.ZodEnum<{
|
|
1397
|
-
registration: "registration";
|
|
1398
|
-
verify_email: "verify_email";
|
|
1399
|
-
create_company: "create_company";
|
|
1400
|
-
create_point_of_sale: "create_point_of_sale";
|
|
1401
|
-
}>>;
|
|
1402
|
-
emailVerified: z.ZodBoolean;
|
|
1403
|
-
suspended: z.ZodBoolean;
|
|
1404
|
-
createdAt: z.ZodString;
|
|
1405
|
-
updatedAt: z.ZodString;
|
|
1406
|
-
}, z.core.$strip>;
|
|
1407
|
-
pointOfSale: z.ZodObject<{
|
|
1408
|
-
id: z.ZodString;
|
|
1409
|
-
name: z.ZodString;
|
|
1410
|
-
address: z.ZodObject<{
|
|
1411
|
-
line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1412
|
-
line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1413
|
-
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1414
|
-
region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1415
|
-
postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1416
|
-
country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1417
|
-
}, z.core.$strip>;
|
|
1418
|
-
timezone: z.ZodString;
|
|
1419
|
-
location: z.ZodObject<{
|
|
1420
|
-
latitude: z.ZodNumber;
|
|
1421
|
-
longitude: z.ZodNumber;
|
|
1422
|
-
}, z.core.$strip>;
|
|
1423
|
-
capabilities: z.ZodArray<z.ZodEnum<{
|
|
1424
|
-
DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
|
|
1425
|
-
}>>;
|
|
1426
|
-
openingStatus: z.ZodEnum<{
|
|
1427
|
-
OPEN: "OPEN";
|
|
1428
|
-
CLOSED: "CLOSED";
|
|
1429
|
-
}>;
|
|
1430
|
-
nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
|
|
1431
|
-
currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
|
|
1432
|
-
integrationsStats: z.ZodObject<{
|
|
1433
|
-
integrationsCount: z.ZodCoercedNumber<unknown>;
|
|
1434
|
-
pendingIntegrationsCount: z.ZodCoercedNumber<unknown>;
|
|
1435
|
-
erroringIntegrationsCount: z.ZodCoercedNumber<unknown>;
|
|
1436
|
-
activationRequestsCount: z.ZodCoercedNumber<unknown>;
|
|
1437
|
-
cancellationRequestsCount: z.ZodCoercedNumber<unknown>;
|
|
1438
|
-
}, z.core.$strip>;
|
|
1439
|
-
createdAt: z.ZodString;
|
|
1440
|
-
updatedAt: z.ZodString;
|
|
1441
|
-
}, z.core.$strip>;
|
|
1442
|
-
role: z.ZodEnum<{
|
|
1443
|
-
ROLE_ADMIN: "ROLE_ADMIN";
|
|
1444
|
-
ROLE_READER: "ROLE_READER";
|
|
1445
|
-
}>;
|
|
1446
|
-
createdAt: z.ZodString;
|
|
1447
|
-
updatedAt: z.ZodString;
|
|
1448
|
-
}, z.core.$strip>>]>;
|
|
1258
|
+
}, z.core.$strip>;
|
|
1449
1259
|
readonly querySchema: z.ZodObject<{
|
|
1450
1260
|
availableForDelivery: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodBoolean>>;
|
|
1451
1261
|
'order[createdAt]': z.ZodOptional<z.ZodEnum<{
|
|
@@ -3207,7 +3017,7 @@ declare const getPointOfSaleMenuVersionsQuerySchema: z.ZodObject<{
|
|
|
3207
3017
|
type GetPointOfSaleMenuVersionsQueryParams = z.infer<typeof getPointOfSaleMenuVersionsQuerySchema>;
|
|
3208
3018
|
declare const getPointOfSaleMenuVersionsInputSchema: z.ZodUndefined;
|
|
3209
3019
|
type GetPointOfSaleMenuVersionsInput = z.infer<typeof getPointOfSaleMenuVersionsInputSchema>;
|
|
3210
|
-
declare const getPointOfSaleMenuVersionsResponseSchema: z.
|
|
3020
|
+
declare const getPointOfSaleMenuVersionsResponseSchema: z.ZodObject<{
|
|
3211
3021
|
data: z.ZodArray<z.ZodObject<{
|
|
3212
3022
|
id: z.ZodString;
|
|
3213
3023
|
contentUrl: z.ZodString;
|
|
@@ -3223,20 +3033,14 @@ declare const getPointOfSaleMenuVersionsResponseSchema: z.ZodUnion<readonly [z.Z
|
|
|
3223
3033
|
currentPage: z.ZodCoercedNumber<unknown>;
|
|
3224
3034
|
lastPage: z.ZodCoercedNumber<unknown>;
|
|
3225
3035
|
}, z.core.$strip>;
|
|
3226
|
-
}, z.core.$strip
|
|
3227
|
-
id: z.ZodString;
|
|
3228
|
-
contentUrl: z.ZodString;
|
|
3229
|
-
filePath: z.ZodString;
|
|
3230
|
-
createdAt: z.ZodString;
|
|
3231
|
-
updatedAt: z.ZodString;
|
|
3232
|
-
}, z.core.$strip>>]>;
|
|
3036
|
+
}, z.core.$strip>;
|
|
3233
3037
|
type GetPointOfSaleMenuVersionsResponse = z.infer<typeof getPointOfSaleMenuVersionsResponseSchema>;
|
|
3234
3038
|
declare class GetPointOfSaleMenuVersions extends AbstractApiRequest<typeof getPointOfSaleMenuVersionsInputSchema, typeof getPointOfSaleMenuVersionsResponseSchema, GetPointOfSaleMenuVersionsQueryParams> {
|
|
3235
3039
|
readonly method: "GET";
|
|
3236
3040
|
readonly contentType: "application/json";
|
|
3237
3041
|
readonly accept: "application/json";
|
|
3238
3042
|
readonly inputSchema: z.ZodUndefined;
|
|
3239
|
-
readonly outputSchema: z.
|
|
3043
|
+
readonly outputSchema: z.ZodObject<{
|
|
3240
3044
|
data: z.ZodArray<z.ZodObject<{
|
|
3241
3045
|
id: z.ZodString;
|
|
3242
3046
|
contentUrl: z.ZodString;
|
|
@@ -3252,13 +3056,7 @@ declare class GetPointOfSaleMenuVersions extends AbstractApiRequest<typeof getPo
|
|
|
3252
3056
|
currentPage: z.ZodCoercedNumber<unknown>;
|
|
3253
3057
|
lastPage: z.ZodCoercedNumber<unknown>;
|
|
3254
3058
|
}, z.core.$strip>;
|
|
3255
|
-
}, z.core.$strip
|
|
3256
|
-
id: z.ZodString;
|
|
3257
|
-
contentUrl: z.ZodString;
|
|
3258
|
-
filePath: z.ZodString;
|
|
3259
|
-
createdAt: z.ZodString;
|
|
3260
|
-
updatedAt: z.ZodString;
|
|
3261
|
-
}, z.core.$strip>>]>;
|
|
3059
|
+
}, z.core.$strip>;
|
|
3262
3060
|
readonly querySchema: z.ZodObject<{
|
|
3263
3061
|
page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
3264
3062
|
}, z.core.$strip>;
|
|
@@ -3304,7 +3102,7 @@ declare const getPointOfSalesQuerySchema: z.ZodObject<{
|
|
|
3304
3102
|
type GetPointOfSalesQueryParams = z.infer<typeof getPointOfSalesQuerySchema>;
|
|
3305
3103
|
declare const getPointOfSalesInputSchema: z.ZodUndefined;
|
|
3306
3104
|
type GetPointOfSalesInput = z.input<typeof getPointOfSalesInputSchema>;
|
|
3307
|
-
declare const getPointOfSalesResponseSchema: z.
|
|
3105
|
+
declare const getPointOfSalesResponseSchema: z.ZodObject<{
|
|
3308
3106
|
data: z.ZodArray<z.ZodObject<{
|
|
3309
3107
|
id: z.ZodString;
|
|
3310
3108
|
name: z.ZodString;
|
|
@@ -3348,48 +3146,14 @@ declare const getPointOfSalesResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
3348
3146
|
currentPage: z.ZodCoercedNumber<unknown>;
|
|
3349
3147
|
lastPage: z.ZodCoercedNumber<unknown>;
|
|
3350
3148
|
}, z.core.$strip>;
|
|
3351
|
-
}, z.core.$strip
|
|
3352
|
-
id: z.ZodString;
|
|
3353
|
-
name: z.ZodString;
|
|
3354
|
-
address: z.ZodObject<{
|
|
3355
|
-
line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3356
|
-
line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3357
|
-
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3358
|
-
region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3359
|
-
postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3360
|
-
country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3361
|
-
}, z.core.$strip>;
|
|
3362
|
-
timezone: z.ZodString;
|
|
3363
|
-
location: z.ZodObject<{
|
|
3364
|
-
latitude: z.ZodNumber;
|
|
3365
|
-
longitude: z.ZodNumber;
|
|
3366
|
-
}, z.core.$strip>;
|
|
3367
|
-
capabilities: z.ZodArray<z.ZodEnum<{
|
|
3368
|
-
DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
|
|
3369
|
-
}>>;
|
|
3370
|
-
openingStatus: z.ZodEnum<{
|
|
3371
|
-
OPEN: "OPEN";
|
|
3372
|
-
CLOSED: "CLOSED";
|
|
3373
|
-
}>;
|
|
3374
|
-
nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
|
|
3375
|
-
currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
|
|
3376
|
-
integrationsStats: z.ZodObject<{
|
|
3377
|
-
integrationsCount: z.ZodCoercedNumber<unknown>;
|
|
3378
|
-
pendingIntegrationsCount: z.ZodCoercedNumber<unknown>;
|
|
3379
|
-
erroringIntegrationsCount: z.ZodCoercedNumber<unknown>;
|
|
3380
|
-
activationRequestsCount: z.ZodCoercedNumber<unknown>;
|
|
3381
|
-
cancellationRequestsCount: z.ZodCoercedNumber<unknown>;
|
|
3382
|
-
}, z.core.$strip>;
|
|
3383
|
-
createdAt: z.ZodString;
|
|
3384
|
-
updatedAt: z.ZodString;
|
|
3385
|
-
}, z.core.$strip>>]>;
|
|
3149
|
+
}, z.core.$strip>;
|
|
3386
3150
|
type GetPointOfSalesResponse = z.infer<typeof getPointOfSalesResponseSchema>;
|
|
3387
3151
|
declare class GetPointOfSales extends AbstractApiRequest<typeof getPointOfSalesInputSchema, typeof getPointOfSalesResponseSchema, GetPointOfSalesQueryParams> {
|
|
3388
3152
|
readonly method: "GET";
|
|
3389
3153
|
readonly contentType: "application/json";
|
|
3390
3154
|
readonly accept: "application/json";
|
|
3391
3155
|
readonly inputSchema: z.ZodUndefined;
|
|
3392
|
-
readonly outputSchema: z.
|
|
3156
|
+
readonly outputSchema: z.ZodObject<{
|
|
3393
3157
|
data: z.ZodArray<z.ZodObject<{
|
|
3394
3158
|
id: z.ZodString;
|
|
3395
3159
|
name: z.ZodString;
|
|
@@ -3433,41 +3197,7 @@ declare class GetPointOfSales extends AbstractApiRequest<typeof getPointOfSalesI
|
|
|
3433
3197
|
currentPage: z.ZodCoercedNumber<unknown>;
|
|
3434
3198
|
lastPage: z.ZodCoercedNumber<unknown>;
|
|
3435
3199
|
}, z.core.$strip>;
|
|
3436
|
-
}, z.core.$strip
|
|
3437
|
-
id: z.ZodString;
|
|
3438
|
-
name: z.ZodString;
|
|
3439
|
-
address: z.ZodObject<{
|
|
3440
|
-
line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3441
|
-
line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3442
|
-
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3443
|
-
region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3444
|
-
postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3445
|
-
country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3446
|
-
}, z.core.$strip>;
|
|
3447
|
-
timezone: z.ZodString;
|
|
3448
|
-
location: z.ZodObject<{
|
|
3449
|
-
latitude: z.ZodNumber;
|
|
3450
|
-
longitude: z.ZodNumber;
|
|
3451
|
-
}, z.core.$strip>;
|
|
3452
|
-
capabilities: z.ZodArray<z.ZodEnum<{
|
|
3453
|
-
DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
|
|
3454
|
-
}>>;
|
|
3455
|
-
openingStatus: z.ZodEnum<{
|
|
3456
|
-
OPEN: "OPEN";
|
|
3457
|
-
CLOSED: "CLOSED";
|
|
3458
|
-
}>;
|
|
3459
|
-
nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
|
|
3460
|
-
currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
|
|
3461
|
-
integrationsStats: z.ZodObject<{
|
|
3462
|
-
integrationsCount: z.ZodCoercedNumber<unknown>;
|
|
3463
|
-
pendingIntegrationsCount: z.ZodCoercedNumber<unknown>;
|
|
3464
|
-
erroringIntegrationsCount: z.ZodCoercedNumber<unknown>;
|
|
3465
|
-
activationRequestsCount: z.ZodCoercedNumber<unknown>;
|
|
3466
|
-
cancellationRequestsCount: z.ZodCoercedNumber<unknown>;
|
|
3467
|
-
}, z.core.$strip>;
|
|
3468
|
-
createdAt: z.ZodString;
|
|
3469
|
-
updatedAt: z.ZodString;
|
|
3470
|
-
}, z.core.$strip>>]>;
|
|
3200
|
+
}, z.core.$strip>;
|
|
3471
3201
|
readonly querySchema: z.ZodObject<{
|
|
3472
3202
|
name: z.ZodOptional<z.ZodString>;
|
|
3473
3203
|
openingStatus: z.ZodOptional<z.ZodEnum<{
|
|
@@ -4105,7 +3835,7 @@ declare const getPointOfSaleTimeOverridesQuerySchema: z.ZodObject<{
|
|
|
4105
3835
|
type GetPointOfSaleTimeOverridesQueryParams = z.infer<typeof getPointOfSaleTimeOverridesQuerySchema>;
|
|
4106
3836
|
declare const getPointOfSaleTimeOverridesInputSchema: z.ZodUndefined;
|
|
4107
3837
|
type GetPointOfSaleTimeOverridesInput = z.input<typeof getPointOfSaleTimeOverridesInputSchema>;
|
|
4108
|
-
declare const getPointOfSaleTimeOverridesResponseSchema: z.
|
|
3838
|
+
declare const getPointOfSaleTimeOverridesResponseSchema: z.ZodObject<{
|
|
4109
3839
|
data: z.ZodArray<z.ZodObject<{
|
|
4110
3840
|
id: z.ZodString;
|
|
4111
3841
|
date: z.ZodString;
|
|
@@ -4133,32 +3863,14 @@ declare const getPointOfSaleTimeOverridesResponseSchema: z.ZodUnion<readonly [z.
|
|
|
4133
3863
|
currentPage: z.ZodCoercedNumber<unknown>;
|
|
4134
3864
|
lastPage: z.ZodCoercedNumber<unknown>;
|
|
4135
3865
|
}, z.core.$strip>;
|
|
4136
|
-
}, z.core.$strip
|
|
4137
|
-
id: z.ZodString;
|
|
4138
|
-
date: z.ZodString;
|
|
4139
|
-
openingTimeSettings: z.ZodArray<z.ZodObject<{
|
|
4140
|
-
startTime: z.ZodString;
|
|
4141
|
-
endTime: z.ZodString;
|
|
4142
|
-
}, z.core.$strip>>;
|
|
4143
|
-
deliveryTimeSettings: z.ZodArray<z.ZodObject<{
|
|
4144
|
-
startTime: z.ZodString;
|
|
4145
|
-
endTime: z.ZodString;
|
|
4146
|
-
availableCouriers: z.ZodCoercedNumber<unknown>;
|
|
4147
|
-
}, z.core.$strip>>;
|
|
4148
|
-
takeAwayTimeSettings: z.ZodArray<z.ZodObject<{
|
|
4149
|
-
startTime: z.ZodString;
|
|
4150
|
-
endTime: z.ZodString;
|
|
4151
|
-
}, z.core.$strip>>;
|
|
4152
|
-
createdAt: z.ZodString;
|
|
4153
|
-
updatedAt: z.ZodString;
|
|
4154
|
-
}, z.core.$strip>>]>;
|
|
3866
|
+
}, z.core.$strip>;
|
|
4155
3867
|
type GetPointOfSaleTimeOverridesResponse = z.infer<typeof getPointOfSaleTimeOverridesResponseSchema>;
|
|
4156
3868
|
declare class GetPointOfSaleTimeOverrides extends AbstractApiRequest<typeof getPointOfSaleTimeOverridesInputSchema, typeof getPointOfSaleTimeOverridesResponseSchema, GetPointOfSaleTimeOverridesQueryParams> {
|
|
4157
3869
|
readonly method: "GET";
|
|
4158
3870
|
readonly contentType: "application/json";
|
|
4159
3871
|
readonly accept: "application/json";
|
|
4160
3872
|
readonly inputSchema: z.ZodUndefined;
|
|
4161
|
-
readonly outputSchema: z.
|
|
3873
|
+
readonly outputSchema: z.ZodObject<{
|
|
4162
3874
|
data: z.ZodArray<z.ZodObject<{
|
|
4163
3875
|
id: z.ZodString;
|
|
4164
3876
|
date: z.ZodString;
|
|
@@ -4186,25 +3898,7 @@ declare class GetPointOfSaleTimeOverrides extends AbstractApiRequest<typeof getP
|
|
|
4186
3898
|
currentPage: z.ZodCoercedNumber<unknown>;
|
|
4187
3899
|
lastPage: z.ZodCoercedNumber<unknown>;
|
|
4188
3900
|
}, z.core.$strip>;
|
|
4189
|
-
}, z.core.$strip
|
|
4190
|
-
id: z.ZodString;
|
|
4191
|
-
date: z.ZodString;
|
|
4192
|
-
openingTimeSettings: z.ZodArray<z.ZodObject<{
|
|
4193
|
-
startTime: z.ZodString;
|
|
4194
|
-
endTime: z.ZodString;
|
|
4195
|
-
}, z.core.$strip>>;
|
|
4196
|
-
deliveryTimeSettings: z.ZodArray<z.ZodObject<{
|
|
4197
|
-
startTime: z.ZodString;
|
|
4198
|
-
endTime: z.ZodString;
|
|
4199
|
-
availableCouriers: z.ZodCoercedNumber<unknown>;
|
|
4200
|
-
}, z.core.$strip>>;
|
|
4201
|
-
takeAwayTimeSettings: z.ZodArray<z.ZodObject<{
|
|
4202
|
-
startTime: z.ZodString;
|
|
4203
|
-
endTime: z.ZodString;
|
|
4204
|
-
}, z.core.$strip>>;
|
|
4205
|
-
createdAt: z.ZodString;
|
|
4206
|
-
updatedAt: z.ZodString;
|
|
4207
|
-
}, z.core.$strip>>]>;
|
|
3901
|
+
}, z.core.$strip>;
|
|
4208
3902
|
readonly querySchema: z.ZodObject<{
|
|
4209
3903
|
'order[date]': z.ZodOptional<z.ZodEnum<{
|
|
4210
3904
|
asc: "asc";
|
|
@@ -4289,7 +3983,7 @@ declare const getPointOfSaleTimeOverridesFromPointOfSaleQuerySchema: z.ZodObject
|
|
|
4289
3983
|
type GetPointOfSaleTimeOverridesFromPointOfSaleQueryParams = z.infer<typeof getPointOfSaleTimeOverridesFromPointOfSaleQuerySchema>;
|
|
4290
3984
|
declare const getPointOfSaleTimeOverridesFromPointOfSaleInputSchema: z.ZodUndefined;
|
|
4291
3985
|
type GetPointOfSaleTimeOverridesFromPointOfSaleInput = z.input<typeof getPointOfSaleTimeOverridesFromPointOfSaleInputSchema>;
|
|
4292
|
-
declare const getPointOfSaleTimeOverridesFromPointOfSaleResponseSchema: z.
|
|
3986
|
+
declare const getPointOfSaleTimeOverridesFromPointOfSaleResponseSchema: z.ZodObject<{
|
|
4293
3987
|
data: z.ZodArray<z.ZodObject<{
|
|
4294
3988
|
id: z.ZodString;
|
|
4295
3989
|
date: z.ZodString;
|
|
@@ -4317,32 +4011,14 @@ declare const getPointOfSaleTimeOverridesFromPointOfSaleResponseSchema: z.ZodUni
|
|
|
4317
4011
|
currentPage: z.ZodCoercedNumber<unknown>;
|
|
4318
4012
|
lastPage: z.ZodCoercedNumber<unknown>;
|
|
4319
4013
|
}, z.core.$strip>;
|
|
4320
|
-
}, z.core.$strip
|
|
4321
|
-
id: z.ZodString;
|
|
4322
|
-
date: z.ZodString;
|
|
4323
|
-
openingTimeSettings: z.ZodArray<z.ZodObject<{
|
|
4324
|
-
startTime: z.ZodString;
|
|
4325
|
-
endTime: z.ZodString;
|
|
4326
|
-
}, z.core.$strip>>;
|
|
4327
|
-
deliveryTimeSettings: z.ZodArray<z.ZodObject<{
|
|
4328
|
-
startTime: z.ZodString;
|
|
4329
|
-
endTime: z.ZodString;
|
|
4330
|
-
availableCouriers: z.ZodCoercedNumber<unknown>;
|
|
4331
|
-
}, z.core.$strip>>;
|
|
4332
|
-
takeAwayTimeSettings: z.ZodArray<z.ZodObject<{
|
|
4333
|
-
startTime: z.ZodString;
|
|
4334
|
-
endTime: z.ZodString;
|
|
4335
|
-
}, z.core.$strip>>;
|
|
4336
|
-
createdAt: z.ZodString;
|
|
4337
|
-
updatedAt: z.ZodString;
|
|
4338
|
-
}, z.core.$strip>>]>;
|
|
4014
|
+
}, z.core.$strip>;
|
|
4339
4015
|
type GetPointOfSaleTimeOverridesFromPointOfSaleResponse = z.infer<typeof getPointOfSaleTimeOverridesFromPointOfSaleResponseSchema>;
|
|
4340
4016
|
declare class GetPointOfSaleTimeOverridesFromPointOfSale extends AbstractApiRequest<typeof getPointOfSaleTimeOverridesFromPointOfSaleInputSchema, typeof getPointOfSaleTimeOverridesFromPointOfSaleResponseSchema, GetPointOfSaleTimeOverridesFromPointOfSaleQueryParams> {
|
|
4341
4017
|
readonly method: "GET";
|
|
4342
4018
|
readonly contentType: "application/json";
|
|
4343
4019
|
readonly accept: "application/json";
|
|
4344
4020
|
readonly inputSchema: z.ZodUndefined;
|
|
4345
|
-
readonly outputSchema: z.
|
|
4021
|
+
readonly outputSchema: z.ZodObject<{
|
|
4346
4022
|
data: z.ZodArray<z.ZodObject<{
|
|
4347
4023
|
id: z.ZodString;
|
|
4348
4024
|
date: z.ZodString;
|
|
@@ -4370,25 +4046,7 @@ declare class GetPointOfSaleTimeOverridesFromPointOfSale extends AbstractApiRequ
|
|
|
4370
4046
|
currentPage: z.ZodCoercedNumber<unknown>;
|
|
4371
4047
|
lastPage: z.ZodCoercedNumber<unknown>;
|
|
4372
4048
|
}, z.core.$strip>;
|
|
4373
|
-
}, z.core.$strip
|
|
4374
|
-
id: z.ZodString;
|
|
4375
|
-
date: z.ZodString;
|
|
4376
|
-
openingTimeSettings: z.ZodArray<z.ZodObject<{
|
|
4377
|
-
startTime: z.ZodString;
|
|
4378
|
-
endTime: z.ZodString;
|
|
4379
|
-
}, z.core.$strip>>;
|
|
4380
|
-
deliveryTimeSettings: z.ZodArray<z.ZodObject<{
|
|
4381
|
-
startTime: z.ZodString;
|
|
4382
|
-
endTime: z.ZodString;
|
|
4383
|
-
availableCouriers: z.ZodCoercedNumber<unknown>;
|
|
4384
|
-
}, z.core.$strip>>;
|
|
4385
|
-
takeAwayTimeSettings: z.ZodArray<z.ZodObject<{
|
|
4386
|
-
startTime: z.ZodString;
|
|
4387
|
-
endTime: z.ZodString;
|
|
4388
|
-
}, z.core.$strip>>;
|
|
4389
|
-
createdAt: z.ZodString;
|
|
4390
|
-
updatedAt: z.ZodString;
|
|
4391
|
-
}, z.core.$strip>>]>;
|
|
4049
|
+
}, z.core.$strip>;
|
|
4392
4050
|
readonly querySchema: z.ZodObject<{
|
|
4393
4051
|
'order[date]': z.ZodOptional<z.ZodEnum<{
|
|
4394
4052
|
asc: "asc";
|
package/dist/index.d.ts
CHANGED
|
@@ -1038,7 +1038,7 @@ declare const getPointOfSaleUsersQuerySchema: z.ZodObject<{
|
|
|
1038
1038
|
type GetPointOfSaleUsersQueryParams = z.infer<typeof getPointOfSaleUsersQuerySchema>;
|
|
1039
1039
|
declare const getPointOfSaleUsersInputSchema: z.ZodUndefined;
|
|
1040
1040
|
type GetPointOfSaleUsersInput = z.input<typeof getPointOfSaleUsersInputSchema>;
|
|
1041
|
-
declare const getPointOfSaleUsersResponseSchema: z.
|
|
1041
|
+
declare const getPointOfSaleUsersResponseSchema: z.ZodObject<{
|
|
1042
1042
|
data: z.ZodArray<z.ZodObject<{
|
|
1043
1043
|
id: z.ZodString;
|
|
1044
1044
|
user: z.ZodObject<{
|
|
@@ -1143,109 +1143,14 @@ declare const getPointOfSaleUsersResponseSchema: z.ZodUnion<readonly [z.ZodObjec
|
|
|
1143
1143
|
currentPage: z.ZodCoercedNumber<unknown>;
|
|
1144
1144
|
lastPage: z.ZodCoercedNumber<unknown>;
|
|
1145
1145
|
}, z.core.$strip>;
|
|
1146
|
-
}, z.core.$strip
|
|
1147
|
-
id: z.ZodString;
|
|
1148
|
-
user: z.ZodObject<{
|
|
1149
|
-
id: z.ZodString;
|
|
1150
|
-
firstName: z.ZodString;
|
|
1151
|
-
lastName: z.ZodString;
|
|
1152
|
-
email: z.ZodEmail;
|
|
1153
|
-
roles: z.ZodArray<z.ZodEnum<{
|
|
1154
|
-
ROLE_CUSTOMER_ACCESS: "ROLE_CUSTOMER_ACCESS";
|
|
1155
|
-
ROLE_BUNDLE_ACCESS: "ROLE_BUNDLE_ACCESS";
|
|
1156
|
-
ROLE_DELIVERY_ACCESS: "ROLE_DELIVERY_ACCESS";
|
|
1157
|
-
ROLE_POINT_OF_SALE_ACCESS: "ROLE_POINT_OF_SALE_ACCESS";
|
|
1158
|
-
ROLE_MENU_ACCESS: "ROLE_MENU_ACCESS";
|
|
1159
|
-
ROLE_INTEGRATION_ACCESS: "ROLE_INTEGRATION_ACCESS";
|
|
1160
|
-
ROLE_ORDER_ACCESS: "ROLE_ORDER_ACCESS";
|
|
1161
|
-
ROLE_LEAD_ACCESS: "ROLE_LEAD_ACCESS";
|
|
1162
|
-
ROLE_COMPANY_ACCESS: "ROLE_COMPANY_ACCESS";
|
|
1163
|
-
ROLE_USER_ACCESS: "ROLE_USER_ACCESS";
|
|
1164
|
-
ROLE_SUBSCRIPTION_ACCESS: "ROLE_SUBSCRIPTION_ACCESS";
|
|
1165
|
-
ROLE_PAYMENT_ACCESS: "ROLE_PAYMENT_ACCESS";
|
|
1166
|
-
ROLE_PAYMENT_CONFIG_ACCESS: "ROLE_PAYMENT_CONFIG_ACCESS";
|
|
1167
|
-
ROLE_DEV_ACCESS: "ROLE_DEV_ACCESS";
|
|
1168
|
-
ROLE_CUSTOMER_ADMIN: "ROLE_CUSTOMER_ADMIN";
|
|
1169
|
-
ROLE_BUNDLE_ADMIN: "ROLE_BUNDLE_ADMIN";
|
|
1170
|
-
ROLE_DELIVERY_ADMIN: "ROLE_DELIVERY_ADMIN";
|
|
1171
|
-
ROLE_POINT_OF_SALE_ADMIN: "ROLE_POINT_OF_SALE_ADMIN";
|
|
1172
|
-
ROLE_MENU_ADMIN: "ROLE_MENU_ADMIN";
|
|
1173
|
-
ROLE_INTEGRATION_ADMIN: "ROLE_INTEGRATION_ADMIN";
|
|
1174
|
-
ROLE_ORDER_ADMIN: "ROLE_ORDER_ADMIN";
|
|
1175
|
-
ROLE_LEAD_ADMIN: "ROLE_LEAD_ADMIN";
|
|
1176
|
-
ROLE_COMPANY_ADMIN: "ROLE_COMPANY_ADMIN";
|
|
1177
|
-
ROLE_USER_ADMIN: "ROLE_USER_ADMIN";
|
|
1178
|
-
ROLE_SUBSCRIPTION_ADMIN: "ROLE_SUBSCRIPTION_ADMIN";
|
|
1179
|
-
ROLE_PAYMENT_ADMIN: "ROLE_PAYMENT_ADMIN";
|
|
1180
|
-
ROLE_PAYMENT_CONFIG_ADMIN: "ROLE_PAYMENT_CONFIG_ADMIN";
|
|
1181
|
-
ROLE_DEV_ADMIN: "ROLE_DEV_ADMIN";
|
|
1182
|
-
ROLE_COURIER: "ROLE_COURIER";
|
|
1183
|
-
ROLE_CUSTOMER: "ROLE_CUSTOMER";
|
|
1184
|
-
ROLE_MANAGER: "ROLE_MANAGER";
|
|
1185
|
-
ROLE_SUPER_ADMIN: "ROLE_SUPER_ADMIN";
|
|
1186
|
-
ROLE_KITCHEN: "ROLE_KITCHEN";
|
|
1187
|
-
ROLE_USER: "ROLE_USER";
|
|
1188
|
-
}>>;
|
|
1189
|
-
completedSteps: z.ZodArray<z.ZodEnum<{
|
|
1190
|
-
registration: "registration";
|
|
1191
|
-
verify_email: "verify_email";
|
|
1192
|
-
create_company: "create_company";
|
|
1193
|
-
create_point_of_sale: "create_point_of_sale";
|
|
1194
|
-
}>>;
|
|
1195
|
-
emailVerified: z.ZodBoolean;
|
|
1196
|
-
suspended: z.ZodBoolean;
|
|
1197
|
-
createdAt: z.ZodString;
|
|
1198
|
-
updatedAt: z.ZodString;
|
|
1199
|
-
}, z.core.$strip>;
|
|
1200
|
-
pointOfSale: z.ZodObject<{
|
|
1201
|
-
id: z.ZodString;
|
|
1202
|
-
name: z.ZodString;
|
|
1203
|
-
address: z.ZodObject<{
|
|
1204
|
-
line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1205
|
-
line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1206
|
-
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1207
|
-
region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1208
|
-
postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1209
|
-
country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1210
|
-
}, z.core.$strip>;
|
|
1211
|
-
timezone: z.ZodString;
|
|
1212
|
-
location: z.ZodObject<{
|
|
1213
|
-
latitude: z.ZodNumber;
|
|
1214
|
-
longitude: z.ZodNumber;
|
|
1215
|
-
}, z.core.$strip>;
|
|
1216
|
-
capabilities: z.ZodArray<z.ZodEnum<{
|
|
1217
|
-
DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
|
|
1218
|
-
}>>;
|
|
1219
|
-
openingStatus: z.ZodEnum<{
|
|
1220
|
-
OPEN: "OPEN";
|
|
1221
|
-
CLOSED: "CLOSED";
|
|
1222
|
-
}>;
|
|
1223
|
-
nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
|
|
1224
|
-
currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
|
|
1225
|
-
integrationsStats: z.ZodObject<{
|
|
1226
|
-
integrationsCount: z.ZodCoercedNumber<unknown>;
|
|
1227
|
-
pendingIntegrationsCount: z.ZodCoercedNumber<unknown>;
|
|
1228
|
-
erroringIntegrationsCount: z.ZodCoercedNumber<unknown>;
|
|
1229
|
-
activationRequestsCount: z.ZodCoercedNumber<unknown>;
|
|
1230
|
-
cancellationRequestsCount: z.ZodCoercedNumber<unknown>;
|
|
1231
|
-
}, z.core.$strip>;
|
|
1232
|
-
createdAt: z.ZodString;
|
|
1233
|
-
updatedAt: z.ZodString;
|
|
1234
|
-
}, z.core.$strip>;
|
|
1235
|
-
role: z.ZodEnum<{
|
|
1236
|
-
ROLE_ADMIN: "ROLE_ADMIN";
|
|
1237
|
-
ROLE_READER: "ROLE_READER";
|
|
1238
|
-
}>;
|
|
1239
|
-
createdAt: z.ZodString;
|
|
1240
|
-
updatedAt: z.ZodString;
|
|
1241
|
-
}, z.core.$strip>>]>;
|
|
1146
|
+
}, z.core.$strip>;
|
|
1242
1147
|
type GetPointOfSaleUsersResponse = z.infer<typeof getPointOfSaleUsersResponseSchema>;
|
|
1243
1148
|
declare class GetPointOfSaleUsers extends AbstractApiRequest<typeof getPointOfSaleUsersInputSchema, typeof getPointOfSaleUsersResponseSchema, GetPointOfSaleUsersQueryParams> {
|
|
1244
1149
|
readonly method: "GET";
|
|
1245
1150
|
readonly contentType: "application/json";
|
|
1246
1151
|
readonly accept: "application/json";
|
|
1247
1152
|
readonly inputSchema: z.ZodUndefined;
|
|
1248
|
-
readonly outputSchema: z.
|
|
1153
|
+
readonly outputSchema: z.ZodObject<{
|
|
1249
1154
|
data: z.ZodArray<z.ZodObject<{
|
|
1250
1155
|
id: z.ZodString;
|
|
1251
1156
|
user: z.ZodObject<{
|
|
@@ -1350,102 +1255,7 @@ declare class GetPointOfSaleUsers extends AbstractApiRequest<typeof getPointOfSa
|
|
|
1350
1255
|
currentPage: z.ZodCoercedNumber<unknown>;
|
|
1351
1256
|
lastPage: z.ZodCoercedNumber<unknown>;
|
|
1352
1257
|
}, z.core.$strip>;
|
|
1353
|
-
}, z.core.$strip
|
|
1354
|
-
id: z.ZodString;
|
|
1355
|
-
user: z.ZodObject<{
|
|
1356
|
-
id: z.ZodString;
|
|
1357
|
-
firstName: z.ZodString;
|
|
1358
|
-
lastName: z.ZodString;
|
|
1359
|
-
email: z.ZodEmail;
|
|
1360
|
-
roles: z.ZodArray<z.ZodEnum<{
|
|
1361
|
-
ROLE_CUSTOMER_ACCESS: "ROLE_CUSTOMER_ACCESS";
|
|
1362
|
-
ROLE_BUNDLE_ACCESS: "ROLE_BUNDLE_ACCESS";
|
|
1363
|
-
ROLE_DELIVERY_ACCESS: "ROLE_DELIVERY_ACCESS";
|
|
1364
|
-
ROLE_POINT_OF_SALE_ACCESS: "ROLE_POINT_OF_SALE_ACCESS";
|
|
1365
|
-
ROLE_MENU_ACCESS: "ROLE_MENU_ACCESS";
|
|
1366
|
-
ROLE_INTEGRATION_ACCESS: "ROLE_INTEGRATION_ACCESS";
|
|
1367
|
-
ROLE_ORDER_ACCESS: "ROLE_ORDER_ACCESS";
|
|
1368
|
-
ROLE_LEAD_ACCESS: "ROLE_LEAD_ACCESS";
|
|
1369
|
-
ROLE_COMPANY_ACCESS: "ROLE_COMPANY_ACCESS";
|
|
1370
|
-
ROLE_USER_ACCESS: "ROLE_USER_ACCESS";
|
|
1371
|
-
ROLE_SUBSCRIPTION_ACCESS: "ROLE_SUBSCRIPTION_ACCESS";
|
|
1372
|
-
ROLE_PAYMENT_ACCESS: "ROLE_PAYMENT_ACCESS";
|
|
1373
|
-
ROLE_PAYMENT_CONFIG_ACCESS: "ROLE_PAYMENT_CONFIG_ACCESS";
|
|
1374
|
-
ROLE_DEV_ACCESS: "ROLE_DEV_ACCESS";
|
|
1375
|
-
ROLE_CUSTOMER_ADMIN: "ROLE_CUSTOMER_ADMIN";
|
|
1376
|
-
ROLE_BUNDLE_ADMIN: "ROLE_BUNDLE_ADMIN";
|
|
1377
|
-
ROLE_DELIVERY_ADMIN: "ROLE_DELIVERY_ADMIN";
|
|
1378
|
-
ROLE_POINT_OF_SALE_ADMIN: "ROLE_POINT_OF_SALE_ADMIN";
|
|
1379
|
-
ROLE_MENU_ADMIN: "ROLE_MENU_ADMIN";
|
|
1380
|
-
ROLE_INTEGRATION_ADMIN: "ROLE_INTEGRATION_ADMIN";
|
|
1381
|
-
ROLE_ORDER_ADMIN: "ROLE_ORDER_ADMIN";
|
|
1382
|
-
ROLE_LEAD_ADMIN: "ROLE_LEAD_ADMIN";
|
|
1383
|
-
ROLE_COMPANY_ADMIN: "ROLE_COMPANY_ADMIN";
|
|
1384
|
-
ROLE_USER_ADMIN: "ROLE_USER_ADMIN";
|
|
1385
|
-
ROLE_SUBSCRIPTION_ADMIN: "ROLE_SUBSCRIPTION_ADMIN";
|
|
1386
|
-
ROLE_PAYMENT_ADMIN: "ROLE_PAYMENT_ADMIN";
|
|
1387
|
-
ROLE_PAYMENT_CONFIG_ADMIN: "ROLE_PAYMENT_CONFIG_ADMIN";
|
|
1388
|
-
ROLE_DEV_ADMIN: "ROLE_DEV_ADMIN";
|
|
1389
|
-
ROLE_COURIER: "ROLE_COURIER";
|
|
1390
|
-
ROLE_CUSTOMER: "ROLE_CUSTOMER";
|
|
1391
|
-
ROLE_MANAGER: "ROLE_MANAGER";
|
|
1392
|
-
ROLE_SUPER_ADMIN: "ROLE_SUPER_ADMIN";
|
|
1393
|
-
ROLE_KITCHEN: "ROLE_KITCHEN";
|
|
1394
|
-
ROLE_USER: "ROLE_USER";
|
|
1395
|
-
}>>;
|
|
1396
|
-
completedSteps: z.ZodArray<z.ZodEnum<{
|
|
1397
|
-
registration: "registration";
|
|
1398
|
-
verify_email: "verify_email";
|
|
1399
|
-
create_company: "create_company";
|
|
1400
|
-
create_point_of_sale: "create_point_of_sale";
|
|
1401
|
-
}>>;
|
|
1402
|
-
emailVerified: z.ZodBoolean;
|
|
1403
|
-
suspended: z.ZodBoolean;
|
|
1404
|
-
createdAt: z.ZodString;
|
|
1405
|
-
updatedAt: z.ZodString;
|
|
1406
|
-
}, z.core.$strip>;
|
|
1407
|
-
pointOfSale: z.ZodObject<{
|
|
1408
|
-
id: z.ZodString;
|
|
1409
|
-
name: z.ZodString;
|
|
1410
|
-
address: z.ZodObject<{
|
|
1411
|
-
line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1412
|
-
line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1413
|
-
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1414
|
-
region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1415
|
-
postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1416
|
-
country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1417
|
-
}, z.core.$strip>;
|
|
1418
|
-
timezone: z.ZodString;
|
|
1419
|
-
location: z.ZodObject<{
|
|
1420
|
-
latitude: z.ZodNumber;
|
|
1421
|
-
longitude: z.ZodNumber;
|
|
1422
|
-
}, z.core.$strip>;
|
|
1423
|
-
capabilities: z.ZodArray<z.ZodEnum<{
|
|
1424
|
-
DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
|
|
1425
|
-
}>>;
|
|
1426
|
-
openingStatus: z.ZodEnum<{
|
|
1427
|
-
OPEN: "OPEN";
|
|
1428
|
-
CLOSED: "CLOSED";
|
|
1429
|
-
}>;
|
|
1430
|
-
nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
|
|
1431
|
-
currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
|
|
1432
|
-
integrationsStats: z.ZodObject<{
|
|
1433
|
-
integrationsCount: z.ZodCoercedNumber<unknown>;
|
|
1434
|
-
pendingIntegrationsCount: z.ZodCoercedNumber<unknown>;
|
|
1435
|
-
erroringIntegrationsCount: z.ZodCoercedNumber<unknown>;
|
|
1436
|
-
activationRequestsCount: z.ZodCoercedNumber<unknown>;
|
|
1437
|
-
cancellationRequestsCount: z.ZodCoercedNumber<unknown>;
|
|
1438
|
-
}, z.core.$strip>;
|
|
1439
|
-
createdAt: z.ZodString;
|
|
1440
|
-
updatedAt: z.ZodString;
|
|
1441
|
-
}, z.core.$strip>;
|
|
1442
|
-
role: z.ZodEnum<{
|
|
1443
|
-
ROLE_ADMIN: "ROLE_ADMIN";
|
|
1444
|
-
ROLE_READER: "ROLE_READER";
|
|
1445
|
-
}>;
|
|
1446
|
-
createdAt: z.ZodString;
|
|
1447
|
-
updatedAt: z.ZodString;
|
|
1448
|
-
}, z.core.$strip>>]>;
|
|
1258
|
+
}, z.core.$strip>;
|
|
1449
1259
|
readonly querySchema: z.ZodObject<{
|
|
1450
1260
|
availableForDelivery: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodBoolean>>;
|
|
1451
1261
|
'order[createdAt]': z.ZodOptional<z.ZodEnum<{
|
|
@@ -3207,7 +3017,7 @@ declare const getPointOfSaleMenuVersionsQuerySchema: z.ZodObject<{
|
|
|
3207
3017
|
type GetPointOfSaleMenuVersionsQueryParams = z.infer<typeof getPointOfSaleMenuVersionsQuerySchema>;
|
|
3208
3018
|
declare const getPointOfSaleMenuVersionsInputSchema: z.ZodUndefined;
|
|
3209
3019
|
type GetPointOfSaleMenuVersionsInput = z.infer<typeof getPointOfSaleMenuVersionsInputSchema>;
|
|
3210
|
-
declare const getPointOfSaleMenuVersionsResponseSchema: z.
|
|
3020
|
+
declare const getPointOfSaleMenuVersionsResponseSchema: z.ZodObject<{
|
|
3211
3021
|
data: z.ZodArray<z.ZodObject<{
|
|
3212
3022
|
id: z.ZodString;
|
|
3213
3023
|
contentUrl: z.ZodString;
|
|
@@ -3223,20 +3033,14 @@ declare const getPointOfSaleMenuVersionsResponseSchema: z.ZodUnion<readonly [z.Z
|
|
|
3223
3033
|
currentPage: z.ZodCoercedNumber<unknown>;
|
|
3224
3034
|
lastPage: z.ZodCoercedNumber<unknown>;
|
|
3225
3035
|
}, z.core.$strip>;
|
|
3226
|
-
}, z.core.$strip
|
|
3227
|
-
id: z.ZodString;
|
|
3228
|
-
contentUrl: z.ZodString;
|
|
3229
|
-
filePath: z.ZodString;
|
|
3230
|
-
createdAt: z.ZodString;
|
|
3231
|
-
updatedAt: z.ZodString;
|
|
3232
|
-
}, z.core.$strip>>]>;
|
|
3036
|
+
}, z.core.$strip>;
|
|
3233
3037
|
type GetPointOfSaleMenuVersionsResponse = z.infer<typeof getPointOfSaleMenuVersionsResponseSchema>;
|
|
3234
3038
|
declare class GetPointOfSaleMenuVersions extends AbstractApiRequest<typeof getPointOfSaleMenuVersionsInputSchema, typeof getPointOfSaleMenuVersionsResponseSchema, GetPointOfSaleMenuVersionsQueryParams> {
|
|
3235
3039
|
readonly method: "GET";
|
|
3236
3040
|
readonly contentType: "application/json";
|
|
3237
3041
|
readonly accept: "application/json";
|
|
3238
3042
|
readonly inputSchema: z.ZodUndefined;
|
|
3239
|
-
readonly outputSchema: z.
|
|
3043
|
+
readonly outputSchema: z.ZodObject<{
|
|
3240
3044
|
data: z.ZodArray<z.ZodObject<{
|
|
3241
3045
|
id: z.ZodString;
|
|
3242
3046
|
contentUrl: z.ZodString;
|
|
@@ -3252,13 +3056,7 @@ declare class GetPointOfSaleMenuVersions extends AbstractApiRequest<typeof getPo
|
|
|
3252
3056
|
currentPage: z.ZodCoercedNumber<unknown>;
|
|
3253
3057
|
lastPage: z.ZodCoercedNumber<unknown>;
|
|
3254
3058
|
}, z.core.$strip>;
|
|
3255
|
-
}, z.core.$strip
|
|
3256
|
-
id: z.ZodString;
|
|
3257
|
-
contentUrl: z.ZodString;
|
|
3258
|
-
filePath: z.ZodString;
|
|
3259
|
-
createdAt: z.ZodString;
|
|
3260
|
-
updatedAt: z.ZodString;
|
|
3261
|
-
}, z.core.$strip>>]>;
|
|
3059
|
+
}, z.core.$strip>;
|
|
3262
3060
|
readonly querySchema: z.ZodObject<{
|
|
3263
3061
|
page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
3264
3062
|
}, z.core.$strip>;
|
|
@@ -3304,7 +3102,7 @@ declare const getPointOfSalesQuerySchema: z.ZodObject<{
|
|
|
3304
3102
|
type GetPointOfSalesQueryParams = z.infer<typeof getPointOfSalesQuerySchema>;
|
|
3305
3103
|
declare const getPointOfSalesInputSchema: z.ZodUndefined;
|
|
3306
3104
|
type GetPointOfSalesInput = z.input<typeof getPointOfSalesInputSchema>;
|
|
3307
|
-
declare const getPointOfSalesResponseSchema: z.
|
|
3105
|
+
declare const getPointOfSalesResponseSchema: z.ZodObject<{
|
|
3308
3106
|
data: z.ZodArray<z.ZodObject<{
|
|
3309
3107
|
id: z.ZodString;
|
|
3310
3108
|
name: z.ZodString;
|
|
@@ -3348,48 +3146,14 @@ declare const getPointOfSalesResponseSchema: z.ZodUnion<readonly [z.ZodObject<{
|
|
|
3348
3146
|
currentPage: z.ZodCoercedNumber<unknown>;
|
|
3349
3147
|
lastPage: z.ZodCoercedNumber<unknown>;
|
|
3350
3148
|
}, z.core.$strip>;
|
|
3351
|
-
}, z.core.$strip
|
|
3352
|
-
id: z.ZodString;
|
|
3353
|
-
name: z.ZodString;
|
|
3354
|
-
address: z.ZodObject<{
|
|
3355
|
-
line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3356
|
-
line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3357
|
-
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3358
|
-
region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3359
|
-
postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3360
|
-
country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3361
|
-
}, z.core.$strip>;
|
|
3362
|
-
timezone: z.ZodString;
|
|
3363
|
-
location: z.ZodObject<{
|
|
3364
|
-
latitude: z.ZodNumber;
|
|
3365
|
-
longitude: z.ZodNumber;
|
|
3366
|
-
}, z.core.$strip>;
|
|
3367
|
-
capabilities: z.ZodArray<z.ZodEnum<{
|
|
3368
|
-
DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
|
|
3369
|
-
}>>;
|
|
3370
|
-
openingStatus: z.ZodEnum<{
|
|
3371
|
-
OPEN: "OPEN";
|
|
3372
|
-
CLOSED: "CLOSED";
|
|
3373
|
-
}>;
|
|
3374
|
-
nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
|
|
3375
|
-
currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
|
|
3376
|
-
integrationsStats: z.ZodObject<{
|
|
3377
|
-
integrationsCount: z.ZodCoercedNumber<unknown>;
|
|
3378
|
-
pendingIntegrationsCount: z.ZodCoercedNumber<unknown>;
|
|
3379
|
-
erroringIntegrationsCount: z.ZodCoercedNumber<unknown>;
|
|
3380
|
-
activationRequestsCount: z.ZodCoercedNumber<unknown>;
|
|
3381
|
-
cancellationRequestsCount: z.ZodCoercedNumber<unknown>;
|
|
3382
|
-
}, z.core.$strip>;
|
|
3383
|
-
createdAt: z.ZodString;
|
|
3384
|
-
updatedAt: z.ZodString;
|
|
3385
|
-
}, z.core.$strip>>]>;
|
|
3149
|
+
}, z.core.$strip>;
|
|
3386
3150
|
type GetPointOfSalesResponse = z.infer<typeof getPointOfSalesResponseSchema>;
|
|
3387
3151
|
declare class GetPointOfSales extends AbstractApiRequest<typeof getPointOfSalesInputSchema, typeof getPointOfSalesResponseSchema, GetPointOfSalesQueryParams> {
|
|
3388
3152
|
readonly method: "GET";
|
|
3389
3153
|
readonly contentType: "application/json";
|
|
3390
3154
|
readonly accept: "application/json";
|
|
3391
3155
|
readonly inputSchema: z.ZodUndefined;
|
|
3392
|
-
readonly outputSchema: z.
|
|
3156
|
+
readonly outputSchema: z.ZodObject<{
|
|
3393
3157
|
data: z.ZodArray<z.ZodObject<{
|
|
3394
3158
|
id: z.ZodString;
|
|
3395
3159
|
name: z.ZodString;
|
|
@@ -3433,41 +3197,7 @@ declare class GetPointOfSales extends AbstractApiRequest<typeof getPointOfSalesI
|
|
|
3433
3197
|
currentPage: z.ZodCoercedNumber<unknown>;
|
|
3434
3198
|
lastPage: z.ZodCoercedNumber<unknown>;
|
|
3435
3199
|
}, z.core.$strip>;
|
|
3436
|
-
}, z.core.$strip
|
|
3437
|
-
id: z.ZodString;
|
|
3438
|
-
name: z.ZodString;
|
|
3439
|
-
address: z.ZodObject<{
|
|
3440
|
-
line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3441
|
-
line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3442
|
-
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3443
|
-
region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3444
|
-
postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3445
|
-
country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3446
|
-
}, z.core.$strip>;
|
|
3447
|
-
timezone: z.ZodString;
|
|
3448
|
-
location: z.ZodObject<{
|
|
3449
|
-
latitude: z.ZodNumber;
|
|
3450
|
-
longitude: z.ZodNumber;
|
|
3451
|
-
}, z.core.$strip>;
|
|
3452
|
-
capabilities: z.ZodArray<z.ZodEnum<{
|
|
3453
|
-
DELIVERY_OPTIMIZATION: "DELIVERY_OPTIMIZATION";
|
|
3454
|
-
}>>;
|
|
3455
|
-
openingStatus: z.ZodEnum<{
|
|
3456
|
-
OPEN: "OPEN";
|
|
3457
|
-
CLOSED: "CLOSED";
|
|
3458
|
-
}>;
|
|
3459
|
-
nextSyncMenuScheduledAt: z.ZodNullable<z.ZodString>;
|
|
3460
|
-
currentMenuVersion: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/point_of_sales/:id/menu_versions/:menuVersionId"> | null, unknown>>;
|
|
3461
|
-
integrationsStats: z.ZodObject<{
|
|
3462
|
-
integrationsCount: z.ZodCoercedNumber<unknown>;
|
|
3463
|
-
pendingIntegrationsCount: z.ZodCoercedNumber<unknown>;
|
|
3464
|
-
erroringIntegrationsCount: z.ZodCoercedNumber<unknown>;
|
|
3465
|
-
activationRequestsCount: z.ZodCoercedNumber<unknown>;
|
|
3466
|
-
cancellationRequestsCount: z.ZodCoercedNumber<unknown>;
|
|
3467
|
-
}, z.core.$strip>;
|
|
3468
|
-
createdAt: z.ZodString;
|
|
3469
|
-
updatedAt: z.ZodString;
|
|
3470
|
-
}, z.core.$strip>>]>;
|
|
3200
|
+
}, z.core.$strip>;
|
|
3471
3201
|
readonly querySchema: z.ZodObject<{
|
|
3472
3202
|
name: z.ZodOptional<z.ZodString>;
|
|
3473
3203
|
openingStatus: z.ZodOptional<z.ZodEnum<{
|
|
@@ -4105,7 +3835,7 @@ declare const getPointOfSaleTimeOverridesQuerySchema: z.ZodObject<{
|
|
|
4105
3835
|
type GetPointOfSaleTimeOverridesQueryParams = z.infer<typeof getPointOfSaleTimeOverridesQuerySchema>;
|
|
4106
3836
|
declare const getPointOfSaleTimeOverridesInputSchema: z.ZodUndefined;
|
|
4107
3837
|
type GetPointOfSaleTimeOverridesInput = z.input<typeof getPointOfSaleTimeOverridesInputSchema>;
|
|
4108
|
-
declare const getPointOfSaleTimeOverridesResponseSchema: z.
|
|
3838
|
+
declare const getPointOfSaleTimeOverridesResponseSchema: z.ZodObject<{
|
|
4109
3839
|
data: z.ZodArray<z.ZodObject<{
|
|
4110
3840
|
id: z.ZodString;
|
|
4111
3841
|
date: z.ZodString;
|
|
@@ -4133,32 +3863,14 @@ declare const getPointOfSaleTimeOverridesResponseSchema: z.ZodUnion<readonly [z.
|
|
|
4133
3863
|
currentPage: z.ZodCoercedNumber<unknown>;
|
|
4134
3864
|
lastPage: z.ZodCoercedNumber<unknown>;
|
|
4135
3865
|
}, z.core.$strip>;
|
|
4136
|
-
}, z.core.$strip
|
|
4137
|
-
id: z.ZodString;
|
|
4138
|
-
date: z.ZodString;
|
|
4139
|
-
openingTimeSettings: z.ZodArray<z.ZodObject<{
|
|
4140
|
-
startTime: z.ZodString;
|
|
4141
|
-
endTime: z.ZodString;
|
|
4142
|
-
}, z.core.$strip>>;
|
|
4143
|
-
deliveryTimeSettings: z.ZodArray<z.ZodObject<{
|
|
4144
|
-
startTime: z.ZodString;
|
|
4145
|
-
endTime: z.ZodString;
|
|
4146
|
-
availableCouriers: z.ZodCoercedNumber<unknown>;
|
|
4147
|
-
}, z.core.$strip>>;
|
|
4148
|
-
takeAwayTimeSettings: z.ZodArray<z.ZodObject<{
|
|
4149
|
-
startTime: z.ZodString;
|
|
4150
|
-
endTime: z.ZodString;
|
|
4151
|
-
}, z.core.$strip>>;
|
|
4152
|
-
createdAt: z.ZodString;
|
|
4153
|
-
updatedAt: z.ZodString;
|
|
4154
|
-
}, z.core.$strip>>]>;
|
|
3866
|
+
}, z.core.$strip>;
|
|
4155
3867
|
type GetPointOfSaleTimeOverridesResponse = z.infer<typeof getPointOfSaleTimeOverridesResponseSchema>;
|
|
4156
3868
|
declare class GetPointOfSaleTimeOverrides extends AbstractApiRequest<typeof getPointOfSaleTimeOverridesInputSchema, typeof getPointOfSaleTimeOverridesResponseSchema, GetPointOfSaleTimeOverridesQueryParams> {
|
|
4157
3869
|
readonly method: "GET";
|
|
4158
3870
|
readonly contentType: "application/json";
|
|
4159
3871
|
readonly accept: "application/json";
|
|
4160
3872
|
readonly inputSchema: z.ZodUndefined;
|
|
4161
|
-
readonly outputSchema: z.
|
|
3873
|
+
readonly outputSchema: z.ZodObject<{
|
|
4162
3874
|
data: z.ZodArray<z.ZodObject<{
|
|
4163
3875
|
id: z.ZodString;
|
|
4164
3876
|
date: z.ZodString;
|
|
@@ -4186,25 +3898,7 @@ declare class GetPointOfSaleTimeOverrides extends AbstractApiRequest<typeof getP
|
|
|
4186
3898
|
currentPage: z.ZodCoercedNumber<unknown>;
|
|
4187
3899
|
lastPage: z.ZodCoercedNumber<unknown>;
|
|
4188
3900
|
}, z.core.$strip>;
|
|
4189
|
-
}, z.core.$strip
|
|
4190
|
-
id: z.ZodString;
|
|
4191
|
-
date: z.ZodString;
|
|
4192
|
-
openingTimeSettings: z.ZodArray<z.ZodObject<{
|
|
4193
|
-
startTime: z.ZodString;
|
|
4194
|
-
endTime: z.ZodString;
|
|
4195
|
-
}, z.core.$strip>>;
|
|
4196
|
-
deliveryTimeSettings: z.ZodArray<z.ZodObject<{
|
|
4197
|
-
startTime: z.ZodString;
|
|
4198
|
-
endTime: z.ZodString;
|
|
4199
|
-
availableCouriers: z.ZodCoercedNumber<unknown>;
|
|
4200
|
-
}, z.core.$strip>>;
|
|
4201
|
-
takeAwayTimeSettings: z.ZodArray<z.ZodObject<{
|
|
4202
|
-
startTime: z.ZodString;
|
|
4203
|
-
endTime: z.ZodString;
|
|
4204
|
-
}, z.core.$strip>>;
|
|
4205
|
-
createdAt: z.ZodString;
|
|
4206
|
-
updatedAt: z.ZodString;
|
|
4207
|
-
}, z.core.$strip>>]>;
|
|
3901
|
+
}, z.core.$strip>;
|
|
4208
3902
|
readonly querySchema: z.ZodObject<{
|
|
4209
3903
|
'order[date]': z.ZodOptional<z.ZodEnum<{
|
|
4210
3904
|
asc: "asc";
|
|
@@ -4289,7 +3983,7 @@ declare const getPointOfSaleTimeOverridesFromPointOfSaleQuerySchema: z.ZodObject
|
|
|
4289
3983
|
type GetPointOfSaleTimeOverridesFromPointOfSaleQueryParams = z.infer<typeof getPointOfSaleTimeOverridesFromPointOfSaleQuerySchema>;
|
|
4290
3984
|
declare const getPointOfSaleTimeOverridesFromPointOfSaleInputSchema: z.ZodUndefined;
|
|
4291
3985
|
type GetPointOfSaleTimeOverridesFromPointOfSaleInput = z.input<typeof getPointOfSaleTimeOverridesFromPointOfSaleInputSchema>;
|
|
4292
|
-
declare const getPointOfSaleTimeOverridesFromPointOfSaleResponseSchema: z.
|
|
3986
|
+
declare const getPointOfSaleTimeOverridesFromPointOfSaleResponseSchema: z.ZodObject<{
|
|
4293
3987
|
data: z.ZodArray<z.ZodObject<{
|
|
4294
3988
|
id: z.ZodString;
|
|
4295
3989
|
date: z.ZodString;
|
|
@@ -4317,32 +4011,14 @@ declare const getPointOfSaleTimeOverridesFromPointOfSaleResponseSchema: z.ZodUni
|
|
|
4317
4011
|
currentPage: z.ZodCoercedNumber<unknown>;
|
|
4318
4012
|
lastPage: z.ZodCoercedNumber<unknown>;
|
|
4319
4013
|
}, z.core.$strip>;
|
|
4320
|
-
}, z.core.$strip
|
|
4321
|
-
id: z.ZodString;
|
|
4322
|
-
date: z.ZodString;
|
|
4323
|
-
openingTimeSettings: z.ZodArray<z.ZodObject<{
|
|
4324
|
-
startTime: z.ZodString;
|
|
4325
|
-
endTime: z.ZodString;
|
|
4326
|
-
}, z.core.$strip>>;
|
|
4327
|
-
deliveryTimeSettings: z.ZodArray<z.ZodObject<{
|
|
4328
|
-
startTime: z.ZodString;
|
|
4329
|
-
endTime: z.ZodString;
|
|
4330
|
-
availableCouriers: z.ZodCoercedNumber<unknown>;
|
|
4331
|
-
}, z.core.$strip>>;
|
|
4332
|
-
takeAwayTimeSettings: z.ZodArray<z.ZodObject<{
|
|
4333
|
-
startTime: z.ZodString;
|
|
4334
|
-
endTime: z.ZodString;
|
|
4335
|
-
}, z.core.$strip>>;
|
|
4336
|
-
createdAt: z.ZodString;
|
|
4337
|
-
updatedAt: z.ZodString;
|
|
4338
|
-
}, z.core.$strip>>]>;
|
|
4014
|
+
}, z.core.$strip>;
|
|
4339
4015
|
type GetPointOfSaleTimeOverridesFromPointOfSaleResponse = z.infer<typeof getPointOfSaleTimeOverridesFromPointOfSaleResponseSchema>;
|
|
4340
4016
|
declare class GetPointOfSaleTimeOverridesFromPointOfSale extends AbstractApiRequest<typeof getPointOfSaleTimeOverridesFromPointOfSaleInputSchema, typeof getPointOfSaleTimeOverridesFromPointOfSaleResponseSchema, GetPointOfSaleTimeOverridesFromPointOfSaleQueryParams> {
|
|
4341
4017
|
readonly method: "GET";
|
|
4342
4018
|
readonly contentType: "application/json";
|
|
4343
4019
|
readonly accept: "application/json";
|
|
4344
4020
|
readonly inputSchema: z.ZodUndefined;
|
|
4345
|
-
readonly outputSchema: z.
|
|
4021
|
+
readonly outputSchema: z.ZodObject<{
|
|
4346
4022
|
data: z.ZodArray<z.ZodObject<{
|
|
4347
4023
|
id: z.ZodString;
|
|
4348
4024
|
date: z.ZodString;
|
|
@@ -4370,25 +4046,7 @@ declare class GetPointOfSaleTimeOverridesFromPointOfSale extends AbstractApiRequ
|
|
|
4370
4046
|
currentPage: z.ZodCoercedNumber<unknown>;
|
|
4371
4047
|
lastPage: z.ZodCoercedNumber<unknown>;
|
|
4372
4048
|
}, z.core.$strip>;
|
|
4373
|
-
}, z.core.$strip
|
|
4374
|
-
id: z.ZodString;
|
|
4375
|
-
date: z.ZodString;
|
|
4376
|
-
openingTimeSettings: z.ZodArray<z.ZodObject<{
|
|
4377
|
-
startTime: z.ZodString;
|
|
4378
|
-
endTime: z.ZodString;
|
|
4379
|
-
}, z.core.$strip>>;
|
|
4380
|
-
deliveryTimeSettings: z.ZodArray<z.ZodObject<{
|
|
4381
|
-
startTime: z.ZodString;
|
|
4382
|
-
endTime: z.ZodString;
|
|
4383
|
-
availableCouriers: z.ZodCoercedNumber<unknown>;
|
|
4384
|
-
}, z.core.$strip>>;
|
|
4385
|
-
takeAwayTimeSettings: z.ZodArray<z.ZodObject<{
|
|
4386
|
-
startTime: z.ZodString;
|
|
4387
|
-
endTime: z.ZodString;
|
|
4388
|
-
}, z.core.$strip>>;
|
|
4389
|
-
createdAt: z.ZodString;
|
|
4390
|
-
updatedAt: z.ZodString;
|
|
4391
|
-
}, z.core.$strip>>]>;
|
|
4049
|
+
}, z.core.$strip>;
|
|
4392
4050
|
readonly querySchema: z.ZodObject<{
|
|
4393
4051
|
'order[date]': z.ZodOptional<z.ZodEnum<{
|
|
4394
4052
|
asc: "asc";
|
package/dist/index.js
CHANGED
|
@@ -11447,10 +11447,10 @@ var GetPointOfSaleUserDetails = class extends AbstractApiRequest2 {
|
|
|
11447
11447
|
|
|
11448
11448
|
// src/requests/point-of-sale-users/GetPointOfSaleUsers.ts
|
|
11449
11449
|
import { AbstractApiRequest as AbstractApiRequest3 } from "@deliverart/sdk-js-core";
|
|
11450
|
-
import {
|
|
11450
|
+
import { createPaginatedSchema } from "@deliverart/sdk-js-global-types";
|
|
11451
11451
|
var getPointOfSaleUsersQuerySchema = pointOfSaleUsersQuerySchema;
|
|
11452
11452
|
var getPointOfSaleUsersInputSchema = external_exports.undefined();
|
|
11453
|
-
var getPointOfSaleUsersResponseSchema =
|
|
11453
|
+
var getPointOfSaleUsersResponseSchema = createPaginatedSchema(pointOfSaleUserSchema);
|
|
11454
11454
|
var GetPointOfSaleUsers = class extends AbstractApiRequest3 {
|
|
11455
11455
|
constructor(options) {
|
|
11456
11456
|
super(void 0, options);
|
|
@@ -11707,12 +11707,12 @@ var GetPointOfSaleMenuVersionDetails = class extends AbstractApiRequest13 {
|
|
|
11707
11707
|
|
|
11708
11708
|
// src/requests/point-of-sales/GetPointOfSaleMenuVersions.ts
|
|
11709
11709
|
import { AbstractApiRequest as AbstractApiRequest14 } from "@deliverart/sdk-js-core";
|
|
11710
|
-
import {
|
|
11710
|
+
import { createPaginatedSchema as createPaginatedSchema2 } from "@deliverart/sdk-js-global-types";
|
|
11711
11711
|
var getPointOfSaleMenuVersionsQuerySchema = external_exports.object({
|
|
11712
11712
|
page: external_exports.coerce.number().optional()
|
|
11713
11713
|
});
|
|
11714
11714
|
var getPointOfSaleMenuVersionsInputSchema = external_exports.undefined();
|
|
11715
|
-
var getPointOfSaleMenuVersionsResponseSchema =
|
|
11715
|
+
var getPointOfSaleMenuVersionsResponseSchema = createPaginatedSchema2(menuVersionSchema);
|
|
11716
11716
|
var GetPointOfSaleMenuVersions = class extends AbstractApiRequest14 {
|
|
11717
11717
|
constructor(pointOfSaleId, options) {
|
|
11718
11718
|
super(void 0, options);
|
|
@@ -11735,10 +11735,10 @@ var GetPointOfSaleMenuVersions = class extends AbstractApiRequest14 {
|
|
|
11735
11735
|
|
|
11736
11736
|
// src/requests/point-of-sales/GetPointOfSales.ts
|
|
11737
11737
|
import { AbstractApiRequest as AbstractApiRequest15 } from "@deliverart/sdk-js-core";
|
|
11738
|
-
import {
|
|
11738
|
+
import { createPaginatedSchema as createPaginatedSchema3 } from "@deliverart/sdk-js-global-types";
|
|
11739
11739
|
var getPointOfSalesQuerySchema = pointOfSalesQuerySchema;
|
|
11740
11740
|
var getPointOfSalesInputSchema = external_exports.undefined();
|
|
11741
|
-
var getPointOfSalesResponseSchema =
|
|
11741
|
+
var getPointOfSalesResponseSchema = createPaginatedSchema3(pointOfSaleSchema);
|
|
11742
11742
|
var GetPointOfSales = class extends AbstractApiRequest15 {
|
|
11743
11743
|
constructor(options) {
|
|
11744
11744
|
super(void 0, options);
|
|
@@ -11844,10 +11844,10 @@ var GetPointOfSaleTimeOverrideDetails = class extends AbstractApiRequest19 {
|
|
|
11844
11844
|
|
|
11845
11845
|
// src/requests/point-of-time-overrides/GetPointOfSaleTimeOverrides.ts
|
|
11846
11846
|
import { AbstractApiRequest as AbstractApiRequest20 } from "@deliverart/sdk-js-core";
|
|
11847
|
-
import {
|
|
11847
|
+
import { createPaginatedSchema as createPaginatedSchema4 } from "@deliverart/sdk-js-global-types";
|
|
11848
11848
|
var getPointOfSaleTimeOverridesQuerySchema = pointOfSaleTimeOverridesQuerySchema;
|
|
11849
11849
|
var getPointOfSaleTimeOverridesInputSchema = external_exports.undefined();
|
|
11850
|
-
var getPointOfSaleTimeOverridesResponseSchema =
|
|
11850
|
+
var getPointOfSaleTimeOverridesResponseSchema = createPaginatedSchema4(
|
|
11851
11851
|
pointOfSaleTimeOverrideSchema
|
|
11852
11852
|
);
|
|
11853
11853
|
var GetPointOfSaleTimeOverrides = class extends AbstractApiRequest20 {
|
|
@@ -11870,10 +11870,10 @@ var GetPointOfSaleTimeOverrides = class extends AbstractApiRequest20 {
|
|
|
11870
11870
|
|
|
11871
11871
|
// src/requests/point-of-time-overrides/GetPointOfSaleTimeOverridesFromPointOfSale.ts
|
|
11872
11872
|
import { AbstractApiRequest as AbstractApiRequest21 } from "@deliverart/sdk-js-core";
|
|
11873
|
-
import {
|
|
11873
|
+
import { createPaginatedSchema as createPaginatedSchema5 } from "@deliverart/sdk-js-global-types";
|
|
11874
11874
|
var getPointOfSaleTimeOverridesFromPointOfSaleQuerySchema = pointOfSaleTimeOverridesQuerySchema;
|
|
11875
11875
|
var getPointOfSaleTimeOverridesFromPointOfSaleInputSchema = external_exports.undefined();
|
|
11876
|
-
var getPointOfSaleTimeOverridesFromPointOfSaleResponseSchema =
|
|
11876
|
+
var getPointOfSaleTimeOverridesFromPointOfSaleResponseSchema = createPaginatedSchema5(
|
|
11877
11877
|
pointOfSaleTimeOverrideSchema
|
|
11878
11878
|
);
|
|
11879
11879
|
var GetPointOfSaleTimeOverridesFromPointOfSale = class extends AbstractApiRequest21 {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deliverart/sdk-js-point-of-sale",
|
|
3
3
|
"description": "Deliverart JavaScript SDK for Point of Sale Management",
|
|
4
|
-
"version": "2.6.
|
|
4
|
+
"version": "2.6.3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"dist"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@deliverart/sdk-js-company": "2.6.
|
|
22
|
-
"@deliverart/sdk-js-core": "2.6.
|
|
23
|
-
"@deliverart/sdk-js-
|
|
24
|
-
"@deliverart/sdk-js-
|
|
21
|
+
"@deliverart/sdk-js-company": "2.6.3",
|
|
22
|
+
"@deliverart/sdk-js-core": "2.6.3",
|
|
23
|
+
"@deliverart/sdk-js-user": "2.6.3",
|
|
24
|
+
"@deliverart/sdk-js-global-types": "2.6.3"
|
|
25
25
|
},
|
|
26
26
|
"publishConfig": {
|
|
27
27
|
"access": "public"
|