@feedmepos/mf-order-setting 0.0.60-prod → 0.0.63-prod

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.
Files changed (39) hide show
  1. package/dist/{KioskDevicesView-DRgZJgHO.js → KioskDevicesView-D-RZUu0W.js} +1 -1
  2. package/dist/{KioskDevicesView.vue_vue_type_script_setup_true_lang-CZ6pa8Xh.js → KioskDevicesView.vue_vue_type_script_setup_true_lang-BKALec_y.js} +3 -3
  3. package/dist/{KioskSettingView-DVN4bTT4.js → KioskSettingView-BgDVaUU6.js} +3 -3
  4. package/dist/{KioskView-CmHhShkd.js → KioskView-CBDEN6lZ.js} +4 -4
  5. package/dist/OrderSettingsView-CrDwgef9.js +56883 -0
  6. package/dist/{app-D4H4nuew.js → app-BMblFPtQ.js} +2388 -2321
  7. package/dist/app.js +3 -3
  8. package/dist/{dayjs.min-DOI5QB21.js → dayjs.min-0LOWyVEQ.js} +1 -1
  9. package/dist/frontend/mf-order/src/stores/restaurant/index.d.ts +30 -3
  10. package/dist/frontend/mf-order/src/views/all-orders/ReflowOrder.vue.d.ts +20 -2
  11. package/dist/frontend/mf-order/tsconfig.app.tsbuildinfo +1 -1
  12. package/dist/index-D5Ao4tWD.js +19656 -0
  13. package/dist/{index-BdJJKX0e.js → index-FP2iiNEg.js} +3 -3
  14. package/dist/menu.dto-BdFq_BB_.js +96924 -0
  15. package/dist/package/entity/booking/booking.do.d.ts +520 -45
  16. package/dist/package/entity/delivery/delivery.dto.d.ts +104 -9
  17. package/dist/package/entity/incoming-order/incoming-order-to-bill.dto.d.ts +114 -19
  18. package/dist/package/entity/incoming-order/incoming-order.do.d.ts +225 -45
  19. package/dist/package/entity/incoming-order/incoming-order.dto.d.ts +426 -80
  20. package/dist/package/entity/member/member.dto.d.ts +84 -7
  21. package/dist/package/entity/order/order.dto.d.ts +112 -17
  22. package/dist/package/entity/order-platform/foodpanda/foodpanda-order.dto.d.ts +104 -9
  23. package/dist/package/entity/order-platform/grabfood/grabfood-order.do.d.ts +104 -9
  24. package/dist/package/entity/order-platform/order-platform.dto.d.ts +75 -15
  25. package/dist/package/entity/order-platform/shopeefood/shopeefood-order.do.d.ts +104 -9
  26. package/dist/package/entity/order-platform/shopeefood/shopeefood-order.dto.d.ts +120 -0
  27. package/dist/package/entity/queue/queue.dto.d.ts +6 -6
  28. package/package.json +3 -2
  29. package/src/views/order-settings/delivery/DeliverySetting.vue +2 -1
  30. package/src/views/order-settings/delivery/inhouse/CurrencyInput.vue +6 -5
  31. package/src/views/order-settings/delivery/inhouse/ZoneDialog.vue +8 -4
  32. package/src/views/order-settings/dine-in/DineInSetting.vue +4 -6
  33. package/src/views/order-settings/dine-in/PaymentType.vue +27 -22
  34. package/src/views/order-settings/general/GeneralSetting.vue +2 -1
  35. package/src/views/order-settings/queue/QueueSetting.vue +2 -1
  36. package/src/views/order-settings/sms/SmsSetting.vue +2 -1
  37. package/dist/OrderSettingsView-q1TUGzEA.js +0 -32195
  38. package/dist/index-CEeonoD9.js +0 -19758
  39. package/dist/menu.dto-BlTCG2YJ.js +0 -120873
@@ -1096,7 +1096,6 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
1096
1096
  target: "PAYMENT";
1097
1097
  };
1098
1098
  success: boolean;
1099
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
1100
1099
  adjustment: {
1101
1100
  inclusive?: boolean | null | undefined;
1102
1101
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -1106,6 +1105,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
1106
1105
  };
1107
1106
  };
1108
1107
  referenceId: string;
1108
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
1109
1109
  }, {
1110
1110
  reason?: string | null | undefined;
1111
1111
  priority?: number | null | undefined;
@@ -1187,7 +1187,6 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
1187
1187
  target: "PAYMENT";
1188
1188
  };
1189
1189
  success: boolean;
1190
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
1191
1190
  adjustment: {
1192
1191
  inclusive?: boolean | null | undefined;
1193
1192
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -1197,6 +1196,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
1197
1196
  };
1198
1197
  };
1199
1198
  referenceId: string;
1199
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
1200
1200
  }>, "many">>>;
1201
1201
  option: z.ZodDiscriminatedUnion<"type", z.Primitive, z.ZodObject<z.extendShape<{
1202
1202
  type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY", "DRIVE_THRU"]>;
@@ -2263,18 +2263,21 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
2263
2263
  attributeSettings: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
2264
2264
  key: z.ZodString;
2265
2265
  type: z.ZodUnion<[z.ZodLiteral<"string">, z.ZodLiteral<"number">, z.ZodLiteral<"date">, z.ZodLiteral<"boolean">]>;
2266
- entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"warehouse">]>;
2266
+ entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"inventoryPurchaseOrder">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"warehouse">]>;
2267
2267
  options: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodAny, "many">>>;
2268
+ readonly: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
2268
2269
  }, "strip", z.ZodTypeAny, {
2269
2270
  options?: any[] | null | undefined;
2271
+ readonly?: boolean | null | undefined;
2270
2272
  type: "string" | "number" | "boolean" | "date";
2271
2273
  key: string;
2272
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
2274
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
2273
2275
  }, {
2274
2276
  options?: any[] | null | undefined;
2277
+ readonly?: boolean | null | undefined;
2275
2278
  type: "string" | "number" | "boolean" | "date";
2276
2279
  key: string;
2277
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
2280
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
2278
2281
  }>, "many">>>;
2279
2282
  pf_agent: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
2280
2283
  _id: z.ZodEffects<z.ZodString, string, string>;
@@ -2517,10 +2520,48 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
2517
2520
  customerDisplayImages: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
2518
2521
  url: z.ZodString;
2519
2522
  restaurantIds: z.ZodArray<z.ZodString, "many">;
2523
+ schedule: z.ZodNullable<z.ZodOptional<z.ZodObject<{
2524
+ enabled: z.ZodBoolean;
2525
+ startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2526
+ endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2527
+ startTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2528
+ endTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
2529
+ repeatDays: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
2530
+ }, "strip", z.ZodTypeAny, {
2531
+ endTime?: string | null | undefined;
2532
+ startTime?: string | null | undefined;
2533
+ startDate?: string | null | undefined;
2534
+ endDate?: string | null | undefined;
2535
+ repeatDays?: string[] | null | undefined;
2536
+ enabled: boolean;
2537
+ }, {
2538
+ endTime?: string | null | undefined;
2539
+ startTime?: string | null | undefined;
2540
+ startDate?: string | null | undefined;
2541
+ endDate?: string | null | undefined;
2542
+ repeatDays?: string[] | null | undefined;
2543
+ enabled: boolean;
2544
+ }>>>;
2520
2545
  }, "strip", z.ZodTypeAny, {
2546
+ schedule?: {
2547
+ endTime?: string | null | undefined;
2548
+ startTime?: string | null | undefined;
2549
+ startDate?: string | null | undefined;
2550
+ endDate?: string | null | undefined;
2551
+ repeatDays?: string[] | null | undefined;
2552
+ enabled: boolean;
2553
+ } | null | undefined;
2521
2554
  url: string;
2522
2555
  restaurantIds: string[];
2523
2556
  }, {
2557
+ schedule?: {
2558
+ endTime?: string | null | undefined;
2559
+ startTime?: string | null | undefined;
2560
+ startDate?: string | null | undefined;
2561
+ endDate?: string | null | undefined;
2562
+ repeatDays?: string[] | null | undefined;
2563
+ enabled: boolean;
2564
+ } | null | undefined;
2524
2565
  url: string;
2525
2566
  restaurantIds: string[];
2526
2567
  }>, "many">>>;
@@ -2531,9 +2572,10 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
2531
2572
  agentId?: string | null | undefined;
2532
2573
  attributeSettings?: {
2533
2574
  options?: any[] | null | undefined;
2575
+ readonly?: boolean | null | undefined;
2534
2576
  type: "string" | "number" | "boolean" | "date";
2535
2577
  key: string;
2536
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
2578
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
2537
2579
  }[] | null | undefined;
2538
2580
  pf_agent?: {
2539
2581
  clickupId?: string | null | undefined;
@@ -2582,6 +2624,14 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
2582
2624
  contact: string;
2583
2625
  }[] | null | undefined;
