@erp-galoper/types 1.0.118 → 1.0.120

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
@@ -26543,7 +26543,7 @@ export interface components {
26543
26543
  /**
26544
26544
  * Id
26545
26545
  * Format: uuid
26546
- * @example f9c176dc-7a14-4618-a277-4a65b6cdc647
26546
+ * @example a7bdb878-5394-499f-aef0-d00f2c02876e
26547
26547
  */
26548
26548
  id: string;
26549
26549
  /**
@@ -34083,6 +34083,11 @@ export interface components {
34083
34083
  * @enum {string}
34084
34084
  */
34085
34085
  AppliesOnSchema: "item" | "category";
34086
+ /**
34087
+ * AppliesToSchema
34088
+ * @enum {string}
34089
+ */
34090
+ AppliesToSchema: "customer" | "customerGroup";
34086
34091
  /** CustomerSharedSchema */
34087
34092
  CustomerSharedSchema: {
34088
34093
  /** Id */
@@ -34188,6 +34193,7 @@ export interface components {
34188
34193
  /** Attachments */
34189
34194
  attachments: string[] | null;
34190
34195
  appliesOn: components["schemas"]["AppliesOnSchema"] | null;
34196
+ appliesTo: components["schemas"]["AppliesToSchema"];
34191
34197
  promotionType: components["schemas"]["PromotionTypes"];
34192
34198
  /** Stackable */
34193
34199
  stackable: boolean;
@@ -34253,11 +34259,6 @@ export interface components {
34253
34259
  * @enum {string}
34254
34260
  */
34255
34261
  PromotionTypes: "percentage" | "fixedAmount" | "volumeBased" | "buyOneGetOne" | "bundleOffers" | "orderValue" | "timeSensitiveOffers" | "promotionalCodes";
34256
- /**
34257
- * AppliesToSchema
34258
- * @enum {string}
34259
- */
34260
- AppliesToSchema: "customer" | "customerGroup";
34261
34262
  /** OfferAndPromotionCreateSchema */
34262
34263
  OfferAndPromotionCreateSchema: {
34263
34264
  /** Name */
@@ -34449,6 +34450,7 @@ export interface components {
34449
34450
  /** Attachments */
34450
34451
  attachments: string[] | null;
34451
34452
  appliesOn: components["schemas"]["AppliesOnSchema"] | null;
34453
+ appliesTo: components["schemas"]["AppliesToSchema"];
34452
34454
  promotionType: components["schemas"]["PromotionTypes"];
34453
34455
  /** Stackable */
34454
34456
  stackable: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.118",
3
+ "version": "1.0.120",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],