@erp-galoper/types 1.0.87 → 1.0.89

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 +12 -6
  2. package/package.json +1 -1
package/openapi.ts CHANGED
@@ -20859,6 +20859,8 @@ export interface components {
20859
20859
  * @description Name of the package
20860
20860
  */
20861
20861
  name: string;
20862
+ /** @description Category of the package */
20863
+ category: components["schemas"]["PackageCategory"];
20862
20864
  };
20863
20865
  /** SpecSchema */
20864
20866
  SpecSchema: {
@@ -26463,7 +26465,7 @@ export interface components {
26463
26465
  /**
26464
26466
  * Id
26465
26467
  * Format: uuid
26466
- * @example ead952d4-3264-47b8-ad94-4f551d260c11
26468
+ * @example 21c1f528-c04b-4d0d-91c9-7853179cab37
26467
26469
  */
26468
26470
  id: string;
26469
26471
  /**
@@ -29508,6 +29510,11 @@ export interface components {
29508
29510
  [key: string]: components["schemas"]["LinkedDocumentsSchema"];
29509
29511
  }[];
29510
29512
  };
29513
+ /**
29514
+ * PackageCategory
29515
+ * @enum {string}
29516
+ */
29517
+ PackageCategory: "primary" | "secondary" | "tertiary" | "disposable" | "sustainable" | "retail" | "luxury" | "flexible" | "rigid" | "custom";
29511
29518
  /** ReasonSummaryInfo */
29512
29519
  ReasonSummaryInfo: {
29513
29520
  /** Id */
@@ -31000,11 +31007,6 @@ export interface components {
31000
31007
  /** Total */
31001
31008
  total: number;
31002
31009
  };
31003
- /**
31004
- * PackageCategory
31005
- * @enum {string}
31006
- */
31007
- PackageCategory: "primary" | "secondary" | "tertiary" | "disposable" | "sustainable" | "retail" | "luxury" | "flexible" | "rigid" | "custom";
31008
31010
  /** TotalCalculationResponse */
31009
31011
  TotalCalculationResponse: {
31010
31012
  supplier: components["schemas"]["ChildSupplierSharedSchema"];
@@ -37258,6 +37260,8 @@ export interface components {
37258
37260
  * Format: uuid
37259
37261
  */
37260
37262
  id: string;
37263
+ /** Serialnumber */
37264
+ serialNumber: string;
37261
37265
  /**
37262
37266
  * Total
37263
37267
  * @description field is number
@@ -37293,6 +37297,8 @@ export interface components {
37293
37297
  * Format: uuid
37294
37298
  */
37295
37299
  id: string;
37300
+ /** Serialnumber */
37301
+ serialNumber: string;
37296
37302
  /**
37297
37303
  * Total
37298
37304
  * @description field is number
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.87",
3
+ "version": "1.0.89",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],