@erp-galoper/types 1.0.528 → 1.0.530
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 +49 -9
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -26965,7 +26965,7 @@ export interface components {
|
|
|
26965
26965
|
/**
|
|
26966
26966
|
* Id
|
|
26967
26967
|
* Format: uuid
|
|
26968
|
-
* @example
|
|
26968
|
+
* @example 916a29bc-01de-43a6-9e99-a563a4e8148f
|
|
26969
26969
|
*/
|
|
26970
26970
|
id: string;
|
|
26971
26971
|
/**
|
|
@@ -31126,7 +31126,12 @@ export interface components {
|
|
|
31126
31126
|
quantity?: number;
|
|
31127
31127
|
/**
|
|
31128
31128
|
* Unitofmeasure
|
|
31129
|
-
* @description
|
|
31129
|
+
* @description
|
|
31130
|
+
* - case where only item selected:
|
|
31131
|
+
* - get data from api/v1/inventory/items/{item-id}/ field unitOfMeasures, get default value from field defaultSalesUnitOfMeasure if applicable
|
|
31132
|
+
* - case where item package selected:
|
|
31133
|
+
* - input should be disabled, get unit of measure from itemPackage
|
|
31134
|
+
*
|
|
31130
31135
|
*/
|
|
31131
31136
|
unitOfMeasure: number | null;
|
|
31132
31137
|
/**
|
|
@@ -31233,7 +31238,12 @@ export interface components {
|
|
|
31233
31238
|
quantity?: number;
|
|
31234
31239
|
/**
|
|
31235
31240
|
* Unitofmeasure
|
|
31236
|
-
* @description
|
|
31241
|
+
* @description
|
|
31242
|
+
* - case where only item selected:
|
|
31243
|
+
* - get data from api/v1/inventory/items/{item-id}/ field unitOfMeasures, get default value from field defaultSalesUnitOfMeasure if applicable
|
|
31244
|
+
* - case where item package selected:
|
|
31245
|
+
* - input should be disabled, get unit of measure from itemPackage
|
|
31246
|
+
*
|
|
31237
31247
|
*/
|
|
31238
31248
|
unitOfMeasure: number | null;
|
|
31239
31249
|
/**
|
|
@@ -31499,7 +31509,12 @@ export interface components {
|
|
|
31499
31509
|
quantity?: number;
|
|
31500
31510
|
/**
|
|
31501
31511
|
* Unitofmeasure
|
|
31502
|
-
* @description
|
|
31512
|
+
* @description
|
|
31513
|
+
* - case where only item selected:
|
|
31514
|
+
* - get data from api/v1/inventory/items/{item-id}/ field unitOfMeasures, get default value from field defaultSalesUnitOfMeasure if applicable
|
|
31515
|
+
* - case where item package selected:
|
|
31516
|
+
* - input should be disabled, get unit of measure from itemPackage
|
|
31517
|
+
*
|
|
31503
31518
|
*/
|
|
31504
31519
|
unitOfMeasure: number | null;
|
|
31505
31520
|
/**
|
|
@@ -31588,7 +31603,12 @@ export interface components {
|
|
|
31588
31603
|
quantity?: number;
|
|
31589
31604
|
/**
|
|
31590
31605
|
* Unitofmeasure
|
|
31591
|
-
* @description
|
|
31606
|
+
* @description
|
|
31607
|
+
* - case where only item selected:
|
|
31608
|
+
* - get data from api/v1/inventory/items/{item-id}/ field unitOfMeasures, get default value from field defaultSalesUnitOfMeasure if applicable
|
|
31609
|
+
* - case where item package selected:
|
|
31610
|
+
* - input should be disabled, get unit of measure from itemPackage
|
|
31611
|
+
*
|
|
31592
31612
|
*/
|
|
31593
31613
|
unitOfMeasure: number | null;
|
|
31594
31614
|
/**
|
|
@@ -32368,7 +32388,12 @@ export interface components {
|
|
|
32368
32388
|
unitPrice: number;
|
|
32369
32389
|
/**
|
|
32370
32390
|
* Unitofmeasure
|
|
32371
|
-
* @description
|
|
32391
|
+
* @description
|
|
32392
|
+
* - case where only item selected:
|
|
32393
|
+
* - get data from api/v1/inventory/items/{item-id}/ field unitOfMeasures, get default value from field defaultSalesUnitOfMeasure if applicable
|
|
32394
|
+
* - case where item package selected:
|
|
32395
|
+
* - input should be disabled, get unit of measure from itemPackage
|
|
32396
|
+
*
|
|
32372
32397
|
*/
|
|
32373
32398
|
unitOfMeasure?: number | null;
|
|
32374
32399
|
/**
|
|
@@ -32905,7 +32930,12 @@ export interface components {
|
|
|
32905
32930
|
unitPrice: number;
|
|
32906
32931
|
/**
|
|
32907
32932
|
* Unitofmeasure
|
|
32908
|
-
* @description
|
|
32933
|
+
* @description
|
|
32934
|
+
* - case where only item selected:
|
|
32935
|
+
* - get data from api/v1/inventory/items/{item-id}/ field unitOfMeasures, get default value from field defaultSalesUnitOfMeasure if applicable
|
|
32936
|
+
* - case where item package selected:
|
|
32937
|
+
* - input should be disabled, get unit of measure from itemPackage
|
|
32938
|
+
*
|
|
32909
32939
|
*/
|
|
32910
32940
|
unitOfMeasure?: number | null;
|
|
32911
32941
|
/**
|
|
@@ -33828,7 +33858,12 @@ export interface components {
|
|
|
33828
33858
|
quantity?: number;
|
|
33829
33859
|
/**
|
|
33830
33860
|
* Unitofmeasurement
|
|
33831
|
-
* @description
|
|
33861
|
+
* @description
|
|
33862
|
+
* - case where only item selected:
|
|
33863
|
+
* - get data from api/v1/inventory/items/{item-id}/ field unitOfMeasures, get default value from field defaultSalesUnitOfMeasure if applicable
|
|
33864
|
+
* - case where item package selected:
|
|
33865
|
+
* - input should be disabled, get unit of measure from itemPackage
|
|
33866
|
+
*
|
|
33832
33867
|
* @example 1
|
|
33833
33868
|
*/
|
|
33834
33869
|
unitOfMeasurement: number | null;
|
|
@@ -33883,7 +33918,12 @@ export interface components {
|
|
|
33883
33918
|
quantity?: number;
|
|
33884
33919
|
/**
|
|
33885
33920
|
* Unitofmeasurement
|
|
33886
|
-
* @description
|
|
33921
|
+
* @description
|
|
33922
|
+
* - case where only item selected:
|
|
33923
|
+
* - get data from api/v1/inventory/items/{item-id}/ field unitOfMeasures, get default value from field defaultSalesUnitOfMeasure if applicable
|
|
33924
|
+
* - case where item package selected:
|
|
33925
|
+
* - input should be disabled, get unit of measure from itemPackage
|
|
33926
|
+
*
|
|
33887
33927
|
* @example 1
|
|
33888
33928
|
*/
|
|
33889
33929
|
unitOfMeasurement: number | null;
|