@deliverart/sdk-js-integration 2.9.2 → 2.9.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 +2 -6
- package/dist/index.d.cts +46 -0
- package/dist/index.d.ts +46 -0
- package/dist/index.js +2 -6
- package/package.json +7 -7
package/dist/index.cjs
CHANGED
|
@@ -16296,9 +16296,7 @@ var GetIntegrationDeliverooSyncMenuProcessDetails = class extends import_sdk_js_
|
|
|
16296
16296
|
// src/requests/services/deliveroo/GetIntegrationDeliverooSyncMenuProcesses.ts
|
|
16297
16297
|
var import_sdk_js_core46 = require("@deliverart/sdk-js-core");
|
|
16298
16298
|
var import_sdk_js_global_types28 = require("@deliverart/sdk-js-global-types");
|
|
16299
|
-
var getIntegrationDeliverooSyncMenuProcessesQuerySchema =
|
|
16300
|
-
page: external_exports.coerce.number().optional()
|
|
16301
|
-
});
|
|
16299
|
+
var getIntegrationDeliverooSyncMenuProcessesQuerySchema = integrationDeliverooSyncMenuProcessesQuerySchema;
|
|
16302
16300
|
var getIntegrationDeliverooSyncMenuProcessesInputSchema = external_exports.undefined();
|
|
16303
16301
|
var getIntegrationDeliverooSyncMenuProcessesResponseSchema = (0, import_sdk_js_global_types28.createPaginatedSchema)(
|
|
16304
16302
|
integrationDeliverooSyncMenuProcessSchema
|
|
@@ -17082,9 +17080,7 @@ var GetIntegrationJustEatSyncMenuProcessDetails = class extends import_sdk_js_co
|
|
|
17082
17080
|
// src/requests/services/justeat/GetIntegrationJustEatSyncMenuProcesses.ts
|
|
17083
17081
|
var import_sdk_js_core79 = require("@deliverart/sdk-js-core");
|
|
17084
17082
|
var import_sdk_js_global_types41 = require("@deliverart/sdk-js-global-types");
|
|
17085
|
-
var getIntegrationJustEatSyncMenuProcessesQuerySchema =
|
|
17086
|
-
page: external_exports.coerce.number().optional()
|
|
17087
|
-
});
|
|
17083
|
+
var getIntegrationJustEatSyncMenuProcessesQuerySchema = integrationJustEatSyncMenuProcessesQuerySchema;
|
|
17088
17084
|
var getIntegrationJustEatSyncMenuProcessesInputSchema = external_exports.undefined();
|
|
17089
17085
|
var getIntegrationJustEatSyncMenuProcessesResponseSchema = (0, import_sdk_js_global_types41.createPaginatedSchema)(
|
|
17090
17086
|
integrationJustEatSyncMenuProcessSchema
|
package/dist/index.d.cts
CHANGED
|
@@ -11942,6 +11942,25 @@ declare class GetIntegrationDeliverooSyncMenuProcessDetails extends AbstractApiR
|
|
|
11942
11942
|
}
|
|
11943
11943
|
|
|
11944
11944
|
declare const getIntegrationDeliverooSyncMenuProcessesQuerySchema: z.ZodObject<{
|
|
11945
|
+
'order[endAt]': z.ZodOptional<z.ZodEnum<{
|
|
11946
|
+
asc: "asc";
|
|
11947
|
+
desc: "desc";
|
|
11948
|
+
}>>;
|
|
11949
|
+
mode: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
11950
|
+
menu: "menu";
|
|
11951
|
+
item_availabilities: "item_availabilities";
|
|
11952
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
11953
|
+
menu: "menu";
|
|
11954
|
+
item_availabilities: "item_availabilities";
|
|
11955
|
+
}>>]>>;
|
|
11956
|
+
'createdAt[before]': z.ZodOptional<z.ZodString>;
|
|
11957
|
+
'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
11958
|
+
'createdAt[after]': z.ZodOptional<z.ZodString>;
|
|
11959
|
+
'createdAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
11960
|
+
'endAt[before]': z.ZodOptional<z.ZodString>;
|
|
11961
|
+
'endAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
11962
|
+
'endAt[after]': z.ZodOptional<z.ZodString>;
|
|
11963
|
+
'endAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
11945
11964
|
page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
11946
11965
|
}, z.core.$strip>;
|
|
11947
11966
|
type GetIntegrationDeliverooSyncMenuProcessesQueryParams = z.infer<typeof getIntegrationDeliverooSyncMenuProcessesQuerySchema>;
|
|
@@ -11996,6 +12015,25 @@ declare class GetIntegrationDeliverooSyncMenuProcesses extends AbstractApiReques
|
|
|
11996
12015
|
}, z.core.$strip>;
|
|
11997
12016
|
}, z.core.$strip>;
|
|
11998
12017
|
readonly querySchema: z.ZodObject<{
|
|
12018
|
+
'order[endAt]': z.ZodOptional<z.ZodEnum<{
|
|
12019
|
+
asc: "asc";
|
|
12020
|
+
desc: "desc";
|
|
12021
|
+
}>>;
|
|
12022
|
+
mode: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
12023
|
+
menu: "menu";
|
|
12024
|
+
item_availabilities: "item_availabilities";
|
|
12025
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
12026
|
+
menu: "menu";
|
|
12027
|
+
item_availabilities: "item_availabilities";
|
|
12028
|
+
}>>]>>;
|
|
12029
|
+
'createdAt[before]': z.ZodOptional<z.ZodString>;
|
|
12030
|
+
'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
12031
|
+
'createdAt[after]': z.ZodOptional<z.ZodString>;
|
|
12032
|
+
'createdAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
12033
|
+
'endAt[before]': z.ZodOptional<z.ZodString>;
|
|
12034
|
+
'endAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
12035
|
+
'endAt[after]': z.ZodOptional<z.ZodString>;
|
|
12036
|
+
'endAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
11999
12037
|
page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
12000
12038
|
}, z.core.$strip>;
|
|
12001
12039
|
readonly headersSchema: undefined;
|
|
@@ -14810,6 +14848,10 @@ declare class GetIntegrationJustEatSyncMenuProcessDetails extends AbstractApiReq
|
|
|
14810
14848
|
}
|
|
14811
14849
|
|
|
14812
14850
|
declare const getIntegrationJustEatSyncMenuProcessesQuerySchema: z.ZodObject<{
|
|
14851
|
+
'order[createdAt]': z.ZodOptional<z.ZodEnum<{
|
|
14852
|
+
asc: "asc";
|
|
14853
|
+
desc: "desc";
|
|
14854
|
+
}>>;
|
|
14813
14855
|
page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
14814
14856
|
}, z.core.$strip>;
|
|
14815
14857
|
type GetIntegrationJustEatSyncMenuProcessesQueryParams = z.infer<typeof getIntegrationJustEatSyncMenuProcessesQuerySchema>;
|
|
@@ -14854,6 +14896,10 @@ declare class GetIntegrationJustEatSyncMenuProcesses extends AbstractApiRequest<
|
|
|
14854
14896
|
}, z.core.$strip>;
|
|
14855
14897
|
}, z.core.$strip>;
|
|
14856
14898
|
readonly querySchema: z.ZodObject<{
|
|
14899
|
+
'order[createdAt]': z.ZodOptional<z.ZodEnum<{
|
|
14900
|
+
asc: "asc";
|
|
14901
|
+
desc: "desc";
|
|
14902
|
+
}>>;
|
|
14857
14903
|
page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
14858
14904
|
}, z.core.$strip>;
|
|
14859
14905
|
readonly headersSchema: undefined;
|
package/dist/index.d.ts
CHANGED
|
@@ -11942,6 +11942,25 @@ declare class GetIntegrationDeliverooSyncMenuProcessDetails extends AbstractApiR
|
|
|
11942
11942
|
}
|
|
11943
11943
|
|
|
11944
11944
|
declare const getIntegrationDeliverooSyncMenuProcessesQuerySchema: z.ZodObject<{
|
|
11945
|
+
'order[endAt]': z.ZodOptional<z.ZodEnum<{
|
|
11946
|
+
asc: "asc";
|
|
11947
|
+
desc: "desc";
|
|
11948
|
+
}>>;
|
|
11949
|
+
mode: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
11950
|
+
menu: "menu";
|
|
11951
|
+
item_availabilities: "item_availabilities";
|
|
11952
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
11953
|
+
menu: "menu";
|
|
11954
|
+
item_availabilities: "item_availabilities";
|
|
11955
|
+
}>>]>>;
|
|
11956
|
+
'createdAt[before]': z.ZodOptional<z.ZodString>;
|
|
11957
|
+
'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
11958
|
+
'createdAt[after]': z.ZodOptional<z.ZodString>;
|
|
11959
|
+
'createdAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
11960
|
+
'endAt[before]': z.ZodOptional<z.ZodString>;
|
|
11961
|
+
'endAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
11962
|
+
'endAt[after]': z.ZodOptional<z.ZodString>;
|
|
11963
|
+
'endAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
11945
11964
|
page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
11946
11965
|
}, z.core.$strip>;
|
|
11947
11966
|
type GetIntegrationDeliverooSyncMenuProcessesQueryParams = z.infer<typeof getIntegrationDeliverooSyncMenuProcessesQuerySchema>;
|
|
@@ -11996,6 +12015,25 @@ declare class GetIntegrationDeliverooSyncMenuProcesses extends AbstractApiReques
|
|
|
11996
12015
|
}, z.core.$strip>;
|
|
11997
12016
|
}, z.core.$strip>;
|
|
11998
12017
|
readonly querySchema: z.ZodObject<{
|
|
12018
|
+
'order[endAt]': z.ZodOptional<z.ZodEnum<{
|
|
12019
|
+
asc: "asc";
|
|
12020
|
+
desc: "desc";
|
|
12021
|
+
}>>;
|
|
12022
|
+
mode: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
12023
|
+
menu: "menu";
|
|
12024
|
+
item_availabilities: "item_availabilities";
|
|
12025
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
12026
|
+
menu: "menu";
|
|
12027
|
+
item_availabilities: "item_availabilities";
|
|
12028
|
+
}>>]>>;
|
|
12029
|
+
'createdAt[before]': z.ZodOptional<z.ZodString>;
|
|
12030
|
+
'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
12031
|
+
'createdAt[after]': z.ZodOptional<z.ZodString>;
|
|
12032
|
+
'createdAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
12033
|
+
'endAt[before]': z.ZodOptional<z.ZodString>;
|
|
12034
|
+
'endAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
12035
|
+
'endAt[after]': z.ZodOptional<z.ZodString>;
|
|
12036
|
+
'endAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
11999
12037
|
page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
12000
12038
|
}, z.core.$strip>;
|
|
12001
12039
|
readonly headersSchema: undefined;
|
|
@@ -14810,6 +14848,10 @@ declare class GetIntegrationJustEatSyncMenuProcessDetails extends AbstractApiReq
|
|
|
14810
14848
|
}
|
|
14811
14849
|
|
|
14812
14850
|
declare const getIntegrationJustEatSyncMenuProcessesQuerySchema: z.ZodObject<{
|
|
14851
|
+
'order[createdAt]': z.ZodOptional<z.ZodEnum<{
|
|
14852
|
+
asc: "asc";
|
|
14853
|
+
desc: "desc";
|
|
14854
|
+
}>>;
|
|
14813
14855
|
page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
14814
14856
|
}, z.core.$strip>;
|
|
14815
14857
|
type GetIntegrationJustEatSyncMenuProcessesQueryParams = z.infer<typeof getIntegrationJustEatSyncMenuProcessesQuerySchema>;
|
|
@@ -14854,6 +14896,10 @@ declare class GetIntegrationJustEatSyncMenuProcesses extends AbstractApiRequest<
|
|
|
14854
14896
|
}, z.core.$strip>;
|
|
14855
14897
|
}, z.core.$strip>;
|
|
14856
14898
|
readonly querySchema: z.ZodObject<{
|
|
14899
|
+
'order[createdAt]': z.ZodOptional<z.ZodEnum<{
|
|
14900
|
+
asc: "asc";
|
|
14901
|
+
desc: "desc";
|
|
14902
|
+
}>>;
|
|
14857
14903
|
page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
14858
14904
|
}, z.core.$strip>;
|
|
14859
14905
|
readonly headersSchema: undefined;
|
package/dist/index.js
CHANGED
|
@@ -15867,9 +15867,7 @@ var GetIntegrationDeliverooSyncMenuProcessDetails = class extends AbstractApiReq
|
|
|
15867
15867
|
// src/requests/services/deliveroo/GetIntegrationDeliverooSyncMenuProcesses.ts
|
|
15868
15868
|
import { AbstractApiRequest as AbstractApiRequest46 } from "@deliverart/sdk-js-core";
|
|
15869
15869
|
import { createPaginatedSchema as createPaginatedSchema11 } from "@deliverart/sdk-js-global-types";
|
|
15870
|
-
var getIntegrationDeliverooSyncMenuProcessesQuerySchema =
|
|
15871
|
-
page: external_exports.coerce.number().optional()
|
|
15872
|
-
});
|
|
15870
|
+
var getIntegrationDeliverooSyncMenuProcessesQuerySchema = integrationDeliverooSyncMenuProcessesQuerySchema;
|
|
15873
15871
|
var getIntegrationDeliverooSyncMenuProcessesInputSchema = external_exports.undefined();
|
|
15874
15872
|
var getIntegrationDeliverooSyncMenuProcessesResponseSchema = createPaginatedSchema11(
|
|
15875
15873
|
integrationDeliverooSyncMenuProcessSchema
|
|
@@ -16653,9 +16651,7 @@ var GetIntegrationJustEatSyncMenuProcessDetails = class extends AbstractApiReque
|
|
|
16653
16651
|
// src/requests/services/justeat/GetIntegrationJustEatSyncMenuProcesses.ts
|
|
16654
16652
|
import { AbstractApiRequest as AbstractApiRequest79 } from "@deliverart/sdk-js-core";
|
|
16655
16653
|
import { createPaginatedSchema as createPaginatedSchema22 } from "@deliverart/sdk-js-global-types";
|
|
16656
|
-
var getIntegrationJustEatSyncMenuProcessesQuerySchema =
|
|
16657
|
-
page: external_exports.coerce.number().optional()
|
|
16658
|
-
});
|
|
16654
|
+
var getIntegrationJustEatSyncMenuProcessesQuerySchema = integrationJustEatSyncMenuProcessesQuerySchema;
|
|
16659
16655
|
var getIntegrationJustEatSyncMenuProcessesInputSchema = external_exports.undefined();
|
|
16660
16656
|
var getIntegrationJustEatSyncMenuProcessesResponseSchema = createPaginatedSchema22(
|
|
16661
16657
|
integrationJustEatSyncMenuProcessSchema
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deliverart/sdk-js-integration",
|
|
3
3
|
"description": "Deliverart JavaScript SDK for Integration Management",
|
|
4
|
-
"version": "2.9.
|
|
4
|
+
"version": "2.9.3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
7
7
|
"types": "dist/index.d.ts",
|
|
@@ -18,12 +18,12 @@
|
|
|
18
18
|
"dist"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@deliverart/sdk-js-
|
|
22
|
-
"@deliverart/sdk-js-
|
|
23
|
-
"@deliverart/sdk-js-
|
|
24
|
-
"@deliverart/sdk-js-
|
|
25
|
-
"@deliverart/sdk-js-
|
|
26
|
-
"@deliverart/sdk-js-
|
|
21
|
+
"@deliverart/sdk-js-order": "2.9.3",
|
|
22
|
+
"@deliverart/sdk-js-image": "2.9.3",
|
|
23
|
+
"@deliverart/sdk-js-core": "2.9.3",
|
|
24
|
+
"@deliverart/sdk-js-global-types": "2.9.3",
|
|
25
|
+
"@deliverart/sdk-js-sales-mode": "2.9.3",
|
|
26
|
+
"@deliverart/sdk-js-point-of-sale": "2.9.3"
|
|
27
27
|
},
|
|
28
28
|
"publishConfig": {
|
|
29
29
|
"access": "public"
|