@wix/auto_sdk_calendar_events 1.0.53 → 1.0.54
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
|
@@ -834,6 +834,23 @@ declare enum WebhookIdentityType {
|
|
|
834
834
|
}
|
|
835
835
|
/** @enumType */
|
|
836
836
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
837
|
+
interface AccountDetails {
|
|
838
|
+
/**
|
|
839
|
+
* ID of the account.
|
|
840
|
+
* @format GUID
|
|
841
|
+
*/
|
|
842
|
+
accountId?: string | null;
|
|
843
|
+
/**
|
|
844
|
+
* ID of the parent account.
|
|
845
|
+
* @format GUID
|
|
846
|
+
*/
|
|
847
|
+
parentAccountId?: string | null;
|
|
848
|
+
/**
|
|
849
|
+
* ID of the site, if applicable.
|
|
850
|
+
* @format GUID
|
|
851
|
+
*/
|
|
852
|
+
siteId?: string | null;
|
|
853
|
+
}
|
|
837
854
|
interface ListEventsByContactIdRequest {
|
|
838
855
|
/**
|
|
839
856
|
* ID of the [contact](https://dev.wix.com/docs/rest/crm/members-contacts/contacts/contacts/contact-v4/contact-object)
|
|
@@ -1844,23 +1861,6 @@ interface BulkCancelEventResponse {
|
|
|
1844
1861
|
/** Total successes and failures. */
|
|
1845
1862
|
bulkActionMetadata?: BulkActionMetadata;
|
|
1846
1863
|
}
|
|
1847
|
-
interface AccountDetails {
|
|
1848
|
-
/**
|
|
1849
|
-
* ID of the account.
|
|
1850
|
-
* @format GUID
|
|
1851
|
-
*/
|
|
1852
|
-
accountId?: string | null;
|
|
1853
|
-
/**
|
|
1854
|
-
* ID of the parent account.
|
|
1855
|
-
* @format GUID
|
|
1856
|
-
*/
|
|
1857
|
-
parentAccountId?: string | null;
|
|
1858
|
-
/**
|
|
1859
|
-
* ID of the site, if applicable.
|
|
1860
|
-
* @format GUID
|
|
1861
|
-
*/
|
|
1862
|
-
siteId?: string | null;
|
|
1863
|
-
}
|
|
1864
1864
|
/** @docsIgnore */
|
|
1865
1865
|
type CancelEventApplicationErrors = {
|
|
1866
1866
|
code?: 'EVENT_ALREADY_CANCELLED';
|