@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
package/build/es/meta.d.mts
CHANGED
|
@@ -2663,6 +2663,23 @@ declare enum WebhookIdentityType {
|
|
|
2663
2663
|
}
|
|
2664
2664
|
/** @enumType */
|
|
2665
2665
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
2666
|
+
interface AccountDetails {
|
|
2667
|
+
/**
|
|
2668
|
+
* ID of the account.
|
|
2669
|
+
* @format GUID
|
|
2670
|
+
*/
|
|
2671
|
+
accountId?: string | null;
|
|
2672
|
+
/**
|
|
2673
|
+
* ID of the parent account.
|
|
2674
|
+
* @format GUID
|
|
2675
|
+
*/
|
|
2676
|
+
parentAccountId?: string | null;
|
|
2677
|
+
/**
|
|
2678
|
+
* ID of the site, if applicable.
|
|
2679
|
+
* @format GUID
|
|
2680
|
+
*/
|
|
2681
|
+
siteId?: string | null;
|
|
2682
|
+
}
|
|
2666
2683
|
interface UpdateInternalDocumentsEvent extends UpdateInternalDocumentsEventOperationOneOf {
|
|
2667
2684
|
/** insert/update documents */
|
|
2668
2685
|
update?: InternalDocumentUpdateOperation;
|
|
@@ -3309,23 +3326,6 @@ interface CommentMoved {
|
|
|
3309
3326
|
comment?: Comment;
|
|
3310
3327
|
destination?: Destination;
|
|
3311
3328
|
}
|
|
3312
|
-
interface AccountDetails {
|
|
3313
|
-
/**
|
|
3314
|
-
* ID of the account.
|
|
3315
|
-
* @format GUID
|
|
3316
|
-
*/
|
|
3317
|
-
accountId?: string | null;
|
|
3318
|
-
/**
|
|
3319
|
-
* ID of the parent account.
|
|
3320
|
-
* @format GUID
|
|
3321
|
-
*/
|
|
3322
|
-
parentAccountId?: string | null;
|
|
3323
|
-
/**
|
|
3324
|
-
* ID of the site, if applicable.
|
|
3325
|
-
* @format GUID
|
|
3326
|
-
*/
|
|
3327
|
-
siteId?: string | null;
|
|
3328
|
-
}
|
|
3329
3329
|
/** @docsIgnore */
|
|
3330
3330
|
type CreateCommentApplicationErrors = {
|
|
3331
3331
|
code?: 'INVALID_CAPTCHA';
|