@deliverart/sdk-js-order 1.2.2 → 2.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -2,7 +2,6 @@ import * as _deliverart_sdk_js_global_types from '@deliverart/sdk-js-global-type
2
2
  import { Paginated } from '@deliverart/sdk-js-global-types';
3
3
  import { z } from 'zod';
4
4
  import { AbstractApiRequest } from '@deliverart/sdk-js-core';
5
- import { AxiosResponse } from 'axios';
6
5
 
7
6
  declare const orderFeeDtoSchema: z.ZodObject<{
8
7
  key: z.ZodString;
@@ -2338,7 +2337,7 @@ declare class GetBundles extends AbstractApiRequest<typeof getBundlesInputSchema
2338
2337
  query?: BundlesQueryParams;
2339
2338
  });
2340
2339
  getPath(): string;
2341
- parseResponse(data: unknown, rawResponse: AxiosResponse): Paginated<Bundle>;
2340
+ parseResponse(data: unknown, rawResponse: Response): Paginated<Bundle>;
2342
2341
  }
2343
2342
 
2344
2343
  declare const updateBundleInputSchema: z.ZodObject<{
@@ -2849,7 +2848,7 @@ declare class GetOrderMenuItemModifierMenuItemModifiers extends AbstractApiReque
2849
2848
  query?: OrderMenuItemModifiersQueryParams;
2850
2849
  });
2851
2850
  getPath(): string;
2852
- parseResponse(data: unknown, rawResponse: AxiosResponse): Paginated<OrderMenuItemModifier>;
2851
+ parseResponse(data: unknown, rawResponse: Response): Paginated<OrderMenuItemModifier>;
2853
2852
  }
2854
2853
 
2855
2854
  declare const getOrderMenuItemDetailsInputSchema: z.ZodUndefined;
@@ -3239,7 +3238,7 @@ declare class GetOrderMenuItemMenuItems extends AbstractApiRequest<typeof getOrd
3239
3238
  query?: OrderMenuItemsQueryParams;
3240
3239
  });
3241
3240
  getPath(): string;
3242
- parseResponse(data: unknown, rawResponse: AxiosResponse): Paginated<OrderMenuItem>;
3241
+ parseResponse(data: unknown, rawResponse: Response): Paginated<OrderMenuItem>;
3243
3242
  }
3244
3243
 
3245
3244
  declare const advanceOrderPreparationStatusInputSchema: z.ZodUndefined;
@@ -5430,7 +5429,653 @@ declare class GetOrders extends AbstractApiRequest<typeof getOrdersInputSchema,
5430
5429
  query?: OrdersQueryParams;
5431
5430
  });
5432
5431
  getPath(): string;