2584
2626
  customerDisplayImages?: {
2627
+ schedule?: {
2628
+ endTime?: string | null | undefined;
2629
+ startTime?: string | null | undefined;
2630
+ startDate?: string | null | undefined;
2631
+ endDate?: string | null | undefined;
2632
+ repeatDays?: string[] | null | undefined;
2633
+ enabled: boolean;
2634
+ } | null | undefined;
2585
2635
  url: string;
2586
2636
  restaurantIds: string[];
2587
2637
  }[] | null | undefined;
@@ -2598,9 +2648,10 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
2598
2648
  agentId?: string | null | undefined;
2599
2649
  attributeSettings?: {
2600
2650
  options?: any[] | null | undefined;
2651
+ readonly?: boolean | null | undefined;
2601
2652
  type: "string" | "number" | "boolean" | "date";
2602
2653
  key: string;
2603
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
2654
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
2604
2655
  }[] | null | undefined;
2605
2656
  pf_agent?: {
2606
2657
  clickupId?: string | null | undefined;
@@ -2649,6 +2700,14 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
2649
2700
  contact: string;
2650
2701
  }[] | null | undefined;
2651
2702
  customerDisplayImages?: {
2703
+ schedule?: {
2704
+ endTime?: string | null | undefined;
2705
+ startTime?: string | null | undefined;
2706
+ startDate?: string | null | undefined;
2707
+ endDate?: string | null | undefined;
2708
+ repeatDays?: string[] | null | undefined;
2709
+ enabled: boolean;
2710
+ } | null | undefined;
2652
2711
  url: string;
2653
2712
  restaurantIds: string[];
2654
2713
  }[] | null | undefined;
@@ -2754,9 +2813,10 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
2754
2813
  agentId?: string | null | undefined;
2755
2814
  attributeSettings?: {
2756
2815
  options?: any[] | null | undefined;
2816
+ readonly?: boolean | null | undefined;
2757
2817
  type: "string" | "number" | "boolean" | "date";
2758
2818
  key: string;
2759
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
2819
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
2760
2820
  }[] | null | undefined;
2761
2821
  pf_agent?: {
2762
2822
  clickupId?: string | null | undefined;
@@ -2805,6 +2865,14 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
2805
2865
  contact: string;
2806
2866
  }[] | null | undefined;
2807
2867
  customerDisplayImages?: {
2868
+ schedule?: {
2869
+ endTime?: string | null | undefined;
2870
+ startTime?: string | null | undefined;
2871
+ startDate?: string | null | undefined;
2872
+ endDate?: string | null | undefined;
2873
+ repeatDays?: string[] | null | undefined;
2874
+ enabled: boolean;
2875
+ } | null | undefined;
2808
2876
  url: string;
2809
2877
  restaurantIds: string[];
2810
2878
  }[] | null | undefined;
@@ -2856,9 +2924,10 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
2856
2924
  agentId?: string | null | undefined;
2857
2925
  attributeSettings?: {
2858
2926
  options?: any[] | null | undefined;
2927
+ readonly?: boolean | null | undefined;
2859
2928
  type: "string" | "number" | "boolean" | "date";
2860
2929
  key: string;
2861
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
2930
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
2862
2931
  }[] | null | undefined;
2863
2932
  pf_agent?: {
2864
2933
  clickupId?: string | null | undefined;
@@ -2907,6 +2976,14 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
2907
2976
  contact: string;
2908
2977
  }[] | null | undefined;
2909
2978
  customerDisplayImages?: {
2979
+ schedule?: {
2980
+ endTime?: string | null | undefined;
2981
+ startTime?: string | null | undefined;
2982
+ startDate?: string | null | undefined;
2983
+ endDate?: string | null | undefined;
2984
+ repeatDays?: string[] | null | undefined;
2985
+ enabled: boolean;
2986
+ } | null | undefined;
2910
2987
  url: string;
2911
2988
  restaurantIds: string[];
2912
2989
  }[] | null | undefined;
@@ -3196,23 +3273,23 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
3196
3273
  }, "strip", z.ZodTypeAny, {
3197
3274
  name: string;
3198
3275
  id: string;
3276
+ timeStamp: string;
3199
3277
  from: {
3200
3278
  name: string;
3201
3279
  };
3202
3280
  to: {
3203
3281
  name: string;
3204
3282
  };
3205
- timeStamp: string;
3206
3283
  }, {
3207
3284
  name: string;
3208
3285
  id: string;
3286
+ timeStamp: string;
3209
3287
  from: {
3210
3288
  name: string;
3211
3289
  };
3212
3290
  to: {
3213
3291
  name: string;
3214
3292
  };
3215
- timeStamp: string;
3216
3293
  }>, "many">>>;
3217
3294
  }, "strip", z.ZodTypeAny, {
3218
3295
  by?: {
@@ -3233,13 +3310,13 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
3233
3310
  changePaymentActivity?: {
3234
3311
  name: string;
3235
3312
  id: string;
3313
+ timeStamp: string;
3236
3314
  from: {
3237
3315
  name: string;
3238
3316
  };
3239
3317
  to: {
3240
3318
  name: string;
3241
3319
  };
3242
- timeStamp: string;
3243
3320
  }[] | null | undefined;
3244
3321
  change: {
3245
3322
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -3278,13 +3355,13 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
3278
3355
  changePaymentActivity?: {
3279
3356
  name: string;
3280
3357
  id: string;
3358
+ timeStamp: string;
3281
3359
  from: {
3282
3360
  name: string;
3283
3361
  };
3284
3362
  to: {
3285
3363
  name: string;
3286
3364
  };
3287
- timeStamp: string;
3288
3365
  }[] | null | undefined;
3289
3366
  change: {
3290
3367
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -3418,7 +3495,6 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
3418
3495
  target: "PAYMENT";
3419
3496
  };
3420
3497
  success: boolean;
3421
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
3422
3498
  adjustment: {
3423
3499
  inclusive?: boolean | null | undefined;
3424
3500
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -3428,6 +3504,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
3428
3504
  };
3429
3505
  };
3430
3506
  referenceId: string;
3507
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
3431
3508
  }[] | null | undefined;
3432
3509
  roundToNearest?: number | null | undefined;
3433
3510
  isTakeaway?: boolean | null | undefined;
@@ -3444,9 +3521,10 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
3444
3521
  agentId?: string | null | undefined;
3445
3522
  attributeSettings?: {
3446
3523
  options?: any[] | null | undefined;
3524
+ readonly?: boolean | null | undefined;
3447
3525
  type: "string" | "number" | "boolean" | "date";
3448
3526
  key: string;
3449
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
3527
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
3450
3528
  }[] | null | undefined;
3451
3529
  pf_agent?: {
3452
3530
  clickupId?: string | null | undefined;
@@ -3495,6 +3573,14 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
3495
3573
  contact: string;
3496
3574
  }[] | null | undefined;
3497
3575
  customerDisplayImages?: {
3576
+ schedule?: {
3577
+ endTime?: string | null | undefined;
3578
+ startTime?: string | null | undefined;
3579
+ startDate?: string | null | undefined;
3580
+ endDate?: string | null | undefined;
3581
+ repeatDays?: string[] | null | undefined;
3582
+ enabled: boolean;
3583
+ } | null | undefined;
3498
3584
  url: string;
3499
3585
  restaurantIds: string[];
3500
3586
  }[] | null | undefined;
@@ -3856,13 +3942,13 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
3856
3942
  changePaymentActivity?: {
3857
3943
  name: string;
3858
3944
  id: string;
3945
+ timeStamp: string;
3859
3946
  from: {
3860
3947
  name: string;
3861
3948
  };
3862
3949
  to: {
3863
3950
  name: string;
3864
3951
  };
3865
- timeStamp: string;
3866
3952
  }[] | null | undefined;
3867
3953
  change: {
3868
3954
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -3985,7 +4071,6 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
3985
4071
  target: "PAYMENT";
3986
4072
  };
3987
4073
  success: boolean;
3988
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
3989
4074
  adjustment: {
3990
4075
  inclusive?: boolean | null | undefined;
3991
4076
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -3995,6 +4080,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
3995
4080
  };
3996
4081
  };
3997
4082
  referenceId: string;
4083
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
3998
4084
  }[] | null | undefined;
3999
4085
  roundToNearest?: number | null | undefined;
4000
4086
  isTakeaway?: boolean | null | undefined;
@@ -4011,9 +4097,10 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
4011
4097
  agentId?: string | null | undefined;
4012
4098
  attributeSettings?: {
4013
4099
  options?: any[] | null | undefined;
4100
+ readonly?: boolean | null | undefined;
4014
4101
  type: "string" | "number" | "boolean" | "date";
4015
4102
  key: string;
4016
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
4103
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
4017
4104
  }[] | null | undefined;
4018
4105
  pf_agent?: {
4019
4106
  clickupId?: string | null | undefined;
@@ -4062,6 +4149,14 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
4062
4149
  contact: string;
4063
4150
  }[] | null | undefined;
