@erp-galoper/types 1.0.88 → 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 +8 -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 ec8fa84f-f44f-4f37-9b5e-5f519d3e78f8
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"];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.88",
3
+ "version": "1.0.89",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],