@erp-galoper/types 1.0.1082 → 1.0.1084

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.
Files changed (2) hide show
  1. package/openapi.ts +36 -28
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -3204,7 +3204,7 @@ export interface paths {
3204
3204
  * @description Endpoint for create variation
3205
3205
  * Possible Responses:
3206
3206
  * - 200:
3207
- * - variationCreated
3207
+ * - variationUpdated
3208
3208
  * - 400:
3209
3209
  * - attributeConflict
3210
3210
  * - noChangesDetected
@@ -25190,6 +25190,39 @@ export interface components {
25190
25190
  allowNegativeStock: boolean;
25191
25191
  affectHistoricalCost: components["schemas"]["HistoricalCostTypeInRetrieve"];
25192
25192
  };
25193
+ /** ItemVariationsResponse */
25194
+ ItemVariationsResponse: {
25195
+ /** Code */
25196
+ code: string;
25197
+ /** Message */
25198
+ message: string;
25199
+ data: components["schemas"]["RetrieveVariations"];
25200
+ };
25201
+ /** RetrieveVariationDetail */
25202
+ RetrieveVariationDetail: {
25203
+ /** Id */
25204
+ id: number;
25205
+ /** Value */
25206
+ value: string;
25207
+ };
25208
+ /** RetrieveVariations */
25209
+ RetrieveVariations: {
25210
+ /**
25211
+ * Datecreated
25212
+ * Format: date-time
25213
+ */
25214
+ dateCreated: string;
25215
+ /** Datemodified */
25216
+ dateModified: string | null;
25217
+ createdBy: components["schemas"]["RecordUserSchema"];
25218
+ modifiedBy: components["schemas"]["RecordUserSchema"] | null;
25219
+ /** Id */
25220
+ id: number;
25221
+ /** Attribute */
25222
+ attribute: string;
25223
+ /** Variations */
25224
+ variations: components["schemas"]["RetrieveVariationDetail"][];
25225
+ };
25193
25226
  /** VariationDetails */
25194
25227
  VariationDetails: {
25195
25228
  /** Value */
@@ -25208,13 +25241,6 @@ export interface components {
25208
25241
  /** Results */
25209
25242
  results: components["schemas"]["RetrieveVariationsInList"][];
25210
25243
  };
25211
- /** RetrieveVariationDetail */
25212
- RetrieveVariationDetail: {
25213
- /** Id */
25214
- id: number;
25215
- /** Value */
25216
- value: string;
25217
- };
25218
25244
  /** RetrieveVariationsInList */
25219
25245
  RetrieveVariationsInList: {
25220
25246
  /**
@@ -25275,24 +25301,6 @@ export interface components {
25275
25301
  attribute?: string | null;
25276
25302
  variations: components["schemas"]["UpdateVariationDetail"];
25277
25303
  };
25278
- /** RetrieveVariations */
25279
- RetrieveVariations: {
25280
- /**
25281
- * Datecreated
25282
- * Format: date-time
25283
- */
25284
- dateCreated: string;
25285
- /** Datemodified */
25286
- dateModified: string | null;
25287
- createdBy: components["schemas"]["RecordUserSchema"];
25288
- modifiedBy: components["schemas"]["RecordUserSchema"] | null;
25289
- /** Id */
25290
- id: number;
25291
- /** Attribute */
25292
- attribute: string;
25293
- /** Variations */
25294
- variations: components["schemas"]["RetrieveVariationDetail"][];
25295
- };
25296
25304
  /** AccountSchema */
25297
25305
  AccountSchema: {
25298
25306
  /** Id */
@@ -55384,7 +55392,7 @@ export interface operations {
55384
55392
  [name: string]: unknown;
55385
55393
  };
55386
55394
  content: {
55387
- "application/json": components["schemas"]["MessageResponse"];
55395
+ "application/json": components["schemas"]["ItemVariationsResponse"];
55388
55396
  };
55389
55397
  };
55390
55398
  /** @description Bad Request */
@@ -55551,7 +55559,7 @@ export interface operations {
55551
55559
  [name: string]: unknown;
55552
55560
  };
55553
55561
  content: {
55554
- "application/json": components["schemas"]["MessageResponse"];
55562
+ "application/json": components["schemas"]["ItemVariationsResponse"];
55555
55563
  };
55556
55564
  };
55557
55565
  /** @description Bad Request */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1082",
3
+ "version": "1.0.1084",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],