4064
4151
  customerDisplayImages?: {
4152
+ schedule?: {
4153
+ endTime?: string | null | undefined;
4154
+ startTime?: string | null | undefined;
4155
+ startDate?: string | null | undefined;
4156
+ endDate?: string | null | undefined;
4157
+ repeatDays?: string[] | null | undefined;
4158
+ enabled: boolean;
4159
+ } | null | undefined;
4065
4160
  url: string;
4066
4161
  restaurantIds: string[];
4067
4162
  }[] | null | undefined;
@@ -4423,13 +4518,13 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
4423
4518
  changePaymentActivity?: {
4424
4519
  name: string;
4425
4520
  id: string;
4521
+ timeStamp: string;
4426
4522
  from: {
4427
4523
  name: string;
4428
4524
  };
4429
4525
  to: {
4430
4526
  name: string;
4431
4527
  };
4432
- timeStamp: string;
4433
4528
  }[] | null | undefined;
4434
4529
  change: {
4435
4530
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -4625,7 +4720,6 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
4625
4720
  target: "PAYMENT";
4626
4721
  };
4627
4722
  success: boolean;
4628
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
4629
4723
  adjustment: {
4630
4724
  inclusive?: boolean | null | undefined;
4631
4725
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -4635,6 +4729,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
4635
4729
  };
4636
4730
  };
4637
4731
  referenceId: string;
4732
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
4638
4733
  }[] | null | undefined;
4639
4734
  roundToNearest?: number | null | undefined;
4640
4735
  isTakeaway?: boolean | null | undefined;
@@ -4651,9 +4746,10 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
4651
4746
  agentId?: string | null | undefined;
4652
4747
  attributeSettings?: {
4653
4748
  options?: any[] | null | undefined;
4749
+ readonly?: boolean | null | undefined;
4654
4750
  type: "string" | "number" | "boolean" | "date";
4655
4751
  key: string;
4656
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
4752
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
4657
4753
  }[] | null | undefined;
4658
4754
  pf_agent?: {
4659
4755
  clickupId?: string | null | undefined;
@@ -4702,6 +4798,14 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
4702
4798
  contact: string;
4703
4799
  }[] | null | undefined;
4704
4800
  customerDisplayImages?: {
4801
+ schedule?: {
4802
+ endTime?: string | null | undefined;
4803
+ startTime?: string | null | undefined;
4804
+ startDate?: string | null | undefined;
4805
+ endDate?: string | null | undefined;
4806
+ repeatDays?: string[] | null | undefined;
4807
+ enabled: boolean;
4808
+ } | null | undefined;
4705
4809
  url: string;
4706
4810
  restaurantIds: string[];
4707
4811
  }[] | null | undefined;
@@ -5063,13 +5167,13 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
5063
5167
  changePaymentActivity?: {
5064
5168
  name: string;
5065
5169
  id: string;
5170
+ timeStamp: string;
5066
5171
  from: {
5067
5172
  name: string;
5068
5173
  };
5069
5174
  to: {
5070
5175
  name: string;
5071
5176
  };
5072
- timeStamp: string;
5073
5177
  }[] | null | undefined;
5074
5178
  change: {
5075
5179
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -5213,7 +5317,6 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
5213
5317
  target: "PAYMENT";
5214
5318
  };
5215
5319
  success: boolean;
5216
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
5217
5320
  adjustment: {
5218
5321
  inclusive?: boolean | null | undefined;
5219
5322
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -5223,6 +5326,7 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
5223
5326
  };
5224
5327
  };
5225
5328
  referenceId: string;
5329
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
5226
5330
  }[] | null | undefined;
5227
5331
  roundToNearest?: number | null | undefined;
5228
5332
  isTakeaway?: boolean | null | undefined;
@@ -5239,9 +5343,10 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
5239
5343
  agentId?: string | null | undefined;
5240
5344
  attributeSettings?: {
5241
5345
  options?: any[] | null | undefined;
5346
+ readonly?: boolean | null | undefined;
5242
5347
  type: "string" | "number" | "boolean" | "date";
5243
5348
  key: string;
5244
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
5349
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
5245
5350
  }[] | null | undefined;
5246
5351
  pf_agent?: {
5247
5352
  clickupId?: string | null | undefined;
@@ -5290,6 +5395,14 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
5290
5395
  contact: string;
5291
5396
  }[] | null | undefined;
5292
5397
  customerDisplayImages?: {
5398
+ schedule?: {
5399
+ endTime?: string | null | undefined;
5400
+ startTime?: string | null | undefined;
5401
+ startDate?: string | null | undefined;
5402
+ endDate?: string | null | undefined;
5403
+ repeatDays?: string[] | null | undefined;
5404
+ enabled: boolean;
5405
+ } | null | undefined;
5293
5406
  url: string;
5294
5407
  restaurantIds: string[];
5295
5408
  }[] | null | undefined;
@@ -5651,13 +5764,13 @@ export declare const FdtoCreateIncomingOrder: z.ZodObject<{
5651
5764
  changePaymentActivity?: {
5652
5765
  name: string;
5653
5766
  id: string;
5767
+ timeStamp: string;
5654
5768
  from: {
5655
5769
  name: string;
5656
5770
  };
5657
5771
  to: {
5658
5772
  name: string;
5659
5773
  };
5660
- timeStamp: string;
5661
5774
  }[] | null | undefined;
5662
5775
  change: {
5663
5776
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -6865,7 +6978,6 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
6865
6978
  target: "PAYMENT";
6866
6979
  };
6867
6980
  success: boolean;
6868
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
6869
6981
  adjustment: {
6870
6982
  inclusive?: boolean | null | undefined;
6871
6983
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -6875,6 +6987,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
6875
6987
  };
6876
6988
  };
6877
6989
  referenceId: string;
6990
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
6878
6991
  }, {
6879
6992
  reason?: string | null | undefined;
6880
6993
  priority?: number | null | undefined;
@@ -6956,7 +7069,6 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
6956
7069
  target: "PAYMENT";
6957
7070
  };
6958
7071
  success: boolean;
6959
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
6960
7072
  adjustment: {
6961
7073
  inclusive?: boolean | null | undefined;
6962
7074
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -6966,6 +7078,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
6966
7078
  };
6967
7079
  };
6968
7080
  referenceId: string;
7081
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
6969
7082
  }>, "many">>>>;
6970
7083
  option: z.ZodOptional<z.ZodDiscriminatedUnion<"type", z.Primitive, z.ZodObject<z.extendShape<{
6971
7084
  type: z.ZodEnum<["DINE_IN", "PICKUP", "DELIVERY", "DRIVE_THRU"]>;
@@ -8032,18 +8145,21 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
8032
8145
  attributeSettings: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
8033
8146
  key: z.ZodString;
8034
8147
  type: z.ZodUnion<[z.ZodLiteral<"string">, z.ZodLiteral<"number">, z.ZodLiteral<"date">, z.ZodLiteral<"boolean">]>;
8035
- entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"warehouse">]>;
8148
+ entity: z.ZodUnion<[z.ZodLiteral<"restaurant">, z.ZodLiteral<"item">, z.ZodLiteral<"group">, z.ZodLiteral<"inventoryPurchaseOrder">, z.ZodLiteral<"inventoryRecipe">, z.ZodLiteral<"inventorySku">, z.ZodLiteral<"warehouse">]>;
8036
8149
  options: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodAny, "many">>>;
8150
+ readonly: z.ZodNullable<z.ZodOptional<z.ZodBoolean>>;
8037
8151
  }, "strip", z.ZodTypeAny, {
8038
8152
  options?: any[] | null | undefined;
8153
+ readonly?: boolean | null | undefined;
8039
8154
  type: "string" | "number" | "boolean" | "date";
8040
8155
  key: string;
8041
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
8156
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
8042
8157
  }, {
8043
8158
  options?: any[] | null | undefined;
8159
+ readonly?: boolean | null | undefined;
8044
8160
  type: "string" | "number" | "boolean" | "date";
8045
8161
  key: string;
8046
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
8162
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
8047
8163
  }>, "many">>>;
