@wix/auto_sdk_benefit-programs_pools 1.0.43 → 1.0.45

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.
@@ -368,10 +368,11 @@ interface RateLimitedPolicy {
368
368
  /** Time period for the rate limit, resets at the start of each period. */
369
369
  timePeriod?: TimePeriodWithLiterals;
370
370
  /**
371
- * Unique identifier for the quota resource. Set during creation and immutable afterwards.
372
- * @format GUID
371
+ * Unique identifier for the quota resource. Set automatically when creating a policy.
372
+ * Updating RateLimitedPolicy `time period` or `times` will result in a quota reset.
373
373
  * @immutable
374
374
  * @readonly
375
+ * @format GUID
375
376
  */
376
377
  quotaId?: string | null;
377
378
  }
@@ -1243,7 +1244,7 @@ interface BenefitSelector {
1243
1244
  /**
1244
1245
  * Amount of items to check.
1245
1246
  *
1246
- * Ensures the balance is high enough to redeem this many it
1247
+ * Ensures the balance is high enough to redeem this many items.
1247
1248
  * @min 1
1248
1249
  */
1249
1250
  count?: number;
@@ -1603,7 +1604,7 @@ interface CheckEligibilityByFilterRequest {
1603
1604
  /**
1604
1605
  * Amount of items to check.
1605
1606
  *
1606
- * Ensures the balance is high enough to redeem this many it
1607
+ * Ensures the balance is high enough to redeem this many items.
1607
1608
  * @min 1
1608
1609
  */
1609
1610
  count: number;
@@ -1614,7 +1615,7 @@ interface CheckEligibilityByFilterRequest {
1614
1615
  */
1615
1616
  targetDate?: Date | null;
1616
1617
  /** Pool beneficiary. */
1617
- beneficiary: CommonIdentificationData;
1618
+ beneficiary?: CommonIdentificationData;
1618
1619
  /** Additional information. */
1619
1620
  additionalData?: Record<string, any> | null;
1620
1621
  }
@@ -2232,7 +2233,7 @@ interface CheckEligibilityByFilterOptions {
2232
2233
  /**
2233
2234
  * Amount of items to check.
2234
2235
  *
2235
- * Ensures the balance is high enough to redeem this many it
2236
+ * Ensures the balance is high enough to redeem this many items.
2236
2237
  * @min 1
2237
2238
  */
2238
2239
  count: number;
@@ -2243,7 +2244,7 @@ interface CheckEligibilityByFilterOptions {
2243
2244
  */
2244
2245
  targetDate?: Date | null;
2245
2246
  /** Pool beneficiary. */
2246
- beneficiary: CommonIdentificationData;
2247
+ beneficiary?: CommonIdentificationData;
2247
2248
  /** Additional information. */
2248
2249
  additionalData?: Record<string, any> | null;
2249
2250
  }