@erp-galoper/types 1.0.2017 → 1.0.2019
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/openapi.ts +171 -6
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -17934,7 +17934,7 @@ export interface paths {
|
|
|
17934
17934
|
/**
|
|
17935
17935
|
* Reset Collection Deposit To Draft
|
|
17936
17936
|
* @description reset a collection deposit to draft. Reverses balances + deletes post entries. Resets RV statuses to pending.
|
|
17937
|
-
* Permission key: collection_deposit : [
|
|
17937
|
+
* Permission key: collection_deposit : [ resettodraft ]
|
|
17938
17938
|
*/
|
|
17939
17939
|
post: operations["sales_collection_deposit_views_reset_collection_deposit_to_draft"];
|
|
17940
17940
|
delete?: never;
|
|
@@ -26698,10 +26698,10 @@ export interface components {
|
|
|
26698
26698
|
name: string;
|
|
26699
26699
|
permissions: components["schemas"]["ModulePermissions"];
|
|
26700
26700
|
/**
|
|
26701
|
-
*
|
|
26701
|
+
* Candelete
|
|
26702
26702
|
* @default false
|
|
26703
26703
|
*/
|
|
26704
|
-
|
|
26704
|
+
canDelete: boolean;
|
|
26705
26705
|
};
|
|
26706
26706
|
/**
|
|
26707
26707
|
* SessionPermissionAction
|
|
@@ -33190,6 +33190,11 @@ export interface components {
|
|
|
33190
33190
|
*/
|
|
33191
33191
|
details: components["schemas"]["CreateStockAdjustmentDetailSchema"][];
|
|
33192
33192
|
};
|
|
33193
|
+
/**
|
|
33194
|
+
* InventorySerialDocumentSortBy
|
|
33195
|
+
* @enum {string}
|
|
33196
|
+
*/
|
|
33197
|
+
InventorySerialDocumentSortBy: "dateCreated" | "dateModified" | "serialNumber";
|
|
33193
33198
|
/** StockAdjustmentHeaderListSchema */
|
|
33194
33199
|
StockAdjustmentHeaderListSchema: {
|
|
33195
33200
|
info: components["schemas"]["PageInfoSchema"];
|
|
@@ -34243,6 +34248,11 @@ export interface components {
|
|
|
34243
34248
|
*/
|
|
34244
34249
|
requestReason: number;
|
|
34245
34250
|
};
|
|
34251
|
+
/**
|
|
34252
|
+
* InventoryFiscalDocumentSortBy
|
|
34253
|
+
* @enum {string}
|
|
34254
|
+
*/
|
|
34255
|
+
InventoryFiscalDocumentSortBy: "dateCreated" | "dateModified" | "serialNumber" | "date";
|
|
34246
34256
|
/**
|
|
34247
34257
|
* ViewTransferRequestEnum
|
|
34248
34258
|
* @enum {string}
|
|
@@ -34346,7 +34356,7 @@ export interface components {
|
|
|
34346
34356
|
* CustomerSortBy
|
|
34347
34357
|
* @enum {string}
|
|
34348
34358
|
*/
|
|
34349
|
-
CustomerSortBy: "name" | "accountNumber" | "region" | "city";
|
|
34359
|
+
CustomerSortBy: "name" | "accountNumber" | "region" | "city" | "dateCreated" | "dateModified";
|
|
34350
34360
|
/**
|
|
34351
34361
|
* typeCustomers
|
|
34352
34362
|
* @enum {string}
|
|
@@ -35397,6 +35407,11 @@ export interface components {
|
|
|
35397
35407
|
* @enum {string}
|
|
35398
35408
|
*/
|
|
35399
35409
|
DocumentTypeEnum: "purchaseRefundVoucher" | "creditNote" | "advancePayment" | "goodsReceiptNote" | "salesPerson" | "returnOrder" | "returnInvoice" | "expenseVoucher" | "expensePaymentVoucher";
|
|
35410
|
+
/**
|
|
35411
|
+
* SupplierSortBy
|
|
35412
|
+
* @enum {string}
|
|
35413
|
+
*/
|
|
35414
|
+
SupplierSortBy: "name" | "accountNumber" | "region" | "city" | "dateCreated" | "dateModified";
|
|
35400
35415
|
/**
|
|
35401
35416
|
* typeSuppliers
|
|
35402
35417
|
* @enum {string}
|
|
@@ -41969,6 +41984,11 @@ export interface components {
|
|
|
41969
41984
|
*/
|
|
41970
41985
|
itemPackage?: string | null;
|
|
41971
41986
|
};
|
|
41987
|
+
/**
|
|
41988
|
+
* PurchaseDocumentSortBy
|
|
41989
|
+
* @enum {string}
|
|
41990
|
+
*/
|
|
41991
|
+
PurchaseDocumentSortBy: "dateCreated" | "dateModified" | "serialNumber" | "total" | "companyTotal" | "supplierName" | "date";
|
|
41972
41992
|
/**
|
|
41973
41993
|
* requisitionTypes
|
|
41974
41994
|
* @enum {string}
|
|
@@ -45471,6 +45491,11 @@ export interface components {
|
|
|
45471
45491
|
/** Items */
|
|
45472
45492
|
items: components["schemas"]["CalculatePurchaseReturnOrderItemsSchema"][];
|
|
45473
45493
|
};
|
|
45494
|
+
/**
|
|
45495
|
+
* PurchaseInvoiceSortBy
|
|
45496
|
+
* @enum {string}
|
|
45497
|
+
*/
|
|
45498
|
+
PurchaseInvoiceSortBy: "supplierRegion" | "supplierCity" | "serialNumber" | "date" | "dateCreated" | "dateModified" | "total" | "companyTotal" | "supplierName";
|
|
45474
45499
|
/**
|
|
45475
45500
|
* TypeSchema
|
|
45476
45501
|
* @enum {string}
|
|
@@ -48684,6 +48709,11 @@ export interface components {
|
|
|
48684
48709
|
*/
|
|
48685
48710
|
items: components["schemas"]["CreateOrUpdateGoodsReceiptNoteItemsSchema"][];
|
|
48686
48711
|
};
|
|
48712
|
+
/**
|
|
48713
|
+
* PurchaseInventoryDocumentSortBy
|
|
48714
|
+
* @enum {string}
|
|
48715
|
+
*/
|
|
48716
|
+
PurchaseInventoryDocumentSortBy: "dateCreated" | "dateModified" | "serialNumber" | "supplierName" | "date";
|
|
48687
48717
|
/** GoodsReceiptListSchema */
|
|
48688
48718
|
GoodsReceiptListSchema: {
|
|
48689
48719
|
info: components["schemas"]["PageInfoSchema"];
|
|
@@ -49277,6 +49307,11 @@ export interface components {
|
|
|
49277
49307
|
*/
|
|
49278
49308
|
quantity: number;
|
|
49279
49309
|
};
|
|
49310
|
+
/**
|
|
49311
|
+
* ContactListSortBy
|
|
49312
|
+
* @enum {string}
|
|
49313
|
+
*/
|
|
49314
|
+
ContactListSortBy: "dateCreated" | "dateModified" | "name";
|
|
49280
49315
|
/** ListOfferAndPromotion */
|
|
49281
49316
|
ListOfferAndPromotion: {
|
|
49282
49317
|
info: components["schemas"]["PageInfoSchema"];
|
|
@@ -53021,6 +53056,11 @@ export interface components {
|
|
|
53021
53056
|
/** Items */
|
|
53022
53057
|
items: components["schemas"]["CreateUpdateSalesQuotationItemSchema"][];
|
|
53023
53058
|
};
|
|
53059
|
+
/**
|
|
53060
|
+
* SalesDocumentSortBy
|
|
53061
|
+
* @enum {string}
|
|
53062
|
+
*/
|
|
53063
|
+
SalesDocumentSortBy: "dateCreated" | "dateModified" | "serialNumber" | "total" | "companyTotal" | "customerName" | "date";
|
|
53024
53064
|
/** SalesQuotationListSchema */
|
|
53025
53065
|
SalesQuotationListSchema: {
|
|
53026
53066
|
info: components["schemas"]["PageInfoSchema"];
|
|
@@ -58168,7 +58208,7 @@ export interface components {
|
|
|
58168
58208
|
* SalesInvoiceSortBy
|
|
58169
58209
|
* @enum {string}
|
|
58170
58210
|
*/
|
|
58171
|
-
SalesInvoiceSortBy: "customerRegion" | "customerCity" | "salesPerson" | "serialNumber" | "date";
|
|
58211
|
+
SalesInvoiceSortBy: "customerRegion" | "customerCity" | "salesPerson" | "serialNumber" | "date" | "dateCreated" | "dateModified" | "total" | "customerName";
|
|
58172
58212
|
/** SalesInvoiceListSchema */
|
|
58173
58213
|
SalesInvoiceListSchema: {
|
|
58174
58214
|
info: components["schemas"]["PageInfoSchema"];
|
|
@@ -61024,6 +61064,11 @@ export interface components {
|
|
|
61024
61064
|
* @enum {string}
|
|
61025
61065
|
*/
|
|
61026
61066
|
DeliveryNoteDocumentTypeEnum: "default" | "returnablePackageReconciliation" | "salesReturnPackage";
|
|
61067
|
+
/**
|
|
61068
|
+
* SalesInventoryDocumentSortBy
|
|
61069
|
+
* @enum {string}
|
|
61070
|
+
*/
|
|
61071
|
+
SalesInventoryDocumentSortBy: "dateCreated" | "dateModified" | "serialNumber" | "customerName" | "date";
|
|
61027
61072
|
/** GoodsDeliveryNoteListSchema */
|
|
61028
61073
|
GoodsDeliveryNoteListSchema: {
|
|
61029
61074
|
info: components["schemas"]["PageInfoSchema"];
|
|
@@ -65404,7 +65449,7 @@ export interface components {
|
|
|
65404
65449
|
* RepairOrderSortBy
|
|
65405
65450
|
* @enum {string}
|
|
65406
65451
|
*/
|
|
65407
|
-
RepairOrderSortBy: "itemName" | "customerName" | "serialNumber" | "date";
|
|
65452
|
+
RepairOrderSortBy: "itemName" | "customerName" | "serialNumber" | "date" | "dateCreated" | "dateModified";
|
|
65408
65453
|
/** RepairOrderListSchema */
|
|
65409
65454
|
RepairOrderListSchema: {
|
|
65410
65455
|
info: components["schemas"]["PageInfoSchema"];
|
|
@@ -76472,6 +76517,10 @@ export interface operations {
|
|
|
76472
76517
|
search?: string | null;
|
|
76473
76518
|
/** @description Filter by warehouse ID(s). If not provided, all assigned warehouses will be included. */
|
|
76474
76519
|
warehouses?: string[] | null;
|
|
76520
|
+
/** @description Field to sort by */
|
|
76521
|
+
sortBy?: components["schemas"]["InventorySerialDocumentSortBy"] | null;
|
|
76522
|
+
/** @description Sort order: ascending or descending */
|
|
76523
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
76475
76524
|
};
|
|
76476
76525
|
header?: never;
|
|
76477
76526
|
path?: never;
|
|
@@ -76813,6 +76862,10 @@ export interface operations {
|
|
|
76813
76862
|
search?: string | null;
|
|
76814
76863
|
/** @description Filter by warehouse ID(s). If not provided, all assigned warehouses will be included. */
|
|
76815
76864
|
warehouses?: string[] | null;
|
|
76865
|
+
/** @description Field to sort by */
|
|
76866
|
+
sortBy?: components["schemas"]["InventorySerialDocumentSortBy"] | null;
|
|
76867
|
+
/** @description Sort order: ascending or descending */
|
|
76868
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
76816
76869
|
};
|
|
76817
76870
|
header?: never;
|
|
76818
76871
|
path?: never;
|
|
@@ -77337,6 +77390,10 @@ export interface operations {
|
|
|
77337
77390
|
fromWarehouse?: string[] | null;
|
|
77338
77391
|
/** @description List of to warehouse IDs */
|
|
77339
77392
|
toWarehouse?: string[] | null;
|
|
77393
|
+
/** @description Field to sort by */
|
|
77394
|
+
sortBy?: components["schemas"]["InventorySerialDocumentSortBy"] | null;
|
|
77395
|
+
/** @description Sort order: ascending or descending */
|
|
77396
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
77340
77397
|
};
|
|
77341
77398
|
header?: never;
|
|
77342
77399
|
path?: never;
|
|
@@ -77636,6 +77693,10 @@ export interface operations {
|
|
|
77636
77693
|
* - my_warehouses : view transfer requests where destination warehouse is in user's assigned warehouses
|
|
77637
77694
|
*/
|
|
77638
77695
|
view?: "myRequests" | "requestedFromMe" | "myWarehouses";
|
|
77696
|
+
/** @description Field to sort by */
|
|
77697
|
+
sortBy?: components["schemas"]["InventoryFiscalDocumentSortBy"] | null;
|
|
77698
|
+
/** @description Sort order: ascending or descending */
|
|
77699
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
77639
77700
|
};
|
|
77640
77701
|
header?: never;
|
|
77641
77702
|
path?: never;
|
|
@@ -78841,6 +78902,10 @@ export interface operations {
|
|
|
78841
78902
|
search?: string | null;
|
|
78842
78903
|
/** @description Branch ID */
|
|
78843
78904
|
branch?: string;
|
|
78905
|
+
/** @description Field to sort suppliers by */
|
|
78906
|
+
sortBy?: components["schemas"]["SupplierSortBy"] | null;
|
|
78907
|
+
/** @description Sort order: ascending or descending */
|
|
78908
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
78844
78909
|
};
|
|
78845
78910
|
header?: never;
|
|
78846
78911
|
path?: never;
|
|
@@ -87297,6 +87362,10 @@ export interface operations {
|
|
|
87297
87362
|
/** @description search by requisition number or description or supplier name, or item (name, barcode, sku code, short name) */
|
|
87298
87363
|
search?: string;
|
|
87299
87364
|
type?: "default" | "requestForQuotation";
|
|
87365
|
+
/** @description Field to sort by */
|
|
87366
|
+
sortBy?: components["schemas"]["PurchaseDocumentSortBy"] | null;
|
|
87367
|
+
/** @description Sort order: ascending or descending */
|
|
87368
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
87300
87369
|
};
|
|
87301
87370
|
header?: never;
|
|
87302
87371
|
path?: never;
|
|
@@ -87957,6 +88026,10 @@ export interface operations {
|
|
|
87957
88026
|
endDate?: string | null;
|
|
87958
88027
|
/** @description search by RFQ number or description or supplier name, or item (name, barcode, sku code, short name) */
|
|
87959
88028
|
search?: string;
|
|
88029
|
+
/** @description Field to sort by */
|
|
88030
|
+
sortBy?: components["schemas"]["PurchaseDocumentSortBy"] | null;
|
|
88031
|
+
/** @description Sort order: ascending or descending */
|
|
88032
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
87960
88033
|
};
|
|
87961
88034
|
header?: never;
|
|
87962
88035
|
path?: never;
|
|
@@ -88545,6 +88618,10 @@ export interface operations {
|
|
|
88545
88618
|
type?: "default" | "purchaseInvoice";
|
|
88546
88619
|
/** @description supplier id, required when type = purchaseInvoice */
|
|
88547
88620
|
supplier?: string;
|
|
88621
|
+
/** @description Field to sort by */
|
|
88622
|
+
sortBy?: components["schemas"]["PurchaseDocumentSortBy"] | null;
|
|
88623
|
+
/** @description Sort order: ascending or descending */
|
|
88624
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
88548
88625
|
};
|
|
88549
88626
|
header?: never;
|
|
88550
88627
|
path?: never;
|
|
@@ -89020,6 +89097,10 @@ export interface operations {
|
|
|
89020
89097
|
startDate?: string | null;
|
|
89021
89098
|
/** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
|
|
89022
89099
|
endDate?: string | null;
|
|
89100
|
+
/** @description Field to sort by */
|
|
89101
|
+
sortBy?: components["schemas"]["PurchaseDocumentSortBy"] | null;
|
|
89102
|
+
/** @description Sort order: ascending or descending */
|
|
89103
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
89023
89104
|
};
|
|
89024
89105
|
header?: never;
|
|
89025
89106
|
path?: never;
|
|
@@ -89641,6 +89722,10 @@ export interface operations {
|
|
|
89641
89722
|
startDate?: string | null;
|
|
89642
89723
|
/** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
|
|
89643
89724
|
endDate?: string | null;
|
|
89725
|
+
/** @description Field to sort by */
|
|
89726
|
+
sortBy?: components["schemas"]["PurchaseDocumentSortBy"] | null;
|
|
89727
|
+
/** @description Sort order: ascending or descending */
|
|
89728
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
89644
89729
|
};
|
|
89645
89730
|
header?: never;
|
|
89646
89731
|
path?: never;
|
|
@@ -90449,6 +90534,10 @@ export interface operations {
|
|
|
90449
90534
|
startDate?: string | null;
|
|
90450
90535
|
/** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
|
|
90451
90536
|
endDate?: string | null;
|
|
90537
|
+
/** @description Field to sort by */
|
|
90538
|
+
sortBy?: components["schemas"]["PurchaseDocumentSortBy"] | null;
|
|
90539
|
+
/** @description Sort order: ascending or descending */
|
|
90540
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
90452
90541
|
};
|
|
90453
90542
|
header?: never;
|
|
90454
90543
|
path?: never;
|
|
@@ -91144,6 +91233,10 @@ export interface operations {
|
|
|
91144
91233
|
* - **false**: include all posted landed cost bill lines, including fully allocated ones.
|
|
91145
91234
|
*/
|
|
91146
91235
|
onlyRemaining?: boolean;
|
|
91236
|
+
/** @description Field to sort invoices by */
|
|
91237
|
+
sortBy?: components["schemas"]["PurchaseInvoiceSortBy"] | null;
|
|
91238
|
+
/** @description Sort order: ascending or descending */
|
|
91239
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
91147
91240
|
};
|
|
91148
91241
|
header?: never;
|
|
91149
91242
|
path?: never;
|
|
@@ -92232,6 +92325,10 @@ export interface operations {
|
|
|
92232
92325
|
endDate?: string | null;
|
|
92233
92326
|
/** @description search by payment voucher number or description or supplier name or supplier account number */
|
|
92234
92327
|
search?: string;
|
|
92328
|
+
/** @description Field to sort by */
|
|
92329
|
+
sortBy?: components["schemas"]["PurchaseDocumentSortBy"] | null;
|
|
92330
|
+
/** @description Sort order: ascending or descending */
|
|
92331
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
92235
92332
|
};
|
|
92236
92333
|
header?: never;
|
|
92237
92334
|
path?: never;
|
|
@@ -92769,6 +92866,10 @@ export interface operations {
|
|
|
92769
92866
|
startDate?: string | null;
|
|
92770
92867
|
/** @description End date for custom range (YYYY-MM-DD), this required if the period type is custom */
|
|
92771
92868
|
endDate?: string | null;
|
|
92869
|
+
/** @description Field to sort by */
|
|
92870
|
+
sortBy?: components["schemas"]["PurchaseDocumentSortBy"] | null;
|
|
92871
|
+
/** @description Sort order: ascending or descending */
|
|
92872
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
92772
92873
|
};
|
|
92773
92874
|
header?: never;
|
|
92774
92875
|
path?: never;
|
|
@@ -93406,6 +93507,10 @@ export interface operations {
|
|
|
93406
93507
|
endDate?: string | null;
|
|
93407
93508
|
/** @description When true, each GRN line includes finalized `landedCostAllocations` (for LCA picker/history). */
|
|
93408
93509
|
landedCostAllocation?: boolean;
|
|
93510
|
+
/** @description Field to sort by */
|
|
93511
|
+
sortBy?: components["schemas"]["PurchaseInventoryDocumentSortBy"] | null;
|
|
93512
|
+
/** @description Sort order: ascending or descending */
|
|
93513
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
93409
93514
|
};
|
|
93410
93515
|
header?: never;
|
|
93411
93516
|
path?: never;
|
|
@@ -94257,6 +94362,10 @@ export interface operations {
|
|
|
94257
94362
|
pageSize?: number;
|
|
94258
94363
|
/** @description search by offer name, description or item category name or customer name or customer group name, or item (name, barcode, sku code, short name) */
|
|
94259
94364
|
search?: string;
|
|
94365
|
+
/** @description Field to sort by */
|
|
94366
|
+
sortBy?: components["schemas"]["ContactListSortBy"] | null;
|
|
94367
|
+
/** @description Sort order: ascending or descending */
|
|
94368
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
94260
94369
|
};
|
|
94261
94370
|
header?: never;
|
|
94262
94371
|
path?: never;
|
|
@@ -96492,6 +96601,10 @@ export interface operations {
|
|
|
96492
96601
|
search?: string | null;
|
|
96493
96602
|
/** @description Branch ID to filter by */
|
|
96494
96603
|
branchId: string;
|
|
96604
|
+
/** @description Field to sort by */
|
|
96605
|
+
sortBy?: components["schemas"]["ContactListSortBy"] | null;
|
|
96606
|
+
/** @description Sort order: ascending or descending */
|
|
96607
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
96495
96608
|
};
|
|
96496
96609
|
header?: never;
|
|
96497
96610
|
path?: never;
|
|
@@ -98135,6 +98248,10 @@ export interface operations {
|
|
|
98135
98248
|
startDate?: string | null;
|
|
98136
98249
|
/** @description End date for custom range (YYYY-MM-DD) */
|
|
98137
98250
|
endDate?: string | null;
|
|
98251
|
+
/** @description Field to sort by */
|
|
98252
|
+
sortBy?: components["schemas"]["SalesDocumentSortBy"] | null;
|
|
98253
|
+
/** @description Sort order: ascending or descending */
|
|
98254
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
98138
98255
|
};
|
|
98139
98256
|
header?: never;
|
|
98140
98257
|
path?: never;
|
|
@@ -99111,6 +99228,10 @@ export interface operations {
|
|
|
99111
99228
|
endDate?: string | null;
|
|
99112
99229
|
/** @description search by refund number, refund description, supplier name, supplier account number, advance payments numbers or return invoices number */
|
|
99113
99230
|
search?: string;
|
|
99231
|
+
/** @description Field to sort by */
|
|
99232
|
+
sortBy?: components["schemas"]["PurchaseDocumentSortBy"] | null;
|
|
99233
|
+
/** @description Sort order: ascending or descending */
|
|
99234
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
99114
99235
|
};
|
|
99115
99236
|
header?: never;
|
|
99116
99237
|
path?: never;
|
|
@@ -100019,6 +100140,10 @@ export interface operations {
|
|
|
100019
100140
|
type?: "default" | "salesInvoice";
|
|
100020
100141
|
/** @description customer id, required when type = salesInvoice */
|
|
100021
100142
|
customer?: string;
|
|
100143
|
+
/** @description Field to sort by */
|
|
100144
|
+
sortBy?: components["schemas"]["SalesDocumentSortBy"] | null;
|
|
100145
|
+
/** @description Sort order: ascending or descending */
|
|
100146
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
100022
100147
|
};
|
|
100023
100148
|
header?: never;
|
|
100024
100149
|
path?: never;
|
|
@@ -100596,6 +100721,10 @@ export interface operations {
|
|
|
100596
100721
|
startDate?: string | null;
|
|
100597
100722
|
/** @description End date for custom range (YYYY-MM-DD) */
|
|
100598
100723
|
endDate?: string | null;
|
|
100724
|
+
/** @description Field to sort by */
|
|
100725
|
+
sortBy?: components["schemas"]["SalesDocumentSortBy"] | null;
|
|
100726
|
+
/** @description Sort order: ascending or descending */
|
|
100727
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
100599
100728
|
};
|
|
100600
100729
|
header?: never;
|
|
100601
100730
|
path?: never;
|
|
@@ -101193,6 +101322,10 @@ export interface operations {
|
|
|
101193
101322
|
endDate?: string | null;
|
|
101194
101323
|
/** @description search by credit note number or description or supplier name or account number or invoice number, or item (name, barcode, sku code, short name) */
|
|
101195
101324
|
search?: string;
|
|
101325
|
+
/** @description Field to sort by */
|
|
101326
|
+
sortBy?: components["schemas"]["PurchaseDocumentSortBy"] | null;
|
|
101327
|
+
/** @description Sort order: ascending or descending */
|
|
101328
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
101196
101329
|
};
|
|
101197
101330
|
header?: never;
|
|
101198
101331
|
path?: never;
|
|
@@ -101766,6 +101899,10 @@ export interface operations {
|
|
|
101766
101899
|
endDate?: string | null;
|
|
101767
101900
|
/** @description search by receipt voucher number, receipt voucher description, customer name, customer account number */
|
|
101768
101901
|
search?: string;
|
|
101902
|
+
/** @description Field to sort by */
|
|
101903
|
+
sortBy?: components["schemas"]["SalesDocumentSortBy"] | null;
|
|
101904
|
+
/** @description Sort order: ascending or descending */
|
|
101905
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
101769
101906
|
};
|
|
101770
101907
|
header?: never;
|
|
101771
101908
|
path?: never;
|
|
@@ -103393,6 +103530,10 @@ export interface operations {
|
|
|
103393
103530
|
startDate?: string | null;
|
|
103394
103531
|
/** @description End date for custom range (YYYY-MM-DD) */
|
|
103395
103532
|
endDate?: string | null;
|
|
103533
|
+
/** @description Field to sort by */
|
|
103534
|
+
sortBy?: components["schemas"]["SalesDocumentSortBy"] | null;
|
|
103535
|
+
/** @description Sort order: ascending or descending */
|
|
103536
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
103396
103537
|
};
|
|
103397
103538
|
header?: never;
|
|
103398
103539
|
path?: never;
|
|
@@ -103961,6 +104102,10 @@ export interface operations {
|
|
|
103961
104102
|
startDate?: string | null;
|
|
103962
104103
|
/** @description End date for custom range (YYYY-MM-DD) */
|
|
103963
104104
|
endDate?: string | null;
|
|
104105
|
+
/** @description Field to sort by */
|
|
104106
|
+
sortBy?: components["schemas"]["SalesDocumentSortBy"] | null;
|
|
104107
|
+
/** @description Sort order: ascending or descending */
|
|
104108
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
103964
104109
|
};
|
|
103965
104110
|
header?: never;
|
|
103966
104111
|
path?: never;
|
|
@@ -104626,6 +104771,10 @@ export interface operations {
|
|
|
104626
104771
|
endDate?: string | null;
|
|
104627
104772
|
/** @description search by refund number, refund description, customer name, customer account number, down payments numbers or return invoices number */
|
|
104628
104773
|
search?: string;
|
|
104774
|
+
/** @description Field to sort by */
|
|
104775
|
+
sortBy?: components["schemas"]["SalesDocumentSortBy"] | null;
|
|
104776
|
+
/** @description Sort order: ascending or descending */
|
|
104777
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
104629
104778
|
};
|
|
104630
104779
|
header?: never;
|
|
104631
104780
|
path?: never;
|
|
@@ -105155,6 +105304,10 @@ export interface operations {
|
|
|
105155
105304
|
documentType?: "default" | "returnablePackageReconciliation" | "salesReturnPackage";
|
|
105156
105305
|
/** @description customer id, required when documentType is returnable_package_reconciliation */
|
|
105157
105306
|
customer?: string;
|
|
105307
|
+
/** @description Field to sort by */
|
|
105308
|
+
sortBy?: components["schemas"]["SalesInventoryDocumentSortBy"] | null;
|
|
105309
|
+
/** @description Sort order: ascending or descending */
|
|
105310
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
105158
105311
|
};
|
|
105159
105312
|
header?: never;
|
|
105160
105313
|
path?: never;
|
|
@@ -105859,6 +106012,10 @@ export interface operations {
|
|
|
105859
106012
|
endDate?: string | null;
|
|
105860
106013
|
/** @description search by credit note number, description, customer name or account number, invoice number */
|
|
105861
106014
|
search?: string;
|
|
106015
|
+
/** @description Field to sort by */
|
|
106016
|
+
sortBy?: components["schemas"]["SalesDocumentSortBy"] | null;
|
|
106017
|
+
/** @description Sort order: ascending or descending */
|
|
106018
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
105862
106019
|
};
|
|
105863
106020
|
header?: never;
|
|
105864
106021
|
path?: never;
|
|
@@ -106390,6 +106547,10 @@ export interface operations {
|
|
|
106390
106547
|
endDate?: string | null;
|
|
106391
106548
|
/** @description search by document number, document description, customer name, customer account number,item name, item barcode, item sku code or package name */
|
|
106392
106549
|
search?: string;
|
|
106550
|
+
/** @description Field to sort by */
|
|
106551
|
+
sortBy?: components["schemas"]["SalesInventoryDocumentSortBy"] | null;
|
|
106552
|
+
/** @description Sort order: ascending or descending */
|
|
106553
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
106393
106554
|
};
|
|
106394
106555
|
header?: never;
|
|
106395
106556
|
path?: never;
|
|
@@ -106789,6 +106950,10 @@ export interface operations {
|
|
|
106789
106950
|
endDate?: string | null;
|
|
106790
106951
|
/** @description search by document number, document description, customer name, customer account number,item name, package name or barcode */
|
|
106791
106952
|
search?: string;
|
|
106953
|
+
/** @description Field to sort by */
|
|
106954
|
+
sortBy?: components["schemas"]["SalesInventoryDocumentSortBy"] | null;
|
|
106955
|
+
/** @description Sort order: ascending or descending */
|
|
106956
|
+
order?: components["schemas"]["SortOrder"] | null;
|
|
106792
106957
|
};
|
|
106793
106958
|
header?: never;
|
|
106794
106959
|
path?: never;
|