@erp-galoper/types 1.0.1369 → 1.0.1370
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 +91 -0
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -39388,6 +39388,12 @@ export interface components {
|
|
|
39388
39388
|
}[];
|
|
39389
39389
|
/** @description visible when supplier is not resident */
|
|
39390
39390
|
tax: components["schemas"]["TaxSharedSchema"] | null;
|
|
39391
|
+
/**
|
|
39392
|
+
* Taxbreakdown
|
|
39393
|
+
* @description Aggregated tax amounts breakdown
|
|
39394
|
+
* @default []
|
|
39395
|
+
*/
|
|
39396
|
+
taxBreakdown: components["schemas"]["TaxBreakdownSchema"][];
|
|
39391
39397
|
/** @description visible when project module is active */
|
|
39392
39398
|
project: components["schemas"]["ProjectSummaryInfo"] | null;
|
|
39393
39399
|
/**
|
|
@@ -39406,6 +39412,25 @@ export interface components {
|
|
|
39406
39412
|
/** Serialnumber */
|
|
39407
39413
|
serialNumber: string;
|
|
39408
39414
|
};
|
|
39415
|
+
/** TaxBreakdownSchema */
|
|
39416
|
+
TaxBreakdownSchema: {
|
|
39417
|
+
tax: components["schemas"]["TaxSharedSchema"];
|
|
39418
|
+
/**
|
|
39419
|
+
* Amount
|
|
39420
|
+
* @description Tax amount in base currency
|
|
39421
|
+
*/
|
|
39422
|
+
amount: string;
|
|
39423
|
+
/**
|
|
39424
|
+
* Secondaryamount
|
|
39425
|
+
* @description Tax amount in USD
|
|
39426
|
+
*/
|
|
39427
|
+
secondaryAmount: string;
|
|
39428
|
+
/**
|
|
39429
|
+
* Companyamount
|
|
39430
|
+
* @description Tax amount in company currency
|
|
39431
|
+
*/
|
|
39432
|
+
companyAmount: string;
|
|
39433
|
+
};
|
|
39409
39434
|
/** CreatePurchaseQuotationItemsSchema */
|
|
39410
39435
|
CreatePurchaseQuotationItemsSchema: {
|
|
39411
39436
|
/**
|
|
@@ -39688,6 +39713,12 @@ export interface components {
|
|
|
39688
39713
|
* @description visible when supplier is not resident
|
|
39689
39714
|
*/
|
|
39690
39715
|
tax?: number;
|
|
39716
|
+
/**
|
|
39717
|
+
* Taxbreakdown
|
|
39718
|
+
* @description Aggregated tax amounts breakdown
|
|
39719
|
+
* @default []
|
|
39720
|
+
*/
|
|
39721
|
+
taxBreakdown: components["schemas"]["TaxBreakdownSchema"][];
|
|
39691
39722
|
/** Items */
|
|
39692
39723
|
items: components["schemas"]["ItemTotalCalculated"][];
|
|
39693
39724
|
};
|
|
@@ -39932,6 +39963,12 @@ export interface components {
|
|
|
39932
39963
|
}[];
|
|
39933
39964
|
/** @description visible when supplier is not resident */
|
|
39934
39965
|
tax: components["schemas"]["TaxSharedSchema"] | null;
|
|
39966
|
+
/**
|
|
39967
|
+
* Taxbreakdown
|
|
39968
|
+
* @description Aggregated tax amounts breakdown
|
|
39969
|
+
* @default []
|
|
39970
|
+
*/
|
|
39971
|
+
taxBreakdown: components["schemas"]["TaxBreakdownSchema"][];
|
|
39935
39972
|
/** @description visible when project module is active */
|
|
39936
39973
|
project: components["schemas"]["ProjectSummaryInfo"] | null;
|
|
39937
39974
|
/** Items */
|
|
@@ -40789,6 +40826,12 @@ export interface components {
|
|
|
40789
40826
|
warehouse: components["schemas"]["WarehouseSummaryInfo"] | null;
|
|
40790
40827
|
/** @description visible when supplier is not resident */
|
|
40791
40828
|
tax: components["schemas"]["TaxSharedSchema"] | null;
|
|
40829
|
+
/**
|
|
40830
|
+
* Taxbreakdown
|
|
40831
|
+
* @description Aggregated tax amounts breakdown
|
|
40832
|
+
* @default []
|
|
40833
|
+
*/
|
|
40834
|
+
taxBreakdown: components["schemas"]["TaxBreakdownSchema"][];
|
|
40792
40835
|
/**
|
|
40793
40836
|
* Remaining
|
|
40794
40837
|
* @description - this field is number
|
|
@@ -40984,6 +41027,12 @@ export interface components {
|
|
|
40984
41027
|
warehouse: components["schemas"]["WarehouseSummaryInfo"] | null;
|
|
40985
41028
|
/** @description visible when supplier is not resident */
|
|
40986
41029
|
tax: components["schemas"]["TaxSharedSchema"] | null;
|
|
41030
|
+
/**
|
|
41031
|
+
* Taxbreakdown
|
|
41032
|
+
* @description Aggregated tax amounts breakdown
|
|
41033
|
+
* @default []
|
|
41034
|
+
*/
|
|
41035
|
+
taxBreakdown: components["schemas"]["TaxBreakdownSchema"][];
|
|
40987
41036
|
/**
|
|
40988
41037
|
* Remaining
|
|
40989
41038
|
* @description - this field is number
|
|
@@ -45922,6 +45971,12 @@ export interface components {
|
|
|
45922
45971
|
* @description tax id
|
|
45923
45972
|
*/
|
|
45924
45973
|
tax?: number;
|
|
45974
|
+
/**
|
|
45975
|
+
* Taxbreakdown
|
|
45976
|
+
* @description Aggregated tax amounts breakdown
|
|
45977
|
+
* @default []
|
|
45978
|
+
*/
|
|
45979
|
+
taxBreakdown: components["schemas"]["TaxBreakdownSchema"][];
|
|
45925
45980
|
/** Items */
|
|
45926
45981
|
items: components["schemas"]["SalesItemTotalCalculated"][];
|
|
45927
45982
|
};
|
|
@@ -46277,6 +46332,12 @@ export interface components {
|
|
|
46277
46332
|
notes: string | null;
|
|
46278
46333
|
/** @description visible when customer is not resident */
|
|
46279
46334
|
tax: components["schemas"]["TaxSharedSchema"] | null;
|
|
46335
|
+
/**
|
|
46336
|
+
* Taxbreakdown
|
|
46337
|
+
* @description Aggregated tax amounts breakdown
|
|
46338
|
+
* @default []
|
|
46339
|
+
*/
|
|
46340
|
+
taxBreakdown: components["schemas"]["TaxBreakdownSchema"][];
|
|
46280
46341
|
/**
|
|
46281
46342
|
* Canconvert
|
|
46282
46343
|
* @default false
|
|
@@ -46677,6 +46738,12 @@ export interface components {
|
|
|
46677
46738
|
notes: string | null;
|
|
46678
46739
|
/** @description visible when customer is not resident */
|
|
46679
46740
|
tax: components["schemas"]["TaxSharedSchema"] | null;
|
|
46741
|
+
/**
|
|
46742
|
+
* Taxbreakdown
|
|
46743
|
+
* @description Aggregated tax amounts breakdown
|
|
46744
|
+
* @default []
|
|
46745
|
+
*/
|
|
46746
|
+
taxBreakdown: components["schemas"]["TaxBreakdownSchema"][];
|
|
46680
46747
|
/**
|
|
46681
46748
|
* Canconvert
|
|
46682
46749
|
* @default false
|
|
@@ -48473,6 +48540,12 @@ export interface components {
|
|
|
48473
48540
|
notes: string | null;
|
|
48474
48541
|
/** @description visible when customer is not resident */
|
|
48475
48542
|
tax: components["schemas"]["TaxSharedSchema"] | null;
|
|
48543
|
+
/**
|
|
48544
|
+
* Taxbreakdown
|
|
48545
|
+
* @description Aggregated tax amounts breakdown
|
|
48546
|
+
* @default []
|
|
48547
|
+
*/
|
|
48548
|
+
taxBreakdown: components["schemas"]["TaxBreakdownSchema"][];
|
|
48476
48549
|
/**
|
|
48477
48550
|
* Canconvert
|
|
48478
48551
|
* @description Indicates whether the sales order can be converted to another status.
|
|
@@ -48927,6 +49000,12 @@ export interface components {
|
|
|
48927
49000
|
notes: string | null;
|
|
48928
49001
|
/** @description visible when customer is not resident */
|
|
48929
49002
|
tax: components["schemas"]["TaxSharedSchema"] | null;
|
|
49003
|
+
/**
|
|
49004
|
+
* Taxbreakdown
|
|
49005
|
+
* @description Aggregated tax amounts breakdown
|
|
49006
|
+
* @default []
|
|
49007
|
+
*/
|
|
49008
|
+
taxBreakdown: components["schemas"]["TaxBreakdownSchema"][];
|
|
48930
49009
|
/**
|
|
48931
49010
|
* Canconvert
|
|
48932
49011
|
* @description Indicates whether the sales order can be converted to another status.
|
|
@@ -50133,6 +50212,12 @@ export interface components {
|
|
|
50133
50212
|
notes: string | null;
|
|
50134
50213
|
/** @description visible when customer is not resident */
|
|
50135
50214
|
tax: components["schemas"]["TaxSharedSchema"] | null;
|
|
50215
|
+
/**
|
|
50216
|
+
* Taxbreakdown
|
|
50217
|
+
* @description Aggregated tax amounts breakdown
|
|
50218
|
+
* @default []
|
|
50219
|
+
*/
|
|
50220
|
+
taxBreakdown: components["schemas"]["TaxBreakdownSchema"][];
|
|
50136
50221
|
/**
|
|
50137
50222
|
* Canreturn
|
|
50138
50223
|
* @description Indicates whether the sales invoice can be converted to delivery note
|
|
@@ -50657,6 +50742,12 @@ export interface components {
|
|
|
50657
50742
|
notes: string | null;
|
|
50658
50743
|
/** @description visible when customer is not resident */
|
|
50659
50744
|
tax: components["schemas"]["TaxSharedSchema"] | null;
|
|
50745
|
+
/**
|
|
50746
|
+
* Taxbreakdown
|
|
50747
|
+
* @description Aggregated tax amounts breakdown
|
|
50748
|
+
* @default []
|
|
50749
|
+
*/
|
|
50750
|
+
taxBreakdown: components["schemas"]["TaxBreakdownSchema"][];
|
|
50660
50751
|
/**
|
|
50661
50752
|
* Canreturn
|
|
50662
50753
|
* @description Indicates whether the sales invoice can be converted to delivery note
|