@positivegrid/pg-mongoose-schema 28.0.0-beta.6 → 28.0.0-beta.7

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/dist/index.cjs CHANGED
@@ -4820,6 +4820,7 @@ function buildUser(mongoose) {
4820
4820
  type: [String],
4821
4821
  default: []
4822
4822
  },
4823
+ collection_handle: { type: String },
4823
4824
  discount_percent: {
4824
4825
  type: Number,
4825
4826
  required: true
package/dist/index.d.mts CHANGED
@@ -190,6 +190,7 @@ interface IRewardPointsRedeemList {
190
190
  name: string;
191
191
  description?: string;
192
192
  skus: string[];
193
+ collection_handle?: string;
193
194
  discount_percent: number;
194
195
  points_required: number;
195
196
  created_on: Date;
package/dist/index.mjs CHANGED
@@ -4792,6 +4792,7 @@ function buildUser(mongoose) {
4792
4792
  type: [String],
4793
4793
  default: []
4794
4794
  },
4795
+ collection_handle: { type: String },
4795
4796
  discount_percent: {
4796
4797
  type: Number,
4797
4798
  required: true
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@positivegrid/pg-mongoose-schema",
3
- "version": "28.0.0-beta.6",
3
+ "version": "28.0.0-beta.7",
4
4
  "description": "Positive Grid mongoose schema",
5
5
  "author": "Ferrari Lee <shiyung@positivegrid.com>",
6
6
  "homepage": "https://git.positivegrid.com:8443/backend/pg-mongoose-schema",