@wix/auto_sdk_property_property 1.0.0

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.
Files changed (39) hide show
  1. package/build/cjs/index.d.ts +11 -0
  2. package/build/cjs/index.js +982 -0
  3. package/build/cjs/index.js.map +1 -0
  4. package/build/cjs/index.typings.d.ts +1216 -0
  5. package/build/cjs/index.typings.js +876 -0
  6. package/build/cjs/index.typings.js.map +1 -0
  7. package/build/cjs/meta.d.ts +877 -0
  8. package/build/cjs/meta.js +734 -0
  9. package/build/cjs/meta.js.map +1 -0
  10. package/build/es/index.d.mts +11 -0
  11. package/build/es/index.mjs +939 -0
  12. package/build/es/index.mjs.map +1 -0
  13. package/build/es/index.typings.d.mts +1216 -0
  14. package/build/es/index.typings.mjs +832 -0
  15. package/build/es/index.typings.mjs.map +1 -0
  16. package/build/es/meta.d.mts +877 -0
  17. package/build/es/meta.mjs +691 -0
  18. package/build/es/meta.mjs.map +1 -0
  19. package/build/es/package.json +3 -0
  20. package/build/internal/cjs/index.d.ts +123 -0
  21. package/build/internal/cjs/index.js +982 -0
  22. package/build/internal/cjs/index.js.map +1 -0
  23. package/build/internal/cjs/index.typings.d.ts +1338 -0
  24. package/build/internal/cjs/index.typings.js +876 -0
  25. package/build/internal/cjs/index.typings.js.map +1 -0
  26. package/build/internal/cjs/meta.d.ts +877 -0
  27. package/build/internal/cjs/meta.js +734 -0
  28. package/build/internal/cjs/meta.js.map +1 -0
  29. package/build/internal/es/index.d.mts +123 -0
  30. package/build/internal/es/index.mjs +939 -0
  31. package/build/internal/es/index.mjs.map +1 -0
  32. package/build/internal/es/index.typings.d.mts +1338 -0
  33. package/build/internal/es/index.typings.mjs +832 -0
  34. package/build/internal/es/index.typings.mjs.map +1 -0
  35. package/build/internal/es/meta.d.mts +877 -0
  36. package/build/internal/es/meta.mjs +691 -0
  37. package/build/internal/es/meta.mjs.map +1 -0
  38. package/meta/package.json +3 -0
  39. package/package.json +54 -0
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/real-estate-v1-property-property.http.ts","../../src/real-estate-v1-property-property.types.ts","../../src/real-estate-v1-property-property.meta.ts"],"sourcesContent":["import { toURLSearchParams } from '@wix/sdk-runtime/rest-modules';\nimport { transformSDKFloatToRESTFloat } from '@wix/sdk-runtime/transformations/float';\nimport { transformRESTFloatToSDKFloat } from '@wix/sdk-runtime/transformations/float';\nimport { transformSDKTimestampToRESTTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformRESTTimestampToSDKTimestamp } from '@wix/sdk-runtime/transformations/timestamp';\nimport { transformSDKFieldMaskToRESTFieldMask } from '@wix/sdk-runtime/transformations/field-mask';\nimport { transformPaths } from '@wix/sdk-runtime/transformations/transform-paths';\nimport { resolveUrl } from '@wix/sdk-runtime/rest-modules';\nimport { ResolveUrlOpts } from '@wix/sdk-runtime/rest-modules';\nimport { RequestOptionsFactory } from '@wix/sdk-types';\n\nfunction resolveWixRealEstateV1PropertyServiceUrl(\n opts: Omit<ResolveUrlOpts, 'domainToMappings'>\n) {\n const domainToMappings = {};\n\n return resolveUrl(Object.assign(opts, { domainToMappings }));\n}\n\nconst PACKAGE_NAME = '@wix/auto_sdk_property_property';\n\n/** Creates a Property. */\nexport function createProperty(payload: object): RequestOptionsFactory<any> {\n function __createProperty({ host }: any) {\n const serializedData = transformPaths(payload, [\n {\n transformFn: transformSDKTimestampToRESTTimestamp,\n paths: [\n { path: 'property.createdDate' },\n { path: 'property.updatedDate' },\n { path: 'property.listingDate' },\n { path: 'property.saleDate' },\n ],\n },\n {\n transformFn: transformSDKFloatToRESTFloat,\n paths: [\n { path: 'property.baths' },\n { path: 'property.lat' },\n { path: 'property.lng' },\n ],\n },\n ]);\n const metadata = {\n entityFqdn: 'wix.real_estate.v1.property',\n method: 'POST' as any,\n methodFqn: 'wix.real_estate.v1.PropertyService.CreateProperty',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixRealEstateV1PropertyServiceUrl({\n protoPath: '/v1/properties',\n data: serializedData,\n host,\n }),\n data: serializedData,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'property.createdDate' },\n { path: 'property.updatedDate' },\n { path: 'property.listingDate' },\n { path: 'property.saleDate' },\n ],\n },\n {\n transformFn: transformRESTFloatToSDKFloat,\n paths: [\n { path: 'property.baths' },\n { path: 'property.lat' },\n { path: 'property.lng' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __createProperty;\n}\n\n/** Retrieves a Property. */\nexport function getProperty(payload: object): RequestOptionsFactory<any> {\n function __getProperty({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.real_estate.v1.property',\n method: 'GET' as any,\n methodFqn: 'wix.real_estate.v1.PropertyService.GetProperty',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixRealEstateV1PropertyServiceUrl({\n protoPath: '/v1/properties/{propertyId}',\n data: payload,\n host,\n }),\n params: toURLSearchParams(payload),\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'property.createdDate' },\n { path: 'property.updatedDate' },\n { path: 'property.listingDate' },\n { path: 'property.saleDate' },\n ],\n },\n {\n transformFn: transformRESTFloatToSDKFloat,\n paths: [\n { path: 'property.baths' },\n { path: 'property.lat' },\n { path: 'property.lng' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __getProperty;\n}\n\n/**\n * Updates a Property.\n * Each time the Property is updated, `revision` increments by 1.\n * The current `revision` must be passed when updating the Property.\n */\nexport function updateProperty(payload: object): RequestOptionsFactory<any> {\n function __updateProperty({ host }: any) {\n const serializedData = transformPaths(payload, [\n {\n transformFn: transformSDKFieldMaskToRESTFieldMask,\n paths: [{ path: 'fieldMask' }],\n },\n {\n transformFn: transformSDKTimestampToRESTTimestamp,\n paths: [\n { path: 'property.createdDate' },\n { path: 'property.updatedDate' },\n { path: 'property.listingDate' },\n { path: 'property.saleDate' },\n ],\n },\n {\n transformFn: transformSDKFloatToRESTFloat,\n paths: [\n { path: 'property.baths' },\n { path: 'property.lat' },\n { path: 'property.lng' },\n ],\n },\n ]);\n const metadata = {\n entityFqdn: 'wix.real_estate.v1.property',\n method: 'PATCH' as any,\n methodFqn: 'wix.real_estate.v1.PropertyService.UpdateProperty',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixRealEstateV1PropertyServiceUrl({\n protoPath: '/v1/properties/{property.id}',\n data: serializedData,\n host,\n }),\n data: serializedData,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'property.createdDate' },\n { path: 'property.updatedDate' },\n { path: 'property.listingDate' },\n { path: 'property.saleDate' },\n ],\n },\n {\n transformFn: transformRESTFloatToSDKFloat,\n paths: [\n { path: 'property.baths' },\n { path: 'property.lat' },\n { path: 'property.lng' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __updateProperty;\n}\n\n/** Deletes a Property. */\nexport function deleteProperty(payload: object): RequestOptionsFactory<any> {\n function __deleteProperty({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.real_estate.v1.property',\n method: 'DELETE' as any,\n methodFqn: 'wix.real_estate.v1.PropertyService.DeleteProperty',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixRealEstateV1PropertyServiceUrl({\n protoPath: '/v1/properties/{propertyId}',\n data: payload,\n host,\n }),\n params: toURLSearchParams(payload),\n };\n\n return metadata;\n }\n\n return __deleteProperty;\n}\n\n/**\n * Retrieves a list of Properties, given the provided paging, filtering, and sorting.\n * Up to 1,000 Properties can be returned per request.\n */\nexport function queryProperties(payload: object): RequestOptionsFactory<any> {\n function __queryProperties({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.real_estate.v1.property',\n method: 'GET' as any,\n methodFqn: 'wix.real_estate.v1.PropertyService.QueryProperties',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixRealEstateV1PropertyServiceUrl({\n protoPath: '/v1/properties/query',\n data: payload,\n host,\n }),\n params: toURLSearchParams(payload, true),\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'properties.createdDate' },\n { path: 'properties.updatedDate' },\n { path: 'properties.listingDate' },\n { path: 'properties.saleDate' },\n ],\n },\n {\n transformFn: transformRESTFloatToSDKFloat,\n paths: [\n { path: 'properties.baths' },\n { path: 'properties.lat' },\n { path: 'properties.lng' },\n ],\n },\n ]),\n fallback: [\n {\n method: 'POST' as any,\n url: resolveWixRealEstateV1PropertyServiceUrl({\n protoPath: '/v1/properties/query',\n data: payload,\n host,\n }),\n data: payload,\n },\n ],\n };\n\n return metadata;\n }\n\n return __queryProperties;\n}\n\n/** Creates multiple Properties in a single request. Works synchronously. */\nexport function bulkCreateProperties(\n payload: object\n): RequestOptionsFactory<any> {\n function __bulkCreateProperties({ host }: any) {\n const serializedData = transformPaths(payload, [\n {\n transformFn: transformSDKTimestampToRESTTimestamp,\n paths: [\n { path: 'properties.createdDate' },\n { path: 'properties.updatedDate' },\n { path: 'properties.listingDate' },\n { path: 'properties.saleDate' },\n ],\n },\n {\n transformFn: transformSDKFloatToRESTFloat,\n paths: [\n { path: 'properties.baths' },\n { path: 'properties.lat' },\n { path: 'properties.lng' },\n ],\n },\n ]);\n const metadata = {\n entityFqdn: 'wix.real_estate.v1.property',\n method: 'POST' as any,\n methodFqn: 'wix.real_estate.v1.PropertyService.BulkCreateProperties',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixRealEstateV1PropertyServiceUrl({\n protoPath: '/v1/bulk/properties/create',\n data: serializedData,\n host,\n }),\n data: serializedData,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'results.item.createdDate' },\n { path: 'results.item.updatedDate' },\n { path: 'results.item.listingDate' },\n { path: 'results.item.saleDate' },\n ],\n },\n {\n transformFn: transformRESTFloatToSDKFloat,\n paths: [\n { path: 'results.item.baths' },\n { path: 'results.item.lat' },\n { path: 'results.item.lng' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __bulkCreateProperties;\n}\n\n/** Updates multiple Properties in a single request. Works synchronously. */\nexport function bulkUpdateProperties(\n payload: object\n): RequestOptionsFactory<any> {\n function __bulkUpdateProperties({ host }: any) {\n const serializedData = transformPaths(payload, [\n {\n transformFn: transformSDKFieldMaskToRESTFieldMask,\n paths: [{ path: 'properties.fieldMask' }],\n },\n {\n transformFn: transformSDKTimestampToRESTTimestamp,\n paths: [\n { path: 'properties.property.createdDate' },\n { path: 'properties.property.updatedDate' },\n { path: 'properties.property.listingDate' },\n { path: 'properties.property.saleDate' },\n ],\n },\n {\n transformFn: transformSDKFloatToRESTFloat,\n paths: [\n { path: 'properties.property.baths' },\n { path: 'properties.property.lat' },\n { path: 'properties.property.lng' },\n ],\n },\n ]);\n const metadata = {\n entityFqdn: 'wix.real_estate.v1.property',\n method: 'POST' as any,\n methodFqn: 'wix.real_estate.v1.PropertyService.BulkUpdateProperties',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixRealEstateV1PropertyServiceUrl({\n protoPath: '/v1/bulk/properties/update',\n data: serializedData,\n host,\n }),\n data: serializedData,\n transformResponse: (payload: any) =>\n transformPaths(payload, [\n {\n transformFn: transformRESTTimestampToSDKTimestamp,\n paths: [\n { path: 'results.item.createdDate' },\n { path: 'results.item.updatedDate' },\n { path: 'results.item.listingDate' },\n { path: 'results.item.saleDate' },\n ],\n },\n {\n transformFn: transformRESTFloatToSDKFloat,\n paths: [\n { path: 'results.item.baths' },\n { path: 'results.item.lat' },\n { path: 'results.item.lng' },\n ],\n },\n ]),\n };\n\n return metadata;\n }\n\n return __bulkUpdateProperties;\n}\n\n/** Deletes multiple Properties in a single request. Works synchronously. */\nexport function bulkDeleteProperties(\n payload: object\n): RequestOptionsFactory<any> {\n function __bulkDeleteProperties({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.real_estate.v1.property',\n method: 'POST' as any,\n methodFqn: 'wix.real_estate.v1.PropertyService.BulkDeleteProperties',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixRealEstateV1PropertyServiceUrl({\n protoPath: '/v1/bulk/properties/delete',\n data: payload,\n host,\n }),\n data: payload,\n };\n\n return metadata;\n }\n\n return __bulkDeleteProperties;\n}\n\n/**\n * Synchronously updates tags on multiple Properties by list of Property IDs.\n * A tag that appears both in the list of assign and unassign tags will be assigned.\n */\nexport function bulkUpdatePropertyTags(\n payload: object\n): RequestOptionsFactory<any> {\n function __bulkUpdatePropertyTags({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.real_estate.v1.property',\n method: 'POST' as any,\n methodFqn: 'wix.real_estate.v1.PropertyService.BulkUpdatePropertyTags',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixRealEstateV1PropertyServiceUrl({\n protoPath: '/v1/bulk/properties/update-tags',\n data: payload,\n host,\n }),\n data: payload,\n };\n\n return metadata;\n }\n\n return __bulkUpdatePropertyTags;\n}\n\n/**\n * Asynchronously updates tags on multiple Properties by provided filter.\n * An empty filter will update all Properties.\n * A tag that appears both in the list of assign and unassign tags will be assigned.\n */\nexport function bulkUpdatePropertyTagsByFilter(\n payload: object\n): RequestOptionsFactory<any> {\n function __bulkUpdatePropertyTagsByFilter({ host }: any) {\n const metadata = {\n entityFqdn: 'wix.real_estate.v1.property',\n method: 'POST' as any,\n methodFqn:\n 'wix.real_estate.v1.PropertyService.BulkUpdatePropertyTagsByFilter',\n packageName: PACKAGE_NAME,\n migrationOptions: {\n optInTransformResponse: true,\n },\n url: resolveWixRealEstateV1PropertyServiceUrl({\n protoPath: '/v1/bulk/properties/update-tags-by-filter',\n data: payload,\n host,\n }),\n data: payload,\n };\n\n return metadata;\n }\n\n return __bulkUpdatePropertyTagsByFilter;\n}\n","/** Represents a real estate property listing. */\nexport interface Property {\n /**\n * Property ID.\n * @format GUID\n * @readonly\n */\n id?: string | null;\n /**\n * Revision number, which increments by 1 each time the Property is updated.\n * To prevent conflicting changes, the current revision must be passed when updating the Property.\n * @readonly\n */\n revision?: string | null;\n /**\n * Date and time the Property was created.\n * @readonly\n */\n createdDate?: Date | null;\n /**\n * Date and time the Property was last updated.\n * @readonly\n */\n updatedDate?: Date | null;\n /**\n * Full street address of the property (not personal address).\n * @maxLength 200\n */\n address?: string;\n /**\n * City.\n * @maxLength 100\n */\n city?: string;\n /**\n * State or province.\n * @maxLength 100\n */\n state?: string;\n /**\n * ZIP or postal code of the property (not personal address).\n * @maxLength 20\n */\n zip?: string;\n /** Listing price. */\n price?: Money;\n /** Property status. */\n status?: PropertyStatusWithLiterals;\n /** Property type. */\n propertyType?: PropertyTypeWithLiterals;\n /**\n * Number of bedrooms.\n * @max 100\n */\n beds?: number | null;\n /**\n * Number of bathrooms.\n * @max 100\n */\n baths?: number | null;\n /**\n * Living area in square feet.\n * @max 1000000\n */\n sqft?: number | null;\n /**\n * Lot size in square feet.\n * @max 100000000\n */\n lotSize?: number | null;\n /**\n * Year the property was built.\n * @min 1600\n * @max 2200\n */\n yearBuilt?: number | null;\n /**\n * Public description.\n * @maxLength 10000\n */\n description?: string;\n /**\n * Property features (e.g., Pool, Waterfront, Garage, AC).\n * @maxSize 100\n * @maxLength 100\n */\n features?: string[];\n /**\n * Property photos.\n * @maxSize 100\n */\n photos?: PropertyPhoto[];\n /**\n * 360-degree virtual tour URL.\n * @format WEB_URL\n */\n virtualTourUrl?: string | null;\n /**\n * Property documents (floor plans, disclosures, brochures).\n * @maxSize 50\n */\n documents?: PropertyDocument[];\n /**\n * Custom fields for additional property information.\n * @maxSize 100\n */\n customFields?: CustomField[];\n /**\n * Latitude coordinate.\n * @min -90\n * @max 90\n */\n lat?: number | null;\n /**\n * Longitude coordinate.\n * @min -180\n * @max 180\n */\n lng?: number | null;\n /**\n * Date when property was listed (status changed to Active).\n * @readonly\n */\n listingDate?: Date | null;\n /**\n * Date when property was sold (status changed to Sold).\n * @readonly\n */\n saleDate?: Date | null;\n /**\n * Number of days the property has been on the market.\n * @readonly\n */\n daysOnMarket?: number | null;\n /**\n * Source of the property listing.\n * @readonly\n */\n source?: PropertySourceWithLiterals;\n /**\n * MLS identifier (Phase 2).\n * @readonly\n * @maxLength 100\n */\n mlsId?: string | null;\n /**\n * MLS listing number (Phase 2).\n * @readonly\n * @maxLength 100\n */\n listingId?: string | null;\n /**\n * MLS listing agent ID (Phase 2).\n * @readonly\n * @maxLength 100\n */\n listingAgentId?: string | null;\n /**\n * MLS listing office ID (Phase 2).\n * @readonly\n * @maxLength 100\n */\n listingOfficeId?: string | null;\n /**\n * Whether the property is editable by the agent.\n * @readonly\n */\n editable?: boolean;\n /**\n * Wix Bookings Service ID for scheduling property viewings.\n * Populated asynchronously after property creation.\n * @format GUID\n * @readonly\n */\n serviceId?: string | null;\n /** Data Extensions. */\n extendedFields?: ExtendedFields;\n /** Tags for classification. */\n tags?: Tags;\n}\n\n/**\n * Money.\n * Default format to use. Sufficiently compliant with majority of standards: w3c, ISO 4217, ISO 20022, ISO 8583:2003.\n */\nexport interface Money {\n /**\n * Monetary amount. Decimal string with a period as a decimal separator (e.g., 3.99). Optionally, a single (-), to indicate that the amount is negative.\n * @format DECIMAL_VALUE\n * @decimalValue options { maxScale:2 }\n */\n value?: string;\n /**\n * Currency code. Must be valid ISO 4217 currency code (e.g., USD).\n * @format CURRENCY\n */\n currency?: string;\n /**\n * Monetary amount. Decimal string in local format (e.g., 1 000,30). Optionally, a single (-), to indicate that the amount is negative.\n * @maxLength 50\n */\n formattedValue?: string | null;\n}\n\n/** Property status. */\nexport enum PropertyStatus {\n /** Unknown status. */\n PROPERTY_STATUS_UNKNOWN = 'PROPERTY_STATUS_UNKNOWN',\n /** Property is currently for sale or rent. */\n ACTIVE = 'ACTIVE',\n /** Property is under contract. */\n PENDING = 'PENDING',\n /** Property transaction is closed. */\n SOLD = 'SOLD',\n /** Property is not publicly listed. */\n OFF_MARKET = 'OFF_MARKET',\n /** Property is incomplete and not published. */\n DRAFT = 'DRAFT',\n}\n\n/** @enumType */\nexport type PropertyStatusWithLiterals =\n | PropertyStatus\n | 'PROPERTY_STATUS_UNKNOWN'\n | 'ACTIVE'\n | 'PENDING'\n | 'SOLD'\n | 'OFF_MARKET'\n | 'DRAFT';\n\n/** Property type. */\nexport enum PropertyType {\n /** Unknown property type. */\n PROPERTY_TYPE_UNKNOWN = 'PROPERTY_TYPE_UNKNOWN',\n /** Single-family home. */\n SINGLE_FAMILY = 'SINGLE_FAMILY',\n /** Condominium. */\n CONDO = 'CONDO',\n /** Townhouse. */\n TOWNHOUSE = 'TOWNHOUSE',\n /** Multi-family home. */\n MULTI_FAMILY = 'MULTI_FAMILY',\n /** Land. */\n LAND = 'LAND',\n /** Commercial property. */\n COMMERCIAL = 'COMMERCIAL',\n}\n\n/** @enumType */\nexport type PropertyTypeWithLiterals =\n | PropertyType\n | 'PROPERTY_TYPE_UNKNOWN'\n | 'SINGLE_FAMILY'\n | 'CONDO'\n | 'TOWNHOUSE'\n | 'MULTI_FAMILY'\n | 'LAND'\n | 'COMMERCIAL';\n\n/** Property photo. */\nexport interface PropertyPhoto {\n /**\n * Photo URL.\n * @format WEB_URL\n */\n url?: string;\n /**\n * Alt text for accessibility.\n * @maxLength 200\n */\n altText?: string;\n /** Display order. */\n order?: number;\n}\n\n/** Property document. */\nexport interface PropertyDocument {\n /**\n * Document URL.\n * @format WEB_URL\n */\n url?: string;\n /**\n * Document title.\n * @maxLength 200\n */\n title?: string;\n /** Document type. */\n type?: DocumentTypeWithLiterals;\n}\n\n/** Document type. */\nexport enum DocumentType {\n /** Unknown document type. */\n DOCUMENT_TYPE_UNKNOWN = 'DOCUMENT_TYPE_UNKNOWN',\n /** Floor plan. */\n FLOOR_PLAN = 'FLOOR_PLAN',\n /** Disclosure document. */\n DISCLOSURE = 'DISCLOSURE',\n /** Brochure. */\n BROCHURE = 'BROCHURE',\n /** Other document. */\n OTHER = 'OTHER',\n}\n\n/** @enumType */\nexport type DocumentTypeWithLiterals =\n | DocumentType\n | 'DOCUMENT_TYPE_UNKNOWN'\n | 'FLOOR_PLAN'\n | 'DISCLOSURE'\n | 'BROCHURE'\n | 'OTHER';\n\n/** Custom field for additional property information. */\nexport interface CustomField {\n /**\n * Field key.\n * @maxLength 100\n */\n key?: string;\n /**\n * Field value.\n * @maxLength 1000\n */\n value?: string;\n /** Field type. */\n type?: CustomFieldTypeWithLiterals;\n}\n\n/** Custom field type. */\nexport enum CustomFieldType {\n /** Unknown field type. */\n CUSTOM_FIELD_TYPE_UNKNOWN = 'CUSTOM_FIELD_TYPE_UNKNOWN',\n /** String value. */\n STRING = 'STRING',\n /** Number value. */\n NUMBER = 'NUMBER',\n /** Boolean value. */\n BOOLEAN = 'BOOLEAN',\n /** Date value. */\n DATE = 'DATE',\n}\n\n/** @enumType */\nexport type CustomFieldTypeWithLiterals =\n | CustomFieldType\n | 'CUSTOM_FIELD_TYPE_UNKNOWN'\n | 'STRING'\n | 'NUMBER'\n | 'BOOLEAN'\n | 'DATE';\n\n/** Property source. */\nexport enum PropertySource {\n /** Unknown source. */\n PROPERTY_SOURCE_UNKNOWN = 'PROPERTY_SOURCE_UNKNOWN',\n /** Manually created by agent. */\n MANUAL = 'MANUAL',\n /** Synced from MLS (Phase 2). */\n MLS = 'MLS',\n}\n\n/** @enumType */\nexport type PropertySourceWithLiterals =\n | PropertySource\n | 'PROPERTY_SOURCE_UNKNOWN'\n | 'MANUAL'\n | 'MLS';\n\nexport interface ExtendedFields {\n /**\n * Extended field data. Each key corresponds to the namespace of the app that created the extended fields.\n * The value of each key is structured according to the schema defined when the extended fields were configured.\n *\n * You can only access fields for which you have the appropriate permissions.\n *\n * Learn more about [extended fields](https://dev.wix.com/docs/rest/articles/getting-started/extended-fields).\n */\n namespaces?: Record<string, Record<string, any>>;\n}\n\n/**\n * Common object for tags.\n * Should be use as in this example:\n * message Foo {\n * option (.wix.api.decomposite_of) = \"wix.commons.v2.tags.Foo\";\n * string id = 1;\n * ...\n * Tags tags = 5\n * }\n *\n * example of taggable entity\n * {\n * id: \"123\"\n * tags: {\n * public_tags: {\n * tag_ids:[\"11\",\"22\"]\n * },\n * private_tags: {\n * tag_ids: [\"33\", \"44\"]\n * }\n * }\n * }\n */\nexport interface Tags {\n /** Tags that require an additional permission in order to access them, typically restricted from site members and visitors. */\n privateTags?: TagList;\n /** Tags that are exposed to anyone with access to the entity, including site members and visitors. */\n publicTags?: TagList;\n}\n\nexport interface TagList {\n /**\n * List of tag IDs.\n * @maxSize 100\n * @maxLength 5\n */\n tagIds?: string[];\n}\n\n/** PropertyStatusChanged action event payload. */\nexport interface PropertyStatusChanged {\n /**\n * Property ID.\n * @format GUID\n */\n propertyId?: string;\n /** Previous status. */\n oldStatus?: PropertyStatusWithLiterals;\n /** New status. */\n newStatus?: PropertyStatusWithLiterals;\n /** Timestamp of the status change. */\n timestamp?: Date | null;\n}\n\n/** TagsModified action event payload. */\nexport interface TagsModified {\n /** Updated Property. */\n property?: Property;\n /** Tags that were assigned to the Property. */\n assignedTags?: Tags;\n /** Tags that were unassigned from the Property. */\n unassignedTags?: Tags;\n}\n\nexport interface CreatePropertyRequest {\n /** Property to be created. */\n property: Property;\n}\n\nexport interface CreatePropertyResponse {\n /** The created Property. */\n property?: Property;\n}\n\nexport interface GetPropertyRequest {\n /**\n * ID of the Property to retrieve.\n * @format GUID\n */\n propertyId: string;\n}\n\nexport interface GetPropertyResponse {\n /** The requested Property. */\n property?: Property;\n}\n\nexport interface UpdatePropertyRequest {\n /** Property to be updated, may be partial. */\n property: Property;\n}\n\nexport interface UpdatePropertyResponse {\n /** Updated Property. */\n property?: Property;\n}\n\nexport interface DeletePropertyRequest {\n /**\n * ID of the Property to delete.\n * @format GUID\n */\n propertyId: string;\n}\n\nexport interface DeletePropertyResponse {}\n\nexport interface QueryPropertiesRequest {\n /** WQL expression. */\n query?: CursorQuery;\n}\n\nexport interface CursorQuery extends CursorQueryPagingMethodOneOf {\n /**\n * Cursor paging options.\n *\n * Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).\n */\n cursorPaging?: CursorPaging;\n /**\n * Filter object.\n *\n * Learn more about [filtering](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#filters).\n */\n filter?: Record<string, any> | null;\n /**\n * Sort object.\n *\n * Learn more about [sorting](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#sorting).\n * @maxSize 5\n */\n sort?: Sorting[];\n}\n\n/** @oneof */\nexport interface CursorQueryPagingMethodOneOf {\n /**\n * Cursor paging options.\n *\n * Learn more about [cursor paging](https://dev.wix.com/docs/rest/articles/getting-started/api-query-language#cursor-paging).\n */\n cursorPaging?: CursorPaging;\n}\n\nexport interface Sorting {\n /**\n * Name of the field to sort by.\n * @maxLength 512\n */\n fieldName?: string;\n /** Sort order. */\n order?: SortOrderWithLiterals;\n}\n\nexport enum SortOrder {\n ASC = 'ASC',\n DESC = 'DESC',\n}\n\n/** @enumType */\nexport type SortOrderWithLiterals = SortOrder | 'ASC' | 'DESC';\n\nexport interface CursorPaging {\n /**\n * Maximum number of items to return in the results.\n * @max 100\n */\n limit?: number | null;\n /**\n * Pointer to the next or previous page in the list of results.\n *\n * Pass the relevant cursor token from the `pagingMetadata` object in the previous call's response.\n * Not relevant for the first request.\n * @maxLength 16000\n */\n cursor?: string | null;\n}\n\nexport interface QueryPropertiesResponse {\n /** List of Properties. */\n properties?: Property[];\n /** Paging metadata. */\n pagingMetadata?: CursorPagingMetadata;\n}\n\nexport interface CursorPagingMetadata {\n /** Number of items returned in current page. */\n count?: number | null;\n /** Cursor strings that point to the next page, previous page, or both. */\n cursors?: Cursors;\n /**\n * Whether there are more pages to retrieve following the current page.\n *\n * + `true`: Another page of results can be retrieved.\n * + `false`: This is the last page.\n */\n hasNext?: boolean | null;\n}\n\nexport interface Cursors {\n /**\n * Cursor string pointing to the next page in the list of results.\n * @maxLength 16000\n */\n next?: string | null;\n /**\n * Cursor pointing to the previous page in the list of results.\n * @maxLength 16000\n */\n prev?: string | null;\n}\n\nexport interface BulkCreatePropertiesRequest {\n /**\n * List of Properties to be created.\n * @minSize 1\n * @maxSize 100\n */\n properties: Property[];\n /** Set to `true` to receive back the created Properties in the response. */\n returnEntity?: boolean;\n}\n\nexport interface BulkCreatePropertiesResponse {\n /**\n * List of the bulk create operation results including the Properties and metadata.\n * @minSize 1\n * @maxSize 100\n */\n results?: BulkPropertyResult[];\n /** Metadata regarding the bulk create operation. */\n bulkActionMetadata?: BulkActionMetadata;\n}\n\nexport interface ItemMetadata {\n /**\n * Item ID. Provided only whenever possible. For example, `itemId` can't be provided when item creation has failed.\n * @format GUID\n */\n id?: string | null;\n /** Index of the item within the request array. Allows for correlation between request and response items. */\n originalIndex?: number;\n /** Whether the requested action for this item was successful. When `false`, the `error` field is returned. */\n success?: boolean;\n /** Details about the error in case of failure. */\n error?: ApplicationError;\n}\n\nexport interface ApplicationError {\n /** Error code. */\n code?: string;\n /** Description of the error. */\n description?: string;\n /** Data related to the error. */\n data?: Record<string, any> | null;\n}\n\nexport interface BulkPropertyResult {\n /** Metadata regarding the specific single create operation. */\n itemMetadata?: ItemMetadata;\n /** Only exists if `returnEntity` was set to true in the request. */\n item?: Property;\n}\n\nexport interface BulkActionMetadata {\n /** Number of items that were successfully processed. */\n totalSuccesses?: number;\n /** Number of items that couldn't be processed. */\n totalFailures?: number;\n /** Number of failures without details because detailed failure threshold was exceeded. */\n undetailedFailures?: number;\n}\n\nexport interface BulkUpdatePropertiesRequest {\n /**\n * List of Properties to be updated.\n * @minSize 1\n * @maxSize 100\n */\n properties: MaskedProperty[];\n /** Set to `true` to receive back the updated Properties in the response. */\n returnEntity?: boolean;\n}\n\nexport interface MaskedProperty {\n /** Property to be updated, may be partial. */\n property?: Property;\n}\n\nexport interface BulkUpdatePropertiesResponse {\n /**\n * Results.\n * @minSize 1\n * @maxSize 100\n */\n results?: BulkUpdatePropertiesResponseBulkPropertyResult[];\n /** Metadata regarding the bulk update operation. */\n bulkActionMetadata?: BulkActionMetadata;\n}\n\nexport interface BulkUpdatePropertiesResponseBulkPropertyResult {\n /** Metadata regarding the specific single update operation. */\n itemMetadata?: ItemMetadata;\n /** Only exists if `returnEntity` was set to true in the request. */\n item?: Property;\n}\n\nexport interface BulkDeletePropertiesRequest {\n /**\n * Property IDs to be deleted.\n * @minSize 1\n * @maxSize 100\n * @format GUID\n */\n propertyIds: string[];\n}\n\nexport interface BulkDeletePropertiesResponse {\n /**\n * Results.\n * @minSize 1\n * @maxSize 100\n */\n results?: BulkDeletePropertiesResponseBulkPropertyResult[];\n /** Metadata regarding the bulk delete operation. */\n bulkActionMetadata?: BulkActionMetadata;\n}\n\nexport interface BulkDeletePropertiesResponseBulkPropertyResult {\n /** Metadata regarding the specific single delete operation. */\n itemMetadata?: ItemMetadata;\n}\n\nexport interface BulkUpdatePropertyTagsRequest {\n /**\n * List of Property IDs whose tags will be updated.\n * @minSize 1\n * @maxSize 100\n * @format GUID\n */\n propertyIds: string[];\n /** List of tags to assign. */\n assignTags?: Tags;\n /** List of tags to unassign. */\n unassignTags?: Tags;\n}\n\nexport interface BulkUpdatePropertyTagsResponse {\n /**\n * Results.\n * @minSize 1\n * @maxSize 100\n */\n results?: BulkUpdatePropertyTagsResult[];\n /** Metadata regarding the bulk update operation. */\n bulkActionMetadata?: BulkActionMetadata;\n}\n\nexport interface BulkUpdatePropertyTagsResult {\n /** Metadata regarding the specific single update operation. */\n itemMetadata?: ItemMetadata;\n}\n\nexport interface DomainEvent extends DomainEventBodyOneOf {\n createdEvent?: EntityCreatedEvent;\n updatedEvent?: EntityUpdatedEvent;\n deletedEvent?: EntityDeletedEvent;\n actionEvent?: ActionEvent;\n /** Event ID. With this ID you can easily spot duplicated events and ignore them. */\n id?: string;\n /**\n * Fully Qualified Domain Name of an entity. This is a unique identifier assigned to the API main business entities.\n * For example, `wix.stores.catalog.product`, `wix.bookings.session`, `wix.payments.transaction`.\n */\n entityFqdn?: string;\n /**\n * Event action name, placed at the top level to make it easier for users to dispatch messages.\n * For example: `created`/`updated`/`deleted`/`started`/`completed`/`email_opened`.\n */\n slug?: string;\n /** ID of the entity associated with the event. */\n entityId?: string;\n /** Event timestamp in [ISO-8601](https://en.wikipedia.org/wiki/ISO_8601) format and UTC time. For example, `2020-04-26T13:57:50.699Z`. */\n eventTime?: Date | null;\n /**\n * Whether the event was triggered as a result of a privacy regulation application\n * (for example, GDPR).\n */\n triggeredByAnonymizeRequest?: boolean | null;\n /** If present, indicates the action that triggered the event. */\n originatedFrom?: string | null;\n /**\n * A sequence number that indicates the order of updates to an entity. For example, if an entity was updated at 16:00 and then again at 16:01, the second update will always have a higher sequence number.\n * 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.\n */\n entityEventSequence?: string | null;\n}\n\n/** @oneof */\nexport interface DomainEventBodyOneOf {\n createdEvent?: EntityCreatedEvent;\n updatedEvent?: EntityUpdatedEvent;\n deletedEvent?: EntityDeletedEvent;\n actionEvent?: ActionEvent;\n}\n\nexport interface EntityCreatedEvent {\n entityAsJson?: string;\n /** Indicates the event was triggered by a restore-from-trashbin operation for a previously deleted entity */\n restoreInfo?: RestoreInfo;\n}\n\nexport interface RestoreInfo {\n deletedDate?: Date | null;\n}\n\nexport interface EntityUpdatedEvent {\n /**\n * Since platformized APIs only expose PATCH and not PUT we can't assume that the fields sent from the client are the actual diff.\n * This means that to generate a list of changed fields (as opposed to sent fields) one needs to traverse both objects.\n * We don't want to impose this on all developers and so we leave this traversal to the notification recipients which need it.\n */\n currentEntityAsJson?: string;\n}\n\nexport interface EntityDeletedEvent {\n /** Entity that was deleted. */\n deletedEntityAsJson?: string | null;\n}\n\nexport interface ActionEvent {\n bodyAsJson?: string;\n}\n\nexport interface Empty {}\n\nexport interface BulkUpdatePropertyTagsByFilterRequest {\n /** Filter. */\n filter: Record<string, any> | null;\n /** List of tags to assign. */\n assignTags?: Tags;\n /** List of tags to unassign. */\n unassignTags?: Tags;\n}\n\nexport interface BulkUpdatePropertyTagsByFilterResponse {\n /**\n * Job ID for tracking the async operation.\n * @format GUID\n */\n jobId?: string;\n}\n\nexport interface MessageEnvelope {\n /**\n * App instance ID.\n * @format GUID\n */\n instanceId?: string | null;\n /**\n * Event type.\n * @maxLength 150\n */\n eventType?: string;\n /** The identification type and identity data. */\n identity?: IdentificationData;\n /** Stringify payload. */\n data?: string;\n /** Details related to the account */\n accountInfo?: AccountInfo;\n}\n\nexport interface IdentificationData extends IdentificationDataIdOneOf {\n /**\n * ID of a site visitor that has not logged in to the site.\n * @format GUID\n */\n anonymousVisitorId?: string;\n /**\n * ID of a site visitor that has logged in to the site.\n * @format GUID\n */\n memberId?: string;\n /**\n * ID of a Wix user (site owner, contributor, etc.).\n * @format GUID\n */\n wixUserId?: string;\n /**\n * ID of an app.\n * @format GUID\n */\n appId?: string;\n /** @readonly */\n identityType?: WebhookIdentityTypeWithLiterals;\n}\n\n/** @oneof */\nexport interface IdentificationDataIdOneOf {\n /**\n * ID of a site visitor that has not logged in to the site.\n * @format GUID\n */\n anonymousVisitorId?: string;\n /**\n * ID of a site visitor that has logged in to the site.\n * @format GUID\n */\n memberId?: string;\n /**\n * ID of a Wix user (site owner, contributor, etc.).\n * @format GUID\n */\n wixUserId?: string;\n /**\n * ID of an app.\n * @format GUID\n */\n appId?: string;\n}\n\nexport enum WebhookIdentityType {\n UNKNOWN = 'UNKNOWN',\n ANONYMOUS_VISITOR = 'ANONYMOUS_VISITOR',\n MEMBER = 'MEMBER',\n WIX_USER = 'WIX_USER',\n APP = 'APP',\n}\n\n/** @enumType */\nexport type WebhookIdentityTypeWithLiterals =\n | WebhookIdentityType\n | 'UNKNOWN'\n | 'ANONYMOUS_VISITOR'\n | 'MEMBER'\n | 'WIX_USER'\n | 'APP';\n\nexport interface AccountInfo {\n /**\n * ID of the Wix account associated with the event.\n * @format GUID\n */\n accountId?: string | null;\n /**\n * ID of the parent Wix account. Only included when accountId belongs to a child account.\n * @format GUID\n */\n parentAccountId?: string | null;\n /**\n * ID of the Wix site associated with the event. Only included when the event is tied to a specific site.\n * @format GUID\n */\n siteId?: string | null;\n}\n\n/** @docsIgnore */\nexport type BulkUpdatePropertyTagsApplicationErrors = {\n code?: 'EMPTY_ASSIGN_AND_UNASSIGN_LISTS';\n description?: string;\n data?: Record<string, any>;\n};\n/** @docsIgnore */\nexport type BulkUpdatePropertyTagsByFilterApplicationErrors = {\n code?: 'EMPTY_ASSIGN_AND_UNASSIGN_LISTS';\n description?: string;\n data?: Record<string, any>;\n};\n","import * as ambassadorWixRealEstateV1Property from './real-estate-v1-property-property.http.js';\nimport * as ambassadorWixRealEstateV1PropertyTypes from './real-estate-v1-property-property.types.js';\nimport * as ambassadorWixRealEstateV1PropertyUniversalTypes from './real-estate-v1-property-property.universal.js';\n\nexport type __PublicMethodMetaInfo<\n K = string,\n M = unknown,\n T = unknown,\n S = unknown,\n Q = unknown,\n R = unknown\n> = {\n getUrl: (context: any) => string;\n httpMethod: K;\n path: string;\n pathParams: M;\n __requestType: T;\n __originalRequestType: S;\n __responseType: Q;\n __originalResponseType: R;\n};\n\nexport function createProperty(): __PublicMethodMetaInfo<\n 'POST',\n {},\n ambassadorWixRealEstateV1PropertyUniversalTypes.CreatePropertyRequest,\n ambassadorWixRealEstateV1PropertyTypes.CreatePropertyRequest,\n ambassadorWixRealEstateV1PropertyUniversalTypes.CreatePropertyResponse,\n ambassadorWixRealEstateV1PropertyTypes.CreatePropertyResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions =\n ambassadorWixRealEstateV1Property.createProperty(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v1/properties',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function getProperty(): __PublicMethodMetaInfo<\n 'GET',\n { propertyId: string },\n ambassadorWixRealEstateV1PropertyUniversalTypes.GetPropertyRequest,\n ambassadorWixRealEstateV1PropertyTypes.GetPropertyRequest,\n ambassadorWixRealEstateV1PropertyUniversalTypes.GetPropertyResponse,\n ambassadorWixRealEstateV1PropertyTypes.GetPropertyResponse\n> {\n const payload = { propertyId: ':propertyId' } as any;\n\n const getRequestOptions =\n ambassadorWixRealEstateV1Property.getProperty(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'GET',\n path: '/v1/properties/{propertyId}',\n pathParams: { propertyId: 'propertyId' },\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function updateProperty(): __PublicMethodMetaInfo<\n 'PATCH',\n { propertyId: string },\n ambassadorWixRealEstateV1PropertyUniversalTypes.UpdatePropertyRequest,\n ambassadorWixRealEstateV1PropertyTypes.UpdatePropertyRequest,\n ambassadorWixRealEstateV1PropertyUniversalTypes.UpdatePropertyResponse,\n ambassadorWixRealEstateV1PropertyTypes.UpdatePropertyResponse\n> {\n const payload = { property: { id: ':propertyId' } } as any;\n\n const getRequestOptions =\n ambassadorWixRealEstateV1Property.updateProperty(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'PATCH',\n path: '/v1/properties/{property.id}',\n pathParams: { propertyId: 'propertyId' },\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function deleteProperty(): __PublicMethodMetaInfo<\n 'DELETE',\n { propertyId: string },\n ambassadorWixRealEstateV1PropertyUniversalTypes.DeletePropertyRequest,\n ambassadorWixRealEstateV1PropertyTypes.DeletePropertyRequest,\n ambassadorWixRealEstateV1PropertyUniversalTypes.DeletePropertyResponse,\n ambassadorWixRealEstateV1PropertyTypes.DeletePropertyResponse\n> {\n const payload = { propertyId: ':propertyId' } as any;\n\n const getRequestOptions =\n ambassadorWixRealEstateV1Property.deleteProperty(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'DELETE',\n path: '/v1/properties/{propertyId}',\n pathParams: { propertyId: 'propertyId' },\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function queryProperties(): __PublicMethodMetaInfo<\n 'GET',\n {},\n ambassadorWixRealEstateV1PropertyUniversalTypes.QueryPropertiesRequest,\n ambassadorWixRealEstateV1PropertyTypes.QueryPropertiesRequest,\n ambassadorWixRealEstateV1PropertyUniversalTypes.QueryPropertiesResponse,\n ambassadorWixRealEstateV1PropertyTypes.QueryPropertiesResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions =\n ambassadorWixRealEstateV1Property.queryProperties(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'GET',\n path: '/v1/properties/query',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function bulkCreateProperties(): __PublicMethodMetaInfo<\n 'POST',\n {},\n ambassadorWixRealEstateV1PropertyUniversalTypes.BulkCreatePropertiesRequest,\n ambassadorWixRealEstateV1PropertyTypes.BulkCreatePropertiesRequest,\n ambassadorWixRealEstateV1PropertyUniversalTypes.BulkCreatePropertiesResponse,\n ambassadorWixRealEstateV1PropertyTypes.BulkCreatePropertiesResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions =\n ambassadorWixRealEstateV1Property.bulkCreateProperties(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v1/bulk/properties/create',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function bulkUpdateProperties(): __PublicMethodMetaInfo<\n 'POST',\n {},\n ambassadorWixRealEstateV1PropertyUniversalTypes.BulkUpdatePropertiesRequest,\n ambassadorWixRealEstateV1PropertyTypes.BulkUpdatePropertiesRequest,\n ambassadorWixRealEstateV1PropertyUniversalTypes.BulkUpdatePropertiesResponse,\n ambassadorWixRealEstateV1PropertyTypes.BulkUpdatePropertiesResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions =\n ambassadorWixRealEstateV1Property.bulkUpdateProperties(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v1/bulk/properties/update',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function bulkDeleteProperties(): __PublicMethodMetaInfo<\n 'POST',\n {},\n ambassadorWixRealEstateV1PropertyUniversalTypes.BulkDeletePropertiesRequest,\n ambassadorWixRealEstateV1PropertyTypes.BulkDeletePropertiesRequest,\n ambassadorWixRealEstateV1PropertyUniversalTypes.BulkDeletePropertiesResponse,\n ambassadorWixRealEstateV1PropertyTypes.BulkDeletePropertiesResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions =\n ambassadorWixRealEstateV1Property.bulkDeleteProperties(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v1/bulk/properties/delete',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function bulkUpdatePropertyTags(): __PublicMethodMetaInfo<\n 'POST',\n {},\n ambassadorWixRealEstateV1PropertyUniversalTypes.BulkUpdatePropertyTagsRequest,\n ambassadorWixRealEstateV1PropertyTypes.BulkUpdatePropertyTagsRequest,\n ambassadorWixRealEstateV1PropertyUniversalTypes.BulkUpdatePropertyTagsResponse,\n ambassadorWixRealEstateV1PropertyTypes.BulkUpdatePropertyTagsResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions =\n ambassadorWixRealEstateV1Property.bulkUpdatePropertyTags(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v1/bulk/properties/update-tags',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport function bulkUpdatePropertyTagsByFilter(): __PublicMethodMetaInfo<\n 'POST',\n {},\n ambassadorWixRealEstateV1PropertyUniversalTypes.BulkUpdatePropertyTagsByFilterRequest,\n ambassadorWixRealEstateV1PropertyTypes.BulkUpdatePropertyTagsByFilterRequest,\n ambassadorWixRealEstateV1PropertyUniversalTypes.BulkUpdatePropertyTagsByFilterResponse,\n ambassadorWixRealEstateV1PropertyTypes.BulkUpdatePropertyTagsByFilterResponse\n> {\n const payload = {} as any;\n\n const getRequestOptions =\n ambassadorWixRealEstateV1Property.bulkUpdatePropertyTagsByFilter(payload);\n\n const getUrl = (context: any): string => {\n const { url } = getRequestOptions(context);\n return url!;\n };\n\n return {\n getUrl,\n httpMethod: 'POST',\n path: '/v1/bulk/properties/update-tags-by-filter',\n pathParams: {},\n __requestType: null as any,\n __originalRequestType: null as any,\n __responseType: null as any,\n __originalResponseType: null as any,\n };\n}\n\nexport {\n Property as PropertyOriginal,\n Money as MoneyOriginal,\n PropertyStatus as PropertyStatusOriginal,\n PropertyStatusWithLiterals as PropertyStatusWithLiteralsOriginal,\n PropertyType as PropertyTypeOriginal,\n PropertyTypeWithLiterals as PropertyTypeWithLiteralsOriginal,\n PropertyPhoto as PropertyPhotoOriginal,\n PropertyDocument as PropertyDocumentOriginal,\n DocumentType as DocumentTypeOriginal,\n DocumentTypeWithLiterals as DocumentTypeWithLiteralsOriginal,\n CustomField as CustomFieldOriginal,\n CustomFieldType as CustomFieldTypeOriginal,\n CustomFieldTypeWithLiterals as CustomFieldTypeWithLiteralsOriginal,\n PropertySource as PropertySourceOriginal,\n PropertySourceWithLiterals as PropertySourceWithLiteralsOriginal,\n ExtendedFields as ExtendedFieldsOriginal,\n Tags as TagsOriginal,\n TagList as TagListOriginal,\n PropertyStatusChanged as PropertyStatusChangedOriginal,\n TagsModified as TagsModifiedOriginal,\n CreatePropertyRequest as CreatePropertyRequestOriginal,\n CreatePropertyResponse as CreatePropertyResponseOriginal,\n GetPropertyRequest as GetPropertyRequestOriginal,\n GetPropertyResponse as GetPropertyResponseOriginal,\n UpdatePropertyRequest as UpdatePropertyRequestOriginal,\n UpdatePropertyResponse as UpdatePropertyResponseOriginal,\n DeletePropertyRequest as DeletePropertyRequestOriginal,\n DeletePropertyResponse as DeletePropertyResponseOriginal,\n QueryPropertiesRequest as QueryPropertiesRequestOriginal,\n CursorQuery as CursorQueryOriginal,\n CursorQueryPagingMethodOneOf as CursorQueryPagingMethodOneOfOriginal,\n Sorting as SortingOriginal,\n SortOrder as SortOrderOriginal,\n SortOrderWithLiterals as SortOrderWithLiteralsOriginal,\n CursorPaging as CursorPagingOriginal,\n QueryPropertiesResponse as QueryPropertiesResponseOriginal,\n CursorPagingMetadata as CursorPagingMetadataOriginal,\n Cursors as CursorsOriginal,\n BulkCreatePropertiesRequest as BulkCreatePropertiesRequestOriginal,\n BulkCreatePropertiesResponse as BulkCreatePropertiesResponseOriginal,\n ItemMetadata as ItemMetadataOriginal,\n ApplicationError as ApplicationErrorOriginal,\n BulkPropertyResult as BulkPropertyResultOriginal,\n BulkActionMetadata as BulkActionMetadataOriginal,\n BulkUpdatePropertiesRequest as BulkUpdatePropertiesRequestOriginal,\n MaskedProperty as MaskedPropertyOriginal,\n BulkUpdatePropertiesResponse as BulkUpdatePropertiesResponseOriginal,\n BulkUpdatePropertiesResponseBulkPropertyResult as BulkUpdatePropertiesResponseBulkPropertyResultOriginal,\n BulkDeletePropertiesRequest as BulkDeletePropertiesRequestOriginal,\n BulkDeletePropertiesResponse as BulkDeletePropertiesResponseOriginal,\n BulkDeletePropertiesResponseBulkPropertyResult as BulkDeletePropertiesResponseBulkPropertyResultOriginal,\n BulkUpdatePropertyTagsRequest as BulkUpdatePropertyTagsRequestOriginal,\n BulkUpdatePropertyTagsResponse as BulkUpdatePropertyTagsResponseOriginal,\n BulkUpdatePropertyTagsResult as BulkUpdatePropertyTagsResultOriginal,\n DomainEvent as DomainEventOriginal,\n DomainEventBodyOneOf as DomainEventBodyOneOfOriginal,\n EntityCreatedEvent as EntityCreatedEventOriginal,\n RestoreInfo as RestoreInfoOriginal,\n EntityUpdatedEvent as EntityUpdatedEventOriginal,\n EntityDeletedEvent as EntityDeletedEventOriginal,\n ActionEvent as ActionEventOriginal,\n Empty as EmptyOriginal,\n BulkUpdatePropertyTagsByFilterRequest as BulkUpdatePropertyTagsByFilterRequestOriginal,\n BulkUpdatePropertyTagsByFilterResponse as BulkUpdatePropertyTagsByFilterResponseOriginal,\n MessageEnvelope as MessageEnvelopeOriginal,\n IdentificationData as IdentificationDataOriginal,\n IdentificationDataIdOneOf as IdentificationDataIdOneOfOriginal,\n WebhookIdentityType as WebhookIdentityTypeOriginal,\n WebhookIdentityTypeWithLiterals as WebhookIdentityTypeWithLiteralsOriginal,\n AccountInfo as AccountInfoOriginal,\n BulkUpdatePropertyTagsApplicationErrors as BulkUpdatePropertyTagsApplicationErrorsOriginal,\n BulkUpdatePropertyTagsByFilterApplicationErrors as BulkUpdatePropertyTagsByFilterApplicationErrorsOriginal,\n} from './real-estate-v1-property-property.types.js';\n"],"mappings":"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","names":["payload","PropertyStatus","PropertyType","DocumentType","CustomFieldType","PropertySource","SortOrder","WebhookIdentityType","createProperty","getProperty","updateProperty","deleteProperty","queryProperties","bulkCreateProperties","bulkUpdateProperties","bulkDeleteProperties","bulkUpdatePropertyTags","bulkUpdatePropertyTagsByFilter"]}
@@ -0,0 +1,3 @@
1
+ {
2
+ "type": "module"
3
+ }
@@ -0,0 +1,123 @@
1
+ import { HttpClient, NonNullablePaths, MaybeContext, BuildRESTFunction } from '@wix/sdk-types';
2
+ import { Property, UpdateProperty, BulkCreatePropertiesOptions, BulkCreatePropertiesResponse, MaskedProperty, BulkUpdatePropertiesOptions, BulkUpdatePropertiesResponse, BulkDeletePropertiesResponse, BulkUpdatePropertyTagsOptions, BulkUpdatePropertyTagsResponse, BulkUpdatePropertyTagsApplicationErrors, BulkUpdatePropertyTagsByFilterOptions, BulkUpdatePropertyTagsByFilterResponse, BulkUpdatePropertyTagsByFilterApplicationErrors, PropertiesQueryBuilder, PropertyQuery, typedQueryProperties } from './index.typings.js';
3
+ export { AccountInfo, ActionEvent, ApplicationError, BulkActionMetadata, BulkCreatePropertiesRequest, BulkDeletePropertiesRequest, BulkDeletePropertiesResponseBulkPropertyResult, BulkPropertyResult, BulkUpdatePropertiesRequest, BulkUpdatePropertiesResponseBulkPropertyResult, BulkUpdatePropertyTagsByFilterRequest, BulkUpdatePropertyTagsRequest, BulkUpdatePropertyTagsResult, CommonQueryWithEntityContext, CreatePropertyRequest, CreatePropertyResponse, CursorPaging, CursorPagingMetadata, CursorQuery, CursorQueryPagingMethodOneOf, Cursors, CustomField, CustomFieldType, CustomFieldTypeWithLiterals, DeletePropertyRequest, DeletePropertyResponse, DocumentType, DocumentTypeWithLiterals, DomainEvent, DomainEventBodyOneOf, Empty, EntityCreatedEvent, EntityDeletedEvent, EntityUpdatedEvent, ExtendedFields, Filter, GetPropertyRequest, GetPropertyResponse, IdentificationData, IdentificationDataIdOneOf, ItemMetadata, MessageEnvelope, Money, PropertiesQueryResult, PropertyDocument, PropertyPhoto, PropertyQuerySpec, PropertySource, PropertySourceWithLiterals, PropertyStatus, PropertyStatusChanged, PropertyStatusWithLiterals, PropertyType, PropertyTypeWithLiterals, QueryBuilder, QueryPropertiesRequest, QueryPropertiesResponse, RestoreInfo, Sort, SortOrder, SortOrderWithLiterals, Sorting, TagList, Tags, TagsModified, UpdatePropertyRequest, UpdatePropertyResponse, WebhookIdentityType, WebhookIdentityTypeWithLiterals } from './index.typings.js';
4
+
5
+ /** @internal */
6
+ declare function createProperty$1(httpClient: HttpClient): CreatePropertySignature;
7
+ interface CreatePropertySignature {
8
+ /**
9
+ * Creates a Property.
10
+ * @param - Property to be created.
11
+ * @returns The created Property.
12
+ */
13
+ (property: NonNullablePaths<Property, `address` | `city` | `price` | `propertyType` | `state` | `status` | `zip`, 2>): Promise<NonNullablePaths<Property, `address` | `city` | `state` | `zip` | `price.value` | `price.currency` | `status` | `propertyType` | `description` | `features` | `photos` | `photos.${number}.url` | `photos.${number}.altText` | `photos.${number}.order` | `documents` | `documents.${number}.url` | `documents.${number}.title` | `documents.${number}.type` | `customFields` | `customFields.${number}.key` | `customFields.${number}.value` | `customFields.${number}.type` | `source` | `editable` | `tags.privateTags.tagIds`, 4>>;
14
+ }
15
+ /** @internal */
16
+ declare function getProperty$1(httpClient: HttpClient): GetPropertySignature;
17
+ interface GetPropertySignature {
18
+ /**
19
+ * Retrieves a Property.
20
+ * @param - ID of the Property to retrieve.
21
+ * @returns The requested Property.
22
+ */
23
+ (propertyId: string): Promise<NonNullablePaths<Property, `address` | `city` | `state` | `zip` | `price.value` | `price.currency` | `status` | `propertyType` | `description` | `features` | `photos` | `photos.${number}.url` | `photos.${number}.altText` | `photos.${number}.order` | `documents` | `documents.${number}.url` | `documents.${number}.title` | `documents.${number}.type` | `customFields` | `customFields.${number}.key` | `customFields.${number}.value` | `customFields.${number}.type` | `source` | `editable` | `tags.privateTags.tagIds`, 4>>;
24
+ }
25
+ /** @internal */
26
+ declare function updateProperty$1(httpClient: HttpClient): UpdatePropertySignature;
27
+ interface UpdatePropertySignature {
28
+ /**
29
+ * Updates a Property.
30
+ * Each time the Property is updated, `revision` increments by 1.
31
+ * The current `revision` must be passed when updating the Property.
32
+ * @param - Property ID.
33
+ * @returns Updated Property.
34
+ */
35
+ (_id: string, property: NonNullablePaths<UpdateProperty, `revision`, 2>): Promise<NonNullablePaths<Property, `address` | `city` | `state` | `zip` | `price.value` | `price.currency` | `status` | `propertyType` | `description` | `features` | `photos` | `photos.${number}.url` | `photos.${number}.altText` | `photos.${number}.order` | `documents` | `documents.${number}.url` | `documents.${number}.title` | `documents.${number}.type` | `customFields` | `customFields.${number}.key` | `customFields.${number}.value` | `customFields.${number}.type` | `source` | `editable` | `tags.privateTags.tagIds`, 4>>;
36
+ }
37
+ /** @internal */
38
+ declare function deleteProperty$1(httpClient: HttpClient): DeletePropertySignature;
39
+ interface DeletePropertySignature {
40
+ /**
41
+ * Deletes a Property.
42
+ * @param - ID of the Property to delete.
43
+ */
44
+ (propertyId: string): Promise<void>;
45
+ }
46
+ /** @internal */
47
+ declare function bulkCreateProperties$1(httpClient: HttpClient): BulkCreatePropertiesSignature;
48
+ interface BulkCreatePropertiesSignature {
49
+ /**
50
+ * Creates multiple Properties in a single request. Works synchronously.
51
+ * @param - List of Properties to be created.
52
+ */
53
+ (properties: Property[], options?: BulkCreatePropertiesOptions): Promise<NonNullablePaths<BulkCreatePropertiesResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `results.${number}.item.address` | `results.${number}.item.city` | `results.${number}.item.state` | `results.${number}.item.zip` | `results.${number}.item.price.value` | `results.${number}.item.price.currency` | `results.${number}.item.status` | `results.${number}.item.propertyType` | `results.${number}.item.description` | `results.${number}.item.source` | `results.${number}.item.editable` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6>>;
54
+ }
55
+ /** @internal */
56
+ declare function bulkUpdateProperties$1(httpClient: HttpClient): BulkUpdatePropertiesSignature;
57
+ interface BulkUpdatePropertiesSignature {
58
+ /**
59
+ * Updates multiple Properties in a single request. Works synchronously.
60
+ * @param - List of Properties to be updated.
61
+ */
62
+ (properties: NonNullablePaths<MaskedProperty, `property._id` | `property.revision`, 3>[], options?: BulkUpdatePropertiesOptions): Promise<NonNullablePaths<BulkUpdatePropertiesResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `results.${number}.item.address` | `results.${number}.item.city` | `results.${number}.item.state` | `results.${number}.item.zip` | `results.${number}.item.price.value` | `results.${number}.item.price.currency` | `results.${number}.item.status` | `results.${number}.item.propertyType` | `results.${number}.item.description` | `results.${number}.item.source` | `results.${number}.item.editable` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6>>;
63
+ }
64
+ /** @internal */
65
+ declare function bulkDeleteProperties$1(httpClient: HttpClient): BulkDeletePropertiesSignature;
66
+ interface BulkDeletePropertiesSignature {
67
+ /**
68
+ * Deletes multiple Properties in a single request. Works synchronously.
69
+ * @param - Property IDs to be deleted.
70
+ */
71
+ (propertyIds: string[]): Promise<NonNullablePaths<BulkDeletePropertiesResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6>>;
72
+ }
73
+ /** @internal */
74
+ declare function bulkUpdatePropertyTags$1(httpClient: HttpClient): BulkUpdatePropertyTagsSignature;
75
+ interface BulkUpdatePropertyTagsSignature {
76
+ /**
77
+ * Synchronously updates tags on multiple Properties by list of Property IDs.
78
+ * A tag that appears both in the list of assign and unassign tags will be assigned.
79
+ * @param - List of Property IDs whose tags will be updated.
80
+ */
81
+ (propertyIds: string[], options?: BulkUpdatePropertyTagsOptions): Promise<NonNullablePaths<BulkUpdatePropertyTagsResponse, `results` | `results.${number}.itemMetadata.originalIndex` | `results.${number}.itemMetadata.success` | `results.${number}.itemMetadata.error.code` | `results.${number}.itemMetadata.error.description` | `bulkActionMetadata.totalSuccesses` | `bulkActionMetadata.totalFailures` | `bulkActionMetadata.undetailedFailures`, 6> & {
82
+ __applicationErrorsType?: BulkUpdatePropertyTagsApplicationErrors;
83
+ }>;
84
+ }
85
+ /** @internal */
86
+ declare function bulkUpdatePropertyTagsByFilter$1(httpClient: HttpClient): BulkUpdatePropertyTagsByFilterSignature;
87
+ interface BulkUpdatePropertyTagsByFilterSignature {
88
+ /**
89
+ * Asynchronously updates tags on multiple Properties by provided filter.
90
+ * An empty filter will update all Properties.
91
+ * A tag that appears both in the list of assign and unassign tags will be assigned.
92
+ * @param - Filter.
93
+ */
94
+ (filter: Record<string, any>, options?: BulkUpdatePropertyTagsByFilterOptions): Promise<NonNullablePaths<BulkUpdatePropertyTagsByFilterResponse, `jobId`, 2> & {
95
+ __applicationErrorsType?: BulkUpdatePropertyTagsByFilterApplicationErrors;
96
+ }>;
97
+ }
98
+
99
+ declare function customQueryProperties(httpClient: HttpClient): {
100
+ (): PropertiesQueryBuilder;
101
+ (query: PropertyQuery): ReturnType<typeof typedQueryProperties>;
102
+ };
103
+ /** @internal */
104
+ declare const createProperty: MaybeContext<BuildRESTFunction<typeof createProperty$1> & typeof createProperty$1>;
105
+ /** @internal */
106
+ declare const getProperty: MaybeContext<BuildRESTFunction<typeof getProperty$1> & typeof getProperty$1>;
107
+ /** @internal */
108
+ declare const updateProperty: MaybeContext<BuildRESTFunction<typeof updateProperty$1> & typeof updateProperty$1>;
109
+ /** @internal */
110
+ declare const deleteProperty: MaybeContext<BuildRESTFunction<typeof deleteProperty$1> & typeof deleteProperty$1>;
111
+ /** @internal */
112
+ declare const bulkCreateProperties: MaybeContext<BuildRESTFunction<typeof bulkCreateProperties$1> & typeof bulkCreateProperties$1>;
113
+ /** @internal */
114
+ declare const bulkUpdateProperties: MaybeContext<BuildRESTFunction<typeof bulkUpdateProperties$1> & typeof bulkUpdateProperties$1>;
115
+ /** @internal */
116
+ declare const bulkDeleteProperties: MaybeContext<BuildRESTFunction<typeof bulkDeleteProperties$1> & typeof bulkDeleteProperties$1>;
117
+ /** @internal */
118
+ declare const bulkUpdatePropertyTags: MaybeContext<BuildRESTFunction<typeof bulkUpdatePropertyTags$1> & typeof bulkUpdatePropertyTags$1>;
119
+ /** @internal */
120
+ declare const bulkUpdatePropertyTagsByFilter: MaybeContext<BuildRESTFunction<typeof bulkUpdatePropertyTagsByFilter$1> & typeof bulkUpdatePropertyTagsByFilter$1>;
121
+ declare const queryProperties: MaybeContext<BuildRESTFunction<typeof customQueryProperties> & typeof customQueryProperties>;
122
+
123
+ export { BulkCreatePropertiesOptions, BulkCreatePropertiesResponse, BulkDeletePropertiesResponse, BulkUpdatePropertiesOptions, BulkUpdatePropertiesResponse, BulkUpdatePropertyTagsApplicationErrors, BulkUpdatePropertyTagsByFilterApplicationErrors, BulkUpdatePropertyTagsByFilterOptions, BulkUpdatePropertyTagsByFilterResponse, BulkUpdatePropertyTagsOptions, BulkUpdatePropertyTagsResponse, MaskedProperty, PropertiesQueryBuilder, Property, PropertyQuery, UpdateProperty, bulkCreateProperties, bulkDeleteProperties, bulkUpdateProperties, bulkUpdatePropertyTags, bulkUpdatePropertyTagsByFilter, createProperty, deleteProperty, getProperty, queryProperties, updateProperty };