@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
package/build/es/meta.d.mts
CHANGED
|
@@ -841,6 +841,23 @@ declare enum WebhookIdentityType {
|
|
|
841
841
|
}
|
|
842
842
|
/** @enumType */
|
|
843
843
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
844
|
+
interface AccountDetails {
|
|
845
|
+
/**
|
|
846
|
+
* ID of the account.
|
|
847
|
+
* @format GUID
|
|
848
|
+
*/
|
|
849
|
+
accountId?: string | null;
|
|
850
|
+
/**
|
|
851
|
+
* ID of the parent account.
|
|
852
|
+
* @format GUID
|
|
853
|
+
*/
|
|
854
|
+
parentAccountId?: string | null;
|
|
855
|
+
/**
|
|
856
|
+
* ID of the site, if applicable.
|
|
857
|
+
* @format GUID
|
|
858
|
+
*/
|
|
859
|
+
siteId?: string | null;
|
|
860
|
+
}
|
|
844
861
|
interface ListEventsByContactIdRequest {
|
|
845
862
|
/**
|
|
846
863
|
* ID of the [contact](https://dev.wix.com/docs/rest/crm/members-contacts/contacts/contacts/contact-v4/contact-object)
|
|
@@ -1851,23 +1868,6 @@ interface BulkCancelEventResponse {
|
|
|
1851
1868
|
/** Total successes and failures. */
|
|
1852
1869
|
bulkActionMetadata?: BulkActionMetadata;
|
|
1853
1870
|
}
|
|
1854
|
-
interface AccountDetails {
|
|
1855
|
-
/**
|
|
1856
|
-
* ID of the account.
|
|
1857
|
-
* @format GUID
|
|
1858
|
-
*/
|
|
1859
|
-
accountId?: string | null;
|
|
1860
|
-
/**
|
|
1861
|
-
* ID of the parent account.
|
|
1862
|
-
* @format GUID
|
|
1863
|
-
*/
|
|
1864
|
-
parentAccountId?: string | null;
|
|
1865
|
-
/**
|
|
1866
|
-
* ID of the site, if applicable.
|
|
1867
|
-
* @format GUID
|
|
1868
|
-
*/
|
|
1869
|
-
siteId?: string | null;
|
|
1870
|
-
}
|
|
1871
1871
|
/** @docsIgnore */
|
|
1872
1872
|
type CancelEventApplicationErrors = {
|
|
1873
1873
|
code?: 'EVENT_ALREADY_CANCELLED';
|