@wix/automations 1.0.29 → 1.0.31

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/automations",
3
- "version": "1.0.29",
3
+ "version": "1.0.31",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -18,9 +18,9 @@
18
18
  "type-bundles"
19
19
  ],
20
20
  "dependencies": {
21
- "@wix/automations_activations": "1.0.20",
21
+ "@wix/automations_activations": "1.0.21",
22
22
  "@wix/automations_automations-service": "1.0.13",
23
- "@wix/automations_automations-service-v-2": "1.0.15"
23
+ "@wix/automations_automations-service-v-2": "1.0.16"
24
24
  },
25
25
  "devDependencies": {
26
26
  "glob": "^10.4.1",
@@ -45,5 +45,5 @@
45
45
  "fqdn": ""
46
46
  }
47
47
  },
48
- "falconPackageHash": "bcdc65bb66f571a9b77abde39b778b4f2fc1cf2f6c8af91fa4bc5109"
48
+ "falconPackageHash": "a14d10b1bf30547ad4ad5f6a4076ab66bdc070a679d6f54c1ee64c0c"
49
49
  }
@@ -2264,54 +2264,6 @@ interface ActivationStatusChangedFailedStatusInfo {
2264
2264
  */
2265
2265
  errorCode?: string | null;
2266
2266
  }
2267
- interface UpdatedWithPreviousEntity$1 {
2268
- /** previous automation */
2269
- previousAutomation?: Automation$1;
2270
- /** updated automation */
2271
- currentAutomation?: Automation$1;
2272
- }
2273
- interface DeletedWithEntity$1 {
2274
- /** Deleted automation */
2275
- automation?: Automation$1;
2276
- }
2277
- interface UnprocessedTargetEvent {
2278
- /** The target that was not marked as processed */
2279
- target?: InternalTarget;
2280
- }
2281
- interface InternalTarget {
2282
- /** Unique identifier of the target with pattern `id_tag_value[type]`, for example 'com.wixpress.myproto[wix_proto_bundle_export]`` */
2283
- _id?: string | null;
2284
- /** The unique location of the target in Bazel notation i.e @repo//path/to/target:target_name */
2285
- location?: string | null;
2286
- /** The combined digest of all files within the target */
2287
- combinedDigest?: string | null;
2288
- /** The vcs commit timestamp of the target in milliseconds */
2289
- commitTimestamp?: string | null;
2290
- /** The type of the target */
2291
- type?: TargetType;
2292
- /**
2293
- * The target's id tag value in Bazel, uniquness is not guaranteed
2294
- * i.e for a tag "businessSchemaIndexerId=com.wixpress.myproto" the value is "com.wixpress.myproto"
2295
- */
2296
- idTagValue?: string | null;
2297
- files?: File[];
2298
- }
2299
- declare enum TargetType {
2300
- NONE = "NONE",
2301
- WIX_PROTO_BUNDLE_EXPORT = "WIX_PROTO_BUNDLE_EXPORT",
2302
- WIX_APPENDIX_BUNDLE_EXPORT = "WIX_APPENDIX_BUNDLE_EXPORT",
2303
- WIX_API_REGISTRY_INFO_EXPORT = "WIX_API_REGISTRY_INFO_EXPORT"
2304
- }
2305
- interface File {
2306
- /** The name of the file including path relative to its source repo, i.e src/main/java/com/wixpress/MyClass.java */
2307
- name?: string | null;
2308
- /** The URI of the file */
2309
- uri?: string | null;
2310
- /** The digest of the file */
2311
- digest?: string | null;
2312
- /** The size of the file in bytes */
2313
- sizeInBytes?: string | null;
2314
- }
2315
2267
  interface ScheduleRequest {
2316
2268
  schedule?: Schedule;
2317
2269
  }
@@ -2962,6 +2914,54 @@ interface ActivationContinuedAfterSchedule {
2962
2914
  /** Activation Automation */
2963
2915
  automation?: Automation$1;
2964
2916
  }
