export interface Report { /** * Report ID. * @readonly */ _id?: string | null; /** Reported entity name, such as `comment`. */ entityName?: string; /** Reported entity ID. */ entityId?: string; /** * Identity of who created a report. * @readonly */ identity?: CommonIdentificationData; /** Reason for the report. */ reason?: Reason; /** * Revision number, which increments by 1 each time the rule is updated. To prevent conflicting changes, the existing revision must be used when updating a rule. * @readonly */ revision?: string | null; /** * Date and time when the report created. * @readonly */ _createdDate?: Date | null; /** * Date and time when the report updated. * @readonly */ _updatedDate?: Date | null; /** * Custom field data for the report object. * * **Note:** You must configure extended fields using schema plugin extensions in your app's dashboard before you can access the extended fields with API calls. */ extendedFields?: ExtendedFields; } export interface CommonIdentificationData extends CommonIdentificationDataIdOneOf { /** ID of a site visitor that has not logged in to the site. */ anonymousVisitorId?: string; /** ID of a site visitor that has logged in to the site. */ memberId?: string; /** * Identity type * @readonly */ identityType?: IdentityType; } /** @oneof */ export interface CommonIdentificationDataIdOneOf { /** ID of a site visitor that has not logged in to the site. */ anonymousVisitorId?: string; /** ID of a site visitor that has logged in to the site. */ memberId?: string; } export declare enum IdentityType { /** Unknown type. This value is not used. */ UNKNOWN = "UNKNOWN", /** A site visitor who has not logged in. */ ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR", /** A logged-in site member. */ MEMBER = "MEMBER", /** A Wix account holder, such as a site owner or contributor. This value is not used. */ WIX_USER = "WIX_USER", /** An application integrated with the Wix platform. This value is not used. */ APP = "APP" } export interface Reason { /** Report reason type. */ reasonType?: Type; /** Why the entity is reported. */ details?: string | null; } export declare enum Type { /** Unknown type. This value is not used. */ UNKNOWN_TYPE = "UNKNOWN_TYPE", /** Entity is reported for other reasons. Specify in `details`. */ OTHER = "OTHER", /** Entity is reported for spam. */ SPAM = "SPAM", /** Entity is reported for nudity or sexual harassment. */ NUDITY_OR_SEXUAL_HARASSMENT = "NUDITY_OR_SEXUAL_HARASSMENT", /** Entity is reported for hate speech. */ HATE_SPEECH_OR_SYMBOLS = "HATE_SPEECH_OR_SYMBOLS", /** Entity is reported for false information. */ FALSE_INFORMATION = "FALSE_INFORMATION", /** Entity is reported for a community guideline violation. */ COMMUNITY_GUIDELINES_VIOLATION = "COMMUNITY_GUIDELINES_VIOLATION", /** Entity is reported for violence. */ VIOLENCE = "VIOLENCE", /** Entity is reported for mentioning suicide. */ SUICIDE_OR_SELF_INJURY = "SUICIDE_OR_SELF_INJURY", /** Entity is reported for unuathorized sales. */ UNAUTHORIZED_SALES = "UNAUTHORIZED_SALES", /** Entity is reported for mentioning an eating disorder. */ EATING_DISORDER = "EATING_DISORDER", /** Entity is reported for involving a minor. */ INVOLVES_A_CHILD = "INVOLVES_A_CHILD", /** Entity is reported for mentioning terrorism. */ TERRORISM = "TERRORISM", /** Entity is reported for mentioning drugs. */ DRUGS = "DRUGS", /** Entity is reported for unlawful actions. */ UNLAWFUL = "UNLAWFUL", /** Entity is reported for exposing identifying details. */ EXPOSING_IDENTIFYING_INFO = "EXPOSING_IDENTIFYING_INFO" } export interface ExtendedFields { /** * Extended field data. Each key corresponds to the namespace of the app that created the extended fields. * The value of each key is structured according to the schema defined when the extended fields were configured. * * You can only access fields for which you have the appropriate permissions. * * Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields). */ namespaces?: Record>; } export interface EntityReportSummaryChanged { /** Reported entity name. */ entityName?: string; /** Reported entity ID. */ entityId?: string; /** Number of reports. */ reportCount?: number; /** Number of reports per reason type. */ reasonCounts?: ReasonCount[]; } export interface ReasonCount { /** Reason type. */ reasonType?: Type; /** Number of reports. */ count?: number; } export interface CreateReportRequest { /** Report details. */ report: Report; } export interface CreateReportResponse { /** Created report. */ report?: Report; } export interface GetReportRequest { /** ID of the report to retrieve. */ reportId: string; } export interface GetReportResponse { /** Retrieved report. */ report?: Report; } export interface UpdateReportRequest { /** Report to update. */ report: Report; } export interface UpdateReportResponse { /** Updated report. */ report?: Report; } export interface DeleteReportRequest { /** ID of the report to delete. */ reportId: string; } export interface DeleteReportResponse { } export interface UpsertReportRequest { /** Report to create or update. */ report?: Report; } export interface UpsertReportResponse { /** Updated or created report. */ report?: Report; } export interface BulkDeleteReportsByFilterRequest { /** Query options. See [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language) for more details. */ filter: Record | null; } export interface BulkDeleteReportsByFilterResponse { /** Job ID. Pass this ID to [Get Async Job](https://dev.wix.com/docs/rest/business-management/async-job/introduction) to retrieve job details and metadata. */ jobId?: string; } export interface CountReportsByReasonTypesRequest { /** Reported entity name. For example, `comment`. */ entityName: string; /** ID of the reported entity. */ entityId: string; } export interface CountReportsByReasonTypesResponse { /** List of reports grouped by the reason type. */ reasonTypeCount?: ReasonTypeCount[]; } export interface ReasonTypeCount { /** Reason for report. */ reasonType?: Type; /** Number of reports by reason type. */ count?: number; } export interface QueryReportsRequest { /** Query options. See [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language) for more details. */ query?: CursorQuery; } export interface CursorQuery extends CursorQueryPagingMethodOneOf { /** Cursor paging options */ cursorPaging?: CursorPaging; /** Filter object. See [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language) for more information. */ filter?: Record | null; /** Sorting options */ sort?: Sorting[]; } /** @oneof */ export interface CursorQueryPagingMethodOneOf { /** Cursor paging options */ cursorPaging?: CursorPaging; } export interface Sorting { /** Name of the field to sort by. */ fieldName?: string; /** Sort order. */ order?: SortOrder; } export declare enum SortOrder { ASC = "ASC", DESC = "DESC" } export interface CursorPaging { /** Maximum number of items to return in the results. */ limit?: number | null; /** * Pointer to the next or previous page in the list of results. * Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response. */ cursor?: string | null; } export interface QueryReportsResponse { /** List of reports. */ reports?: Report[]; /** Paging metadata. */ pagingMetadata?: CursorPagingMetadata; } export interface CursorPagingMetadata { /** Number of items returned in the response. */ count?: number | null; /** Cursor strings that point to the next page, previous page, or both. */ cursors?: Cursors; /** Whether there are more pages to retrieve following the current page. */ hasNext?: boolean | null; } export interface Cursors { /** Cursor string pointing to the next page in the list of results. */ next?: string | null; /** Cursor pointing to the previous page in the list of results. */ prev?: string | null; } export interface UpdateExtendedFieldsRequest { /** ID of the report to update. */ _id: string; /** Identifier for the app whose extended fields are being updated. */ namespace: string; /** Data to update. Structured according to the [schema](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields#json-schema-for-extended-fields) defined when the extended fields were configured. */ namespaceData: Record | null; } export interface UpdateExtendedFieldsResponse { /** Updated report. */ report?: Report; } export interface DomainEvent extends DomainEventBodyOneOf { createdEvent?: EntityCreatedEvent; updatedEvent?: EntityUpdatedEvent; deletedEvent?: EntityDeletedEvent; actionEvent?: ActionEvent; /** * Unique event ID. * Allows clients to ignore duplicate webhooks. */ _id?: string; /** * Assumes actions are also always typed to an entity_type * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction */ entityFqdn?: string; /** * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug) * This is although the created/updated/deleted notion is duplication of the oneof types * Example: created/updated/deleted/started/completed/email_opened */ slug?: string; /** ID of the entity associated with the event. */ entityId?: string; /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */ eventTime?: Date | null; /** * Whether the event was triggered as a result of a privacy regulation application * (for example, GDPR). */ triggeredByAnonymizeRequest?: boolean | null; /** If present, indicates the action that triggered the event. */ originatedFrom?: string | null; /** * A sequence number defining the order of updates to the underlying entity. * For example, given that some entity was updated at 16:00 and than again at 16:01, * it is guaranteed that the sequence number of the second update is strictly higher than the first. * As the consumer, you can use this value to ensure that you handle messages in the correct order. * To do so, you will need to persist this number on your end, and compare the sequence number from the * message against the one you have stored. Given that the stored number is higher, you should ignore the message. */ entityEventSequence?: string | null; } /** @oneof */ export interface DomainEventBodyOneOf { createdEvent?: EntityCreatedEvent; updatedEvent?: EntityUpdatedEvent; deletedEvent?: EntityDeletedEvent; actionEvent?: ActionEvent; } export interface EntityCreatedEvent { entity?: string; } export interface RestoreInfo { deletedDate?: Date | null; } export interface EntityUpdatedEvent { /** * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff. * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects. * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it. */ currentEntity?: string; } export interface EntityDeletedEvent { /** Entity that was deleted */ deletedEntity?: string | null; } export interface ActionEvent { body?: string; } export interface Empty { } export interface MessageEnvelope { /** App instance ID. */ instanceId?: string | null; /** Event type. */ eventType?: string; /** The identification type and identity data. */ identity?: IdentificationData; /** Stringify payload. */ data?: string; } export interface IdentificationData extends IdentificationDataIdOneOf { /** ID of a site visitor that has not logged in to the site. */ anonymousVisitorId?: string; /** ID of a site visitor that has logged in to the site. */ memberId?: string; /** ID of a Wix user (site owner, contributor, etc.). */ wixUserId?: string; /** ID of an app. */ appId?: string; /** @readonly */ identityType?: WebhookIdentityType; } /** @oneof */ export interface IdentificationDataIdOneOf { /** ID of a site visitor that has not logged in to the site. */ anonymousVisitorId?: string; /** ID of a site visitor that has logged in to the site. */ memberId?: string; /** ID of a Wix user (site owner, contributor, etc.). */ wixUserId?: string; /** ID of an app. */ appId?: string; } export declare enum WebhookIdentityType { UNKNOWN = "UNKNOWN", ANONYMOUS_VISITOR = "ANONYMOUS_VISITOR", MEMBER = "MEMBER", WIX_USER = "WIX_USER", APP = "APP" } interface CommonIdentificationDataNonNullableFields { anonymousVisitorId: string; memberId: string; wixUserId: string; appId: string; identityType: IdentityType; } interface ReasonNonNullableFields { reasonType: Type; } export interface ReportNonNullableFields { entityName: string; entityId: string; identity?: CommonIdentificationDataNonNullableFields; reason?: ReasonNonNullableFields; } export interface CreateReportResponseNonNullableFields { report?: ReportNonNullableFields; } export interface GetReportResponseNonNullableFields { report?: ReportNonNullableFields; } export interface UpdateReportResponseNonNullableFields { report?: ReportNonNullableFields; } export interface UpsertReportResponseNonNullableFields { report?: ReportNonNullableFields; } export interface BulkDeleteReportsByFilterResponseNonNullableFields { jobId: string; } interface ReasonTypeCountNonNullableFields { reasonType: Type; count: number; } export interface CountReportsByReasonTypesResponseNonNullableFields { reasonTypeCount: ReasonTypeCountNonNullableFields[]; } export interface QueryReportsResponseNonNullableFields { reports: ReportNonNullableFields[]; } export interface UpdateExtendedFieldsResponseNonNullableFields { report?: ReportNonNullableFields; } export interface BaseEventMetadata { /** App instance ID. */ instanceId?: string | null; /** Event type. */ eventType?: string; /** The identification type and identity data. */ identity?: IdentificationData; } export interface EventMetadata extends BaseEventMetadata { /** * Unique event ID. * Allows clients to ignore duplicate webhooks. */ _id?: string; /** * Assumes actions are also always typed to an entity_type * Example: wix.stores.catalog.product, wix.bookings.session, wix.payments.transaction */ entityFqdn?: string; /** * This is top level to ease client code dispatching of messages (switch on entity_fqdn+slug) * This is although the created/updated/deleted notion is duplication of the oneof types * Example: created/updated/deleted/started/completed/email_opened */ slug?: string; /** ID of the entity associated with the event. */ entityId?: string; /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example: 2020-04-26T13:57:50.699Z */ eventTime?: Date | null; /** * Whether the event was triggered as a result of a privacy regulation application * (for example, GDPR). */ triggeredByAnonymizeRequest?: boolean | null; /** If present, indicates the action that triggered the event. */ originatedFrom?: string | null; /** * A sequence number defining the order of updates to the underlying entity. * For example, given that some entity was updated at 16:00 and than again at 16:01, * it is guaranteed that the sequence number of the second update is strictly higher than the first. * As the consumer, you can use this value to ensure that you handle messages in the correct order. * To do so, you will need to persist this number on your end, and compare the sequence number from the * message against the one you have stored. Given that the stored number is higher, you should ignore the message. */ entityEventSequence?: string | null; } export interface ReportCreatedEnvelope { entity: Report; metadata: EventMetadata; } /** * Triggered when a report is created. * @permissionId REPORTS.REPORT_READ * @webhook * @eventType wix.reports.v2.report_created * @documentationMaturity preview */ export declare function onReportCreated(handler: (event: ReportCreatedEnvelope) => void | Promise): void; export interface ReportDeletedEnvelope { entity: Report; metadata: EventMetadata; } /** * Triggered when a report is deleted. * @permissionId REPORTS.REPORT_READ * @webhook * @eventType wix.reports.v2.report_deleted * @documentationMaturity preview */ export declare function onReportDeleted(handler: (event: ReportDeletedEnvelope) => void | Promise): void; export interface ReportEntityReportSummaryChangedEnvelope { data: EntityReportSummaryChanged; metadata: EventMetadata; } /** * Triggered when count of reports by reason is updated. * @permissionId REPORTS.REPORT_READ * @webhook * @eventType wix.reports.v2.report_entity_report_summary_changed * @documentationMaturity preview */ export declare function onReportEntityReportSummaryChanged(handler: (event: ReportEntityReportSummaryChangedEnvelope) => void | Promise): void; export interface ReportUpdatedEnvelope { entity: Report; metadata: EventMetadata; } /** * Triggered when a report is updated. * @permissionId REPORTS.REPORT_READ * @webhook * @eventType wix.reports.v2.report_updated * @documentationMaturity preview */ export declare function onReportUpdated(handler: (event: ReportUpdatedEnvelope) => void | Promise): void; /** * Creates a report. * @param report - Report details. * @public * @documentationMaturity preview * @requiredField report * @permissionId REPORTS.REPORT_CREATE * @returns Created report. */ export declare function createReport(report: Report): Promise; /** * Retrieves a report. * * Site members and visitors can only access their own reports. * @param reportId - ID of the report to retrieve. * @public * @documentationMaturity preview * @requiredField reportId * @permissionId REPORTS.REPORT_READ * @returns Retrieved report. */ export declare function getReport(reportId: string): Promise; /** * Updates a report. * * Each time the report is updated, `revision` increments by 1. The current `revision` must be passed when updating the report. This ensures you're working with the latest report and prevents unintended overwrites. * @param _id - Report ID. * @public * @documentationMaturity preview * @requiredField _id * @requiredField report * @requiredField report.revision * @permissionId REPORTS.REPORT_UPDATE * @returns Updated report. */ export declare function updateReport(_id: string | null, report: UpdateReport): Promise; export interface UpdateReport { /** * Report ID. * @readonly */ _id?: string | null; /** Reported entity name, such as `comment`. */ entityName?: string; /** Reported entity ID. */ entityId?: string; /** * Identity of who created a report. * @readonly */ identity?: CommonIdentificationData; /** Reason for the report. */ reason?: Reason; /** * Revision number, which increments by 1 each time the rule is updated. To prevent conflicting changes, the existing revision must be used when updating a rule. * @readonly */ revision?: string | null; /** * Date and time when the report created. * @readonly */ _createdDate?: Date | null; /** * Date and time when the report updated. * @readonly */ _updatedDate?: Date | null; /** * Custom field data for the report object. * * **Note:** You must configure extended fields using schema plugin extensions in your app's dashboard before you can access the extended fields with API calls. */ extendedFields?: ExtendedFields; } /** * Deletes a report and removes it from the report list in the dashboard. * * Site members and visitors can only delete their own reports. * @param reportId - ID of the report to delete. * @public * @documentationMaturity preview * @requiredField reportId * @permissionId REPORTS.REPORT_DELETE */ export declare function deleteReport(reportId: string): Promise; /** * Creates or updates a report. * If the report for the requested entity already exists, updates the report with the provided `reason` value. Otherwise, creates the report. * @public * @documentationMaturity preview * @requiredField identifiers * @requiredField identifiers.reportEntityId * @requiredField identifiers.reportEntityName * @permissionId REPORTS.REPORT_UPSERT * @applicableIdentity VISITOR */ export declare function upsertReport(identifiers: UpsertReportIdentifiers, options?: UpsertReportOptions): Promise; export interface UpsertReportOptions { report: { /** * Report ID. * @readonly */ _id?: string | null; /** * Identity of who created a report. * @readonly */ identity?: CommonIdentificationData; /** Reason for the report. */ reason?: Reason; /** * Revision number, which increments by 1 each time the rule is updated. To prevent conflicting changes, the existing revision must be used when updating a rule. * @readonly */ revision?: string | null; /** * Date and time when the report created. * @readonly */ _createdDate?: Date | null; /** * Date and time when the report updated. * @readonly */ _updatedDate?: Date | null; /** * Custom field data for the report object. * * **Note:** You must configure extended fields using schema plugin extensions in your app's dashboard before you can access the extended fields with API calls. */ extendedFields?: ExtendedFields; }; } export interface UpsertReportIdentifiers { /** Reported entity name, such as `comment`. */ reportEntityName?: string; /** Reported entity ID. */ reportEntityId?: string; } /** * Deletes multiple reports by filter, and removes them from the report list in the dashboard. * @param filter - Query options. See [API Query Language](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language) for more details. * @public * @documentationMaturity preview * @requiredField filter * @permissionId REPORTS.REPORT_BULK_DELETE */ export declare function bulkDeleteReportsByFilter(filter: Record | null): Promise; /** * Counts reports by reason types. * @param entityName - Reported entity name. For example, `comment`. * @public * @documentationMaturity preview * @requiredField entityName * @requiredField options * @requiredField options.entityId * @permissionId REPORTS.REPORT_READ_COUNTS */ export declare function countReportsByReasonTypes(entityName: string, options: CountReportsByReasonTypesOptions): Promise; export interface CountReportsByReasonTypesOptions { /** ID of the reported entity. */ entityId: string; } /** * Retrieves a list of reports, given the provided paging, filtering, and sorting. * Query Reports runs with these defaults, which you can override: * - `createdDate` is sorted in `ASC` order * - `paging.limit` is `100` * - `paging.offset` is `0` * * For field support for filters and sorting, see [Reports: Supported Filters and Sorting](). * To learn about working with _Query_ endpoints, see [API Query Language](https://dev.wix.com/api/rest/getting-started/api-query-language). * @public * @documentationMaturity preview * @permissionId REPORTS.REPORT_QUERY */ export declare function queryReports(): ReportsQueryBuilder; interface QueryCursorResult { cursors: Cursors; hasNext: () => boolean; hasPrev: () => boolean; length: number; pageSize: number; } export interface ReportsQueryResult extends QueryCursorResult { items: Report[]; query: ReportsQueryBuilder; next: () => Promise; prev: () => Promise; } export interface ReportsQueryBuilder { /** @param propertyName - Property whose value is compared with `value`. * @param value - Value to compare against. * @documentationMaturity preview */ eq: (propertyName: '_id' | 'entityName' | 'entityId' | '_createdDate' | 'extendedFields', value: any) => ReportsQueryBuilder; /** @param propertyName - Property whose value is compared with `value`. * @param value - Value to compare against. * @documentationMaturity preview */ ne: (propertyName: '_id' | 'entityName' | 'entityId' | '_createdDate' | 'extendedFields', value: any) => ReportsQueryBuilder; /** @param propertyName - Property whose value is compared with `value`. * @param value - Value to compare against. * @documentationMaturity preview */ ge: (propertyName: '_createdDate', value: any) => ReportsQueryBuilder; /** @param propertyName - Property whose value is compared with `value`. * @param value - Value to compare against. * @documentationMaturity preview */ gt: (propertyName: '_createdDate', value: any) => ReportsQueryBuilder; /** @param propertyName - Property whose value is compared with `value`. * @param value - Value to compare against. * @documentationMaturity preview */ le: (propertyName: '_createdDate', value: any) => ReportsQueryBuilder; /** @param propertyName - Property whose value is compared with `value`. * @param value - Value to compare against. * @documentationMaturity preview */ lt: (propertyName: '_createdDate', value: any) => ReportsQueryBuilder; /** @param propertyName - Property whose value is compared with `string`. * @param string - String to compare against. Case-insensitive. * @documentationMaturity preview */ startsWith: (propertyName: '_id' | 'entityName' | 'entityId', value: string) => ReportsQueryBuilder; /** @param propertyName - Property whose value is compared with `values`. * @param values - List of values to compare against. * @documentationMaturity preview */ hasSome: (propertyName: '_id' | 'entityName' | 'entityId' | '_createdDate' | 'extendedFields', value: any[]) => ReportsQueryBuilder; /** @documentationMaturity preview */ in: (propertyName: '_id' | 'entityName' | 'entityId' | '_createdDate' | 'extendedFields', value: any) => ReportsQueryBuilder; /** @documentationMaturity preview */ exists: (propertyName: '_id' | 'entityName' | 'entityId' | '_createdDate' | 'extendedFields', value: boolean) => ReportsQueryBuilder; /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. * @documentationMaturity preview */ ascending: (...propertyNames: Array<'_id' | 'entityName' | 'entityId' | '_createdDate' | 'extendedFields'>) => ReportsQueryBuilder; /** @param propertyNames - Properties used in the sort. To sort by multiple properties, pass properties as additional arguments. * @documentationMaturity preview */ descending: (...propertyNames: Array<'_id' | 'entityName' | 'entityId' | '_createdDate' | 'extendedFields'>) => ReportsQueryBuilder; /** @param limit - Number of items to return, which is also the `pageSize` of the results object. * @documentationMaturity preview */ limit: (limit: number) => ReportsQueryBuilder; /** @param cursor - A pointer to specific record * @documentationMaturity preview */ skipTo: (cursor: string) => ReportsQueryBuilder; /** @documentationMaturity preview */ find: () => Promise; } /** * Updates extended fields of a report. * [Extended fields](https://dev.wix.com/docs/build-apps/develop-your-app/extensions/backend-extensions/schema-plugins/about-schema-plugin-extensions) must first be configured in the app dashboard. * @param _id - ID of the report to update. * @param namespace - Identifier for the app whose extended fields are being updated. * @public * @documentationMaturity preview * @requiredField _id * @requiredField namespace * @requiredField options * @requiredField options.namespaceData * @permissionId REPORTS.REPORT_UPDATE */ export declare function updateExtendedFields(_id: string, namespace: string, options: UpdateExtendedFieldsOptions): Promise; export interface UpdateExtendedFieldsOptions { /** Data to update. Structured according to the [schema](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields#json-schema-for-extended-fields) defined when the extended fields were configured. */ namespaceData: Record | null; } export {};