8048
8164
  pf_agent: z.ZodNullable<z.ZodOptional<z.ZodLazy<z.ZodObject<{
8049
8165
  _id: z.ZodEffects<z.ZodString, string, string>;
@@ -8286,10 +8402,48 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
8286
8402
  customerDisplayImages: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
8287
8403
  url: z.ZodString;
8288
8404
  restaurantIds: z.ZodArray<z.ZodString, "many">;
8405
+ schedule: z.ZodNullable<z.ZodOptional<z.ZodObject<{
8406
+ enabled: z.ZodBoolean;
8407
+ startDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8408
+ endDate: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8409
+ startTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8410
+ endTime: z.ZodNullable<z.ZodOptional<z.ZodString>>;
8411
+ repeatDays: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodString, "many">>>;
8412
+ }, "strip", z.ZodTypeAny, {
8413
+ endTime?: string | null | undefined;
8414
+ startTime?: string | null | undefined;
8415
+ startDate?: string | null | undefined;
8416
+ endDate?: string | null | undefined;
8417
+ repeatDays?: string[] | null | undefined;
8418
+ enabled: boolean;
8419
+ }, {
8420
+ endTime?: string | null | undefined;
8421
+ startTime?: string | null | undefined;
8422
+ startDate?: string | null | undefined;
8423
+ endDate?: string | null | undefined;
8424
+ repeatDays?: string[] | null | undefined;
8425
+ enabled: boolean;
8426
+ }>>>;
8289
8427
  }, "strip", z.ZodTypeAny, {
8428
+ schedule?: {
8429
+ endTime?: string | null | undefined;
8430
+ startTime?: string | null | undefined;
8431
+ startDate?: string | null | undefined;
8432
+ endDate?: string | null | undefined;
8433
+ repeatDays?: string[] | null | undefined;
8434
+ enabled: boolean;
8435
+ } | null | undefined;
8290
8436
  url: string;
8291
8437
  restaurantIds: string[];
8292
8438
  }, {
8439
+ schedule?: {
8440
+ endTime?: string | null | undefined;
8441
+ startTime?: string | null | undefined;
8442
+ startDate?: string | null | undefined;
8443
+ endDate?: string | null | undefined;
8444
+ repeatDays?: string[] | null | undefined;
8445
+ enabled: boolean;
8446
+ } | null | undefined;
8293
8447
  url: string;
8294
8448
  restaurantIds: string[];
8295
8449
  }>, "many">>>;
@@ -8300,9 +8454,10 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
8300
8454
  agentId?: string | null | undefined;
8301
8455
  attributeSettings?: {
8302
8456
  options?: any[] | null | undefined;
8457
+ readonly?: boolean | null | undefined;
8303
8458
  type: "string" | "number" | "boolean" | "date";
8304
8459
  key: string;
8305
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
8460
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
8306
8461
  }[] | null | undefined;
8307
8462
  pf_agent?: {
8308
8463
  clickupId?: string | null | undefined;
@@ -8351,6 +8506,14 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
8351
8506
  contact: string;
8352
8507
  }[] | null | undefined;
8353
8508
  customerDisplayImages?: {
8509
+ schedule?: {
8510
+ endTime?: string | null | undefined;
8511
+ startTime?: string | null | undefined;
8512
+ startDate?: string | null | undefined;
8513
+ endDate?: string | null | undefined;
8514
+ repeatDays?: string[] | null | undefined;
8515
+ enabled: boolean;
8516
+ } | null | undefined;
8354
8517
  url: string;
8355
8518
  restaurantIds: string[];
8356
8519
  }[] | null | undefined;
@@ -8367,9 +8530,10 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
8367
8530
  agentId?: string | null | undefined;
8368
8531
  attributeSettings?: {
8369
8532
  options?: any[] | null | undefined;
8533
+ readonly?: boolean | null | undefined;
8370
8534
  type: "string" | "number" | "boolean" | "date";
8371
8535
  key: string;
8372
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
8536
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
8373
8537
  }[] | null | undefined;
8374
8538
  pf_agent?: {
8375
8539
  clickupId?: string | null | undefined;
@@ -8418,6 +8582,14 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
8418
8582
  contact: string;
8419
8583
  }[] | null | undefined;
8420
8584
  customerDisplayImages?: {
8585
+ schedule?: {
8586
+ endTime?: string | null | undefined;
8587
+ startTime?: string | null | undefined;
8588
+ startDate?: string | null | undefined;
8589
+ endDate?: string | null | undefined;
8590
+ repeatDays?: string[] | null | undefined;
8591
+ enabled: boolean;
8592
+ } | null | undefined;
8421
8593
  url: string;
8422
8594
  restaurantIds: string[];
8423
8595
  }[] | null | undefined;
@@ -8523,9 +8695,10 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
8523
8695
  agentId?: string | null | undefined;
8524
8696
  attributeSettings?: {
8525
8697
  options?: any[] | null | undefined;
8698
+ readonly?: boolean | null | undefined;
8526
8699
  type: "string" | "number" | "boolean" | "date";
8527
8700
  key: string;
8528
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
8701
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
8529
8702
  }[] | null | undefined;
8530
8703
  pf_agent?: {
8531
8704
  clickupId?: string | null | undefined;
@@ -8574,6 +8747,14 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
8574
8747
  contact: string;
8575
8748
  }[] | null | undefined;
8576
8749
  customerDisplayImages?: {
8750
+ schedule?: {
8751
+ endTime?: string | null | undefined;
8752
+ startTime?: string | null | undefined;
8753
+ startDate?: string | null | undefined;
8754
+ endDate?: string | null | undefined;
8755
+ repeatDays?: string[] | null | undefined;
8756
+ enabled: boolean;
8757
+ } | null | undefined;
8577
8758
  url: string;
8578
8759
  restaurantIds: string[];
8579
8760
  }[] | null | undefined;
@@ -8625,9 +8806,10 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
8625
8806
  agentId?: string | null | undefined;
8626
8807
  attributeSettings?: {
8627
8808
  options?: any[] | null | undefined;
8809
+ readonly?: boolean | null | undefined;
8628
8810
  type: "string" | "number" | "boolean" | "date";
8629
8811
  key: string;
8630
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
8812
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
8631
8813
  }[] | null | undefined;
8632
8814
  pf_agent?: {
8633
8815
  clickupId?: string | null | undefined;
@@ -8676,6 +8858,14 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
8676
8858
  contact: string;
8677
8859
  }[] | null | undefined;
8678
8860
  customerDisplayImages?: {
8861
+ schedule?: {
8862
+ endTime?: string | null | undefined;
8863
+ startTime?: string | null | undefined;
8864
+ startDate?: string | null | undefined;
8865
+ endDate?: string | null | undefined;
8866
+ repeatDays?: string[] | null | undefined;
8867
+ enabled: boolean;
8868
+ } | null | undefined;
8679
8869
  url: string;
8680
8870
  restaurantIds: string[];
8681
8871
  }[] | null | undefined;
@@ -8965,23 +9155,23 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
8965
9155
  }, "strip", z.ZodTypeAny, {
8966
9156
  name: string;
8967
9157
  id: string;
9158
+ timeStamp: string;
8968
9159
  from: {
8969
9160
  name: string;
8970
9161
  };
8971
9162
  to: {
8972
9163
  name: string;
8973
9164
  };
8974
- timeStamp: string;
8975
9165
  }, {
8976
9166
  name: string;
8977
9167
  id: string;
9168
+ timeStamp: string;
8978
9169
  from: {
8979
9170
  name: string;
8980
9171
  };
8981
9172
  to: {
8982
9173
  name: string;
8983
9174
  };
8984
- timeStamp: string;
8985
9175
  }>, "many">>>;
8986
9176
  }, "strip", z.ZodTypeAny, {
8987
9177
  by?: {
@@ -9002,13 +9192,13 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
9002
9192
  changePaymentActivity?: {
9003
9193
  name: string;
9004
9194
  id: string;
9195
+ timeStamp: string;
9005
9196
  from: {
9006
9197
  name: string;
9007
9198
  };
9008
9199
  to: {
9009
9200
  name: string;
9010
9201
  };
9011
- timeStamp: string;
9012
9202
  }[] | null | undefined;
9013
9203
  change: {
9014
9204
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -9047,13 +9237,13 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
9047
9237
  changePaymentActivity?: {
9048
9238
  name: string;
9049
9239
  id: string;
9240
+ timeStamp: string;
9050
9241
  from: {
9051
9242
  name: string;
9052
9243
  };
9053
9244
  to: {
9054
9245
  name: string;
9055
9246
  };
9056
- timeStamp: string;
9057
9247
  }[] | null | undefined;
9058
9248
  change: {
9059
9249
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -9478,7 +9668,6 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
9478
9668
  target: "PAYMENT";
9479
9669
  };
9480
9670
  success: boolean;
9481
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
9482
9671
  adjustment: {
9483
9672
  inclusive?: boolean | null | undefined;
9484
9673
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -9488,6 +9677,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
9488
9677
  };
9489
9678
  };
9490
9679
  referenceId: string;
9680
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
9491
9681
  }[] | null | undefined;
9492
9682
  orderAt?: string | undefined;
9493
9683
  roundToNearest?: number | null | undefined;
@@ -9505,9 +9695,10 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
9505
9695
  agentId?: string | null | undefined;
9506
9696
  attributeSettings?: {
9507
9697
  options?: any[] | null | undefined;
9698
+ readonly?: boolean | null | undefined;
9508
9699
  type: "string" | "number" | "boolean" | "date";
9509
9700
  key: string;
9510
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
9701
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
9511
9702
  }[] | null | undefined;
9512
9703
  pf_agent?: {
9513
9704
  clickupId?: string | null | undefined;
@@ -9556,6 +9747,14 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
9556
9747
  contact: string;
9557
9748
  }[] | null | undefined;
9558
9749
  customerDisplayImages?: {
9750
+ schedule?: {
9751
+ endTime?: string | null | undefined;
9752
+ startTime?: string | null | undefined;
9753
+ startDate?: string | null | undefined;
9754
+ endDate?: string | null | undefined;
9755
+ repeatDays?: string[] | null | undefined;
9756
+ enabled: boolean;
9757
+ } | null | undefined;
9559
9758
  url: string;
9560
9759
  restaurantIds: string[];
9561
9760
  }[] | null | undefined;
@@ -9624,13 +9823,13 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
9624
9823
  changePaymentActivity?: {
9625
9824
  name: string;
9626
9825
  id: string;
9826
+ timeStamp: string;
9627
9827
  from: {
9628
9828
  name: string;
9629
9829
  };
9630
9830
  to: {
9631
9831
  name: string;
9632
9832
  };
9633
- timeStamp: string;
9634
9833
  }[] | null | undefined;
9635
9834
  change: {
9636
9835
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -10045,7 +10244,6 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
10045
10244
  target: "PAYMENT";
10046
10245
  };
10047
10246
  success: boolean;
10048
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
10049
10247
  adjustment: {
10050
10248
  inclusive?: boolean | null | undefined;
10051
10249
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -10055,6 +10253,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
10055
10253
  };
10056
10254
  };
