@wix/auto_sdk_media_files 1.0.64 → 1.0.66
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.d.ts +1 -1
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +18 -5
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +7 -5
- package/build/cjs/meta.js.map +1 -1
- package/build/es/index.d.mts +1 -1
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +18 -5
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +7 -5
- package/build/es/meta.mjs.map +1 -1
- package/build/internal/cjs/index.d.ts +1 -1
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +18 -5
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +7 -5
- package/build/internal/cjs/meta.js.map +1 -1
- package/build/internal/es/index.d.mts +1 -1
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +18 -5
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +7 -5
- package/build/internal/es/meta.mjs.map +1 -1
- package/package.json +2 -2
|
@@ -1532,6 +1532,8 @@ interface MessageEnvelope {
|
|
|
1532
1532
|
identity?: IdentificationData;
|
|
1533
1533
|
/** Stringify payload. */
|
|
1534
1534
|
data?: string;
|
|
1535
|
+
/** Details related to the account */
|
|
1536
|
+
accountInfo?: AccountInfo;
|
|
1535
1537
|
}
|
|
1536
1538
|
interface IdentificationData extends IdentificationDataIdOneOf {
|
|
1537
1539
|
/**
|
|
@@ -1589,19 +1591,19 @@ declare enum WebhookIdentityType {
|
|
|
1589
1591
|
}
|
|
1590
1592
|
/** @enumType */
|
|
1591
1593
|
type WebhookIdentityTypeWithLiterals = WebhookIdentityType | 'UNKNOWN' | 'ANONYMOUS_VISITOR' | 'MEMBER' | 'WIX_USER' | 'APP';
|
|
1592
|
-
interface
|
|
1594
|
+
interface AccountInfo {
|
|
1593
1595
|
/**
|
|
1594
|
-
* ID of the account.
|
|
1596
|
+
* ID of the Wix account associated with the event.
|
|
1595
1597
|
* @format GUID
|
|
1596
1598
|
*/
|
|
1597
1599
|
accountId?: string | null;
|
|
1598
1600
|
/**
|
|
1599
|
-
* ID of the parent account.
|
|
1601
|
+
* ID of the parent Wix account. Only included when accountId belongs to a child account.
|
|
1600
1602
|
* @format GUID
|
|
1601
1603
|
*/
|
|
1602
1604
|
parentAccountId?: string | null;
|
|
1603
1605
|
/**
|
|
1604
|
-
* ID of the site
|
|
1606
|
+
* ID of the Wix site associated with the event. Only included when the event is tied to a specific site.
|
|
1605
1607
|
* @format GUID
|
|
1606
1608
|
*/
|
|
1607
1609
|
siteId?: string | null;
|
|
@@ -1679,6 +1681,8 @@ interface BaseEventMetadata {
|
|
|
1679
1681
|
eventType?: string;
|
|
1680
1682
|
/** The identification type and identity data. */
|
|
1681
1683
|
identity?: IdentificationData;
|
|
1684
|
+
/** Details related to the account */
|
|
1685
|
+
accountInfo?: AccountInfo;
|
|
1682
1686
|
}
|
|
1683
1687
|
interface EventMetadata extends BaseEventMetadata {
|
|
1684
1688
|
/** Event ID. With this ID you can easily spot duplicated events and ignore them. */
|
|
@@ -1709,6 +1713,15 @@ interface EventMetadata extends BaseEventMetadata {
|
|
|
1709
1713
|
* You can use this number to make sure you're handling updates in the right order. Just save the latest sequence number on your end and compare it to the one in each new message. If the new message has an older (lower) number, you can safely ignore it.
|
|
1710
1714
|
*/
|
|
1711
1715
|
entityEventSequence?: string | null;
|
|
1716
|
+
accountInfo?: AccountInfoMetadata;
|
|
1717
|
+
}
|
|
1718
|
+
interface AccountInfoMetadata {
|
|
1719
|
+
/** ID of the Wix account associated with the event */
|
|
1720
|
+
accountId: string;
|
|
1721
|
+
/** ID of the Wix site associated with the event. Only included when the event is tied to a specific site. */
|
|
1722
|
+
siteId?: string;
|
|
1723
|
+
/** ID of the parent Wix account. Only included when 'accountId' belongs to a child account. */
|
|
1724
|
+
parentAccountId?: string;
|
|
1712
1725
|
}
|
|
1713
1726
|
interface FileDescriptorFileFailedEnvelope {
|
|
1714
1727
|
data: FileFailed;
|
|
@@ -2502,4 +2515,4 @@ type FileDescriptorQuery = {
|
|
|
2502
2515
|
}[];
|
|
2503
2516
|
};
|
|
2504
2517
|
|
|
2505
|
-
export { type
|
|
2518
|
+
export { type AccountInfo, type ActionEvent, type ApplicationError, type Archive, type AudioV2, type BaseEventMetadata, type BulkActionMetadata, type BulkAnnotateImageResult, type BulkAnnotateImagesRequest, type BulkAnnotateImagesResponse, type BulkDeleteFilesOptions, type BulkDeleteFilesRequest, type BulkDeleteFilesResponse, type BulkImportFileOptions, type BulkImportFileRequest, type BulkImportFileResponse, type BulkImportFileResult, type BulkImportFilesRequest, type BulkImportFilesResponse, type BulkInternalImportFilesRequest, type BulkInternalImportFilesResponse, type BulkPublishDraftFileResult, type BulkPublishDraftFilesRequest, type BulkPublishDraftFilesResponse, type BulkRestoreFilesFromTrashBinRequest, type BulkRestoreFilesFromTrashBinResponse, type Color, type ColorRGB, type Colors, type CommonCursorPaging, type CommonQueryWithEntityContext, ContentDisposition, type ContentDispositionWithLiterals, type CursorPaging, type CursorQuery, type CursorQueryPagingMethodOneOf, type Cursors, type DomainEvent, type DomainEventBodyOneOf, type DownloadUrl, type DraftFilePublished, type EntityCreatedEvent, type EntityDeletedEvent, type EntityUpdatedEvent, type EventMetadata, type ExternalInfo, type FaceRecognition, type FileDescriptor, type FileDescriptorFileFailedEnvelope, type FileDescriptorFileReadyEnvelope, type FileDescriptorQuery, type FileDescriptorQuerySpec, type FileFailed, type FileMedia, type FileMediaMediaOneOf, type FileReady, type FilesQueryBuilder, type FilesQueryResult, type FocalPoint, type FontAsset, type FontMedia, type GenerateAnimatedVectorRequest, type GenerateAnimatedVectorResponse, type GenerateFileDownloadUrlOptions, type GenerateFileDownloadUrlRequest, type GenerateFileDownloadUrlResponse, type GenerateFileDownloadUrlValidationErrors, type GenerateFileResumableUploadUrlOptions, type GenerateFileResumableUploadUrlRequest, type GenerateFileResumableUploadUrlResponse, type GenerateFileResumableUploadUrlValidationErrors, type GenerateFileUploadUrlOptions, type GenerateFileUploadUrlRequest, type GenerateFileUploadUrlResponse, type GenerateFileUploadUrlValidationErrors, type GenerateFilesDownloadUrlRequest, type GenerateFilesDownloadUrlResponse, type GenerateVideoStreamingUrlOptions, type GenerateVideoStreamingUrlRequest, type GenerateVideoStreamingUrlResponse, type GenerateWebSocketTokenRequest, type GenerateWebSocketTokenResponse, type GetFileDescriptorRequest, type GetFileDescriptorResponse, type GetFileDescriptorValidationErrors, type GetFileDescriptorsRequest, type GetFileDescriptorsResponse, type GetFileDescriptorsValidationErrors, type GetSiteFileDescriptorsRequest, type GetSiteFileDescriptorsResponse, type IdentificationData, type IdentificationDataIdOneOf, type IdentityInfo, IdentityType, type IdentityTypeWithLiterals, type ImageAnnotationConfigurations, ImageAnnotationType, type ImageAnnotationTypeWithLiterals, type ImageMedia, type ImportFileOptions, type ImportFileRequest, type ImportFileResponse, type ImportFileValidationErrors, type ItemMetadata, type ListDeletedFilesOptions, type ListDeletedFilesRequest, type ListDeletedFilesResponse, type ListDeletedFilesValidationErrors, type ListFilesOptions, type ListFilesRequest, type ListFilesResponse, type ListFilesValidationErrors, MediaType, type MediaTypeWithLiterals, type MessageEnvelope, type Model3D, Namespace, type NamespaceWithLiterals, OperationStatus, type OperationStatusWithLiterals, type OtherMedia, type PagingMetadataV2, type Plan, type Plans, type QueryFileDescriptorsRequest, type QueryFileDescriptorsResponse, type RestoreInfo, RootFolder, type RootFolderWithLiterals, type SearchFilesOptions, type SearchFilesRequest, type SearchFilesResponse, type SearchFilesValidationErrors, type ServiceError, type SiteQuotaExceededError, SortOrder, type SortOrderWithLiterals, type Sorting, State, type StateWithLiterals, StreamFormat, type StreamFormatWithLiterals, type TotalQuota, type UnsupportedRequestValueError, type UpdateFileDescriptorRequest, type UpdateFileDescriptorResponse, type UpdateFileDescriptorValidationErrors, type UpdateFileRequest, type UpdateFileResponse, UploadProtocol, type UploadProtocolWithLiterals, type VideoResolution, WebhookIdentityType, type WebhookIdentityTypeWithLiterals, bulkDeleteFiles, bulkImportFile, bulkImportFiles, bulkRestoreFilesFromTrashBin, generateFileDownloadUrl, generateFileResumableUploadUrl, generateFileUploadUrl, generateFilesDownloadUrl, generateVideoStreamingUrl, getFileDescriptor, getFileDescriptors, importFile, listDeletedFiles, listFiles, onFileDescriptorFileFailed, onFileDescriptorFileReady, queryFileDescriptors, searchFiles, typedQueryFileDescriptors, updateFileDescriptor };
|