@wix/auto_sdk_automations_automations-v-2 1.0.23 → 1.0.25
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/build/cjs/index.d.ts +16 -16
- package/build/cjs/index.js +1 -0
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +20 -23
- package/build/cjs/index.typings.js +1 -0
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +4 -7
- package/build/es/index.d.mts +16 -16
- package/build/es/index.mjs +1 -0
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +20 -23
- package/build/es/index.typings.mjs +1 -0
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +4 -7
- package/build/internal/cjs/index.d.ts +16 -16
- package/build/internal/cjs/index.js +1 -0
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +20 -23
- package/build/internal/cjs/index.typings.js +1 -0
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +4 -7
- package/build/internal/es/index.d.mts +16 -16
- package/build/internal/es/index.mjs +1 -0
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +20 -23
- package/build/internal/es/index.typings.mjs +1 -0
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +4 -7
- package/package.json +2 -2
|
@@ -1014,11 +1014,6 @@ type TriggerValidationErrorValidationErrorTypeWithLiterals = TriggerValidationEr
|
|
|
1014
1014
|
interface TriggerConfigurationError {
|
|
1015
1015
|
/** Trigger error type. */
|
|
1016
1016
|
errorType?: TriggerErrorTypeWithLiterals;
|
|
1017
|
-
/**
|
|
1018
|
-
* Related filter field key.
|
|
1019
|
-
* @maxLength 110
|
|
1020
|
-
*/
|
|
1021
|
-
filterFieldKey?: string | null;
|
|
1022
1017
|
}
|
|
1023
1018
|
declare enum TriggerErrorType {
|
|
1024
1019
|
UNKNOWN_TRIGGER_ERROR_TYPE = "UNKNOWN_TRIGGER_ERROR_TYPE",
|
|
@@ -1035,10 +1030,12 @@ declare enum TriggerErrorType {
|
|
|
1035
1030
|
/** Invalid filter field key. */
|
|
1036
1031
|
INVALID_FILTER_FIELD_KEY = "INVALID_FILTER_FIELD_KEY",
|
|
1037
1032
|
/** Invalid filter expression. */
|
|
1038
|
-
INVALID_FILTER_EXPRESSION = "INVALID_FILTER_EXPRESSION"
|
|
1033
|
+
INVALID_FILTER_EXPRESSION = "INVALID_FILTER_EXPRESSION",
|
|
1034
|
+
/** Missing configuration for a required trigger filter */
|
|
1035
|
+
MISSING_REQUIRED_FILTER = "MISSING_REQUIRED_FILTER"
|
|
1039
1036
|
}
|
|
1040
1037
|
/** @enumType */
|
|
1041
|
-
type TriggerErrorTypeWithLiterals = TriggerErrorType | 'UNKNOWN_TRIGGER_ERROR_TYPE' | 'NOT_FOUND' | 'APP_NOT_INSTALLED' | 'MODERATION_MISMATCH' | 'DEPRECATED' | 'INVALID_TRIGGER_KEY' | 'INVALID_FILTER_FIELD_KEY' | 'INVALID_FILTER_EXPRESSION';
|
|
1038
|
+
type TriggerErrorTypeWithLiterals = TriggerErrorType | 'UNKNOWN_TRIGGER_ERROR_TYPE' | 'NOT_FOUND' | 'APP_NOT_INSTALLED' | 'MODERATION_MISMATCH' | 'DEPRECATED' | 'INVALID_TRIGGER_KEY' | 'INVALID_FILTER_FIELD_KEY' | 'INVALID_FILTER_EXPRESSION' | 'MISSING_REQUIRED_FILTER';
|
|
1042
1039
|
interface ProviderConfigurationError {
|
|
1043
1040
|
/** Key corresponding to the field in the schema. */
|
|
1044
1041
|
fieldKey?: string | null;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/auto_sdk_automations_automations-v-2",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.25",
|
|
4
4
|
"license": "MIT",
|
|
5
5
|
"publishConfig": {
|
|
6
6
|
"registry": "https://registry.npmjs.org/",
|
|
@@ -50,5 +50,5 @@
|
|
|
50
50
|
"fqdn": "wix.automations.v2.automation"
|
|
51
51
|
}
|
|
52
52
|
},
|
|
53
|
-
"falconPackageHash": "
|
|
53
|
+
"falconPackageHash": "595c31863383dc016705a7c88bc72d8229dec6fba2a83a8cbe28cf14"
|
|
54
54
|
}
|