@deliverart/sdk-js-integration 2.9.4 → 2.10.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +156 -124
- package/dist/index.d.cts +330 -134
- package/dist/index.d.ts +330 -134
- package/dist/index.js +153 -124
- package/package.json +7 -7
package/dist/index.d.cts
CHANGED
|
@@ -966,10 +966,6 @@ 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
970
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
975
971
|
syncSettings: z.ZodObject<{
|
|
@@ -981,9 +977,20 @@ declare const integrationSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
981
977
|
SKIP_ITEM: "SKIP_ITEM";
|
|
982
978
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
983
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>;
|
|
984
990
|
}, z.core.$strip>;
|
|
985
991
|
syncTimes: z.ZodObject<{
|
|
986
992
|
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
993
|
+
latestWebHookSyncAt: z.ZodNullable<z.ZodString>;
|
|
987
994
|
}, z.core.$strip>;
|
|
988
995
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
989
996
|
RISTO: "RISTO";
|
|
@@ -1163,10 +1170,6 @@ declare const integrationDetailsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1163
1170
|
cassa_in_cloud: "cassa_in_cloud";
|
|
1164
1171
|
}>;
|
|
1165
1172
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
1166
|
-
direction: z.ZodEnum<{
|
|
1167
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
1168
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
1169
|
-
}>;
|
|
1170
1173
|
locale: z.ZodString;
|
|
1171
1174
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
1172
1175
|
syncSettings: z.ZodObject<{
|
|
@@ -1178,9 +1181,20 @@ declare const integrationDetailsSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1178
1181
|
SKIP_ITEM: "SKIP_ITEM";
|
|
1179
1182
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
1180
1183
|
}>>;
|
|
1184
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
1185
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
1186
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
1187
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
1188
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
1189
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
1190
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
1191
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
1192
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
1193
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
1181
1194
|
}, z.core.$strip>;
|
|
1182
1195
|
syncTimes: z.ZodObject<{
|
|
1183
1196
|
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
1197
|
+
latestWebHookSyncAt: z.ZodNullable<z.ZodString>;
|
|
1184
1198
|
}, z.core.$strip>;
|
|
1185
1199
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
1186
1200
|
RISTO: "RISTO";
|
|
@@ -6745,10 +6759,6 @@ declare const getIntegrationDetailsResponseSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
6745
6759
|
cassa_in_cloud: "cassa_in_cloud";
|
|
6746
6760
|
}>;
|
|
6747
6761
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
6748
|
-
direction: z.ZodEnum<{
|
|
6749
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
6750
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
6751
|
-
}>;
|
|
6752
6762
|
locale: z.ZodString;
|
|
6753
6763
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
6754
6764
|
syncSettings: z.ZodObject<{
|
|
@@ -6760,9 +6770,20 @@ declare const getIntegrationDetailsResponseSchema: z.ZodDiscriminatedUnion<[z.Zo
|
|
|
6760
6770
|
SKIP_ITEM: "SKIP_ITEM";
|
|
6761
6771
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
6762
6772
|
}>>;
|
|
6773
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
6774
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
6775
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
6776
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
6777
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
6778
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
6779
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
6780
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
6781
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
6782
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
6763
6783
|
}, z.core.$strip>;
|
|
6764
6784
|
syncTimes: z.ZodObject<{
|
|
6765
6785
|
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
6786
|
+
latestWebHookSyncAt: z.ZodNullable<z.ZodString>;
|
|
6766
6787
|
}, z.core.$strip>;
|
|
6767
6788
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
6768
6789
|
RISTO: "RISTO";
|
|
@@ -6948,10 +6969,6 @@ declare class GetIntegrationDetails extends AbstractApiRequest<typeof getIntegra
|
|
|
6948
6969
|
cassa_in_cloud: "cassa_in_cloud";
|
|
6949
6970
|
}>;
|
|
6950
6971
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
6951
|
-
direction: z.ZodEnum<{
|
|
6952
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
6953
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
6954
|
-
}>;
|
|
6955
6972
|
locale: z.ZodString;
|
|
6956
6973
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
6957
6974
|
syncSettings: z.ZodObject<{
|
|
@@ -6963,9 +6980,20 @@ declare class GetIntegrationDetails extends AbstractApiRequest<typeof getIntegra
|
|
|
6963
6980
|
SKIP_ITEM: "SKIP_ITEM";
|
|
6964
6981
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
6965
6982
|
}>>;
|
|
6983
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
6984
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
6985
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
6986
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
6987
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
6988
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
6989
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
6990
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
6991
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
6992
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
6966
6993
|
}, z.core.$strip>;
|
|
6967
6994
|
syncTimes: z.ZodObject<{
|
|
6968
6995
|
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
6996
|
+
latestWebHookSyncAt: z.ZodNullable<z.ZodString>;
|
|
6969
6997
|
}, z.core.$strip>;
|
|
6970
6998
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
6971
6999
|
RISTO: "RISTO";
|
|
@@ -7187,10 +7215,6 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
|
|
|
7187
7215
|
cassa_in_cloud: "cassa_in_cloud";
|
|
7188
7216
|
}>;
|
|
7189
7217
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
7190
|
-
direction: z.ZodEnum<{
|
|
7191
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
7192
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
7193
|
-
}>;
|
|
7194
7218
|
locale: z.ZodString;
|
|
7195
7219
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
7196
7220
|
syncSettings: z.ZodObject<{
|
|
@@ -7202,9 +7226,20 @@ declare const getIntegrationsResponseSchema: z.ZodObject<{
|
|
|
7202
7226
|
SKIP_ITEM: "SKIP_ITEM";
|
|
7203
7227
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
7204
7228
|
}>>;
|
|
7229
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
7230
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
7231
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
7232
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
7233
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
7234
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
7235
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
7236
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
7237
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
7238
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
7205
7239
|
}, z.core.$strip>;
|
|
7206
7240
|
syncTimes: z.ZodObject<{
|
|
7207
7241
|
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
7242
|
+
latestWebHookSyncAt: z.ZodNullable<z.ZodString>;
|
|
7208
7243
|
}, z.core.$strip>;
|
|
7209
7244
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
7210
7245
|
RISTO: "RISTO";
|
|
@@ -7394,10 +7429,6 @@ declare class GetIntegrations extends AbstractApiRequest<typeof getIntegrationsI
|
|
|
7394
7429
|
cassa_in_cloud: "cassa_in_cloud";
|
|
7395
7430
|
}>;
|
|
7396
7431
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
7397
|
-
direction: z.ZodEnum<{
|
|
7398
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
7399
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
7400
|
-
}>;
|
|
7401
7432
|
locale: z.ZodString;
|
|
7402
7433
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
7403
7434
|
syncSettings: z.ZodObject<{
|
|
@@ -7409,9 +7440,20 @@ declare class GetIntegrations extends AbstractApiRequest<typeof getIntegrationsI
|
|
|
7409
7440
|
SKIP_ITEM: "SKIP_ITEM";
|
|
7410
7441
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
7411
7442
|
}>>;
|
|
7443
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
7444
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
7445
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
7446
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
7447
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
7448
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
7449
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
7450
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
7451
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
7452
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
7412
7453
|
}, z.core.$strip>;
|
|
7413
7454
|
syncTimes: z.ZodObject<{
|
|
7414
7455
|
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
7456
|
+
latestWebHookSyncAt: z.ZodNullable<z.ZodString>;
|
|
7415
7457
|
}, z.core.$strip>;
|
|
7416
7458
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
7417
7459
|
RISTO: "RISTO";
|
|
@@ -7631,10 +7673,6 @@ declare class GetIntegrations extends AbstractApiRequest<typeof getIntegrationsI
|
|
|
7631
7673
|
cassa_in_cloud: "cassa_in_cloud";
|
|
7632
7674
|
}>;
|
|
7633
7675
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
7634
|
-
direction: z.ZodEnum<{
|
|
7635
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
7636
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
7637
|
-
}>;
|
|
7638
7676
|
locale: z.ZodString;
|
|
7639
7677
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
7640
7678
|
syncSettings: z.ZodObject<{
|
|
@@ -7646,9 +7684,20 @@ declare class GetIntegrations extends AbstractApiRequest<typeof getIntegrationsI
|
|
|
7646
7684
|
SKIP_ITEM: "SKIP_ITEM";
|
|
7647
7685
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
7648
7686
|
}>>;
|
|
7687
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
7688
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
7689
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
7690
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
7691
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
7692
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
7693
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
7694
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
7695
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
7696
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
7649
7697
|
}, z.core.$strip>;
|
|
7650
7698
|
syncTimes: z.ZodObject<{
|
|
7651
7699
|
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
7700
|
+
latestWebHookSyncAt: z.ZodNullable<z.ZodString>;
|
|
7652
7701
|
}, z.core.$strip>;
|
|
7653
7702
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
7654
7703
|
RISTO: "RISTO";
|
|
@@ -7868,10 +7917,6 @@ declare const getIntegrationsFromPointOfSaleResponseSchema: z.ZodArray<z.ZodDisc
|
|
|
7868
7917
|
cassa_in_cloud: "cassa_in_cloud";
|
|
7869
7918
|
}>;
|
|
7870
7919
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
7871
|
-
direction: z.ZodEnum<{
|
|
7872
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
7873
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
7874
|
-
}>;
|
|
7875
7920
|
locale: z.ZodString;
|
|
7876
7921
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
7877
7922
|
syncSettings: z.ZodObject<{
|
|
@@ -7883,9 +7928,20 @@ declare const getIntegrationsFromPointOfSaleResponseSchema: z.ZodArray<z.ZodDisc
|
|
|
7883
7928
|
SKIP_ITEM: "SKIP_ITEM";
|
|
7884
7929
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
7885
7930
|
}>>;
|
|
7931
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
7932
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
7933
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
7934
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
7935
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
7936
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
7937
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
7938
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
7939
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
7940
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
7886
7941
|
}, z.core.$strip>;
|
|
7887
7942
|
syncTimes: z.ZodObject<{
|
|
7888
7943
|
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
7944
|
+
latestWebHookSyncAt: z.ZodNullable<z.ZodString>;
|
|
7889
7945
|
}, z.core.$strip>;
|
|
7890
7946
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
7891
7947
|
RISTO: "RISTO";
|
|
@@ -8065,10 +8121,6 @@ declare class GetIntegrationsFromPointOfSale extends AbstractApiRequest<typeof g
|
|
|
8065
8121
|
cassa_in_cloud: "cassa_in_cloud";
|
|
8066
8122
|
}>;
|
|
8067
8123
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
8068
|
-
direction: z.ZodEnum<{
|
|
8069
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
8070
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
8071
|
-
}>;
|
|
8072
8124
|
locale: z.ZodString;
|
|
8073
8125
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
8074
8126
|
syncSettings: z.ZodObject<{
|
|
@@ -8080,9 +8132,20 @@ declare class GetIntegrationsFromPointOfSale extends AbstractApiRequest<typeof g
|
|
|
8080
8132
|
SKIP_ITEM: "SKIP_ITEM";
|
|
8081
8133
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
8082
8134
|
}>>;
|
|
8135
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
8136
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
8137
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
8138
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
8139
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
8140
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
8141
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
8142
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
8143
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
8144
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
8083
8145
|
}, z.core.$strip>;
|
|
8084
8146
|
syncTimes: z.ZodObject<{
|
|
8085
8147
|
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
8148
|
+
latestWebHookSyncAt: z.ZodNullable<z.ZodString>;
|
|
8086
8149
|
}, z.core.$strip>;
|
|
8087
8150
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
8088
8151
|
RISTO: "RISTO";
|
|
@@ -8293,10 +8356,6 @@ declare class GetIntegrationsFromPointOfSale extends AbstractApiRequest<typeof g
|
|
|
8293
8356
|
cassa_in_cloud: "cassa_in_cloud";
|
|
8294
8357
|
}>;
|
|
8295
8358
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
8296
|
-
direction: z.ZodEnum<{
|
|
8297
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
8298
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
8299
|
-
}>;
|
|
8300
8359
|
locale: z.ZodString;
|
|
8301
8360
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
8302
8361
|
syncSettings: z.ZodObject<{
|
|
@@ -8308,9 +8367,20 @@ declare class GetIntegrationsFromPointOfSale extends AbstractApiRequest<typeof g
|
|
|
8308
8367
|
SKIP_ITEM: "SKIP_ITEM";
|
|
8309
8368
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
8310
8369
|
}>>;
|
|
8370
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
8371
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
8372
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
8373
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
8374
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
8375
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
8376
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
8377
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
8378
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
8379
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
8311
8380
|
}, z.core.$strip>;
|
|
8312
8381
|
syncTimes: z.ZodObject<{
|
|
8313
8382
|
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
8383
|
+
latestWebHookSyncAt: z.ZodNullable<z.ZodString>;
|
|
8314
8384
|
}, z.core.$strip>;
|
|
8315
8385
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
8316
8386
|
RISTO: "RISTO";
|
|
@@ -8338,10 +8408,21 @@ declare const integrationCassaInCloudSyncSettingsSchema: z.ZodObject<{
|
|
|
8338
8408
|
SKIP_ITEM: "SKIP_ITEM";
|
|
8339
8409
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
8340
8410
|
}>>;
|
|
8411
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
8412
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
8413
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
8414
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
8415
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
8416
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
8417
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
8418
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
8419
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
8420
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
8341
8421
|
}, z.core.$strip>;
|
|
8342
8422
|
type IntegrationCassaInCloudSyncSettings = z.infer<typeof integrationCassaInCloudSyncSettingsSchema>;
|
|
8343
8423
|
declare const integrationCassaInCloudSyncTimesSchema: z.ZodObject<{
|
|
8344
8424
|
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
8425
|
+
latestWebHookSyncAt: z.ZodNullable<z.ZodString>;
|
|
8345
8426
|
}, z.core.$strip>;
|
|
8346
8427
|
type IntegrationCassaInCloudSyncTimes = z.infer<typeof integrationCassaInCloudSyncTimesSchema>;
|
|
8347
8428
|
declare const integrationCassaInCloudSchema: z.ZodObject<{
|
|
@@ -8366,10 +8447,6 @@ declare const integrationCassaInCloudSchema: z.ZodObject<{
|
|
|
8366
8447
|
cassa_in_cloud: "cassa_in_cloud";
|
|
8367
8448
|
}>;
|
|
8368
8449
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
8369
|
-
direction: z.ZodEnum<{
|
|
8370
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
8371
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
8372
|
-
}>;
|
|
8373
8450
|
locale: z.ZodString;
|
|
8374
8451
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
8375
8452
|
syncSettings: z.ZodObject<{
|
|
@@ -8381,9 +8458,20 @@ declare const integrationCassaInCloudSchema: z.ZodObject<{
|
|
|
8381
8458
|
SKIP_ITEM: "SKIP_ITEM";
|
|
8382
8459
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
8383
8460
|
}>>;
|
|
8461
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
8462
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
8463
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
8464
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
8465
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
8466
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
8467
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
8468
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
8469
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
8470
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
8384
8471
|
}, z.core.$strip>;
|
|
8385
8472
|
syncTimes: z.ZodObject<{
|
|
8386
8473
|
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
8474
|
+
latestWebHookSyncAt: z.ZodNullable<z.ZodString>;
|
|
8387
8475
|
}, z.core.$strip>;
|
|
8388
8476
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
8389
8477
|
RISTO: "RISTO";
|
|
@@ -8417,10 +8505,6 @@ declare const integrationCassaInCloudDetailsSchema: z.ZodObject<{
|
|
|
8417
8505
|
cassa_in_cloud: "cassa_in_cloud";
|
|
8418
8506
|
}>;
|
|
8419
8507
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
8420
|
-
direction: z.ZodEnum<{
|
|
8421
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
8422
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
8423
|
-
}>;
|
|
8424
8508
|
locale: z.ZodString;
|
|
8425
8509
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
8426
8510
|
syncSettings: z.ZodObject<{
|
|
@@ -8432,9 +8516,20 @@ declare const integrationCassaInCloudDetailsSchema: z.ZodObject<{
|
|
|
8432
8516
|
SKIP_ITEM: "SKIP_ITEM";
|
|
8433
8517
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
8434
8518
|
}>>;
|
|
8519
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
8520
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
8521
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
8522
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
8523
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
8524
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
8525
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
8526
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
8527
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
8528
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
8435
8529
|
}, z.core.$strip>;
|
|
8436
8530
|
syncTimes: z.ZodObject<{
|
|
8437
8531
|
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
8532
|
+
latestWebHookSyncAt: z.ZodNullable<z.ZodString>;
|
|
8438
8533
|
}, z.core.$strip>;
|
|
8439
8534
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
8440
8535
|
RISTO: "RISTO";
|
|
@@ -8462,13 +8557,6 @@ declare const integrationsCassaInCloudQuerySchema: z.ZodObject<{
|
|
|
8462
8557
|
}>>;
|
|
8463
8558
|
apiKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodOptional<z.ZodString>, z.ZodArray<z.ZodString>]>>;
|
|
8464
8559
|
idSalesPoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
8465
|
-
direction: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
8466
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
8467
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
8468
|
-
}>, z.ZodArray<z.ZodEnum<{
|
|
8469
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
8470
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
8471
|
-
}>>]>>;
|
|
8472
8560
|
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
8473
8561
|
pending: "pending";
|
|
8474
8562
|
active: "active";
|
|
@@ -8501,10 +8589,6 @@ declare const integrationsCassaInCloudQuerySchema: z.ZodObject<{
|
|
|
8501
8589
|
}, z.core.$strip>;
|
|
8502
8590
|
type IntegrationsCassaInCloudQueryParams = z.infer<typeof integrationsCassaInCloudQuerySchema>;
|
|
8503
8591
|
declare const integrationCassaInCloudEditableFieldsSchema: z.ZodObject<{
|
|
8504
|
-
direction: z.ZodEnum<{
|
|
8505
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
8506
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
8507
|
-
}>;
|
|
8508
8592
|
apiKey: z.ZodString;
|
|
8509
8593
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
8510
8594
|
locale: z.ZodString;
|
|
@@ -8521,6 +8605,16 @@ declare const integrationCassaInCloudEditableFieldsSchema: z.ZodObject<{
|
|
|
8521
8605
|
SKIP_ITEM: "SKIP_ITEM";
|
|
8522
8606
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
8523
8607
|
}>>;
|
|
8608
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
8609
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
8610
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
8611
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
8612
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
8613
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
8614
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
8615
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
8616
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
8617
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
8524
8618
|
}, z.core.$strip>;
|
|
8525
8619
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
8526
8620
|
RISTO: "RISTO";
|
|
@@ -9587,10 +9681,6 @@ declare const integrationKitchenAccessTokensQuerySchema: z.ZodObject<{
|
|
|
9587
9681
|
type IntegrationKitchenAccessTokensQueryParams = z.infer<typeof integrationKitchenAccessTokensQuerySchema>;
|
|
9588
9682
|
|
|
9589
9683
|
declare const createIntegrationCassaInCloudInputSchema: z.ZodObject<{
|
|
9590
|
-
direction: z.ZodEnum<{
|
|
9591
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
9592
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
9593
|
-
}>;
|
|
9594
9684
|
apiKey: z.ZodString;
|
|
9595
9685
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
9596
9686
|
locale: z.ZodString;
|
|
@@ -9607,6 +9697,16 @@ declare const createIntegrationCassaInCloudInputSchema: z.ZodObject<{
|
|
|
9607
9697
|
SKIP_ITEM: "SKIP_ITEM";
|
|
9608
9698
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
9609
9699
|
}>>;
|
|
9700
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
9701
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
9702
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
9703
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
9704
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
9705
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
9706
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
9707
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
9708
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
9709
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
9610
9710
|
}, z.core.$strip>;
|
|
9611
9711
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
9612
9712
|
RISTO: "RISTO";
|
|
@@ -9641,10 +9741,6 @@ declare const createIntegrationCassaInCloudResponseSchema: z.ZodObject<{
|
|
|
9641
9741
|
cassa_in_cloud: "cassa_in_cloud";
|
|
9642
9742
|
}>;
|
|
9643
9743
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
9644
|
-
direction: z.ZodEnum<{
|
|
9645
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
9646
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
9647
|
-
}>;
|
|
9648
9744
|
locale: z.ZodString;
|
|
9649
9745
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
9650
9746
|
syncSettings: z.ZodObject<{
|
|
@@ -9656,9 +9752,20 @@ declare const createIntegrationCassaInCloudResponseSchema: z.ZodObject<{
|
|
|
9656
9752
|
SKIP_ITEM: "SKIP_ITEM";
|
|
9657
9753
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
9658
9754
|
}>>;
|
|
9755
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
9756
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
9757
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
9758
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
9759
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
9760
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
9761
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
9762
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
9763
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
9764
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
9659
9765
|
}, z.core.$strip>;
|
|
9660
9766
|
syncTimes: z.ZodObject<{
|
|
9661
9767
|
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
9768
|
+
latestWebHookSyncAt: z.ZodNullable<z.ZodString>;
|
|
9662
9769
|
}, z.core.$strip>;
|
|
9663
9770
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
9664
9771
|
RISTO: "RISTO";
|
|
@@ -9676,10 +9783,6 @@ declare class CreateIntegrationCassaInCloud extends AbstractApiRequest<typeof cr
|
|
|
9676
9783
|
readonly contentType = "application/json";
|
|
9677
9784
|
readonly accept = "application/json";
|
|
9678
9785
|
readonly inputSchema: z.ZodObject<{
|
|
9679
|
-
direction: z.ZodEnum<{
|
|
9680
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
9681
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
9682
|
-
}>;
|
|
9683
9786
|
apiKey: z.ZodString;
|
|
9684
9787
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
9685
9788
|
locale: z.ZodString;
|
|
@@ -9696,6 +9799,16 @@ declare class CreateIntegrationCassaInCloud extends AbstractApiRequest<typeof cr
|
|
|
9696
9799
|
SKIP_ITEM: "SKIP_ITEM";
|
|
9697
9800
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
9698
9801
|
}>>;
|
|
9802
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
9803
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
9804
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
9805
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
9806
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
9807
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
9808
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
9809
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
9810
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
9811
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
9699
9812
|
}, z.core.$strip>;
|
|
9700
9813
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
9701
9814
|
RISTO: "RISTO";
|
|
@@ -9729,10 +9842,6 @@ declare class CreateIntegrationCassaInCloud extends AbstractApiRequest<typeof cr
|
|
|
9729
9842
|
cassa_in_cloud: "cassa_in_cloud";
|
|
9730
9843
|
}>;
|
|
9731
9844
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
9732
|
-
direction: z.ZodEnum<{
|
|
9733
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
9734
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
9735
|
-
}>;
|
|
9736
9845
|
locale: z.ZodString;
|
|
9737
9846
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
9738
9847
|
syncSettings: z.ZodObject<{
|
|
@@ -9744,9 +9853,20 @@ declare class CreateIntegrationCassaInCloud extends AbstractApiRequest<typeof cr
|
|
|
9744
9853
|
SKIP_ITEM: "SKIP_ITEM";
|
|
9745
9854
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
9746
9855
|
}>>;
|
|
9856
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
9857
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
9858
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
9859
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
9860
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
9861
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
9862
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
9863
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
9864
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
9865
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
9747
9866
|
}, z.core.$strip>;
|
|
9748
9867
|
syncTimes: z.ZodObject<{
|
|
9749
9868
|
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
9869
|
+
latestWebHookSyncAt: z.ZodNullable<z.ZodString>;
|
|
9750
9870
|
}, z.core.$strip>;
|
|
9751
9871
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
9752
9872
|
RISTO: "RISTO";
|
|
@@ -10127,10 +10247,6 @@ declare const getIntegrationCassaInCloudDetailsResponseSchema: z.ZodObject<{
|
|
|
10127
10247
|
cassa_in_cloud: "cassa_in_cloud";
|
|
10128
10248
|
}>;
|
|
10129
10249
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
10130
|
-
direction: z.ZodEnum<{
|
|
10131
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
10132
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
10133
|
-
}>;
|
|
10134
10250
|
locale: z.ZodString;
|
|
10135
10251
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
10136
10252
|
syncSettings: z.ZodObject<{
|
|
@@ -10142,9 +10258,20 @@ declare const getIntegrationCassaInCloudDetailsResponseSchema: z.ZodObject<{
|
|
|
10142
10258
|
SKIP_ITEM: "SKIP_ITEM";
|
|
10143
10259
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
10144
10260
|
}>>;
|
|
10261
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
10262
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
10263
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
10264
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
10265
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
10266
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
10267
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
10268
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
10269
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
10270
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
10145
10271
|
}, z.core.$strip>;
|
|
10146
10272
|
syncTimes: z.ZodObject<{
|
|
10147
10273
|
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
10274
|
+
latestWebHookSyncAt: z.ZodNullable<z.ZodString>;
|
|
10148
10275
|
}, z.core.$strip>;
|
|
10149
10276
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
10150
10277
|
RISTO: "RISTO";
|
|
@@ -10184,10 +10311,6 @@ declare class GetIntegrationCassaInCloudDetails extends AbstractApiRequest<typeo
|
|
|
10184
10311
|
cassa_in_cloud: "cassa_in_cloud";
|
|
10185
10312
|
}>;
|
|
10186
10313
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
10187
|
-
direction: z.ZodEnum<{
|
|
10188
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
10189
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
10190
|
-
}>;
|
|
10191
10314
|
locale: z.ZodString;
|
|
10192
10315
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
10193
10316
|
syncSettings: z.ZodObject<{
|
|
@@ -10199,9 +10322,20 @@ declare class GetIntegrationCassaInCloudDetails extends AbstractApiRequest<typeo
|
|
|
10199
10322
|
SKIP_ITEM: "SKIP_ITEM";
|
|
10200
10323
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
10201
10324
|
}>>;
|
|
10325
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
10326
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
10327
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
10328
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
10329
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
10330
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
10331
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
10332
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
10333
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
10334
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
10202
10335
|
}, z.core.$strip>;
|
|
10203
10336
|
syncTimes: z.ZodObject<{
|
|
10204
10337
|
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
10338
|
+
latestWebHookSyncAt: z.ZodNullable<z.ZodString>;
|
|
10205
10339
|
}, z.core.$strip>;
|
|
10206
10340
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
10207
10341
|
RISTO: "RISTO";
|
|
@@ -10221,13 +10355,6 @@ declare class GetIntegrationCassaInCloudDetails extends AbstractApiRequest<typeo
|
|
|
10221
10355
|
}
|
|
10222
10356
|
|
|
10223
10357
|
declare const getIntegrationCassaInCloudListQuerySchema: z.ZodObject<{
|
|
10224
|
-
direction: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
10225
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
10226
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
10227
|
-
}>, z.ZodArray<z.ZodEnum<{
|
|
10228
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
10229
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
10230
|
-
}>>]>>;
|
|
10231
10358
|
apiKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodOptional<z.ZodString>, z.ZodArray<z.ZodString>]>>;
|
|
10232
10359
|
idSalesPoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
10233
10360
|
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -10295,10 +10422,6 @@ declare const getIntegrationCassaInCloudListResponseSchema: z.ZodObject<{
|
|
|
10295
10422
|
cassa_in_cloud: "cassa_in_cloud";
|
|
10296
10423
|
}>;
|
|
10297
10424
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
10298
|
-
direction: z.ZodEnum<{
|
|
10299
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
10300
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
10301
|
-
}>;
|
|
10302
10425
|
locale: z.ZodString;
|
|
10303
10426
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
10304
10427
|
syncSettings: z.ZodObject<{
|
|
@@ -10310,9 +10433,20 @@ declare const getIntegrationCassaInCloudListResponseSchema: z.ZodObject<{
|
|
|
10310
10433
|
SKIP_ITEM: "SKIP_ITEM";
|
|
10311
10434
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
10312
10435
|
}>>;
|
|
10436
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
10437
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
10438
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
10439
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
10440
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
10441
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
10442
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
10443
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
10444
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
10445
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
10313
10446
|
}, z.core.$strip>;
|
|
10314
10447
|
syncTimes: z.ZodObject<{
|
|
10315
10448
|
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
10449
|
+
latestWebHookSyncAt: z.ZodNullable<z.ZodString>;
|
|
10316
10450
|
}, z.core.$strip>;
|
|
10317
10451
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
10318
10452
|
RISTO: "RISTO";
|
|
@@ -10361,10 +10495,6 @@ declare class GetIntegrationCassaInCloudList extends AbstractApiRequest<typeof g
|
|
|
10361
10495
|
cassa_in_cloud: "cassa_in_cloud";
|
|
10362
10496
|
}>;
|
|
10363
10497
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
10364
|
-
direction: z.ZodEnum<{
|
|
10365
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
10366
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
10367
|
-
}>;
|
|
10368
10498
|
locale: z.ZodString;
|
|
10369
10499
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
10370
10500
|
syncSettings: z.ZodObject<{
|
|
@@ -10376,9 +10506,20 @@ declare class GetIntegrationCassaInCloudList extends AbstractApiRequest<typeof g
|
|
|
10376
10506
|
SKIP_ITEM: "SKIP_ITEM";
|
|
10377
10507
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
10378
10508
|
}>>;
|
|
10509
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
10510
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
10511
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
10512
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
10513
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
10514
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
10515
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
10516
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
10517
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
10518
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
10379
10519
|
}, z.core.$strip>;
|
|
10380
10520
|
syncTimes: z.ZodObject<{
|
|
10381
10521
|
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
10522
|
+
latestWebHookSyncAt: z.ZodNullable<z.ZodString>;
|
|
10382
10523
|
}, z.core.$strip>;
|
|
10383
10524
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
10384
10525
|
RISTO: "RISTO";
|
|
@@ -10399,13 +10540,6 @@ declare class GetIntegrationCassaInCloudList extends AbstractApiRequest<typeof g
|
|
|
10399
10540
|
}, z.core.$strip>;
|
|
10400
10541
|
}, z.core.$strip>;
|
|
10401
10542
|
readonly querySchema: z.ZodObject<{
|
|
10402
|
-
direction: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
10403
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
10404
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
10405
|
-
}>, z.ZodArray<z.ZodEnum<{
|
|
10406
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
10407
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
10408
|
-
}>>]>>;
|
|
10409
10543
|
apiKey: z.ZodOptional<z.ZodUnion<readonly [z.ZodOptional<z.ZodString>, z.ZodArray<z.ZodString>]>>;
|
|
10410
10544
|
idSalesPoint: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
10411
10545
|
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
@@ -10470,10 +10604,6 @@ declare class GetIntegrationCassaInCloudList extends AbstractApiRequest<typeof g
|
|
|
10470
10604
|
cassa_in_cloud: "cassa_in_cloud";
|
|
10471
10605
|
}>;
|
|
10472
10606
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
10473
|
-
direction: z.ZodEnum<{
|
|
10474
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
10475
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
10476
|
-
}>;
|
|
10477
10607
|
locale: z.ZodString;
|
|
10478
10608
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
10479
10609
|
syncSettings: z.ZodObject<{
|
|
@@ -10485,9 +10615,20 @@ declare class GetIntegrationCassaInCloudList extends AbstractApiRequest<typeof g
|
|
|
10485
10615
|
SKIP_ITEM: "SKIP_ITEM";
|
|
10486
10616
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
10487
10617
|
}>>;
|
|
10618
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
10619
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
10620
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
10621
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
10622
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
10623
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
10624
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
10625
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
10626
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
10627
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
10488
10628
|
}, z.core.$strip>;
|
|
10489
10629
|
syncTimes: z.ZodObject<{
|
|
10490
10630
|
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
10631
|
+
latestWebHookSyncAt: z.ZodNullable<z.ZodString>;
|
|
10491
10632
|
}, z.core.$strip>;
|
|
10492
10633
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
10493
10634
|
RISTO: "RISTO";
|
|
@@ -10965,11 +11106,22 @@ declare class IntegrationCassaInCloudSyncTimetables extends AbstractApiRequest<t
|
|
|
10965
11106
|
getPath(): string;
|
|
10966
11107
|
}
|
|
10967
11108
|
|
|
11109
|
+
declare const integrationCassaInCloudSyncWebHooksInputSchema: z.ZodUndefined;
|
|
11110
|
+
declare const integrationCassaInCloudSyncWebHooksResponseSchema: z.ZodNull;
|
|
11111
|
+
declare class IntegrationCassaInCloudSyncWebHooks extends AbstractApiRequest<typeof integrationCassaInCloudSyncWebHooksInputSchema, typeof integrationCassaInCloudSyncWebHooksResponseSchema> {
|
|
11112
|
+
readonly method = "POST";
|
|
11113
|
+
readonly contentType = "application/json";
|
|
11114
|
+
readonly accept = "application/json";
|
|
11115
|
+
readonly inputSchema: z.ZodUndefined;
|
|
11116
|
+
readonly outputSchema: z.ZodNull;
|
|
11117
|
+
readonly querySchema: undefined;
|
|
11118
|
+
readonly headersSchema: undefined;
|
|
11119
|
+
private readonly integrationCassaInCloudId;
|
|
11120
|
+
constructor(integrationCassaInCloudId: string);
|
|
11121
|
+
getPath(): string;
|
|
11122
|
+
}
|
|
11123
|
+
|
|
10968
11124
|
declare const updateIntegrationCassaInCloudInputSchema: z.ZodObject<{
|
|
10969
|
-
direction: z.ZodOptional<z.ZodEnum<{
|
|
10970
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
10971
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
10972
|
-
}>>;
|
|
10973
11125
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
10974
11126
|
idSalesPoint: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
10975
11127
|
locale: z.ZodOptional<z.ZodString>;
|
|
@@ -10986,6 +11138,16 @@ declare const updateIntegrationCassaInCloudInputSchema: z.ZodObject<{
|
|
|
10986
11138
|
SKIP_ITEM: "SKIP_ITEM";
|
|
10987
11139
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
10988
11140
|
}>>;
|
|
11141
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
11142
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
11143
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
11144
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
11145
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
11146
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
11147
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
11148
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
11149
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
11150
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
10989
11151
|
}, z.core.$strip>>;
|
|
10990
11152
|
productChannels: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
10991
11153
|
RISTO: "RISTO";
|
|
@@ -11019,10 +11181,6 @@ declare const updateIntegrationCassaInCloudResponseSchema: z.ZodObject<{
|
|
|
11019
11181
|
cassa_in_cloud: "cassa_in_cloud";
|
|
11020
11182
|
}>;
|
|
11021
11183
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
11022
|
-
direction: z.ZodEnum<{
|
|
11023
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
11024
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
11025
|
-
}>;
|
|
11026
11184
|
locale: z.ZodString;
|
|
11027
11185
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
11028
11186
|
syncSettings: z.ZodObject<{
|
|
@@ -11034,9 +11192,20 @@ declare const updateIntegrationCassaInCloudResponseSchema: z.ZodObject<{
|
|
|
11034
11192
|
SKIP_ITEM: "SKIP_ITEM";
|
|
11035
11193
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
11036
11194
|
}>>;
|
|
11195
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
11196
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
11197
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
11198
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
11199
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
11200
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
11201
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
11202
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
11203
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
11204
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
11037
11205
|
}, z.core.$strip>;
|
|
11038
11206
|
syncTimes: z.ZodObject<{
|
|
11039
11207
|
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
11208
|
+
latestWebHookSyncAt: z.ZodNullable<z.ZodString>;
|
|
11040
11209
|
}, z.core.$strip>;
|
|
11041
11210
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
11042
11211
|
RISTO: "RISTO";
|
|
@@ -11054,10 +11223,6 @@ declare class UpdateIntegrationCassaInCloud extends AbstractApiRequest<typeof up
|
|
|
11054
11223
|
readonly contentType = "application/merge-patch+json";
|
|
11055
11224
|
readonly accept = "application/json";
|
|
11056
11225
|
readonly inputSchema: z.ZodObject<{
|
|
11057
|
-
direction: z.ZodOptional<z.ZodEnum<{
|
|
11058
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
11059
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
11060
|
-
}>>;
|
|
11061
11226
|
apiKey: z.ZodOptional<z.ZodString>;
|
|
11062
11227
|
idSalesPoint: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
11063
11228
|
locale: z.ZodOptional<z.ZodString>;
|
|
@@ -11074,6 +11239,16 @@ declare class UpdateIntegrationCassaInCloud extends AbstractApiRequest<typeof up
|
|
|
11074
11239
|
SKIP_ITEM: "SKIP_ITEM";
|
|
11075
11240
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
11076
11241
|
}>>;
|
|
11242
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
11243
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
11244
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
11245
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
11246
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
11247
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
11248
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
11249
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
11250
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
11251
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
11077
11252
|
}, z.core.$strip>>;
|
|
11078
11253
|
productChannels: z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
11079
11254
|
RISTO: "RISTO";
|
|
@@ -11106,10 +11281,6 @@ declare class UpdateIntegrationCassaInCloud extends AbstractApiRequest<typeof up
|
|
|
11106
11281
|
cassa_in_cloud: "cassa_in_cloud";
|
|
11107
11282
|
}>;
|
|
11108
11283
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
11109
|
-
direction: z.ZodEnum<{
|
|
11110
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
11111
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
11112
|
-
}>;
|
|
11113
11284
|
locale: z.ZodString;
|
|
11114
11285
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
11115
11286
|
syncSettings: z.ZodObject<{
|
|
@@ -11121,9 +11292,20 @@ declare class UpdateIntegrationCassaInCloud extends AbstractApiRequest<typeof up
|
|
|
11121
11292
|
SKIP_ITEM: "SKIP_ITEM";
|
|
11122
11293
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
11123
11294
|
}>>;
|
|
11295
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
11296
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
11297
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
11298
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
11299
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
11300
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
11301
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
11302
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
11303
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
11304
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
11124
11305
|
}, z.core.$strip>;
|
|
11125
11306
|
syncTimes: z.ZodObject<{
|
|
11126
11307
|
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
11308
|
+
latestWebHookSyncAt: z.ZodNullable<z.ZodString>;
|
|
11127
11309
|
}, z.core.$strip>;
|
|
11128
11310
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
11129
11311
|
RISTO: "RISTO";
|
|
@@ -15964,10 +16146,6 @@ declare const updateIntegrationResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObj
|
|
|
15964
16146
|
cassa_in_cloud: "cassa_in_cloud";
|
|
15965
16147
|
}>;
|
|
15966
16148
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
15967
|
-
direction: z.ZodEnum<{
|
|
15968
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
15969
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
15970
|
-
}>;
|
|
15971
16149
|
locale: z.ZodString;
|
|
15972
16150
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
15973
16151
|
syncSettings: z.ZodObject<{
|
|
@@ -15979,9 +16157,20 @@ declare const updateIntegrationResponseSchema: z.ZodDiscriminatedUnion<[z.ZodObj
|
|
|
15979
16157
|
SKIP_ITEM: "SKIP_ITEM";
|
|
15980
16158
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
15981
16159
|
}>>;
|
|
16160
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
16161
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
16162
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
16163
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
16164
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
16165
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
16166
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
16167
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
16168
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
16169
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
15982
16170
|
}, z.core.$strip>;
|
|
15983
16171
|
syncTimes: z.ZodObject<{
|
|
15984
16172
|
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
16173
|
+
latestWebHookSyncAt: z.ZodNullable<z.ZodString>;
|
|
15985
16174
|
}, z.core.$strip>;
|
|
15986
16175
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
15987
16176
|
RISTO: "RISTO";
|
|
@@ -16177,10 +16366,6 @@ declare class UpdateIntegration extends AbstractApiRequest<typeof updateIntegrat
|
|
|
16177
16366
|
cassa_in_cloud: "cassa_in_cloud";
|
|
16178
16367
|
}>;
|
|
16179
16368
|
idSalesPoint: z.ZodCoercedNumber<unknown>;
|
|
16180
|
-
direction: z.ZodEnum<{
|
|
16181
|
-
EXTERNAL_TO_INTERNAL: "EXTERNAL_TO_INTERNAL";
|
|
16182
|
-
INTERNAL_TO_EXTERNAL: "INTERNAL_TO_EXTERNAL";
|
|
16183
|
-
}>;
|
|
16184
16369
|
locale: z.ZodString;
|
|
16185
16370
|
defaultCustomerId: z.ZodNullable<z.ZodString>;
|
|
16186
16371
|
syncSettings: z.ZodObject<{
|
|
@@ -16192,9 +16377,20 @@ declare class UpdateIntegration extends AbstractApiRequest<typeof updateIntegrat
|
|
|
16192
16377
|
SKIP_ITEM: "SKIP_ITEM";
|
|
16193
16378
|
CANCEL_PRODUCT: "CANCEL_PRODUCT";
|
|
16194
16379
|
}>>;
|
|
16380
|
+
syncExternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
16381
|
+
syncInternalMenu: z.ZodDefault<z.ZodBoolean>;
|
|
16382
|
+
syncExternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
16383
|
+
syncInternalCustomers: z.ZodDefault<z.ZodBoolean>;
|
|
16384
|
+
syncExternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
16385
|
+
syncInternalSalesModes: z.ZodDefault<z.ZodBoolean>;
|
|
16386
|
+
syncExternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
16387
|
+
syncInternalTimetables: z.ZodDefault<z.ZodBoolean>;
|
|
16388
|
+
syncExternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
16389
|
+
syncInternalOrders: z.ZodDefault<z.ZodBoolean>;
|
|
16195
16390
|
}, z.core.$strip>;
|
|
16196
16391
|
syncTimes: z.ZodObject<{
|
|
16197
16392
|
latestMenuSyncAt: z.ZodNullable<z.ZodString>;
|
|
16393
|
+
latestWebHookSyncAt: z.ZodNullable<z.ZodString>;
|
|
16198
16394
|
}, z.core.$strip>;
|
|
16199
16395
|
productChannels: z.ZodArray<z.ZodEnum<{
|
|
16200
16396
|
RISTO: "RISTO";
|
|
@@ -16414,4 +16610,4 @@ type IntegrationCassaInCloudSyncMenuErrorLogIri = z.infer<typeof integrationCass
|
|
|
16414
16610
|
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>>;
|
|
16415
16611
|
type IntegrationCassaInCloudSyncMenuErrorLogNullableIri = z.infer<typeof integrationCassaInCloudSyncMenuErrorLogNullableIriSchema>;
|
|
16416
16612
|
|
|
16417
|
-
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 };
|
|
16613
|
+
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, IntegrationCassaInCloudSyncWebHooks, 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, integrationCassaInCloudSyncWebHooksInputSchema, integrationCassaInCloudSyncWebHooksResponseSchema, 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 };
|