@wix/auto_sdk_data-extension-schema_schemas 1.0.97 → 1.0.98

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.
@@ -16874,15 +16874,11 @@ interface FilteringCapability {
16874
16874
  attributeName?: string;
16875
16875
  /**
16876
16876
  * Human-readable display name for the attribute shown in UI.
16877
- * should be translated to the user's language, as described by the language header
16878
- * todo https://github.com/wix-private/server-infra/blob/7e756ad50d208ac37dd3678cbd4425c17bdd6da7/framework/loom-prime/examples/prime-spi/readme.md#language-aspect
16879
16877
  * @maxLength 50
16880
16878
  */
16881
16879
  displayName?: string;
16882
16880
  /**
16883
- * Optional description explaining what this attribute represents.
16884
- * should be translated to the user's language, as described by the language header
16885
- * todo https://github.com/wix-private/server-infra/blob/7e756ad50d208ac37dd3678cbd4425c17bdd6da7/framework/loom-prime/examples/prime-spi/readme.md#language-aspect
16881
+ * Description explaining what this attribute represents.
16886
16882
  * @maxLength 200
16887
16883
  */
16888
16884
  description?: string;
@@ -16979,8 +16975,6 @@ interface Parameter extends ParameterValueDefinitionDetailsOneOf {
16979
16975
  name?: string;
16980
16976
  /**
16981
16977
  * Human-readable display name for the parameter shown in UI.
16982
- * should be translated to the user's language, as described by the language header
16983
- * todo https://github.com/wix-private/server-infra/blob/7e756ad50d208ac37dd3678cbd4425c17bdd6da7/framework/loom-prime/examples/prime-spi/readme.md#language-aspect
16984
16978
  * @maxLength 30
16985
16979
  */
16986
16980
  displayName?: string;
@@ -17159,10 +17153,14 @@ declare enum TimeConstraintType {
17159
17153
  /** Today */
17160
17154
  TODAY = "TODAY",
17161
17155
  /** This month */
17162
- THIS_MONTH = "THIS_MONTH"
17156
+ THIS_MONTH = "THIS_MONTH",
17157
+ /** After a specific date: fromDate must be set */
17158
+ AFTER = "AFTER",
17159
+ /** Before a specific date: toDate must be set */
17160
+ BEFORE = "BEFORE"
17163
17161
  }
17164
17162
  /** @enumType */
17165
- type TimeConstraintTypeWithLiterals = TimeConstraintType | 'UNKNOWN_TIME_CONSTRAINT_TYPE' | 'LAST_DAYS' | 'LAST_HOURS' | 'NEXT_DAYS' | 'NEXT_HOURS' | 'BETWEEN' | 'TODAY' | 'THIS_MONTH';
17163
+ type TimeConstraintTypeWithLiterals = TimeConstraintType | 'UNKNOWN_TIME_CONSTRAINT_TYPE' | 'LAST_DAYS' | 'LAST_HOURS' | 'NEXT_DAYS' | 'NEXT_HOURS' | 'BETWEEN' | 'TODAY' | 'THIS_MONTH' | 'AFTER' | 'BEFORE';
17166
17164
  /** Enum for the different types of value constraints */
17167
17165
  declare enum ValueConstraintType {
17168
17166
  UNKNOWN_VALUE_CONSTRAINT_TYPE = "UNKNOWN_VALUE_CONSTRAINT_TYPE",
@@ -2603,6 +2603,8 @@ var TimeConstraintType = /* @__PURE__ */ ((TimeConstraintType2) => {
2603
2603
  TimeConstraintType2["BETWEEN"] = "BETWEEN";
2604
2604
  TimeConstraintType2["TODAY"] = "TODAY";
2605
2605
  TimeConstraintType2["THIS_MONTH"] = "THIS_MONTH";
2606
+ TimeConstraintType2["AFTER"] = "AFTER";
2607
+ TimeConstraintType2["BEFORE"] = "BEFORE";
2606
2608
  return TimeConstraintType2;
2607
2609
  })(TimeConstraintType || {});
2608
2610
  var ValueConstraintType = /* @__PURE__ */ ((ValueConstraintType2) => {