@deliverart/sdk-js-order 1.2.2 → 2.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +52 -32
- package/dist/index.d.cts +746 -162
- package/dist/index.d.ts +746 -162
- package/dist/index.js +51 -32
- package/package.json +9 -9
package/dist/index.d.cts
CHANGED
|
@@ -2,7 +2,6 @@ import * as _deliverart_sdk_js_global_types from '@deliverart/sdk-js-global-type
|
|
|
2
2
|
import { Paginated } from '@deliverart/sdk-js-global-types';
|
|
3
3
|
import { z } from 'zod';
|
|
4
4
|
import { AbstractApiRequest } from '@deliverart/sdk-js-core';
|
|
5
|
-
import { AxiosResponse } from 'axios';
|
|
6
5
|
|
|
7
6
|
declare const orderFeeDtoSchema: z.ZodObject<{
|
|
8
7
|
key: z.ZodString;
|
|
@@ -800,32 +799,29 @@ declare const writableBundleSchema: z.ZodObject<{
|
|
|
800
799
|
declare const bundlesQuerySchema: z.ZodObject<{
|
|
801
800
|
deliverable: z.ZodOptional<z.ZodCoercedBoolean<unknown>>;
|
|
802
801
|
ready: z.ZodOptional<z.ZodCoercedBoolean<unknown>>;
|
|
803
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
802
|
+
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
804
803
|
pending: "pending";
|
|
805
804
|
busy: "busy";
|
|
806
805
|
broken: "broken";
|
|
807
806
|
released: "released";
|
|
808
|
-
}
|
|
809
|
-
'status[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
807
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
810
808
|
pending: "pending";
|
|
811
809
|
busy: "busy";
|
|
812
810
|
broken: "broken";
|
|
813
811
|
released: "released";
|
|
814
|
-
}
|
|
815
|
-
type: z.ZodOptional<z.ZodEnum<{
|
|
812
|
+
}>>]>>;
|
|
813
|
+
type: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
816
814
|
REGULAR: "REGULAR";
|
|
817
815
|
FORCED: "FORCED";
|
|
818
|
-
}
|
|
819
|
-
'type[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
816
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
820
817
|
REGULAR: "REGULAR";
|
|
821
818
|
FORCED: "FORCED";
|
|
822
|
-
}
|
|
823
|
-
brokenReason: z.ZodOptional<z.ZodEnum<{
|
|
819
|
+
}>>]>>;
|
|
820
|
+
brokenReason: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
824
821
|
delivery_removed: "delivery_removed";
|
|
825
|
-
}
|
|
826
|
-
'brokenReason[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
822
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
827
823
|
delivery_removed: "delivery_removed";
|
|
828
|
-
}
|
|
824
|
+
}>>]>>;
|
|
829
825
|
'totalCountableItems[between]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
830
826
|
'totalCountableItems[gt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
831
827
|
'totalCountableItems[gte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
@@ -879,80 +875,72 @@ declare const bundlesQuerySchema: z.ZodObject<{
|
|
|
879
875
|
}, z.core.$strip>;
|
|
880
876
|
type BundlesQueryParams = z.infer<typeof bundlesQuerySchema>;
|
|
881
877
|
declare const ordersQuerySchema: z.ZodObject<{
|
|
882
|
-
type: z.ZodOptional<z.ZodEnum<{
|
|
878
|
+
type: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
883
879
|
delivery: "delivery";
|
|
884
880
|
take_away: "take_away";
|
|
885
881
|
kitchen: "kitchen";
|
|
886
|
-
}
|
|
887
|
-
'type[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
882
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
888
883
|
delivery: "delivery";
|
|
889
884
|
take_away: "take_away";
|
|
890
885
|
kitchen: "kitchen";
|
|
891
|
-
}
|
|
892
|
-
source: z.ZodOptional<z.ZodEnum<{
|
|
886
|
+
}>>]>>;
|
|
887
|
+
source: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
893
888
|
application: "application";
|
|
894
889
|
ecommerce: "ecommerce";
|
|
895
890
|
partner: "partner";
|
|
896
|
-
}
|
|
897
|
-
'source[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
891
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
898
892
|
application: "application";
|
|
899
893
|
ecommerce: "ecommerce";
|
|
900
894
|
partner: "partner";
|
|
901
|
-
}
|
|
902
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
895
|
+
}>>]>>;
|
|
896
|
+
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
903
897
|
pending: "pending";
|
|
904
898
|
confirmed: "confirmed";
|
|
905
899
|
rejected: "rejected";
|
|
906
|
-
}
|
|
907
|
-
'status[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
900
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
908
901
|
pending: "pending";
|
|
909
902
|
confirmed: "confirmed";
|
|
910
903
|
rejected: "rejected";
|
|
911
|
-
}
|
|
912
|
-
preparationStatus: z.ZodOptional<z.ZodEnum<{
|
|
904
|
+
}>>]>>;
|
|
905
|
+
preparationStatus: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
913
906
|
to_prepare: "to_prepare";
|
|
914
907
|
in_preparation: "in_preparation";
|
|
915
908
|
done: "done";
|
|
916
|
-
}
|
|
917
|
-
'preparationStatus[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
909
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
918
910
|
to_prepare: "to_prepare";
|
|
919
911
|
in_preparation: "in_preparation";
|
|
920
912
|
done: "done";
|
|
921
|
-
}
|
|
922
|
-
paymentMethod: z.ZodOptional<z.ZodEnum<{
|
|
913
|
+
}>>]>>;
|
|
914
|
+
paymentMethod: z.ZodOptional<z.ZodUnion<readonly [z.ZodOptional<z.ZodEnum<{
|
|
923
915
|
stripe: "stripe";
|
|
924
916
|
bank_transfer: "bank_transfer";
|
|
925
917
|
cash: "cash";
|
|
926
918
|
credit_card: "credit_card";
|
|
927
|
-
}
|
|
928
|
-
'paymentMethod[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
919
|
+
}>>, z.ZodArray<z.ZodEnum<{
|
|
929
920
|
stripe: "stripe";
|
|
930
921
|
bank_transfer: "bank_transfer";
|
|
931
922
|
cash: "cash";
|
|
932
923
|
credit_card: "credit_card";
|
|
933
|
-
}
|
|
934
|
-
paymentStatus: z.ZodOptional<z.ZodEnum<{
|
|
924
|
+
}>>]>>;
|
|
925
|
+
paymentStatus: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
935
926
|
pending: "pending";
|
|
936
927
|
pending_verification: "pending_verification";
|
|
937
928
|
paid: "paid";
|
|
938
929
|
canceled: "canceled";
|
|
939
930
|
refunded: "refunded";
|
|
940
931
|
failed: "failed";
|
|
941
|
-
}
|
|
942
|
-
'paymentStatus[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
932
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
943
933
|
pending: "pending";
|
|
944
934
|
pending_verification: "pending_verification";
|
|
945
935
|
paid: "paid";
|
|
946
936
|
canceled: "canceled";
|
|
947
937
|
refunded: "refunded";
|
|
948
938
|
failed: "failed";
|
|
949
|
-
}
|
|
939
|
+
}>>]>>;
|
|
950
940
|
'customerInfo.firstName': z.ZodOptional<z.ZodString>;
|
|
951
941
|
'customerInfo.lastName': z.ZodOptional<z.ZodString>;
|
|
952
|
-
'customerInfo.email': z.ZodOptional<z.ZodString
|
|
953
|
-
'customerInfo.
|
|
954
|
-
'customerInfo.phoneNumber': z.ZodOptional<z.ZodString>;
|
|
955
|
-
'customerInfo.phoneNumber[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
942
|
+
'customerInfo.email': z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
943
|
+
'customerInfo.phoneNumber': z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
956
944
|
'totalCountableItems[between]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
957
945
|
'totalCountableItems[gt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
958
946
|
'totalCountableItems[gte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
@@ -1085,30 +1073,26 @@ declare const ordersQuerySchema: z.ZodObject<{
|
|
|
1085
1073
|
}, z.core.$strip>;
|
|
1086
1074
|
type OrdersQueryParams = z.infer<typeof ordersQuerySchema>;
|
|
1087
1075
|
declare const orderMenuItemsQuerySchema: z.ZodObject<{
|
|
1088
|
-
type: z.ZodOptional<z.ZodEnum<{
|
|
1076
|
+
type: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
1089
1077
|
delivery: "delivery";
|
|
1090
1078
|
take_away: "take_away";
|
|
1091
1079
|
kitchen: "kitchen";
|
|
1092
|
-
}
|
|
1093
|
-
'type[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1080
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
1094
1081
|
delivery: "delivery";
|
|
1095
1082
|
take_away: "take_away";
|
|
1096
1083
|
kitchen: "kitchen";
|
|
1097
|
-
}
|
|
1098
|
-
action: z.ZodOptional<z.ZodEnum<{
|
|
1084
|
+
}>>]>>;
|
|
1085
|
+
action: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
1099
1086
|
add: "add";
|
|
1100
1087
|
remove: "remove";
|
|
1101
|
-
}
|
|
1102
|
-
'action[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1088
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
1103
1089
|
add: "add";
|
|
1104
1090
|
remove: "remove";
|
|
1105
|
-
}
|
|
1091
|
+
}>>]>>;
|
|
1106
1092
|
'customerInfo.firstName': z.ZodOptional<z.ZodString>;
|
|
1107
1093
|
'customerInfo.lastName': z.ZodOptional<z.ZodString>;
|
|
1108
|
-
'customerInfo.email': z.ZodOptional<z.ZodString
|
|
1109
|
-
'customerInfo.
|
|
1110
|
-
'customerInfo.phoneNumber': z.ZodOptional<z.ZodString>;
|
|
1111
|
-
'customerInfo.phoneNumber[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
1094
|
+
'customerInfo.email': z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
1095
|
+
'customerInfo.phoneNumber': z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
1112
1096
|
'quantity[between]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
1113
1097
|
'quantity[gt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
1114
1098
|
'quantity[gte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
@@ -1901,32 +1885,29 @@ declare class GetBundleDetails extends AbstractApiRequest<typeof getBundleDetail
|
|
|
1901
1885
|
declare const getBundlesQuerySchema: z.ZodObject<{
|
|
1902
1886
|
deliverable: z.ZodOptional<z.ZodCoercedBoolean<unknown>>;
|
|
1903
1887
|
ready: z.ZodOptional<z.ZodCoercedBoolean<unknown>>;
|
|
1904
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
1888
|
+
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
1905
1889
|
pending: "pending";
|
|
1906
1890
|
busy: "busy";
|
|
1907
1891
|
broken: "broken";
|
|
1908
1892
|
released: "released";
|
|
1909
|
-
}
|
|
1910
|
-
'status[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1893
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
1911
1894
|
pending: "pending";
|
|
1912
1895
|
busy: "busy";
|
|
1913
1896
|
broken: "broken";
|
|
1914
1897
|
released: "released";
|
|
1915
|
-
}
|
|
1916
|
-
type: z.ZodOptional<z.ZodEnum<{
|
|
1898
|
+
}>>]>>;
|
|
1899
|
+
type: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
1917
1900
|
REGULAR: "REGULAR";
|
|
1918
1901
|
FORCED: "FORCED";
|
|
1919
|
-
}
|
|
1920
|
-
'type[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1902
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
1921
1903
|
REGULAR: "REGULAR";
|
|
1922
1904
|
FORCED: "FORCED";
|
|
1923
|
-
}
|
|
1924
|
-
brokenReason: z.ZodOptional<z.ZodEnum<{
|
|
1905
|
+
}>>]>>;
|
|
1906
|
+
brokenReason: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
1925
1907
|
delivery_removed: "delivery_removed";
|
|
1926
|
-
}
|
|
1927
|
-
'brokenReason[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
1908
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
1928
1909
|
delivery_removed: "delivery_removed";
|
|
1929
|
-
}
|
|
1910
|
+
}>>]>>;
|
|
1930
1911
|
'totalCountableItems[between]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
1931
1912
|
'totalCountableItems[gt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
1932
1913
|
'totalCountableItems[gte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
@@ -2256,32 +2237,29 @@ declare class GetBundles extends AbstractApiRequest<typeof getBundlesInputSchema
|
|
|
2256
2237
|
readonly querySchema: z.ZodObject<{
|
|
2257
2238
|
deliverable: z.ZodOptional<z.ZodCoercedBoolean<unknown>>;
|
|
2258
2239
|
ready: z.ZodOptional<z.ZodCoercedBoolean<unknown>>;
|
|
2259
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
2240
|
+
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
2260
2241
|
pending: "pending";
|
|
2261
2242
|
busy: "busy";
|
|
2262
2243
|
broken: "broken";
|
|
2263
2244
|
released: "released";
|
|
2264
|
-
}
|
|
2265
|
-
'status[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2245
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
2266
2246
|
pending: "pending";
|
|
2267
2247
|
busy: "busy";
|
|
2268
2248
|
broken: "broken";
|
|
2269
2249
|
released: "released";
|
|
2270
|
-
}
|
|
2271
|
-
type: z.ZodOptional<z.ZodEnum<{
|
|
2250
|
+
}>>]>>;
|
|
2251
|
+
type: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
2272
2252
|
REGULAR: "REGULAR";
|
|
2273
2253
|
FORCED: "FORCED";
|
|
2274
|
-
}
|
|
2275
|
-
'type[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2254
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
2276
2255
|
REGULAR: "REGULAR";
|
|
2277
2256
|
FORCED: "FORCED";
|
|
2278
|
-
}
|
|
2279
|
-
brokenReason: z.ZodOptional<z.ZodEnum<{
|
|
2257
|
+
}>>]>>;
|
|
2258
|
+
brokenReason: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
2280
2259
|
delivery_removed: "delivery_removed";
|
|
2281
|
-
}
|
|
2282
|
-
'brokenReason[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2260
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
2283
2261
|
delivery_removed: "delivery_removed";
|
|
2284
|
-
}
|
|
2262
|
+
}>>]>>;
|
|
2285
2263
|
'totalCountableItems[between]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
2286
2264
|
'totalCountableItems[gt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
2287
2265
|
'totalCountableItems[gte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
@@ -2338,7 +2316,7 @@ declare class GetBundles extends AbstractApiRequest<typeof getBundlesInputSchema
|
|
|
2338
2316
|
query?: BundlesQueryParams;
|
|
2339
2317
|
});
|
|
2340
2318
|
getPath(): string;
|
|
2341
|
-
parseResponse(data: unknown, rawResponse:
|
|
2319
|
+
parseResponse(data: unknown, rawResponse: Response): Paginated<Bundle>;
|
|
2342
2320
|
}
|
|
2343
2321
|
|
|
2344
2322
|
declare const updateBundleInputSchema: z.ZodObject<{
|
|
@@ -2849,7 +2827,7 @@ declare class GetOrderMenuItemModifierMenuItemModifiers extends AbstractApiReque
|
|
|
2849
2827
|
query?: OrderMenuItemModifiersQueryParams;
|
|
2850
2828
|
});
|
|
2851
2829
|
getPath(): string;
|
|
2852
|
-
parseResponse(data: unknown, rawResponse:
|
|
2830
|
+
parseResponse(data: unknown, rawResponse: Response): Paginated<OrderMenuItemModifier>;
|
|
2853
2831
|
}
|
|
2854
2832
|
|
|
2855
2833
|
declare const getOrderMenuItemDetailsInputSchema: z.ZodUndefined;
|
|
@@ -2964,30 +2942,26 @@ declare class GetOrderMenuItemDetails extends AbstractApiRequest<typeof getOrder
|
|
|
2964
2942
|
}
|
|
2965
2943
|
|
|
2966
2944
|
declare const getOrderMenuItemsQuerySchema: z.ZodObject<{
|
|
2967
|
-
type: z.ZodOptional<z.ZodEnum<{
|
|
2945
|
+
type: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
2968
2946
|
delivery: "delivery";
|
|
2969
2947
|
take_away: "take_away";
|
|
2970
2948
|
kitchen: "kitchen";
|
|
2971
|
-
}
|
|
2972
|
-
'type[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2949
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
2973
2950
|
delivery: "delivery";
|
|
2974
2951
|
take_away: "take_away";
|
|
2975
2952
|
kitchen: "kitchen";
|
|
2976
|
-
}
|
|
2977
|
-
action: z.ZodOptional<z.ZodEnum<{
|
|
2953
|
+
}>>]>>;
|
|
2954
|
+
action: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
2978
2955
|
add: "add";
|
|
2979
2956
|
remove: "remove";
|
|
2980
|
-
}
|
|
2981
|
-
'action[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
2957
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
2982
2958
|
add: "add";
|
|
2983
2959
|
remove: "remove";
|
|
2984
|
-
}
|
|
2960
|
+
}>>]>>;
|
|
2985
2961
|
'customerInfo.firstName': z.ZodOptional<z.ZodString>;
|
|
2986
2962
|
'customerInfo.lastName': z.ZodOptional<z.ZodString>;
|
|
2987
|
-
'customerInfo.email': z.ZodOptional<z.ZodString
|
|
2988
|
-
'customerInfo.
|
|
2989
|
-
'customerInfo.phoneNumber': z.ZodOptional<z.ZodString>;
|
|
2990
|
-
'customerInfo.phoneNumber[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
2963
|
+
'customerInfo.email': z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
2964
|
+
'customerInfo.phoneNumber': z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
2991
2965
|
'quantity[between]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
2992
2966
|
'quantity[gt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
2993
2967
|
'quantity[gte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
@@ -3156,30 +3130,26 @@ declare class GetOrderMenuItemMenuItems extends AbstractApiRequest<typeof getOrd
|
|
|
3156
3130
|
}, z.core.$strip>;
|
|
3157
3131
|
}, z.core.$strip>;
|
|
3158
3132
|
readonly querySchema: z.ZodObject<{
|
|
3159
|
-
type: z.ZodOptional<z.ZodEnum<{
|
|
3133
|
+
type: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
3160
3134
|
delivery: "delivery";
|
|
3161
3135
|
take_away: "take_away";
|
|
3162
3136
|
kitchen: "kitchen";
|
|
3163
|
-
}
|
|
3164
|
-
'type[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3137
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
3165
3138
|
delivery: "delivery";
|
|
3166
3139
|
take_away: "take_away";
|
|
3167
3140
|
kitchen: "kitchen";
|
|
3168
|
-
}
|
|
3169
|
-
action: z.ZodOptional<z.ZodEnum<{
|
|
3141
|
+
}>>]>>;
|
|
3142
|
+
action: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
3170
3143
|
add: "add";
|
|
3171
3144
|
remove: "remove";
|
|
3172
|
-
}
|
|
3173
|
-
'action[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
3145
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
3174
3146
|
add: "add";
|
|
3175
3147
|
remove: "remove";
|
|
3176
|
-
}
|
|
3148
|
+
}>>]>>;
|
|
3177
3149
|
'customerInfo.firstName': z.ZodOptional<z.ZodString>;
|
|
3178
3150
|
'customerInfo.lastName': z.ZodOptional<z.ZodString>;
|
|
3179
|
-
'customerInfo.email': z.ZodOptional<z.ZodString
|
|
3180
|
-
'customerInfo.
|
|
3181
|
-
'customerInfo.phoneNumber': z.ZodOptional<z.ZodString>;
|
|
3182
|
-
'customerInfo.phoneNumber[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
3151
|
+
'customerInfo.email': z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
3152
|
+
'customerInfo.phoneNumber': z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
3183
3153
|
'quantity[between]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
3184
3154
|
'quantity[gt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
3185
3155
|
'quantity[gte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
@@ -3239,7 +3209,7 @@ declare class GetOrderMenuItemMenuItems extends AbstractApiRequest<typeof getOrd
|
|
|
3239
3209
|
query?: OrderMenuItemsQueryParams;
|
|
3240
3210
|
});
|
|
3241
3211
|
getPath(): string;
|
|
3242
|
-
parseResponse(data: unknown, rawResponse:
|
|
3212
|
+
parseResponse(data: unknown, rawResponse: Response): Paginated<OrderMenuItem>;
|
|
3243
3213
|
}
|
|
3244
3214
|
|
|
3245
3215
|
declare const advanceOrderPreparationStatusInputSchema: z.ZodUndefined;
|
|
@@ -4789,80 +4759,72 @@ declare class GetOrderDetails extends AbstractApiRequest<typeof getOrderDetailsI
|
|
|
4789
4759
|
}
|
|
4790
4760
|
|
|
4791
4761
|
declare const getOrdersQuerySchema: z.ZodObject<{
|
|
4792
|
-
type: z.ZodOptional<z.ZodEnum<{
|
|
4762
|
+
type: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
4793
4763
|
delivery: "delivery";
|
|
4794
4764
|
take_away: "take_away";
|
|
4795
4765
|
kitchen: "kitchen";
|
|
4796
|
-
}
|
|
4797
|
-
'type[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
4766
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
4798
4767
|
delivery: "delivery";
|
|
4799
4768
|
take_away: "take_away";
|
|
4800
4769
|
kitchen: "kitchen";
|
|
4801
|
-
}
|
|
4802
|
-
source: z.ZodOptional<z.ZodEnum<{
|
|
4770
|
+
}>>]>>;
|
|
4771
|
+
source: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
4803
4772
|
application: "application";
|
|
4804
4773
|
ecommerce: "ecommerce";
|
|
4805
4774
|
partner: "partner";
|
|
4806
|
-
}
|
|
4807
|
-
'source[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
4775
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
4808
4776
|
application: "application";
|
|
4809
4777
|
ecommerce: "ecommerce";
|
|
4810
4778
|
partner: "partner";
|
|
4811
|
-
}
|
|
4812
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
4779
|
+
}>>]>>;
|
|
4780
|
+
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
4813
4781
|
pending: "pending";
|
|
4814
4782
|
confirmed: "confirmed";
|
|
4815
4783
|
rejected: "rejected";
|
|
4816
|
-
}
|
|
4817
|
-
'status[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
4784
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
4818
4785
|
pending: "pending";
|
|
4819
4786
|
confirmed: "confirmed";
|
|
4820
4787
|
rejected: "rejected";
|
|
4821
|
-
}
|
|
4822
|
-
preparationStatus: z.ZodOptional<z.ZodEnum<{
|
|
4788
|
+
}>>]>>;
|
|
4789
|
+
preparationStatus: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
4823
4790
|
to_prepare: "to_prepare";
|
|
4824
4791
|
in_preparation: "in_preparation";
|
|
4825
4792
|
done: "done";
|
|
4826
|
-
}
|
|
4827
|
-
'preparationStatus[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
4793
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
4828
4794
|
to_prepare: "to_prepare";
|
|
4829
4795
|
in_preparation: "in_preparation";
|
|
4830
4796
|
done: "done";
|
|
4831
|
-
}
|
|
4832
|
-
paymentMethod: z.ZodOptional<z.ZodEnum<{
|
|
4797
|
+
}>>]>>;
|
|
4798
|
+
paymentMethod: z.ZodOptional<z.ZodUnion<readonly [z.ZodOptional<z.ZodEnum<{
|
|
4833
4799
|
stripe: "stripe";
|
|
4834
4800
|
bank_transfer: "bank_transfer";
|
|
4835
4801
|
cash: "cash";
|
|
4836
4802
|
credit_card: "credit_card";
|
|
4837
|
-
}
|
|
4838
|
-
'paymentMethod[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
4803
|
+
}>>, z.ZodArray<z.ZodEnum<{
|
|
4839
4804
|
stripe: "stripe";
|
|
4840
4805
|
bank_transfer: "bank_transfer";
|
|
4841
4806
|
cash: "cash";
|
|
4842
4807
|
credit_card: "credit_card";
|
|
4843
|
-
}
|
|
4844
|
-
paymentStatus: z.ZodOptional<z.ZodEnum<{
|
|
4808
|
+
}>>]>>;
|
|
4809
|
+
paymentStatus: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
4845
4810
|
pending: "pending";
|
|
4846
4811
|
pending_verification: "pending_verification";
|
|
4847
4812
|
paid: "paid";
|
|
4848
4813
|
canceled: "canceled";
|
|
4849
4814
|
refunded: "refunded";
|
|
4850
4815
|
failed: "failed";
|
|
4851
|
-
}
|
|
4852
|
-
'paymentStatus[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
4816
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
4853
4817
|
pending: "pending";
|
|
4854
4818
|
pending_verification: "pending_verification";
|
|
4855
4819
|
paid: "paid";
|
|
4856
4820
|
canceled: "canceled";
|
|
4857
4821
|
refunded: "refunded";
|
|
4858
4822
|
failed: "failed";
|
|
4859
|
-
}
|
|
4823
|
+
}>>]>>;
|
|
4860
4824
|
'customerInfo.firstName': z.ZodOptional<z.ZodString>;
|
|
4861
4825
|
'customerInfo.lastName': z.ZodOptional<z.ZodString>;
|
|
4862
|
-
'customerInfo.email': z.ZodOptional<z.ZodString
|
|
4863
|
-
'customerInfo.
|
|
4864
|
-
'customerInfo.phoneNumber': z.ZodOptional<z.ZodString>;
|
|
4865
|
-
'customerInfo.phoneNumber[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
4826
|
+
'customerInfo.email': z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
4827
|
+
'customerInfo.phoneNumber': z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
4866
4828
|
'totalCountableItems[between]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
4867
4829
|
'totalCountableItems[gt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
4868
4830
|
'totalCountableItems[gte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
@@ -5221,80 +5183,72 @@ declare class GetOrders extends AbstractApiRequest<typeof getOrdersInputSchema,
|
|
|
5221
5183
|
}, z.core.$strip>;
|
|
5222
5184
|
}, z.core.$strip>;
|
|
5223
5185
|
readonly querySchema: z.ZodObject<{
|
|
5224
|
-
type: z.ZodOptional<z.ZodEnum<{
|
|
5186
|
+
type: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
5225
5187
|
delivery: "delivery";
|
|
5226
5188
|
take_away: "take_away";
|
|
5227
5189
|
kitchen: "kitchen";
|
|
5228
|
-
}
|
|
5229
|
-
'type[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
5190
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
5230
5191
|
delivery: "delivery";
|
|
5231
5192
|
take_away: "take_away";
|
|
5232
5193
|
kitchen: "kitchen";
|
|
5233
|
-
}
|
|
5234
|
-
source: z.ZodOptional<z.ZodEnum<{
|
|
5194
|
+
}>>]>>;
|
|
5195
|
+
source: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
5235
5196
|
application: "application";
|
|
5236
5197
|
ecommerce: "ecommerce";
|
|
5237
5198
|
partner: "partner";
|
|
5238
|
-
}
|
|
5239
|
-
'source[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
5199
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
5240
5200
|
application: "application";
|
|
5241
5201
|
ecommerce: "ecommerce";
|
|
5242
5202
|
partner: "partner";
|
|
5243
|
-
}
|
|
5244
|
-
status: z.ZodOptional<z.ZodEnum<{
|
|
5203
|
+
}>>]>>;
|
|
5204
|
+
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
5245
5205
|
pending: "pending";
|
|
5246
5206
|
confirmed: "confirmed";
|
|
5247
5207
|
rejected: "rejected";
|
|
5248
|
-
}
|
|
5249
|
-
'status[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
5208
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
5250
5209
|
pending: "pending";
|
|
5251
5210
|
confirmed: "confirmed";
|
|
5252
5211
|
rejected: "rejected";
|
|
5253
|
-
}
|
|
5254
|
-
preparationStatus: z.ZodOptional<z.ZodEnum<{
|
|
5212
|
+
}>>]>>;
|
|
5213
|
+
preparationStatus: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
5255
5214
|
to_prepare: "to_prepare";
|
|
5256
5215
|
in_preparation: "in_preparation";
|
|
5257
5216
|
done: "done";
|
|
5258
|
-
}
|
|
5259
|
-
'preparationStatus[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
5217
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
5260
5218
|
to_prepare: "to_prepare";
|
|
5261
5219
|
in_preparation: "in_preparation";
|
|
5262
5220
|
done: "done";
|
|
5263
|
-
}
|
|
5264
|
-
paymentMethod: z.ZodOptional<z.ZodEnum<{
|
|
5221
|
+
}>>]>>;
|
|
5222
|
+
paymentMethod: z.ZodOptional<z.ZodUnion<readonly [z.ZodOptional<z.ZodEnum<{
|
|
5265
5223
|
stripe: "stripe";
|
|
5266
5224
|
bank_transfer: "bank_transfer";
|
|
5267
5225
|
cash: "cash";
|
|
5268
5226
|
credit_card: "credit_card";
|
|
5269
|
-
}
|
|
5270
|
-
'paymentMethod[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
5227
|
+
}>>, z.ZodArray<z.ZodEnum<{
|
|
5271
5228
|
stripe: "stripe";
|
|
5272
5229
|
bank_transfer: "bank_transfer";
|
|
5273
5230
|
cash: "cash";
|
|
5274
5231
|
credit_card: "credit_card";
|
|
5275
|
-
}
|
|
5276
|
-
paymentStatus: z.ZodOptional<z.ZodEnum<{
|
|
5232
|
+
}>>]>>;
|
|
5233
|
+
paymentStatus: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
5277
5234
|
pending: "pending";
|
|
5278
5235
|
pending_verification: "pending_verification";
|
|
5279
5236
|
paid: "paid";
|
|
5280
5237
|
canceled: "canceled";
|
|
5281
5238
|
refunded: "refunded";
|
|
5282
5239
|
failed: "failed";
|
|
5283
|
-
}
|
|
5284
|
-
'paymentStatus[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
|
|
5240
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
5285
5241
|
pending: "pending";
|
|
5286
5242
|
pending_verification: "pending_verification";
|
|
5287
5243
|
paid: "paid";
|
|
5288
5244
|
canceled: "canceled";
|
|
5289
5245
|
refunded: "refunded";
|
|
5290
5246
|
failed: "failed";
|
|
5291
|
-
}
|
|
5247
|
+
}>>]>>;
|
|
5292
5248
|
'customerInfo.firstName': z.ZodOptional<z.ZodString>;
|
|
5293
5249
|
'customerInfo.lastName': z.ZodOptional<z.ZodString>;
|
|
5294
|
-
'customerInfo.email': z.ZodOptional<z.ZodString
|
|
5295
|
-
'customerInfo.
|
|
5296
|
-
'customerInfo.phoneNumber': z.ZodOptional<z.ZodString>;
|
|
5297
|
-
'customerInfo.phoneNumber[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
|
|
5250
|
+
'customerInfo.email': z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
5251
|
+
'customerInfo.phoneNumber': z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
5298
5252
|
'totalCountableItems[between]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5299
5253
|
'totalCountableItems[gt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5300
5254
|
'totalCountableItems[gte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
@@ -5430,7 +5384,637 @@ declare class GetOrders extends AbstractApiRequest<typeof getOrdersInputSchema,
|
|
|
5430
5384
|
query?: OrdersQueryParams;
|
|
5431
5385
|
});
|
|
5432
5386
|
getPath(): string;
|
|
5433
|
-
parseResponse(data: unknown, rawResponse:
|
|
5387
|
+
parseResponse(data: unknown, rawResponse: Response): Paginated<Order>;
|
|
5388
|
+
}
|
|
5389
|
+
|
|
5390
|
+
declare const getPointOfSaleOrdersQuerySchema: z.ZodObject<{
|
|
5391
|
+
type: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
5392
|
+
delivery: "delivery";
|
|
5393
|
+
take_away: "take_away";
|
|
5394
|
+
kitchen: "kitchen";
|
|
5395
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
5396
|
+
delivery: "delivery";
|
|
5397
|
+
take_away: "take_away";
|
|
5398
|
+
kitchen: "kitchen";
|
|
5399
|
+
}>>]>>;
|
|
5400
|
+
source: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
5401
|
+
application: "application";
|
|
5402
|
+
ecommerce: "ecommerce";
|
|
5403
|
+
partner: "partner";
|
|
5404
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
5405
|
+
application: "application";
|
|
5406
|
+
ecommerce: "ecommerce";
|
|
5407
|
+
partner: "partner";
|
|
5408
|
+
}>>]>>;
|
|
5409
|
+
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
5410
|
+
pending: "pending";
|
|
5411
|
+
confirmed: "confirmed";
|
|
5412
|
+
rejected: "rejected";
|
|
5413
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
5414
|
+
pending: "pending";
|
|
5415
|
+
confirmed: "confirmed";
|
|
5416
|
+
rejected: "rejected";
|
|
5417
|
+
}>>]>>;
|
|
5418
|
+
preparationStatus: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
5419
|
+
to_prepare: "to_prepare";
|
|
5420
|
+
in_preparation: "in_preparation";
|
|
5421
|
+
done: "done";
|
|
5422
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
5423
|
+
to_prepare: "to_prepare";
|
|
5424
|
+
in_preparation: "in_preparation";
|
|
5425
|
+
done: "done";
|
|
5426
|
+
}>>]>>;
|
|
5427
|
+
paymentMethod: z.ZodOptional<z.ZodUnion<readonly [z.ZodOptional<z.ZodEnum<{
|
|
5428
|
+
stripe: "stripe";
|
|
5429
|
+
bank_transfer: "bank_transfer";
|
|
5430
|
+
cash: "cash";
|
|
5431
|
+
credit_card: "credit_card";
|
|
5432
|
+
}>>, z.ZodArray<z.ZodEnum<{
|
|
5433
|
+
stripe: "stripe";
|
|
5434
|
+
bank_transfer: "bank_transfer";
|
|
5435
|
+
cash: "cash";
|
|
5436
|
+
credit_card: "credit_card";
|
|
5437
|
+
}>>]>>;
|
|
5438
|
+
paymentStatus: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
5439
|
+
pending: "pending";
|
|
5440
|
+
pending_verification: "pending_verification";
|
|
5441
|
+
paid: "paid";
|
|
5442
|
+
canceled: "canceled";
|
|
5443
|
+
refunded: "refunded";
|
|
5444
|
+
failed: "failed";
|
|
5445
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
5446
|
+
pending: "pending";
|
|
5447
|
+
pending_verification: "pending_verification";
|
|
5448
|
+
paid: "paid";
|
|
5449
|
+
canceled: "canceled";
|
|
5450
|
+
refunded: "refunded";
|
|
5451
|
+
failed: "failed";
|
|
5452
|
+
}>>]>>;
|
|
5453
|
+
'customerInfo.firstName': z.ZodOptional<z.ZodString>;
|
|
5454
|
+
'customerInfo.lastName': z.ZodOptional<z.ZodString>;
|
|
5455
|
+
'customerInfo.email': z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
5456
|
+
'customerInfo.phoneNumber': z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
5457
|
+
'totalCountableItems[between]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5458
|
+
'totalCountableItems[gt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5459
|
+
'totalCountableItems[gte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5460
|
+
'totalCountableItems[lt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5461
|
+
'totalCountableItems[lte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5462
|
+
'amount[between]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5463
|
+
'amount[gt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5464
|
+
'amount[gte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5465
|
+
'amount[lt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5466
|
+
'amount[lte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5467
|
+
'discount[between]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5468
|
+
'discount[gt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5469
|
+
'discount[gte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5470
|
+
'discount[lt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5471
|
+
'discount[lte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5472
|
+
'totalAmount[between]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5473
|
+
'totalAmount[gt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5474
|
+
'totalAmount[gte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5475
|
+
'totalAmount[lt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5476
|
+
'totalAmount[lte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5477
|
+
'preparationTime[before]': z.ZodOptional<z.ZodString>;
|
|
5478
|
+
'preparationTime[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
5479
|
+
'preparationTime[after]': z.ZodOptional<z.ZodString>;
|
|
5480
|
+
'preparationTime[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
5481
|
+
'preparationStartedAt[before]': z.ZodOptional<z.ZodString>;
|
|
5482
|
+
'preparationStartedAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
5483
|
+
'preparationStartedAt[after]': z.ZodOptional<z.ZodString>;
|
|
5484
|
+
'preparationStartedAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
5485
|
+
'preparationEndedAt[before]': z.ZodOptional<z.ZodString>;
|
|
5486
|
+
'preparationEndedAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
5487
|
+
'preparationEndedAt[after]': z.ZodOptional<z.ZodString>;
|
|
5488
|
+
'preparationEndedAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
5489
|
+
'requestedDeliveryTime[before]': z.ZodOptional<z.ZodString>;
|
|
5490
|
+
'requestedDeliveryTime[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
5491
|
+
'requestedDeliveryTime[after]': z.ZodOptional<z.ZodString>;
|
|
5492
|
+
'requestedDeliveryTime[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
5493
|
+
'deliveryStartedAt[before]': z.ZodOptional<z.ZodString>;
|
|
5494
|
+
'deliveryStartedAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
5495
|
+
'deliveryStartedAt[after]': z.ZodOptional<z.ZodString>;
|
|
5496
|
+
'deliveryStartedAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
5497
|
+
'requestedCollectionTime[before]': z.ZodOptional<z.ZodString>;
|
|
5498
|
+
'requestedCollectionTime[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
5499
|
+
'requestedCollectionTime[after]': z.ZodOptional<z.ZodString>;
|
|
5500
|
+
'requestedCollectionTime[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
5501
|
+
'collectedAt[before]': z.ZodOptional<z.ZodString>;
|
|
5502
|
+
'collectedAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
5503
|
+
'collectedAt[after]': z.ZodOptional<z.ZodString>;
|
|
5504
|
+
'collectedAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
5505
|
+
'finalDeliveryTime[before]': z.ZodOptional<z.ZodString>;
|
|
5506
|
+
'finalDeliveryTime[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
5507
|
+
'finalDeliveryTime[after]': z.ZodOptional<z.ZodString>;
|
|
5508
|
+
'finalDeliveryTime[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
5509
|
+
'finalCollectionTime[before]': z.ZodOptional<z.ZodString>;
|
|
5510
|
+
'finalCollectionTime[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
5511
|
+
'finalCollectionTime[after]': z.ZodOptional<z.ZodString>;
|
|
5512
|
+
'finalCollectionTime[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
5513
|
+
'deliveredAt[before]': z.ZodOptional<z.ZodString>;
|
|
5514
|
+
'deliveredAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
5515
|
+
'deliveredAt[after]': z.ZodOptional<z.ZodString>;
|
|
5516
|
+
'deliveredAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
5517
|
+
'order[createdAt]': z.ZodOptional<z.ZodEnum<{
|
|
5518
|
+
asc: "asc";
|
|
5519
|
+
desc: "desc";
|
|
5520
|
+
}>>;
|
|
5521
|
+
'order[updatedAt]': z.ZodOptional<z.ZodEnum<{
|
|
5522
|
+
asc: "asc";
|
|
5523
|
+
desc: "desc";
|
|
5524
|
+
}>>;
|
|
5525
|
+
'order[amount]': z.ZodOptional<z.ZodEnum<{
|
|
5526
|
+
asc: "asc";
|
|
5527
|
+
desc: "desc";
|
|
5528
|
+
}>>;
|
|
5529
|
+
'order[discount]': z.ZodOptional<z.ZodEnum<{
|
|
5530
|
+
asc: "asc";
|
|
5531
|
+
desc: "desc";
|
|
5532
|
+
}>>;
|
|
5533
|
+
'order[totalAmount]': z.ZodOptional<z.ZodEnum<{
|
|
5534
|
+
asc: "asc";
|
|
5535
|
+
desc: "desc";
|
|
5536
|
+
}>>;
|
|
5537
|
+
'order[preparationStatus]': z.ZodOptional<z.ZodEnum<{
|
|
5538
|
+
asc: "asc";
|
|
5539
|
+
desc: "desc";
|
|
5540
|
+
}>>;
|
|
5541
|
+
'order[preparationTime]': z.ZodOptional<z.ZodEnum<{
|
|
5542
|
+
asc: "asc";
|
|
5543
|
+
desc: "desc";
|
|
5544
|
+
}>>;
|
|
5545
|
+
'order[preparationStartedAt]': z.ZodOptional<z.ZodEnum<{
|
|
5546
|
+
asc: "asc";
|
|
5547
|
+
desc: "desc";
|
|
5548
|
+
}>>;
|
|
5549
|
+
'order[preparationEndedAt]': z.ZodOptional<z.ZodEnum<{
|
|
5550
|
+
asc: "asc";
|
|
5551
|
+
desc: "desc";
|
|
5552
|
+
}>>;
|
|
5553
|
+
'order[requestedDeliveryTime]': z.ZodOptional<z.ZodEnum<{
|
|
5554
|
+
asc: "asc";
|
|
5555
|
+
desc: "desc";
|
|
5556
|
+
}>>;
|
|
5557
|
+
'order[requestedCollectionTime]': z.ZodOptional<z.ZodEnum<{
|
|
5558
|
+
asc: "asc";
|
|
5559
|
+
desc: "desc";
|
|
5560
|
+
}>>;
|
|
5561
|
+
'order[collectedAt]': z.ZodOptional<z.ZodEnum<{
|
|
5562
|
+
asc: "asc";
|
|
5563
|
+
desc: "desc";
|
|
5564
|
+
}>>;
|
|
5565
|
+
'order[finalDeliveryTime]': z.ZodOptional<z.ZodEnum<{
|
|
5566
|
+
asc: "asc";
|
|
5567
|
+
desc: "desc";
|
|
5568
|
+
}>>;
|
|
5569
|
+
'order[finalCollectionTime]': z.ZodOptional<z.ZodEnum<{
|
|
5570
|
+
asc: "asc";
|
|
5571
|
+
desc: "desc";
|
|
5572
|
+
}>>;
|
|
5573
|
+
'order[deliveredAt]': z.ZodOptional<z.ZodEnum<{
|
|
5574
|
+
asc: "asc";
|
|
5575
|
+
desc: "desc";
|
|
5576
|
+
}>>;
|
|
5577
|
+
page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5578
|
+
'createdAt[before]': z.ZodOptional<z.ZodString>;
|
|
5579
|
+
'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
5580
|
+
'createdAt[after]': z.ZodOptional<z.ZodString>;
|
|
5581
|
+
'createdAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
5582
|
+
'updatedAt[before]': z.ZodOptional<z.ZodString>;
|
|
5583
|
+
'updatedAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
5584
|
+
'updatedAt[after]': z.ZodOptional<z.ZodString>;
|
|
5585
|
+
'updatedAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
5586
|
+
}, z.core.$strip>;
|
|
5587
|
+
type GetPointOfSaleOrdersQueryParams = z.infer<typeof getPointOfSaleOrdersQuerySchema>;
|
|
5588
|
+
declare const getPointOfSaleOrdersInputSchema: z.ZodUndefined;
|
|
5589
|
+
type GetPointOfSaleOrdersInput = z.infer<typeof getPointOfSaleOrdersInputSchema>;
|
|
5590
|
+
declare const getPointOfSaleOrdersResponseSchema: z.ZodObject<{
|
|
5591
|
+
data: z.ZodArray<z.ZodObject<{
|
|
5592
|
+
id: z.ZodString;
|
|
5593
|
+
payment: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/payments/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/payments/:id"> | null, unknown>>;
|
|
5594
|
+
paymentMethod: z.ZodNullable<z.ZodEnum<{
|
|
5595
|
+
stripe: "stripe";
|
|
5596
|
+
bank_transfer: "bank_transfer";
|
|
5597
|
+
cash: "cash";
|
|
5598
|
+
credit_card: "credit_card";
|
|
5599
|
+
}>>;
|
|
5600
|
+
paymentStatus: z.ZodNullable<z.ZodEnum<{
|
|
5601
|
+
pending: "pending";
|
|
5602
|
+
pending_verification: "pending_verification";
|
|
5603
|
+
paid: "paid";
|
|
5604
|
+
canceled: "canceled";
|
|
5605
|
+
refunded: "refunded";
|
|
5606
|
+
failed: "failed";
|
|
5607
|
+
}>>;
|
|
5608
|
+
type: z.ZodEnum<{
|
|
5609
|
+
delivery: "delivery";
|
|
5610
|
+
take_away: "take_away";
|
|
5611
|
+
kitchen: "kitchen";
|
|
5612
|
+
}>;
|
|
5613
|
+
source: z.ZodEnum<{
|
|
5614
|
+
application: "application";
|
|
5615
|
+
ecommerce: "ecommerce";
|
|
5616
|
+
partner: "partner";
|
|
5617
|
+
}>;
|
|
5618
|
+
partner: z.ZodNullable<z.ZodString>;
|
|
5619
|
+
partnerIdentifier: z.ZodNullable<z.ZodString>;
|
|
5620
|
+
sequenceId: z.ZodNullable<z.ZodString>;
|
|
5621
|
+
displayId: z.ZodNullable<z.ZodString>;
|
|
5622
|
+
customerInfo: z.ZodObject<{
|
|
5623
|
+
firstName: z.ZodNullable<z.ZodString>;
|
|
5624
|
+
lastName: z.ZodNullable<z.ZodString>;
|
|
5625
|
+
email: z.ZodNullable<z.ZodEmail>;
|
|
5626
|
+
phoneNumber: z.ZodNullable<z.ZodString>;
|
|
5627
|
+
contactNumber: z.ZodNullable<z.ZodString>;
|
|
5628
|
+
contactAccessCode: z.ZodNullable<z.ZodString>;
|
|
5629
|
+
}, z.core.$strict>;
|
|
5630
|
+
billingInfo: z.ZodNullable<z.ZodObject<{
|
|
5631
|
+
businessName: z.ZodString;
|
|
5632
|
+
vat: z.ZodString;
|
|
5633
|
+
taxCode: z.ZodString;
|
|
5634
|
+
billingData: z.ZodObject<{
|
|
5635
|
+
sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5636
|
+
pec: z.ZodNullable<z.ZodOptional<z.ZodEmail>>;
|
|
5637
|
+
}, z.core.$strip>;
|
|
5638
|
+
}, z.core.$strip>>;
|
|
5639
|
+
address: z.ZodNullable<z.ZodObject<{
|
|
5640
|
+
line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5641
|
+
line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5642
|
+
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5643
|
+
region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5644
|
+
postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5645
|
+
country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5646
|
+
}, z.core.$strip>>;
|
|
5647
|
+
location: z.ZodNullable<z.ZodObject<{
|
|
5648
|
+
latitude: z.ZodNumber;
|
|
5649
|
+
longitude: z.ZodNumber;
|
|
5650
|
+
}, z.core.$strip>>;
|
|
5651
|
+
status: z.ZodEnum<{
|
|
5652
|
+
pending: "pending";
|
|
5653
|
+
confirmed: "confirmed";
|
|
5654
|
+
rejected: "rejected";
|
|
5655
|
+
}>;
|
|
5656
|
+
preparationStatus: z.ZodEnum<{
|
|
5657
|
+
to_prepare: "to_prepare";
|
|
5658
|
+
in_preparation: "in_preparation";
|
|
5659
|
+
done: "done";
|
|
5660
|
+
}>;
|
|
5661
|
+
preparationTime: z.ZodNullable<z.ZodString>;
|
|
5662
|
+
preparationStartedAt: z.ZodNullable<z.ZodString>;
|
|
5663
|
+
preparationEndedAt: z.ZodNullable<z.ZodString>;
|
|
5664
|
+
requestedDeliveryTime: z.ZodNullable<z.ZodString>;
|
|
5665
|
+
finalDeliveryTime: z.ZodNullable<z.ZodString>;
|
|
5666
|
+
deliveryStartedAt: z.ZodNullable<z.ZodString>;
|
|
5667
|
+
deliveredAt: z.ZodNullable<z.ZodString>;
|
|
5668
|
+
requestedCollectionTime: z.ZodNullable<z.ZodString>;
|
|
5669
|
+
finalCollectionTime: z.ZodNullable<z.ZodString>;
|
|
5670
|
+
collectedAt: z.ZodNullable<z.ZodString>;
|
|
5671
|
+
totalCountableItems: z.ZodNumber;
|
|
5672
|
+
amount: z.ZodString;
|
|
5673
|
+
netAmount: z.ZodString;
|
|
5674
|
+
taxAmount: z.ZodString;
|
|
5675
|
+
discount: z.ZodString;
|
|
5676
|
+
feeAmount: z.ZodString;
|
|
5677
|
+
feeNetAmount: z.ZodString;
|
|
5678
|
+
feeTaxAmount: z.ZodString;
|
|
5679
|
+
totalAmount: z.ZodString;
|
|
5680
|
+
totalNetAmount: z.ZodString;
|
|
5681
|
+
totalTaxAmount: z.ZodString;
|
|
5682
|
+
notes: z.ZodNullable<z.ZodString>;
|
|
5683
|
+
deliveryNotes: z.ZodNullable<z.ZodString>;
|
|
5684
|
+
kitchenNotes: z.ZodNullable<z.ZodString>;
|
|
5685
|
+
maximumAcceptanceDate: z.ZodNullable<z.ZodString>;
|
|
5686
|
+
acceptedAt: z.ZodNullable<z.ZodString>;
|
|
5687
|
+
createdAt: z.ZodString;
|
|
5688
|
+
updatedAt: z.ZodString;
|
|
5689
|
+
}, z.core.$strip>>;
|
|
5690
|
+
pagination: z.ZodObject<{
|
|
5691
|
+
from: z.ZodNumber;
|
|
5692
|
+
to: z.ZodNumber;
|
|
5693
|
+
itemsPerPage: z.ZodNumber;
|
|
5694
|
+
totalItems: z.ZodNumber;
|
|
5695
|
+
currentPage: z.ZodNumber;
|
|
5696
|
+
lastPage: z.ZodNumber;
|
|
5697
|
+
}, z.core.$strip>;
|
|
5698
|
+
}, z.core.$strip>;
|
|
5699
|
+
type GetPointOfSaleOrdersResponse = z.infer<typeof getPointOfSaleOrdersResponseSchema>;
|
|
5700
|
+
declare class GetPointOfSaleOrders extends AbstractApiRequest<typeof getPointOfSaleOrdersInputSchema, typeof getPointOfSaleOrdersResponseSchema, GetPointOfSaleOrdersQueryParams> {
|
|
5701
|
+
readonly method = "GET";
|
|
5702
|
+
readonly contentType = "application/json";
|
|
5703
|
+
readonly accept = "application/json";
|
|
5704
|
+
readonly inputSchema: z.ZodUndefined;
|
|
5705
|
+
readonly outputSchema: z.ZodObject<{
|
|
5706
|
+
data: z.ZodArray<z.ZodObject<{
|
|
5707
|
+
id: z.ZodString;
|
|
5708
|
+
payment: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/payments/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/payments/:id"> | null, unknown>>;
|
|
5709
|
+
paymentMethod: z.ZodNullable<z.ZodEnum<{
|
|
5710
|
+
stripe: "stripe";
|
|
5711
|
+
bank_transfer: "bank_transfer";
|
|
5712
|
+
cash: "cash";
|
|
5713
|
+
credit_card: "credit_card";
|
|
5714
|
+
}>>;
|
|
5715
|
+
paymentStatus: z.ZodNullable<z.ZodEnum<{
|
|
5716
|
+
pending: "pending";
|
|
5717
|
+
pending_verification: "pending_verification";
|
|
5718
|
+
paid: "paid";
|
|
5719
|
+
canceled: "canceled";
|
|
5720
|
+
refunded: "refunded";
|
|
5721
|
+
failed: "failed";
|
|
5722
|
+
}>>;
|
|
5723
|
+
type: z.ZodEnum<{
|
|
5724
|
+
delivery: "delivery";
|
|
5725
|
+
take_away: "take_away";
|
|
5726
|
+
kitchen: "kitchen";
|
|
5727
|
+
}>;
|
|
5728
|
+
source: z.ZodEnum<{
|
|
5729
|
+
application: "application";
|
|
5730
|
+
ecommerce: "ecommerce";
|
|
5731
|
+
partner: "partner";
|
|
5732
|
+
}>;
|
|
5733
|
+
partner: z.ZodNullable<z.ZodString>;
|
|
5734
|
+
partnerIdentifier: z.ZodNullable<z.ZodString>;
|
|
5735
|
+
sequenceId: z.ZodNullable<z.ZodString>;
|
|
5736
|
+
displayId: z.ZodNullable<z.ZodString>;
|
|
5737
|
+
customerInfo: z.ZodObject<{
|
|
5738
|
+
firstName: z.ZodNullable<z.ZodString>;
|
|
5739
|
+
lastName: z.ZodNullable<z.ZodString>;
|
|
5740
|
+
email: z.ZodNullable<z.ZodEmail>;
|
|
5741
|
+
phoneNumber: z.ZodNullable<z.ZodString>;
|
|
5742
|
+
contactNumber: z.ZodNullable<z.ZodString>;
|
|
5743
|
+
contactAccessCode: z.ZodNullable<z.ZodString>;
|
|
5744
|
+
}, z.core.$strict>;
|
|
5745
|
+
billingInfo: z.ZodNullable<z.ZodObject<{
|
|
5746
|
+
businessName: z.ZodString;
|
|
5747
|
+
vat: z.ZodString;
|
|
5748
|
+
taxCode: z.ZodString;
|
|
5749
|
+
billingData: z.ZodObject<{
|
|
5750
|
+
sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
5751
|
+
pec: z.ZodNullable<z.ZodOptional<z.ZodEmail>>;
|
|
5752
|
+
}, z.core.$strip>;
|
|
5753
|
+
}, z.core.$strip>>;
|
|
5754
|
+
address: z.ZodNullable<z.ZodObject<{
|
|
5755
|
+
line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5756
|
+
line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5757
|
+
city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5758
|
+
region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5759
|
+
postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5760
|
+
country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
5761
|
+
}, z.core.$strip>>;
|
|
5762
|
+
location: z.ZodNullable<z.ZodObject<{
|
|
5763
|
+
latitude: z.ZodNumber;
|
|
5764
|
+
longitude: z.ZodNumber;
|
|
5765
|
+
}, z.core.$strip>>;
|
|
5766
|
+
status: z.ZodEnum<{
|
|
5767
|
+
pending: "pending";
|
|
5768
|
+
confirmed: "confirmed";
|
|
5769
|
+
rejected: "rejected";
|
|
5770
|
+
}>;
|
|
5771
|
+
preparationStatus: z.ZodEnum<{
|
|
5772
|
+
to_prepare: "to_prepare";
|
|
5773
|
+
in_preparation: "in_preparation";
|
|
5774
|
+
done: "done";
|
|
5775
|
+
}>;
|
|
5776
|
+
preparationTime: z.ZodNullable<z.ZodString>;
|
|
5777
|
+
preparationStartedAt: z.ZodNullable<z.ZodString>;
|
|
5778
|
+
preparationEndedAt: z.ZodNullable<z.ZodString>;
|
|
5779
|
+
requestedDeliveryTime: z.ZodNullable<z.ZodString>;
|
|
5780
|
+
finalDeliveryTime: z.ZodNullable<z.ZodString>;
|
|
5781
|
+
deliveryStartedAt: z.ZodNullable<z.ZodString>;
|
|
5782
|
+
deliveredAt: z.ZodNullable<z.ZodString>;
|
|
5783
|
+
requestedCollectionTime: z.ZodNullable<z.ZodString>;
|
|
5784
|
+
finalCollectionTime: z.ZodNullable<z.ZodString>;
|
|
5785
|
+
collectedAt: z.ZodNullable<z.ZodString>;
|
|
5786
|
+
totalCountableItems: z.ZodNumber;
|
|
5787
|
+
amount: z.ZodString;
|
|
5788
|
+
netAmount: z.ZodString;
|
|
5789
|
+
taxAmount: z.ZodString;
|
|
5790
|
+
discount: z.ZodString;
|
|
5791
|
+
feeAmount: z.ZodString;
|
|
5792
|
+
feeNetAmount: z.ZodString;
|
|
5793
|
+
feeTaxAmount: z.ZodString;
|
|
5794
|
+
totalAmount: z.ZodString;
|
|
5795
|
+
totalNetAmount: z.ZodString;
|
|
5796
|
+
totalTaxAmount: z.ZodString;
|
|
5797
|
+
notes: z.ZodNullable<z.ZodString>;
|
|
5798
|
+
deliveryNotes: z.ZodNullable<z.ZodString>;
|
|
5799
|
+
kitchenNotes: z.ZodNullable<z.ZodString>;
|
|
5800
|
+
maximumAcceptanceDate: z.ZodNullable<z.ZodString>;
|
|
5801
|
+
acceptedAt: z.ZodNullable<z.ZodString>;
|
|
5802
|
+
createdAt: z.ZodString;
|
|
5803
|
+
updatedAt: z.ZodString;
|
|
5804
|
+
}, z.core.$strip>>;
|
|
5805
|
+
pagination: z.ZodObject<{
|
|
5806
|
+
from: z.ZodNumber;
|
|
5807
|
+
to: z.ZodNumber;
|
|
5808
|
+
itemsPerPage: z.ZodNumber;
|
|
5809
|
+
totalItems: z.ZodNumber;
|
|
5810
|
+
currentPage: z.ZodNumber;
|
|
5811
|
+
lastPage: z.ZodNumber;
|
|
5812
|
+
}, z.core.$strip>;
|
|
5813
|
+
}, z.core.$strip>;
|
|
5814
|
+
readonly querySchema: z.ZodObject<{
|
|
5815
|
+
type: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
5816
|
+
delivery: "delivery";
|
|
5817
|
+
take_away: "take_away";
|
|
5818
|
+
kitchen: "kitchen";
|
|
5819
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
5820
|
+
delivery: "delivery";
|
|
5821
|
+
take_away: "take_away";
|
|
5822
|
+
kitchen: "kitchen";
|
|
5823
|
+
}>>]>>;
|
|
5824
|
+
source: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
5825
|
+
application: "application";
|
|
5826
|
+
ecommerce: "ecommerce";
|
|
5827
|
+
partner: "partner";
|
|
5828
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
5829
|
+
application: "application";
|
|
5830
|
+
ecommerce: "ecommerce";
|
|
5831
|
+
partner: "partner";
|
|
5832
|
+
}>>]>>;
|
|
5833
|
+
status: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
5834
|
+
pending: "pending";
|
|
5835
|
+
confirmed: "confirmed";
|
|
5836
|
+
rejected: "rejected";
|
|
5837
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
5838
|
+
pending: "pending";
|
|
5839
|
+
confirmed: "confirmed";
|
|
5840
|
+
rejected: "rejected";
|
|
5841
|
+
}>>]>>;
|
|
5842
|
+
preparationStatus: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
5843
|
+
to_prepare: "to_prepare";
|
|
5844
|
+
in_preparation: "in_preparation";
|
|
5845
|
+
done: "done";
|
|
5846
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
5847
|
+
to_prepare: "to_prepare";
|
|
5848
|
+
in_preparation: "in_preparation";
|
|
5849
|
+
done: "done";
|
|
5850
|
+
}>>]>>;
|
|
5851
|
+
paymentMethod: z.ZodOptional<z.ZodUnion<readonly [z.ZodOptional<z.ZodEnum<{
|
|
5852
|
+
stripe: "stripe";
|
|
5853
|
+
bank_transfer: "bank_transfer";
|
|
5854
|
+
cash: "cash";
|
|
5855
|
+
credit_card: "credit_card";
|
|
5856
|
+
}>>, z.ZodArray<z.ZodEnum<{
|
|
5857
|
+
stripe: "stripe";
|
|
5858
|
+
bank_transfer: "bank_transfer";
|
|
5859
|
+
cash: "cash";
|
|
5860
|
+
credit_card: "credit_card";
|
|
5861
|
+
}>>]>>;
|
|
5862
|
+
paymentStatus: z.ZodOptional<z.ZodUnion<readonly [z.ZodEnum<{
|
|
5863
|
+
pending: "pending";
|
|
5864
|
+
pending_verification: "pending_verification";
|
|
5865
|
+
paid: "paid";
|
|
5866
|
+
canceled: "canceled";
|
|
5867
|
+
refunded: "refunded";
|
|
5868
|
+
failed: "failed";
|
|
5869
|
+
}>, z.ZodArray<z.ZodEnum<{
|
|
5870
|
+
pending: "pending";
|
|
5871
|
+
pending_verification: "pending_verification";
|
|
5872
|
+
paid: "paid";
|
|
5873
|
+
canceled: "canceled";
|
|
5874
|
+
refunded: "refunded";
|
|
5875
|
+
failed: "failed";
|
|
5876
|
+
}>>]>>;
|
|
5877
|
+
'customerInfo.firstName': z.ZodOptional<z.ZodString>;
|
|
5878
|
+
'customerInfo.lastName': z.ZodOptional<z.ZodString>;
|
|
5879
|
+
'customerInfo.email': z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
5880
|
+
'customerInfo.phoneNumber': z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodArray<z.ZodString>]>>;
|
|
5881
|
+
'totalCountableItems[between]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5882
|
+
'totalCountableItems[gt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5883
|
+
'totalCountableItems[gte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5884
|
+
'totalCountableItems[lt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5885
|
+
'totalCountableItems[lte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5886
|
+
'amount[between]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5887
|
+
'amount[gt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5888
|
+
'amount[gte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5889
|
+
'amount[lt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5890
|
+
'amount[lte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5891
|
+
'discount[between]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5892
|
+
'discount[gt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5893
|
+
'discount[gte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5894
|
+
'discount[lt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5895
|
+
'discount[lte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5896
|
+
'totalAmount[between]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5897
|
+
'totalAmount[gt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5898
|
+
'totalAmount[gte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5899
|
+
'totalAmount[lt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5900
|
+
'totalAmount[lte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
5901
|
+
'preparationTime[before]': z.ZodOptional<z.ZodString>;
|
|
5902
|
+
'preparationTime[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
5903
|
+
'preparationTime[after]': z.ZodOptional<z.ZodString>;
|
|
5904
|
+
'preparationTime[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
5905
|
+
'preparationStartedAt[before]': z.ZodOptional<z.ZodString>;
|
|
5906
|
+
'preparationStartedAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
5907
|
+
'preparationStartedAt[after]': z.ZodOptional<z.ZodString>;
|
|
5908
|
+
'preparationStartedAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
5909
|
+
'preparationEndedAt[before]': z.ZodOptional<z.ZodString>;
|
|
5910
|
+
'preparationEndedAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
5911
|
+
'preparationEndedAt[after]': z.ZodOptional<z.ZodString>;
|
|
5912
|
+
'preparationEndedAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
5913
|
+
'requestedDeliveryTime[before]': z.ZodOptional<z.ZodString>;
|
|
5914
|
+
'requestedDeliveryTime[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
5915
|
+
'requestedDeliveryTime[after]': z.ZodOptional<z.ZodString>;
|
|
5916
|
+
'requestedDeliveryTime[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
5917
|
+
'deliveryStartedAt[before]': z.ZodOptional<z.ZodString>;
|
|
5918
|
+
'deliveryStartedAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
5919
|
+
'deliveryStartedAt[after]': z.ZodOptional<z.ZodString>;
|
|
5920
|
+
'deliveryStartedAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
5921
|
+
'requestedCollectionTime[before]': z.ZodOptional<z.ZodString>;
|
|
5922
|
+
'requestedCollectionTime[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
5923
|
+
'requestedCollectionTime[after]': z.ZodOptional<z.ZodString>;
|
|
5924
|
+
'requestedCollectionTime[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
5925
|
+
'collectedAt[before]': z.ZodOptional<z.ZodString>;
|
|
5926
|
+
'collectedAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
5927
|
+
'collectedAt[after]': z.ZodOptional<z.ZodString>;
|
|
5928
|
+
'collectedAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
5929
|
+
'finalDeliveryTime[before]': z.ZodOptional<z.ZodString>;
|
|
5930
|
+
'finalDeliveryTime[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
5931
|
+
'finalDeliveryTime[after]': z.ZodOptional<z.ZodString>;
|
|
5932
|
+
'finalDeliveryTime[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
5933
|
+
'finalCollectionTime[before]': z.ZodOptional<z.ZodString>;
|
|
5934
|
+
'finalCollectionTime[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
5935
|
+
'finalCollectionTime[after]': z.ZodOptional<z.ZodString>;
|
|
5936
|
+
'finalCollectionTime[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
5937
|
+
'deliveredAt[before]': z.ZodOptional<z.ZodString>;
|
|
5938
|
+
'deliveredAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
5939
|
+
'deliveredAt[after]': z.ZodOptional<z.ZodString>;
|
|
5940
|
+
'deliveredAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
5941
|
+
'order[createdAt]': z.ZodOptional<z.ZodEnum<{
|
|
5942
|
+
asc: "asc";
|
|
5943
|
+
desc: "desc";
|
|
5944
|
+
}>>;
|
|
5945
|
+
'order[updatedAt]': z.ZodOptional<z.ZodEnum<{
|
|
5946
|
+
asc: "asc";
|
|
5947
|
+
desc: "desc";
|
|
5948
|
+
}>>;
|
|
5949
|
+
'order[amount]': z.ZodOptional<z.ZodEnum<{
|
|
5950
|
+
asc: "asc";
|
|
5951
|
+
desc: "desc";
|
|
5952
|
+
}>>;
|
|
5953
|
+
'order[discount]': z.ZodOptional<z.ZodEnum<{
|
|
5954
|
+
asc: "asc";
|
|
5955
|
+
desc: "desc";
|
|
5956
|
+
}>>;
|
|
5957
|
+
'order[totalAmount]': z.ZodOptional<z.ZodEnum<{
|
|
5958
|
+
asc: "asc";
|
|
5959
|
+
desc: "desc";
|
|
5960
|
+
}>>;
|
|
5961
|
+
'order[preparationStatus]': z.ZodOptional<z.ZodEnum<{
|
|
5962
|
+
asc: "asc";
|
|
5963
|
+
desc: "desc";
|
|
5964
|
+
}>>;
|
|
5965
|
+
'order[preparationTime]': z.ZodOptional<z.ZodEnum<{
|
|
5966
|
+
asc: "asc";
|
|
5967
|
+
desc: "desc";
|
|
5968
|
+
}>>;
|
|
5969
|
+
'order[preparationStartedAt]': z.ZodOptional<z.ZodEnum<{
|
|
5970
|
+
asc: "asc";
|
|
5971
|
+
desc: "desc";
|
|
5972
|
+
}>>;
|
|
5973
|
+
'order[preparationEndedAt]': z.ZodOptional<z.ZodEnum<{
|
|
5974
|
+
asc: "asc";
|
|
5975
|
+
desc: "desc";
|
|
5976
|
+
}>>;
|
|
5977
|
+
'order[requestedDeliveryTime]': z.ZodOptional<z.ZodEnum<{
|
|
5978
|
+
asc: "asc";
|
|
5979
|
+
desc: "desc";
|
|
5980
|
+
}>>;
|
|
5981
|
+
'order[requestedCollectionTime]': z.ZodOptional<z.ZodEnum<{
|
|
5982
|
+
asc: "asc";
|
|
5983
|
+
desc: "desc";
|
|
5984
|
+
}>>;
|
|
5985
|
+
'order[collectedAt]': z.ZodOptional<z.ZodEnum<{
|
|
5986
|
+
asc: "asc";
|
|
5987
|
+
desc: "desc";
|
|
5988
|
+
}>>;
|
|
5989
|
+
'order[finalDeliveryTime]': z.ZodOptional<z.ZodEnum<{
|
|
5990
|
+
asc: "asc";
|
|
5991
|
+
desc: "desc";
|
|
5992
|
+
}>>;
|
|
5993
|
+
'order[finalCollectionTime]': z.ZodOptional<z.ZodEnum<{
|
|
5994
|
+
asc: "asc";
|
|
5995
|
+
desc: "desc";
|
|
5996
|
+
}>>;
|
|
5997
|
+
'order[deliveredAt]': z.ZodOptional<z.ZodEnum<{
|
|
5998
|
+
asc: "asc";
|
|
5999
|
+
desc: "desc";
|
|
6000
|
+
}>>;
|
|
6001
|
+
page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
|
|
6002
|
+
'createdAt[before]': z.ZodOptional<z.ZodString>;
|
|
6003
|
+
'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
6004
|
+
'createdAt[after]': z.ZodOptional<z.ZodString>;
|
|
6005
|
+
'createdAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
6006
|
+
'updatedAt[before]': z.ZodOptional<z.ZodString>;
|
|
6007
|
+
'updatedAt[strictly_before]': z.ZodOptional<z.ZodString>;
|
|
6008
|
+
'updatedAt[after]': z.ZodOptional<z.ZodString>;
|
|
6009
|
+
'updatedAt[strictly_after]': z.ZodOptional<z.ZodString>;
|
|
6010
|
+
}, z.core.$strip>;
|
|
6011
|
+
readonly headersSchema: undefined;
|
|
6012
|
+
private readonly pointOfSaleId;
|
|
6013
|
+
constructor(pointOfSaleId: string, options?: {
|
|
6014
|
+
query?: OrdersQueryParams;
|
|
6015
|
+
});
|
|
6016
|
+
getPath(): string;
|
|
6017
|
+
parseResponse(data: unknown, rawResponse: Response): Paginated<Order>;
|
|
5434
6018
|
}
|
|
5435
6019
|
|
|
5436
6020
|
declare const updateOrderInputSchema: z.ZodObject<{
|
|
@@ -5940,4 +6524,4 @@ type BundleIri = z.infer<typeof bundleIriSchema>;
|
|
|
5940
6524
|
declare const bundleNullableIriSchema: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/bundles/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/bundles/:id"> | null, unknown>>;
|
|
5941
6525
|
type BundleNullableIri = z.infer<typeof bundleNullableIriSchema>;
|
|
5942
6526
|
|
|
5943
|
-
export { AdvanceOrderPreparationStatus, type AdvanceOrderPreparationStatusInput, type AdvanceOrderPreparationStatusResponse, type Bundle, type BundleBundleBrokenReason, type BundleDetails, type BundleIri, type BundleNullableIri, type BundleStatus, type BundleType, type BundlesQueryParams, ConfirmOrder, type ConfirmOrderInput, type ConfirmOrderResponse, CreateBundle, type CreateBundleInput, type CreateBundleResponse, CreateOrder, type CreateOrderInput, type CreateOrderResponse, DeleteBundle, DeleteOrder, GetBundleDetails, type GetBundleDetailsInput, type GetBundleDetailsResponse, GetBundles, type GetBundlesInput, type GetBundlesQueryParams, type GetBundlesResponse, GetOrderDetails, type GetOrderDetailsInput, type GetOrderDetailsResponse, GetOrderMenuItemDetails, type GetOrderMenuItemDetailsInput, type GetOrderMenuItemDetailsResponse, GetOrderMenuItemMenuItems, type GetOrderMenuItemModifierDetailsInput, type GetOrderMenuItemModifierDetailsResponse, GetOrderMenuItemModifierMenuItemModifiers, GetOrderMenuItemModifierModifierDetails, type GetOrderMenuItemModifiersInput, type GetOrderMenuItemModifiersQueryParams, type GetOrderMenuItemModifiersResponse, type GetOrderMenuItemsInput, type GetOrderMenuItemsQueryParams, type GetOrderMenuItemsResponse, GetOrders, type GetOrdersInput, type GetOrdersQueryParams, type GetOrdersResponse, type Order, type OrderBillingInfo, type OrderCustomerInfo, type OrderDetails, type OrderFeeDto, type OrderIri, type OrderMenuItem, type OrderMenuItemAction, type OrderMenuItemDetails, type OrderMenuItemIri, type OrderMenuItemModifier, type OrderMenuItemModifierDetails, type OrderMenuItemModifierIri, type OrderMenuItemModifierNullableIri, type OrderMenuItemModifiersQueryParams, type OrderMenuItemNullableIri, type OrderMenuItemsQueryParams, type OrderNullableIri, type OrderPreparationStatus, type OrderSource, type OrderStatus, type OrderType, type OrdersQueryParams, UpdateBundle, type UpdateBundleInput, type UpdateBundleResponse, UpdateOrder, type UpdateOrderInput, type UpdateOrderResponse, advanceOrderPreparationStatusInputSchema, advanceOrderPreparationStatusResponseSchema, bundleBundleBrokenReasonSchema, bundleBundleBrokenReasons, bundleDetailsSchema, bundleIriSchema, bundleNullableIriSchema, bundleSchema, bundleStatusSchema, bundleStatuses, bundleTypeSchema, bundleTypes, bundlesQuerySchema, confirmOrderInputSchema, confirmOrderResponseSchema, createBundleInputSchema, createBundleResponseSchema, createOrderInputSchema, createOrderResponseSchema, deleteBundleInputSchema, deleteBundleResponseSchema, deleteOrderInputSchema, deleteOrderResponseSchema, getBundleDetailsInputSchema, getBundleDetailsResponseSchema, getBundlesInputSchema, getBundlesQuerySchema, getBundlesResponseSchema, getOrderDetailsInputSchema, getOrderDetailsResponseSchema, getOrderMenuItemDetailsInputSchema, getOrderMenuItemDetailsResponseSchema, getOrderMenuItemModifierDetailsInputSchema, getOrderMenuItemModifierDetailsResponseSchema, getOrderMenuItemModifiersInputSchema, getOrderMenuItemModifiersQuerySchema, getOrderMenuItemModifiersResponseSchema, getOrderMenuItemsInputSchema, getOrderMenuItemsQuerySchema, getOrderMenuItemsResponseSchema, getOrdersInputSchema, getOrdersQuerySchema, getOrdersResponseSchema, localeItemSchema, orderCustomerInfoSchema, orderDetailsSchema, orderFeeDtoSchema, orderIriSchema, orderMenuItemActionSchema, orderMenuItemActions, orderMenuItemDetailsSchema, orderMenuItemIriSchema, orderMenuItemModifierDetailsSchema, orderMenuItemModifierIriSchema, orderMenuItemModifierNullableIriSchema, orderMenuItemModifierSchema, orderMenuItemModifiersQuerySchema, orderMenuItemNullableIriSchema, orderMenuItemSchema, orderMenuItemsQuerySchema, orderNullableIriSchema, orderPreparationStatusSchema, orderPreparationStatuses, orderSchema, orderSourceSchema, orderSources, orderStatusSchema, orderStatuses, orderTypeSchema, orderTypes, ordersQuerySchema, updateBundleInputSchema, updateBundleResponseSchema, updateOrderInputSchema, updateOrderResponseSchema, writableBundleSchema, writableOrderSchema };
|
|
6527
|
+
export { AdvanceOrderPreparationStatus, type AdvanceOrderPreparationStatusInput, type AdvanceOrderPreparationStatusResponse, type Bundle, type BundleBundleBrokenReason, type BundleDetails, type BundleIri, type BundleNullableIri, type BundleStatus, type BundleType, type BundlesQueryParams, ConfirmOrder, type ConfirmOrderInput, type ConfirmOrderResponse, CreateBundle, type CreateBundleInput, type CreateBundleResponse, CreateOrder, type CreateOrderInput, type CreateOrderResponse, DeleteBundle, DeleteOrder, GetBundleDetails, type GetBundleDetailsInput, type GetBundleDetailsResponse, GetBundles, type GetBundlesInput, type GetBundlesQueryParams, type GetBundlesResponse, GetOrderDetails, type GetOrderDetailsInput, type GetOrderDetailsResponse, GetOrderMenuItemDetails, type GetOrderMenuItemDetailsInput, type GetOrderMenuItemDetailsResponse, GetOrderMenuItemMenuItems, type GetOrderMenuItemModifierDetailsInput, type GetOrderMenuItemModifierDetailsResponse, GetOrderMenuItemModifierMenuItemModifiers, GetOrderMenuItemModifierModifierDetails, type GetOrderMenuItemModifiersInput, type GetOrderMenuItemModifiersQueryParams, type GetOrderMenuItemModifiersResponse, type GetOrderMenuItemsInput, type GetOrderMenuItemsQueryParams, type GetOrderMenuItemsResponse, GetOrders, type GetOrdersInput, type GetOrdersQueryParams, type GetOrdersResponse, GetPointOfSaleOrders, type GetPointOfSaleOrdersInput, type GetPointOfSaleOrdersQueryParams, type GetPointOfSaleOrdersResponse, type Order, type OrderBillingInfo, type OrderCustomerInfo, type OrderDetails, type OrderFeeDto, type OrderIri, type OrderMenuItem, type OrderMenuItemAction, type OrderMenuItemDetails, type OrderMenuItemIri, type OrderMenuItemModifier, type OrderMenuItemModifierDetails, type OrderMenuItemModifierIri, type OrderMenuItemModifierNullableIri, type OrderMenuItemModifiersQueryParams, type OrderMenuItemNullableIri, type OrderMenuItemsQueryParams, type OrderNullableIri, type OrderPreparationStatus, type OrderSource, type OrderStatus, type OrderType, type OrdersQueryParams, UpdateBundle, type UpdateBundleInput, type UpdateBundleResponse, UpdateOrder, type UpdateOrderInput, type UpdateOrderResponse, advanceOrderPreparationStatusInputSchema, advanceOrderPreparationStatusResponseSchema, bundleBundleBrokenReasonSchema, bundleBundleBrokenReasons, bundleDetailsSchema, bundleIriSchema, bundleNullableIriSchema, bundleSchema, bundleStatusSchema, bundleStatuses, bundleTypeSchema, bundleTypes, bundlesQuerySchema, confirmOrderInputSchema, confirmOrderResponseSchema, createBundleInputSchema, createBundleResponseSchema, createOrderInputSchema, createOrderResponseSchema, deleteBundleInputSchema, deleteBundleResponseSchema, deleteOrderInputSchema, deleteOrderResponseSchema, getBundleDetailsInputSchema, getBundleDetailsResponseSchema, getBundlesInputSchema, getBundlesQuerySchema, getBundlesResponseSchema, getOrderDetailsInputSchema, getOrderDetailsResponseSchema, getOrderMenuItemDetailsInputSchema, getOrderMenuItemDetailsResponseSchema, getOrderMenuItemModifierDetailsInputSchema, getOrderMenuItemModifierDetailsResponseSchema, getOrderMenuItemModifiersInputSchema, getOrderMenuItemModifiersQuerySchema, getOrderMenuItemModifiersResponseSchema, getOrderMenuItemsInputSchema, getOrderMenuItemsQuerySchema, getOrderMenuItemsResponseSchema, getOrdersInputSchema, getOrdersQuerySchema, getOrdersResponseSchema, getPointOfSaleOrdersInputSchema, getPointOfSaleOrdersQuerySchema, getPointOfSaleOrdersResponseSchema, localeItemSchema, orderCustomerInfoSchema, orderDetailsSchema, orderFeeDtoSchema, orderIriSchema, orderMenuItemActionSchema, orderMenuItemActions, orderMenuItemDetailsSchema, orderMenuItemIriSchema, orderMenuItemModifierDetailsSchema, orderMenuItemModifierIriSchema, orderMenuItemModifierNullableIriSchema, orderMenuItemModifierSchema, orderMenuItemModifiersQuerySchema, orderMenuItemNullableIriSchema, orderMenuItemSchema, orderMenuItemsQuerySchema, orderNullableIriSchema, orderPreparationStatusSchema, orderPreparationStatuses, orderSchema, orderSourceSchema, orderSources, orderStatusSchema, orderStatuses, orderTypeSchema, orderTypes, ordersQuerySchema, updateBundleInputSchema, updateBundleResponseSchema, updateOrderInputSchema, updateOrderResponseSchema, writableBundleSchema, writableOrderSchema };
|