2917
+ interface UpdatedWithPreviousEntity$1 {
2918
+ /** previous automation */
2919
+ previousAutomation?: Automation$1;
2920
+ /** updated automation */
2921
+ currentAutomation?: Automation$1;
2922
+ }
2923
+ interface DeletedWithEntity$1 {
2924
+ /** Deleted automation */
2925
+ automation?: Automation$1;
2926
+ }
2927
+ interface UnprocessedTargetEvent {
2928
+ /** The target that was not marked as processed */
2929
+ target?: InternalTarget;
2930
+ }
2931
+ interface InternalTarget {
2932
+ /** Unique identifier of the target with pattern `id_tag_value[type]`, for example 'com.wixpress.myproto[wix_proto_bundle_export]`` */
2933
+ _id?: string | null;
2934
+ /** The unique location of the target in Bazel notation i.e @repo//path/to/target:target_name */
2935
+ location?: string | null;
2936
+ /** The combined digest of all files within the target */
2937
+ combinedDigest?: string | null;
2938
+ /** The vcs commit timestamp of the target in milliseconds */
2939
+ commitTimestamp?: string | null;
2940
+ /** The type of the target */
2941
+ type?: TargetType;
2942
+ /**
2943
+ * The target's id tag value in Bazel, uniquness is not guaranteed
2944
+ * i.e for a tag "businessSchemaIndexerId=com.wixpress.myproto" the value is "com.wixpress.myproto"
2945
+ */
2946
+ idTagValue?: string | null;
2947
+ files?: File[];
2948
+ }
2949
+ declare enum TargetType {
2950
+ NONE = "NONE",
2951
+ WIX_PROTO_BUNDLE_EXPORT = "WIX_PROTO_BUNDLE_EXPORT",
2952
+ WIX_APPENDIX_BUNDLE_EXPORT = "WIX_APPENDIX_BUNDLE_EXPORT",
2953
+ WIX_API_REGISTRY_INFO_EXPORT = "WIX_API_REGISTRY_INFO_EXPORT"
2954
+ }
2955
+ interface File {
2956
+ /** The name of the file including path relative to its source repo, i.e src/main/java/com/wixpress/MyClass.java */
2957
+ name?: string | null;
2958
+ /** The URI of the file */
2959
+ uri?: string | null;
2960
+ /** The digest of the file */
2961
+ digest?: string | null;
2962
+ /** The size of the file in bytes */
2963
+ sizeInBytes?: string | null;
2964
+ }
2965
2965
  interface ReportEventRequest {
2966
2966
  /**
2967
2967
  * Trigger key as defined in your app's trigger configuration
@@ -4116,7 +4116,7 @@ interface PreinstalledAutomationSpecInfo {
4116
4116
  * Version from which the experiment should decide whether to expose it to users when !conduct(spec).contains(variant_value)
4117
4117
  * For example, if 50 is set, version 49 and below (including 49) will not expose the preinstalled automation to the user.
4118
4118
  */
4119
- experimentVersion?: number | null;
4119
+ experimentVersion?: number;
4120
4120
  }