10057
10255
  referenceId: string;
10256
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
10058
10257
  }[] | null | undefined;
10059
10258
  orderAt?: string | undefined;
10060
10259
  roundToNearest?: number | null | undefined;
@@ -10072,9 +10271,10 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
10072
10271
  agentId?: string | null | undefined;
10073
10272
  attributeSettings?: {
10074
10273
  options?: any[] | null | undefined;
10274
+ readonly?: boolean | null | undefined;
10075
10275
  type: "string" | "number" | "boolean" | "date";
10076
10276
  key: string;
10077
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
10277
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
10078
10278
  }[] | null | undefined;
10079
10279
  pf_agent?: {
10080
10280
  clickupId?: string | null | undefined;
@@ -10123,6 +10323,14 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
10123
10323
  contact: string;
10124
10324
  }[] | null | undefined;
10125
10325
  customerDisplayImages?: {
10326
+ schedule?: {
10327
+ endTime?: string | null | undefined;
10328
+ startTime?: string | null | undefined;
10329
+ startDate?: string | null | undefined;
10330
+ endDate?: string | null | undefined;
10331
+ repeatDays?: string[] | null | undefined;
10332
+ enabled: boolean;
10333
+ } | null | undefined;
10126
10334
  url: string;
10127
10335
  restaurantIds: string[];
10128
10336
  }[] | null | undefined;
@@ -10191,13 +10399,13 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
10191
10399
  changePaymentActivity?: {
10192
10400
  name: string;
10193
10401
  id: string;
10402
+ timeStamp: string;
10194
10403
  from: {
10195
10404
  name: string;
10196
10405
  };
10197
10406
  to: {
10198
10407
  name: string;
10199
10408
  };
10200
- timeStamp: string;
10201
10409
  }[] | null | undefined;
10202
10410
  change: {
10203
10411
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -10634,7 +10842,6 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
10634
10842
  target: "PAYMENT";
10635
10843
  };
10636
10844
  success: boolean;
10637
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
10638
10845
  adjustment: {
10639
10846
  inclusive?: boolean | null | undefined;
10640
10847
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -10644,6 +10851,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
10644
10851
  };
10645
10852
  };
10646
10853
  referenceId: string;
10854
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
10647
10855
  }[] | null | undefined;
10648
10856
  orderAt?: string | undefined;
10649
10857
  roundToNearest?: number | null | undefined;
@@ -10661,9 +10869,10 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
10661
10869
  agentId?: string | null | undefined;
10662
10870
  attributeSettings?: {
10663
10871
  options?: any[] | null | undefined;
10872
+ readonly?: boolean | null | undefined;
10664
10873
  type: "string" | "number" | "boolean" | "date";
10665
10874
  key: string;
10666
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
10875
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
10667
10876
  }[] | null | undefined;
10668
10877
  pf_agent?: {
10669
10878
  clickupId?: string | null | undefined;
@@ -10712,6 +10921,14 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
10712
10921
  contact: string;
10713
10922
  }[] | null | undefined;
10714
10923
  customerDisplayImages?: {
10924
+ schedule?: {
10925
+ endTime?: string | null | undefined;
10926
+ startTime?: string | null | undefined;
10927
+ startDate?: string | null | undefined;
10928
+ endDate?: string | null | undefined;
10929
+ repeatDays?: string[] | null | undefined;
10930
+ enabled: boolean;
10931
+ } | null | undefined;
10715
10932
  url: string;
10716
10933
  restaurantIds: string[];
10717
10934
  }[] | null | undefined;
@@ -10780,13 +10997,13 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
10780
10997
  changePaymentActivity?: {
10781
10998
  name: string;
10782
10999
  id: string;
11000
+ timeStamp: string;
10783
11001
  from: {
10784
11002
  name: string;
10785
11003
  };
10786
11004
  to: {
10787
11005
  name: string;
10788
11006
  };
10789
- timeStamp: string;
10790
11007
  }[] | null | undefined;
10791
11008
  change: {
10792
11009
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -11223,7 +11440,6 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
11223
11440
  target: "PAYMENT";
11224
11441
  };
11225
11442
  success: boolean;
11226
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
11227
11443
  adjustment: {
11228
11444
  inclusive?: boolean | null | undefined;
11229
11445
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -11233,6 +11449,7 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
11233
11449
  };
11234
11450
  };
11235
11451
  referenceId: string;
11452
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
11236
11453
  }[] | null | undefined;
11237
11454
  orderAt?: string | undefined;
11238
11455
  roundToNearest?: number | null | undefined;
@@ -11250,9 +11467,10 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
11250
11467
  agentId?: string | null | undefined;
11251
11468
  attributeSettings?: {
11252
11469
  options?: any[] | null | undefined;
11470
+ readonly?: boolean | null | undefined;
11253
11471
  type: "string" | "number" | "boolean" | "date";
11254
11472
  key: string;
11255
- entity: "restaurant" | "item" | "group" | "inventorySku" | "inventoryRecipe" | "warehouse";
11473
+ entity: "restaurant" | "item" | "group" | "inventoryPurchaseOrder" | "inventoryRecipe" | "inventorySku" | "warehouse";
11256
11474
  }[] | null | undefined;
11257
11475
  pf_agent?: {
11258
11476
  clickupId?: string | null | undefined;
@@ -11301,6 +11519,14 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
11301
11519
  contact: string;
11302
11520
  }[] | null | undefined;
11303
11521
  customerDisplayImages?: {
11522
+ schedule?: {
11523
+ endTime?: string | null | undefined;
11524
+ startTime?: string | null | undefined;
11525
+ startDate?: string | null | undefined;
11526
+ endDate?: string | null | undefined;
11527
+ repeatDays?: string[] | null | undefined;
11528
+ enabled: boolean;
11529
+ } | null | undefined;
11304
11530
  url: string;
11305
11531
  restaurantIds: string[];
11306
11532
  }[] | null | undefined;
