@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.
@@ -16883,15 +16883,11 @@ interface FilteringCapability {
16883
16883
  attributeName?: string;
16884
16884
  /**
16885
16885
  * Human-readable display name for the attribute shown in UI.
16886
- * should be translated to the user's language, as described by the language header
16887
- * todo https://github.com/wix-private/server-infra/blob/7e756ad50d208ac37dd3678cbd4425c17bdd6da7/framework/loom-prime/examples/prime-spi/readme.md#language-aspect
16888
16886
  * @maxLength 50
16889
16887
  */
16890
16888
  displayName?: string;
16891
16889
  /**
16892
- * Optional description explaining what this attribute represents.
16893
- * should be translated to the user's language, as described by the language header
16894
- * todo https://github.com/wix-private/server-infra/blob/7e756ad50d208ac37dd3678cbd4425c17bdd6da7/framework/loom-prime/examples/prime-spi/readme.md#language-aspect
16890
+ * Description explaining what this attribute represents.
16895
16891
  * @maxLength 200
16896
16892
  */
16897
16893
  description?: string;
@@ -16988,8 +16984,6 @@ interface Parameter extends ParameterValueDefinitionDetailsOneOf {
16988
16984
  name?: string;
16989
16985
  /**
16990
16986
  * Human-readable display name for the parameter shown in UI.
16991
- * should be translated to the user's language, as described by the language header
16992
- * todo https://github.com/wix-private/server-infra/blob/7e756ad50d208ac37dd3678cbd4425c17bdd6da7/framework/loom-prime/examples/prime-spi/readme.md#language-aspect
16993
16987
  * @maxLength 30
16994
16988
  */
16995
16989
  displayName?: string;
@@ -17168,10 +17162,14 @@ declare enum TimeConstraintType {
17168
17162
  /** Today */
17169
17163
  TODAY = "TODAY",
17170
17164
  /** This month */
17171
- THIS_MONTH = "THIS_MONTH"
17165
+ THIS_MONTH = "THIS_MONTH",
17166
+ /** After a specific date: fromDate must be set */
17167
+ AFTER = "AFTER",
17168
+ /** Before a specific date: toDate must be set */
17169
+ BEFORE = "BEFORE"
17172
17170
  }
17173
17171
  /** @enumType */
17174
- type TimeConstraintTypeWithLiterals = TimeConstraintType | 'UNKNOWN_TIME_CONSTRAINT_TYPE' | 'LAST_DAYS' | 'LAST_HOURS' | 'NEXT_DAYS' | 'NEXT_HOURS' | 'BETWEEN' | 'TODAY' | 'THIS_MONTH';
17172
+ type TimeConstraintTypeWithLiterals = TimeConstraintType | 'UNKNOWN_TIME_CONSTRAINT_TYPE' | 'LAST_DAYS' | 'LAST_HOURS' | 'NEXT_DAYS' | 'NEXT_HOURS' | 'BETWEEN' | 'TODAY' | 'THIS_MONTH' | 'AFTER' | 'BEFORE';
17175
17173
  /** Enum for the different types of value constraints */
17176
17174
  declare enum ValueConstraintType {
17177
17175
  UNKNOWN_VALUE_CONSTRAINT_TYPE = "UNKNOWN_VALUE_CONSTRAINT_TYPE",
package/build/cjs/meta.js CHANGED
@@ -2863,6 +2863,8 @@ var TimeConstraintType = /* @__PURE__ */ ((TimeConstraintType2) => {
2863
2863
  TimeConstraintType2["BETWEEN"] = "BETWEEN";
2864
2864
  TimeConstraintType2["TODAY"] = "TODAY";
2865
2865
  TimeConstraintType2["THIS_MONTH"] = "THIS_MONTH";
2866
+ TimeConstraintType2["AFTER"] = "AFTER";
2867
+ TimeConstraintType2["BEFORE"] = "BEFORE";
2866
2868
  return TimeConstraintType2;
2867
2869
  })(TimeConstraintType || {});
2868
2870
  var ValueConstraintType = /* @__PURE__ */ ((ValueConstraintType2) => {