@wix/auto_sdk_comments_comments 1.0.41 → 1.0.42
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
|
@@ -2517,6 +2517,23 @@ declare enum WebhookIdentityType {
|
|
|
2517
2517
|
}
|
|
2518
2518
|
/** @enumType */
|
|
2519
2519
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
2520
|
+
interface AccountDetails {
|
|
2521
|
+
/**
|
|
2522
|
+
* ID of the account.
|
|
2523
|
+
* @format GUID
|
|
2524
|
+
*/
|
|
2525
|
+
accountId?: string | null;
|
|
2526
|
+
/**
|
|
2527
|
+
* ID of the parent account.
|
|
2528
|
+
* @format GUID
|
|
2529
|
+
*/
|
|
2530
|
+
parentAccountId?: string | null;
|
|
2531
|
+
/**
|
|
2532
|
+
* ID of the site, if applicable.
|
|
2533
|
+
* @format GUID
|
|
2534
|
+
*/
|
|
2535
|
+
siteId?: string | null;
|
|
2536
|
+
}
|
|
2520
2537
|
interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
|
|
2521
2538
|
/** insert/update documents */
|
|
2522
2539
|
update?: InternalDocumentUpdateOperation;
|
|
@@ -3163,23 +3180,6 @@ interface CommentMoved {
|
|
|
3163
3180
|
comment?: Comment;
|
|
3164
3181
|
destination?: Destination;
|
|
3165
3182
|
}
|
|
3166
|
-
interface AccountDetails {
|
|
3167
|
-
/**
|
|
3168
|
-
* ID of the account.
|
|
3169
|
-
* @format GUID
|
|
3170
|
-
*/
|
|
3171
|
-
accountId?: string | null;
|
|
3172
|
-
/**
|
|
3173
|
-
* ID of the parent account.
|
|
3174
|
-
* @format GUID
|
|
3175
|
-
*/
|
|
3176
|
-
parentAccountId?: string | null;
|
|
3177
|
-
/**
|
|
3178
|
-
* ID of the site, if applicable.
|
|
3179
|
-
* @format GUID
|
|
3180
|
-
*/
|
|
3181
|
-
siteId?: string | null;
|
|
3182
|
-
}
|
|
3183
3183
|
/** @docsIgnore */
|
|
3184
3184
|
type CreateCommentApplicationErrors = {
|
|
3185
3185
|
code?: 'INVALID_CAPTCHA';
|