@erp-galoper/types 1.0.268 → 1.0.270
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 +26 -7
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -11507,6 +11507,7 @@ export interface paths {
|
|
|
11507
11507
|
* - quantityIsRequired
|
|
11508
11508
|
* - unitPackageIsRequired
|
|
11509
11509
|
* - purchaseInvoiceItemDoesNotHaveUnitPackage
|
|
11510
|
+
* - purchaseInvoiceItemDoesNotExist
|
|
11510
11511
|
*
|
|
11511
11512
|
* - 403: - permissionDenied
|
|
11512
11513
|
* - noBranchAccess
|
|
@@ -26644,7 +26645,7 @@ export interface components {
|
|
|
26644
26645
|
/**
|
|
26645
26646
|
* Id
|
|
26646
26647
|
* Format: uuid
|
|
26647
|
-
* @example
|
|
26648
|
+
* @example 95370c7d-a673-454c-9c32-f24f27298ce3
|
|
26648
26649
|
*/
|
|
26649
26650
|
id: string;
|
|
26650
26651
|
/**
|
|
@@ -32628,10 +32629,12 @@ export interface components {
|
|
|
32628
32629
|
usdTotal: number;
|
|
32629
32630
|
/** Companytotal */
|
|
32630
32631
|
companyTotal: number;
|
|
32631
|
-
/** Quantityreturned */
|
|
32632
|
-
quantityReturned?: number;
|
|
32633
32632
|
/** Quantityreceived */
|
|
32634
32633
|
quantityReceived?: number;
|
|
32634
|
+
/** Quantityreturnedorder */
|
|
32635
|
+
quantityReturnedOrder?: number;
|
|
32636
|
+
/** Quantityreturnedinvoice */
|
|
32637
|
+
quantityReturnedInvoice?: number;
|
|
32635
32638
|
};
|
|
32636
32639
|
/** PurchaseInvoiceListResponse */
|
|
32637
32640
|
PurchaseInvoiceListResponse: {
|
|
@@ -36202,7 +36205,7 @@ export interface components {
|
|
|
36202
36205
|
salesVolumeValue?: number;
|
|
36203
36206
|
/**
|
|
36204
36207
|
* Currency
|
|
36205
|
-
* @description currency id, visible when structure = tiered, required when
|
|
36208
|
+
* @description currency id, visible when structure = tiered, required when salesTierType exist
|
|
36206
36209
|
*/
|
|
36207
36210
|
currency?: number;
|
|
36208
36211
|
/** @description visible when structure = tiered */
|
|
@@ -36277,6 +36280,13 @@ export interface components {
|
|
|
36277
36280
|
*/
|
|
36278
36281
|
attachments: string[];
|
|
36279
36282
|
calculation: components["schemas"]["CommissionCalculation"];
|
|
36283
|
+
/** @description
|
|
36284
|
+
* In all structures user should specify commission value and commission value type
|
|
36285
|
+
* - if structure is productBased user can select item(s) or categories
|
|
36286
|
+
* - if structure is tiered user can select categories or salesTierType -> salesVolumeValue -> currency
|
|
36287
|
+
* - if structure is paymentMethod user should select paymentMethod
|
|
36288
|
+
* - if structure is category use should select category
|
|
36289
|
+
* */
|
|
36280
36290
|
structure: components["schemas"]["CommissionStructureEnum"];
|
|
36281
36291
|
/**
|
|
36282
36292
|
* Startdate
|
|
@@ -36360,7 +36370,7 @@ export interface components {
|
|
|
36360
36370
|
salesVolumeValue?: number;
|
|
36361
36371
|
/**
|
|
36362
36372
|
* Currency
|
|
36363
|
-
* @description currency id, visible when structure = tiered, required when
|
|
36373
|
+
* @description currency id, visible when structure = tiered, required when salesTierType exist
|
|
36364
36374
|
*/
|
|
36365
36375
|
currency?: number;
|
|
36366
36376
|
/** @description visible when structure = tiered */
|
|
@@ -36427,6 +36437,13 @@ export interface components {
|
|
|
36427
36437
|
*/
|
|
36428
36438
|
attachments: string[];
|
|
36429
36439
|
calculation: components["schemas"]["CommissionCalculation"];
|
|
36440
|
+
/** @description
|
|
36441
|
+
* In all structures user should specify comiision value and commission value type
|
|
36442
|
+
* - if structure is productBased user can select item(s) or categories
|
|
36443
|
+
* - if structure is tiered user can select categories or salesTierType -> salesVolumeValue -> currency
|
|
36444
|
+
* - if structure is paymentMethod user should select paymentMethod
|
|
36445
|
+
* - if structure is category use should select category
|
|
36446
|
+
* */
|
|
36430
36447
|
structure: components["schemas"]["CommissionStructureEnum"];
|
|
36431
36448
|
/**
|
|
36432
36449
|
* Startdate
|
|
@@ -41106,8 +41123,10 @@ export interface components {
|
|
|
41106
41123
|
* @default 0
|
|
41107
41124
|
*/
|
|
41108
41125
|
companyTotal: string;
|
|
41109
|
-
/**
|
|
41110
|
-
|
|
41126
|
+
/** Quantityreturnedinvoice */
|
|
41127
|
+
quantityReturnedInvoice?: number;
|
|
41128
|
+
/** Quantityreturnedorder */
|
|
41129
|
+
quantityReturnedOrder?: number;
|
|
41111
41130
|
/**
|
|
41112
41131
|
* Quantitydelivered
|
|
41113
41132
|
* @description Only show in case of delivery note source is sales invoice
|