@erp-galoper/types 1.0.321 → 1.0.323
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 +38 -24
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -23583,19 +23583,8 @@ export interface components {
|
|
|
23583
23583
|
/** Default */
|
|
23584
23584
|
default: boolean;
|
|
23585
23585
|
};
|
|
23586
|
-
/**
|
|
23587
|
-
|
|
23588
|
-
/** Name */
|
|
23589
|
-
name: string;
|
|
23590
|
-
};
|
|
23591
|
-
/** ListUnitOfMeasures */
|
|
23592
|
-
ListUnitOfMeasures: {
|
|
23593
|
-
info: components["schemas"]["PageInfoSchema"];
|
|
23594
|
-
/** Results */
|
|
23595
|
-
results: components["schemas"]["RetrieveUnitOfMeasurmentInList"][];
|
|
23596
|
-
};
|
|
23597
|
-
/** RetrieveUnitOfMeasurmentInList */
|
|
23598
|
-
RetrieveUnitOfMeasurmentInList: {
|
|
23586
|
+
/** RetrieveUnitOfMeasurment */
|
|
23587
|
+
RetrieveUnitOfMeasurment: {
|
|
23599
23588
|
/**
|
|
23600
23589
|
* Datecreated
|
|
23601
23590
|
* Format: date-time
|
|
@@ -23611,11 +23600,28 @@ export interface components {
|
|
|
23611
23600
|
name: string;
|
|
23612
23601
|
/** Default */
|
|
23613
23602
|
default: boolean;
|
|
23614
|
-
/** Candelete */
|
|
23615
|
-
canDelete: boolean;
|
|
23616
23603
|
};
|
|
23617
|
-
/**
|
|
23618
|
-
|
|
23604
|
+
/** UnitOfMeasureResponseSchema */
|
|
23605
|
+
UnitOfMeasureResponseSchema: {
|
|
23606
|
+
/** Code */
|
|
23607
|
+
code: string;
|
|
23608
|
+
/** Message */
|
|
23609
|
+
message: string;
|
|
23610
|
+
data: components["schemas"]["RetrieveUnitOfMeasurment"];
|
|
23611
|
+
};
|
|
23612
|
+
/** UnitOfMeasurement */
|
|
23613
|
+
UnitOfMeasurement: {
|
|
23614
|
+
/** Name */
|
|
23615
|
+
name: string;
|
|
23616
|
+
};
|
|
23617
|
+
/** ListUnitOfMeasures */
|
|
23618
|
+
ListUnitOfMeasures: {
|
|
23619
|
+
info: components["schemas"]["PageInfoSchema"];
|
|
23620
|
+
/** Results */
|
|
23621
|
+
results: components["schemas"]["RetrieveUnitOfMeasurmentInList"][];
|
|
23622
|
+
};
|
|
23623
|
+
/** RetrieveUnitOfMeasurmentInList */
|
|
23624
|
+
RetrieveUnitOfMeasurmentInList: {
|
|
23619
23625
|
/**
|
|
23620
23626
|
* Datecreated
|
|
23621
23627
|
* Format: date-time
|
|
@@ -23631,6 +23637,8 @@ export interface components {
|
|
|
23631
23637
|
name: string;
|
|
23632
23638
|
/** Default */
|
|
23633
23639
|
default: boolean;
|
|
23640
|
+
/** Candelete */
|
|
23641
|
+
canDelete: boolean;
|
|
23634
23642
|
};
|
|
23635
23643
|
/** CreateTagSchema */
|
|
23636
23644
|
CreateTagSchema: {
|
|
@@ -26661,7 +26669,7 @@ export interface components {
|
|
|
26661
26669
|
/**
|
|
26662
26670
|
* Id
|
|
26663
26671
|
* Format: uuid
|
|
26664
|
-
* @example
|
|
26672
|
+
* @example 911336b1-2611-46ec-9aab-a31c9faf335d
|
|
26665
26673
|
*/
|
|
26666
26674
|
id: string;
|
|
26667
26675
|
/**
|
|
@@ -34615,7 +34623,10 @@ export interface components {
|
|
|
34615
34623
|
promotionType: components["schemas"]["PromotionTypes"];
|
|
34616
34624
|
/** Stackable */
|
|
34617
34625
|
stackable: boolean;
|
|
34618
|
-
/**
|
|
34626
|
+
/**
|
|
34627
|
+
* Promotioncode
|
|
34628
|
+
* @description visible only when promotion type is promotionalCodes
|
|
34629
|
+
*/
|
|
34619
34630
|
promotionCode: string | null;
|
|
34620
34631
|
status: components["schemas"]["RetrieveInternalStatusChoices"];
|
|
34621
34632
|
approvalStatus: components["schemas"]["ApprovalChoices"];
|
|
@@ -34741,7 +34752,7 @@ export interface components {
|
|
|
34741
34752
|
stackable: boolean;
|
|
34742
34753
|
/**
|
|
34743
34754
|
* Promotioncode
|
|
34744
|
-
* @description required when promotion type is promotionalCodes
|
|
34755
|
+
* @description visible, required, and editable only when promotion type is promotionalCodes
|
|
34745
34756
|
*/
|
|
34746
34757
|
promotionCode?: string;
|
|
34747
34758
|
/**
|
|
@@ -34880,7 +34891,10 @@ export interface components {
|
|
|
34880
34891
|
promotionType: components["schemas"]["PromotionTypes"];
|
|
34881
34892
|
/** Stackable */
|
|
34882
34893
|
stackable: boolean;
|
|
34883
|
-
/**
|
|
34894
|
+
/**
|
|
34895
|
+
* Promotioncode
|
|
34896
|
+
* @description visible only when promotion type is promotionalCodes
|
|
34897
|
+
*/
|
|
34884
34898
|
promotionCode: string | null;
|
|
34885
34899
|
status: components["schemas"]["RetrieveInternalStatusChoices"];
|
|
34886
34900
|
approvalStatus: components["schemas"]["ApprovalChoices"];
|
|
@@ -35027,7 +35041,7 @@ export interface components {
|
|
|
35027
35041
|
stackable: boolean;
|
|
35028
35042
|
/**
|
|
35029
35043
|
* Promotioncode
|
|
35030
|
-
* @description required when promotion type is promotionalCodes
|
|
35044
|
+
* @description visible, required, and editable only when promotion type is promotionalCodes
|
|
35031
35045
|
*/
|
|
35032
35046
|
promotionCode?: string;
|
|
35033
35047
|
/**
|
|
@@ -51063,7 +51077,7 @@ export interface operations {
|
|
|
51063
51077
|
[name: string]: unknown;
|
|
51064
51078
|
};
|
|
51065
51079
|
content: {
|
|
51066
|
-
"application/json": components["schemas"]["
|
|
51080
|
+
"application/json": components["schemas"]["UnitOfMeasureResponseSchema"];
|
|
51067
51081
|
};
|
|
51068
51082
|
};
|
|
51069
51083
|
/** @description Bad Request */
|
|
@@ -51230,7 +51244,7 @@ export interface operations {
|
|
|
51230
51244
|
[name: string]: unknown;
|
|
51231
51245
|
};
|
|
51232
51246
|
content: {
|
|
51233
|
-
"application/json": components["schemas"]["
|
|
51247
|
+
"application/json": components["schemas"]["UnitOfMeasureResponseSchema"];
|
|
51234
51248
|
};
|
|
51235
51249
|
};
|
|
51236
51250
|
/** @description Bad Request */
|