@erp-galoper/types 1.0.456 → 1.0.457
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 +46 -14
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -20808,6 +20808,8 @@ export interface components {
|
|
|
20808
20808
|
defaultSellingPrice: number;
|
|
20809
20809
|
/** @description Price of the packed item */
|
|
20810
20810
|
defaultSellingPriceCurrency: components["schemas"]["CurrencySummaryInfo"];
|
|
20811
|
+
/** @description ID of the unit of measure for the packed item */
|
|
20812
|
+
unitOfMeasure: components["schemas"]["UnitOfMeasureSummaryInfo"];
|
|
20811
20813
|
};
|
|
20812
20814
|
/** ItemSchema */
|
|
20813
20815
|
ItemSchema: {
|
|
@@ -21230,6 +21232,15 @@ export interface components {
|
|
|
21230
21232
|
/** Name */
|
|
21231
21233
|
name: string;
|
|
21232
21234
|
};
|
|
21235
|
+
/** UnitOfMeasureSummaryInfo */
|
|
21236
|
+
UnitOfMeasureSummaryInfo: {
|
|
21237
|
+
/** Id */
|
|
21238
|
+
id: number;
|
|
21239
|
+
/** Name */
|
|
21240
|
+
name: string;
|
|
21241
|
+
/** Code */
|
|
21242
|
+
code: string | null;
|
|
21243
|
+
};
|
|
21233
21244
|
/** VariantOfSchema */
|
|
21234
21245
|
VariantOfSchema: {
|
|
21235
21246
|
/** Id */
|
|
@@ -21611,10 +21622,7 @@ export interface components {
|
|
|
21611
21622
|
/** Alertdate */
|
|
21612
21623
|
alertDate?: number | null;
|
|
21613
21624
|
commissionCalculation?: components["schemas"]["CommissionCalculation"];
|
|
21614
|
-
/**
|
|
21615
|
-
* Packages
|
|
21616
|
-
* @default []
|
|
21617
|
-
*/
|
|
21625
|
+
/** Packages */
|
|
21618
21626
|
packages: components["schemas"]["CreateOrUpdatePackageItemSchema"][];
|
|
21619
21627
|
/**
|
|
21620
21628
|
* Children
|
|
@@ -21669,6 +21677,11 @@ export interface components {
|
|
|
21669
21677
|
* @description Price of the packed item in usd or company currency only
|
|
21670
21678
|
*/
|
|
21671
21679
|
defaultSellingPriceCurrency: number;
|
|
21680
|
+
/**
|
|
21681
|
+
* Unitofmeasure
|
|
21682
|
+
* @description ID of the unit of measure for the packed item, should be chosen from the item's unit of measures
|
|
21683
|
+
*/
|
|
21684
|
+
unitOfMeasure: number;
|
|
21672
21685
|
};
|
|
21673
21686
|
/** DeleteItemSchema */
|
|
21674
21687
|
DeleteItemSchema: {
|
|
@@ -26801,7 +26814,7 @@ export interface components {
|
|
|
26801
26814
|
/**
|
|
26802
26815
|
* Id
|
|
26803
26816
|
* Format: uuid
|
|
26804
|
-
* @example
|
|
26817
|
+
* @example 07b39cd0-def4-479a-9f7f-1f28378518eb
|
|
26805
26818
|
*/
|
|
26806
26819
|
id: string;
|
|
26807
26820
|
/**
|
|
@@ -30426,15 +30439,6 @@ export interface components {
|
|
|
30426
30439
|
/** Total */
|
|
30427
30440
|
total: number | null;
|
|
30428
30441
|
};
|
|
30429
|
-
/** UnitOfMeasureSummaryInfo */
|
|
30430
|
-
UnitOfMeasureSummaryInfo: {
|
|
30431
|
-
/** Id */
|
|
30432
|
-
id: number;
|
|
30433
|
-
/** Name */
|
|
30434
|
-
name: string;
|
|
30435
|
-
/** Code */
|
|
30436
|
-
code: string | null;
|
|
30437
|
-
};
|
|
30438
30442
|
/** NewRequisitionSchema */
|
|
30439
30443
|
NewRequisitionSchema: {
|
|
30440
30444
|
/**
|
|
@@ -37328,21 +37332,29 @@ export interface components {
|
|
|
37328
37332
|
* @description Length of the package
|
|
37329
37333
|
*/
|
|
37330
37334
|
length: number | null;
|
|
37335
|
+
/** @description Length unit of the package */
|
|
37336
|
+
length_unit: components["schemas"]["UnitOfMeasureSummaryInfo"] | null;
|
|
37331
37337
|
/**
|
|
37332
37338
|
* Width
|
|
37333
37339
|
* @description Width of the package
|
|
37334
37340
|
*/
|
|
37335
37341
|
width: number | null;
|
|
37342
|
+
/** @description Width unit of the package */
|
|
37343
|
+
width_unit: components["schemas"]["UnitOfMeasureSummaryInfo"] | null;
|
|
37336
37344
|
/**
|
|
37337
37345
|
* Height
|
|
37338
37346
|
* @description Height of the package
|
|
37339
37347
|
*/
|
|
37340
37348
|
height: number | null;
|
|
37349
|
+
/** @description Height unit of the package */
|
|
37350
|
+
height_unit: components["schemas"]["UnitOfMeasureSummaryInfo"] | null;
|
|
37341
37351
|
/**
|
|
37342
37352
|
* Volume
|
|
37343
37353
|
* @description Volume of the package
|
|
37344
37354
|
*/
|
|
37345
37355
|
volume: number | null;
|
|
37356
|
+
/** @description Volume unit of the package */
|
|
37357
|
+
volume_unit: components["schemas"]["UnitOfMeasureSummaryInfo"] | null;
|
|
37346
37358
|
/**
|
|
37347
37359
|
* @description Category of the package
|
|
37348
37360
|
* @default primary
|
|
@@ -37401,21 +37413,41 @@ export interface components {
|
|
|
37401
37413
|
* @description Length of the package
|
|
37402
37414
|
*/
|
|
37403
37415
|
length?: number;
|
|
37416
|
+
/**
|
|
37417
|
+
* Lengthunit
|
|
37418
|
+
* @description Length unit of the package
|
|
37419
|
+
*/
|
|
37420
|
+
lengthUnit?: number;
|
|
37404
37421
|
/**
|
|
37405
37422
|
* Width
|
|
37406
37423
|
* @description Width of the package
|
|
37407
37424
|
*/
|
|
37408
37425
|
width?: number;
|
|
37426
|
+
/**
|
|
37427
|
+
* Widthunit
|
|
37428
|
+
* @description Width unit of the package
|
|
37429
|
+
*/
|
|
37430
|
+
widthUnit?: number;
|
|
37409
37431
|
/**
|
|
37410
37432
|
* Height
|
|
37411
37433
|
* @description Height of the package
|
|
37412
37434
|
*/
|
|
37413
37435
|
height?: number;
|
|
37436
|
+
/**
|
|
37437
|
+
* Heightunit
|
|
37438
|
+
* @description Height unit of the package
|
|
37439
|
+
*/
|
|
37440
|
+
heightUnit?: number;
|
|
37414
37441
|
/**
|
|
37415
37442
|
* Volume
|
|
37416
37443
|
* @description Volume of the package
|
|
37417
37444
|
*/
|
|
37418
37445
|
volume?: number;
|
|
37446
|
+
/**
|
|
37447
|
+
* Volumeunit
|
|
37448
|
+
* @description Volume unit of the package
|
|
37449
|
+
*/
|
|
37450
|
+
volumeUnit?: number;
|
|
37419
37451
|
/**
|
|
37420
37452
|
* @description Category of the package
|
|
37421
37453
|
* @default primary
|