@redotech/redo-api-schema 2.2.151 → 2.2.153

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/lib/openapi.d.ts CHANGED
@@ -986,6 +986,11 @@ export interface components {
986
986
  eventName: "product_added_to_cart" | "product_removed_from_cart" | "product_viewed" | "checkout_started" | "checkout_completed" | "checkout_contact_info_submitted" | "page_viewed" | "collection_viewed";
987
987
  /** @description Product variant information. */
988
988
  productVariant?: Record<string, never>;
989
+ /**
990
+ * @description Source of the event.
991
+ * @enum {string}
992
+ */
993
+ source: "AIMERCE";
989
994
  /**
990
995
  * Format: date-time
991
996
  * @description ISO 8601 timestamp when the event occurred.
package/lib/openapi.yaml CHANGED
@@ -1095,6 +1095,11 @@ components:
1095
1095
  productVariant:
1096
1096
  description: Product variant information.
1097
1097
  type: object
1098
+ source:
1099
+ description: Source of the event.
1100
+ enum:
1101
+ - AIMERCE
1102
+ type: string
1098
1103
  timestamp:
1099
1104
  description: ISO 8601 timestamp when the event occurred.
1100
1105
  format: date-time
@@ -1109,6 +1114,7 @@ components:
1109
1114
  - eventName
1110
1115
  - eventId
1111
1116
  - timestamp
1117
+ - source
1112
1118
  title: Storefront Event
1113
1119
  type: object
1114
1120
  webhook-create.schema:
package/package.json CHANGED
@@ -31,5 +31,5 @@
31
31
  ]
32
32
  }
33
33
  },
34
- "version": "2.2.151"
34
+ "version": "2.2.153"
35
35
  }