@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
package/build/cjs/meta.d.ts
CHANGED
|
@@ -884,6 +884,23 @@ declare enum WebhookIdentityType {
|
|
|
884
884
|
}
|
|
885
885
|
/** @enumType */
|
|
886
886
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
887
|
+
interface AccountDetails {
|
|
888
|
+
/**
|
|
889
|
+
* ID of the account.
|
|
890
|
+
* @format GUID
|
|
891
|
+
*/
|
|
892
|
+
accountId?: string | null;
|
|
893
|
+
/**
|
|
894
|
+
* ID of the parent account.
|
|
895
|
+
* @format GUID
|
|
896
|
+
*/
|
|
897
|
+
parentAccountId?: string | null;
|
|
898
|
+
/**
|
|
899
|
+
* ID of the site, if applicable.
|
|
900
|
+
* @format GUID
|
|
901
|
+
*/
|
|
902
|
+
siteId?: string | null;
|
|
903
|
+
}
|
|
887
904
|
interface CreateAutomationRequest {
|
|
888
905
|
/** Automation to create. */
|
|
889
906
|
automation: Automation;
|
|
@@ -2418,23 +2435,6 @@ interface MergeOverridePreinstalledWithRuntimeVersionResponse {
|
|
|
2418
2435
|
/** The merged automation after applying the latest runtime version of the preinstalled automation. */
|
|
2419
2436
|
automation?: Automation;
|
|
2420
2437
|
}
|
|
2421
|
-
interface AccountDetails {
|
|
2422
|
-
/**
|
|
2423
|
-
* ID of the account.
|
|
2424
|
-
* @format GUID
|
|
2425
|
-
*/
|
|
2426
|
-
accountId?: string | null;
|
|
2427
|
-
/**
|
|
2428
|
-
* ID of the parent account.
|
|
2429
|
-
* @format GUID
|
|
2430
|
-
*/
|
|
2431
|
-
parentAccountId?: string | null;
|
|
2432
|
-
/**
|
|
2433
|
-
* ID of the site, if applicable.
|
|
2434
|
-
* @format GUID
|
|
2435
|
-
*/
|
|
2436
|
-
siteId?: string | null;
|
|
2437
|
-
}
|
|
2438
2438
|
interface GetAutomationRevisionRequest {
|
|
2439
2439
|
/**
|
|
2440
2440
|
* Automation ID.
|