5433
- parseResponse(data: unknown, rawResponse: AxiosResponse): Paginated<Order>;
5432
+ parseResponse(data: unknown, rawResponse: Response): Paginated<Order>;
5433
+ }
5434
+
5435
+ declare const getPointOfSaleOrdersQuerySchema: z.ZodObject<{
5436
+ type: z.ZodOptional<z.ZodEnum<{
5437
+ delivery: "delivery";
5438
+ take_away: "take_away";
5439
+ kitchen: "kitchen";
5440
+ }>>;
5441
+ 'type[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
5442
+ delivery: "delivery";
5443
+ take_away: "take_away";
5444
+ kitchen: "kitchen";
5445
+ }>>>;
5446
+ source: z.ZodOptional<z.ZodEnum<{
5447
+ application: "application";
5448
+ ecommerce: "ecommerce";
5449
+ partner: "partner";
5450
+ }>>;
5451
+ 'source[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
5452
+ application: "application";
5453
+ ecommerce: "ecommerce";
5454
+ partner: "partner";
5455
+ }>>>;
5456
+ status: z.ZodOptional<z.ZodEnum<{
5457
+ pending: "pending";
5458
+ confirmed: "confirmed";
5459
+ rejected: "rejected";
5460
+ }>>;
5461
+ 'status[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
5462
+ pending: "pending";
5463
+ confirmed: "confirmed";
5464
+ rejected: "rejected";
5465
+ }>>>;
5466
+ preparationStatus: z.ZodOptional<z.ZodEnum<{
5467
+ to_prepare: "to_prepare";
5468
+ in_preparation: "in_preparation";
5469
+ done: "done";
5470
+ }>>;
5471
+ 'preparationStatus[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
5472
+ to_prepare: "to_prepare";
5473
+ in_preparation: "in_preparation";
5474
+ done: "done";
5475
+ }>>>;
5476
+ paymentMethod: z.ZodOptional<z.ZodEnum<{
5477
+ stripe: "stripe";
5478
+ bank_transfer: "bank_transfer";
5479
+ cash: "cash";
5480
+ credit_card: "credit_card";
5481
+ }>>;
5482
+ 'paymentMethod[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
5483
+ stripe: "stripe";
5484
+ bank_transfer: "bank_transfer";
5485
+ cash: "cash";
5486
+ credit_card: "credit_card";
5487
+ }>>>;
5488
+ paymentStatus: z.ZodOptional<z.ZodEnum<{
5489
+ pending: "pending";
5490
+ pending_verification: "pending_verification";
5491
+ paid: "paid";
5492
+ canceled: "canceled";
5493
+ refunded: "refunded";
5494
+ failed: "failed";
5495
+ }>>;
5496
+ 'paymentStatus[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
5497
+ pending: "pending";
5498
+ pending_verification: "pending_verification";
5499
+ paid: "paid";
5500
+ canceled: "canceled";
5501
+ refunded: "refunded";
5502
+ failed: "failed";
5503
+ }>>>;
5504
+ 'customerInfo.firstName': z.ZodOptional<z.ZodString>;
5505
+ 'customerInfo.lastName': z.ZodOptional<z.ZodString>;
5506
+ 'customerInfo.email': z.ZodOptional<z.ZodString>;
5507
+ 'customerInfo.email[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
5508
+ 'customerInfo.phoneNumber': z.ZodOptional<z.ZodString>;
5509
+ 'customerInfo.phoneNumber[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
5510
+ 'totalCountableItems[between]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5511
+ 'totalCountableItems[gt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5512
+ 'totalCountableItems[gte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5513
+ 'totalCountableItems[lt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5514
+ 'totalCountableItems[lte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5515
+ 'amount[between]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5516
+ 'amount[gt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5517
+ 'amount[gte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5518
+ 'amount[lt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5519
+ 'amount[lte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5520
+ 'discount[between]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5521
+ 'discount[gt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5522
+ 'discount[gte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5523
+ 'discount[lt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5524
+ 'discount[lte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5525
+ 'totalAmount[between]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5526
+ 'totalAmount[gt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5527
+ 'totalAmount[gte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5528
+ 'totalAmount[lt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5529
+ 'totalAmount[lte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5530
+ 'preparationTime[before]': z.ZodOptional<z.ZodString>;
5531
+ 'preparationTime[strictly_before]': z.ZodOptional<z.ZodString>;
5532
+ 'preparationTime[after]': z.ZodOptional<z.ZodString>;
5533
+ 'preparationTime[strictly_after]': z.ZodOptional<z.ZodString>;
5534
+ 'preparationStartedAt[before]': z.ZodOptional<z.ZodString>;
5535
+ 'preparationStartedAt[strictly_before]': z.ZodOptional<z.ZodString>;
5536
+ 'preparationStartedAt[after]': z.ZodOptional<z.ZodString>;
5537
+ 'preparationStartedAt[strictly_after]': z.ZodOptional<z.ZodString>;
5538
+ 'preparationEndedAt[before]': z.ZodOptional<z.ZodString>;
5539
+ 'preparationEndedAt[strictly_before]': z.ZodOptional<z.ZodString>;
5540
+ 'preparationEndedAt[after]': z.ZodOptional<z.ZodString>;
5541
+ 'preparationEndedAt[strictly_after]': z.ZodOptional<z.ZodString>;
5542
+ 'requestedDeliveryTime[before]': z.ZodOptional<z.ZodString>;
5543
+ 'requestedDeliveryTime[strictly_before]': z.ZodOptional<z.ZodString>;
5544
+ 'requestedDeliveryTime[after]': z.ZodOptional<z.ZodString>;
5545
+ 'requestedDeliveryTime[strictly_after]': z.ZodOptional<z.ZodString>;
5546
+ 'deliveryStartedAt[before]': z.ZodOptional<z.ZodString>;
5547
+ 'deliveryStartedAt[strictly_before]': z.ZodOptional<z.ZodString>;
5548
+ 'deliveryStartedAt[after]': z.ZodOptional<z.ZodString>;
5549
+ 'deliveryStartedAt[strictly_after]': z.ZodOptional<z.ZodString>;
5550
+ 'requestedCollectionTime[before]': z.ZodOptional<z.ZodString>;
5551
+ 'requestedCollectionTime[strictly_before]': z.ZodOptional<z.ZodString>;
5552
+ 'requestedCollectionTime[after]': z.ZodOptional<z.ZodString>;
5553
+ 'requestedCollectionTime[strictly_after]': z.ZodOptional<z.ZodString>;
5554
+ 'collectedAt[before]': z.ZodOptional<z.ZodString>;
5555
+ 'collectedAt[strictly_before]': z.ZodOptional<z.ZodString>;
5556
+ 'collectedAt[after]': z.ZodOptional<z.ZodString>;
5557
+ 'collectedAt[strictly_after]': z.ZodOptional<z.ZodString>;
5558
+ 'finalDeliveryTime[before]': z.ZodOptional<z.ZodString>;
5559
+ 'finalDeliveryTime[strictly_before]': z.ZodOptional<z.ZodString>;
5560
+ 'finalDeliveryTime[after]': z.ZodOptional<z.ZodString>;
5561
+ 'finalDeliveryTime[strictly_after]': z.ZodOptional<z.ZodString>;
5562
+ 'finalCollectionTime[before]': z.ZodOptional<z.ZodString>;
5563
+ 'finalCollectionTime[strictly_before]': z.ZodOptional<z.ZodString>;
5564
+ 'finalCollectionTime[after]': z.ZodOptional<z.ZodString>;
5565
+ 'finalCollectionTime[strictly_after]': z.ZodOptional<z.ZodString>;
5566
+ 'deliveredAt[before]': z.ZodOptional<z.ZodString>;
5567
+ 'deliveredAt[strictly_before]': z.ZodOptional<z.ZodString>;
5568
+ 'deliveredAt[after]': z.ZodOptional<z.ZodString>;
5569
+ 'deliveredAt[strictly_after]': z.ZodOptional<z.ZodString>;
5570
+ 'order[createdAt]': z.ZodOptional<z.ZodEnum<{
5571
+ asc: "asc";
5572
+ desc: "desc";
5573
+ }>>;
5574
+ 'order[updatedAt]': z.ZodOptional<z.ZodEnum<{
5575
+ asc: "asc";
5576
+ desc: "desc";
5577
+ }>>;
5578
+ 'order[amount]': z.ZodOptional<z.ZodEnum<{
5579
+ asc: "asc";
5580
+ desc: "desc";
5581
+ }>>;
5582
+ 'order[discount]': z.ZodOptional<z.ZodEnum<{
5583
+ asc: "asc";
5584
+ desc: "desc";
5585
+ }>>;
5586
+ 'order[totalAmount]': z.ZodOptional<z.ZodEnum<{
5587
+ asc: "asc";
5588
+ desc: "desc";
5589
+ }>>;
5590
+ 'order[preparationStatus]': z.ZodOptional<z.ZodEnum<{
5591
+ asc: "asc";
5592
+ desc: "desc";
5593
+ }>>;
5594
+ 'order[preparationTime]': z.ZodOptional<z.ZodEnum<{
5595
+ asc: "asc";
5596
+ desc: "desc";
5597
+ }>>;
5598
+ 'order[preparationStartedAt]': z.ZodOptional<z.ZodEnum<{
5599
+ asc: "asc";
5600
+ desc: "desc";
5601
+ }>>;
5602
+ 'order[preparationEndedAt]': z.ZodOptional<z.ZodEnum<{
5603
+ asc: "asc";
5604
+ desc: "desc";
5605
+ }>>;
5606
+ 'order[requestedDeliveryTime]': z.ZodOptional<z.ZodEnum<{
5607
+ asc: "asc";
5608
+ desc: "desc";
5609
+ }>>;
5610
+ 'order[requestedCollectionTime]': z.ZodOptional<z.ZodEnum<{
5611
+ asc: "asc";
5612
+ desc: "desc";
5613
+ }>>;
5614
+ 'order[collectedAt]': z.ZodOptional<z.ZodEnum<{
5615
+ asc: "asc";
5616
+ desc: "desc";
5617
+ }>>;
5618
+ 'order[finalDeliveryTime]': z.ZodOptional<z.ZodEnum<{
5619
+ asc: "asc";
5620
+ desc: "desc";
5621
+ }>>;
5622
+ 'order[finalCollectionTime]': z.ZodOptional<z.ZodEnum<{
5623
+ asc: "asc";
5624
+ desc: "desc";
5625
+ }>>;
5626
+ 'order[deliveredAt]': z.ZodOptional<z.ZodEnum<{
5627
+ asc: "asc";
5628
+ desc: "desc";
5629
+ }>>;
5630
+ page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5631
+ 'createdAt[before]': z.ZodOptional<z.ZodString>;
5632
+ 'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
5633
+ 'createdAt[after]': z.ZodOptional<z.ZodString>;
5634
+ 'createdAt[strictly_after]': z.ZodOptional<z.ZodString>;
5635
+ 'updatedAt[before]': z.ZodOptional<z.ZodString>;
5636
+ 'updatedAt[strictly_before]': z.ZodOptional<z.ZodString>;
5637
+ 'updatedAt[after]': z.ZodOptional<z.ZodString>;
5638
+ 'updatedAt[strictly_after]': z.ZodOptional<z.ZodString>;
5639
+ }, z.core.$strip>;
5640
+ type GetPointOfSaleOrdersQueryParams = z.infer<typeof getPointOfSaleOrdersQuerySchema>;
5641
+ declare const getPointOfSaleOrdersInputSchema: z.ZodUndefined;
5642
+ type GetPointOfSaleOrdersInput = z.infer<typeof getPointOfSaleOrdersInputSchema>;
5643
+ declare const getPointOfSaleOrdersResponseSchema: z.ZodObject<{
5644
+ data: z.ZodArray<z.ZodObject<{
5645
+ id: z.ZodString;
5646
+ payment: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/payments/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/payments/:id"> | null, unknown>>;
5647
+ paymentMethod: z.ZodNullable<z.ZodEnum<{
5648
+ stripe: "stripe";
5649
+ bank_transfer: "bank_transfer";
5650
+ cash: "cash";
5651
+ credit_card: "credit_card";
5652
+ }>>;
5653
+ paymentStatus: z.ZodNullable<z.ZodEnum<{
5654
+ pending: "pending";
5655
+ pending_verification: "pending_verification";
5656
+ paid: "paid";
5657
+ canceled: "canceled";
5658
+ refunded: "refunded";
5659
+ failed: "failed";
5660
+ }>>;
5661
+ type: z.ZodEnum<{
5662
+ delivery: "delivery";
5663
+ take_away: "take_away";
5664
+ kitchen: "kitchen";
5665
+ }>;
5666
+ source: z.ZodEnum<{
5667
+ application: "application";
5668
+ ecommerce: "ecommerce";
5669
+ partner: "partner";
5670
+ }>;
5671
+ partner: z.ZodNullable<z.ZodString>;
5672
+ partnerIdentifier: z.ZodNullable<z.ZodString>;
5673
+ sequenceId: z.ZodNullable<z.ZodString>;
5674
+ displayId: z.ZodNullable<z.ZodString>;
5675
+ customerInfo: z.ZodObject<{
5676
+ firstName: z.ZodNullable<z.ZodString>;
5677
+ lastName: z.ZodNullable<z.ZodString>;
5678
+ email: z.ZodNullable<z.ZodEmail>;
5679
+ phoneNumber: z.ZodNullable<z.ZodString>;
5680
+ contactNumber: z.ZodNullable<z.ZodString>;
5681
+ contactAccessCode: z.ZodNullable<z.ZodString>;
5682
+ }, z.core.$strict>;
5683
+ billingInfo: z.ZodNullable<z.ZodObject<{
5684
+ businessName: z.ZodString;
5685
+ vat: z.ZodString;
5686
+ taxCode: z.ZodString;
5687
+ billingData: z.ZodObject<{
5688
+ sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5689
+ pec: z.ZodNullable<z.ZodOptional<z.ZodEmail>>;
5690
+ }, z.core.$strip>;
5691
+ }, z.core.$strip>>;
5692
+ address: z.ZodNullable<z.ZodObject<{
5693
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5694
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5695
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5696
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5697
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5698
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5699
+ }, z.core.$strip>>;
5700
+ location: z.ZodNullable<z.ZodObject<{
5701
+ latitude: z.ZodNumber;
5702
+ longitude: z.ZodNumber;
5703
+ }, z.core.$strip>>;
5704
+ status: z.ZodEnum<{
5705
+ pending: "pending";
5706
+ confirmed: "confirmed";
5707
+ rejected: "rejected";
5708
+ }>;
5709
+ preparationStatus: z.ZodEnum<{
5710
+ to_prepare: "to_prepare";
5711
+ in_preparation: "in_preparation";
5712
+ done: "done";
5713
+ }>;
5714
+ preparationTime: z.ZodNullable<z.ZodString>;
5715
+ preparationStartedAt: z.ZodNullable<z.ZodString>;
5716
+ preparationEndedAt: z.ZodNullable<z.ZodString>;
5717
+ requestedDeliveryTime: z.ZodNullable<z.ZodString>;
5718
+ finalDeliveryTime: z.ZodNullable<z.ZodString>;
5719
+ deliveryStartedAt: z.ZodNullable<z.ZodString>;
5720
+ deliveredAt: z.ZodNullable<z.ZodString>;
5721
+ requestedCollectionTime: z.ZodNullable<z.ZodString>;
5722
+ finalCollectionTime: z.ZodNullable<z.ZodString>;
5723
+ collectedAt: z.ZodNullable<z.ZodString>;
5724
+ totalCountableItems: z.ZodNumber;
5725
+ amount: z.ZodString;
5726
+ netAmount: z.ZodString;
5727
+ taxAmount: z.ZodString;
5728
+ discount: z.ZodString;
5729
+ feeAmount: z.ZodString;
5730
+ feeNetAmount: z.ZodString;
5731
+ feeTaxAmount: z.ZodString;
5732
+ totalAmount: z.ZodString;
5733
+ totalNetAmount: z.ZodString;
5734
+ totalTaxAmount: z.ZodString;
5735
+ notes: z.ZodNullable<z.ZodString>;
5736
+ deliveryNotes: z.ZodNullable<z.ZodString>;
5737
+ kitchenNotes: z.ZodNullable<z.ZodString>;
5738
+ maximumAcceptanceDate: z.ZodNullable<z.ZodString>;
5739
+ acceptedAt: z.ZodNullable<z.ZodString>;
5740
+ createdAt: z.ZodString;
5741
+ updatedAt: z.ZodString;
5742
+ }, z.core.$strip>>;
5743
+ pagination: z.ZodObject<{
5744
+ from: z.ZodNumber;
5745
+ to: z.ZodNumber;
5746
+ itemsPerPage: z.ZodNumber;
5747
+ totalItems: z.ZodNumber;
5748
+ currentPage: z.ZodNumber;
5749
+ lastPage: z.ZodNumber;
5750
+ }, z.core.$strip>;
5751
+ }, z.core.$strip>;
5752
+ type GetPointOfSaleOrdersResponse = z.infer<typeof getPointOfSaleOrdersResponseSchema>;
5753
+ declare class GetPointOfSaleOrders extends AbstractApiRequest<typeof getPointOfSaleOrdersInputSchema, typeof getPointOfSaleOrdersResponseSchema, GetPointOfSaleOrdersQueryParams> {
5754
+ readonly method = "GET";
5755
+ readonly contentType = "application/json";
5756
+ readonly accept = "application/json";
5757
+ readonly inputSchema: z.ZodUndefined;
5758
+ readonly outputSchema: z.ZodObject<{
5759
+ data: z.ZodArray<z.ZodObject<{
5760
+ id: z.ZodString;
5761
+ payment: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/payments/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/payments/:id"> | null, unknown>>;
5762
+ paymentMethod: z.ZodNullable<z.ZodEnum<{
5763
+ stripe: "stripe";
5764
+ bank_transfer: "bank_transfer";
5765
+ cash: "cash";
5766
+ credit_card: "credit_card";
5767
+ }>>;
5768
+ paymentStatus: z.ZodNullable<z.ZodEnum<{
5769
+ pending: "pending";
5770
+ pending_verification: "pending_verification";
5771
+ paid: "paid";
5772
+ canceled: "canceled";
5773
+ refunded: "refunded";
5774
+ failed: "failed";
5775
+ }>>;
5776
+ type: z.ZodEnum<{
5777
+ delivery: "delivery";
5778
+ take_away: "take_away";
5779
+ kitchen: "kitchen";
5780
+ }>;
5781
+ source: z.ZodEnum<{
5782
+ application: "application";
5783
+ ecommerce: "ecommerce";
5784
+ partner: "partner";
5785
+ }>;
5786
+ partner: z.ZodNullable<z.ZodString>;
5787
+ partnerIdentifier: z.ZodNullable<z.ZodString>;
5788
+ sequenceId: z.ZodNullable<z.ZodString>;
5789
+ displayId: z.ZodNullable<z.ZodString>;
5790
+ customerInfo: z.ZodObject<{
5791
+ firstName: z.ZodNullable<z.ZodString>;
5792
+ lastName: z.ZodNullable<z.ZodString>;
5793
+ email: z.ZodNullable<z.ZodEmail>;
5794
+ phoneNumber: z.ZodNullable<z.ZodString>;
5795
+ contactNumber: z.ZodNullable<z.ZodString>;
5796
+ contactAccessCode: z.ZodNullable<z.ZodString>;
5797
+ }, z.core.$strict>;
5798
+ billingInfo: z.ZodNullable<z.ZodObject<{
5799
+ businessName: z.ZodString;
5800
+ vat: z.ZodString;
5801
+ taxCode: z.ZodString;
5802
+ billingData: z.ZodObject<{
5803
+ sdi: z.ZodNullable<z.ZodOptional<z.ZodString>>;
5804
+ pec: z.ZodNullable<z.ZodOptional<z.ZodEmail>>;
5805
+ }, z.core.$strip>;
5806
+ }, z.core.$strip>>;
5807
+ address: z.ZodNullable<z.ZodObject<{
5808
+ line1: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5809
+ line2: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5810
+ city: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5811
+ region: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5812
+ postalCode: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5813
+ country: z.ZodOptional<z.ZodNullable<z.ZodString>>;
5814
+ }, z.core.$strip>>;
5815
+ location: z.ZodNullable<z.ZodObject<{
5816
+ latitude: z.ZodNumber;
5817
+ longitude: z.ZodNumber;
5818
+ }, z.core.$strip>>;
5819
+ status: z.ZodEnum<{
5820
+ pending: "pending";
5821
+ confirmed: "confirmed";
5822
+ rejected: "rejected";
5823
+ }>;
5824
+ preparationStatus: z.ZodEnum<{
5825
+ to_prepare: "to_prepare";
5826
+ in_preparation: "in_preparation";
5827
+ done: "done";
5828
+ }>;
5829
+ preparationTime: z.ZodNullable<z.ZodString>;
5830
+ preparationStartedAt: z.ZodNullable<z.ZodString>;
5831
+ preparationEndedAt: z.ZodNullable<z.ZodString>;
5832
+ requestedDeliveryTime: z.ZodNullable<z.ZodString>;
5833
+ finalDeliveryTime: z.ZodNullable<z.ZodString>;
5834
+ deliveryStartedAt: z.ZodNullable<z.ZodString>;
5835
+ deliveredAt: z.ZodNullable<z.ZodString>;
5836
+ requestedCollectionTime: z.ZodNullable<z.ZodString>;
5837
+ finalCollectionTime: z.ZodNullable<z.ZodString>;
5838
+ collectedAt: z.ZodNullable<z.ZodString>;
5839
+ totalCountableItems: z.ZodNumber;
5840
+ amount: z.ZodString;
5841
+ netAmount: z.ZodString;
5842
+ taxAmount: z.ZodString;
5843
+ discount: z.ZodString;
5844
+ feeAmount: z.ZodString;
5845
+ feeNetAmount: z.ZodString;
5846
+ feeTaxAmount: z.ZodString;
5847
+ totalAmount: z.ZodString;
5848
+ totalNetAmount: z.ZodString;
5849
+ totalTaxAmount: z.ZodString;
5850
+ notes: z.ZodNullable<z.ZodString>;
5851
+ deliveryNotes: z.ZodNullable<z.ZodString>;
5852
+ kitchenNotes: z.ZodNullable<z.ZodString>;
5853
+ maximumAcceptanceDate: z.ZodNullable<z.ZodString>;
5854
+ acceptedAt: z.ZodNullable<z.ZodString>;
5855
+ createdAt: z.ZodString;
5856
+ updatedAt: z.ZodString;
5857
+ }, z.core.$strip>>;
5858
+ pagination: z.ZodObject<{
5859
+ from: z.ZodNumber;
5860
+ to: z.ZodNumber;
5861
+ itemsPerPage: z.ZodNumber;
5862
+ totalItems: z.ZodNumber;
5863
+ currentPage: z.ZodNumber;
5864
+ lastPage: z.ZodNumber;
5865
+ }, z.core.$strip>;
5866
+ }, z.core.$strip>;
5867
+ readonly querySchema: z.ZodObject<{
5868
+ type: z.ZodOptional<z.ZodEnum<{
5869
+ delivery: "delivery";
5870
+ take_away: "take_away";
5871
+ kitchen: "kitchen";
5872
+ }>>;
5873
+ 'type[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
5874
+ delivery: "delivery";
5875
+ take_away: "take_away";
5876
+ kitchen: "kitchen";
5877
+ }>>>;
5878
+ source: z.ZodOptional<z.ZodEnum<{
5879
+ application: "application";
5880
+ ecommerce: "ecommerce";
5881
+ partner: "partner";
5882
+ }>>;
5883
+ 'source[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
5884
+ application: "application";
5885
+ ecommerce: "ecommerce";
5886
+ partner: "partner";
5887
+ }>>>;
5888
+ status: z.ZodOptional<z.ZodEnum<{
5889
+ pending: "pending";
5890
+ confirmed: "confirmed";
5891
+ rejected: "rejected";
5892
+ }>>;
5893
+ 'status[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
5894
+ pending: "pending";
5895
+ confirmed: "confirmed";
5896
+ rejected: "rejected";
5897
+ }>>>;
5898
+ preparationStatus: z.ZodOptional<z.ZodEnum<{
5899
+ to_prepare: "to_prepare";
5900
+ in_preparation: "in_preparation";
5901
+ done: "done";
5902
+ }>>;
5903
+ 'preparationStatus[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
5904
+ to_prepare: "to_prepare";
5905
+ in_preparation: "in_preparation";
5906
+ done: "done";
5907
+ }>>>;
5908
+ paymentMethod: z.ZodOptional<z.ZodEnum<{
5909
+ stripe: "stripe";
5910
+ bank_transfer: "bank_transfer";
5911
+ cash: "cash";
5912
+ credit_card: "credit_card";
5913
+ }>>;
5914
+ 'paymentMethod[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
5915
+ stripe: "stripe";
5916
+ bank_transfer: "bank_transfer";
5917
+ cash: "cash";
5918
+ credit_card: "credit_card";
5919
+ }>>>;
5920
+ paymentStatus: z.ZodOptional<z.ZodEnum<{
5921
+ pending: "pending";
5922
+ pending_verification: "pending_verification";
5923
+ paid: "paid";
5924
+ canceled: "canceled";
5925
+ refunded: "refunded";
5926
+ failed: "failed";
5927
+ }>>;
5928
+ 'paymentStatus[]': z.ZodOptional<z.ZodArray<z.ZodEnum<{
5929
+ pending: "pending";
5930
+ pending_verification: "pending_verification";
5931
+ paid: "paid";
5932
+ canceled: "canceled";
5933
+ refunded: "refunded";
5934
+ failed: "failed";
5935
+ }>>>;
5936
+ 'customerInfo.firstName': z.ZodOptional<z.ZodString>;
5937
+ 'customerInfo.lastName': z.ZodOptional<z.ZodString>;
5938
+ 'customerInfo.email': z.ZodOptional<z.ZodString>;
5939
+ 'customerInfo.email[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
5940
+ 'customerInfo.phoneNumber': z.ZodOptional<z.ZodString>;
5941
+ 'customerInfo.phoneNumber[]': z.ZodOptional<z.ZodArray<z.ZodString>>;
5942
+ 'totalCountableItems[between]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5943
+ 'totalCountableItems[gt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5944
+ 'totalCountableItems[gte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5945
+ 'totalCountableItems[lt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5946
+ 'totalCountableItems[lte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5947
+ 'amount[between]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5948
+ 'amount[gt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5949
+ 'amount[gte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5950
+ 'amount[lt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5951
+ 'amount[lte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5952
+ 'discount[between]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5953
+ 'discount[gt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5954
+ 'discount[gte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5955
+ 'discount[lt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5956
+ 'discount[lte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5957
+ 'totalAmount[between]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5958
+ 'totalAmount[gt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5959
+ 'totalAmount[gte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5960
+ 'totalAmount[lt]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5961
+ 'totalAmount[lte]': z.ZodOptional<z.ZodCoercedNumber<unknown>>;
5962
+ 'preparationTime[before]': z.ZodOptional<z.ZodString>;
5963
+ 'preparationTime[strictly_before]': z.ZodOptional<z.ZodString>;
5964
+ 'preparationTime[after]': z.ZodOptional<z.ZodString>;
5965
+ 'preparationTime[strictly_after]': z.ZodOptional<z.ZodString>;
5966
+ 'preparationStartedAt[before]': z.ZodOptional<z.ZodString>;
5967
+ 'preparationStartedAt[strictly_before]': z.ZodOptional<z.ZodString>;
5968
+ 'preparationStartedAt[after]': z.ZodOptional<z.ZodString>;
5969
+ 'preparationStartedAt[strictly_after]': z.ZodOptional<z.ZodString>;
5970
+ 'preparationEndedAt[before]': z.ZodOptional<z.ZodString>;
5971
+ 'preparationEndedAt[strictly_before]': z.ZodOptional<z.ZodString>;
5972
+ 'preparationEndedAt[after]': z.ZodOptional<z.ZodString>;
5973
+ 'preparationEndedAt[strictly_after]': z.ZodOptional<z.ZodString>;
5974
+ 'requestedDeliveryTime[before]': z.ZodOptional<z.ZodString>;
5975
+ 'requestedDeliveryTime[strictly_before]': z.ZodOptional<z.ZodString>;
5976
+ 'requestedDeliveryTime[after]': z.ZodOptional<z.ZodString>;
5977
+ 'requestedDeliveryTime[strictly_after]': z.ZodOptional<z.ZodString>;
5978
+ 'deliveryStartedAt[before]': z.ZodOptional<z.ZodString>;
5979
+ 'deliveryStartedAt[strictly_before]': z.ZodOptional<z.ZodString>;
5980
+ 'deliveryStartedAt[after]': z.ZodOptional<z.ZodString>;
5981
+ 'deliveryStartedAt[strictly_after]': z.ZodOptional<z.ZodString>;
5982
+ 'requestedCollectionTime[before]': z.ZodOptional<z.ZodString>;
5983
+ 'requestedCollectionTime[strictly_before]': z.ZodOptional<z.ZodString>;
5984
+ 'requestedCollectionTime[after]': z.ZodOptional<z.ZodString>;
5985
+ 'requestedCollectionTime[strictly_after]': z.ZodOptional<z.ZodString>;
5986
+ 'collectedAt[before]': z.ZodOptional<z.ZodString>;
5987
+ 'collectedAt[strictly_before]': z.ZodOptional<z.ZodString>;
5988
+ 'collectedAt[after]': z.ZodOptional<z.ZodString>;
5989
+ 'collectedAt[strictly_after]': z.ZodOptional<z.ZodString>;
5990
+ 'finalDeliveryTime[before]': z.ZodOptional<z.ZodString>;
5991
+ 'finalDeliveryTime[strictly_before]': z.ZodOptional<z.ZodString>;
5992
+ 'finalDeliveryTime[after]': z.ZodOptional<z.ZodString>;
5993
+ 'finalDeliveryTime[strictly_after]': z.ZodOptional<z.ZodString>;
5994
+ 'finalCollectionTime[before]': z.ZodOptional<z.ZodString>;
5995
+ 'finalCollectionTime[strictly_before]': z.ZodOptional<z.ZodString>;
5996
+ 'finalCollectionTime[after]': z.ZodOptional<z.ZodString>;
5997
+ 'finalCollectionTime[strictly_after]': z.ZodOptional<z.ZodString>;
5998
+ 'deliveredAt[before]': z.ZodOptional<z.ZodString>;
5999
+ 'deliveredAt[strictly_before]': z.ZodOptional<z.ZodString>;
6000
+ 'deliveredAt[after]': z.ZodOptional<z.ZodString>;
6001
+ 'deliveredAt[strictly_after]': z.ZodOptional<z.ZodString>;
6002
+ 'order[createdAt]': z.ZodOptional<z.ZodEnum<{
6003
+ asc: "asc";
6004
+ desc: "desc";
6005
+ }>>;
6006
+ 'order[updatedAt]': z.ZodOptional<z.ZodEnum<{
6007
+ asc: "asc";
6008
+ desc: "desc";
6009
+ }>>;
6010
+ 'order[amount]': z.ZodOptional<z.ZodEnum<{
6011
+ asc: "asc";
6012
+ desc: "desc";
6013
+ }>>;
6014
+ 'order[discount]': z.ZodOptional<z.ZodEnum<{
6015
+ asc: "asc";
6016
+ desc: "desc";
6017
+ }>>;
6018
+ 'order[totalAmount]': z.ZodOptional<z.ZodEnum<{
6019
+ asc: "asc";
6020
+ desc: "desc";
6021
+ }>>;
6022
+ 'order[preparationStatus]': z.ZodOptional<z.ZodEnum<{
6023
+ asc: "asc";
6024
+ desc: "desc";
6025
+ }>>;
6026
+ 'order[preparationTime]': z.ZodOptional<z.ZodEnum<{
6027
+ asc: "asc";
6028
+ desc: "desc";
6029
+ }>>;
6030
+ 'order[preparationStartedAt]': z.ZodOptional<z.ZodEnum<{
6031
+ asc: "asc";
6032
+ desc: "desc";
6033
+ }>>;
6034
+ 'order[preparationEndedAt]': z.ZodOptional<z.ZodEnum<{
6035
+ asc: "asc";
6036
+ desc: "desc";
6037
+ }>>;
6038
+ 'order[requestedDeliveryTime]': z.ZodOptional<z.ZodEnum<{
6039
+ asc: "asc";
6040
+ desc: "desc";
6041
+ }>>;
6042
+ 'order[requestedCollectionTime]': z.ZodOptional<z.ZodEnum<{
6043
+ asc: "asc";
6044
+ desc: "desc";
6045
+ }>>;
6046
+ 'order[collectedAt]': z.ZodOptional<z.ZodEnum<{
6047
+ asc: "asc";
6048
+ desc: "desc";
6049
+ }>>;
6050
+ 'order[finalDeliveryTime]': z.ZodOptional<z.ZodEnum<{
6051
+ asc: "asc";
6052
+ desc: "desc";
6053
+ }>>;
6054
+ 'order[finalCollectionTime]': z.ZodOptional<z.ZodEnum<{
6055
+ asc: "asc";
6056
+ desc: "desc";
6057
+ }>>;
6058
+ 'order[deliveredAt]': z.ZodOptional<z.ZodEnum<{
6059
+ asc: "asc";
6060
+ desc: "desc";
6061
+ }>>;
6062
+ page: z.ZodOptional<z.ZodCoercedNumber<unknown>>;
6063
+ 'createdAt[before]': z.ZodOptional<z.ZodString>;
6064
+ 'createdAt[strictly_before]': z.ZodOptional<z.ZodString>;
6065
+ 'createdAt[after]': z.ZodOptional<z.ZodString>;
6066
+ 'createdAt[strictly_after]': z.ZodOptional<z.ZodString>;
6067
+ 'updatedAt[before]': z.ZodOptional<z.ZodString>;
6068
+ 'updatedAt[strictly_before]': z.ZodOptional<z.ZodString>;
6069
+ 'updatedAt[after]': z.ZodOptional<z.ZodString>;
6070
+ 'updatedAt[strictly_after]': z.ZodOptional<z.ZodString>;
6071
+ }, z.core.$strip>;
6072
+ readonly headersSchema: undefined;
6073
+ private readonly pointOfSaleId;
6074
+ constructor(pointOfSaleId: string, options?: {
6075
+ query?: OrdersQueryParams;
6076
+ });
6077
+ getPath(): string;
6078
+ parseResponse(data: unknown, rawResponse: Response): Paginated<Order>;
5434
6079
  }
