@erp-galoper/types 1.0.810 → 1.0.812
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 +32 -2
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -22129,7 +22129,25 @@ export interface components {
|
|
|
22129
22129
|
* @default []
|
|
22130
22130
|
*/
|
|
22131
22131
|
packages: components["schemas"]["CreateOrUpdatePackageItemSchema"][];
|
|
22132
|
-
/**
|
|
22132
|
+
/**
|
|
22133
|
+
* @default []
|
|
22134
|
+
* @example {
|
|
22135
|
+
* "add": [],
|
|
22136
|
+
* "delete": [
|
|
22137
|
+
* {
|
|
22138
|
+
* "id": 1,
|
|
22139
|
+
* "index": 0
|
|
22140
|
+
* }
|
|
22141
|
+
* ],
|
|
22142
|
+
* "update": [
|
|
22143
|
+
* {
|
|
22144
|
+
* "active": false,
|
|
22145
|
+
* "id": 1,
|
|
22146
|
+
* "index": 0
|
|
22147
|
+
* }
|
|
22148
|
+
* ]
|
|
22149
|
+
* }
|
|
22150
|
+
*/
|
|
22133
22151
|
children: components["schemas"]["UpdateChildrenItemSchema"] | null;
|
|
22134
22152
|
costStrategy?: components["schemas"]["CostStrategy"] | null;
|
|
22135
22153
|
commissionCalculation?: components["schemas"]["CommissionCalculation"];
|
|
@@ -22144,11 +22162,19 @@ export interface components {
|
|
|
22144
22162
|
/**
|
|
22145
22163
|
* Update
|
|
22146
22164
|
* @default []
|
|
22165
|
+
* @example {
|
|
22166
|
+
* "active": "False",
|
|
22167
|
+
* "id": 1
|
|
22168
|
+
* }
|
|
22147
22169
|
*/
|
|
22148
22170
|
update: components["schemas"]["UpdateStatusItems"][];
|
|
22149
22171
|
/**
|
|
22150
22172
|
* Delete
|
|
22151
22173
|
* @default []
|
|
22174
|
+
* @example {
|
|
22175
|
+
* "id": 1,
|
|
22176
|
+
* "index": 0
|
|
22177
|
+
* }
|
|
22152
22178
|
*/
|
|
22153
22179
|
delete: components["schemas"]["DeleteItemSchema"][];
|
|
22154
22180
|
};
|
|
@@ -28707,7 +28733,11 @@ export interface components {
|
|
|
28707
28733
|
};
|
|
28708
28734
|
/** CreateApprovalCondition */
|
|
28709
28735
|
CreateApprovalCondition: {
|
|
28710
|
-
/**
|
|
28736
|
+
/**
|
|
28737
|
+
* Path
|
|
28738
|
+
* @example field1.field2.field3
|
|
28739
|
+
* @example field1.field2.field3.field4.2
|
|
28740
|
+
*/
|
|
28711
28741
|
path: string;
|
|
28712
28742
|
/** Value */
|
|
28713
28743
|
value?: string | null;
|