@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.
@@ -16857,15 +16857,11 @@ interface FilteringCapability {
16857
16857
  attributeName?: string;
16858
16858
  /**
16859
16859
  * Human-readable display name for the attribute shown in UI.
16860
- * should be translated to the user's language, as described by the language header
16861
- * todo https://github.com/wix-private/server-infra/blob/7e756ad50d208ac37dd3678cbd4425c17bdd6da7/framework/loom-prime/examples/prime-spi/readme.md#language-aspect
16862
16860
  * @maxLength 50
16863
16861
  */
16864
16862
  displayName?: string;
16865
16863
  /**
16866
- * Optional description explaining what this attribute represents.
16867
- * should be translated to the user's language, as described by the language header
16868
- * todo https://github.com/wix-private/server-infra/blob/7e756ad50d208ac37dd3678cbd4425c17bdd6da7/framework/loom-prime/examples/prime-spi/readme.md#language-aspect
16864
+ * Description explaining what this attribute represents.
16869
16865
  * @maxLength 200
16870
16866
  */
16871
16867
  description?: string;
@@ -16962,8 +16958,6 @@ interface Parameter extends ParameterValueDefinitionDetailsOneOf {
16962
16958
  name?: string;
16963
16959
  /**
16964
16960
  * Human-readable display name for the parameter shown in UI.
16965
- * should be translated to the user's language, as described by the language header
16966
- * todo https://github.com/wix-private/server-infra/blob/7e756ad50d208ac37dd3678cbd4425c17bdd6da7/framework/loom-prime/examples/prime-spi/readme.md#language-aspect
16967
16961
  * @maxLength 30
16968
16962
  */
16969
16963
  displayName?: string;
@@ -17142,10 +17136,14 @@ declare enum TimeConstraintType {
17142
17136
  /** Today */
17143
17137
  TODAY = "TODAY",
17144
17138
  /** This month */
17145
- THIS_MONTH = "THIS_MONTH"
17139
+ THIS_MONTH = "THIS_MONTH",
17140
+ /** After a specific date: fromDate must be set */
17141
+ AFTER = "AFTER",
17142
+ /** Before a specific date: toDate must be set */
17143
+ BEFORE = "BEFORE"
17146
17144
  }
17147
17145
  /** @enumType */
17148
- type TimeConstraintTypeWithLiterals = TimeConstraintType | 'UNKNOWN_TIME_CONSTRAINT_TYPE' | 'LAST_DAYS' | 'LAST_HOURS' | 'NEXT_DAYS' | 'NEXT_HOURS' | 'BETWEEN' | 'TODAY' | 'THIS_MONTH';
17146
+ type TimeConstraintTypeWithLiterals = TimeConstraintType | 'UNKNOWN_TIME_CONSTRAINT_TYPE' | 'LAST_DAYS' | 'LAST_HOURS' | 'NEXT_DAYS' | 'NEXT_HOURS' | 'BETWEEN' | 'TODAY' | 'THIS_MONTH' | 'AFTER' | 'BEFORE';
17149
17147
  /** Enum for the different types of value constraints */
17150
17148
  declare enum ValueConstraintType {
17151
17149
  UNKNOWN_VALUE_CONSTRAINT_TYPE = "UNKNOWN_VALUE_CONSTRAINT_TYPE",
@@ -2867,6 +2867,8 @@ var TimeConstraintType = /* @__PURE__ */ ((TimeConstraintType2) => {
2867
2867
  TimeConstraintType2["BETWEEN"] = "BETWEEN";
2868
2868
  TimeConstraintType2["TODAY"] = "TODAY";
2869
2869
  TimeConstraintType2["THIS_MONTH"] = "THIS_MONTH";
2870
+ TimeConstraintType2["AFTER"] = "AFTER";
2871
+ TimeConstraintType2["BEFORE"] = "BEFORE";
2870
2872
  return TimeConstraintType2;
2871
2873
  })(TimeConstraintType || {});
2872
2874
  var ValueConstraintType = /* @__PURE__ */ ((ValueConstraintType2) => {