@deliverart/sdk-js-integration 2.9.3 → 2.10.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.cjs +22 -13
- package/dist/index.d.cts +427 -220
- package/dist/index.d.ts +427 -220
- package/dist/index.js +21 -13
- package/package.json +7 -7
package/dist/index.d.cts
CHANGED
|
@@ -966,12 +966,7 @@ declare const integrationSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
966
966
|
cassa_in_cloud: "cassa_in_cloud";
|
|
967
967
|
}>;
|
|
968
968
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
969
|
-
direction: z.ZodEnum<{
|
|
970
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
971
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
972
|
-
}>;
|
|
973
969
|
locale: z.ZodString;
|
|
974
|
-
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
975
970
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
976
971
|
syncSettings: z.ZodObject<{
|
|
977
972
|
externalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -982,6 +977,19 @@ declare const integrationSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
982
977
|
SKIP_ITEM: "SKIP_ITEM";
|
|
983
978
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
984
979
|
}>>;
|
|
980
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
981
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
982
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
983
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
984
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
985
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
986
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
987
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
988
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
989
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
990
|
+
}, z.core.$strip>;
|
|
991
|
+
syncTimes: z.ZodObject<{
|
|
992
|
+
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
985
993
|
}, z.core.$strip>;
|
|
986
994
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
987
995
|
RISTO: "RISTO";
|
|
@@ -1161,12 +1169,7 @@ declare const integrationDetailsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1161
1169
|
cassa_in_cloud: "cassa_in_cloud";
|
|
1162
1170
|
}>;
|
|
1163
1171
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
1164
|
-
direction: z.ZodEnum<{
|
|
1165
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
1166
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
1167
|
-
}>;
|
|
1168
1172
|
locale: z.ZodString;
|
|
1169
|
-
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
1170
1173
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
1171
1174
|
syncSettings: z.ZodObject<{
|
|
1172
1175
|
externalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -1177,6 +1180,19 @@ declare const integrationDetailsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1177
1180
|
SKIP_ITEM: "SKIP_ITEM";
|
|
1178
1181
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
1179
1182
|
}>>;
|
|
1183
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
1184
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
1185
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
1186
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
1187
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
1188
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
1189
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
1190
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
1191
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
1192
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
1193
|
+
}, z.core.$strip>;
|
|
1194
|
+
syncTimes: z.ZodObject<{
|
|
1195
|
+
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
1180
1196
|
}, z.core.$strip>;
|
|
1181
1197
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
1182
1198
|
RISTO: "RISTO";
|
|
@@ -6741,12 +6757,7 @@ declare const getIntegrationDetailsResponseSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
6741
6757
|
cassa_in_cloud: "cassa_in_cloud";
|
|
6742
6758
|
}>;
|
|
6743
6759
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
6744
|
-
direction: z.ZodEnum<{
|
|
6745
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
6746
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
6747
|
-
}>;
|
|
6748
6760
|
locale: z.ZodString;
|
|
6749
|
-
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
6750
6761
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
6751
6762
|
syncSettings: z.ZodObject<{
|
|
6752
6763
|
externalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -6757,6 +6768,19 @@ declare const getIntegrationDetailsResponseSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
6757
6768
|
SKIP_ITEM: "SKIP_ITEM";
|
|
6758
6769
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
6759
6770
|
}>>;
|
|
6771
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
6772
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
6773
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
6774
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
6775
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
6776
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
6777
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
6778
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
6779
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
6780
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
6781
|
+
}, z.core.$strip>;
|
|
6782
|
+
syncTimes: z.ZodObject<{
|
|
6783
|
+
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
6760
6784
|
}, z.core.$strip>;
|
|
6761
6785
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
6762
6786
|
RISTO: "RISTO";
|
|
@@ -6942,12 +6966,7 @@ declare class GetIntegrationDetails extends AbstractApiRequest<typeof getIntegra
|
|
|
6942
6966
|
cassa_in_cloud: "cassa_in_cloud";
|
|
6943
6967
|
}>;
|
|
6944
6968
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
6945
|
-
direction: z.ZodEnum<{
|
|
6946
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
6947
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
6948
|
-
}>;
|
|
6949
6969
|
locale: z.ZodString;
|
|
6950
|
-
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
6951
6970
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
6952
6971
|
syncSettings: z.ZodObject<{
|
|
6953
6972
|
externalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -6958,6 +6977,19 @@ declare class GetIntegrationDetails extends AbstractApiRequest<typeof getIntegra
|
|
|
6958
6977
|
SKIP_ITEM: "SKIP_ITEM";
|
|
6959
6978
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
6960
6979
|
}>>;
|
|
6980
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
6981
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
6982
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
6983
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
6984
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
6985
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
6986
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
6987
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
6988
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
6989
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
6990
|
+
}, z.core.$strip>;
|
|
6991
|
+
syncTimes: z.ZodObject<{
|
|
6992
|
+
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
6961
6993
|
}, z.core.$strip>;
|
|
6962
6994
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
6963
6995
|
RISTO: "RISTO";
|
|
@@ -7179,12 +7211,7 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
|
|
|
7179
7211
|
cassa_in_cloud: "cassa_in_cloud";
|
|
7180
7212
|
}>;
|
|
7181
7213
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
7182
|
-
direction: z.ZodEnum<{
|
|
7183
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
7184
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
7185
|
-
}>;
|
|
7186
7214
|
locale: z.ZodString;
|
|
7187
|
-
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
7188
7215
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
7189
7216
|
syncSettings: z.ZodObject<{
|
|
7190
7217
|
externalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -7195,6 +7222,19 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
|
|
|
7195
7222
|
SKIP_ITEM: "SKIP_ITEM";
|
|
7196
7223
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
7197
7224
|
}>>;
|
|
7225
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
7226
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
7227
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
7228
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
7229
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
7230
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
7231
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
7232
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
7233
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
7234
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
7235
|
+
}, z.core.$strip>;
|
|
7236
|
+
syncTimes: z.ZodObject<{
|
|
7237
|
+
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
7198
7238
|
}, z.core.$strip>;
|
|
7199
7239
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
7200
7240
|
RISTO: "RISTO";
|
|
@@ -7384,12 +7424,7 @@ declare class GetIntegrations extends AbstractApiRequest<typeof getIntegrationsI
|
|
|
7384
7424
|
cassa_in_cloud: "cassa_in_cloud";
|
|
7385
7425
|
}>;
|
|
7386
7426
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
7387
|
-
direction: z.ZodEnum<{
|
|
7388
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
7389
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
7390
|
-
}>;
|
|
7391
7427
|
locale: z.ZodString;
|
|
7392
|
-
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
7393
7428
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
7394
7429
|
syncSettings: z.ZodObject<{
|
|
7395
7430
|
externalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -7400,6 +7435,19 @@ declare class GetIntegrations extends AbstractApiRequest<typeof getIntegrationsI
|
|
|
7400
7435
|
SKIP_ITEM: "SKIP_ITEM";
|
|
7401
7436
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
7402
7437
|
}>>;
|
|
7438
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
7439
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
7440
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
7441
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
7442
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
7443
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
7444
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
7445
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
7446
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
7447
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
7448
|
+
}, z.core.$strip>;
|
|
7449
|
+
syncTimes: z.ZodObject<{
|
|
7450
|
+
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
7403
7451
|
}, z.core.$strip>;
|
|
7404
7452
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
7405
7453
|
RISTO: "RISTO";
|
|
@@ -7619,12 +7667,7 @@ declare class GetIntegrations extends AbstractApiRequest<typeof getIntegrationsI
|
|
|
7619
7667
|
cassa_in_cloud: "cassa_in_cloud";
|
|
7620
7668
|
}>;
|
|
7621
7669
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
7622
|
-
direction: z.ZodEnum<{
|
|
7623
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
7624
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
7625
|
-
}>;
|
|
7626
7670
|
locale: z.ZodString;
|
|
7627
|
-
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
7628
7671
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
7629
7672
|
syncSettings: z.ZodObject<{
|
|
7630
7673
|
externalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -7635,6 +7678,19 @@ declare class GetIntegrations extends AbstractApiRequest<typeof getIntegrationsI
|
|
|
7635
7678
|
SKIP_ITEM: "SKIP_ITEM";
|
|
7636
7679
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
7637
7680
|
}>>;
|
|
7681
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
7682
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
7683
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
7684
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
7685
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
7686
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
7687
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
7688
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
7689
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
7690
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
7691
|
+
}, z.core.$strip>;
|
|
7692
|
+
syncTimes: z.ZodObject<{
|
|
7693
|
+
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
7638
7694
|
}, z.core.$strip>;
|
|
7639
7695
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
7640
7696
|
RISTO: "RISTO";
|
|
@@ -7854,12 +7910,7 @@ declare const getIntegrationsFromPointOfSaleResponseSchema: z.ZodArray<z.ZodDisc
|
|
|
7854
7910
|
cassa_in_cloud: "cassa_in_cloud";
|
|
7855
7911
|
}>;
|
|
7856
7912
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
7857
|
-
direction: z.ZodEnum<{
|
|
7858
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
7859
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
7860
|
-
}>;
|
|
7861
7913
|
locale: z.ZodString;
|
|
7862
|
-
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
7863
7914
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
7864
7915
|
syncSettings: z.ZodObject<{
|
|
7865
7916
|
externalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -7870,6 +7921,19 @@ declare const getIntegrationsFromPointOfSaleResponseSchema: z.ZodArray<z.ZodDisc
|
|
|
7870
7921
|
SKIP_ITEM: "SKIP_ITEM";
|
|
7871
7922
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
7872
7923
|
}>>;
|
|
7924
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
7925
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
7926
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
7927
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
7928
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
7929
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
7930
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
7931
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
7932
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
7933
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
7934
|
+
}, z.core.$strip>;
|
|
7935
|
+
syncTimes: z.ZodObject<{
|
|
7936
|
+
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
7873
7937
|
}, z.core.$strip>;
|
|
7874
7938
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
7875
7939
|
RISTO: "RISTO";
|
|
@@ -8049,12 +8113,7 @@ declare class GetIntegrationsFromPointOfSale extends AbstractApiRequest<typeof g
|
|
|
8049
8113
|
cassa_in_cloud: "cassa_in_cloud";
|
|
8050
8114
|
}>;
|
|
8051
8115
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
8052
|
-
direction: z.ZodEnum<{
|
|
8053
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
8054
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
8055
|
-
}>;
|
|
8056
8116
|
locale: z.ZodString;
|
|
8057
|
-
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
8058
8117
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
8059
8118
|
syncSettings: z.ZodObject<{
|
|
8060
8119
|
externalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -8065,6 +8124,19 @@ declare class GetIntegrationsFromPointOfSale extends AbstractApiRequest<typeof g
|
|
|
8065
8124
|
SKIP_ITEM: "SKIP_ITEM";
|
|
8066
8125
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
8067
8126
|
}>>;
|
|
8127
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
8128
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
8129
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
8130
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
8131
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
8132
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
8133
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
8134
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
8135
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
8136
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
8137
|
+
}, z.core.$strip>;
|
|
8138
|
+
syncTimes: z.ZodObject<{
|
|
8139
|
+
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
8068
8140
|
}, z.core.$strip>;
|
|
8069
8141
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
8070
8142
|
RISTO: "RISTO";
|
|
@@ -8275,12 +8347,7 @@ declare class GetIntegrationsFromPointOfSale extends AbstractApiRequest<typeof g
|
|
|
8275
8347
|
cassa_in_cloud: "cassa_in_cloud";
|
|
8276
8348
|
}>;
|
|
8277
8349
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
8278
|
-
direction: z.ZodEnum<{
|
|
8279
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
8280
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
8281
|
-
}>;
|
|
8282
8350
|
locale: z.ZodString;
|
|
8283
|
-
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
8284
8351
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
8285
8352
|
syncSettings: z.ZodObject<{
|
|
8286
8353
|
externalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -8291,6 +8358,19 @@ declare class GetIntegrationsFromPointOfSale extends AbstractApiRequest<typeof g
|
|
|
8291
8358
|
SKIP_ITEM: "SKIP_ITEM";
|
|
8292
8359
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
8293
8360
|
}>>;
|
|
8361
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
8362
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
8363
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
8364
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
8365
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
8366
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
8367
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
8368
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
8369
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
8370
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
8371
|
+
}, z.core.$strip>;
|
|
8372
|
+
syncTimes: z.ZodObject<{
|
|
8373
|
+
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
8294
8374
|
}, z.core.$strip>;
|
|
8295
8375
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
8296
8376
|
RISTO: "RISTO";
|
|
@@ -8318,8 +8398,22 @@ declare const integrationCassaInCloudSyncSettingsSchema: z.ZodObject<{
|
|
|
8318
8398
|
SKIP_ITEM: "SKIP_ITEM";
|
|
8319
8399
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
8320
8400
|
}>>;
|
|
8401
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
8402
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
8403
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
8404
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
8405
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
8406
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
8407
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
8408
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
8409
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
8410
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
8321
8411
|
}, z.core.$strip>;
|
|
8322
8412
|
type IntegrationCassaInCloudSyncSettings = z.infer<typeof integrationCassaInCloudSyncSettingsSchema>;
|
|
8413
|
+
declare const integrationCassaInCloudSyncTimesSchema: z.ZodObject<{
|
|
8414
|
+
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
8415
|
+
}, z.core.$strip>;
|
|
8416
|
+
type IntegrationCassaInCloudSyncTimes = z.infer<typeof integrationCassaInCloudSyncTimesSchema>;
|
|
8323
8417
|
declare const integrationCassaInCloudSchema: z.ZodObject<{
|
|
8324
8418
|
status: z.ZodEnum<{
|
|
8325
8419
|
pending: "pending";
|
|
@@ -8342,12 +8436,7 @@ declare const integrationCassaInCloudSchema: z.ZodObject<{
|
|
|
8342
8436
|
cassa_in_cloud: "cassa_in_cloud";
|
|
8343
8437
|
}>;
|
|
8344
8438
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
8345
|
-
direction: z.ZodEnum<{
|
|
8346
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
8347
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
8348
|
-
}>;
|
|
8349
8439
|
locale: z.ZodString;
|
|
8350
|
-
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
8351
8440
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
8352
8441
|
syncSettings: z.ZodObject<{
|
|
8353
8442
|
externalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -8358,6 +8447,19 @@ declare const integrationCassaInCloudSchema: z.ZodObject<{
|
|
|
8358
8447
|
SKIP_ITEM: "SKIP_ITEM";
|
|
8359
8448
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
8360
8449
|
}>>;
|
|
8450
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
8451
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
8452
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
8453
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
8454
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
8455
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
8456
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
8457
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
8458
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
8459
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
8460
|
+
}, z.core.$strip>;
|
|
8461
|
+
syncTimes: z.ZodObject<{
|
|
8462
|
+
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
8361
8463
|
}, z.core.$strip>;
|
|
8362
8464
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
8363
8465
|
RISTO: "RISTO";
|
|
@@ -8391,12 +8493,7 @@ declare const integrationCassaInCloudDetailsSchema: z.ZodObject<{
|
|
|
8391
8493
|
cassa_in_cloud: "cassa_in_cloud";
|
|
8392
8494
|
}>;
|
|
8393
8495
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
8394
|
-
direction: z.ZodEnum<{
|
|
8395
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
8396
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
8397
|
-
}>;
|
|
8398
8496
|
locale: z.ZodString;
|
|
8399
|
-
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
8400
8497
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
8401
8498
|
syncSettings: z.ZodObject<{
|
|
8402
8499
|
externalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -8407,6 +8504,19 @@ declare const integrationCassaInCloudDetailsSchema: z.ZodObject<{
|
|
|
8407
8504
|
SKIP_ITEM: "SKIP_ITEM";
|
|
8408
8505
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
8409
8506
|
}>>;
|
|
8507
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
8508
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
8509
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
8510
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
8511
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
8512
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
8513
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
8514
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
8515
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
8516
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
8517
|
+
}, z.core.$strip>;
|
|
8518
|
+
syncTimes: z.ZodObject<{
|
|
8519
|
+
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
8410
8520
|
}, z.core.$strip>;
|
|
8411
8521
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
8412
8522
|
RISTO: "RISTO";
|
|
@@ -8428,19 +8538,12 @@ declare const integrationsCassaInCloudQuerySchema: z.ZodObject<{
|
|
|
8428
8538
|
asc: "asc";
|
|
8429
8539
|
desc: "desc";
|
|
8430
8540
|
}>>;
|
|
8431
|
-
'order[latestMenuSyncAt]': z.ZodOptional<z.ZodEnum<{
|
|
8541
|
+
'order[syncTimes.latestMenuSyncAt]': z.ZodOptional<z.ZodEnum<{
|
|
8432
8542
|
asc: "asc";
|
|
8433
8543
|
desc: "desc";
|
|
8434
8544
|
}>>;
|
|
8435
8545
|
apiKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodOptional<z.ZodString>, z.ZodArray<z.ZodString>]>>;
|
|
8436
8546
|
idSalesPoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
8437
|
-
direction: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
8438
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
8439
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
8440
|
-
}>, z.ZodArray<z.ZodEnum<{
|
|
8441
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
8442
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
8443
|
-
}>>]>>;
|
|
8444
8547
|
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
8445
8548
|
pending: "pending";
|
|
8446
8549
|
active: "active";
|
|
@@ -8454,10 +8557,10 @@ declare const integrationsCassaInCloudQuerySchema: z.ZodObject<{
|
|
|
8454
8557
|
finalized: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodBoolean>>;
|
|
8455
8558
|
skipInvalidItem: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodBoolean>>;
|
|
8456
8559
|
isValidMenu: z.ZodOptional<z.ZodPipe<z.ZodTransform<unknown, unknown>, z.ZodBoolean>>;
|
|
8457
|
-
'latestMenuSyncAt[before]': z.ZodOptional<z.ZodString>;
|
|
8458
|
-
'latestMenuSyncAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
8459
|
-
'latestMenuSyncAt[after]': z.ZodOptional<z.ZodString>;
|
|
8460
|
-
'latestMenuSyncAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
8560
|
+
'syncTimes.latestMenuSyncAt[before]': z.ZodOptional<z.ZodString>;
|
|
8561
|
+
'syncTimes.latestMenuSyncAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
8562
|
+
'syncTimes.latestMenuSyncAt[after]': z.ZodOptional<z.ZodString>;
|
|
8563
|
+
'syncTimes.latestMenuSyncAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
8461
8564
|
service: z.ZodOptional<z.ZodEnum<{
|
|
8462
8565
|
cassa_in_cloud: "cassa_in_cloud";
|
|
8463
8566
|
}>>;
|
|
@@ -8473,10 +8576,6 @@ declare const integrationsCassaInCloudQuerySchema: z.ZodObject<{
|
|
|
8473
8576
|
}, z.core.$strip>;
|
|
8474
8577
|
type IntegrationsCassaInCloudQueryParams = z.infer<typeof integrationsCassaInCloudQuerySchema>;
|
|
8475
8578
|
declare const integrationCassaInCloudEditableFieldsSchema: z.ZodObject<{
|
|
8476
|
-
direction: z.ZodEnum<{
|
|
8477
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
8478
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
8479
|
-
}>;
|
|
8480
8579
|
apiKey: z.ZodString;
|
|
8481
8580
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
8482
8581
|
locale: z.ZodString;
|
|
@@ -8493,6 +8592,16 @@ declare const integrationCassaInCloudEditableFieldsSchema: z.ZodObject<{
|
|
|
8493
8592
|
SKIP_ITEM: "SKIP_ITEM";
|
|
8494
8593
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
8495
8594
|
}>>;
|
|
8595
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
8596
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
8597
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
8598
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
8599
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
8600
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
8601
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
8602
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
8603
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
8604
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
8496
8605
|
}, z.core.$strip>;
|
|
8497
8606
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
8498
8607
|
RISTO: "RISTO";
|
|
@@ -9559,10 +9668,6 @@ declare const integrationKitchenAccessTokensQuerySchema: z.ZodObject<{
|
|
|
9559
9668
|
type IntegrationKitchenAccessTokensQueryParams = z.infer<typeof integrationKitchenAccessTokensQuerySchema>;
|
|
9560
9669
|
|
|
9561
9670
|
declare const createIntegrationCassaInCloudInputSchema: z.ZodObject<{
|
|
9562
|
-
direction: z.ZodEnum<{
|
|
9563
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
9564
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
9565
|
-
}>;
|
|
9566
9671
|
apiKey: z.ZodString;
|
|
9567
9672
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
9568
9673
|
locale: z.ZodString;
|
|
@@ -9579,6 +9684,16 @@ declare const createIntegrationCassaInCloudInputSchema: z.ZodObject<{
|
|
|
9579
9684
|
SKIP_ITEM: "SKIP_ITEM";
|
|
9580
9685
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
9581
9686
|
}>>;
|
|
9687
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
9688
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
9689
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
9690
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
9691
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
9692
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
9693
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
9694
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
9695
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
9696
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
9582
9697
|
}, z.core.$strip>;
|
|
9583
9698
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
9584
9699
|
RISTO: "RISTO";
|
|
@@ -9613,12 +9728,7 @@ declare const createIntegrationCassaInCloudResponseSchema: z.ZodObject<{
|
|
|
9613
9728
|
cassa_in_cloud: "cassa_in_cloud";
|
|
9614
9729
|
}>;
|
|
9615
9730
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
9616
|
-
direction: z.ZodEnum<{
|
|
9617
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
9618
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
9619
|
-
}>;
|
|
9620
9731
|
locale: z.ZodString;
|
|
9621
|
-
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
9622
9732
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
9623
9733
|
syncSettings: z.ZodObject<{
|
|
9624
9734
|
externalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -9629,6 +9739,19 @@ declare const createIntegrationCassaInCloudResponseSchema: z.ZodObject<{
|
|
|
9629
9739
|
SKIP_ITEM: "SKIP_ITEM";
|
|
9630
9740
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
9631
9741
|
}>>;
|
|
9742
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
9743
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
9744
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
9745
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
9746
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
9747
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
9748
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
9749
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
9750
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
9751
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
9752
|
+
}, z.core.$strip>;
|
|
9753
|
+
syncTimes: z.ZodObject<{
|
|
9754
|
+
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
9632
9755
|
}, z.core.$strip>;
|
|
9633
9756
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
9634
9757
|
RISTO: "RISTO";
|
|
@@ -9646,10 +9769,6 @@ declare class CreateIntegrationCassaInCloud extends AbstractApiRequest<typeof cr
|
|
|
9646
9769
|
readonly contentType = "application/json";
|
|
9647
9770
|
readonly accept = "application/json";
|
|
9648
9771
|
readonly inputSchema: z.ZodObject<{
|
|
9649
|
-
direction: z.ZodEnum<{
|
|
9650
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
9651
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
9652
|
-
}>;
|
|
9653
9772
|
apiKey: z.ZodString;
|
|
9654
9773
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
9655
9774
|
locale: z.ZodString;
|
|
@@ -9666,6 +9785,16 @@ declare class CreateIntegrationCassaInCloud extends AbstractApiRequest<typeof cr
|
|
|
9666
9785
|
SKIP_ITEM: "SKIP_ITEM";
|
|
9667
9786
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
9668
9787
|
}>>;
|
|
9788
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
9789
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
9790
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
9791
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
9792
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
9793
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
9794
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
9795
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
9796
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
9797
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
9669
9798
|
}, z.core.$strip>;
|
|
9670
9799
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
9671
9800
|
RISTO: "RISTO";
|
|
@@ -9699,12 +9828,7 @@ declare class CreateIntegrationCassaInCloud extends AbstractApiRequest<typeof cr
|
|
|
9699
9828
|
cassa_in_cloud: "cassa_in_cloud";
|
|
9700
9829
|
}>;
|
|
9701
9830
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
9702
|
-
direction: z.ZodEnum<{
|
|
9703
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
9704
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
9705
|
-
}>;
|
|
9706
9831
|
locale: z.ZodString;
|
|
9707
|
-
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
9708
9832
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
9709
9833
|
syncSettings: z.ZodObject<{
|
|
9710
9834
|
externalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -9715,6 +9839,19 @@ declare class CreateIntegrationCassaInCloud extends AbstractApiRequest<typeof cr
|
|
|
9715
9839
|
SKIP_ITEM: "SKIP_ITEM";
|
|
9716
9840
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
9717
9841
|
}>>;
|
|
9842
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
9843
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
9844
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
9845
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
9846
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
9847
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
9848
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
9849
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
9850
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
9851
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
9852
|
+
}, z.core.$strip>;
|
|
9853
|
+
syncTimes: z.ZodObject<{
|
|
9854
|
+
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
9718
9855
|
}, z.core.$strip>;
|
|
9719
9856
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
9720
9857
|
RISTO: "RISTO";
|
|
@@ -10095,12 +10232,7 @@ declare const getIntegrationCassaInCloudDetailsResponseSchema: z.ZodObject<{
|
|
|
10095
10232
|
cassa_in_cloud: "cassa_in_cloud";
|
|
10096
10233
|
}>;
|
|
10097
10234
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
10098
|
-
direction: z.ZodEnum<{
|
|
10099
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
10100
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
10101
|
-
}>;
|
|
10102
10235
|
locale: z.ZodString;
|
|
10103
|
-
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
10104
10236
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
10105
10237
|
syncSettings: z.ZodObject<{
|
|
10106
10238
|
externalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -10111,6 +10243,19 @@ declare const getIntegrationCassaInCloudDetailsResponseSchema: z.ZodObject<{
|
|
|
10111
10243
|
SKIP_ITEM: "SKIP_ITEM";
|
|
10112
10244
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
10113
10245
|
}>>;
|
|
10246
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
10247
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
10248
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
10249
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
10250
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
10251
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
10252
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
10253
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
10254
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
10255
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
10256
|
+
}, z.core.$strip>;
|
|
10257
|
+
syncTimes: z.ZodObject<{
|
|
10258
|
+
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
10114
10259
|
}, z.core.$strip>;
|
|
10115
10260
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
10116
10261
|
RISTO: "RISTO";
|
|
@@ -10150,12 +10295,7 @@ declare class GetIntegrationCassaInCloudDetails extends AbstractApiRequest<typeo
|
|
|
10150
10295
|
cassa_in_cloud: "cassa_in_cloud";
|
|
10151
10296
|
}>;
|
|
10152
10297
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
10153
|
-
direction: z.ZodEnum<{
|
|
10154
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
10155
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
10156
|
-
}>;
|
|
10157
10298
|
locale: z.ZodString;
|
|
10158
|
-
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
10159
10299
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
10160
10300
|
syncSettings: z.ZodObject<{
|
|
10161
10301
|
externalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -10166,6 +10306,19 @@ declare class GetIntegrationCassaInCloudDetails extends AbstractApiRequest<typeo
|
|
|
10166
10306
|
SKIP_ITEM: "SKIP_ITEM";
|
|
10167
10307
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
10168
10308
|
}>>;
|
|
10309
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
10310
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
10311
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
10312
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
10313
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
10314
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
10315
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
10316
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
10317
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
10318
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
10319
|
+
}, z.core.$strip>;
|
|
10320
|
+
syncTimes: z.ZodObject<{
|
|
10321
|
+
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
10169
10322
|
}, z.core.$strip>;
|
|
10170
10323
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
10171
10324
|
RISTO: "RISTO";
|
|
@@ -10185,13 +10338,6 @@ declare class GetIntegrationCassaInCloudDetails extends AbstractApiRequest<typeo
|
|
|
10185
10338
|
}
|
|
10186
10339
|
|
|
10187
10340
|
declare const getIntegrationCassaInCloudListQuerySchema: z.ZodObject<{
|
|
10188
|
-
direction: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
10189
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
10190
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
10191
|
-
}>, z.ZodArray<z.ZodEnum<{
|
|
10192
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
10193
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
10194
|
-
}>>]>>;
|
|
10195
10341
|
apiKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodOptional<z.ZodString>, z.ZodArray<z.ZodString>]>>;
|
|
10196
10342
|
idSalesPoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
10197
10343
|
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -10220,14 +10366,14 @@ declare const getIntegrationCassaInCloudListQuerySchema: z.ZodObject<{
|
|
|
10220
10366
|
asc: "asc";
|
|
10221
10367
|
desc: "desc";
|
|
10222
10368
|
}>>;
|
|
10223
|
-
'order[latestMenuSyncAt]': z.ZodOptional<z.ZodEnum<{
|
|
10369
|
+
'order[syncTimes.latestMenuSyncAt]': z.ZodOptional<z.ZodEnum<{
|
|
10224
10370
|
asc: "asc";
|
|
10225
10371
|
desc: "desc";
|
|
10226
10372
|
}>>;
|
|
10227
|
-
'latestMenuSyncAt[before]': z.ZodOptional<z.ZodString>;
|
|
10228
|
-
'latestMenuSyncAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
10229
|
-
'latestMenuSyncAt[after]': z.ZodOptional<z.ZodString>;
|
|
10230
|
-
'latestMenuSyncAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
10373
|
+
'syncTimes.latestMenuSyncAt[before]': z.ZodOptional<z.ZodString>;
|
|
10374
|
+
'syncTimes.latestMenuSyncAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
10375
|
+
'syncTimes.latestMenuSyncAt[after]': z.ZodOptional<z.ZodString>;
|
|
10376
|
+
'syncTimes.latestMenuSyncAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
10231
10377
|
'updatedAt[before]': z.ZodOptional<z.ZodString>;
|
|
10232
10378
|
'updatedAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
10233
10379
|
'updatedAt[after]': z.ZodOptional<z.ZodString>;
|
|
@@ -10259,12 +10405,7 @@ declare const getIntegrationCassaInCloudListResponseSchema: z.ZodObject<{
|
|
|
10259
10405
|
cassa_in_cloud: "cassa_in_cloud";
|
|
10260
10406
|
}>;
|
|
10261
10407
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
10262
|
-
direction: z.ZodEnum<{
|
|
10263
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
10264
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
10265
|
-
}>;
|
|
10266
10408
|
locale: z.ZodString;
|
|
10267
|
-
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
10268
10409
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
10269
10410
|
syncSettings: z.ZodObject<{
|
|
10270
10411
|
externalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -10275,6 +10416,19 @@ declare const getIntegrationCassaInCloudListResponseSchema: z.ZodObject<{
|
|
|
10275
10416
|
SKIP_ITEM: "SKIP_ITEM";
|
|
10276
10417
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
10277
10418
|
}>>;
|
|
10419
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
10420
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
10421
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
10422
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
10423
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
10424
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
10425
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
10426
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
10427
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
10428
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
10429
|
+
}, z.core.$strip>;
|
|
10430
|
+
syncTimes: z.ZodObject<{
|
|
10431
|
+
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
10278
10432
|
}, z.core.$strip>;
|
|
10279
10433
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
10280
10434
|
RISTO: "RISTO";
|
|
@@ -10323,12 +10477,7 @@ declare class GetIntegrationCassaInCloudList extends AbstractApiRequest<typeof g
|
|
|
10323
10477
|
cassa_in_cloud: "cassa_in_cloud";
|
|
10324
10478
|
}>;
|
|
10325
10479
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
10326
|
-
direction: z.ZodEnum<{
|
|
10327
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
10328
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
10329
|
-
}>;
|
|
10330
10480
|
locale: z.ZodString;
|
|
10331
|
-
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
10332
10481
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
10333
10482
|
syncSettings: z.ZodObject<{
|
|
10334
10483
|
externalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -10339,6 +10488,19 @@ declare class GetIntegrationCassaInCloudList extends AbstractApiRequest<typeof g
|
|
|
10339
10488
|
SKIP_ITEM: "SKIP_ITEM";
|
|
10340
10489
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
10341
10490
|
}>>;
|
|
10491
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
10492
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
10493
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
10494
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
10495
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
10496
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
10497
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
10498
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
10499
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
10500
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
10501
|
+
}, z.core.$strip>;
|
|
10502
|
+
syncTimes: z.ZodObject<{
|
|
10503
|
+
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
10342
10504
|
}, z.core.$strip>;
|
|
10343
10505
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
10344
10506
|
RISTO: "RISTO";
|
|
@@ -10359,13 +10521,6 @@ declare class GetIntegrationCassaInCloudList extends AbstractApiRequest<typeof g
|
|
|
10359
10521
|
}, z.core.$strip>;
|
|
10360
10522
|
}, z.core.$strip>;
|
|
10361
10523
|
readonly querySchema: z.ZodObject<{
|
|
10362
|
-
direction: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
10363
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
10364
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
10365
|
-
}>, z.ZodArray<z.ZodEnum<{
|
|
10366
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
10367
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
10368
|
-
}>>]>>;
|
|
10369
10524
|
apiKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodOptional<z.ZodString>, z.ZodArray<z.ZodString>]>>;
|
|
10370
10525
|
idSalesPoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
10371
10526
|
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -10394,14 +10549,14 @@ declare class GetIntegrationCassaInCloudList extends AbstractApiRequest<typeof g
|
|
|
10394
10549
|
asc: "asc";
|
|
10395
10550
|
desc: "desc";
|
|
10396
10551
|
}>>;
|
|
10397
|
-
'order[latestMenuSyncAt]': z.ZodOptional<z.ZodEnum<{
|
|
10552
|
+
'order[syncTimes.latestMenuSyncAt]': z.ZodOptional<z.ZodEnum<{
|
|
10398
10553
|
asc: "asc";
|
|
10399
10554
|
desc: "desc";
|
|
10400
10555
|
}>>;
|
|
10401
|
-
'latestMenuSyncAt[before]': z.ZodOptional<z.ZodString>;
|
|
10402
|
-
'latestMenuSyncAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
10403
|
-
'latestMenuSyncAt[after]': z.ZodOptional<z.ZodString>;
|
|
10404
|
-
'latestMenuSyncAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
10556
|
+
'syncTimes.latestMenuSyncAt[before]': z.ZodOptional<z.ZodString>;
|
|
10557
|
+
'syncTimes.latestMenuSyncAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
10558
|
+
'syncTimes.latestMenuSyncAt[after]': z.ZodOptional<z.ZodString>;
|
|
10559
|
+
'syncTimes.latestMenuSyncAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
10405
10560
|
'updatedAt[before]': z.ZodOptional<z.ZodString>;
|
|
10406
10561
|
'updatedAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
10407
10562
|
'updatedAt[after]': z.ZodOptional<z.ZodString>;
|
|
@@ -10430,12 +10585,7 @@ declare class GetIntegrationCassaInCloudList extends AbstractApiRequest<typeof g
|
|
|
10430
10585
|
cassa_in_cloud: "cassa_in_cloud";
|
|
10431
10586
|
}>;
|
|
10432
10587
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
10433
|
-
direction: z.ZodEnum<{
|
|
10434
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
10435
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
10436
|
-
}>;
|
|
10437
10588
|
locale: z.ZodString;
|
|
10438
|
-
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
10439
10589
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
10440
10590
|
syncSettings: z.ZodObject<{
|
|
10441
10591
|
externalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -10446,6 +10596,19 @@ declare class GetIntegrationCassaInCloudList extends AbstractApiRequest<typeof g
|
|
|
10446
10596
|
SKIP_ITEM: "SKIP_ITEM";
|
|
10447
10597
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
10448
10598
|
}>>;
|
|
10599
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
10600
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
10601
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
10602
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
10603
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
10604
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
10605
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
10606
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
10607
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
10608
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
10609
|
+
}, z.core.$strip>;
|
|
10610
|
+
syncTimes: z.ZodObject<{
|
|
10611
|
+
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
10449
10612
|
}, z.core.$strip>;
|
|
10450
10613
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
10451
10614
|
RISTO: "RISTO";
|
|
@@ -10924,10 +11087,6 @@ declare class IntegrationCassaInCloudSyncTimetables extends AbstractApiRequest<t
|
|
|
10924
11087
|
}
|
|
10925
11088
|
|
|
10926
11089
|
declare const updateIntegrationCassaInCloudInputSchema: z.ZodObject<{
|
|
10927
|
-
direction: z.ZodOptional<z.ZodEnum<{
|
|
10928
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
10929
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
10930
|
-
}>>;
|
|
10931
11090
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
10932
11091
|
idSalesPoint: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
10933
11092
|
locale: z.ZodOptional<z.ZodString>;
|
|
@@ -10944,6 +11103,16 @@ declare const updateIntegrationCassaInCloudInputSchema: z.ZodObject<{
|
|
|
10944
11103
|
SKIP_ITEM: "SKIP_ITEM";
|
|
10945
11104
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
10946
11105
|
}>>;
|
|
11106
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
11107
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
11108
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
11109
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
11110
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
11111
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
11112
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
11113
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
11114
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
11115
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
10947
11116
|
}, z.core.$strip>>;
|
|
10948
11117
|
productChannels: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
10949
11118
|
RISTO: "RISTO";
|
|
@@ -10977,12 +11146,7 @@ declare const updateIntegrationCassaInCloudResponseSchema: z.ZodObject<{
|
|
|
10977
11146
|
cassa_in_cloud: "cassa_in_cloud";
|
|
10978
11147
|
}>;
|
|
10979
11148
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
10980
|
-
direction: z.ZodEnum<{
|
|
10981
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
10982
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
10983
|
-
}>;
|
|
10984
11149
|
locale: z.ZodString;
|
|
10985
|
-
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
10986
11150
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
10987
11151
|
syncSettings: z.ZodObject<{
|
|
10988
11152
|
externalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -10993,6 +11157,19 @@ declare const updateIntegrationCassaInCloudResponseSchema: z.ZodObject<{
|
|
|
10993
11157
|
SKIP_ITEM: "SKIP_ITEM";
|
|
10994
11158
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
10995
11159
|
}>>;
|
|
11160
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
11161
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
11162
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
11163
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
11164
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
11165
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
11166
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
11167
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
11168
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
11169
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
11170
|
+
}, z.core.$strip>;
|
|
11171
|
+
syncTimes: z.ZodObject<{
|
|
11172
|
+
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
10996
11173
|
}, z.core.$strip>;
|
|
10997
11174
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
10998
11175
|
RISTO: "RISTO";
|
|
@@ -11010,10 +11187,6 @@ declare class UpdateIntegrationCassaInCloud extends AbstractApiRequest<typeof up
|
|
|
11010
11187
|
readonly contentType = "application/merge-patch+json";
|
|
11011
11188
|
readonly accept = "application/json";
|
|
11012
11189
|
readonly inputSchema: z.ZodObject<{
|
|
11013
|
-
direction: z.ZodOptional<z.ZodEnum<{
|
|
11014
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
11015
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
11016
|
-
}>>;
|
|
11017
11190
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
11018
11191
|
idSalesPoint: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
11019
11192
|
locale: z.ZodOptional<z.ZodString>;
|
|
@@ -11030,6 +11203,16 @@ declare class UpdateIntegrationCassaInCloud extends AbstractApiRequest<typeof up
|
|
|
11030
11203
|
SKIP_ITEM: "SKIP_ITEM";
|
|
11031
11204
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
11032
11205
|
}>>;
|
|
11206
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
11207
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
11208
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
11209
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
11210
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
11211
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
11212
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
11213
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
11214
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
11215
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
11033
11216
|
}, z.core.$strip>>;
|
|
11034
11217
|
productChannels: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
11035
11218
|
RISTO: "RISTO";
|
|
@@ -11062,12 +11245,7 @@ declare class UpdateIntegrationCassaInCloud extends AbstractApiRequest<typeof up
|
|
|
11062
11245
|
cassa_in_cloud: "cassa_in_cloud";
|
|
11063
11246
|
}>;
|
|
11064
11247
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
11065
|
-
direction: z.ZodEnum<{
|
|
11066
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
11067
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
11068
|
-
}>;
|
|
11069
11248
|
locale: z.ZodString;
|
|
11070
|
-
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
11071
11249
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
11072
11250
|
syncSettings: z.ZodObject<{
|
|
11073
11251
|
externalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -11078,6 +11256,19 @@ declare class UpdateIntegrationCassaInCloud extends AbstractApiRequest<typeof up
|
|
|
11078
11256
|
SKIP_ITEM: "SKIP_ITEM";
|
|
11079
11257
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
11080
11258
|
}>>;
|
|
11259
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
11260
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
11261
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
11262
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
11263
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
11264
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
11265
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
11266
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
11267
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
11268
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
11269
|
+
}, z.core.$strip>;
|
|
11270
|
+
syncTimes: z.ZodObject<{
|
|
11271
|
+
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
11081
11272
|
}, z.core.$strip>;
|
|
11082
11273
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
11083
11274
|
RISTO: "RISTO";
|
|
@@ -11558,14 +11749,6 @@ declare const getIntegrationDeliverooListQuerySchema: z.ZodObject<{
|
|
|
11558
11749
|
asc: "asc";
|
|
11559
11750
|
desc: "desc";
|
|
11560
11751
|
}>>;
|
|
11561
|
-
'order[latestMenuSyncAt]': z.ZodOptional<z.ZodEnum<{
|
|
11562
|
-
asc: "asc";
|
|
11563
|
-
desc: "desc";
|
|
11564
|
-
}>>;
|
|
11565
|
-
'latestMenuSyncAt[before]': z.ZodOptional<z.ZodString>;
|
|
11566
|
-
'latestMenuSyncAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
11567
|
-
'latestMenuSyncAt[after]': z.ZodOptional<z.ZodString>;
|
|
11568
|
-
'latestMenuSyncAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
11569
11752
|
'updatedAt[before]': z.ZodOptional<z.ZodString>;
|
|
11570
11753
|
'updatedAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
11571
11754
|
'updatedAt[after]': z.ZodOptional<z.ZodString>;
|
|
@@ -11574,6 +11757,10 @@ declare const getIntegrationDeliverooListQuerySchema: z.ZodObject<{
|
|
|
11574
11757
|
asc: "asc";
|
|
11575
11758
|
desc: "desc";
|
|
11576
11759
|
}>>;
|
|
11760
|
+
'order[latestMenuSyncAt]': z.ZodOptional<z.ZodEnum<{
|
|
11761
|
+
asc: "asc";
|
|
11762
|
+
desc: "desc";
|
|
11763
|
+
}>>;
|
|
11577
11764
|
'order[latestOpeningHoursSyncAt]': z.ZodOptional<z.ZodEnum<{
|
|
11578
11765
|
asc: "asc";
|
|
11579
11766
|
desc: "desc";
|
|
@@ -11582,6 +11769,10 @@ declare const getIntegrationDeliverooListQuerySchema: z.ZodObject<{
|
|
|
11582
11769
|
'latestMenuCheckAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
11583
11770
|
'latestMenuCheckAt[after]': z.ZodOptional<z.ZodString>;
|
|
11584
11771
|
'latestMenuCheckAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
11772
|
+
'latestMenuSyncAt[before]': z.ZodOptional<z.ZodString>;
|
|
11773
|
+
'latestMenuSyncAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
11774
|
+
'latestMenuSyncAt[after]': z.ZodOptional<z.ZodString>;
|
|
11775
|
+
'latestMenuSyncAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
11585
11776
|
'latestOpeningHoursSyncAt[before]': z.ZodOptional<z.ZodString>;
|
|
11586
11777
|
'latestOpeningHoursSyncAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
11587
11778
|
'latestOpeningHoursSyncAt[after]': z.ZodOptional<z.ZodString>;
|
|
@@ -11726,14 +11917,6 @@ declare class GetIntegrationDeliverooList extends AbstractApiRequest<typeof getI
|
|
|
11726
11917
|
asc: "asc";
|
|
11727
11918
|
desc: "desc";
|
|
11728
11919
|
}>>;
|
|
11729
|
-
'order[latestMenuSyncAt]': z.ZodOptional<z.ZodEnum<{
|
|
11730
|
-
asc: "asc";
|
|
11731
|
-
desc: "desc";
|
|
11732
|
-
}>>;
|
|
11733
|
-
'latestMenuSyncAt[before]': z.ZodOptional<z.ZodString>;
|
|
11734
|
-
'latestMenuSyncAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
11735
|
-
'latestMenuSyncAt[after]': z.ZodOptional<z.ZodString>;
|
|
11736
|
-
'latestMenuSyncAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
11737
11920
|
'updatedAt[before]': z.ZodOptional<z.ZodString>;
|
|
11738
11921
|
'updatedAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
11739
11922
|
'updatedAt[after]': z.ZodOptional<z.ZodString>;
|
|
@@ -11742,6 +11925,10 @@ declare class GetIntegrationDeliverooList extends AbstractApiRequest<typeof getI
|
|
|
11742
11925
|
asc: "asc";
|
|
11743
11926
|
desc: "desc";
|
|
11744
11927
|
}>>;
|
|
11928
|
+
'order[latestMenuSyncAt]': z.ZodOptional<z.ZodEnum<{
|
|
11929
|
+
asc: "asc";
|
|
11930
|
+
desc: "desc";
|
|
11931
|
+
}>>;
|
|
11745
11932
|
'order[latestOpeningHoursSyncAt]': z.ZodOptional<z.ZodEnum<{
|
|
11746
11933
|
asc: "asc";
|
|
11747
11934
|
desc: "desc";
|
|
@@ -11750,6 +11937,10 @@ declare class GetIntegrationDeliverooList extends AbstractApiRequest<typeof getI
|
|
|
11750
11937
|
'latestMenuCheckAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
11751
11938
|
'latestMenuCheckAt[after]': z.ZodOptional<z.ZodString>;
|
|
11752
11939
|
'latestMenuCheckAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
11940
|
+
'latestMenuSyncAt[before]': z.ZodOptional<z.ZodString>;
|
|
11941
|
+
'latestMenuSyncAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
11942
|
+
'latestMenuSyncAt[after]': z.ZodOptional<z.ZodString>;
|
|
11943
|
+
'latestMenuSyncAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
11753
11944
|
'latestOpeningHoursSyncAt[before]': z.ZodOptional<z.ZodString>;
|
|
11754
11945
|
'latestOpeningHoursSyncAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
11755
11946
|
'latestOpeningHoursSyncAt[after]': z.ZodOptional<z.ZodString>;
|
|
@@ -12933,14 +13124,6 @@ declare const getIntegrationGlovoListQuerySchema: z.ZodObject<{
|
|
|
12933
13124
|
asc: "asc";
|
|
12934
13125
|
desc: "desc";
|
|
12935
13126
|
}>>;
|
|
12936
|
-
'order[latestMenuSyncAt]': z.ZodOptional<z.ZodEnum<{
|
|
12937
|
-
asc: "asc";
|
|
12938
|
-
desc: "desc";
|
|
12939
|
-
}>>;
|
|
12940
|
-
'latestMenuSyncAt[before]': z.ZodOptional<z.ZodString>;
|
|
12941
|
-
'latestMenuSyncAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
12942
|
-
'latestMenuSyncAt[after]': z.ZodOptional<z.ZodString>;
|
|
12943
|
-
'latestMenuSyncAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
12944
13127
|
'updatedAt[before]': z.ZodOptional<z.ZodString>;
|
|
12945
13128
|
'updatedAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
12946
13129
|
'updatedAt[after]': z.ZodOptional<z.ZodString>;
|
|
@@ -12949,10 +13132,18 @@ declare const getIntegrationGlovoListQuerySchema: z.ZodObject<{
|
|
|
12949
13132
|
asc: "asc";
|
|
12950
13133
|
desc: "desc";
|
|
12951
13134
|
}>>;
|
|
13135
|
+
'order[latestMenuSyncAt]': z.ZodOptional<z.ZodEnum<{
|
|
13136
|
+
asc: "asc";
|
|
13137
|
+
desc: "desc";
|
|
13138
|
+
}>>;
|
|
12952
13139
|
'latestMenuCheckAt[before]': z.ZodOptional<z.ZodString>;
|
|
12953
13140
|
'latestMenuCheckAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
12954
13141
|
'latestMenuCheckAt[after]': z.ZodOptional<z.ZodString>;
|
|
12955
13142
|
'latestMenuCheckAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
13143
|
+
'latestMenuSyncAt[before]': z.ZodOptional<z.ZodString>;
|
|
13144
|
+
'latestMenuSyncAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
13145
|
+
'latestMenuSyncAt[after]': z.ZodOptional<z.ZodString>;
|
|
13146
|
+
'latestMenuSyncAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
12956
13147
|
}, z.core.$strip>;
|
|
12957
13148
|
type GetIntegrationGlovoListQueryParams = z.infer<typeof getIntegrationGlovoListQuerySchema>;
|
|
12958
13149
|
declare const getIntegrationGlovoListInputSchema: z.ZodUndefined;
|
|
@@ -13085,14 +13276,6 @@ declare class GetIntegrationGlovoList extends AbstractApiRequest<typeof getInteg
|
|
|
13085
13276
|
asc: "asc";
|
|
13086
13277
|
desc: "desc";
|
|
13087
13278
|
}>>;
|
|
13088
|
-
'order[latestMenuSyncAt]': z.ZodOptional<z.ZodEnum<{
|
|
13089
|
-
asc: "asc";
|
|
13090
|
-
desc: "desc";
|
|
13091
|
-
}>>;
|
|
13092
|
-
'latestMenuSyncAt[before]': z.ZodOptional<z.ZodString>;
|
|
13093
|
-
'latestMenuSyncAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
13094
|
-
'latestMenuSyncAt[after]': z.ZodOptional<z.ZodString>;
|
|
13095
|
-
'latestMenuSyncAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
13096
13279
|
'updatedAt[before]': z.ZodOptional<z.ZodString>;
|
|
13097
13280
|
'updatedAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
13098
13281
|
'updatedAt[after]': z.ZodOptional<z.ZodString>;
|
|
@@ -13101,10 +13284,18 @@ declare class GetIntegrationGlovoList extends AbstractApiRequest<typeof getInteg
|
|
|
13101
13284
|
asc: "asc";
|
|
13102
13285
|
desc: "desc";
|
|
13103
13286
|
}>>;
|
|
13287
|
+
'order[latestMenuSyncAt]': z.ZodOptional<z.ZodEnum<{
|
|
13288
|
+
asc: "asc";
|
|
13289
|
+
desc: "desc";
|
|
13290
|
+
}>>;
|
|
13104
13291
|
'latestMenuCheckAt[before]': z.ZodOptional<z.ZodString>;
|
|
13105
13292
|
'latestMenuCheckAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
13106
13293
|
'latestMenuCheckAt[after]': z.ZodOptional<z.ZodString>;
|
|
13107
13294
|
'latestMenuCheckAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
13295
|
+
'latestMenuSyncAt[before]': z.ZodOptional<z.ZodString>;
|
|
13296
|
+
'latestMenuSyncAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
13297
|
+
'latestMenuSyncAt[after]': z.ZodOptional<z.ZodString>;
|
|
13298
|
+
'latestMenuSyncAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
13108
13299
|
}, z.core.$strip>;
|
|
13109
13300
|
readonly headersSchema: undefined;
|
|
13110
13301
|
readonly listItemSchema: z.ZodObject<{
|
|
@@ -14271,14 +14462,6 @@ declare const getIntegrationJustEatListQuerySchema: z.ZodObject<{
|
|
|
14271
14462
|
asc: "asc";
|
|
14272
14463
|
desc: "desc";
|
|
14273
14464
|
}>>;
|
|
14274
|
-
'order[latestMenuSyncAt]': z.ZodOptional<z.ZodEnum<{
|
|
14275
|
-
asc: "asc";
|
|
14276
|
-
desc: "desc";
|
|
14277
|
-
}>>;
|
|
14278
|
-
'latestMenuSyncAt[before]': z.ZodOptional<z.ZodString>;
|
|
14279
|
-
'latestMenuSyncAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
14280
|
-
'latestMenuSyncAt[after]': z.ZodOptional<z.ZodString>;
|
|
14281
|
-
'latestMenuSyncAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
14282
14465
|
'updatedAt[before]': z.ZodOptional<z.ZodString>;
|
|
14283
14466
|
'updatedAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
14284
14467
|
'updatedAt[after]': z.ZodOptional<z.ZodString>;
|
|
@@ -14287,10 +14470,18 @@ declare const getIntegrationJustEatListQuerySchema: z.ZodObject<{
|
|
|
14287
14470
|
asc: "asc";
|
|
14288
14471
|
desc: "desc";
|
|
14289
14472
|
}>>;
|
|
14473
|
+
'order[latestMenuSyncAt]': z.ZodOptional<z.ZodEnum<{
|
|
14474
|
+
asc: "asc";
|
|
14475
|
+
desc: "desc";
|
|
14476
|
+
}>>;
|
|
14290
14477
|
'latestMenuCheckAt[before]': z.ZodOptional<z.ZodString>;
|
|
14291
14478
|
'latestMenuCheckAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
14292
14479
|
'latestMenuCheckAt[after]': z.ZodOptional<z.ZodString>;
|
|
14293
14480
|
'latestMenuCheckAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
14481
|
+
'latestMenuSyncAt[before]': z.ZodOptional<z.ZodString>;
|
|
14482
|
+
'latestMenuSyncAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
14483
|
+
'latestMenuSyncAt[after]': z.ZodOptional<z.ZodString>;
|
|
14484
|
+
'latestMenuSyncAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
14294
14485
|
syncType: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
14295
14486
|
ALL: "ALL";
|
|
14296
14487
|
DELIVERY: "DELIVERY";
|
|
@@ -14464,14 +14655,6 @@ declare class GetIntegrationJustEatList extends AbstractApiRequest<typeof getInt
|
|
|
14464
14655
|
asc: "asc";
|
|
14465
14656
|
desc: "desc";
|
|
14466
14657
|
}>>;
|
|
14467
|
-
'order[latestMenuSyncAt]': z.ZodOptional<z.ZodEnum<{
|
|
14468
|
-
asc: "asc";
|
|
14469
|
-
desc: "desc";
|
|
14470
|
-
}>>;
|
|
14471
|
-
'latestMenuSyncAt[before]': z.ZodOptional<z.ZodString>;
|
|
14472
|
-
'latestMenuSyncAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
14473
|
-
'latestMenuSyncAt[after]': z.ZodOptional<z.ZodString>;
|
|
14474
|
-
'latestMenuSyncAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
14475
14658
|
'updatedAt[before]': z.ZodOptional<z.ZodString>;
|
|
14476
14659
|
'updatedAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
14477
14660
|
'updatedAt[after]': z.ZodOptional<z.ZodString>;
|
|
@@ -14480,10 +14663,18 @@ declare class GetIntegrationJustEatList extends AbstractApiRequest<typeof getInt
|
|
|
14480
14663
|
asc: "asc";
|
|
14481
14664
|
desc: "desc";
|
|
14482
14665
|
}>>;
|
|
14666
|
+
'order[latestMenuSyncAt]': z.ZodOptional<z.ZodEnum<{
|
|
14667
|
+
asc: "asc";
|
|
14668
|
+
desc: "desc";
|
|
14669
|
+
}>>;
|
|
14483
14670
|
'latestMenuCheckAt[before]': z.ZodOptional<z.ZodString>;
|
|
14484
14671
|
'latestMenuCheckAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
14485
14672
|
'latestMenuCheckAt[after]': z.ZodOptional<z.ZodString>;
|
|
14486
14673
|
'latestMenuCheckAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
14674
|
+
'latestMenuSyncAt[before]': z.ZodOptional<z.ZodString>;
|
|
14675
|
+
'latestMenuSyncAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
14676
|
+
'latestMenuSyncAt[after]': z.ZodOptional<z.ZodString>;
|
|
14677
|
+
'latestMenuSyncAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
14487
14678
|
syncType: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
14488
14679
|
ALL: "ALL";
|
|
14489
14680
|
DELIVERY: "DELIVERY";
|
|
@@ -15918,12 +16109,7 @@ declare const updateIntegrationResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObj
|
|
|
15918
16109
|
cassa_in_cloud: "cassa_in_cloud";
|
|
15919
16110
|
}>;
|
|
15920
16111
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
15921
|
-
direction: z.ZodEnum<{
|
|
15922
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
15923
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
15924
|
-
}>;
|
|
15925
16112
|
locale: z.ZodString;
|
|
15926
|
-
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
15927
16113
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
15928
16114
|
syncSettings: z.ZodObject<{
|
|
15929
16115
|
externalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -15934,6 +16120,19 @@ declare const updateIntegrationResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObj
|
|
|
15934
16120
|
SKIP_ITEM: "SKIP_ITEM";
|
|
15935
16121
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
15936
16122
|
}>>;
|
|
16123
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
16124
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
16125
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
16126
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
16127
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
16128
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
16129
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
16130
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
16131
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
16132
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
16133
|
+
}, z.core.$strip>;
|
|
16134
|
+
syncTimes: z.ZodObject<{
|
|
16135
|
+
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
15937
16136
|
}, z.core.$strip>;
|
|
15938
16137
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
15939
16138
|
RISTO: "RISTO";
|
|
@@ -16129,12 +16328,7 @@ declare class UpdateIntegration extends AbstractApiRequest<typeof updateIntegrat
|
|
|
16129
16328
|
cassa_in_cloud: "cassa_in_cloud";
|
|
16130
16329
|
}>;
|
|
16131
16330
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
16132
|
-
direction: z.ZodEnum<{
|
|
16133
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
16134
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
16135
|
-
}>;
|
|
16136
16331
|
locale: z.ZodString;
|
|
16137
|
-
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
16138
16332
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
16139
16333
|
syncSettings: z.ZodObject<{
|
|
16140
16334
|
externalCascadeDeleteOrder: z.ZodDefault<z.ZodBoolean>;
|
|
@@ -16145,6 +16339,19 @@ declare class UpdateIntegration extends AbstractApiRequest<typeof updateIntegrat
|
|
|
16145
16339
|
SKIP_ITEM: "SKIP_ITEM";
|
|
16146
16340
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
16147
16341
|
}>>;
|
|
16342
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
16343
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
16344
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
16345
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
16346
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
16347
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
16348
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
16349
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
16350
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
16351
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
16352
|
+
}, z.core.$strip>;
|
|
16353
|
+
syncTimes: z.ZodObject<{
|
|
16354
|
+
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
16148
16355
|
}, z.core.$strip>;
|
|
16149
16356
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
16150
16357
|
RISTO: "RISTO";
|
|
@@ -16364,4 +16571,4 @@ type IntegrationCassaInCloudSyncMenuErrorLogIri = z.infer<typeof integrationCass
|
|
|
16364
16571
|
declare const integrationCassaInCloudSyncMenuErrorLogNullableIriSchema: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/integrations/cassa_in_cloud/:id/sync_menu_processes/:syncMenuProcessId/error_logs/:errorLogId"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/integrations/cassa_in_cloud/:id/sync_menu_processes/:syncMenuProcessId/error_logs/:errorLogId"> | null, unknown>>;
|
|
16365
16572
|
type IntegrationCassaInCloudSyncMenuErrorLogNullableIri = z.infer<typeof integrationCassaInCloudSyncMenuErrorLogNullableIriSchema>;
|
|
16366
16573
|
|
|
16367
|
-
export { type ActivatableIntegration, type ActivatableIntegrationHealthStatus, type ActivatableIntegrationStatus, ActivateIntegrationActivationRequest, type ActivateIntegrationActivationRequestInput, type ActivateIntegrationActivationRequestResponse, AnnotateIntegrationActivationRequest, type AnnotateIntegrationActivationRequestInput, type AnnotateIntegrationActivationRequestResponse, CancelIntegrationCancellationRequest, type CancelIntegrationCancellationRequestInput, type CancelIntegrationCancellationRequestResponse, type ClientLogRequestQuery, CreateIntegrationActivationRequest, type CreateIntegrationActivationRequestInput, type CreateIntegrationActivationRequestResponse, CreateIntegrationCancellationRequest, type CreateIntegrationCancellationRequestInput, type CreateIntegrationCancellationRequestResponse, CreateIntegrationCassaInCloud, type CreateIntegrationCassaInCloudInput, type CreateIntegrationCassaInCloudResponse, CreateIntegrationDeliveroo, type CreateIntegrationDeliverooInput, type CreateIntegrationDeliverooResponse, CreateIntegrationGlovo, type CreateIntegrationGlovoInput, type CreateIntegrationGlovoResponse, CreateIntegrationJustEat, type CreateIntegrationJustEatInput, type CreateIntegrationJustEatResponse, CreateIntegrationKitchen, CreateIntegrationKitchenAccessToken, type CreateIntegrationKitchenAccessTokenInput, type CreateIntegrationKitchenAccessTokenResponse, type CreateIntegrationKitchenInput, type CreateIntegrationKitchenResponse, DeleteIntegration, DeleteIntegrationActivationRequest, DeleteIntegrationCancellationRequest, DeleteIntegrationCassaInCloud, DeleteIntegrationDeliveroo, DeleteIntegrationGlovo, DeleteIntegrationJustEat, DeleteIntegrationKitchen, DeleteIntegrationKitchenAccessToken, type ExclusiveIntegrationService, GetIntegrationActivationRequestDetails, type GetIntegrationActivationRequestDetailsInput, type GetIntegrationActivationRequestDetailsResponse, GetIntegrationActivationRequests, GetIntegrationActivationRequestsFromPointOfSale, type GetIntegrationActivationRequestsFromPointOfSaleInput, type GetIntegrationActivationRequestsFromPointOfSaleQueryParams, type GetIntegrationActivationRequestsFromPointOfSaleResponse, type GetIntegrationActivationRequestsInput, type GetIntegrationActivationRequestsQueryParams, type GetIntegrationActivationRequestsResponse, GetIntegrationCancellationRequestDetails, type GetIntegrationCancellationRequestDetailsInput, type GetIntegrationCancellationRequestDetailsResponse, GetIntegrationCancellationRequests, type GetIntegrationCancellationRequestsInput, type GetIntegrationCancellationRequestsQueryParams, type GetIntegrationCancellationRequestsResponse, GetIntegrationCassaInCloudClientLogRequestDetails, type GetIntegrationCassaInCloudClientLogRequestDetailsInput, type GetIntegrationCassaInCloudClientLogRequestDetailsResponse, GetIntegrationCassaInCloudClientLogRequests, type GetIntegrationCassaInCloudClientLogRequestsInput, type GetIntegrationCassaInCloudClientLogRequestsQueryParams, type GetIntegrationCassaInCloudClientLogRequestsResponse, GetIntegrationCassaInCloudDetails, type GetIntegrationCassaInCloudDetailsInput, type GetIntegrationCassaInCloudDetailsResponse, GetIntegrationCassaInCloudList, type GetIntegrationCassaInCloudListInput, type GetIntegrationCassaInCloudListQueryParams, type GetIntegrationCassaInCloudListResponse, GetIntegrationCassaInCloudSyncMenuProcessDetails, type GetIntegrationCassaInCloudSyncMenuProcessDetailsInput, type GetIntegrationCassaInCloudSyncMenuProcessDetailsResponse, GetIntegrationCassaInCloudSyncMenuProcesses, type GetIntegrationCassaInCloudSyncMenuProcessesInput, type GetIntegrationCassaInCloudSyncMenuProcessesQueryParams, type GetIntegrationCassaInCloudSyncMenuProcessesResponse, GetIntegrationCassaInCloudWebHookEventDetails, type GetIntegrationCassaInCloudWebHookEventDetailsInput, type GetIntegrationCassaInCloudWebHookEventDetailsResponse, GetIntegrationCassaInCloudWebHookEvents, type GetIntegrationCassaInCloudWebHookEventsInput, type GetIntegrationCassaInCloudWebHookEventsQueryParams, type GetIntegrationCassaInCloudWebHookEventsResponse, GetIntegrationDeliverooClientLogRequestDetails, type GetIntegrationDeliverooClientLogRequestDetailsInput, type GetIntegrationDeliverooClientLogRequestDetailsResponse, GetIntegrationDeliverooClientLogRequests, type GetIntegrationDeliverooClientLogRequestsInput, type GetIntegrationDeliverooClientLogRequestsQueryParams, type GetIntegrationDeliverooClientLogRequestsResponse, GetIntegrationDeliverooDetails, type GetIntegrationDeliverooDetailsInput, type GetIntegrationDeliverooDetailsResponse, GetIntegrationDeliverooList, type GetIntegrationDeliverooListQueryParams, type GetIntegrationDeliverooListResponse, GetIntegrationDeliverooMenuVersionDetails, type GetIntegrationDeliverooMenuVersionDetailsInput, type GetIntegrationDeliverooMenuVersionDetailsResponse, GetIntegrationDeliverooMenuVersions, type GetIntegrationDeliverooMenuVersionsInput, type GetIntegrationDeliverooMenuVersionsQueryParams, type GetIntegrationDeliverooMenuVersionsResponse, GetIntegrationDeliverooSyncMenuProcessDetails, type GetIntegrationDeliverooSyncMenuProcessDetailsInput, type GetIntegrationDeliverooSyncMenuProcessDetailsResponse, GetIntegrationDeliverooSyncMenuProcesses, type GetIntegrationDeliverooSyncMenuProcessesInput, type GetIntegrationDeliverooSyncMenuProcessesQueryParams, type GetIntegrationDeliverooSyncMenuProcessesResponse, GetIntegrationDeliverooWebhookEventDetails, type GetIntegrationDeliverooWebhookEventDetailsInput, type GetIntegrationDeliverooWebhookEventDetailsResponse, GetIntegrationDeliverooWebhookEvents, type GetIntegrationDeliverooWebhookEventsInput, type GetIntegrationDeliverooWebhookEventsQueryParams, type GetIntegrationDeliverooWebhookEventsResponse, GetIntegrationDetails, type GetIntegrationDetailsInput, type GetIntegrationDetailsResponse, GetIntegrationGlovoClientLogRequestDetails, type GetIntegrationGlovoClientLogRequestDetailsInput, type GetIntegrationGlovoClientLogRequestDetailsResponse, GetIntegrationGlovoClientLogRequests, type GetIntegrationGlovoClientLogRequestsInput, type GetIntegrationGlovoClientLogRequestsQueryParams, type GetIntegrationGlovoClientLogRequestsResponse, GetIntegrationGlovoDetails, type GetIntegrationGlovoDetailsInput, type GetIntegrationGlovoDetailsResponse, GetIntegrationGlovoList, type GetIntegrationGlovoListInput, type GetIntegrationGlovoListQueryParams, type GetIntegrationGlovoListResponse, GetIntegrationGlovoMenuUpdateDetails, type GetIntegrationGlovoMenuUpdateDetailsInput, type GetIntegrationGlovoMenuUpdateDetailsResponse, GetIntegrationGlovoMenuUpdates, type GetIntegrationGlovoMenuUpdatesInput, type GetIntegrationGlovoMenuUpdatesQueryParams, type GetIntegrationGlovoMenuUpdatesResponse, GetIntegrationGlovoMenuVersionDetails, type GetIntegrationGlovoMenuVersionDetailsInput, type GetIntegrationGlovoMenuVersionDetailsResponse, GetIntegrationGlovoMenuVersions, type GetIntegrationGlovoMenuVersionsInput, type GetIntegrationGlovoMenuVersionsQueryParams, type GetIntegrationGlovoMenuVersionsResponse, GetIntegrationGlovoWebhookEventDetails, type GetIntegrationGlovoWebhookEventDetailsInput, type GetIntegrationGlovoWebhookEventDetailsResponse, GetIntegrationGlovoWebhookEvents, type GetIntegrationGlovoWebhookEventsInput, type GetIntegrationGlovoWebhookEventsQueryParams, type GetIntegrationGlovoWebhookEventsResponse, GetIntegrationJustEatClientLogRequestDetails, type GetIntegrationJustEatClientLogRequestDetailsInput, type GetIntegrationJustEatClientLogRequestDetailsResponse, GetIntegrationJustEatClientLogRequests, type GetIntegrationJustEatClientLogRequestsInput, type GetIntegrationJustEatClientLogRequestsQueryParams, type GetIntegrationJustEatClientLogRequestsResponse, GetIntegrationJustEatDetails, type GetIntegrationJustEatDetailsInput, type GetIntegrationJustEatDetailsResponse, GetIntegrationJustEatList, type GetIntegrationJustEatListInput, type GetIntegrationJustEatListQueryParams, type GetIntegrationJustEatListResponse, GetIntegrationJustEatMenuVersionDetails, type GetIntegrationJustEatMenuVersionDetailsInput, type GetIntegrationJustEatMenuVersionDetailsResponse, GetIntegrationJustEatMenuVersions, type GetIntegrationJustEatMenuVersionsInput, type GetIntegrationJustEatMenuVersionsQueryParams, type GetIntegrationJustEatMenuVersionsResponse, GetIntegrationJustEatOrderDetails, type GetIntegrationJustEatOrderDetailsInput, type GetIntegrationJustEatOrderDetailsResponse, GetIntegrationJustEatOrders, type GetIntegrationJustEatOrdersInput, type GetIntegrationJustEatOrdersQueryParams, type GetIntegrationJustEatOrdersResponse, GetIntegrationJustEatSyncMenuProcessDetails, type GetIntegrationJustEatSyncMenuProcessDetailsInput, type GetIntegrationJustEatSyncMenuProcessDetailsResponse, GetIntegrationJustEatSyncMenuProcesses, type GetIntegrationJustEatSyncMenuProcessesInput, type GetIntegrationJustEatSyncMenuProcessesQueryParams, type GetIntegrationJustEatSyncMenuProcessesResponse, GetIntegrationKitchenAccessTokenDetails, type GetIntegrationKitchenAccessTokenDetailsInput, type GetIntegrationKitchenAccessTokenDetailsResponse, GetIntegrationKitchenAccessTokens, type GetIntegrationKitchenAccessTokensInput, type GetIntegrationKitchenAccessTokensQueryParams, type GetIntegrationKitchenAccessTokensResponse, GetIntegrationKitchenDetails, type GetIntegrationKitchenDetailsInput, type GetIntegrationKitchenDetailsResponse, GetIntegrationKitchenList, type GetIntegrationKitchenListQueryParams, type GetIntegrationKitchenListResponse, GetIntegrations, GetIntegrationsFromPointOfSale, type GetIntegrationsFromPointOfSaleInput, type GetIntegrationsFromPointOfSaleQueryParams, type GetIntegrationsFromPointOfSaleResponse, type GetIntegrationsInput, type GetIntegrationsQueryParams, type GetIntegrationsResponse, type Integration, type IntegrationActivationRequest, type IntegrationActivationRequestDetails, type IntegrationCancellationRequest, type IntegrationCancellationRequestDetails, type IntegrationCancellationRequestIri, type IntegrationCancellationRequestNullableIri, type IntegrationCancellationRequestStatus, type IntegrationCassaInCloud, type IntegrationCassaInCloudData, type IntegrationCassaInCloudDetails, type IntegrationCassaInCloudDirection, type IntegrationCassaInCloudEditableFields, type IntegrationCassaInCloudIri, type IntegrationCassaInCloudMissingComponentStrategy, type IntegrationCassaInCloudNullableIri, type IntegrationCassaInCloudProductChannel, IntegrationCassaInCloudSyncCustomers, type IntegrationCassaInCloudSyncMenuErrorLogIri, type IntegrationCassaInCloudSyncMenuErrorLogNullableIri, type IntegrationCassaInCloudSyncMenuProcess, type IntegrationCassaInCloudSyncMenuProcessDetails, type IntegrationCassaInCloudSyncMenuProcessesQueryParams, IntegrationCassaInCloudSyncOrganizations, IntegrationCassaInCloudSyncProducts, IntegrationCassaInCloudSyncSalesModes, type IntegrationCassaInCloudSyncSettings, IntegrationCassaInCloudSyncStock, IntegrationCassaInCloudSyncTimetables, type IntegrationCassaInCloudWebHookEvent, type IntegrationCassaInCloudWebHookEventDetails, type IntegrationCassaInCloudWebHookEventEntity, type IntegrationCassaInCloudWebHookEventEvent, type IntegrationCassaInCloudWebHookEventsQueryParams, type IntegrationClientLogRequest, type IntegrationClientLogRequestDetails, type IntegrationClientLogRequestMethod, type IntegrationDeliveroo, type IntegrationDeliverooData, type IntegrationDeliverooDetails, type IntegrationDeliverooEditableFields, type IntegrationDeliverooIri, type IntegrationDeliverooMenuVersionIri, type IntegrationDeliverooMenuVersionNullableIri, type IntegrationDeliverooNullableIri, type IntegrationDeliverooSiteStatus, IntegrationDeliverooSyncMenu, type IntegrationDeliverooSyncMenuProcess, type IntegrationDeliverooSyncMenuProcessDetails, type IntegrationDeliverooSyncMenuProcessMode, type IntegrationDeliverooSyncMenuProcessesQueryParams, IntegrationDeliverooSyncOpeningHours, type IntegrationDeliverooWebhookEvent, type IntegrationDeliverooWebhookEventDetails, type IntegrationDeliverooWebhookEventType, type IntegrationDeliverooWebhookEventsQueryParams, type IntegrationDeliveryError, type IntegrationDeliveryProviderCommon, type IntegrationDetails, type IntegrationGlovo, type IntegrationGlovoData, type IntegrationGlovoDetails, type IntegrationGlovoEditableFields, type IntegrationGlovoIri, type IntegrationGlovoMenuUpdate, type IntegrationGlovoMenuUpdateDetails, type IntegrationGlovoMenuUpdateStatus, type IntegrationGlovoMenuUpdatesQueryParams, type IntegrationGlovoMenuVersionIri, type IntegrationGlovoMenuVersionNullableIri, type IntegrationGlovoNullableIri, type IntegrationGlovoStoreStatus, IntegrationGlovoSyncMenu, type IntegrationGlovoWebhookEvent, type IntegrationGlovoWebhookEventDetails, type IntegrationGlovoWebhookEventType, type IntegrationGlovoWebhookEventsQueryParams, type IntegrationJustEat, type IntegrationJustEatData, type IntegrationJustEatDetails, type IntegrationJustEatEditableFields, type IntegrationJustEatIri, type IntegrationJustEatMenuVersionIri, type IntegrationJustEatMenuVersionNullableIri, type IntegrationJustEatNullableIri, type IntegrationJustEatOrder, type IntegrationJustEatOrderDetails, type IntegrationJustEatOrdersQueryParams, type IntegrationJustEatRestaurantStatus, IntegrationJustEatSyncMenu, type IntegrationJustEatSyncMenuProcess, type IntegrationJustEatSyncMenuProcessDetails, type IntegrationJustEatSyncMenuProcessesQueryParams, IntegrationJustEatSyncOpeningTimes, type IntegrationJustEatSyncType, type IntegrationKitchen, type IntegrationKitchenAccessToken, type IntegrationKitchenAccessTokenDetails, type IntegrationKitchenAccessTokenNullablePath, type IntegrationKitchenAccessTokenPath, type IntegrationKitchenAccessTokensQueryParams, type IntegrationKitchenData, type IntegrationKitchenDetails, type IntegrationKitchenEditableFields, type IntegrationKitchenIri, type IntegrationKitchenNullableIri, type IntegrationKitchenViewMode, type IntegrationNullablePath, type IntegrationPath, type IntegrationProvider, type IntegrationService, type IntegrationServiceData, type IntegrationStatus, type IntegrationsCassaInCloudQueryParams, type IntegrationsDeliverooQueryParams, type IntegrationsGlovoQueryParams, type IntegrationsJustEatQueryParams, type IntegrationsKitchenQueryParams, type MenuVersion, type MenuVersionDetails, RespondIntegrationActivationRequest, type RespondIntegrationActivationRequestInput, type RespondIntegrationActivationRequestResponse, SendIntegrationActivationRequestToPartner, type SendIntegrationActivationRequestToPartnerInput, type SendIntegrationActivationRequestToPartnerResponse, UpdateIntegration, UpdateIntegrationActivationRequest, type UpdateIntegrationActivationRequestInput, type UpdateIntegrationActivationRequestResponse, UpdateIntegrationCassaInCloud, type UpdateIntegrationCassaInCloudInput, type UpdateIntegrationCassaInCloudResponse, UpdateIntegrationDeliveroo, type UpdateIntegrationDeliverooInput, type UpdateIntegrationDeliverooResponse, UpdateIntegrationDeliverooSiteStatus, type UpdateIntegrationDeliverooSiteStatusInput, type UpdateIntegrationDeliverooSiteStatusResponse, UpdateIntegrationGlovo, type UpdateIntegrationGlovoInput, type UpdateIntegrationGlovoResponse, UpdateIntegrationGlovoStoreStatus, type UpdateIntegrationGlovoStoreStatusInput, type UpdateIntegrationGlovoStoreStatusResponse, type UpdateIntegrationInput, UpdateIntegrationJustEat, type UpdateIntegrationJustEatInput, type UpdateIntegrationJustEatResponse, UpdateIntegrationJustEatRestaurantStatus, type UpdateIntegrationJustEatRestaurantStatusInput, type UpdateIntegrationJustEatRestaurantStatusResponse, UpdateIntegrationKitchen, type UpdateIntegrationKitchenInput, type UpdateIntegrationKitchenResponse, type UpdateIntegrationResponse, activatableIntegrationBaseSchema, activatableIntegrationHealthStatusSchema, activatableIntegrationHealthStatuses, activatableIntegrationSchema, activatableIntegrationStatusSchema, activatableIntegrationStatuses, activateIntegrationActivationRequestInputSchema, activateIntegrationActivationRequestResponseSchema, annotateIntegrationActivationRequestInputSchema, annotateIntegrationActivationRequestResponseSchema, cancelIntegrationCancellationRequestInputSchema, cancelIntegrationCancellationRequestResponseSchema, clientLogRequestQuerySchema, createIntegrationActivationRequestInputSchema, createIntegrationActivationRequestResponseSchema, createIntegrationCancellationRequestInputSchema, createIntegrationCancellationRequestResponseSchema, createIntegrationCassaInCloudInputSchema, createIntegrationCassaInCloudResponseSchema, createIntegrationDeliverooInputSchema, createIntegrationDeliverooResponseSchema, createIntegrationGlovoInputSchema, createIntegrationGlovoResponseSchema, createIntegrationJustEatInputSchema, createIntegrationJustEatResponseSchema, createIntegrationKitchenAccessTokenInputSchema, createIntegrationKitchenAccessTokenResponseSchema, createIntegrationKitchenInputSchema, createIntegrationKitchenResponseSchema, deleteIntegrationActivationRequestInputSchema, deleteIntegrationActivationRequestResponseSchema, deleteIntegrationCancellationRequestInputSchema, deleteIntegrationCancellationRequestResponseSchema, deleteIntegrationCassaInCloudInputSchema, deleteIntegrationCassaInCloudResponseSchema, deleteIntegrationDeliverooInputSchema, deleteIntegrationDeliverooResponseSchema, deleteIntegrationGlovoInputSchema, deleteIntegrationGlovoResponseSchema, deleteIntegrationInputSchema, deleteIntegrationJustEatInputSchema, deleteIntegrationJustEatResponseSchema, deleteIntegrationKitchenAccessTokenInputSchema, deleteIntegrationKitchenAccessTokenResponseSchema, deleteIntegrationKitchenInputSchema, deleteIntegrationKitchenResponseSchema, deleteIntegrationResponseSchema, exclusiveIntegrationServiceSchema, exclusiveIntegrationServices, getIntegrationActivationRequestDetailsInputSchema, getIntegrationActivationRequestDetailsResponseSchema, getIntegrationActivationRequestsFromPointOfSaleInputSchema, getIntegrationActivationRequestsFromPointOfSaleQuerySchema, getIntegrationActivationRequestsFromPointOfSaleResponseSchema, getIntegrationActivationRequestsInputSchema, getIntegrationActivationRequestsQuerySchema, getIntegrationActivationRequestsResponseSchema, getIntegrationCancellationRequestDetailsInputSchema, getIntegrationCancellationRequestDetailsResponseSchema, getIntegrationCancellationRequestsInputSchema, getIntegrationCancellationRequestsQuerySchema, getIntegrationCancellationRequestsResponseSchema, getIntegrationCassaInCloudClientLogRequestDetailsInputSchema, getIntegrationCassaInCloudClientLogRequestDetailsResponseSchema, getIntegrationCassaInCloudClientLogRequestsInputSchema, getIntegrationCassaInCloudClientLogRequestsQuerySchema, getIntegrationCassaInCloudClientLogRequestsResponseSchema, getIntegrationCassaInCloudDetailsInputSchema, getIntegrationCassaInCloudDetailsResponseSchema, getIntegrationCassaInCloudListInputSchema, getIntegrationCassaInCloudListQuerySchema, getIntegrationCassaInCloudListResponseSchema, getIntegrationCassaInCloudSyncMenuProcessDetailsInputSchema, getIntegrationCassaInCloudSyncMenuProcessDetailsResponseSchema, getIntegrationCassaInCloudSyncMenuProcessesInputSchema, getIntegrationCassaInCloudSyncMenuProcessesQuerySchema, getIntegrationCassaInCloudSyncMenuProcessesResponseSchema, getIntegrationCassaInCloudWebHookEventDetailsInputSchema, getIntegrationCassaInCloudWebHookEventDetailsResponseSchema, getIntegrationCassaInCloudWebHookEventsInputSchema, getIntegrationCassaInCloudWebHookEventsQuerySchema, getIntegrationCassaInCloudWebHookEventsResponseSchema, getIntegrationDeliverooClientLogRequestDetailsInputSchema, getIntegrationDeliverooClientLogRequestDetailsResponseSchema, getIntegrationDeliverooClientLogRequestsInputSchema, getIntegrationDeliverooClientLogRequestsQuerySchema, getIntegrationDeliverooClientLogRequestsResponseSchema, getIntegrationDeliverooDetailsInputSchema, getIntegrationDeliverooDetailsResponseSchema, getIntegrationDeliverooListInputSchema, getIntegrationDeliverooListQuerySchema, getIntegrationDeliverooListResponseSchema, getIntegrationDeliverooMenuVersionDetailsInputSchema, getIntegrationDeliverooMenuVersionDetailsResponseSchema, getIntegrationDeliverooMenuVersionsInputSchema, getIntegrationDeliverooMenuVersionsQuerySchema, getIntegrationDeliverooMenuVersionsResponseSchema, getIntegrationDeliverooSyncMenuProcessDetailsInputSchema, getIntegrationDeliverooSyncMenuProcessDetailsResponseSchema, getIntegrationDeliverooSyncMenuProcessesInputSchema, getIntegrationDeliverooSyncMenuProcessesQuerySchema, getIntegrationDeliverooSyncMenuProcessesResponseSchema, getIntegrationDeliverooWebhookEventDetailsInputSchema, getIntegrationDeliverooWebhookEventDetailsResponseSchema, getIntegrationDeliverooWebhookEventsInputSchema, getIntegrationDeliverooWebhookEventsQuerySchema, getIntegrationDeliverooWebhookEventsResponseSchema, getIntegrationDetailsInputSchema, getIntegrationDetailsResponseSchema, getIntegrationGlovoClientLogRequestDetailsInputSchema, getIntegrationGlovoClientLogRequestDetailsResponseSchema, getIntegrationGlovoClientLogRequestsInputSchema, getIntegrationGlovoClientLogRequestsQuerySchema, getIntegrationGlovoClientLogRequestsResponseSchema, getIntegrationGlovoDetailsInputSchema, getIntegrationGlovoDetailsResponseSchema, getIntegrationGlovoListInputSchema, getIntegrationGlovoListQuerySchema, getIntegrationGlovoListResponseSchema, getIntegrationGlovoMenuUpdateDetailsInputSchema, getIntegrationGlovoMenuUpdateDetailsResponseSchema, getIntegrationGlovoMenuUpdatesInputSchema, getIntegrationGlovoMenuUpdatesQuerySchema, getIntegrationGlovoMenuUpdatesResponseSchema, getIntegrationGlovoMenuVersionDetailsInputSchema, getIntegrationGlovoMenuVersionDetailsResponseSchema, getIntegrationGlovoMenuVersionsInputSchema, getIntegrationGlovoMenuVersionsQuerySchema, getIntegrationGlovoMenuVersionsResponseSchema, getIntegrationGlovoWebhookEventDetailsInputSchema, getIntegrationGlovoWebhookEventDetailsResponseSchema, getIntegrationGlovoWebhookEventsInputSchema, getIntegrationGlovoWebhookEventsQuerySchema, getIntegrationGlovoWebhookEventsResponseSchema, getIntegrationJustEatClientLogRequestDetailsInputSchema, getIntegrationJustEatClientLogRequestDetailsResponseSchema, getIntegrationJustEatClientLogRequestsInputSchema, getIntegrationJustEatClientLogRequestsQuerySchema, getIntegrationJustEatClientLogRequestsResponseSchema, getIntegrationJustEatDetailsInputSchema, getIntegrationJustEatDetailsResponseSchema, getIntegrationJustEatListInputSchema, getIntegrationJustEatListQuerySchema, getIntegrationJustEatListResponseSchema, getIntegrationJustEatMenuVersionDetailsInputSchema, getIntegrationJustEatMenuVersionDetailsResponseSchema, getIntegrationJustEatMenuVersionsInputSchema, getIntegrationJustEatMenuVersionsQuerySchema, getIntegrationJustEatMenuVersionsResponseSchema, getIntegrationJustEatOrderDetailsInputSchema, getIntegrationJustEatOrderDetailsResponseSchema, getIntegrationJustEatOrdersInputSchema, getIntegrationJustEatOrdersQuerySchema, getIntegrationJustEatOrdersResponseSchema, getIntegrationJustEatSyncMenuProcessDetailsInputSchema, getIntegrationJustEatSyncMenuProcessDetailsResponseSchema, getIntegrationJustEatSyncMenuProcessesInputSchema, getIntegrationJustEatSyncMenuProcessesQuerySchema, getIntegrationJustEatSyncMenuProcessesResponseSchema, getIntegrationKitchenAccessTokenDetailsInputSchema, getIntegrationKitchenAccessTokenDetailsResponseSchema, getIntegrationKitchenAccessTokensInputSchema, getIntegrationKitchenAccessTokensQuerySchema, getIntegrationKitchenAccessTokensResponseSchema, getIntegrationKitchenDetailsInputSchema, getIntegrationKitchenDetailsResponseSchema, getIntegrationKitchenListInputSchema, getIntegrationKitchenListQuerySchema, getIntegrationKitchenListResponseSchema, getIntegrationsFromPointOfSaleInputSchema, getIntegrationsFromPointOfSaleQuerySchema, getIntegrationsFromPointOfSaleResponseSchema, getIntegrationsInputSchema, getIntegrationsQuerySchema, getIntegrationsResponseSchema, integrationActivationRequestDetailsSchema, integrationActivationRequestSchema, integrationBaseSchema, integrationCancellationRequestDetailsSchema, integrationCancellationRequestIriSchema, integrationCancellationRequestNullableIriSchema, integrationCancellationRequestSchema, integrationCancellationRequestStatusSchema, integrationCancellationRequestStatuses, integrationCassaInCloudDataSchema, integrationCassaInCloudDetailsSchema, integrationCassaInCloudDirectionSchema, integrationCassaInCloudDirections, integrationCassaInCloudEditableFieldsSchema, integrationCassaInCloudIriSchema, integrationCassaInCloudMissingComponentStrategies, integrationCassaInCloudMissingComponentStrategySchema, integrationCassaInCloudNullableIriSchema, integrationCassaInCloudProductChannelSchema, integrationCassaInCloudProductChannels, integrationCassaInCloudSchema, integrationCassaInCloudSyncCustomersInputSchema, integrationCassaInCloudSyncCustomersResponseSchema, integrationCassaInCloudSyncMenuErrorLogIriSchema, integrationCassaInCloudSyncMenuErrorLogNullableIriSchema, integrationCassaInCloudSyncMenuProcessDetailsSchema, integrationCassaInCloudSyncMenuProcessSchema, integrationCassaInCloudSyncMenuProcessesQuerySchema, integrationCassaInCloudSyncOrganizationsInputSchema, integrationCassaInCloudSyncOrganizationsResponseSchema, integrationCassaInCloudSyncProductsInputSchema, integrationCassaInCloudSyncProductsResponseSchema, integrationCassaInCloudSyncSalesModesInputSchema, integrationCassaInCloudSyncSalesModesResponseSchema, integrationCassaInCloudSyncSettingsSchema, integrationCassaInCloudSyncStockInputSchema, integrationCassaInCloudSyncStockResponseSchema, integrationCassaInCloudSyncTimetablesInputSchema, integrationCassaInCloudSyncTimetablesResponseSchema, integrationCassaInCloudWebHookEventDetailsSchema, integrationCassaInCloudWebHookEventEntities, integrationCassaInCloudWebHookEventEntitySchema, integrationCassaInCloudWebHookEventEventSchema, integrationCassaInCloudWebHookEventEvents, integrationCassaInCloudWebHookEventSchema, integrationCassaInCloudWebHookEventsQuerySchema, integrationClientLogRequestDetailsSchema, integrationClientLogRequestMethodSchema, integrationClientLogRequestMethods, integrationClientLogRequestSchema, integrationDeliverooDataSchema, integrationDeliverooDetailsSchema, integrationDeliverooEditableFieldsSchema, integrationDeliverooIriSchema, integrationDeliverooMenuVersionIriSchema, integrationDeliverooMenuVersionNullableIriSchema, integrationDeliverooNullableIriSchema, integrationDeliverooSchema, integrationDeliverooSiteStatusSchema, integrationDeliverooSiteStatuses, integrationDeliverooSyncMenuInputSchema, integrationDeliverooSyncMenuProcessDetailsSchema, integrationDeliverooSyncMenuProcessModeSchema, integrationDeliverooSyncMenuProcessModes, integrationDeliverooSyncMenuProcessSchema, integrationDeliverooSyncMenuProcessesQuerySchema, integrationDeliverooSyncMenuResponseSchema, integrationDeliverooSyncOpeningHoursInputSchema, integrationDeliverooSyncOpeningHoursResponseSchema, integrationDeliverooWebhookEventDetailsSchema, integrationDeliverooWebhookEventSchema, integrationDeliverooWebhookEventTypeSchema, integrationDeliverooWebhookEventTypes, integrationDeliverooWebhookEventsQueryParamsSchema, integrationDeliveryErrorSchema, integrationDeliveryErrors, integrationDeliveryProviderCommonSchema, integrationDetailsFieldsSchema, integrationDetailsSchema, integrationGlovoDataSchema, integrationGlovoDetailsSchema, integrationGlovoEditableFieldsSchema, integrationGlovoIriSchema, integrationGlovoMenuUpdateDetailsSchema, integrationGlovoMenuUpdateSchema, integrationGlovoMenuUpdateStatusSchema, integrationGlovoMenuUpdateStatuses, integrationGlovoMenuUpdatesQuerySchema, integrationGlovoMenuVersionIriSchema, integrationGlovoMenuVersionNullableIriSchema, integrationGlovoNullableIriSchema, integrationGlovoSchema, integrationGlovoStoreStatusSchema, integrationGlovoStoreStatuses, integrationGlovoSyncMenuInputSchema, integrationGlovoSyncMenuResponseSchema, integrationGlovoWebhookEventDetailsSchema, integrationGlovoWebhookEventSchema, integrationGlovoWebhookEventTypeSchema, integrationGlovoWebhookEventTypes, integrationGlovoWebhookEventsQueryParamsSchema, integrationIriSchema, integrationJustEatDataSchema, integrationJustEatDetailsSchema, integrationJustEatEditableFieldsSchema, integrationJustEatIriSchema, integrationJustEatMenuVersionIriSchema, integrationJustEatMenuVersionNullableIriSchema, integrationJustEatNullableIriSchema, integrationJustEatOrderDetailsSchema, integrationJustEatOrderSchema, integrationJustEatOrdersQueryParamsSchema, integrationJustEatRestaurantStatusSchema, integrationJustEatRestaurantStatuses, integrationJustEatSchema, integrationJustEatSyncMenuInputSchema, integrationJustEatSyncMenuProcessDetailsSchema, integrationJustEatSyncMenuProcessSchema, integrationJustEatSyncMenuProcessesQuerySchema, integrationJustEatSyncMenuResponseSchema, integrationJustEatSyncOpeningHoursInputSchema, integrationJustEatSyncOpeningHoursResponseSchema, integrationJustEatSyncTypeSchema, integrationJustEatSyncTypes, integrationKitchenAccessTokenDetailsSchema, integrationKitchenAccessTokenIriSchema, integrationKitchenAccessTokenNullableIriSchema, integrationKitchenAccessTokenSchema, integrationKitchenAccessTokensQuerySchema, integrationKitchenDataSchema, integrationKitchenDetailsSchema, integrationKitchenEditableFieldsSchema, integrationKitchenIriSchema, integrationKitchenNullableIriSchema, integrationKitchenSchema, integrationKitchenViewModeSchema, integrationKitchenViewModes, integrationMenuVersionPathSchemas, integrationNullableIriSchema, integrationPathSchemas, integrationProviderSchema, integrationProviders, integrationSchema, integrationServiceDataSchema, integrationServiceSchema, integrationServices, integrationStatusSchema, integrationStatuses, integrationsCassaInCloudQuerySchema, integrationsDeliverooQuerySchema, integrationsGlovoQuerySchema, integrationsJustEatQuerySchema, integrationsKitchenQuerySchema, menuVersionDetailsSchema, menuVersionSchema, respondIntegrationActivationRequestInputSchema, respondIntegrationActivationRequestResponseSchema, sendIntegrationActivationRequestToPartnerInputSchema, sendIntegrationActivationRequestToPartnerResponseSchema, updateIntegrationActivationRequestInputSchema, updateIntegrationActivationRequestResponseSchema, updateIntegrationCassaInCloudInputSchema, updateIntegrationCassaInCloudResponseSchema, updateIntegrationDeliverooInputSchema, updateIntegrationDeliverooResponseSchema, updateIntegrationDeliverooSiteStatusInputSchema, updateIntegrationDeliverooSiteStatusResponseSchema, updateIntegrationGlovoInputSchema, updateIntegrationGlovoResponseSchema, updateIntegrationGlovoStoreStatusInputSchema, updateIntegrationGlovoStoreStatusResponseSchema, updateIntegrationInputSchema, updateIntegrationJustEatInputSchema, updateIntegrationJustEatResponseSchema, updateIntegrationJustEatRestaurantStatusInputSchema, updateIntegrationJustEatRestaurantStatusResponseSchema, updateIntegrationKitchenInputSchema, updateIntegrationKitchenResponseSchema, updateIntegrationResponseSchema, writableIntegrationSchema };
|
|
16574
|
+
export { type ActivatableIntegration, type ActivatableIntegrationHealthStatus, type ActivatableIntegrationStatus, ActivateIntegrationActivationRequest, type ActivateIntegrationActivationRequestInput, type ActivateIntegrationActivationRequestResponse, AnnotateIntegrationActivationRequest, type AnnotateIntegrationActivationRequestInput, type AnnotateIntegrationActivationRequestResponse, CancelIntegrationCancellationRequest, type CancelIntegrationCancellationRequestInput, type CancelIntegrationCancellationRequestResponse, type ClientLogRequestQuery, CreateIntegrationActivationRequest, type CreateIntegrationActivationRequestInput, type CreateIntegrationActivationRequestResponse, CreateIntegrationCancellationRequest, type CreateIntegrationCancellationRequestInput, type CreateIntegrationCancellationRequestResponse, CreateIntegrationCassaInCloud, type CreateIntegrationCassaInCloudInput, type CreateIntegrationCassaInCloudResponse, CreateIntegrationDeliveroo, type CreateIntegrationDeliverooInput, type CreateIntegrationDeliverooResponse, CreateIntegrationGlovo, type CreateIntegrationGlovoInput, type CreateIntegrationGlovoResponse, CreateIntegrationJustEat, type CreateIntegrationJustEatInput, type CreateIntegrationJustEatResponse, CreateIntegrationKitchen, CreateIntegrationKitchenAccessToken, type CreateIntegrationKitchenAccessTokenInput, type CreateIntegrationKitchenAccessTokenResponse, type CreateIntegrationKitchenInput, type CreateIntegrationKitchenResponse, DeleteIntegration, DeleteIntegrationActivationRequest, DeleteIntegrationCancellationRequest, DeleteIntegrationCassaInCloud, DeleteIntegrationDeliveroo, DeleteIntegrationGlovo, DeleteIntegrationJustEat, DeleteIntegrationKitchen, DeleteIntegrationKitchenAccessToken, type ExclusiveIntegrationService, GetIntegrationActivationRequestDetails, type GetIntegrationActivationRequestDetailsInput, type GetIntegrationActivationRequestDetailsResponse, GetIntegrationActivationRequests, GetIntegrationActivationRequestsFromPointOfSale, type GetIntegrationActivationRequestsFromPointOfSaleInput, type GetIntegrationActivationRequestsFromPointOfSaleQueryParams, type GetIntegrationActivationRequestsFromPointOfSaleResponse, type GetIntegrationActivationRequestsInput, type GetIntegrationActivationRequestsQueryParams, type GetIntegrationActivationRequestsResponse, GetIntegrationCancellationRequestDetails, type GetIntegrationCancellationRequestDetailsInput, type GetIntegrationCancellationRequestDetailsResponse, GetIntegrationCancellationRequests, type GetIntegrationCancellationRequestsInput, type GetIntegrationCancellationRequestsQueryParams, type GetIntegrationCancellationRequestsResponse, GetIntegrationCassaInCloudClientLogRequestDetails, type GetIntegrationCassaInCloudClientLogRequestDetailsInput, type GetIntegrationCassaInCloudClientLogRequestDetailsResponse, GetIntegrationCassaInCloudClientLogRequests, type GetIntegrationCassaInCloudClientLogRequestsInput, type GetIntegrationCassaInCloudClientLogRequestsQueryParams, type GetIntegrationCassaInCloudClientLogRequestsResponse, GetIntegrationCassaInCloudDetails, type GetIntegrationCassaInCloudDetailsInput, type GetIntegrationCassaInCloudDetailsResponse, GetIntegrationCassaInCloudList, type GetIntegrationCassaInCloudListInput, type GetIntegrationCassaInCloudListQueryParams, type GetIntegrationCassaInCloudListResponse, GetIntegrationCassaInCloudSyncMenuProcessDetails, type GetIntegrationCassaInCloudSyncMenuProcessDetailsInput, type GetIntegrationCassaInCloudSyncMenuProcessDetailsResponse, GetIntegrationCassaInCloudSyncMenuProcesses, type GetIntegrationCassaInCloudSyncMenuProcessesInput, type GetIntegrationCassaInCloudSyncMenuProcessesQueryParams, type GetIntegrationCassaInCloudSyncMenuProcessesResponse, GetIntegrationCassaInCloudWebHookEventDetails, type GetIntegrationCassaInCloudWebHookEventDetailsInput, type GetIntegrationCassaInCloudWebHookEventDetailsResponse, GetIntegrationCassaInCloudWebHookEvents, type GetIntegrationCassaInCloudWebHookEventsInput, type GetIntegrationCassaInCloudWebHookEventsQueryParams, type GetIntegrationCassaInCloudWebHookEventsResponse, GetIntegrationDeliverooClientLogRequestDetails, type GetIntegrationDeliverooClientLogRequestDetailsInput, type GetIntegrationDeliverooClientLogRequestDetailsResponse, GetIntegrationDeliverooClientLogRequests, type GetIntegrationDeliverooClientLogRequestsInput, type GetIntegrationDeliverooClientLogRequestsQueryParams, type GetIntegrationDeliverooClientLogRequestsResponse, GetIntegrationDeliverooDetails, type GetIntegrationDeliverooDetailsInput, type GetIntegrationDeliverooDetailsResponse, GetIntegrationDeliverooList, type GetIntegrationDeliverooListQueryParams, type GetIntegrationDeliverooListResponse, GetIntegrationDeliverooMenuVersionDetails, type GetIntegrationDeliverooMenuVersionDetailsInput, type GetIntegrationDeliverooMenuVersionDetailsResponse, GetIntegrationDeliverooMenuVersions, type GetIntegrationDeliverooMenuVersionsInput, type GetIntegrationDeliverooMenuVersionsQueryParams, type GetIntegrationDeliverooMenuVersionsResponse, GetIntegrationDeliverooSyncMenuProcessDetails, type GetIntegrationDeliverooSyncMenuProcessDetailsInput, type GetIntegrationDeliverooSyncMenuProcessDetailsResponse, GetIntegrationDeliverooSyncMenuProcesses, type GetIntegrationDeliverooSyncMenuProcessesInput, type GetIntegrationDeliverooSyncMenuProcessesQueryParams, type GetIntegrationDeliverooSyncMenuProcessesResponse, GetIntegrationDeliverooWebhookEventDetails, type GetIntegrationDeliverooWebhookEventDetailsInput, type GetIntegrationDeliverooWebhookEventDetailsResponse, GetIntegrationDeliverooWebhookEvents, type GetIntegrationDeliverooWebhookEventsInput, type GetIntegrationDeliverooWebhookEventsQueryParams, type GetIntegrationDeliverooWebhookEventsResponse, GetIntegrationDetails, type GetIntegrationDetailsInput, type GetIntegrationDetailsResponse, GetIntegrationGlovoClientLogRequestDetails, type GetIntegrationGlovoClientLogRequestDetailsInput, type GetIntegrationGlovoClientLogRequestDetailsResponse, GetIntegrationGlovoClientLogRequests, type GetIntegrationGlovoClientLogRequestsInput, type GetIntegrationGlovoClientLogRequestsQueryParams, type GetIntegrationGlovoClientLogRequestsResponse, GetIntegrationGlovoDetails, type GetIntegrationGlovoDetailsInput, type GetIntegrationGlovoDetailsResponse, GetIntegrationGlovoList, type GetIntegrationGlovoListInput, type GetIntegrationGlovoListQueryParams, type GetIntegrationGlovoListResponse, GetIntegrationGlovoMenuUpdateDetails, type GetIntegrationGlovoMenuUpdateDetailsInput, type GetIntegrationGlovoMenuUpdateDetailsResponse, GetIntegrationGlovoMenuUpdates, type GetIntegrationGlovoMenuUpdatesInput, type GetIntegrationGlovoMenuUpdatesQueryParams, type GetIntegrationGlovoMenuUpdatesResponse, GetIntegrationGlovoMenuVersionDetails, type GetIntegrationGlovoMenuVersionDetailsInput, type GetIntegrationGlovoMenuVersionDetailsResponse, GetIntegrationGlovoMenuVersions, type GetIntegrationGlovoMenuVersionsInput, type GetIntegrationGlovoMenuVersionsQueryParams, type GetIntegrationGlovoMenuVersionsResponse, GetIntegrationGlovoWebhookEventDetails, type GetIntegrationGlovoWebhookEventDetailsInput, type GetIntegrationGlovoWebhookEventDetailsResponse, GetIntegrationGlovoWebhookEvents, type GetIntegrationGlovoWebhookEventsInput, type GetIntegrationGlovoWebhookEventsQueryParams, type GetIntegrationGlovoWebhookEventsResponse, GetIntegrationJustEatClientLogRequestDetails, type GetIntegrationJustEatClientLogRequestDetailsInput, type GetIntegrationJustEatClientLogRequestDetailsResponse, GetIntegrationJustEatClientLogRequests, type GetIntegrationJustEatClientLogRequestsInput, type GetIntegrationJustEatClientLogRequestsQueryParams, type GetIntegrationJustEatClientLogRequestsResponse, GetIntegrationJustEatDetails, type GetIntegrationJustEatDetailsInput, type GetIntegrationJustEatDetailsResponse, GetIntegrationJustEatList, type GetIntegrationJustEatListInput, type GetIntegrationJustEatListQueryParams, type GetIntegrationJustEatListResponse, GetIntegrationJustEatMenuVersionDetails, type GetIntegrationJustEatMenuVersionDetailsInput, type GetIntegrationJustEatMenuVersionDetailsResponse, GetIntegrationJustEatMenuVersions, type GetIntegrationJustEatMenuVersionsInput, type GetIntegrationJustEatMenuVersionsQueryParams, type GetIntegrationJustEatMenuVersionsResponse, GetIntegrationJustEatOrderDetails, type GetIntegrationJustEatOrderDetailsInput, type GetIntegrationJustEatOrderDetailsResponse, GetIntegrationJustEatOrders, type GetIntegrationJustEatOrdersInput, type GetIntegrationJustEatOrdersQueryParams, type GetIntegrationJustEatOrdersResponse, GetIntegrationJustEatSyncMenuProcessDetails, type GetIntegrationJustEatSyncMenuProcessDetailsInput, type GetIntegrationJustEatSyncMenuProcessDetailsResponse, GetIntegrationJustEatSyncMenuProcesses, type GetIntegrationJustEatSyncMenuProcessesInput, type GetIntegrationJustEatSyncMenuProcessesQueryParams, type GetIntegrationJustEatSyncMenuProcessesResponse, GetIntegrationKitchenAccessTokenDetails, type GetIntegrationKitchenAccessTokenDetailsInput, type GetIntegrationKitchenAccessTokenDetailsResponse, GetIntegrationKitchenAccessTokens, type GetIntegrationKitchenAccessTokensInput, type GetIntegrationKitchenAccessTokensQueryParams, type GetIntegrationKitchenAccessTokensResponse, GetIntegrationKitchenDetails, type GetIntegrationKitchenDetailsInput, type GetIntegrationKitchenDetailsResponse, GetIntegrationKitchenList, type GetIntegrationKitchenListQueryParams, type GetIntegrationKitchenListResponse, GetIntegrations, GetIntegrationsFromPointOfSale, type GetIntegrationsFromPointOfSaleInput, type GetIntegrationsFromPointOfSaleQueryParams, type GetIntegrationsFromPointOfSaleResponse, type GetIntegrationsInput, type GetIntegrationsQueryParams, type GetIntegrationsResponse, type Integration, type IntegrationActivationRequest, type IntegrationActivationRequestDetails, type IntegrationCancellationRequest, type IntegrationCancellationRequestDetails, type IntegrationCancellationRequestIri, type IntegrationCancellationRequestNullableIri, type IntegrationCancellationRequestStatus, type IntegrationCassaInCloud, type IntegrationCassaInCloudData, type IntegrationCassaInCloudDetails, type IntegrationCassaInCloudDirection, type IntegrationCassaInCloudEditableFields, type IntegrationCassaInCloudIri, type IntegrationCassaInCloudMissingComponentStrategy, type IntegrationCassaInCloudNullableIri, type IntegrationCassaInCloudProductChannel, IntegrationCassaInCloudSyncCustomers, type IntegrationCassaInCloudSyncMenuErrorLogIri, type IntegrationCassaInCloudSyncMenuErrorLogNullableIri, type IntegrationCassaInCloudSyncMenuProcess, type IntegrationCassaInCloudSyncMenuProcessDetails, type IntegrationCassaInCloudSyncMenuProcessesQueryParams, IntegrationCassaInCloudSyncOrganizations, IntegrationCassaInCloudSyncProducts, IntegrationCassaInCloudSyncSalesModes, type IntegrationCassaInCloudSyncSettings, IntegrationCassaInCloudSyncStock, type IntegrationCassaInCloudSyncTimes, IntegrationCassaInCloudSyncTimetables, type IntegrationCassaInCloudWebHookEvent, type IntegrationCassaInCloudWebHookEventDetails, type IntegrationCassaInCloudWebHookEventEntity, type IntegrationCassaInCloudWebHookEventEvent, type IntegrationCassaInCloudWebHookEventsQueryParams, type IntegrationClientLogRequest, type IntegrationClientLogRequestDetails, type IntegrationClientLogRequestMethod, type IntegrationDeliveroo, type IntegrationDeliverooData, type IntegrationDeliverooDetails, type IntegrationDeliverooEditableFields, type IntegrationDeliverooIri, type IntegrationDeliverooMenuVersionIri, type IntegrationDeliverooMenuVersionNullableIri, type IntegrationDeliverooNullableIri, type IntegrationDeliverooSiteStatus, IntegrationDeliverooSyncMenu, type IntegrationDeliverooSyncMenuProcess, type IntegrationDeliverooSyncMenuProcessDetails, type IntegrationDeliverooSyncMenuProcessMode, type IntegrationDeliverooSyncMenuProcessesQueryParams, IntegrationDeliverooSyncOpeningHours, type IntegrationDeliverooWebhookEvent, type IntegrationDeliverooWebhookEventDetails, type IntegrationDeliverooWebhookEventType, type IntegrationDeliverooWebhookEventsQueryParams, type IntegrationDeliveryError, type IntegrationDeliveryProviderCommon, type IntegrationDetails, type IntegrationGlovo, type IntegrationGlovoData, type IntegrationGlovoDetails, type IntegrationGlovoEditableFields, type IntegrationGlovoIri, type IntegrationGlovoMenuUpdate, type IntegrationGlovoMenuUpdateDetails, type IntegrationGlovoMenuUpdateStatus, type IntegrationGlovoMenuUpdatesQueryParams, type IntegrationGlovoMenuVersionIri, type IntegrationGlovoMenuVersionNullableIri, type IntegrationGlovoNullableIri, type IntegrationGlovoStoreStatus, IntegrationGlovoSyncMenu, type IntegrationGlovoWebhookEvent, type IntegrationGlovoWebhookEventDetails, type IntegrationGlovoWebhookEventType, type IntegrationGlovoWebhookEventsQueryParams, type IntegrationJustEat, type IntegrationJustEatData, type IntegrationJustEatDetails, type IntegrationJustEatEditableFields, type IntegrationJustEatIri, type IntegrationJustEatMenuVersionIri, type IntegrationJustEatMenuVersionNullableIri, type IntegrationJustEatNullableIri, type IntegrationJustEatOrder, type IntegrationJustEatOrderDetails, type IntegrationJustEatOrdersQueryParams, type IntegrationJustEatRestaurantStatus, IntegrationJustEatSyncMenu, type IntegrationJustEatSyncMenuProcess, type IntegrationJustEatSyncMenuProcessDetails, type IntegrationJustEatSyncMenuProcessesQueryParams, IntegrationJustEatSyncOpeningTimes, type IntegrationJustEatSyncType, type IntegrationKitchen, type IntegrationKitchenAccessToken, type IntegrationKitchenAccessTokenDetails, type IntegrationKitchenAccessTokenNullablePath, type IntegrationKitchenAccessTokenPath, type IntegrationKitchenAccessTokensQueryParams, type IntegrationKitchenData, type IntegrationKitchenDetails, type IntegrationKitchenEditableFields, type IntegrationKitchenIri, type IntegrationKitchenNullableIri, type IntegrationKitchenViewMode, type IntegrationNullablePath, type IntegrationPath, type IntegrationProvider, type IntegrationService, type IntegrationServiceData, type IntegrationStatus, type IntegrationsCassaInCloudQueryParams, type IntegrationsDeliverooQueryParams, type IntegrationsGlovoQueryParams, type IntegrationsJustEatQueryParams, type IntegrationsKitchenQueryParams, type MenuVersion, type MenuVersionDetails, RespondIntegrationActivationRequest, type RespondIntegrationActivationRequestInput, type RespondIntegrationActivationRequestResponse, SendIntegrationActivationRequestToPartner, type SendIntegrationActivationRequestToPartnerInput, type SendIntegrationActivationRequestToPartnerResponse, UpdateIntegration, UpdateIntegrationActivationRequest, type UpdateIntegrationActivationRequestInput, type UpdateIntegrationActivationRequestResponse, UpdateIntegrationCassaInCloud, type UpdateIntegrationCassaInCloudInput, type UpdateIntegrationCassaInCloudResponse, UpdateIntegrationDeliveroo, type UpdateIntegrationDeliverooInput, type UpdateIntegrationDeliverooResponse, UpdateIntegrationDeliverooSiteStatus, type UpdateIntegrationDeliverooSiteStatusInput, type UpdateIntegrationDeliverooSiteStatusResponse, UpdateIntegrationGlovo, type UpdateIntegrationGlovoInput, type UpdateIntegrationGlovoResponse, UpdateIntegrationGlovoStoreStatus, type UpdateIntegrationGlovoStoreStatusInput, type UpdateIntegrationGlovoStoreStatusResponse, type UpdateIntegrationInput, UpdateIntegrationJustEat, type UpdateIntegrationJustEatInput, type UpdateIntegrationJustEatResponse, UpdateIntegrationJustEatRestaurantStatus, type UpdateIntegrationJustEatRestaurantStatusInput, type UpdateIntegrationJustEatRestaurantStatusResponse, UpdateIntegrationKitchen, type UpdateIntegrationKitchenInput, type UpdateIntegrationKitchenResponse, type UpdateIntegrationResponse, activatableIntegrationBaseSchema, activatableIntegrationHealthStatusSchema, activatableIntegrationHealthStatuses, activatableIntegrationSchema, activatableIntegrationStatusSchema, activatableIntegrationStatuses, activateIntegrationActivationRequestInputSchema, activateIntegrationActivationRequestResponseSchema, annotateIntegrationActivationRequestInputSchema, annotateIntegrationActivationRequestResponseSchema, cancelIntegrationCancellationRequestInputSchema, cancelIntegrationCancellationRequestResponseSchema, clientLogRequestQuerySchema, createIntegrationActivationRequestInputSchema, createIntegrationActivationRequestResponseSchema, createIntegrationCancellationRequestInputSchema, createIntegrationCancellationRequestResponseSchema, createIntegrationCassaInCloudInputSchema, createIntegrationCassaInCloudResponseSchema, createIntegrationDeliverooInputSchema, createIntegrationDeliverooResponseSchema, createIntegrationGlovoInputSchema, createIntegrationGlovoResponseSchema, createIntegrationJustEatInputSchema, createIntegrationJustEatResponseSchema, createIntegrationKitchenAccessTokenInputSchema, createIntegrationKitchenAccessTokenResponseSchema, createIntegrationKitchenInputSchema, createIntegrationKitchenResponseSchema, deleteIntegrationActivationRequestInputSchema, deleteIntegrationActivationRequestResponseSchema, deleteIntegrationCancellationRequestInputSchema, deleteIntegrationCancellationRequestResponseSchema, deleteIntegrationCassaInCloudInputSchema, deleteIntegrationCassaInCloudResponseSchema, deleteIntegrationDeliverooInputSchema, deleteIntegrationDeliverooResponseSchema, deleteIntegrationGlovoInputSchema, deleteIntegrationGlovoResponseSchema, deleteIntegrationInputSchema, deleteIntegrationJustEatInputSchema, deleteIntegrationJustEatResponseSchema, deleteIntegrationKitchenAccessTokenInputSchema, deleteIntegrationKitchenAccessTokenResponseSchema, deleteIntegrationKitchenInputSchema, deleteIntegrationKitchenResponseSchema, deleteIntegrationResponseSchema, exclusiveIntegrationServiceSchema, exclusiveIntegrationServices, getIntegrationActivationRequestDetailsInputSchema, getIntegrationActivationRequestDetailsResponseSchema, getIntegrationActivationRequestsFromPointOfSaleInputSchema, getIntegrationActivationRequestsFromPointOfSaleQuerySchema, getIntegrationActivationRequestsFromPointOfSaleResponseSchema, getIntegrationActivationRequestsInputSchema, getIntegrationActivationRequestsQuerySchema, getIntegrationActivationRequestsResponseSchema, getIntegrationCancellationRequestDetailsInputSchema, getIntegrationCancellationRequestDetailsResponseSchema, getIntegrationCancellationRequestsInputSchema, getIntegrationCancellationRequestsQuerySchema, getIntegrationCancellationRequestsResponseSchema, getIntegrationCassaInCloudClientLogRequestDetailsInputSchema, getIntegrationCassaInCloudClientLogRequestDetailsResponseSchema, getIntegrationCassaInCloudClientLogRequestsInputSchema, getIntegrationCassaInCloudClientLogRequestsQuerySchema, getIntegrationCassaInCloudClientLogRequestsResponseSchema, getIntegrationCassaInCloudDetailsInputSchema, getIntegrationCassaInCloudDetailsResponseSchema, getIntegrationCassaInCloudListInputSchema, getIntegrationCassaInCloudListQuerySchema, getIntegrationCassaInCloudListResponseSchema, getIntegrationCassaInCloudSyncMenuProcessDetailsInputSchema, getIntegrationCassaInCloudSyncMenuProcessDetailsResponseSchema, getIntegrationCassaInCloudSyncMenuProcessesInputSchema, getIntegrationCassaInCloudSyncMenuProcessesQuerySchema, getIntegrationCassaInCloudSyncMenuProcessesResponseSchema, getIntegrationCassaInCloudWebHookEventDetailsInputSchema, getIntegrationCassaInCloudWebHookEventDetailsResponseSchema, getIntegrationCassaInCloudWebHookEventsInputSchema, getIntegrationCassaInCloudWebHookEventsQuerySchema, getIntegrationCassaInCloudWebHookEventsResponseSchema, getIntegrationDeliverooClientLogRequestDetailsInputSchema, getIntegrationDeliverooClientLogRequestDetailsResponseSchema, getIntegrationDeliverooClientLogRequestsInputSchema, getIntegrationDeliverooClientLogRequestsQuerySchema, getIntegrationDeliverooClientLogRequestsResponseSchema, getIntegrationDeliverooDetailsInputSchema, getIntegrationDeliverooDetailsResponseSchema, getIntegrationDeliverooListInputSchema, getIntegrationDeliverooListQuerySchema, getIntegrationDeliverooListResponseSchema, getIntegrationDeliverooMenuVersionDetailsInputSchema, getIntegrationDeliverooMenuVersionDetailsResponseSchema, getIntegrationDeliverooMenuVersionsInputSchema, getIntegrationDeliverooMenuVersionsQuerySchema, getIntegrationDeliverooMenuVersionsResponseSchema, getIntegrationDeliverooSyncMenuProcessDetailsInputSchema, getIntegrationDeliverooSyncMenuProcessDetailsResponseSchema, getIntegrationDeliverooSyncMenuProcessesInputSchema, getIntegrationDeliverooSyncMenuProcessesQuerySchema, getIntegrationDeliverooSyncMenuProcessesResponseSchema, getIntegrationDeliverooWebhookEventDetailsInputSchema, getIntegrationDeliverooWebhookEventDetailsResponseSchema, getIntegrationDeliverooWebhookEventsInputSchema, getIntegrationDeliverooWebhookEventsQuerySchema, getIntegrationDeliverooWebhookEventsResponseSchema, getIntegrationDetailsInputSchema, getIntegrationDetailsResponseSchema, getIntegrationGlovoClientLogRequestDetailsInputSchema, getIntegrationGlovoClientLogRequestDetailsResponseSchema, getIntegrationGlovoClientLogRequestsInputSchema, getIntegrationGlovoClientLogRequestsQuerySchema, getIntegrationGlovoClientLogRequestsResponseSchema, getIntegrationGlovoDetailsInputSchema, getIntegrationGlovoDetailsResponseSchema, getIntegrationGlovoListInputSchema, getIntegrationGlovoListQuerySchema, getIntegrationGlovoListResponseSchema, getIntegrationGlovoMenuUpdateDetailsInputSchema, getIntegrationGlovoMenuUpdateDetailsResponseSchema, getIntegrationGlovoMenuUpdatesInputSchema, getIntegrationGlovoMenuUpdatesQuerySchema, getIntegrationGlovoMenuUpdatesResponseSchema, getIntegrationGlovoMenuVersionDetailsInputSchema, getIntegrationGlovoMenuVersionDetailsResponseSchema, getIntegrationGlovoMenuVersionsInputSchema, getIntegrationGlovoMenuVersionsQuerySchema, getIntegrationGlovoMenuVersionsResponseSchema, getIntegrationGlovoWebhookEventDetailsInputSchema, getIntegrationGlovoWebhookEventDetailsResponseSchema, getIntegrationGlovoWebhookEventsInputSchema, getIntegrationGlovoWebhookEventsQuerySchema, getIntegrationGlovoWebhookEventsResponseSchema, getIntegrationJustEatClientLogRequestDetailsInputSchema, getIntegrationJustEatClientLogRequestDetailsResponseSchema, getIntegrationJustEatClientLogRequestsInputSchema, getIntegrationJustEatClientLogRequestsQuerySchema, getIntegrationJustEatClientLogRequestsResponseSchema, getIntegrationJustEatDetailsInputSchema, getIntegrationJustEatDetailsResponseSchema, getIntegrationJustEatListInputSchema, getIntegrationJustEatListQuerySchema, getIntegrationJustEatListResponseSchema, getIntegrationJustEatMenuVersionDetailsInputSchema, getIntegrationJustEatMenuVersionDetailsResponseSchema, getIntegrationJustEatMenuVersionsInputSchema, getIntegrationJustEatMenuVersionsQuerySchema, getIntegrationJustEatMenuVersionsResponseSchema, getIntegrationJustEatOrderDetailsInputSchema, getIntegrationJustEatOrderDetailsResponseSchema, getIntegrationJustEatOrdersInputSchema, getIntegrationJustEatOrdersQuerySchema, getIntegrationJustEatOrdersResponseSchema, getIntegrationJustEatSyncMenuProcessDetailsInputSchema, getIntegrationJustEatSyncMenuProcessDetailsResponseSchema, getIntegrationJustEatSyncMenuProcessesInputSchema, getIntegrationJustEatSyncMenuProcessesQuerySchema, getIntegrationJustEatSyncMenuProcessesResponseSchema, getIntegrationKitchenAccessTokenDetailsInputSchema, getIntegrationKitchenAccessTokenDetailsResponseSchema, getIntegrationKitchenAccessTokensInputSchema, getIntegrationKitchenAccessTokensQuerySchema, getIntegrationKitchenAccessTokensResponseSchema, getIntegrationKitchenDetailsInputSchema, getIntegrationKitchenDetailsResponseSchema, getIntegrationKitchenListInputSchema, getIntegrationKitchenListQuerySchema, getIntegrationKitchenListResponseSchema, getIntegrationsFromPointOfSaleInputSchema, getIntegrationsFromPointOfSaleQuerySchema, getIntegrationsFromPointOfSaleResponseSchema, getIntegrationsInputSchema, getIntegrationsQuerySchema, getIntegrationsResponseSchema, integrationActivationRequestDetailsSchema, integrationActivationRequestSchema, integrationBaseSchema, integrationCancellationRequestDetailsSchema, integrationCancellationRequestIriSchema, integrationCancellationRequestNullableIriSchema, integrationCancellationRequestSchema, integrationCancellationRequestStatusSchema, integrationCancellationRequestStatuses, integrationCassaInCloudDataSchema, integrationCassaInCloudDetailsSchema, integrationCassaInCloudDirectionSchema, integrationCassaInCloudDirections, integrationCassaInCloudEditableFieldsSchema, integrationCassaInCloudIriSchema, integrationCassaInCloudMissingComponentStrategies, integrationCassaInCloudMissingComponentStrategySchema, integrationCassaInCloudNullableIriSchema, integrationCassaInCloudProductChannelSchema, integrationCassaInCloudProductChannels, integrationCassaInCloudSchema, integrationCassaInCloudSyncCustomersInputSchema, integrationCassaInCloudSyncCustomersResponseSchema, integrationCassaInCloudSyncMenuErrorLogIriSchema, integrationCassaInCloudSyncMenuErrorLogNullableIriSchema, integrationCassaInCloudSyncMenuProcessDetailsSchema, integrationCassaInCloudSyncMenuProcessSchema, integrationCassaInCloudSyncMenuProcessesQuerySchema, integrationCassaInCloudSyncOrganizationsInputSchema, integrationCassaInCloudSyncOrganizationsResponseSchema, integrationCassaInCloudSyncProductsInputSchema, integrationCassaInCloudSyncProductsResponseSchema, integrationCassaInCloudSyncSalesModesInputSchema, integrationCassaInCloudSyncSalesModesResponseSchema, integrationCassaInCloudSyncSettingsSchema, integrationCassaInCloudSyncStockInputSchema, integrationCassaInCloudSyncStockResponseSchema, integrationCassaInCloudSyncTimesSchema, integrationCassaInCloudSyncTimetablesInputSchema, integrationCassaInCloudSyncTimetablesResponseSchema, integrationCassaInCloudWebHookEventDetailsSchema, integrationCassaInCloudWebHookEventEntities, integrationCassaInCloudWebHookEventEntitySchema, integrationCassaInCloudWebHookEventEventSchema, integrationCassaInCloudWebHookEventEvents, integrationCassaInCloudWebHookEventSchema, integrationCassaInCloudWebHookEventsQuerySchema, integrationClientLogRequestDetailsSchema, integrationClientLogRequestMethodSchema, integrationClientLogRequestMethods, integrationClientLogRequestSchema, integrationDeliverooDataSchema, integrationDeliverooDetailsSchema, integrationDeliverooEditableFieldsSchema, integrationDeliverooIriSchema, integrationDeliverooMenuVersionIriSchema, integrationDeliverooMenuVersionNullableIriSchema, integrationDeliverooNullableIriSchema, integrationDeliverooSchema, integrationDeliverooSiteStatusSchema, integrationDeliverooSiteStatuses, integrationDeliverooSyncMenuInputSchema, integrationDeliverooSyncMenuProcessDetailsSchema, integrationDeliverooSyncMenuProcessModeSchema, integrationDeliverooSyncMenuProcessModes, integrationDeliverooSyncMenuProcessSchema, integrationDeliverooSyncMenuProcessesQuerySchema, integrationDeliverooSyncMenuResponseSchema, integrationDeliverooSyncOpeningHoursInputSchema, integrationDeliverooSyncOpeningHoursResponseSchema, integrationDeliverooWebhookEventDetailsSchema, integrationDeliverooWebhookEventSchema, integrationDeliverooWebhookEventTypeSchema, integrationDeliverooWebhookEventTypes, integrationDeliverooWebhookEventsQueryParamsSchema, integrationDeliveryErrorSchema, integrationDeliveryErrors, integrationDeliveryProviderCommonSchema, integrationDetailsFieldsSchema, integrationDetailsSchema, integrationGlovoDataSchema, integrationGlovoDetailsSchema, integrationGlovoEditableFieldsSchema, integrationGlovoIriSchema, integrationGlovoMenuUpdateDetailsSchema, integrationGlovoMenuUpdateSchema, integrationGlovoMenuUpdateStatusSchema, integrationGlovoMenuUpdateStatuses, integrationGlovoMenuUpdatesQuerySchema, integrationGlovoMenuVersionIriSchema, integrationGlovoMenuVersionNullableIriSchema, integrationGlovoNullableIriSchema, integrationGlovoSchema, integrationGlovoStoreStatusSchema, integrationGlovoStoreStatuses, integrationGlovoSyncMenuInputSchema, integrationGlovoSyncMenuResponseSchema, integrationGlovoWebhookEventDetailsSchema, integrationGlovoWebhookEventSchema, integrationGlovoWebhookEventTypeSchema, integrationGlovoWebhookEventTypes, integrationGlovoWebhookEventsQueryParamsSchema, integrationIriSchema, integrationJustEatDataSchema, integrationJustEatDetailsSchema, integrationJustEatEditableFieldsSchema, integrationJustEatIriSchema, integrationJustEatMenuVersionIriSchema, integrationJustEatMenuVersionNullableIriSchema, integrationJustEatNullableIriSchema, integrationJustEatOrderDetailsSchema, integrationJustEatOrderSchema, integrationJustEatOrdersQueryParamsSchema, integrationJustEatRestaurantStatusSchema, integrationJustEatRestaurantStatuses, integrationJustEatSchema, integrationJustEatSyncMenuInputSchema, integrationJustEatSyncMenuProcessDetailsSchema, integrationJustEatSyncMenuProcessSchema, integrationJustEatSyncMenuProcessesQuerySchema, integrationJustEatSyncMenuResponseSchema, integrationJustEatSyncOpeningHoursInputSchema, integrationJustEatSyncOpeningHoursResponseSchema, integrationJustEatSyncTypeSchema, integrationJustEatSyncTypes, integrationKitchenAccessTokenDetailsSchema, integrationKitchenAccessTokenIriSchema, integrationKitchenAccessTokenNullableIriSchema, integrationKitchenAccessTokenSchema, integrationKitchenAccessTokensQuerySchema, integrationKitchenDataSchema, integrationKitchenDetailsSchema, integrationKitchenEditableFieldsSchema, integrationKitchenIriSchema, integrationKitchenNullableIriSchema, integrationKitchenSchema, integrationKitchenViewModeSchema, integrationKitchenViewModes, integrationMenuVersionPathSchemas, integrationNullableIriSchema, integrationPathSchemas, integrationProviderSchema, integrationProviders, integrationSchema, integrationServiceDataSchema, integrationServiceSchema, integrationServices, integrationStatusSchema, integrationStatuses, integrationsCassaInCloudQuerySchema, integrationsDeliverooQuerySchema, integrationsGlovoQuerySchema, integrationsJustEatQuerySchema, integrationsKitchenQuerySchema, menuVersionDetailsSchema, menuVersionSchema, respondIntegrationActivationRequestInputSchema, respondIntegrationActivationRequestResponseSchema, sendIntegrationActivationRequestToPartnerInputSchema, sendIntegrationActivationRequestToPartnerResponseSchema, updateIntegrationActivationRequestInputSchema, updateIntegrationActivationRequestResponseSchema, updateIntegrationCassaInCloudInputSchema, updateIntegrationCassaInCloudResponseSchema, updateIntegrationDeliverooInputSchema, updateIntegrationDeliverooResponseSchema, updateIntegrationDeliverooSiteStatusInputSchema, updateIntegrationDeliverooSiteStatusResponseSchema, updateIntegrationGlovoInputSchema, updateIntegrationGlovoResponseSchema, updateIntegrationGlovoStoreStatusInputSchema, updateIntegrationGlovoStoreStatusResponseSchema, updateIntegrationInputSchema, updateIntegrationJustEatInputSchema, updateIntegrationJustEatResponseSchema, updateIntegrationJustEatRestaurantStatusInputSchema, updateIntegrationJustEatRestaurantStatusResponseSchema, updateIntegrationKitchenInputSchema, updateIntegrationKitchenResponseSchema, updateIntegrationResponseSchema, writableIntegrationSchema };
|