@erp-galoper/types 1.0.1729 → 1.0.1731
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 +45 -41
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -38482,7 +38482,7 @@ export interface components {
|
|
|
38482
38482
|
* Taxes
|
|
38483
38483
|
* @default []
|
|
38484
38484
|
*/
|
|
38485
|
-
taxes: components["schemas"]["
|
|
38485
|
+
taxes: components["schemas"]["RetrieveTax"][] | null;
|
|
38486
38486
|
/** Discount */
|
|
38487
38487
|
discount?: number | null;
|
|
38488
38488
|
/**
|
|
@@ -40147,7 +40147,7 @@ export interface components {
|
|
|
40147
40147
|
* Taxes
|
|
40148
40148
|
* @default []
|
|
40149
40149
|
*/
|
|
40150
|
-
taxes: components["schemas"]["
|
|
40150
|
+
taxes: components["schemas"]["RetrieveTax"][];
|
|
40151
40151
|
/**
|
|
40152
40152
|
* Taxamount
|
|
40153
40153
|
* @default 0
|
|
@@ -40315,7 +40315,7 @@ export interface components {
|
|
|
40315
40315
|
[key: string]: components["schemas"]["LinkedDocumentsSchema"];
|
|
40316
40316
|
}[];
|
|
40317
40317
|
/** @description visible when supplier is not resident */
|
|
40318
|
-
tax: components["schemas"]["
|
|
40318
|
+
tax: components["schemas"]["RetrieveTax"] | null;
|
|
40319
40319
|
/**
|
|
40320
40320
|
* Taxbreakdown
|
|
40321
40321
|
* @description Aggregated tax amounts breakdown
|
|
@@ -40962,7 +40962,7 @@ export interface components {
|
|
|
40962
40962
|
* Taxes
|
|
40963
40963
|
* @default []
|
|
40964
40964
|
*/
|
|
40965
|
-
taxes: components["schemas"]["
|
|
40965
|
+
taxes: components["schemas"]["RetrieveTax"][];
|
|
40966
40966
|
/**
|
|
40967
40967
|
* Taxamount
|
|
40968
40968
|
* @default 0
|
|
@@ -41132,7 +41132,7 @@ export interface components {
|
|
|
41132
41132
|
[key: string]: components["schemas"]["LinkedDocumentsSchema"];
|
|
41133
41133
|
}[];
|
|
41134
41134
|
/** @description visible when supplier is not resident */
|
|
41135
|
-
tax: components["schemas"]["
|
|
41135
|
+
tax: components["schemas"]["RetrieveTax"] | null;
|
|
41136
41136
|
/**
|
|
41137
41137
|
* Taxbreakdown
|
|
41138
41138
|
* @description Aggregated tax amounts breakdown
|
|
@@ -41643,7 +41643,7 @@ export interface components {
|
|
|
41643
41643
|
canConvert: boolean;
|
|
41644
41644
|
warehouse: components["schemas"]["WarehouseSummaryInfo"] | null;
|
|
41645
41645
|
/** @description visible when supplier is not resident */
|
|
41646
|
-
tax: components["schemas"]["
|
|
41646
|
+
tax: components["schemas"]["RetrieveTax"] | null;
|
|
41647
41647
|
/**
|
|
41648
41648
|
* Taxbreakdown
|
|
41649
41649
|
* @description Aggregated tax amounts breakdown
|
|
@@ -41728,7 +41728,7 @@ export interface components {
|
|
|
41728
41728
|
/** Discount */
|
|
41729
41729
|
discount: number;
|
|
41730
41730
|
/** Taxes */
|
|
41731
|
-
taxes: components["schemas"]["
|
|
41731
|
+
taxes: components["schemas"]["RetrieveTax"][];
|
|
41732
41732
|
/**
|
|
41733
41733
|
* Subtotal
|
|
41734
41734
|
* @description This field represents gross subtotal
|
|
@@ -41879,7 +41879,7 @@ export interface components {
|
|
|
41879
41879
|
* Taxes
|
|
41880
41880
|
* @default []
|
|
41881
41881
|
*/
|
|
41882
|
-
taxes: components["schemas"]["
|
|
41882
|
+
taxes: components["schemas"]["RetrieveTax"][];
|
|
41883
41883
|
/**
|
|
41884
41884
|
* Taxamount
|
|
41885
41885
|
* @default 0
|
|
@@ -42013,8 +42013,12 @@ export interface components {
|
|
|
42013
42013
|
/** Candelete */
|
|
42014
42014
|
canDelete: boolean;
|
|
42015
42015
|
reasonForReturn?: components["schemas"]["ReasonSummaryInfo"] | null;
|
|
42016
|
+
/** Linkeddocuments */
|
|
42017
|
+
linkedDocuments?: {
|
|
42018
|
+
[key: string]: components["schemas"]["LinkedDocumentsSchema"];
|
|
42019
|
+
}[];
|
|
42016
42020
|
/** @description visible when supplier is not resident */
|
|
42017
|
-
tax: components["schemas"]["
|
|
42021
|
+
tax: components["schemas"]["RetrieveTax"] | null;
|
|
42018
42022
|
/**
|
|
42019
42023
|
* Taxbreakdown
|
|
42020
42024
|
* @description Aggregated tax amounts breakdown
|
|
@@ -42277,7 +42281,7 @@ export interface components {
|
|
|
42277
42281
|
* @description this field is always disabled
|
|
42278
42282
|
* @default []
|
|
42279
42283
|
*/
|
|
42280
|
-
taxes: components["schemas"]["
|
|
42284
|
+
taxes: components["schemas"]["RetrieveTax"][];
|
|
42281
42285
|
};
|
|
42282
42286
|
/** ReturnPurchaseOrderTotalCalculationResponse */
|
|
42283
42287
|
ReturnPurchaseOrderTotalCalculationResponse: {
|
|
@@ -42333,7 +42337,7 @@ export interface components {
|
|
|
42333
42337
|
*/
|
|
42334
42338
|
companyTotal?: number | null;
|
|
42335
42339
|
/** @description visible when supplier is not resident */
|
|
42336
|
-
tax?: components["schemas"]["
|
|
42340
|
+
tax?: components["schemas"]["RetrieveTax"];
|
|
42337
42341
|
/**
|
|
42338
42342
|
* Linediscountamount
|
|
42339
42343
|
* @description Total line item discount amount
|
|
@@ -42528,7 +42532,7 @@ export interface components {
|
|
|
42528
42532
|
canConvert: boolean;
|
|
42529
42533
|
warehouse: components["schemas"]["WarehouseSummaryInfo"] | null;
|
|
42530
42534
|
/** @description visible when supplier is not resident */
|
|
42531
|
-
tax: components["schemas"]["
|
|
42535
|
+
tax: components["schemas"]["RetrieveTax"] | null;
|
|
42532
42536
|
/**
|
|
42533
42537
|
* Taxbreakdown
|
|
42534
42538
|
* @description Aggregated tax amounts breakdown
|
|
@@ -42735,7 +42739,7 @@ export interface components {
|
|
|
42735
42739
|
canConvert: boolean;
|
|
42736
42740
|
warehouse: components["schemas"]["WarehouseSummaryInfo"] | null;
|
|
42737
42741
|
/** @description visible when supplier is not resident */
|
|
42738
|
-
tax: components["schemas"]["
|
|
42742
|
+
tax: components["schemas"]["RetrieveTax"] | null;
|
|
42739
42743
|
/**
|
|
42740
42744
|
* Taxbreakdown
|
|
42741
42745
|
* @description Aggregated tax amounts breakdown
|
|
@@ -43852,7 +43856,7 @@ export interface components {
|
|
|
43852
43856
|
canConvert: boolean;
|
|
43853
43857
|
warehouse: components["schemas"]["WarehouseSummaryInfo"] | null;
|
|
43854
43858
|
/** @description visible when supplier is not resident */
|
|
43855
|
-
tax: components["schemas"]["
|
|
43859
|
+
tax: components["schemas"]["RetrieveTax"] | null;
|
|
43856
43860
|
/**
|
|
43857
43861
|
* Taxbreakdown
|
|
43858
43862
|
* @description Aggregated tax amounts breakdown
|
|
@@ -43990,7 +43994,7 @@ export interface components {
|
|
|
43990
43994
|
* Taxes
|
|
43991
43995
|
* @default []
|
|
43992
43996
|
*/
|
|
43993
|
-
taxes: components["schemas"]["
|
|
43997
|
+
taxes: components["schemas"]["RetrieveTax"][];
|
|
43994
43998
|
/**
|
|
43995
43999
|
* Taxamount
|
|
43996
44000
|
* @default 0
|
|
@@ -44120,7 +44124,7 @@ export interface components {
|
|
|
44120
44124
|
canDelete: boolean;
|
|
44121
44125
|
reasonForReturn?: components["schemas"]["ReasonSummaryInfo"] | null;
|
|
44122
44126
|
/** @description visible when supplier is not resident */
|
|
44123
|
-
tax: components["schemas"]["
|
|
44127
|
+
tax: components["schemas"]["RetrieveTax"] | null;
|
|
44124
44128
|
/**
|
|
44125
44129
|
* Taxbreakdown
|
|
44126
44130
|
* @description Aggregated tax amounts breakdown
|
|
@@ -44358,7 +44362,7 @@ export interface components {
|
|
|
44358
44362
|
canDelete: boolean;
|
|
44359
44363
|
reasonForReturn?: components["schemas"]["ReasonSummaryInfo"] | null;
|
|
44360
44364
|
/** @description visible when supplier is not resident */
|
|
44361
|
-
tax: components["schemas"]["
|
|
44365
|
+
tax: components["schemas"]["RetrieveTax"] | null;
|
|
44362
44366
|
/**
|
|
44363
44367
|
* Taxbreakdown
|
|
44364
44368
|
* @description Aggregated tax amounts breakdown
|
|
@@ -44418,7 +44422,7 @@ export interface components {
|
|
|
44418
44422
|
* @description this field is always disabled
|
|
44419
44423
|
* @default []
|
|
44420
44424
|
*/
|
|
44421
|
-
taxes: components["schemas"]["
|
|
44425
|
+
taxes: components["schemas"]["RetrieveTax"][];
|
|
44422
44426
|
};
|
|
44423
44427
|
/** ReturnPurchaseInvoiceTotalCalculationResponse */
|
|
44424
44428
|
ReturnPurchaseInvoiceTotalCalculationResponse: {
|
|
@@ -44474,7 +44478,7 @@ export interface components {
|
|
|
44474
44478
|
*/
|
|
44475
44479
|
companyTotal?: number | null;
|
|
44476
44480
|
/** @description visible when supplier is not resident */
|
|
44477
|
-
tax?: components["schemas"]["
|
|
44481
|
+
tax?: components["schemas"]["RetrieveTax"];
|
|
44478
44482
|
/**
|
|
44479
44483
|
* Linediscountamount
|
|
44480
44484
|
* @description Total line item discount amount
|
|
@@ -47249,7 +47253,7 @@ export interface components {
|
|
|
47249
47253
|
* @description List of taxes applied to the item
|
|
47250
47254
|
* @default []
|
|
47251
47255
|
*/
|
|
47252
|
-
taxes: components["schemas"]["
|
|
47256
|
+
taxes: components["schemas"]["RetrieveTax"][];
|
|
47253
47257
|
/** Minprice */
|
|
47254
47258
|
minPrice: number | null;
|
|
47255
47259
|
/** Maxprice */
|
|
@@ -48331,7 +48335,7 @@ export interface components {
|
|
|
48331
48335
|
* Taxes
|
|
48332
48336
|
* @default []
|
|
48333
48337
|
*/
|
|
48334
|
-
taxes: components["schemas"]["
|
|
48338
|
+
taxes: components["schemas"]["RetrieveTax"][];
|
|
48335
48339
|
/**
|
|
48336
48340
|
* Taxamount
|
|
48337
48341
|
* @description This field is a number
|
|
@@ -48512,7 +48516,7 @@ export interface components {
|
|
|
48512
48516
|
/** Notes */
|
|
48513
48517
|
notes: string | null;
|
|
48514
48518
|
/** @description visible when customer is not resident */
|
|
48515
|
-
tax: components["schemas"]["
|
|
48519
|
+
tax: components["schemas"]["RetrieveTax"] | null;
|
|
48516
48520
|
/**
|
|
48517
48521
|
* Taxbreakdown
|
|
48518
48522
|
* @description Aggregated tax amounts breakdown
|
|
@@ -48962,7 +48966,7 @@ export interface components {
|
|
|
48962
48966
|
/** Notes */
|
|
48963
48967
|
notes: string | null;
|
|
48964
48968
|
/** @description visible when customer is not resident */
|
|
48965
|
-
tax: components["schemas"]["
|
|
48969
|
+
tax: components["schemas"]["RetrieveTax"] | null;
|
|
48966
48970
|
/**
|
|
48967
48971
|
* Taxbreakdown
|
|
48968
48972
|
* @description Aggregated tax amounts breakdown
|
|
@@ -50620,7 +50624,7 @@ export interface components {
|
|
|
50620
50624
|
* @description List of taxes applied to the item.
|
|
50621
50625
|
* @default []
|
|
50622
50626
|
*/
|
|
50623
|
-
taxes: components["schemas"]["
|
|
50627
|
+
taxes: components["schemas"]["RetrieveTax"][];
|
|
50624
50628
|
/**
|
|
50625
50629
|
* Taxamount
|
|
50626
50630
|
* @description This field is a number representing the total tax amount applied to the item.
|
|
@@ -50835,7 +50839,7 @@ export interface components {
|
|
|
50835
50839
|
*/
|
|
50836
50840
|
notes: string | null;
|
|
50837
50841
|
/** @description visible when customer is not resident */
|
|
50838
|
-
tax: components["schemas"]["
|
|
50842
|
+
tax: components["schemas"]["RetrieveTax"] | null;
|
|
50839
50843
|
/**
|
|
50840
50844
|
* Taxbreakdown
|
|
50841
50845
|
* @description Aggregated tax amounts breakdown
|
|
@@ -51342,7 +51346,7 @@ export interface components {
|
|
|
51342
51346
|
*/
|
|
51343
51347
|
notes: string | null;
|
|
51344
51348
|
/** @description visible when customer is not resident */
|
|
51345
|
-
tax: components["schemas"]["
|
|
51349
|
+
tax: components["schemas"]["RetrieveTax"] | null;
|
|
51346
51350
|
/**
|
|
51347
51351
|
* Taxbreakdown
|
|
51348
51352
|
* @description Aggregated tax amounts breakdown
|
|
@@ -51571,7 +51575,7 @@ export interface components {
|
|
|
51571
51575
|
*/
|
|
51572
51576
|
notes: string | null;
|
|
51573
51577
|
/** @description visible when customer is not resident */
|
|
51574
|
-
tax: components["schemas"]["
|
|
51578
|
+
tax: components["schemas"]["RetrieveTax"] | null;
|
|
51575
51579
|
/**
|
|
51576
51580
|
* Taxbreakdown
|
|
51577
51581
|
* @description Aggregated tax amounts breakdown
|
|
@@ -52603,7 +52607,7 @@ export interface components {
|
|
|
52603
52607
|
* @description List of taxes applied to the item.
|
|
52604
52608
|
* @default []
|
|
52605
52609
|
*/
|
|
52606
|
-
taxes: components["schemas"]["
|
|
52610
|
+
taxes: components["schemas"]["RetrieveTax"][];
|
|
52607
52611
|
/**
|
|
52608
52612
|
* Taxamount
|
|
52609
52613
|
* @description This field is a number representing the total tax amount applied to the item.
|
|
@@ -52848,7 +52852,7 @@ export interface components {
|
|
|
52848
52852
|
*/
|
|
52849
52853
|
notes: string | null;
|
|
52850
52854
|
/** @description visible when customer is not resident */
|
|
52851
|
-
tax: components["schemas"]["
|
|
52855
|
+
tax: components["schemas"]["RetrieveTax"] | null;
|
|
52852
52856
|
/**
|
|
52853
52857
|
* Taxbreakdown
|
|
52854
52858
|
* @description Aggregated tax amounts breakdown
|
|
@@ -53420,7 +53424,7 @@ export interface components {
|
|
|
53420
53424
|
*/
|
|
53421
53425
|
notes: string | null;
|
|
53422
53426
|
/** @description visible when customer is not resident */
|
|
53423
|
-
tax: components["schemas"]["
|
|
53427
|
+
tax: components["schemas"]["RetrieveTax"] | null;
|
|
53424
53428
|
/**
|
|
53425
53429
|
* Taxbreakdown
|
|
53426
53430
|
* @description Aggregated tax amounts breakdown
|
|
@@ -53686,7 +53690,7 @@ export interface components {
|
|
|
53686
53690
|
*/
|
|
53687
53691
|
notes: string | null;
|
|
53688
53692
|
/** @description visible when customer is not resident */
|
|
53689
|
-
tax: components["schemas"]["
|
|
53693
|
+
tax: components["schemas"]["RetrieveTax"] | null;
|
|
53690
53694
|
/**
|
|
53691
53695
|
* Taxbreakdown
|
|
53692
53696
|
* @description Aggregated tax amounts breakdown
|
|
@@ -53870,7 +53874,7 @@ export interface components {
|
|
|
53870
53874
|
* Taxes
|
|
53871
53875
|
* @default []
|
|
53872
53876
|
*/
|
|
53873
|
-
taxes: components["schemas"]["
|
|
53877
|
+
taxes: components["schemas"]["RetrieveTax"][];
|
|
53874
53878
|
/**
|
|
53875
53879
|
* Taxamount
|
|
53876
53880
|
* @default 0
|
|
@@ -54002,7 +54006,7 @@ export interface components {
|
|
|
54002
54006
|
/** Canconvert */
|
|
54003
54007
|
canConvert: boolean;
|
|
54004
54008
|
/** @description visible when customer is not resident */
|
|
54005
|
-
tax: components["schemas"]["
|
|
54009
|
+
tax: components["schemas"]["RetrieveTax"] | null;
|
|
54006
54010
|
/**
|
|
54007
54011
|
* Taxbreakdown
|
|
54008
54012
|
* @description Aggregated tax amounts breakdown
|
|
@@ -54217,7 +54221,7 @@ export interface components {
|
|
|
54217
54221
|
/** Canconvert */
|
|
54218
54222
|
canConvert: boolean;
|
|
54219
54223
|
/** @description visible when customer is not resident */
|
|
54220
|
-
tax: components["schemas"]["
|
|
54224
|
+
tax: components["schemas"]["RetrieveTax"] | null;
|
|
54221
54225
|
/**
|
|
54222
54226
|
* Taxbreakdown
|
|
54223
54227
|
* @description Aggregated tax amounts breakdown
|
|
@@ -54277,7 +54281,7 @@ export interface components {
|
|
|
54277
54281
|
* @description this field is always disabled
|
|
54278
54282
|
* @default []
|
|
54279
54283
|
*/
|
|
54280
|
-
taxes: components["schemas"]["
|
|
54284
|
+
taxes: components["schemas"]["RetrieveTax"][];
|
|
54281
54285
|
};
|
|
54282
54286
|
/** SalesReturnOrderTotalCalculationResponse */
|
|
54283
54287
|
SalesReturnOrderTotalCalculationResponse: {
|
|
@@ -54306,7 +54310,7 @@ export interface components {
|
|
|
54306
54310
|
/** Companytotal */
|
|
54307
54311
|
companyTotal?: string | null;
|
|
54308
54312
|
/** @description visible when customer is not resident */
|
|
54309
|
-
tax?: components["schemas"]["
|
|
54313
|
+
tax?: components["schemas"]["RetrieveTax"];
|
|
54310
54314
|
/** Items */
|
|
54311
54315
|
items: components["schemas"]["SalesReturnOrderItemTotalCalculated"][];
|
|
54312
54316
|
};
|
|
@@ -54451,7 +54455,7 @@ export interface components {
|
|
|
54451
54455
|
* Taxes
|
|
54452
54456
|
* @default []
|
|
54453
54457
|
*/
|
|
54454
|
-
taxes: components["schemas"]["
|
|
54458
|
+
taxes: components["schemas"]["RetrieveTax"][];
|
|
54455
54459
|
/**
|
|
54456
54460
|
* Taxamount
|
|
54457
54461
|
* @default 0
|
|
@@ -54578,7 +54582,7 @@ export interface components {
|
|
|
54578
54582
|
/** Candelete */
|
|
54579
54583
|
canDelete: boolean;
|
|
54580
54584
|
/** @description visible when customer is not resident */
|
|
54581
|
-
tax: components["schemas"]["
|
|
54585
|
+
tax: components["schemas"]["RetrieveTax"] | null;
|
|
54582
54586
|
/**
|
|
54583
54587
|
* Taxbreakdown
|
|
54584
54588
|
* @description Aggregated tax amounts breakdown
|
|
@@ -54817,7 +54821,7 @@ export interface components {
|
|
|
54817
54821
|
/** Candelete */
|
|
54818
54822
|
canDelete: boolean;
|
|
54819
54823
|
/** @description visible when customer is not resident */
|
|
54820
|
-
tax: components["schemas"]["
|
|
54824
|
+
tax: components["schemas"]["RetrieveTax"] | null;
|
|
54821
54825
|
/**
|
|
54822
54826
|
* Taxbreakdown
|
|
54823
54827
|
* @description Aggregated tax amounts breakdown
|
|
@@ -54877,7 +54881,7 @@ export interface components {
|
|
|
54877
54881
|
* @description this field is always disabled
|
|
54878
54882
|
* @default []
|
|
54879
54883
|
*/
|
|
54880
|
-
taxes: components["schemas"]["
|
|
54884
|
+
taxes: components["schemas"]["RetrieveTax"][];
|
|
54881
54885
|
};
|
|
54882
54886
|
/** SalesReturnInvoiceTotalCalculationResponse */
|
|
54883
54887
|
SalesReturnInvoiceTotalCalculationResponse: {
|
|
@@ -54906,7 +54910,7 @@ export interface components {
|
|
|
54906
54910
|
/** Companytotal */
|
|
54907
54911
|
companyTotal?: string | null;
|
|
54908
54912
|
/** @description visible when customer is not resident */
|
|
54909
|
-
tax?: components["schemas"]["
|
|
54913
|
+
tax?: components["schemas"]["RetrieveTax"];
|
|
54910
54914
|
/** Items */
|
|
54911
54915
|
items: components["schemas"]["SalesReturnInvoiceItemTotalCalculated"][];
|
|
54912
54916
|
};
|