@wix/auto_sdk_automations_automations-v-2 1.0.91 → 1.0.92
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.js.map +1 -1
- package/build/cjs/index.typings.d.ts +17 -17
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +17 -17
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +17 -17
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +17 -17
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +17 -17
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +17 -17
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +17 -17
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +17 -17
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -881,6 +881,23 @@ declare enum WebhookIdentityType {
|
|
|
881
881
|
}
|
|
882
882
|
/** @enumType */
|
|
883
883
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
884
|
+
interface AccountDetails {
|
|
885
|
+
/**
|
|
886
|
+
* ID of the account.
|
|
887
|
+
* @format GUID
|
|
888
|
+
*/
|
|
889
|
+
accountId?: string | null;
|
|
890
|
+
/**
|
|
891
|
+
* ID of the parent account.
|
|
892
|
+
* @format GUID
|
|
893
|
+
*/
|
|
894
|
+
parentAccountId?: string | null;
|
|
895
|
+
/**
|
|
896
|
+
* ID of the site, if applicable.
|
|
897
|
+
* @format GUID
|
|
898
|
+
*/
|
|
899
|
+
siteId?: string | null;
|
|
900
|
+
}
|
|
884
901
|
interface CreateAutomationRequest {
|
|
885
902
|
/** Automation to create. */
|
|
886
903
|
automation: Automation;
|
|
@@ -2415,23 +2432,6 @@ interface MergeOverridePreinstalledWithRuntimeVersionResponse {
|
|
|
2415
2432
|
/** The merged automation after applying the latest runtime version of the preinstalled automation. */
|
|
2416
2433
|
automation?: Automation;
|
|
2417
2434
|
}
|
|
2418
|
-
interface AccountDetails {
|
|
2419
|
-
/**
|
|
2420
|
-
* ID of the account.
|
|
2421
|
-
* @format GUID
|
|
2422
|
-
*/
|
|
2423
|
-
accountId?: string | null;
|
|
2424
|
-
/**
|
|
2425
|
-
* ID of the parent account.
|
|
2426
|
-
* @format GUID
|
|
2427
|
-
*/
|
|
2428
|
-
parentAccountId?: string | null;
|
|
2429
|
-
/**
|
|
2430
|
-
* ID of the site, if applicable.
|
|
2431
|
-
* @format GUID
|
|
2432
|
-
*/
|
|
2433
|
-
siteId?: string | null;
|
|
2434
|
-
}
|
|
2435
2435
|
interface GetAutomationRevisionRequest {
|
|
2436
2436
|
/**
|
|
2437
2437
|
* Automation ID.
|