4121
4121
  interface CreatePreinstalledAutomationResponse {
4122
4122
  /** The created preinstalled automation. */
@@ -2264,54 +2264,6 @@ interface ActivationStatusChangedFailedStatusInfo {
2264
2264
  */
2265
2265
  errorCode?: string | null;
2266
2266
  }
2267
- interface UpdatedWithPreviousEntity$1 {
2268
- /** previous automation */
2269
- previousAutomation?: Automation$1;
2270
- /** updated automation */
2271
- currentAutomation?: Automation$1;
2272
- }
2273
- interface DeletedWithEntity$1 {
2274
- /** Deleted automation */
2275
- automation?: Automation$1;
2276
- }
2277
- interface UnprocessedTargetEvent {
2278
- /** The target that was not marked as processed */
2279
- target?: InternalTarget;
2280
- }
2281
- interface InternalTarget {
2282
- /** Unique identifier of the target with pattern `id_tag_value[type]`, for example 'com.wixpress.myproto[wix_proto_bundle_export]`` */
2283
- _id?: string | null;
2284
- /** The unique location of the target in Bazel notation i.e @repo//path/to/target:target_name */
2285
- location?: string | null;
2286
- /** The combined digest of all files within the target */
2287
- combinedDigest?: string | null;
2288
- /** The vcs commit timestamp of the target in milliseconds */
2289
- commitTimestamp?: string | null;
2290
- /** The type of the target */
2291
- type?: TargetType;
2292
- /**
2293
- * The target's id tag value in Bazel, uniquness is not guaranteed
2294
- * i.e for a tag "businessSchemaIndexerId=com.wixpress.myproto" the value is "com.wixpress.myproto"
2295
- */
2296
- idTagValue?: string | null;
2297
- files?: File[];
2298
- }
2299
- declare enum TargetType {
2300
- NONE = "NONE",
2301
- WIX_PROTO_BUNDLE_EXPORT = "WIX_PROTO_BUNDLE_EXPORT",
2302
- WIX_APPENDIX_BUNDLE_EXPORT = "WIX_APPENDIX_BUNDLE_EXPORT",
2303
- WIX_API_REGISTRY_INFO_EXPORT = "WIX_API_REGISTRY_INFO_EXPORT"
2304
- }
2305
- interface File {
2306
- /** The name of the file including path relative to its source repo, i.e src/main/java/com/wixpress/MyClass.java */
2307
- name?: string | null;
2308
- /** The URI of the file */
2309
- uri?: string | null;
2310
- /** The digest of the file */
2311
- digest?: string | null;
2312
- /** The size of the file in bytes */
2313
- sizeInBytes?: string | null;
2314
- }
2315
2267
  interface ScheduleRequest {
2316
2268
  schedule?: Schedule;
2317
2269
  }
@@ -2962,6 +2914,54 @@ interface ActivationContinuedAfterSchedule {
2962
2914
  /** Activation Automation */
2963
2915
  automation?: Automation$1;
2964
2916
  }
2917
+ interface UpdatedWithPreviousEntity$1 {
2918
+ /** previous automation */
2919
+ previousAutomation?: Automation$1;
2920
+ /** updated automation */
2921
+ currentAutomation?: Automation$1;
2922
+ }
2923
+ interface DeletedWithEntity$1 {
2924
+ /** Deleted automation */
2925
+ automation?: Automation$1;
2926
+ }
2927
+ interface UnprocessedTargetEvent {
2928
+ /** The target that was not marked as processed */
2929
+ target?: InternalTarget;
2930
+ }
2931
+ interface InternalTarget {
2932
+ /** Unique identifier of the target with pattern `id_tag_value[type]`, for example 'com.wixpress.myproto[wix_proto_bundle_export]`` */
2933
+ _id?: string | null;
2934
+ /** The unique location of the target in Bazel notation i.e @repo//path/to/target:target_name */
2935
+ location?: string | null;
2936
+ /** The combined digest of all files within the target */
2937
+ combinedDigest?: string | null;
2938
+ /** The vcs commit timestamp of the target in milliseconds */
2939
+ commitTimestamp?: string | null;
2940
+ /** The type of the target */
2941
+ type?: TargetType;
2942
+ /**
2943
+ * The target's id tag value in Bazel, uniquness is not guaranteed
2944
+ * i.e for a tag "businessSchemaIndexerId=com.wixpress.myproto" the value is "com.wixpress.myproto"
2945
+ */
2946
+ idTagValue?: string | null;
2947
+ files?: File[];
2948
+ }
2949
+ declare enum TargetType {
2950
+ NONE = "NONE",
2951
+ WIX_PROTO_BUNDLE_EXPORT = "WIX_PROTO_BUNDLE_EXPORT",
2952
+ WIX_APPENDIX_BUNDLE_EXPORT = "WIX_APPENDIX_BUNDLE_EXPORT",
2953
+ WIX_API_REGISTRY_INFO_EXPORT = "WIX_API_REGISTRY_INFO_EXPORT"
2954
+ }
2955
+ interface File {
2956
+ /** The name of the file including path relative to its source repo, i.e src/main/java/com/wixpress/MyClass.java */
2957
+ name?: string | null;
2958
+ /** The URI of the file */
2959
+ uri?: string | null;
2960
+ /** The digest of the file */
2961
+ digest?: string | null;
2962
+ /** The size of the file in bytes */
2963
+ sizeInBytes?: string | null;
2964
+ }
2965
2965
  interface ReportEventRequest {
2966
2966
  /**
2967
2967
  * Trigger key as defined in your app's trigger configuration
@@ -4116,7 +4116,7 @@ interface PreinstalledAutomationSpecInfo {
4116
4116
  * Version from which the experiment should decide whether to expose it to users when !conduct(spec).contains(variant_value)
4117
4117
  * For example, if 50 is set, version 49 and below (including 49) will not expose the preinstalled automation to the user.
4118
4118
  */
4119
- experimentVersion?: number | null;
4119
+ experimentVersion?: number;
4120
4120
  }
4121
4121
  interface CreatePreinstalledAutomationResponse {
4122
4122
  /** The created preinstalled automation. */