5435
6080
 
5436
6081
  declare const updateOrderInputSchema: z.ZodObject<{
@@ -5940,4 +6585,4 @@ type BundleIri = z.infer<typeof bundleIriSchema>;
5940
6585
  declare const bundleNullableIriSchema: z.ZodType<_deliverart_sdk_js_global_types.IriObject<"/bundles/:id"> | null, unknown, z.core.$ZodTypeInternals<_deliverart_sdk_js_global_types.IriObject<"/bundles/:id"> | null, unknown>>;
5941
6586
  type BundleNullableIri = z.infer<typeof bundleNullableIriSchema>;
5942
6587
 
5943
- export { AdvanceOrderPreparationStatus, type AdvanceOrderPreparationStatusInput, type AdvanceOrderPreparationStatusResponse, type Bundle, type BundleBundleBrokenReason, type BundleDetails, type BundleIri, type BundleNullableIri, type BundleStatus, type BundleType, type BundlesQueryParams, ConfirmOrder, type ConfirmOrderInput, type ConfirmOrderResponse, CreateBundle, type CreateBundleInput, type CreateBundleResponse, CreateOrder, type CreateOrderInput, type CreateOrderResponse, DeleteBundle, DeleteOrder, GetBundleDetails, type GetBundleDetailsInput, type GetBundleDetailsResponse, GetBundles, type GetBundlesInput, type GetBundlesQueryParams, type GetBundlesResponse, GetOrderDetails, type GetOrderDetailsInput, type GetOrderDetailsResponse, GetOrderMenuItemDetails, type GetOrderMenuItemDetailsInput, type GetOrderMenuItemDetailsResponse, GetOrderMenuItemMenuItems, type GetOrderMenuItemModifierDetailsInput, type GetOrderMenuItemModifierDetailsResponse, GetOrderMenuItemModifierMenuItemModifiers, GetOrderMenuItemModifierModifierDetails, type GetOrderMenuItemModifiersInput, type GetOrderMenuItemModifiersQueryParams, type GetOrderMenuItemModifiersResponse, type GetOrderMenuItemsInput, type GetOrderMenuItemsQueryParams, type GetOrderMenuItemsResponse, GetOrders, type GetOrdersInput, type GetOrdersQueryParams, type GetOrdersResponse, type Order, type OrderBillingInfo, type OrderCustomerInfo, type OrderDetails, type OrderFeeDto, type OrderIri, type OrderMenuItem, type OrderMenuItemAction, type OrderMenuItemDetails, type OrderMenuItemIri, type OrderMenuItemModifier, type OrderMenuItemModifierDetails, type OrderMenuItemModifierIri, type OrderMenuItemModifierNullableIri, type OrderMenuItemModifiersQueryParams, type OrderMenuItemNullableIri, type OrderMenuItemsQueryParams, type OrderNullableIri, type OrderPreparationStatus, type OrderSource, type OrderStatus, type OrderType, type OrdersQueryParams, UpdateBundle, type UpdateBundleInput, type UpdateBundleResponse, UpdateOrder, type UpdateOrderInput, type UpdateOrderResponse, advanceOrderPreparationStatusInputSchema, advanceOrderPreparationStatusResponseSchema, bundleBundleBrokenReasonSchema, bundleBundleBrokenReasons, bundleDetailsSchema, bundleIriSchema, bundleNullableIriSchema, bundleSchema, bundleStatusSchema, bundleStatuses, bundleTypeSchema, bundleTypes, bundlesQuerySchema, confirmOrderInputSchema, confirmOrderResponseSchema, createBundleInputSchema, createBundleResponseSchema, createOrderInputSchema, createOrderResponseSchema, deleteBundleInputSchema, deleteBundleResponseSchema, deleteOrderInputSchema, deleteOrderResponseSchema, getBundleDetailsInputSchema, getBundleDetailsResponseSchema, getBundlesInputSchema, getBundlesQuerySchema, getBundlesResponseSchema, getOrderDetailsInputSchema, getOrderDetailsResponseSchema, getOrderMenuItemDetailsInputSchema, getOrderMenuItemDetailsResponseSchema, getOrderMenuItemModifierDetailsInputSchema, getOrderMenuItemModifierDetailsResponseSchema, getOrderMenuItemModifiersInputSchema, getOrderMenuItemModifiersQuerySchema, getOrderMenuItemModifiersResponseSchema, getOrderMenuItemsInputSchema, getOrderMenuItemsQuerySchema, getOrderMenuItemsResponseSchema, getOrdersInputSchema, getOrdersQuerySchema, getOrdersResponseSchema, localeItemSchema, orderCustomerInfoSchema, orderDetailsSchema, orderFeeDtoSchema, orderIriSchema, orderMenuItemActionSchema, orderMenuItemActions, orderMenuItemDetailsSchema, orderMenuItemIriSchema, orderMenuItemModifierDetailsSchema, orderMenuItemModifierIriSchema, orderMenuItemModifierNullableIriSchema, orderMenuItemModifierSchema, orderMenuItemModifiersQuerySchema, orderMenuItemNullableIriSchema, orderMenuItemSchema, orderMenuItemsQuerySchema, orderNullableIriSchema, orderPreparationStatusSchema, orderPreparationStatuses, orderSchema, orderSourceSchema, orderSources, orderStatusSchema, orderStatuses, orderTypeSchema, orderTypes, ordersQuerySchema, updateBundleInputSchema, updateBundleResponseSchema, updateOrderInputSchema, updateOrderResponseSchema, writableBundleSchema, writableOrderSchema };
6588
+ export { AdvanceOrderPreparationStatus, type AdvanceOrderPreparationStatusInput, type AdvanceOrderPreparationStatusResponse, type Bundle, type BundleBundleBrokenReason, type BundleDetails, type BundleIri, type BundleNullableIri, type BundleStatus, type BundleType, type BundlesQueryParams, ConfirmOrder, type ConfirmOrderInput, type ConfirmOrderResponse, CreateBundle, type CreateBundleInput, type CreateBundleResponse, CreateOrder, type CreateOrderInput, type CreateOrderResponse, DeleteBundle, DeleteOrder, GetBundleDetails, type GetBundleDetailsInput, type GetBundleDetailsResponse, GetBundles, type GetBundlesInput, type GetBundlesQueryParams, type GetBundlesResponse, GetOrderDetails, type GetOrderDetailsInput, type GetOrderDetailsResponse, GetOrderMenuItemDetails, type GetOrderMenuItemDetailsInput, type GetOrderMenuItemDetailsResponse, GetOrderMenuItemMenuItems, type GetOrderMenuItemModifierDetailsInput, type GetOrderMenuItemModifierDetailsResponse, GetOrderMenuItemModifierMenuItemModifiers, GetOrderMenuItemModifierModifierDetails, type GetOrderMenuItemModifiersInput, type GetOrderMenuItemModifiersQueryParams, type GetOrderMenuItemModifiersResponse, type GetOrderMenuItemsInput, type GetOrderMenuItemsQueryParams, type GetOrderMenuItemsResponse, GetOrders, type GetOrdersInput, type GetOrdersQueryParams, type GetOrdersResponse, GetPointOfSaleOrders, type GetPointOfSaleOrdersInput, type GetPointOfSaleOrdersQueryParams, type GetPointOfSaleOrdersResponse, type Order, type OrderBillingInfo, type OrderCustomerInfo, type OrderDetails, type OrderFeeDto, type OrderIri, type OrderMenuItem, type OrderMenuItemAction, type OrderMenuItemDetails, type OrderMenuItemIri, type OrderMenuItemModifier, type OrderMenuItemModifierDetails, type OrderMenuItemModifierIri, type OrderMenuItemModifierNullableIri, type OrderMenuItemModifiersQueryParams, type OrderMenuItemNullableIri, type OrderMenuItemsQueryParams, type OrderNullableIri, type OrderPreparationStatus, type OrderSource, type OrderStatus, type OrderType, type OrdersQueryParams, UpdateBundle, type UpdateBundleInput, type UpdateBundleResponse, UpdateOrder, type UpdateOrderInput, type UpdateOrderResponse, advanceOrderPreparationStatusInputSchema, advanceOrderPreparationStatusResponseSchema, bundleBundleBrokenReasonSchema, bundleBundleBrokenReasons, bundleDetailsSchema, bundleIriSchema, bundleNullableIriSchema, bundleSchema, bundleStatusSchema, bundleStatuses, bundleTypeSchema, bundleTypes, bundlesQuerySchema, confirmOrderInputSchema, confirmOrderResponseSchema, createBundleInputSchema, createBundleResponseSchema, createOrderInputSchema, createOrderResponseSchema, deleteBundleInputSchema, deleteBundleResponseSchema, deleteOrderInputSchema, deleteOrderResponseSchema, getBundleDetailsInputSchema, getBundleDetailsResponseSchema, getBundlesInputSchema, getBundlesQuerySchema, getBundlesResponseSchema, getOrderDetailsInputSchema, getOrderDetailsResponseSchema, getOrderMenuItemDetailsInputSchema, getOrderMenuItemDetailsResponseSchema, getOrderMenuItemModifierDetailsInputSchema, getOrderMenuItemModifierDetailsResponseSchema, getOrderMenuItemModifiersInputSchema, getOrderMenuItemModifiersQuerySchema, getOrderMenuItemModifiersResponseSchema, getOrderMenuItemsInputSchema, getOrderMenuItemsQuerySchema, getOrderMenuItemsResponseSchema, getOrdersInputSchema, getOrdersQuerySchema, getOrdersResponseSchema, getPointOfSaleOrdersInputSchema, getPointOfSaleOrdersQuerySchema, getPointOfSaleOrdersResponseSchema, localeItemSchema, orderCustomerInfoSchema, orderDetailsSchema, orderFeeDtoSchema, orderIriSchema, orderMenuItemActionSchema, orderMenuItemActions, orderMenuItemDetailsSchema, orderMenuItemIriSchema, orderMenuItemModifierDetailsSchema, orderMenuItemModifierIriSchema, orderMenuItemModifierNullableIriSchema, orderMenuItemModifierSchema, orderMenuItemModifiersQuerySchema, orderMenuItemNullableIriSchema, orderMenuItemSchema, orderMenuItemsQuerySchema, orderNullableIriSchema, orderPreparationStatusSchema, orderPreparationStatuses, orderSchema, orderSourceSchema, orderSources, orderStatusSchema, orderStatuses, orderTypeSchema, orderTypes, ordersQuerySchema, updateBundleInputSchema, updateBundleResponseSchema, updateOrderInputSchema, updateOrderResponseSchema, writableBundleSchema, writableOrderSchema };