@@ -11369,13 +11595,13 @@ export declare const FdtoUpdateIncomingOrder: z.ZodObject<{
11369
11595
  changePaymentActivity?: {
11370
11596
  name: string;
11371
11597
  id: string;
11598
+ timeStamp: string;
11372
11599
  from: {
11373
11600
  name: string;
11374
11601
  };
11375
11602
  to: {
11376
11603
  name: string;
11377
11604
  };
11378
- timeStamp: string;
11379
11605
  }[] | null | undefined;
11380
11606
  change: {
11381
11607
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -11456,7 +11682,7 @@ export declare const FdtoUpdatePlatformOrder: z.ZodObject<{
11456
11682
  seqNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11457
11683
  status: z.ZodEnum<["DRAFT", "BILLED", "REFUNDED", "COMPLETED", "VOIDED", "PREORDER"]>;
11458
11684
  slot: z.ZodString;
11459
- items: z.ZodRecord<z.ZodString, import("node_modules/@feedmepos/zod-common/dist/types").CircularZodObject<{
11685
+ items: z.ZodRecord<z.ZodString, import("node_modules/@feedmepos/zod-common/dist").CircularZodObject<{
11460
11686
  productId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
11461
11687
  product: z.ZodObject<{
11462
11688
  categoryName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -13418,7 +13644,6 @@ export declare const FdtoUpdatePlatformOrder: z.ZodObject<{
13418
13644
  target: "PAYMENT";
13419
13645
  };
13420
13646
  success: boolean;
13421
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
13422
13647
  adjustment: {
13423
13648
  inclusive?: boolean | null | undefined;
13424
13649
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -13428,6 +13653,7 @@ export declare const FdtoUpdatePlatformOrder: z.ZodObject<{
13428
13653
  };
13429
13654
  };
13430
13655
  referenceId: string;
13656
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
13431
13657
  }, {
13432
13658
  reason?: string | null | undefined;
13433
13659
  priority?: number | null | undefined;
@@ -13509,7 +13735,6 @@ export declare const FdtoUpdatePlatformOrder: z.ZodObject<{
13509
13735
  target: "PAYMENT";
13510
13736
  };
13511
13737
  success: boolean;
13512
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
13513
13738
  adjustment: {
13514
13739
  inclusive?: boolean | null | undefined;
13515
13740
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -13519,6 +13744,7 @@ export declare const FdtoUpdatePlatformOrder: z.ZodObject<{
13519
13744
  };
13520
13745
  };
13521
13746
  referenceId: string;
13747
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
13522
13748
  }>>>>;
13523
13749
  effectGroups: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
13524
13750
  maxApplicableEffects: z.ZodNumber;
@@ -15038,23 +15264,23 @@ export declare const FdtoUpdatePlatformOrder: z.ZodObject<{
15038
15264
  }, "strip", z.ZodTypeAny, {
15039
15265
  name: string;
15040
15266
  id: string;
15267
+ timeStamp: string;
15041
15268
  from: {
15042
15269
  name: string;
15043
15270
  };
15044
15271
  to: {
15045
15272
  name: string;
15046
15273
  };
15047
- timeStamp: string;
15048
15274
  }, {
15049
15275
  name: string;
15050
15276
  id: string;
15277
+ timeStamp: string;
15051
15278
  from: {
15052
15279
  name: string;
15053
15280
  };
15054
15281
  to: {
15055
15282
  name: string;
15056
15283
  };
15057
- timeStamp: string;
15058
15284
  }>, "many">>>;
15059
15285
  }, "strip", z.ZodTypeAny, {
15060
15286
  by?: {
@@ -15075,13 +15301,13 @@ export declare const FdtoUpdatePlatformOrder: z.ZodObject<{
15075
15301
  changePaymentActivity?: {
15076
15302
  name: string;
15077
15303
  id: string;
15304
+ timeStamp: string;
15078
15305
  from: {
15079
15306
  name: string;
15080
15307
  };
15081
15308
  to: {
15082
15309
  name: string;
15083
15310
  };
15084
- timeStamp: string;
15085
15311
  }[] | null | undefined;
15086
15312
  change: {
15087
15313
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -15120,13 +15346,13 @@ export declare const FdtoUpdatePlatformOrder: z.ZodObject<{
15120
15346
  changePaymentActivity?: {
15121
15347
  name: string;
15122
15348
  id: string;
15349
+ timeStamp: string;
15123
15350
  from: {
15124
15351
  name: string;
15125
15352
  };
15126
15353
  to: {
15127
15354
  name: string;
15128
15355
  };
15129
- timeStamp: string;
15130
15356
  }[] | null | undefined;
15131
15357
  change: {
15132
15358
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -15300,6 +15526,34 @@ export declare const FdtoUpdatePlatformOrder: z.ZodObject<{
15300
15526
  detail?: Record<string, any> | null | undefined;
15301
15527
  };
15302
15528
  }>>>;
15529
+ auditLogs: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
15530
+ timeStamp: z.ZodString;
15531
+ subject: z.ZodObject<{
15532
+ id: z.ZodString;
15533
+ name: z.ZodString;
15534
+ }, "strip", z.ZodTypeAny, {
15535
+ name: string;
15536
+ id: string;
15537
+ }, {
15538
+ name: string;
15539
+ id: string;
15540
+ }>;
15541
+ action: z.ZodRecord<z.ZodString, z.ZodAny>;
15542
+ }, "strip", z.ZodTypeAny, {
15543
+ action: Record<string, any>;
15544
+ subject: {
15545
+ name: string;
15546
+ id: string;
15547
+ };
15548
+ timeStamp: string;
15549
+ }, {
15550
+ action: Record<string, any>;
15551
+ subject: {
15552
+ name: string;
15553
+ id: string;
15554
+ };
15555
+ timeStamp: string;
15556
+ }>, "many">>>;
15303
15557
  }, "strip", z.ZodTypeAny, {
15304
15558
  remark?: string | null | undefined;
15305
15559
  taxes?: Record<string, {
@@ -15429,6 +15683,14 @@ export declare const FdtoUpdatePlatformOrder: z.ZodObject<{
15429
15683
  } | null | undefined;
15430
15684
  completedAt?: string | null | undefined;
15431
15685
  refundedFrom?: string | null | undefined;
15686
+ auditLogs?: {
15687
+ action: Record<string, any>;
15688
+ subject: {
15689
+ name: string;
15690
+ id: string;
15691
+ };
15692
+ timeStamp: string;
15693
+ }[] | null | undefined;
15432
15694
  machineId?: string | null | undefined;
15433
15695
  seqNumber?: string | null | undefined;
15434
15696
  refund?: {
@@ -15524,7 +15786,6 @@ export declare const FdtoUpdatePlatformOrder: z.ZodObject<{
15524
15786
  target: "PAYMENT";
15525
15787
  };
15526
15788
  success: boolean;
15527
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
15528
15789
  adjustment: {
15529
15790
  inclusive?: boolean | null | undefined;
15530
15791
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -15534,6 +15795,7 @@ export declare const FdtoUpdatePlatformOrder: z.ZodObject<{
15534
15795
  };
15535
15796
  };
15536
15797
  referenceId: string;
15798
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
15537
15799
  }> | null | undefined;
15538
15800
  effectGroups?: {
15539
15801
  maxApplicableEffects: number;
@@ -16136,13 +16398,13 @@ export declare const FdtoUpdatePlatformOrder: z.ZodObject<{
16136
16398
  changePaymentActivity?: {
16137
16399
  name: string;
16138
16400
  id: string;
16401
+ timeStamp: string;
16139
16402
  from: {
16140
16403
  name: string;
16141
16404
  };
16142
16405
  to: {
16143
16406
  name: string;
16144
16407
  };
16145
- timeStamp: string;
16146
16408
  }[] | null | undefined;
16147
16409
  change: {
16148
16410
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -16292,6 +16554,14 @@ export declare const FdtoUpdatePlatformOrder: z.ZodObject<{
16292
16554
  } | null | undefined;
16293
16555
  completedAt?: string | null | undefined;
16294
16556
  refundedFrom?: string | null | undefined;
16557
+ auditLogs?: {
16558
+ action: Record<string, any>;
16559
+ subject: {
16560
+ name: string;
16561
+ id: string;
16562
+ };
16563
+ timeStamp: string;
16564
+ }[] | null | undefined;
16295
16565
  machineId?: string | null | undefined;
16296
16566
  seqNumber?: string | null | undefined;
16297
16567
  refund?: {
@@ -16387,7 +16657,6 @@ export declare const FdtoUpdatePlatformOrder: z.ZodObject<{
16387
16657
  target: "PAYMENT";
16388
16658
  };
16389
16659
  success: boolean;
16390
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
16391
16660
  adjustment: {
16392
16661
  inclusive?: boolean | null | undefined;
16393
16662
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -16397,6 +16666,7 @@ export declare const FdtoUpdatePlatformOrder: z.ZodObject<{
16397
16666
  };
16398
16667
  };
16399
16668
  referenceId: string;
16669
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
16400
16670
  }> | null | undefined;
16401
16671
  effectGroups?: {
16402
16672
  maxApplicableEffects: number;
@@ -16997,13 +17267,13 @@ export declare const FdtoUpdatePlatformOrder: z.ZodObject<{
16997
17267
  changePaymentActivity?: {
16998
17268
  name: string;
16999
17269
  id: string;
17270
+ timeStamp: string;
17000
17271
  from: {
17001
17272
  name: string;
17002
17273
  };
17003
17274
  to: {
17004
17275
  name: string;
17005
17276
  };
17006
- timeStamp: string;
17007
17277
  }[] | null | undefined;
17008
17278
  change: {
17009
17279
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -17156,6 +17426,14 @@ export declare const FdtoUpdatePlatformOrder: z.ZodObject<{
17156
17426
  } | null | undefined;
17157
17427
  completedAt?: string | null | undefined;
17158
17428
  refundedFrom?: string | null | undefined;
17429
+ auditLogs?: {
17430
+ action: Record<string, any>;
17431
+ subject: {
17432
+ name: string;
17433
+ id: string;
17434
+ };
17435
+ timeStamp: string;
17436
+ }[] | null | undefined;
17159
17437
  machineId?: string | null | undefined;
17160
17438
  seqNumber?: string | null | undefined;
17161
17439
  refund?: {
@@ -17251,7 +17529,6 @@ export declare const FdtoUpdatePlatformOrder: z.ZodObject<{
17251
17529
  target: "PAYMENT";
17252
17530
  };
17253
17531
  success: boolean;
17254
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
17255
17532
  adjustment: {
17256
17533
  inclusive?: boolean | null | undefined;
17257
17534
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -17261,6 +17538,7 @@ export declare const FdtoUpdatePlatformOrder: z.ZodObject<{
17261
17538
  };
17262
17539
  };
17263
17540
  referenceId: string;
17541
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
17264
17542
  }> | null | undefined;
17265
17543
  effectGroups?: {
17266
17544
  maxApplicableEffects: number;
@@ -17863,13 +18141,13 @@ export declare const FdtoUpdatePlatformOrder: z.ZodObject<{
17863
18141
  changePaymentActivity?: {
17864
18142
  name: string;
17865
18143
  id: string;
18144
+ timeStamp: string;
17866
18145
  from: {
17867
18146
  name: string;
17868
18147
  };
17869
18148
  to: {
17870
18149
  name: string;
17871
18150
  };
17872
- timeStamp: string;
17873
18151
  }[] | null | undefined;
17874
18152
  change: {
17875
18153
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -18025,6 +18303,14 @@ export declare const FdtoUpdatePlatformOrder: z.ZodObject<{
18025
18303
  } | null | undefined;
18026
18304
  completedAt?: string | null | undefined;
18027
18305
  refundedFrom?: string | null | undefined;
18306
+ auditLogs?: {
18307
+ action: Record<string, any>;
18308
+ subject: {
18309
+ name: string;
18310
+ id: string;
18311
+ };
18312
+ timeStamp: string;
18313
+ }[] | null | undefined;
18028
18314
  machineId?: string | null | undefined;
18029
18315
  seqNumber?: string | null | undefined;
18030
18316
  refund?: {
@@ -18120,7 +18406,6 @@ export declare const FdtoUpdatePlatformOrder: z.ZodObject<{
18120
18406
  target: "PAYMENT";
18121
18407
  };
18122
18408
  success: boolean;
18123
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
18124
18409
  adjustment: {
18125
18410
  inclusive?: boolean | null | undefined;
18126
18411
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -18130,6 +18415,7 @@ export declare const FdtoUpdatePlatformOrder: z.ZodObject<{
18130
18415
  };
18131
18416
  };
18132
18417
  referenceId: string;
18418
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
18133
18419
  }> | null | undefined;
18134
18420
  effectGroups?: {
18135
18421
  maxApplicableEffects: number;
@@ -18730,13 +19016,13 @@ export declare const FdtoUpdatePlatformOrder: z.ZodObject<{
18730
19016
  changePaymentActivity?: {
18731
19017
  name: string;
18732
19018
  id: string;
19019
+ timeStamp: string;
18733
19020
  from: {
18734
19021
  name: string;
18735
19022
  };
18736
19023
  to: {
18737
19024
  name: string;
18738
19025
  };
18739
- timeStamp: string;
18740
19026
  }[] | null | undefined;
18741
19027
  change: {
18742
19028
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -18816,7 +19102,7 @@ export declare const FdtoIntegrationEditOrder: z.ZodObject<{
18816
19102
  seqNumber: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18817
19103
  status: z.ZodEnum<["DRAFT", "BILLED", "REFUNDED", "COMPLETED", "VOIDED", "PREORDER"]>;
18818
19104
  slot: z.ZodString;
18819
- items: z.ZodRecord<z.ZodString, import("node_modules/@feedmepos/zod-common/dist/types").CircularZodObject<{
19105
+ items: z.ZodRecord<z.ZodString, import("node_modules/@feedmepos/zod-common/dist").CircularZodObject<{
18820
19106
  productId: z.ZodNullable<z.ZodOptional<z.ZodString>>;
18821
19107
  product: z.ZodObject<{
18822
19108
  categoryName: z.ZodNullable<z.ZodOptional<z.ZodString>>;
@@ -20778,7 +21064,6 @@ export declare const FdtoIntegrationEditOrder: z.ZodObject<{
20778
21064
  target: "PAYMENT";
20779
21065
  };
20780
21066
  success: boolean;
20781
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
20782
21067
  adjustment: {
20783
21068
  inclusive?: boolean | null | undefined;
20784
21069
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -20788,6 +21073,7 @@ export declare const FdtoIntegrationEditOrder: z.ZodObject<{
20788
21073
  };
20789
21074
  };
20790
21075
  referenceId: string;
21076
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
20791
21077
  }, {
20792
21078
  reason?: string | null | undefined;
20793
21079
  priority?: number | null | undefined;
@@ -20869,7 +21155,6 @@ export declare const FdtoIntegrationEditOrder: z.ZodObject<{
20869
21155
  target: "PAYMENT";
20870
21156
  };
20871
21157
  success: boolean;
20872
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
20873
21158
  adjustment: {
20874
21159
  inclusive?: boolean | null | undefined;
20875
21160
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -20879,6 +21164,7 @@ export declare const FdtoIntegrationEditOrder: z.ZodObject<{
20879
21164
  };
20880
21165
  };
20881
21166
  referenceId: string;
21167
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
20882
21168
  }>>>>;
20883
21169
  effectGroups: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
20884
21170
  maxApplicableEffects: z.ZodNumber;
@@ -22398,23 +22684,23 @@ export declare const FdtoIntegrationEditOrder: z.ZodObject<{
22398
22684
  }, "strip", z.ZodTypeAny, {
22399
22685
  name: string;
22400
22686
  id: string;
22687
+ timeStamp: string;
22401
22688
  from: {
22402
22689
  name: string;
22403
22690
  };
22404
22691
  to: {
22405
22692
  name: string;
22406
22693
  };
22407
- timeStamp: string;
22408
22694
  }, {
22409
22695
  name: string;
22410
22696
  id: string;
22697
+ timeStamp: string;
22411
22698
  from: {
22412
22699
  name: string;
22413
22700
  };
22414
22701
  to: {
22415
22702
  name: string;
22416
22703
  };
22417
- timeStamp: string;
22418
22704
  }>, "many">>>;
22419
22705
  }, "strip", z.ZodTypeAny, {
22420
22706
  by?: {
@@ -22435,13 +22721,13 @@ export declare const FdtoIntegrationEditOrder: z.ZodObject<{
22435
22721
  changePaymentActivity?: {
22436
22722
  name: string;
22437
22723
  id: string;
22724
+ timeStamp: string;
22438
22725
  from: {
22439
22726
  name: string;
22440
22727
  };
22441
22728
  to: {
22442
22729
  name: string;
22443
22730
  };
22444
- timeStamp: string;
22445
22731
  }[] | null | undefined;
22446
22732
  change: {
22447
22733
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -22480,13 +22766,13 @@ export declare const FdtoIntegrationEditOrder: z.ZodObject<{
22480
22766
  changePaymentActivity?: {
22481
22767
  name: string;
22482
22768
  id: string;
22769
+ timeStamp: string;
22483
22770
  from: {
22484
22771
  name: string;
22485
22772
  };
22486
22773
  to: {
22487
22774
  name: string;
22488
22775
  };
22489
- timeStamp: string;
22490
22776
  }[] | null | undefined;
22491
22777
  change: {
22492
22778
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -22660,6 +22946,34 @@ export declare const FdtoIntegrationEditOrder: z.ZodObject<{
22660
22946
  detail?: Record<string, any> | null | undefined;
22661
22947
  };
22662
22948
  }>>>;
22949
+ auditLogs: z.ZodNullable<z.ZodOptional<z.ZodArray<z.ZodObject<{
22950
+ timeStamp: z.ZodString;
22951
+ subject: z.ZodObject<{
22952
+ id: z.ZodString;
22953
+ name: z.ZodString;
22954
+ }, "strip", z.ZodTypeAny, {
22955
+ name: string;
22956
+ id: string;
22957
+ }, {
22958
+ name: string;
22959
+ id: string;
22960
+ }>;
22961
+ action: z.ZodRecord<z.ZodString, z.ZodAny>;
22962
+ }, "strip", z.ZodTypeAny, {
22963
+ action: Record<string, any>;
22964
+ subject: {
22965
+ name: string;
22966
+ id: string;
22967
+ };
22968
+ timeStamp: string;
22969
+ }, {
22970
+ action: Record<string, any>;
22971
+ subject: {
22972
+ name: string;
22973
+ id: string;
22974
+ };
22975
+ timeStamp: string;
22976
+ }>, "many">>>;
22663
22977
  }, "strip", z.ZodTypeAny, {
22664
22978
  remark?: string | null | undefined;
22665
22979
  taxes?: Record<string, {
@@ -22789,6 +23103,14 @@ export declare const FdtoIntegrationEditOrder: z.ZodObject<{
22789
23103
  } | null | undefined;
22790
23104
  completedAt?: string | null | undefined;
22791
23105
  refundedFrom?: string | null | undefined;
23106
+ auditLogs?: {
23107
+ action: Record<string, any>;
23108
+ subject: {
23109
+ name: string;
23110
+ id: string;
23111
+ };
23112
+ timeStamp: string;
23113
+ }[] | null | undefined;
22792
23114
  machineId?: string | null | undefined;
22793
23115
  seqNumber?: string | null | undefined;
22794
23116
  refund?: {
@@ -22884,7 +23206,6 @@ export declare const FdtoIntegrationEditOrder: z.ZodObject<{
22884
23206
  target: "PAYMENT";
22885
23207
  };
22886
23208
  success: boolean;
22887
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
22888
23209
  adjustment: {
22889
23210
  inclusive?: boolean | null | undefined;
22890
23211
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -22894,6 +23215,7 @@ export declare const FdtoIntegrationEditOrder: z.ZodObject<{
22894
23215
  };
22895
23216
  };
22896
23217
  referenceId: string;
23218
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
22897
23219
  }> | null | undefined;
22898
23220
  effectGroups?: {
22899
23221
  maxApplicableEffects: number;
@@ -23496,13 +23818,13 @@ export declare const FdtoIntegrationEditOrder: z.ZodObject<{
23496
23818
  changePaymentActivity?: {
23497
23819
  name: string;
23498
23820
  id: string;
23821
+ timeStamp: string;
23499
23822
  from: {
23500
23823
  name: string;
23501
23824
  };
23502
23825
  to: {
23503
23826
  name: string;
23504
23827
  };
23505
- timeStamp: string;
23506
23828
  }[] | null | undefined;
23507
23829
  change: {
23508
23830
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -23652,6 +23974,14 @@ export declare const FdtoIntegrationEditOrder: z.ZodObject<{
23652
23974
  } | null | undefined;
23653
23975
  completedAt?: string | null | undefined;
23654
23976
  refundedFrom?: string | null | undefined;
23977
+ auditLogs?: {
23978
+ action: Record<string, any>;
23979
+ subject: {
23980
+ name: string;
23981
+ id: string;
23982
+ };
23983
+ timeStamp: string;
23984
+ }[] | null | undefined;
23655
23985
  machineId?: string | null | undefined;
23656
23986
  seqNumber?: string | null | undefined;
23657
23987
  refund?: {
@@ -23747,7 +24077,6 @@ export declare const FdtoIntegrationEditOrder: z.ZodObject<{
23747
24077
  target: "PAYMENT";
23748
24078
  };
23749
24079
  success: boolean;
23750
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
23751
24080
  adjustment: {
23752
24081
  inclusive?: boolean | null | undefined;
23753
24082
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -23757,6 +24086,7 @@ export declare const FdtoIntegrationEditOrder: z.ZodObject<{
23757
24086
  };
23758
24087
  };
23759
24088
  referenceId: string;
24089
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
23760
24090
  }> | null | undefined;
23761
24091
  effectGroups?: {
23762
24092
  maxApplicableEffects: number;
@@ -24357,13 +24687,13 @@ export declare const FdtoIntegrationEditOrder: z.ZodObject<{
24357
24687
  changePaymentActivity?: {
24358
24688
  name: string;
24359
24689
  id: string;
24690
+ timeStamp: string;
24360
24691
  from: {
24361
24692
  name: string;
24362
24693
  };
24363
24694
  to: {
24364
24695
  name: string;
24365
24696
  };
24366
- timeStamp: string;
24367
24697
  }[] | null | undefined;
24368
24698
  change: {
24369
24699
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -24519,6 +24849,14 @@ export declare const FdtoIntegrationEditOrder: z.ZodObject<{
24519
24849
  } | null | undefined;
24520
24850
  completedAt?: string | null | undefined;
24521
24851
  refundedFrom?: string | null | undefined;
24852
+ auditLogs?: {
24853
+ action: Record<string, any>;
24854
+ subject: {
24855
+ name: string;
24856
+ id: string;
24857
+ };
24858
+ timeStamp: string;
24859
+ }[] | null | undefined;
24522
24860
  machineId?: string | null | undefined;
24523
24861
  seqNumber?: string | null | undefined;
24524
24862
  refund?: {
@@ -24614,7 +24952,6 @@ export declare const FdtoIntegrationEditOrder: z.ZodObject<{
24614
24952
  target: "PAYMENT";
24615
24953
  };
24616
24954
  success: boolean;
24617
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
24618
24955
  adjustment: {
24619
24956
  inclusive?: boolean | null | undefined;
24620
24957
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -24624,6 +24961,7 @@ export declare const FdtoIntegrationEditOrder: z.ZodObject<{
24624
24961
  };
24625
24962
  };
24626
24963
  referenceId: string;
24964
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
24627
24965
  }> | null | undefined;
24628
24966
  effectGroups?: {
24629
24967
  maxApplicableEffects: number;
@@ -25226,13 +25564,13 @@ export declare const FdtoIntegrationEditOrder: z.ZodObject<{
25226
25564
  changePaymentActivity?: {
25227
25565
  name: string;
25228
25566
  id: string;
25567
+ timeStamp: string;
25229
25568
  from: {
25230
25569
  name: string;
25231
25570
  };
25232
25571
  to: {
25233
25572
  name: string;
25234
25573
  };
25235
- timeStamp: string;
25236
25574
  }[] | null | undefined;
25237
25575
  change: {
25238
25576
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";
@@ -25386,6 +25724,14 @@ export declare const FdtoIntegrationEditOrder: z.ZodObject<{
25386
25724
  } | null | undefined;
25387
25725
  completedAt?: string | null | undefined;
25388
25726
  refundedFrom?: string | null | undefined;
25727
+ auditLogs?: {
25728
+ action: Record<string, any>;
25729
+ subject: {
25730
+ name: string;
25731
+ id: string;
25732
+ };
25733
+ timeStamp: string;
25734
+ }[] | null | undefined;
25389
25735
  machineId?: string | null | undefined;
25390
25736
  seqNumber?: string | null | undefined;
25391
25737
  refund?: {
@@ -25481,7 +25827,6 @@ export declare const FdtoIntegrationEditOrder: z.ZodObject<{
25481
25827
  target: "PAYMENT";
25482
25828
  };
25483
25829
  success: boolean;
25484
- from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
25485
25830
  adjustment: {
25486
25831
  inclusive?: boolean | null | undefined;
25487
25832
  type: "BY_PERCENTAGE" | "BY_AMOUNT" | "TO_AMOUNT";
@@ -25491,6 +25836,7 @@ export declare const FdtoIntegrationEditOrder: z.ZodObject<{
25491
25836
  };
25492
25837
  };
25493
25838
  referenceId: string;
25839
+ from: "COUNTER" | "PROMOTION" | "VOUCHER" | "MEMBERSHIP" | "FREE_CREDIT";
25494
25840
  }> | null | undefined;
25495
25841
  effectGroups?: {
25496
25842
  maxApplicableEffects: number;
@@ -26091,13 +26437,13 @@ export declare const FdtoIntegrationEditOrder: z.ZodObject<{
26091
26437
  changePaymentActivity?: {
26092
26438
  name: string;
26093
26439
  id: string;
26440
+ timeStamp: string;
26094
26441
  from: {
26095
26442
  name: string;
26096
26443
  };
26097
26444
  to: {
26098
26445
  name: string;
26099
26446
  };
26100
- timeStamp: string;
26101
26447
  }[] | null | undefined;
26102
26448
  change: {
26103
26449
  currency: "ALL" | "MYR" | "AED" | "AFN" | "AMD" | "ANG" | "AOA" | "ARS" | "AUD" | "AWG" | "AZN" | "BAM" | "BBD" | "BDT" | "BGN" | "BHD" | "BIF" | "BMD" | "BND" | "BOB" | "BOV" | "BRL" | "BSD" | "BTN" | "BWP" | "BYN" | "BZD" | "CAD" | "CDF" | "CHE" | "CHF" | "CHW" | "CLF" | "CLP" | "CNY" | "COP" | "COU" | "CRC" | "CUC" | "CUP" | "CVE" | "CZK" | "DJF" | "DKK" | "DOP" | "DZD" | "EGP" | "ERN" | "ETB" | "EUR" | "FJD" | "FKP" | "GBP" | "GEL" | "GHS" | "GIP" | "GMD" | "GNF" | "GTQ" | "GYD" | "HKD" | "HNL" | "HRK" | "HTG" | "HUF" | "IDR" | "ILS" | "INR" | "IQD" | "IRR" | "ISK" | "JMD" | "JOD" | "JPY" | "KES" | "KGS" | "KHR" | "KMF" | "KPW" | "KRW" | "KWD" | "KYD" | "KZT" | "LAK" | "LBP" | "LKR" | "LRD" | "LSL" | "LYD" | "MAD" | "MDL" | "MGA" | "MKD" | "MMK" | "MNT" | "MOP" | "MRU" | "MUR" | "MVR" | "MWK" | "MXN" | "MXV" | "MZN" | "NAD" | "NGN" | "NIO" | "NOK" | "NPR" | "NZD" | "OMR" | "PAB" | "PEN" | "PGK" | "PHP" | "PKR" | "PLN" | "PYG" | "QAR" | "RON" | "RSD" | "RUB" | "RWF" | "SAR" | "SBD" | "SCR" | "SDG" | "SEK" | "SGD" | "SHP" | "SLL" | "SOS" | "SRD" | "SSP" | "STN" | "SVC" | "SYP" | "SZL" | "THB" | "TJS" | "TMT" | "TND" | "TOP" | "TRY" | "TTD" | "TWD" | "TZS" | "UAH" | "UGX" | "USD" | "USN" | "UYI" | "UYU" | "UYW" | "UZS" | "VES" | "VND" | "VUV" | "WST" | "XAF" | "XAG" | "XAU" | "XBA" | "XBB" | "XBC" | "XBD" | "XCD" | "XDR" | "XOF" | "XPD" | "XPF" | "XPT" | "XSU" | "XTS" | "XUA" | "XXX" | "YER" | "ZAR" | "ZMW" | "ZWL";