@commercengine/pos 0.3.4 → 0.3.6

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.
@@ -0,0 +1,1936 @@
1
+ //#region src/types/admin-pos.d.ts
2
+ /**
3
+ * This file was auto-generated by openapi-typescript.
4
+ * Do not make direct changes to the file.
5
+ */
6
+
7
+ interface paths {
8
+ "/pos/catalog/inventories": {
9
+ parameters: {
10
+ query?: never;
11
+ header?: never;
12
+ path?: never;
13
+ cookie?: never;
14
+ };
15
+ /**
16
+ * List all inventories
17
+ * @description List all inventories
18
+ */
19
+ get: operations["pos-list-inventory"];
20
+ put?: never;
21
+ post?: never;
22
+ delete?: never;
23
+ options?: never;
24
+ head?: never;
25
+ patch?: never;
26
+ trace?: never;
27
+ };
28
+ "/pos/catalog/inventories/activites": {
29
+ parameters: {
30
+ query?: never;
31
+ header?: never;
32
+ path?: never;
33
+ cookie?: never;
34
+ };
35
+ /**
36
+ * List all inventories activities
37
+ * @description Lists all inventory related activities of stock movements. This provides a comprehensive audit trail of inventory operations such as receiving, reservations, adjustments, transfers, and sales.
38
+ */
39
+ get: operations["pos-list-inventory-activity"];
40
+ put?: never;
41
+ post?: never;
42
+ delete?: never;
43
+ options?: never;
44
+ head?: never;
45
+ patch?: never;
46
+ trace?: never;
47
+ };
48
+ "/pos/catalog/inventories/detail": {
49
+ parameters: {
50
+ query?: never;
51
+ header?: never;
52
+ path?: never;
53
+ cookie?: never;
54
+ };
55
+ /**
56
+ * Retrieve inventory detail
57
+ * @description Retrieves inventory details for a specific product, product variant, or lot/batch based on the parameters provided.
58
+ */
59
+ get: operations["pos-list-inventory-detail"];
60
+ put?: never;
61
+ post?: never;
62
+ delete?: never;
63
+ options?: never;
64
+ head?: never;
65
+ patch?: never;
66
+ trace?: never;
67
+ };
68
+ "/pos/customers": {
69
+ parameters: {
70
+ query?: never;
71
+ header?: never;
72
+ path?: never;
73
+ cookie?: never;
74
+ };
75
+ /**
76
+ * List all customers
77
+ * @description List all customers
78
+ */
79
+ get: operations["pos-list-customers"];
80
+ put?: never;
81
+ post?: never;
82
+ delete?: never;
83
+ options?: never;
84
+ head?: never;
85
+ patch?: never;
86
+ trace?: never;
87
+ };
88
+ "/pos/customers/{id}": {
89
+ parameters: {
90
+ query?: never;
91
+ header?: never;
92
+ path?: never;
93
+ cookie?: never;
94
+ };
95
+ /**
96
+ * Retrieve customer detail
97
+ * @description Retrieve customer detail
98
+ */
99
+ get: operations["pos-get-customer-detail"];
100
+ put?: never;
101
+ post?: never;
102
+ delete?: never;
103
+ options?: never;
104
+ head?: never;
105
+ patch?: never;
106
+ trace?: never;
107
+ };
108
+ "/pos/orders": {
109
+ parameters: {
110
+ query?: never;
111
+ header?: never;
112
+ path?: never;
113
+ cookie?: never;
114
+ };
115
+ /**
116
+ * List all orders
117
+ * @description List all orders
118
+ */
119
+ get: operations["pos-list-orders"];
120
+ put?: never;
121
+ post?: never;
122
+ delete?: never;
123
+ options?: never;
124
+ head?: never;
125
+ patch?: never;
126
+ trace?: never;
127
+ };
128
+ "/pos/orders/{order_number}": {
129
+ parameters: {
130
+ query?: never;
131
+ header?: never;
132
+ path?: never;
133
+ cookie?: never;
134
+ };
135
+ /**
136
+ * Retrieve order details
137
+ * @description Retrieve order details
138
+ */
139
+ get: operations["pos-get-order-detail"];
140
+ put?: never;
141
+ post?: never;
142
+ delete?: never;
143
+ options?: never;
144
+ head?: never;
145
+ patch?: never;
146
+ trace?: never;
147
+ };
148
+ "/pos/orders/{order_number}/activity": {
149
+ parameters: {
150
+ query?: never;
151
+ header?: never;
152
+ path?: never;
153
+ cookie?: never;
154
+ };
155
+ /**
156
+ * List all order activity
157
+ * @description List all order activity
158
+ */
159
+ get: operations["pos-list-order-activity"];
160
+ put?: never;
161
+ post?: never;
162
+ delete?: never;
163
+ options?: never;
164
+ head?: never;
165
+ patch?: never;
166
+ trace?: never;
167
+ };
168
+ "/pos/orders/{order_number}/invoice": {
169
+ parameters: {
170
+ query?: never;
171
+ header?: never;
172
+ path?: never;
173
+ cookie?: never;
174
+ };
175
+ /**
176
+ * Retrieve order invoice
177
+ * @description Retrieve order invoice
178
+ */
179
+ get: operations["pos-get-order-invoice"];
180
+ put?: never;
181
+ post?: never;
182
+ delete?: never;
183
+ options?: never;
184
+ head?: never;
185
+ patch?: never;
186
+ trace?: never;
187
+ };
188
+ "/pos/orders/{order_number}/receipt": {
189
+ parameters: {
190
+ query?: never;
191
+ header?: never;
192
+ path?: never;
193
+ cookie?: never;
194
+ };
195
+ /**
196
+ * Retrieve order receipt
197
+ * @description Retrieves a printable receipt for a specific order using the order number. This endpoint returns either structured JSON data or a formatted PDF, suitable for customer presentation. Response format (JSON or PDF) is determined by an optional query parameter (e.g. format=pdf or format=json).
198
+ */
199
+ get: operations["pos-get-order-receipt"];
200
+ put?: never;
201
+ post?: never;
202
+ delete?: never;
203
+ options?: never;
204
+ head?: never;
205
+ patch?: never;
206
+ trace?: never;
207
+ };
208
+ "/pos/orders/{order_number}/shipments": {
209
+ parameters: {
210
+ query?: never;
211
+ header?: never;
212
+ path?: never;
213
+ cookie?: never;
214
+ };
215
+ /**
216
+ * Retrieve order shipments
217
+ * @description Retrieve order shipments
218
+ */
219
+ get: operations["pos-list-order-shipments"];
220
+ put?: never;
221
+ post?: never;
222
+ delete?: never;
223
+ options?: never;
224
+ head?: never;
225
+ patch?: never;
226
+ trace?: never;
227
+ };
228
+ "/pos/shipping/shipments": {
229
+ parameters: {
230
+ query?: never;
231
+ header?: never;
232
+ path?: never;
233
+ cookie?: never;
234
+ };
235
+ /**
236
+ * List all shipments
237
+ * @description List all shipments
238
+ */
239
+ get: operations["pos-list-shipments"];
240
+ put?: never;
241
+ post?: never;
242
+ delete?: never;
243
+ options?: never;
244
+ head?: never;
245
+ patch?: never;
246
+ trace?: never;
247
+ };
248
+ "/pos/shipping/shipments/{order_number}/check-inventory": {
249
+ parameters: {
250
+ query?: never;
251
+ header?: never;
252
+ path?: never;
253
+ cookie?: never;
254
+ };
255
+ /**
256
+ * Check Inventory
257
+ * @description Check Inventory
258
+ */
259
+ get: operations["pos-check-order-inventory"];
260
+ put?: never;
261
+ post?: never;
262
+ delete?: never;
263
+ options?: never;
264
+ head?: never;
265
+ patch?: never;
266
+ trace?: never;
267
+ };
268
+ "/pos/shipping/shipments/{order_number}/refund-shortfall": {
269
+ parameters: {
270
+ query?: never;
271
+ header?: never;
272
+ path?: never;
273
+ cookie?: never;
274
+ };
275
+ get?: never;
276
+ put?: never;
277
+ /**
278
+ * Refund shortfall
279
+ * @description Refund shortfall
280
+ */
281
+ post: operations["pos-refund-shortfall"];
282
+ delete?: never;
283
+ options?: never;
284
+ head?: never;
285
+ patch?: never;
286
+ trace?: never;
287
+ };
288
+ "/pos/shipping/shipments/{reference_number}": {
289
+ parameters: {
290
+ query?: never;
291
+ header?: never;
292
+ path?: never;
293
+ cookie?: never;
294
+ };
295
+ /**
296
+ * Retrieve shipment detail
297
+ * @description Retrieve shipment detail
298
+ */
299
+ get: operations["pos-get-shipment-detail"];
300
+ put?: never;
301
+ post?: never;
302
+ delete?: never;
303
+ options?: never;
304
+ head?: never;
305
+ patch?: never;
306
+ trace?: never;
307
+ };
308
+ "/pos/shipping/shipments/{reference_number}/invoice": {
309
+ parameters: {
310
+ query?: never;
311
+ header?: never;
312
+ path?: never;
313
+ cookie?: never;
314
+ };
315
+ /**
316
+ * Retrieve shipment invoice
317
+ * @description Retrieve shipment invoice
318
+ */
319
+ get: operations["pos-get-shipment-invoice"];
320
+ put?: never;
321
+ post?: never;
322
+ delete?: never;
323
+ options?: never;
324
+ head?: never;
325
+ patch?: never;
326
+ trace?: never;
327
+ };
328
+ "/pos/shipping/shipments/{reference_number}/manual-update": {
329
+ parameters: {
330
+ query?: never;
331
+ header?: never;
332
+ path?: never;
333
+ cookie?: never;
334
+ };
335
+ get?: never;
336
+ /**
337
+ * Update shipment detail
338
+ * @description Update shipment detail
339
+ */
340
+ put: operations["pos-update-shipment"];
341
+ post?: never;
342
+ delete?: never;
343
+ options?: never;
344
+ head?: never;
345
+ patch?: never;
346
+ trace?: never;
347
+ };
348
+ }
349
+ interface components {
350
+ schemas: {
351
+ /**
352
+ * AppliedPromotion
353
+ * @description Details about an active coupon applied to a cart/order
354
+ */
355
+ AppliedCoupon: {
356
+ coupon_id: string;
357
+ /** @enum {unknown} */
358
+ coupon_type: "discount" | "free-goods" | "fixed-price" | "free-shipping" | "buy-x-get-y" | "volume-based" | "accelerated-rewards";
359
+ savings: number;
360
+ product_id: string | null;
361
+ variant_id: string | null;
362
+ product_name: string | null;
363
+ variant_name: string | null;
364
+ };
365
+ /**
366
+ * AppliedPromotion
367
+ * @description Details about an active promotion applied to a cart/order
368
+ */
369
+ AppliedPromotion: {
370
+ promotion_id: string;
371
+ /** @enum {unknown} */
372
+ promotion_type: "discount" | "free-goods" | "free-shipping" | "buy-x-get-y" | "volume-based";
373
+ savings: number;
374
+ product_id: string | null;
375
+ variant_id: string | null;
376
+ product_name: string | null;
377
+ variant_name: string | null;
378
+ applied_sequence: number;
379
+ scope: string;
380
+ };
381
+ /**
382
+ * BankTransfer
383
+ * @description Bank transfer payment - IMPS, NEFT, RTGS
384
+ */
385
+ BankTransfer: components["schemas"]["OrderPaymentInfo"] & {
386
+ /** @description masked account number
387
+ * e.g. ************1234 */
388
+ bank_account_number?: string;
389
+ bank_name?: string;
390
+ };
391
+ /** BusinessInfo */
392
+ BusinessInfo: {
393
+ name?: string;
394
+ business_type?: string;
395
+ pan_number?: string;
396
+ gstin?: string;
397
+ is_registered_under_gst?: boolean;
398
+ };
399
+ /**
400
+ * CardPayment
401
+ * @description Payments using credit card, debit card
402
+ */
403
+ CardPayment: components["schemas"]["OrderPaymentInfo"] & {
404
+ /** @description masked card number
405
+ * e.g. ************1111 */
406
+ card_number?: string;
407
+ /** @enum {unknown} */
408
+ card_type?: "Visa" | "Master Card" | "Rupay";
409
+ };
410
+ /** Customer */
411
+ Customer: components["schemas"]["CustomerInfo"] & {
412
+ business?: components["schemas"]["BusinessInfo"];
413
+ segments?: components["schemas"]["CustomerSegment"][];
414
+ };
415
+ /** CustomerAddress */
416
+ CustomerAddress: {
417
+ readonly id?: string;
418
+ first_name: string;
419
+ last_name?: string;
420
+ /** @description Two-letter code begin with a plus sign prefix that identifies different countries. By default it will be +91 if not provided.
421
+ * */
422
+ country_code?: string;
423
+ /** @description 10 digit phone number without country code. */
424
+ phone: string;
425
+ email: string;
426
+ address_line1: string;
427
+ address_line2?: string | null;
428
+ landmark?: string | null;
429
+ pincode: string;
430
+ city: string;
431
+ state: string;
432
+ /** @enum {unknown} */
433
+ country: "India";
434
+ /** @description Use in shipping details only for third party. */
435
+ gstin?: string | null;
436
+ /** @description Use in shipping details only for third party. */
437
+ business_name?: string | null;
438
+ readonly is_phone_verified?: boolean;
439
+ readonly is_email_verified?: boolean;
440
+ };
441
+ /** CustomerDetail */
442
+ CustomerDetail: components["schemas"]["Customer"] & {
443
+ loyalty?: components["schemas"]["CustomerLoyalty"];
444
+ notification_preferences?: components["schemas"]["NotificationPreferences"];
445
+ };
446
+ /** CustomerInfo */
447
+ CustomerInfo: {
448
+ /** @description user id */
449
+ readonly id?: string;
450
+ first_name?: string;
451
+ last_name?: string;
452
+ readonly full_name?: string;
453
+ readonly profile_image_url?: string;
454
+ country_code?: string;
455
+ phone?: string;
456
+ email?: string;
457
+ readonly is_phone_verified?: boolean;
458
+ readonly is_email_verified?: boolean;
459
+ readonly is_whatsapp_verified?: boolean;
460
+ /** @enum {unknown} */
461
+ status?: "active" | "inactive" | "suspended" | "blocked";
462
+ /** Format: date-time */
463
+ readonly created_at?: string;
464
+ /** Format: date-time */
465
+ readonly modified_at?: string;
466
+ /** Format: date-time */
467
+ readonly last_seen?: string;
468
+ readonly kyc_status?: boolean;
469
+ readonly is_verified?: boolean;
470
+ tags?: string[];
471
+ };
472
+ /** CustomerLoyalty */
473
+ CustomerLoyalty: {
474
+ membership_number?: string;
475
+ /** @description total points earned within the current loyalty program. */
476
+ points_earned?: number;
477
+ /** @description total points redeemed within the current loyalty program. */
478
+ points_redeemed?: number;
479
+ /** @description total points available. */
480
+ points_balance?: number;
481
+ /** @description The total amount a customer has spent within the current loyalty program, excluding taxes, promotional discounts, and redeemed loyalty points. This value is used to determine tier eligibility and earning points calculation. */
482
+ total_spent?: number;
483
+ /** @description The total number of completed orders counted in the current loyalty program. */
484
+ total_orders?: number;
485
+ /** @description The total amount a customer has spent across all time, regardless of loyalty program participation. This includes all completed orders and excludes taxes, promotional discounts, and redeemed points. */
486
+ lifetime_spent?: number;
487
+ /** @description The total number of completed orders across all time, regardless of loyalty program. */
488
+ lifetime_orders?: number;
489
+ /**
490
+ * Format: date-time
491
+ * @description The date and time when the customer first enrolled in the loyalty program.
492
+ */
493
+ date_of_join?: string;
494
+ /**
495
+ * Format: date-time
496
+ * @description The date and time when the customer's current loyalty tier or program instance was assigned. This may change when tiers are upgraded, downgraded, or reassigned.
497
+ */
498
+ date_of_assign?: string | null;
499
+ /**
500
+ * Format: date-time
501
+ * @description The date and time when the customer’s current loyalty program cycle will reset, at which points earned, points redeemed, balance points, total spent, total orders will be cleared.
502
+ */
503
+ date_of_reset?: string | null;
504
+ current_tier?: {
505
+ id?: string;
506
+ name?: string;
507
+ };
508
+ next_tier?: {
509
+ id?: string;
510
+ name?: string;
511
+ total_spent_threshold?: number | null;
512
+ total_orders_threshold?: number | null;
513
+ };
514
+ };
515
+ /** CustomerSegment */
516
+ CustomerSegment: {
517
+ id?: string;
518
+ name?: string;
519
+ };
520
+ /** InventoryActivity */
521
+ InventoryActivity: {
522
+ product_id?: string;
523
+ product_name?: string;
524
+ variant_id?: string;
525
+ variant_name?: string;
526
+ sku?: string;
527
+ warehouse_id?: string;
528
+ warehouse?: components["schemas"]["WarehouseBasicDetail"];
529
+ /** @enum {unknown} */
530
+ activity_type?: "add" | "reserve" | "reduce" | "adjust" | "update";
531
+ quantity?: number;
532
+ reason?: string;
533
+ lot_batch?: string;
534
+ /** Format: date */
535
+ mfg_date?: string;
536
+ /** Format: date */
537
+ exp_date?: string;
538
+ manufacturer?: string;
539
+ /** Format: date-time */
540
+ created_at?: string;
541
+ /** Format: date-time */
542
+ modified_at?: string;
543
+ };
544
+ /** InventoryDetail */
545
+ InventoryDetail: components["schemas"]["ItemWiseInventory"] & {
546
+ details?: components["schemas"]["WarehouseWiseInventory"][];
547
+ };
548
+ /**
549
+ * Invoice
550
+ * @description Invoice model
551
+ */
552
+ Invoice: {
553
+ invoice_number?: string;
554
+ /** Format: date-time */
555
+ invoice_date?: string;
556
+ /** @description Invoice Reference Number */
557
+ irn_number?: string;
558
+ /** @description Acknowledgement Number */
559
+ ack_number?: string;
560
+ /**
561
+ * Format: date-time
562
+ * @description Acknowledgement Date
563
+ */
564
+ ack_date?: string;
565
+ signed_qr_code?: string;
566
+ gatepass_barcode?: string;
567
+ seller_details?: components["schemas"]["Warehouse"];
568
+ billing_address?: components["schemas"]["CustomerAddress"];
569
+ shipping_address?: components["schemas"]["CustomerAddress"];
570
+ subtotal?: number;
571
+ shipping_amount?: number;
572
+ coupon_code?: string;
573
+ coupon_discount_percent?: number;
574
+ coupon_discount_amount?: number;
575
+ total_tax?: number;
576
+ grand_total?: number;
577
+ tax_summary?: {
578
+ tax_rate?: number;
579
+ taxable_value?: number;
580
+ igst?: number;
581
+ cgst?: number;
582
+ sgst?: number;
583
+ }[];
584
+ /** Format: date-time */
585
+ created_at?: string;
586
+ /** Format: date-time */
587
+ modified_at?: string;
588
+ };
589
+ /**
590
+ * InvoiceDetail
591
+ * @description InvoiceDetail model
592
+ */
593
+ InvoiceDetail: components["schemas"]["Invoice"] & {
594
+ items?: components["schemas"]["InvoiceItem"][];
595
+ };
596
+ /**
597
+ * InvoiceItem
598
+ * @description InvoiceItem model
599
+ */
600
+ InvoiceItem: {
601
+ sku?: string;
602
+ product_name?: string;
603
+ product_image_url?: string;
604
+ listing_price?: number;
605
+ selling_price?: number;
606
+ qty?: number;
607
+ free_qty?: number;
608
+ tax_type?: string;
609
+ tax_rate?: number;
610
+ hsncode?: string;
611
+ batch_number?: string;
612
+ expiry?: string;
613
+ amount?: number;
614
+ };
615
+ /** ItemWiseInventory */
616
+ ItemWiseInventory: {
617
+ product_id?: string;
618
+ product_name?: string;
619
+ variant_id?: string;
620
+ variant_name?: string;
621
+ sku?: string;
622
+ track_quantity?: boolean;
623
+ allow_backorder?: boolean;
624
+ track_lot_bacth?: boolean;
625
+ received_quantity?: number;
626
+ reserved_quantity?: number;
627
+ sold_quantity?: number;
628
+ adjusted_quantity?: number;
629
+ stock_quantity?: number;
630
+ };
631
+ /** LotBatchWiseInventory */
632
+ LotBatchWiseInventory: components["schemas"]["ItemWiseInventory"] & {
633
+ lot_batch?: string;
634
+ /** Format: date */
635
+ mfg_date?: string;
636
+ /** Format: date */
637
+ exp_date?: string;
638
+ manufacturer?: string;
639
+ };
640
+ /**
641
+ * LoyaltyPointPayment
642
+ * @description Loyalty point redemption.
643
+ */
644
+ LoyaltyPointPayment: components["schemas"]["OrderPaymentInfo"];
645
+ /**
646
+ * NetbankingPayment
647
+ * @description Payments using payment gateway netbanking option.
648
+ */
649
+ NetbankingPayment: components["schemas"]["OrderPaymentInfo"] & {
650
+ bank_name?: string;
651
+ };
652
+ /**
653
+ * NotificationChannelPreferences
654
+ * @description Set specific channel preferences
655
+ */
656
+ NotificationChannelPreferences: {
657
+ /**
658
+ * @description Indicates whether the user has opted to receive notifications via email.
659
+ * @default true
660
+ */
661
+ email: boolean;
662
+ /**
663
+ * @description Indicates whether the user has opted to receive notifications via SMS.
664
+ * @default true
665
+ */
666
+ sms: boolean;
667
+ /**
668
+ * @description Indicates whether the user has opted to receive notifications via WhatsApp.
669
+ * @default true
670
+ */
671
+ whatsapp: boolean;
672
+ };
673
+ /**
674
+ * NotificationPreferences
675
+ * @description Set channel preferences for each type of
676
+ */
677
+ NotificationPreferences: {
678
+ /** @description These notifications are typically critical for user engagement, providing updates, confirmations, or alerts related to their account activities. */
679
+ transactional?: components["schemas"]["NotificationChannelPreferences"];
680
+ /** @description These notifications aim to engage users with promotional content and enhance their overall experience with the platform. */
681
+ promotional?: components["schemas"]["NotificationChannelPreferences"];
682
+ /** @description These notifications are often sent periodically as part of a subscription service.
683
+ * */
684
+ newsletter?: components["schemas"]["NotificationChannelPreferences"];
685
+ };
686
+ /** Order */
687
+ Order: {
688
+ order_number?: string;
689
+ /** Format: date-time */
690
+ order_date?: string;
691
+ /** @enum {string} */
692
+ status?: "draft" | "awaiting_approval" | "cancelled" | "shipped" | "delivered" | "awaiting_shipment";
693
+ /** @enum {string} */
694
+ payment_status?: "pending" | "success" | "failed" | "partially_paid" | "refunded";
695
+ /** Format: date-time */
696
+ payment_success_date?: string;
697
+ customer_id?: string;
698
+ customer_email?: string | null;
699
+ customer_phone?: string | null;
700
+ customer_note?: string | null;
701
+ is_promotion_applied?: boolean;
702
+ promotion_discount_amount?: number | null;
703
+ is_coupon_applied?: boolean;
704
+ coupon_code?: string | null;
705
+ /** Format: double */
706
+ coupon_discount_amount?: number | null;
707
+ on_subscription?: boolean;
708
+ /** Format: double */
709
+ subtotal?: number;
710
+ /** Format: double */
711
+ item_total_tax?: number;
712
+ /** Format: double */
713
+ subtotal_including_tax?: number;
714
+ /** Format: double */
715
+ shipping_amount?: number;
716
+ /** Format: double */
717
+ shipping_total_tax?: number;
718
+ /** Format: double */
719
+ shipping_amount_including_tax?: number;
720
+ /** Format: double */
721
+ total_tax?: number;
722
+ /** Format: double */
723
+ grand_total?: number;
724
+ loyalty_point_redeemed?: number;
725
+ credit_balance_used?: number;
726
+ /** Format: double */
727
+ to_be_paid?: number;
728
+ loyalty_point_earned?: number;
729
+ order_items_count?: number;
730
+ currency?: {
731
+ name?: string;
732
+ code?: string;
733
+ symbol?: string;
734
+ };
735
+ /** Format: date-time */
736
+ created_at?: string;
737
+ /** Format: date-time */
738
+ modified_at?: string;
739
+ };
740
+ /** OrderActivity */
741
+ OrderActivity: {
742
+ readonly activity_type?: string;
743
+ readonly order_status?: string;
744
+ comment: string;
745
+ /** @enum {unknown} */
746
+ readonly user_type?: "customer" | "admin" | "system";
747
+ readonly user_name?: string;
748
+ /** Format: date-time */
749
+ readonly created_at?: string;
750
+ /** Format: date-time */
751
+ readonly modified_at?: string;
752
+ };
753
+ /** OrderDetail */
754
+ OrderDetail: {
755
+ order_number?: string;
756
+ /** Format: date-time */
757
+ order_date?: string;
758
+ /** @enum {string} */
759
+ status?: "draft" | "awaiting_approval" | "cancelled" | "shipped" | "delivered" | "awaiting_shipment";
760
+ /** @enum {string} */
761
+ payment_status?: "pending" | "success" | "failed" | "partially_paid" | "refunded";
762
+ /** Format: date-time */
763
+ payment_success_date?: string;
764
+ customer_id?: string;
765
+ customer_email?: string | null;
766
+ customer_phone?: string | null;
767
+ customer_note?: string | null;
768
+ is_promotion_applied?: boolean;
769
+ promotion_discount_amount?: number | null;
770
+ is_coupon_applied?: boolean;
771
+ coupon_code?: string | null;
772
+ /** Format: double */
773
+ coupon_discount_amount?: number | null;
774
+ on_subscription?: boolean;
775
+ /** @enum {unknown} */
776
+ fulfillment_type?: "collect-in-store" | "delivery" | "partial-collect-and-delivery";
777
+ fulfillment_preferences?: components["schemas"]["PartialCollectAndDelivery"] | null;
778
+ sales_channel?: {
779
+ id?: string;
780
+ name?: string;
781
+ type?: string;
782
+ };
783
+ metadata?: {
784
+ [key: string]: string;
785
+ };
786
+ /** Format: double */
787
+ subtotal?: number;
788
+ /** Format: double */
789
+ subtotal_tax?: number;
790
+ /** Format: double */
791
+ subtotal_including_tax?: number;
792
+ /** Format: double */
793
+ shipping_amount?: number;
794
+ /** Format: double */
795
+ shipping_tax_rate?: number;
796
+ /** Format: double */
797
+ shipping_total_tax?: number;
798
+ /** Format: double */
799
+ shipping_amount_including_tax?: number;
800
+ /** Format: double */
801
+ total_tax?: number;
802
+ /** Format: double */
803
+ grand_total?: number;
804
+ loyalty_point_redeemed?: number;
805
+ credit_balance_used?: number;
806
+ /** Format: double */
807
+ to_be_paid?: number;
808
+ loyalty_point_earned?: number;
809
+ order_items_count?: number;
810
+ order_items?: components["schemas"]["OrderItem"][];
811
+ billing_address?: components["schemas"]["CustomerAddress"];
812
+ shipping_address?: components["schemas"]["CustomerAddress"];
813
+ currency?: {
814
+ name?: string;
815
+ code?: string;
816
+ symbol?: string;
817
+ };
818
+ feedback?: string | null;
819
+ allowed_actions?: string[];
820
+ applied_coupons?: components["schemas"]["AppliedCoupon"][];
821
+ applied_promotions?: components["schemas"]["AppliedPromotion"][];
822
+ payments?: components["schemas"]["OrderPayment"][];
823
+ shipments?: components["schemas"]["OrderShipment"][];
824
+ /** Format: date-time */
825
+ created_at?: string;
826
+ /** Format: date-time */
827
+ modified_at?: string;
828
+ };
829
+ /** OrderItem */
830
+ OrderItem: {
831
+ readonly product_id?: string;
832
+ readonly product_name?: string;
833
+ readonly product_image_url?: string | null;
834
+ sku: string;
835
+ readonly on_offer?: boolean;
836
+ readonly on_promotion?: boolean;
837
+ on_subscription?: boolean;
838
+ subscription_plan?: string | null;
839
+ readonly subscription_interval?: number | null;
840
+ readonly subscription_frequency?: string | null;
841
+ quantity: number;
842
+ readonly free_quantity?: number;
843
+ readonly is_free_item?: boolean;
844
+ /** Format: double */
845
+ readonly selling_price?: number;
846
+ /** Format: double */
847
+ readonly listing_price?: number;
848
+ /** Format: double */
849
+ readonly promotion_discount_amount?: number;
850
+ /** Format: double */
851
+ readonly coupon_discount_amount?: number;
852
+ /** @enum {unknown} */
853
+ readonly tax_type?: "GST";
854
+ /** Format: float */
855
+ readonly tax_rate?: number;
856
+ /** Format: double */
857
+ readonly tax_amount?: number;
858
+ /** Format: double */
859
+ readonly shipping_additional_cost?: number;
860
+ };
861
+ /**
862
+ * OrderList
863
+ * @description order list model
864
+ */
865
+ OrderList: {
866
+ /** @description Order id. Same as order number. */
867
+ id?: string;
868
+ /** @description Unique number associated with the order. */
869
+ order_number?: string;
870
+ /**
871
+ * Format: date-time
872
+ * @description Date and time when the order was placed.
873
+ */
874
+ order_date?: string;
875
+ /**
876
+ * @description Current status of the order (e.g., "pending," "processing," "shipped," etc.).
877
+ * @enum {string}
878
+ */
879
+ status?: "draft" | "awaiting_approval" | "cancelled" | "shipped" | "delivered" | "awaiting_shipment" | "pending" | "payment_failed" | "schedule_requested";
880
+ /**
881
+ * @description Current payment status of the order (e.g., "pending," "success," "failed").
882
+ * @enum {string}
883
+ */
884
+ payment_status?: "pending" | "success" | "failed" | "partially_paid" | "refunded";
885
+ /** @description Date and time when the payment for the order was successfully processed. */
886
+ payment_success_date?: string | null;
887
+ /** @enum {unknown} */
888
+ fulfillment_type?: "collect-in-store" | "delivery";
889
+ /** @description Indicates whether the order includes subscription items. */
890
+ on_subscription?: boolean;
891
+ /**
892
+ * Format: double
893
+ * @description Total amount for the order, including all items, taxes, and discounts.
894
+ */
895
+ grand_total?: number;
896
+ /** @description Number of loyalty points redeemed in the order. */
897
+ loyalty_point_redeemed?: number;
898
+ /** @description Amount of credit balance used in the order. */
899
+ credit_balance_used?: number;
900
+ /**
901
+ * Format: double
902
+ * @description Amount remaining to be paid for the order.
903
+ */
904
+ to_be_paid?: number;
905
+ /** @description Total count of items included in the order. */
906
+ order_items_count?: number;
907
+ order_items?: components["schemas"]["OrderItem"][];
908
+ customer_id?: string;
909
+ customer_note?: string | null;
910
+ billing_address?: components["schemas"]["CustomerAddress"];
911
+ shipping_address?: components["schemas"]["CustomerAddress"];
912
+ loyalty_point_earned?: number;
913
+ currency?: {
914
+ name?: string;
915
+ code?: string;
916
+ symbol?: string;
917
+ };
918
+ sales_channel?: {
919
+ id?: string;
920
+ name?: string;
921
+ type?: string;
922
+ };
923
+ metadata?: {
924
+ [key: string]: string;
925
+ };
926
+ /** Format: date-time */
927
+ created_at?: string;
928
+ /** Format: date-time */
929
+ modified_at?: string;
930
+ };
931
+ /**
932
+ * OrderPayment
933
+ * @description Order Payment
934
+ */
935
+ OrderPayment: components["schemas"]["CardPayment"] | components["schemas"]["NetbankingPayment"] | components["schemas"]["UpiPayment"] | components["schemas"]["WalletPayment"] | components["schemas"]["BankTransfer"] | components["schemas"]["LoyaltyPointPayment"];
936
+ /**
937
+ * OrderPaymentInfo
938
+ * @description Common fields in all types of payments.
939
+ */
940
+ OrderPaymentInfo: {
941
+ /** @enum {unknown} */
942
+ transaction_type?: "payment" | "refund";
943
+ request_number?: string;
944
+ /** Format: double */
945
+ amount?: number;
946
+ /** @enum {unknown} */
947
+ payment_status?: "pending" | "success" | "failed" | "partially_paid" | "refund_initiated";
948
+ /** Format: date-time */
949
+ payment_date?: string;
950
+ payment_reference_number?: string | null;
951
+ /** @enum {unknown} */
952
+ payment_method?: "Credit Card" | "Debit Card" | "Netbanking" | "UPI" | "Wallet" | "Loyalty Point" | "IMPS" | "NEFT" | "RTGS";
953
+ icon_url?: string;
954
+ };
955
+ /** OrderReceiptJsonFormat */
956
+ OrderReceiptJsonFormat: components["schemas"]["Order"] & {
957
+ billing_address?: components["schemas"]["CustomerAddress"];
958
+ shipping_address?: components["schemas"]["CustomerAddress"];
959
+ order_items?: components["schemas"]["OrderItem"][];
960
+ payments?: components["schemas"]["OrderPayment"][];
961
+ };
962
+ /**
963
+ * OrderShipment
964
+ * @description Order shipment model
965
+ */
966
+ OrderShipment: {
967
+ reference_number?: string;
968
+ /** @enum {unknown} */
969
+ status?: "pending" | "approved" | "shipped" | "delivered" | "cancelled";
970
+ total_weight?: number;
971
+ total_boxes?: number;
972
+ shipment_items_count?: number;
973
+ shipment_items?: components["schemas"]["ShipmentItem"][];
974
+ /** Format: double */
975
+ shipping_amount?: number;
976
+ /** Format: double */
977
+ shipping_tax_amount?: number;
978
+ /** Format: double */
979
+ shipping_amount_including_tax?: number;
980
+ courier_company_id?: string;
981
+ courier_company_name?: string;
982
+ shipping_label_url?: string;
983
+ awb_no?: string;
984
+ eta_delivery?: string;
985
+ /** Format: date-time */
986
+ shipped_date?: string;
987
+ /** Format: date-time */
988
+ delivered_date?: string;
989
+ cancellation_reason?: string;
990
+ /** Format: date-time */
991
+ created_at?: string;
992
+ /** Format: date-time */
993
+ modified_at?: string;
994
+ };
995
+ /**
996
+ * Pagination
997
+ * @description pagination metadata structure
998
+ */
999
+ Pagination: {
1000
+ total_records?: number;
1001
+ total_pages?: number;
1002
+ previous_page?: ((number | null) | null) | null;
1003
+ /** @default 25 */
1004
+ limit: number;
1005
+ next_page?: ((number | null) | null) | null;
1006
+ };
1007
+ /** PartialCollectAndDelivery */
1008
+ PartialCollectAndDelivery: {
1009
+ pickup: {
1010
+ product_id: string;
1011
+ readonly product_name: string;
1012
+ variant_id: string | null;
1013
+ readonly variant_name: string | null;
1014
+ quantity: number;
1015
+ }[];
1016
+ delivery: {
1017
+ product_id: string;
1018
+ readonly product_name: string;
1019
+ variant_id: string | null;
1020
+ readonly variant_name: string | null;
1021
+ quantity: number;
1022
+ }[];
1023
+ shipping_address: components["schemas"]["CustomerAddress"];
1024
+ };
1025
+ /** Shipment */
1026
+ Shipment: components["schemas"]["ShipmentInfo"] & {
1027
+ shipment_items?: components["schemas"]["ShipmentItem"][];
1028
+ } & {
1029
+ packing?: components["schemas"]["ShipmentPackaging"];
1030
+ } & {
1031
+ progression?: components["schemas"]["ShipmentProgression"][];
1032
+ };
1033
+ /** ShipmentBox */
1034
+ ShipmentBox: {
1035
+ box_name?: string;
1036
+ box_length?: number;
1037
+ box_width?: number;
1038
+ box_height?: number;
1039
+ box_weight?: number;
1040
+ items_count?: number | null;
1041
+ box_count?: number | null;
1042
+ };
1043
+ /** ShipmentDetail */
1044
+ ShipmentDetail: {
1045
+ order_number?: string;
1046
+ /** Format: date-time */
1047
+ order_date?: string;
1048
+ order_status?: string;
1049
+ /** @enum {unknown} */
1050
+ payment_status?: "pending" | "success" | "failed";
1051
+ customer_name?: string;
1052
+ shipments?: components["schemas"]["Shipment"][];
1053
+ /** @description dynamic values as per current status of the shipment. */
1054
+ allowed_actions?: string[];
1055
+ };
1056
+ /** ShipmentInfo */
1057
+ ShipmentInfo: {
1058
+ order_number?: string;
1059
+ order_status?: string;
1060
+ shipment_number?: string;
1061
+ warehouse_id?: string;
1062
+ warehouse_name?: string;
1063
+ status?: string;
1064
+ total_weight?: number;
1065
+ total_boxes?: number;
1066
+ shipment_items_count?: number;
1067
+ /** Format: double */
1068
+ shipping_amount?: number;
1069
+ /** Format: double */
1070
+ shipping_tax_amount?: number;
1071
+ /** Format: double */
1072
+ shipping_amount_including_tax?: number;
1073
+ courier_company_id?: string | null;
1074
+ courier_company_name?: string | null;
1075
+ courier_company_image_url?: string | null;
1076
+ awb_no?: string | null;
1077
+ shipping_label_url?: string | null;
1078
+ eta_delivery?: string | null;
1079
+ shipped_date?: string | null;
1080
+ delivered_date?: string | null;
1081
+ slo?: {
1082
+ /** Format: date */
1083
+ expected_date?: string;
1084
+ /** Format: date */
1085
+ actual_date?: string;
1086
+ difference?: string;
1087
+ };
1088
+ cancellation_reason?: string | null;
1089
+ customer_id?: string;
1090
+ customer_name?: string;
1091
+ shipping_address_line1?: string;
1092
+ shipping_address_line2?: string;
1093
+ shipping_landmark?: string;
1094
+ shipping_pincode?: string;
1095
+ shipping_city?: string;
1096
+ shipping_state?: string;
1097
+ created_at?: string;
1098
+ modified_at?: string;
1099
+ };
1100
+ /**
1101
+ * ShipmentItem
1102
+ * @description Shipment item model
1103
+ */
1104
+ ShipmentItem: {
1105
+ product_id: string;
1106
+ readonly product_name?: string;
1107
+ variant_id: string | null;
1108
+ readonly variant_name?: string | null;
1109
+ readonly product_image_url?: string | null;
1110
+ readonly sku?: string;
1111
+ quantity: number;
1112
+ free_quantity?: number;
1113
+ readonly is_free_item?: boolean;
1114
+ };
1115
+ /** ShipmentList */
1116
+ ShipmentList: {
1117
+ order_number?: string;
1118
+ } & components["schemas"]["ShipmentInfo"];
1119
+ /** ShipmentPackaging */
1120
+ ShipmentPackaging: {
1121
+ /** @enum {unknown} */
1122
+ package_option?: "Automatic" | "Custom";
1123
+ boxes_count?: number;
1124
+ boxes?: components["schemas"]["ShipmentBox"][];
1125
+ };
1126
+ /** ShipmentProgression */
1127
+ ShipmentProgression: {
1128
+ readonly status?: string;
1129
+ readonly is_current?: boolean;
1130
+ readonly is_completed?: boolean;
1131
+ /** Format: date-time */
1132
+ readonly completion_date?: string;
1133
+ };
1134
+ /**
1135
+ * UpiPayment
1136
+ * @description UPI Payment
1137
+ */
1138
+ UpiPayment: components["schemas"]["OrderPaymentInfo"] & {
1139
+ upi_id?: string;
1140
+ };
1141
+ /** WalletPayment */
1142
+ WalletPayment: components["schemas"]["OrderPaymentInfo"] & {
1143
+ wallet_name?: string;
1144
+ };
1145
+ /**
1146
+ * Warehouse
1147
+ * @description Validations:
1148
+ *
1149
+ * 1) Either 'can_receive_stock' or 'accepts_returns' must be set to true.
1150
+ * 2) 'can_receive_stock' cannot be set to false while the warehouse has existing inventory.
1151
+ * 3) 'is_checkout_point' must be true when the warehouse type is 'retail-store'.
1152
+ * 4) If 'can_receive_stock' is false then 'can_ship_parcel' and 'can_collect' fields should be false.
1153
+ */
1154
+ Warehouse: {
1155
+ /** @description warehouse id */
1156
+ readonly id?: string;
1157
+ /** @description legal name */
1158
+ name: string;
1159
+ /** @enum {unknown} */
1160
+ warehouse_type: "retail-store" | "distribution-center";
1161
+ /** @default true */
1162
+ active: boolean;
1163
+ gstin?: string | null;
1164
+ city: string;
1165
+ address_line1: string;
1166
+ address_line2?: string | null;
1167
+ landmark?: string | null;
1168
+ pincode: string;
1169
+ state: string;
1170
+ country: string;
1171
+ /** @default +91 */
1172
+ country_code: string;
1173
+ /** @description 10 digit number without country code. */
1174
+ contact_phone: number;
1175
+ contact_email: string;
1176
+ is_default?: boolean;
1177
+ image_url?: string | null;
1178
+ seller_warehouse_id?: string | null;
1179
+ can_receive_stock: boolean;
1180
+ can_ship_parcel: boolean;
1181
+ can_collect: boolean;
1182
+ /** @description this field will be always true for warehouse_type = retail-store. */
1183
+ is_checkout_point: boolean;
1184
+ accepts_returns: boolean;
1185
+ opening_hours?: string | null;
1186
+ };
1187
+ /** WarehouseBasicDetail */
1188
+ WarehouseBasicDetail: {
1189
+ id?: string;
1190
+ name?: string;
1191
+ address_line1?: string;
1192
+ pincode?: string;
1193
+ city?: string;
1194
+ state?: string;
1195
+ is_default?: boolean;
1196
+ };
1197
+ /** WarehouseWiseInventory */
1198
+ WarehouseWiseInventory: {
1199
+ lot_bacth?: string;
1200
+ /** Format: date */
1201
+ mfg_date?: string;
1202
+ /** Format: date */
1203
+ exp_date?: string;
1204
+ manufacturer?: string;
1205
+ warehouse_id?: string;
1206
+ warehouse?: components["schemas"]["WarehouseBasicDetail"];
1207
+ received_quantity?: number;
1208
+ reserved_quantity?: number;
1209
+ sold_quantity?: number;
1210
+ adjusted_quantity?: number;
1211
+ stock_quantity?: number;
1212
+ };
1213
+ };
1214
+ responses: never;
1215
+ parameters: {
1216
+ /** @description JSON object */
1217
+ columnBasedFilters: string;
1218
+ /** @description no of rows per page */
1219
+ pageLimit: number;
1220
+ /** @description page number of pagination list */
1221
+ pageNumber: number;
1222
+ /** @description search keyword */
1223
+ searchKeyword: string;
1224
+ /** @description JSON string format: {"field1":"asc", "field2":"desc"} */
1225
+ sortByOptions: string;
1226
+ };
1227
+ requestBodies: never;
1228
+ headers: never;
1229
+ pathItems: never;
1230
+ }
1231
+ interface operations {
1232
+ "pos-list-inventory": {
1233
+ parameters: {
1234
+ query?: {
1235
+ /** @description page number of pagination list */
1236
+ page?: components["parameters"]["pageNumber"];
1237
+ /** @description no of rows per page */
1238
+ limit?: components["parameters"]["pageLimit"];
1239
+ /** @description JSON string format: {"field1":"asc", "field2":"desc"} */
1240
+ sort_by?: components["parameters"]["sortByOptions"];
1241
+ /** @description JSON object */
1242
+ filters?: components["parameters"]["columnBasedFilters"];
1243
+ };
1244
+ header?: never;
1245
+ path?: never;
1246
+ cookie?: never;
1247
+ };
1248
+ requestBody?: never;
1249
+ responses: {
1250
+ /** @description OK */
1251
+ 200: {
1252
+ headers: {
1253
+ [name: string]: unknown;
1254
+ };
1255
+ content: {
1256
+ "application/json": {
1257
+ message?: string;
1258
+ success?: boolean;
1259
+ content?: {
1260
+ inventories?: (components["schemas"]["ItemWiseInventory"] | components["schemas"]["LotBatchWiseInventory"])[];
1261
+ };
1262
+ };
1263
+ };
1264
+ };
1265
+ };
1266
+ };
1267
+ "pos-list-inventory-activity": {
1268
+ parameters: {
1269
+ query?: {
1270
+ /** @description page number of pagination list */
1271
+ page?: components["parameters"]["pageNumber"];
1272
+ /** @description no of rows per page */
1273
+ limit?: components["parameters"]["pageLimit"];
1274
+ /** @description JSON string format: {"field1":"asc", "field2":"desc"} */
1275
+ sort_by?: components["parameters"]["sortByOptions"];
1276
+ /** @description JSON object */
1277
+ filters?: components["parameters"]["columnBasedFilters"];
1278
+ };
1279
+ header?: never;
1280
+ path?: never;
1281
+ cookie?: never;
1282
+ };
1283
+ requestBody?: never;
1284
+ responses: {
1285
+ /** @description OK */
1286
+ 200: {
1287
+ headers: {
1288
+ [name: string]: unknown;
1289
+ };
1290
+ content: {
1291
+ "application/json": {
1292
+ message?: string;
1293
+ success?: boolean;
1294
+ content?: {
1295
+ activities?: components["schemas"]["InventoryActivity"][];
1296
+ };
1297
+ };
1298
+ };
1299
+ };
1300
+ };
1301
+ };
1302
+ "pos-list-inventory-detail": {
1303
+ parameters: {
1304
+ query: {
1305
+ /** @description lot batch of selected productor or variant. */
1306
+ lot_batch?: string;
1307
+ /** @description Product Id */
1308
+ product_id: string;
1309
+ /** @description Variant Id */
1310
+ variant_id?: string;
1311
+ };
1312
+ header?: never;
1313
+ path?: never;
1314
+ cookie?: never;
1315
+ };
1316
+ requestBody?: never;
1317
+ responses: {
1318
+ /** @description OK */
1319
+ 200: {
1320
+ headers: {
1321
+ [name: string]: unknown;
1322
+ };
1323
+ content: {
1324
+ "application/json": {
1325
+ message?: string;
1326
+ success?: boolean;
1327
+ content?: {
1328
+ inventory?: components["schemas"]["InventoryDetail"];
1329
+ };
1330
+ };
1331
+ };
1332
+ };
1333
+ };
1334
+ };
1335
+ "pos-list-customers": {
1336
+ parameters: {
1337
+ query?: {
1338
+ /** @description page number of pagination list */
1339
+ page?: components["parameters"]["pageNumber"];
1340
+ /** @description no of rows per page */
1341
+ limit?: components["parameters"]["pageLimit"];
1342
+ /** @description JSON object */
1343
+ filters?: components["parameters"]["columnBasedFilters"];
1344
+ /** @description JSON string format: {"field1":"asc", "field2":"desc"} */
1345
+ sort_by?: components["parameters"]["sortByOptions"];
1346
+ /** @description search keyword */
1347
+ search?: components["parameters"]["searchKeyword"];
1348
+ };
1349
+ header?: never;
1350
+ path?: never;
1351
+ cookie?: never;
1352
+ };
1353
+ requestBody?: never;
1354
+ responses: {
1355
+ /** @description OK */
1356
+ 200: {
1357
+ headers: {
1358
+ [name: string]: unknown;
1359
+ };
1360
+ content: {
1361
+ "application/json": {
1362
+ message?: string;
1363
+ success?: boolean;
1364
+ content?: {
1365
+ customers?: components["schemas"]["Customer"][];
1366
+ pagination?: components["schemas"]["Pagination"];
1367
+ };
1368
+ };
1369
+ };
1370
+ };
1371
+ };
1372
+ };
1373
+ "pos-get-customer-detail": {
1374
+ parameters: {
1375
+ query?: never;
1376
+ header?: never;
1377
+ path: {
1378
+ /** @description Customer Id */
1379
+ id: string;
1380
+ };
1381
+ cookie?: never;
1382
+ };
1383
+ requestBody?: never;
1384
+ responses: {
1385
+ /** @description OK */
1386
+ 200: {
1387
+ headers: {
1388
+ [name: string]: unknown;
1389
+ };
1390
+ content: {
1391
+ "application/json": {
1392
+ message?: string;
1393
+ success?: boolean;
1394
+ content?: {
1395
+ customer?: components["schemas"]["CustomerDetail"];
1396
+ };
1397
+ };
1398
+ };
1399
+ };
1400
+ };
1401
+ };
1402
+ "pos-list-orders": {
1403
+ parameters: {
1404
+ query?: {
1405
+ /** @description page number of pagination list */
1406
+ page?: components["parameters"]["pageNumber"];
1407
+ /** @description no of rows per page */
1408
+ limit?: components["parameters"]["pageLimit"];
1409
+ /** @description JSON object */
1410
+ filters?: components["parameters"]["columnBasedFilters"];
1411
+ /** @description JSON string format: {"field1":"asc", "field2":"desc"} */
1412
+ sort_by?: components["parameters"]["sortByOptions"];
1413
+ /** @description search keyword */
1414
+ search?: components["parameters"]["searchKeyword"];
1415
+ };
1416
+ header?: never;
1417
+ path?: never;
1418
+ cookie?: never;
1419
+ };
1420
+ requestBody?: never;
1421
+ responses: {
1422
+ /** @description OK */
1423
+ 200: {
1424
+ headers: {
1425
+ [name: string]: unknown;
1426
+ };
1427
+ content: {
1428
+ "application/json": {
1429
+ message?: string;
1430
+ success?: boolean;
1431
+ content?: {
1432
+ orders?: components["schemas"]["OrderList"][];
1433
+ pagination?: components["schemas"]["Pagination"];
1434
+ };
1435
+ };
1436
+ };
1437
+ };
1438
+ };
1439
+ };
1440
+ "pos-get-order-detail": {
1441
+ parameters: {
1442
+ query?: never;
1443
+ header?: never;
1444
+ path: {
1445
+ /** @description order number */
1446
+ order_number: string;
1447
+ };
1448
+ cookie?: never;
1449
+ };
1450
+ requestBody?: never;
1451
+ responses: {
1452
+ /** @description OK */
1453
+ 200: {
1454
+ headers: {
1455
+ [name: string]: unknown;
1456
+ };
1457
+ content: {
1458
+ "application/json": {
1459
+ message?: string;
1460
+ success?: boolean;
1461
+ content?: {
1462
+ order?: components["schemas"]["OrderDetail"];
1463
+ };
1464
+ };
1465
+ };
1466
+ };
1467
+ };
1468
+ };
1469
+ "pos-list-order-activity": {
1470
+ parameters: {
1471
+ query?: never;
1472
+ header?: never;
1473
+ path: {
1474
+ /** @description order number */
1475
+ order_number: string;
1476
+ };
1477
+ cookie?: never;
1478
+ };
1479
+ requestBody?: never;
1480
+ responses: {
1481
+ /** @description OK */
1482
+ 200: {
1483
+ headers: {
1484
+ [name: string]: unknown;
1485
+ };
1486
+ content: {
1487
+ "application/json": {
1488
+ message?: string;
1489
+ success?: boolean;
1490
+ content?: {
1491
+ activity?: components["schemas"]["OrderActivity"][];
1492
+ pagination?: components["schemas"]["Pagination"];
1493
+ };
1494
+ };
1495
+ };
1496
+ };
1497
+ };
1498
+ };
1499
+ "pos-get-order-invoice": {
1500
+ parameters: {
1501
+ query?: {
1502
+ /** @description Response data format */
1503
+ format?: "json" | "pdf";
1504
+ };
1505
+ header?: never;
1506
+ path: {
1507
+ /** @description order number */
1508
+ order_number: string;
1509
+ };
1510
+ cookie?: never;
1511
+ };
1512
+ requestBody?: never;
1513
+ responses: {
1514
+ /** @description OK */
1515
+ 200: {
1516
+ headers: {
1517
+ [name: string]: unknown;
1518
+ };
1519
+ content: {
1520
+ "application/json": {
1521
+ message?: string;
1522
+ success?: boolean;
1523
+ content?: {
1524
+ invoices?: components["schemas"]["InvoiceDetail"][];
1525
+ };
1526
+ };
1527
+ "application/pdf": Record<string, never>;
1528
+ };
1529
+ };
1530
+ };
1531
+ };
1532
+ "pos-get-order-receipt": {
1533
+ parameters: {
1534
+ query?: {
1535
+ /** @description Response data format */
1536
+ format?: "json" | "pdf";
1537
+ };
1538
+ header?: never;
1539
+ path: {
1540
+ /** @description order number */
1541
+ order_number: string;
1542
+ };
1543
+ cookie?: never;
1544
+ };
1545
+ requestBody?: never;
1546
+ responses: {
1547
+ /** @description OK */
1548
+ 200: {
1549
+ headers: {
1550
+ [name: string]: unknown;
1551
+ };
1552
+ content: {
1553
+ "application/json": {
1554
+ message?: string;
1555
+ success?: boolean;
1556
+ content?: {
1557
+ order_receipt?: components["schemas"]["OrderReceiptJsonFormat"];
1558
+ };
1559
+ };
1560
+ "application/pdf": Record<string, never>;
1561
+ };
1562
+ };
1563
+ };
1564
+ };
1565
+ "pos-list-order-shipments": {
1566
+ parameters: {
1567
+ query?: never;
1568
+ header?: never;
1569
+ path: {
1570
+ /** @description order number */
1571
+ order_number: string;
1572
+ };
1573
+ cookie?: never;
1574
+ };
1575
+ requestBody?: never;
1576
+ responses: {
1577
+ /** @description OK */
1578
+ 200: {
1579
+ headers: {
1580
+ [name: string]: unknown;
1581
+ };
1582
+ content: {
1583
+ "application/json": {
1584
+ message?: string;
1585
+ success?: boolean;
1586
+ content?: {
1587
+ shipment?: components["schemas"]["ShipmentDetail"];
1588
+ };
1589
+ };
1590
+ };
1591
+ };
1592
+ };
1593
+ };
1594
+ "pos-list-shipments": {
1595
+ parameters: {
1596
+ query?: {
1597
+ /** @description page number of pagination list */
1598
+ page?: components["parameters"]["pageNumber"];
1599
+ /** @description no of rows per page */
1600
+ limit?: components["parameters"]["pageLimit"];
1601
+ /** @description JSON object */
1602
+ filters?: components["parameters"]["columnBasedFilters"];
1603
+ /** @description JSON string format: {"field1":"asc", "field2":"desc"} */
1604
+ sort_by?: components["parameters"]["sortByOptions"];
1605
+ /** @description search keyword */
1606
+ search?: components["parameters"]["searchKeyword"];
1607
+ };
1608
+ header?: never;
1609
+ path?: never;
1610
+ cookie?: never;
1611
+ };
1612
+ requestBody?: never;
1613
+ responses: {
1614
+ /** @description OK */
1615
+ 200: {
1616
+ headers: {
1617
+ [name: string]: unknown;
1618
+ };
1619
+ content: {
1620
+ "application/json": {
1621
+ message?: string;
1622
+ success?: boolean;
1623
+ content?: {
1624
+ shipments?: components["schemas"]["ShipmentList"][];
1625
+ pagination?: components["schemas"]["Pagination"];
1626
+ };
1627
+ };
1628
+ };
1629
+ };
1630
+ };
1631
+ };
1632
+ "pos-check-order-inventory": {
1633
+ parameters: {
1634
+ query?: never;
1635
+ header?: never;
1636
+ path: {
1637
+ /** @description Order number */
1638
+ order_number: string;
1639
+ };
1640
+ cookie?: never;
1641
+ };
1642
+ requestBody?: never;
1643
+ responses: {
1644
+ /** @description OK */
1645
+ 200: {
1646
+ headers: {
1647
+ [name: string]: unknown;
1648
+ };
1649
+ content: {
1650
+ "application/json": {
1651
+ message?: string;
1652
+ success?: boolean;
1653
+ content?: {
1654
+ /** @enum {unknown} */
1655
+ inventory_status?: "fulfilled" | "partially-fulfilled" | "not-fulfilled";
1656
+ shipment_items?: components["schemas"]["ShipmentItem"][];
1657
+ recommended_warehouses?: {
1658
+ id?: string;
1659
+ name?: string;
1660
+ /** @enum {unknown} */
1661
+ inventory_status?: "fulfilled" | "partially-fulfilled" | "not-fulfilled";
1662
+ }[];
1663
+ inventory_detail?: {
1664
+ sku?: string;
1665
+ total_quantity?: number;
1666
+ warehouses?: {
1667
+ warehouse_id?: string;
1668
+ warehouse_name?: string;
1669
+ quantity?: number;
1670
+ }[];
1671
+ }[];
1672
+ allowed_action?: string[];
1673
+ };
1674
+ };
1675
+ };
1676
+ };
1677
+ };
1678
+ };
1679
+ "pos-refund-shortfall": {
1680
+ parameters: {
1681
+ query?: never;
1682
+ header?: never;
1683
+ path: {
1684
+ /** @description Order Number */
1685
+ order_number: string;
1686
+ };
1687
+ cookie?: never;
1688
+ };
1689
+ requestBody?: {
1690
+ content: {
1691
+ "application/json": {
1692
+ items: {
1693
+ sku: string;
1694
+ quantity: number;
1695
+ /** @default 0 */
1696
+ free_quantity?: number;
1697
+ }[];
1698
+ /** @enum {unknown} */
1699
+ payment_method: "original-payment-mode" | "bank-transfer";
1700
+ /** @description required if payment_method = bank-transfer */
1701
+ bank_account_id?: string | null;
1702
+ };
1703
+ };
1704
+ };
1705
+ responses: {
1706
+ /** @description OK */
1707
+ 200: {
1708
+ headers: {
1709
+ [name: string]: unknown;
1710
+ };
1711
+ content: {
1712
+ "application/json": {
1713
+ message?: string;
1714
+ success?: boolean;
1715
+ };
1716
+ };
1717
+ };
1718
+ };
1719
+ };
1720
+ "pos-get-shipment-detail": {
1721
+ parameters: {
1722
+ query?: never;
1723
+ header?: never;
1724
+ path: {
1725
+ /** @description Shipment reference number */
1726
+ reference_number: string;
1727
+ };
1728
+ cookie?: never;
1729
+ };
1730
+ requestBody?: never;
1731
+ responses: {
1732
+ /** @description OK */
1733
+ 200: {
1734
+ headers: {
1735
+ [name: string]: unknown;
1736
+ };
1737
+ content: {
1738
+ "application/json": {
1739
+ message?: string;
1740
+ success?: boolean;
1741
+ content?: {
1742
+ shipment?: components["schemas"]["ShipmentDetail"];
1743
+ };
1744
+ };
1745
+ };
1746
+ };
1747
+ };
1748
+ };
1749
+ "pos-get-shipment-invoice": {
1750
+ parameters: {
1751
+ query?: {
1752
+ /** @description Response data format */
1753
+ format?: "json" | "pdf";
1754
+ };
1755
+ header?: never;
1756
+ path: {
1757
+ /** @description Shipment reference number */
1758
+ reference_number: string;
1759
+ };
1760
+ cookie?: never;
1761
+ };
1762
+ requestBody?: never;
1763
+ responses: {
1764
+ /** @description OK */
1765
+ 200: {
1766
+ headers: {
1767
+ [name: string]: unknown;
1768
+ };
1769
+ content: {
1770
+ "application/json": {
1771
+ message?: string;
1772
+ success?: boolean;
1773
+ content?: {
1774
+ invoice?: components["schemas"]["InvoiceDetail"];
1775
+ };
1776
+ };
1777
+ "application/pdf": Record<string, never>;
1778
+ };
1779
+ };
1780
+ };
1781
+ };
1782
+ "pos-update-shipment": {
1783
+ parameters: {
1784
+ query?: never;
1785
+ header?: never;
1786
+ path: {
1787
+ /** @description Shipment reference number */
1788
+ reference_number: string;
1789
+ };
1790
+ cookie?: never;
1791
+ };
1792
+ requestBody?: {
1793
+ content: {
1794
+ "application/json": {
1795
+ status?: string;
1796
+ warehouse_id?: string;
1797
+ awb_no?: string;
1798
+ courier_company_name?: string;
1799
+ shipping_label_url?: string;
1800
+ tracking_url?: string;
1801
+ manual_shipping_charges?: number;
1802
+ /** Format: date-time */
1803
+ eta_delivery?: string;
1804
+ /** Format: date-time */
1805
+ shipped_date?: string;
1806
+ /** Format: date-time */
1807
+ out_for_delivery_date?: string;
1808
+ /** Format: date-time */
1809
+ delivered_date?: string;
1810
+ };
1811
+ };
1812
+ };
1813
+ responses: {
1814
+ /** @description OK */
1815
+ 200: {
1816
+ headers: {
1817
+ [name: string]: unknown;
1818
+ };
1819
+ content: {
1820
+ "application/json": {
1821
+ message?: string;
1822
+ success?: boolean;
1823
+ content?: {
1824
+ shipment?: components["schemas"]["ShipmentDetail"];
1825
+ };
1826
+ };
1827
+ };
1828
+ };
1829
+ };
1830
+ };
1831
+ }
1832
+ //#endregion
1833
+ //#region src/types/admin-pos-api-types.d.ts
1834
+ type AppliedCoupon = components["schemas"]["AppliedCoupon"];
1835
+ type AppliedPromotion = components["schemas"]["AppliedPromotion"];
1836
+ type BankTransfer = components["schemas"]["BankTransfer"];
1837
+ type BusinessInfo = components["schemas"]["BusinessInfo"];
1838
+ type CardPayment = components["schemas"]["CardPayment"];
1839
+ type Customer = components["schemas"]["Customer"];
1840
+ type CustomerAddress = components["schemas"]["CustomerAddress"];
1841
+ type CustomerDetail = components["schemas"]["CustomerDetail"];
1842
+ type CustomerInfo = components["schemas"]["CustomerInfo"];
1843
+ type CustomerLoyalty = components["schemas"]["CustomerLoyalty"];
1844
+ type CustomerSegment = components["schemas"]["CustomerSegment"];
1845
+ type InventoryActivity = components["schemas"]["InventoryActivity"];
1846
+ type InventoryDetail = components["schemas"]["InventoryDetail"];
1847
+ type Invoice = components["schemas"]["Invoice"];
1848
+ type InvoiceDetail = components["schemas"]["InvoiceDetail"];
1849
+ type InvoiceItem = components["schemas"]["InvoiceItem"];
1850
+ type ItemWiseInventory = components["schemas"]["ItemWiseInventory"];
1851
+ type LotBatchWiseInventory = components["schemas"]["LotBatchWiseInventory"];
1852
+ type LoyaltyPointPayment = components["schemas"]["LoyaltyPointPayment"];
1853
+ type NetbankingPayment = components["schemas"]["NetbankingPayment"];
1854
+ type NotificationChannelPreferences = components["schemas"]["NotificationChannelPreferences"];
1855
+ type NotificationPreferences = components["schemas"]["NotificationPreferences"];
1856
+ type Order = components["schemas"]["Order"];
1857
+ type OrderActivity = components["schemas"]["OrderActivity"];
1858
+ type OrderDetail = components["schemas"]["OrderDetail"];
1859
+ type OrderItem = components["schemas"]["OrderItem"];
1860
+ type OrderList = components["schemas"]["OrderList"];
1861
+ type OrderPayment = components["schemas"]["OrderPayment"];
1862
+ type OrderPaymentInfo = components["schemas"]["OrderPaymentInfo"];
1863
+ type OrderReceiptJsonFormat = components["schemas"]["OrderReceiptJsonFormat"];
1864
+ type OrderShipment = components["schemas"]["OrderShipment"];
1865
+ type Pagination = components["schemas"]["Pagination"];
1866
+ type PartialCollectAndDelivery = components["schemas"]["PartialCollectAndDelivery"];
1867
+ type Shipment = components["schemas"]["Shipment"];
1868
+ type ShipmentBox = components["schemas"]["ShipmentBox"];
1869
+ type ShipmentDetail = components["schemas"]["ShipmentDetail"];
1870
+ type ShipmentInfo = components["schemas"]["ShipmentInfo"];
1871
+ type ShipmentItem = components["schemas"]["ShipmentItem"];
1872
+ type ShipmentList = components["schemas"]["ShipmentList"];
1873
+ type ShipmentPackaging = components["schemas"]["ShipmentPackaging"];
1874
+ type ShipmentProgression = components["schemas"]["ShipmentProgression"];
1875
+ type UpiPayment = components["schemas"]["UpiPayment"];
1876
+ type WalletPayment = components["schemas"]["WalletPayment"];
1877
+ type Warehouse = components["schemas"]["Warehouse"];
1878
+ type WarehouseBasicDetail = components["schemas"]["WarehouseBasicDetail"];
1879
+ type WarehouseWiseInventory = components["schemas"]["WarehouseWiseInventory"];
1880
+ type PosListInventoryResponse = paths["/pos/catalog/inventories"]["get"]["responses"][200]["content"]["application/json"];
1881
+ type PosListInventoryContent = PosListInventoryResponse["content"];
1882
+ type PosListInventoryQuery = paths["/pos/catalog/inventories"]["get"]["parameters"]["query"];
1883
+ type PosListInventoryActivityResponse = paths["/pos/catalog/inventories/activites"]["get"]["responses"][200]["content"]["application/json"];
1884
+ type PosListInventoryActivityContent = PosListInventoryActivityResponse["content"];
1885
+ type PosListInventoryActivityQuery = paths["/pos/catalog/inventories/activites"]["get"]["parameters"]["query"];
1886
+ type PosListInventoryDetailResponse = paths["/pos/catalog/inventories/detail"]["get"]["responses"][200]["content"]["application/json"];
1887
+ type PosListInventoryDetailContent = PosListInventoryDetailResponse["content"];
1888
+ type PosListInventoryDetailQuery = paths["/pos/catalog/inventories/detail"]["get"]["parameters"]["query"];
1889
+ type PosListCustomersResponse = paths["/pos/customers"]["get"]["responses"][200]["content"]["application/json"];
1890
+ type PosListCustomersContent = PosListCustomersResponse["content"];
1891
+ type PosListCustomersQuery = paths["/pos/customers"]["get"]["parameters"]["query"];
1892
+ type PosGetCustomerDetailResponse = paths["/pos/customers/{id}"]["get"]["responses"][200]["content"]["application/json"];
1893
+ type PosGetCustomerDetailContent = PosGetCustomerDetailResponse["content"];
1894
+ type PosGetCustomerDetailPathParams = paths["/pos/customers/{id}"]["get"]["parameters"]["path"];
1895
+ type PosListOrdersResponse = paths["/pos/orders"]["get"]["responses"][200]["content"]["application/json"];
1896
+ type PosListOrdersContent = PosListOrdersResponse["content"];
1897
+ type PosListOrdersQuery = paths["/pos/orders"]["get"]["parameters"]["query"];
1898
+ type PosGetOrderDetailResponse = paths["/pos/orders/{order_number}"]["get"]["responses"][200]["content"]["application/json"];
1899
+ type PosGetOrderDetailContent = PosGetOrderDetailResponse["content"];
1900
+ type PosGetOrderDetailPathParams = paths["/pos/orders/{order_number}"]["get"]["parameters"]["path"];
1901
+ type PosListOrderActivityResponse = paths["/pos/orders/{order_number}/activity"]["get"]["responses"][200]["content"]["application/json"];
1902
+ type PosListOrderActivityContent = PosListOrderActivityResponse["content"];
1903
+ type PosListOrderActivityPathParams = paths["/pos/orders/{order_number}/activity"]["get"]["parameters"]["path"];
1904
+ type PosGetOrderInvoiceResponse = paths["/pos/orders/{order_number}/invoice"]["get"]["responses"][200]["content"]["application/json"];
1905
+ type PosGetOrderInvoiceContent = PosGetOrderInvoiceResponse["content"];
1906
+ type PosGetOrderInvoiceQuery = paths["/pos/orders/{order_number}/invoice"]["get"]["parameters"]["query"];
1907
+ type PosGetOrderInvoicePathParams = paths["/pos/orders/{order_number}/invoice"]["get"]["parameters"]["path"];
1908
+ type PosGetOrderReceiptResponse = paths["/pos/orders/{order_number}/receipt"]["get"]["responses"][200]["content"]["application/json"];
1909
+ type PosGetOrderReceiptContent = PosGetOrderReceiptResponse["content"];
1910
+ type PosGetOrderReceiptQuery = paths["/pos/orders/{order_number}/receipt"]["get"]["parameters"]["query"];
1911
+ type PosGetOrderReceiptPathParams = paths["/pos/orders/{order_number}/receipt"]["get"]["parameters"]["path"];
1912
+ type PosListOrderShipmentsResponse = paths["/pos/orders/{order_number}/shipments"]["get"]["responses"][200]["content"]["application/json"];
1913
+ type PosListOrderShipmentsContent = PosListOrderShipmentsResponse["content"];
1914
+ type PosListOrderShipmentsPathParams = paths["/pos/orders/{order_number}/shipments"]["get"]["parameters"]["path"];
1915
+ type PosListShipmentsResponse = paths["/pos/shipping/shipments"]["get"]["responses"][200]["content"]["application/json"];
1916
+ type PosListShipmentsContent = PosListShipmentsResponse["content"];
1917
+ type PosListShipmentsQuery = paths["/pos/shipping/shipments"]["get"]["parameters"]["query"];
1918
+ type PosCheckOrderInventoryResponse = paths["/pos/shipping/shipments/{order_number}/check-inventory"]["get"]["responses"][200]["content"]["application/json"];
1919
+ type PosCheckOrderInventoryContent = PosCheckOrderInventoryResponse["content"];
1920
+ type PosCheckOrderInventoryPathParams = paths["/pos/shipping/shipments/{order_number}/check-inventory"]["get"]["parameters"]["path"];
1921
+ type PosRefundShortfallResponse = paths["/pos/shipping/shipments/{order_number}/refund-shortfall"]["post"]["responses"][200]["content"]["application/json"];
1922
+ type PosRefundShortfallPathParams = paths["/pos/shipping/shipments/{order_number}/refund-shortfall"]["post"]["parameters"]["path"];
1923
+ type PosRefundShortfallBody = NonNullable<paths["/pos/shipping/shipments/{order_number}/refund-shortfall"]["post"]["requestBody"]>["content"]["application/json"];
1924
+ type PosGetShipmentDetailResponse = paths["/pos/shipping/shipments/{reference_number}"]["get"]["responses"][200]["content"]["application/json"];
1925
+ type PosGetShipmentDetailContent = PosGetShipmentDetailResponse["content"];
1926
+ type PosGetShipmentDetailPathParams = paths["/pos/shipping/shipments/{reference_number}"]["get"]["parameters"]["path"];
1927
+ type PosGetShipmentInvoiceResponse = paths["/pos/shipping/shipments/{reference_number}/invoice"]["get"]["responses"][200]["content"]["application/json"];
1928
+ type PosGetShipmentInvoiceContent = PosGetShipmentInvoiceResponse["content"];
1929
+ type PosGetShipmentInvoiceQuery = paths["/pos/shipping/shipments/{reference_number}/invoice"]["get"]["parameters"]["query"];
1930
+ type PosGetShipmentInvoicePathParams = paths["/pos/shipping/shipments/{reference_number}/invoice"]["get"]["parameters"]["path"];
1931
+ type PosUpdateShipmentResponse = paths["/pos/shipping/shipments/{reference_number}/manual-update"]["put"]["responses"][200]["content"]["application/json"];
1932
+ type PosUpdateShipmentContent = PosUpdateShipmentResponse["content"];
1933
+ type PosUpdateShipmentPathParams = paths["/pos/shipping/shipments/{reference_number}/manual-update"]["put"]["parameters"]["path"];
1934
+ type PosUpdateShipmentBody = NonNullable<paths["/pos/shipping/shipments/{reference_number}/manual-update"]["put"]["requestBody"]>["content"]["application/json"];
1935
+ //#endregion
1936
+ export { AppliedCoupon, AppliedPromotion, BankTransfer, BusinessInfo, CardPayment, Customer, CustomerAddress, CustomerDetail, CustomerInfo, CustomerLoyalty, CustomerSegment, InventoryActivity, InventoryDetail, Invoice, InvoiceDetail, InvoiceItem, ItemWiseInventory, LotBatchWiseInventory, LoyaltyPointPayment, NetbankingPayment, NotificationChannelPreferences, NotificationPreferences, Order, OrderActivity, OrderDetail, OrderItem, OrderList, OrderPayment, OrderPaymentInfo, OrderReceiptJsonFormat, OrderShipment, Pagination, PartialCollectAndDelivery, PosCheckOrderInventoryContent, PosCheckOrderInventoryPathParams, PosCheckOrderInventoryResponse, PosGetCustomerDetailContent, PosGetCustomerDetailPathParams, PosGetCustomerDetailResponse, PosGetOrderDetailContent, PosGetOrderDetailPathParams, PosGetOrderDetailResponse, PosGetOrderInvoiceContent, PosGetOrderInvoicePathParams, PosGetOrderInvoiceQuery, PosGetOrderInvoiceResponse, PosGetOrderReceiptContent, PosGetOrderReceiptPathParams, PosGetOrderReceiptQuery, PosGetOrderReceiptResponse, PosGetShipmentDetailContent, PosGetShipmentDetailPathParams, PosGetShipmentDetailResponse, PosGetShipmentInvoiceContent, PosGetShipmentInvoicePathParams, PosGetShipmentInvoiceQuery, PosGetShipmentInvoiceResponse, PosListCustomersContent, PosListCustomersQuery, PosListCustomersResponse, PosListInventoryActivityContent, PosListInventoryActivityQuery, PosListInventoryActivityResponse, PosListInventoryContent, PosListInventoryDetailContent, PosListInventoryDetailQuery, PosListInventoryDetailResponse, PosListInventoryQuery, PosListInventoryResponse, PosListOrderActivityContent, PosListOrderActivityPathParams, PosListOrderActivityResponse, PosListOrderShipmentsContent, PosListOrderShipmentsPathParams, PosListOrderShipmentsResponse, PosListOrdersContent, PosListOrdersQuery, PosListOrdersResponse, PosListShipmentsContent, PosListShipmentsQuery, PosListShipmentsResponse, PosRefundShortfallBody, PosRefundShortfallPathParams, PosRefundShortfallResponse, PosUpdateShipmentBody, PosUpdateShipmentContent, PosUpdateShipmentPathParams, PosUpdateShipmentResponse, Shipment, ShipmentBox, ShipmentDetail, ShipmentInfo, ShipmentItem, ShipmentList, ShipmentPackaging, ShipmentProgression, UpiPayment, WalletPayment, Warehouse, WarehouseBasicDetail, WarehouseWiseInventory, type components, type operations, type paths };