@ember-home/unbound-ts-client 0.0.103 → 0.0.104

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.mts CHANGED
@@ -762,28 +762,64 @@ interface APIContent {
762
762
  'parentId': string;
763
763
  /**
764
764
  *
765
- * @type {ContentVersionApi}
765
+ * @type {string}
766
766
  * @memberof APIContent
767
767
  */
768
- 'currentVersion': ContentVersionApi;
768
+ 'createdAt': string;
769
769
  /**
770
770
  *
771
771
  * @type {string}
772
772
  * @memberof APIContent
773
773
  */
774
- 'createdAt': string;
774
+ 'updatedAt': string;
775
775
  /**
776
776
  *
777
777
  * @type {string}
778
778
  * @memberof APIContent
779
779
  */
780
- 'updatedAt': string;
780
+ 'deletedAt'?: string | null;
781
781
  /**
782
782
  *
783
783
  * @type {string}
784
784
  * @memberof APIContent
785
785
  */
786
- 'deletedAt'?: string | null;
786
+ 'currentVersionId': string;
787
+ /**
788
+ *
789
+ * @type {number}
790
+ * @memberof APIContent
791
+ */
792
+ 'version': number;
793
+ /**
794
+ *
795
+ * @type {string}
796
+ * @memberof APIContent
797
+ */
798
+ 'title': string;
799
+ /**
800
+ *
801
+ * @type {string}
802
+ * @memberof APIContent
803
+ */
804
+ 'description': string;
805
+ /**
806
+ *
807
+ * @type {Contenttypedata}
808
+ * @memberof APIContent
809
+ */
810
+ 'contentTypeData': Contenttypedata;
811
+ /**
812
+ *
813
+ * @type {string}
814
+ * @memberof APIContent
815
+ */
816
+ 'versionCreatedAt': string;
817
+ /**
818
+ *
819
+ * @type {string}
820
+ * @memberof APIContent
821
+ */
822
+ 'createdBy': string;
787
823
  }
788
824
  /**
789
825
  *
@@ -805,10 +841,10 @@ interface APIContentUpdate {
805
841
  'description'?: string | null;
806
842
  /**
807
843
  *
808
- * @type {Contenttypedata}
844
+ * @type {Contenttypedata1}
809
845
  * @memberof APIContentUpdate
810
846
  */
811
- 'contentTypeData'?: Contenttypedata | null;
847
+ 'contentTypeData'?: Contenttypedata1 | null;
812
848
  }
813
849
  /**
814
850
  *
@@ -854,10 +890,10 @@ interface APIContentVersion {
854
890
  'description': string;
855
891
  /**
856
892
  *
857
- * @type {Contenttypedata1}
893
+ * @type {Contenttypedata}
858
894
  * @memberof APIContentVersion
859
895
  */
860
- 'contentTypeData': Contenttypedata1;
896
+ 'contentTypeData': Contenttypedata;
861
897
  /**
862
898
  *
863
899
  * @type {string}
@@ -2186,7 +2222,7 @@ interface ContactTypeDataApi {
2186
2222
  */
2187
2223
  type Contactcreate = APIContactCreate1 | APIContactCreate2;
2188
2224
  /**
2189
- * Logical content resource. Points to a current version. Title, description, and content_type_data are stored on the version for history tracking. Belongs to exactly one parent resource (listing or tag).
2225
+ * Logical content resource with current version fields hoisted. Title, description, and content_type_data are stored on versions for history tracking, but hoisted to top level for the current version. Belongs to exactly one parent resource (listing or tag).
2190
2226
  * @export
2191
2227
  * @interface Content
2192
2228
  */
@@ -2209,12 +2245,6 @@ interface Content {
2209
2245
  * @memberof Content
2210
2246
  */
2211
2247
  'parentId': string;
2212
- /**
2213
- *
2214
- * @type {ContentVersion}
2215
- * @memberof Content
2216
- */
2217
- 'currentVersion': ContentVersion;
2218
2248
  /**
2219
2249
  *
2220
2250
  * @type {string}
@@ -2233,161 +2263,59 @@ interface Content {
2233
2263
  * @memberof Content
2234
2264
  */
2235
2265
  'deletedAt'?: string | null;
2236
- }
2237
- /**
2238
- * Types of resources that can own content.
2239
- * @export
2240
- * @enum {string}
2241
- */
2242
- declare const ContentParentResource: {
2243
- readonly Listing: "LISTING";
2244
- readonly Tag: "TAG";
2245
- };
2246
- type ContentParentResource = typeof ContentParentResource[keyof typeof ContentParentResource];
2247
- /**
2248
- * Immutable content version snapshot. Contains the actual content_type_data describing the content at a point in time. Once created, it is never mutated.
2249
- * @export
2250
- * @interface ContentVersion
2251
- */
2252
- interface ContentVersion {
2253
2266
  /**
2254
2267
  *
2255
2268
  * @type {string}
2256
- * @memberof ContentVersion
2257
- */
2258
- 'contentItemVersionId': string;
2259
- /**
2260
- *
2261
- * @type {string}
2262
- * @memberof ContentVersion
2263
- */
2264
- 'contentItemId': string;
2265
- /**
2266
- *
2267
- * @type {string}
2268
- * @memberof ContentVersion
2269
+ * @memberof Content
2269
2270
  */
2270
- 'parentResource': ContentVersionParentResourceEnum;
2271
+ 'currentVersionId': string;
2271
2272
  /**
2272
2273
  *
2273
2274
  * @type {number}
2274
- * @memberof ContentVersion
2275
+ * @memberof Content
2275
2276
  */
2276
2277
  'version': number;
2277
2278
  /**
2278
2279
  *
2279
2280
  * @type {string}
2280
- * @memberof ContentVersion
2281
+ * @memberof Content
2281
2282
  */
2282
2283
  'title': string;
2283
2284
  /**
2284
2285
  *
2285
2286
  * @type {string}
2286
- * @memberof ContentVersion
2287
+ * @memberof Content
2287
2288
  */
2288
2289
  'description': string;
2289
2290
  /**
2290
2291
  *
2291
2292
  * @type {Contenttypedata2}
2292
- * @memberof ContentVersion
2293
+ * @memberof Content
2293
2294
  */
2294
2295
  'contentTypeData': Contenttypedata2;
2295
2296
  /**
2296
2297
  *
2297
2298
  * @type {string}
2298
- * @memberof ContentVersion
2299
+ * @memberof Content
2299
2300
  */
2300
- 'createdAt': string;
2301
+ 'versionCreatedAt': string;
2301
2302
  /**
2302
2303
  *
2303
2304
  * @type {string}
2304
- * @memberof ContentVersion
2305
+ * @memberof Content
2305
2306
  */
2306
2307
  'createdBy': string;
2307
- /**
2308
- *
2309
- * @type {boolean}
2310
- * @memberof ContentVersion
2311
- */
2312
- 'isCurrent'?: boolean;
2313
2308
  }
2314
- declare const ContentVersionParentResourceEnum: {
2315
- readonly Listing: "LISTING";
2316
- readonly Tag: "TAG";
2317
- };
2318
- type ContentVersionParentResourceEnum = typeof ContentVersionParentResourceEnum[keyof typeof ContentVersionParentResourceEnum];
2319
2309
  /**
2320
- *
2310
+ * Types of resources that can own content.
2321
2311
  * @export
2322
- * @interface ContentVersionApi
2312
+ * @enum {string}
2323
2313
  */
2324
- interface ContentVersionApi {
2325
- /**
2326
- *
2327
- * @type {string}
2328
- * @memberof ContentVersionApi
2329
- */
2330
- 'contentItemVersionId': string;
2331
- /**
2332
- *
2333
- * @type {string}
2334
- * @memberof ContentVersionApi
2335
- */
2336
- 'contentItemId': string;
2337
- /**
2338
- *
2339
- * @type {string}
2340
- * @memberof ContentVersionApi
2341
- */
2342
- 'parentResource': ContentVersionApiParentResourceEnum;
2343
- /**
2344
- *
2345
- * @type {number}
2346
- * @memberof ContentVersionApi
2347
- */
2348
- 'version': number;
2349
- /**
2350
- *
2351
- * @type {string}
2352
- * @memberof ContentVersionApi
2353
- */
2354
- 'title': string;
2355
- /**
2356
- *
2357
- * @type {string}
2358
- * @memberof ContentVersionApi
2359
- */
2360
- 'description': string;
2361
- /**
2362
- *
2363
- * @type {Contenttypedata1}
2364
- * @memberof ContentVersionApi
2365
- */
2366
- 'contentTypeData': Contenttypedata1;
2367
- /**
2368
- *
2369
- * @type {string}
2370
- * @memberof ContentVersionApi
2371
- */
2372
- 'createdAt': string;
2373
- /**
2374
- *
2375
- * @type {string}
2376
- * @memberof ContentVersionApi
2377
- */
2378
- 'createdBy': string;
2379
- /**
2380
- *
2381
- * @type {boolean}
2382
- * @memberof ContentVersionApi
2383
- */
2384
- 'isCurrent'?: boolean;
2385
- }
2386
- declare const ContentVersionApiParentResourceEnum: {
2314
+ declare const ContentParentResource: {
2387
2315
  readonly Listing: "LISTING";
2388
2316
  readonly Tag: "TAG";
2389
2317
  };
2390
- type ContentVersionApiParentResourceEnum = typeof ContentVersionApiParentResourceEnum[keyof typeof ContentVersionApiParentResourceEnum];
2318
+ type ContentParentResource = typeof ContentParentResource[keyof typeof ContentParentResource];
2391
2319
  /**
2392
2320
  * @type Contenttypedata
2393
2321
  * @export
@@ -10275,4 +10203,4 @@ declare class UserDevicesApi extends BaseAPI {
10275
10203
  userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
10276
10204
  }
10277
10205
 
10278
- export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIAiResponse, type APIAiResponseCreate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIContent, type APIContentUpdate, type APIContentVersion, APIContentVersionParentResourceEnum, type APIConversation, type APIConversationCreate, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate1, type APIMessageCreate2, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APITag, type APITagCreate, type APITagUpdate, type APIUserDevice, type APIUserDeviceCreate, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, AiResponsesApi, AiResponsesApiAxiosParamCreator, AiResponsesApiFactory, AiResponsesApiFp, type AttributeSourceApi, type AttributionApi, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, type Content, ContentApi, ContentApiAxiosParamCreator, ContentApiFactory, ContentApiFp, ContentParentResource, type ContentVersion, type ContentVersionApi, ContentVersionApiParentResourceEnum, ContentVersionParentResourceEnum, type Contenttypedata, type Contenttypedata1, type Contenttypedata2, ConversationStatus, type ConversationSuggestionApi, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type Create, type CreateContactListing, type DeleteContactListing, type DownloadURLRequest, type DownloadURLResponse, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type FileContent, type FileContentApi, FileContentApiContentTypeEnum, FileContentContentTypeEnum, FilesApi, FilesApiAxiosParamCreator, FilesApiFactory, FilesApiFp, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIContent, type ListResponseAPIContentVersion, type ListResponseAPIInbox, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, type ListResponseAPITag, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type MessageAttachmentApi, MessageDirection, MessageStatus, type Messagecreate, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type Participantname, type Participanttypedata, type PhoneApi, type PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PlainTextContent, type PlainTextContentApi, PlainTextContentApiContentTypeEnum, PlainTextContentContentTypeEnum, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationTypeInput, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, RentalProviderTypes, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type SMSConversationDataApi, SMSConversationDataApiConversationTypeEnum, type SMSInboundSenderTypeDataApi, SMSInboundSenderTypeDataApiDirectionEnum, type SMSLegApi, type SMSMessageApi, SMSMessageApiMessageTypeEnum, SMSMessageStatus, type SMSOutboundSenderTypeDataApi, SMSOutboundSenderTypeDataApiDirectionEnum, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType, type SrcResourceModelsHelperModelsCustomBaseModelAddressApi1, type SrcResourceModelsHelperModelsCustomBaseModelAddressApi2, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi4, SrcResourceModelsHelperModelsCustomBaseModelCreateApi4MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, type SuggestionApi, SuggestionRejectionReasonType, SuggestionStatus, type Tag, TagsApi, TagsApiAxiosParamCreator, TagsApiFactory, TagsApiFp, TelnyxApi, TelnyxApiAxiosParamCreator, TelnyxApiFactory, TelnyxApiFp, type ToItemApi, type ToPhoneApi, type URLContent, type URLContentApi, URLContentApiContentTypeEnum, URLContentContentTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UploadURLRequest, type UploadURLResponse, type UserApi, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp };
10206
+ export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIAiResponse, type APIAiResponseCreate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIContent, type APIContentUpdate, type APIContentVersion, APIContentVersionParentResourceEnum, type APIConversation, type APIConversationCreate, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate1, type APIMessageCreate2, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APITag, type APITagCreate, type APITagUpdate, type APIUserDevice, type APIUserDeviceCreate, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, AiResponsesApi, AiResponsesApiAxiosParamCreator, AiResponsesApiFactory, AiResponsesApiFp, type AttributeSourceApi, type AttributionApi, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, type Content, ContentApi, ContentApiAxiosParamCreator, ContentApiFactory, ContentApiFp, ContentParentResource, type Contenttypedata, type Contenttypedata1, type Contenttypedata2, ConversationStatus, type ConversationSuggestionApi, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type Create, type CreateContactListing, type DeleteContactListing, type DownloadURLRequest, type DownloadURLResponse, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type FileContent, type FileContentApi, FileContentApiContentTypeEnum, FileContentContentTypeEnum, FilesApi, FilesApiAxiosParamCreator, FilesApiFactory, FilesApiFp, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIContent, type ListResponseAPIContentVersion, type ListResponseAPIInbox, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, type ListResponseAPITag, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type MessageAttachmentApi, MessageDirection, MessageStatus, type Messagecreate, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type Participantname, type Participanttypedata, type PhoneApi, type PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PlainTextContent, type PlainTextContentApi, PlainTextContentApiContentTypeEnum, PlainTextContentContentTypeEnum, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationTypeInput, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, RentalProviderTypes, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type SMSConversationDataApi, SMSConversationDataApiConversationTypeEnum, type SMSInboundSenderTypeDataApi, SMSInboundSenderTypeDataApiDirectionEnum, type SMSLegApi, type SMSMessageApi, SMSMessageApiMessageTypeEnum, SMSMessageStatus, type SMSOutboundSenderTypeDataApi, SMSOutboundSenderTypeDataApiDirectionEnum, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType, type SrcResourceModelsHelperModelsCustomBaseModelAddressApi1, type SrcResourceModelsHelperModelsCustomBaseModelAddressApi2, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi4, SrcResourceModelsHelperModelsCustomBaseModelCreateApi4MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, type SuggestionApi, SuggestionRejectionReasonType, SuggestionStatus, type Tag, TagsApi, TagsApiAxiosParamCreator, TagsApiFactory, TagsApiFp, TelnyxApi, TelnyxApiAxiosParamCreator, TelnyxApiFactory, TelnyxApiFp, type ToItemApi, type ToPhoneApi, type URLContent, type URLContentApi, URLContentApiContentTypeEnum, URLContentContentTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UploadURLRequest, type UploadURLResponse, type UserApi, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp };
package/dist/index.d.ts CHANGED
@@ -762,28 +762,64 @@ interface APIContent {
762
762
  'parentId': string;
763
763
  /**
764
764
  *
765
- * @type {ContentVersionApi}
765
+ * @type {string}
766
766
  * @memberof APIContent
767
767
  */
768
- 'currentVersion': ContentVersionApi;
768
+ 'createdAt': string;
769
769
  /**
770
770
  *
771
771
  * @type {string}
772
772
  * @memberof APIContent
773
773
  */
774
- 'createdAt': string;
774
+ 'updatedAt': string;
775
775
  /**
776
776
  *
777
777
  * @type {string}
778
778
  * @memberof APIContent
779
779
  */
780
- 'updatedAt': string;
780
+ 'deletedAt'?: string | null;
781
781
  /**
782
782
  *
783
783
  * @type {string}
784
784
  * @memberof APIContent
785
785
  */
786
- 'deletedAt'?: string | null;
786
+ 'currentVersionId': string;
787
+ /**
788
+ *
789
+ * @type {number}
790
+ * @memberof APIContent
791
+ */
792
+ 'version': number;
793
+ /**
794
+ *
795
+ * @type {string}
796
+ * @memberof APIContent
797
+ */
798
+ 'title': string;
799
+ /**
800
+ *
801
+ * @type {string}
802
+ * @memberof APIContent
803
+ */
804
+ 'description': string;
805
+ /**
806
+ *
807
+ * @type {Contenttypedata}
808
+ * @memberof APIContent
809
+ */
810
+ 'contentTypeData': Contenttypedata;
811
+ /**
812
+ *
813
+ * @type {string}
814
+ * @memberof APIContent
815
+ */
816
+ 'versionCreatedAt': string;
817
+ /**
818
+ *
819
+ * @type {string}
820
+ * @memberof APIContent
821
+ */
822
+ 'createdBy': string;
787
823
  }
788
824
  /**
789
825
  *
@@ -805,10 +841,10 @@ interface APIContentUpdate {
805
841
  'description'?: string | null;
806
842
  /**
807
843
  *
808
- * @type {Contenttypedata}
844
+ * @type {Contenttypedata1}
809
845
  * @memberof APIContentUpdate
810
846
  */
811
- 'contentTypeData'?: Contenttypedata | null;
847
+ 'contentTypeData'?: Contenttypedata1 | null;
812
848
  }
813
849
  /**
814
850
  *
@@ -854,10 +890,10 @@ interface APIContentVersion {
854
890
  'description': string;
855
891
  /**
856
892
  *
857
- * @type {Contenttypedata1}
893
+ * @type {Contenttypedata}
858
894
  * @memberof APIContentVersion
859
895
  */
860
- 'contentTypeData': Contenttypedata1;
896
+ 'contentTypeData': Contenttypedata;
861
897
  /**
862
898
  *
863
899
  * @type {string}
@@ -2186,7 +2222,7 @@ interface ContactTypeDataApi {
2186
2222
  */
2187
2223
  type Contactcreate = APIContactCreate1 | APIContactCreate2;
2188
2224
  /**
2189
- * Logical content resource. Points to a current version. Title, description, and content_type_data are stored on the version for history tracking. Belongs to exactly one parent resource (listing or tag).
2225
+ * Logical content resource with current version fields hoisted. Title, description, and content_type_data are stored on versions for history tracking, but hoisted to top level for the current version. Belongs to exactly one parent resource (listing or tag).
2190
2226
  * @export
2191
2227
  * @interface Content
2192
2228
  */
@@ -2209,12 +2245,6 @@ interface Content {
2209
2245
  * @memberof Content
2210
2246
  */
2211
2247
  'parentId': string;
2212
- /**
2213
- *
2214
- * @type {ContentVersion}
2215
- * @memberof Content
2216
- */
2217
- 'currentVersion': ContentVersion;
2218
2248
  /**
2219
2249
  *
2220
2250
  * @type {string}
@@ -2233,161 +2263,59 @@ interface Content {
2233
2263
  * @memberof Content
2234
2264
  */
2235
2265
  'deletedAt'?: string | null;
2236
- }
2237
- /**
2238
- * Types of resources that can own content.
2239
- * @export
2240
- * @enum {string}
2241
- */
2242
- declare const ContentParentResource: {
2243
- readonly Listing: "LISTING";
2244
- readonly Tag: "TAG";
2245
- };
2246
- type ContentParentResource = typeof ContentParentResource[keyof typeof ContentParentResource];
2247
- /**
2248
- * Immutable content version snapshot. Contains the actual content_type_data describing the content at a point in time. Once created, it is never mutated.
2249
- * @export
2250
- * @interface ContentVersion
2251
- */
2252
- interface ContentVersion {
2253
2266
  /**
2254
2267
  *
2255
2268
  * @type {string}
2256
- * @memberof ContentVersion
2257
- */
2258
- 'contentItemVersionId': string;
2259
- /**
2260
- *
2261
- * @type {string}
2262
- * @memberof ContentVersion
2263
- */
2264
- 'contentItemId': string;
2265
- /**
2266
- *
2267
- * @type {string}
2268
- * @memberof ContentVersion
2269
+ * @memberof Content
2269
2270
  */
2270
- 'parentResource': ContentVersionParentResourceEnum;
2271
+ 'currentVersionId': string;
2271
2272
  /**
2272
2273
  *
2273
2274
  * @type {number}
2274
- * @memberof ContentVersion
2275
+ * @memberof Content
2275
2276
  */
2276
2277
  'version': number;
2277
2278
  /**
2278
2279
  *
2279
2280
  * @type {string}
2280
- * @memberof ContentVersion
2281
+ * @memberof Content
2281
2282
  */
2282
2283
  'title': string;
2283
2284
  /**
2284
2285
  *
2285
2286
  * @type {string}
2286
- * @memberof ContentVersion
2287
+ * @memberof Content
2287
2288
  */
2288
2289
  'description': string;
2289
2290
  /**
2290
2291
  *
2291
2292
  * @type {Contenttypedata2}
2292
- * @memberof ContentVersion
2293
+ * @memberof Content
2293
2294
  */
2294
2295
  'contentTypeData': Contenttypedata2;
2295
2296
  /**
2296
2297
  *
2297
2298
  * @type {string}
2298
- * @memberof ContentVersion
2299
+ * @memberof Content
2299
2300
  */
2300
- 'createdAt': string;
2301
+ 'versionCreatedAt': string;
2301
2302
  /**
2302
2303
  *
2303
2304
  * @type {string}
2304
- * @memberof ContentVersion
2305
+ * @memberof Content
2305
2306
  */
2306
2307
  'createdBy': string;
2307
- /**
2308
- *
2309
- * @type {boolean}
2310
- * @memberof ContentVersion
2311
- */
2312
- 'isCurrent'?: boolean;
2313
2308
  }
2314
- declare const ContentVersionParentResourceEnum: {
2315
- readonly Listing: "LISTING";
2316
- readonly Tag: "TAG";
2317
- };
2318
- type ContentVersionParentResourceEnum = typeof ContentVersionParentResourceEnum[keyof typeof ContentVersionParentResourceEnum];
2319
2309
  /**
2320
- *
2310
+ * Types of resources that can own content.
2321
2311
  * @export
2322
- * @interface ContentVersionApi
2312
+ * @enum {string}
2323
2313
  */
2324
- interface ContentVersionApi {
2325
- /**
2326
- *
2327
- * @type {string}
2328
- * @memberof ContentVersionApi
2329
- */
2330
- 'contentItemVersionId': string;
2331
- /**
2332
- *
2333
- * @type {string}
2334
- * @memberof ContentVersionApi
2335
- */
2336
- 'contentItemId': string;
2337
- /**
2338
- *
2339
- * @type {string}
2340
- * @memberof ContentVersionApi
2341
- */
2342
- 'parentResource': ContentVersionApiParentResourceEnum;
2343
- /**
2344
- *
2345
- * @type {number}
2346
- * @memberof ContentVersionApi
2347
- */
2348
- 'version': number;
2349
- /**
2350
- *
2351
- * @type {string}
2352
- * @memberof ContentVersionApi
2353
- */
2354
- 'title': string;
2355
- /**
2356
- *
2357
- * @type {string}
2358
- * @memberof ContentVersionApi
2359
- */
2360
- 'description': string;
2361
- /**
2362
- *
2363
- * @type {Contenttypedata1}
2364
- * @memberof ContentVersionApi
2365
- */
2366
- 'contentTypeData': Contenttypedata1;
2367
- /**
2368
- *
2369
- * @type {string}
2370
- * @memberof ContentVersionApi
2371
- */
2372
- 'createdAt': string;
2373
- /**
2374
- *
2375
- * @type {string}
2376
- * @memberof ContentVersionApi
2377
- */
2378
- 'createdBy': string;
2379
- /**
2380
- *
2381
- * @type {boolean}
2382
- * @memberof ContentVersionApi
2383
- */
2384
- 'isCurrent'?: boolean;
2385
- }
2386
- declare const ContentVersionApiParentResourceEnum: {
2314
+ declare const ContentParentResource: {
2387
2315
  readonly Listing: "LISTING";
2388
2316
  readonly Tag: "TAG";
2389
2317
  };
2390
- type ContentVersionApiParentResourceEnum = typeof ContentVersionApiParentResourceEnum[keyof typeof ContentVersionApiParentResourceEnum];
2318
+ type ContentParentResource = typeof ContentParentResource[keyof typeof ContentParentResource];
2391
2319
  /**
2392
2320
  * @type Contenttypedata
2393
2321
  * @export
@@ -10275,4 +10203,4 @@ declare class UserDevicesApi extends BaseAPI {
10275
10203
  userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
10276
10204
  }
10277
10205
 
10278
- export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIAiResponse, type APIAiResponseCreate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIContent, type APIContentUpdate, type APIContentVersion, APIContentVersionParentResourceEnum, type APIConversation, type APIConversationCreate, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate1, type APIMessageCreate2, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APITag, type APITagCreate, type APITagUpdate, type APIUserDevice, type APIUserDeviceCreate, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, AiResponsesApi, AiResponsesApiAxiosParamCreator, AiResponsesApiFactory, AiResponsesApiFp, type AttributeSourceApi, type AttributionApi, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, type Content, ContentApi, ContentApiAxiosParamCreator, ContentApiFactory, ContentApiFp, ContentParentResource, type ContentVersion, type ContentVersionApi, ContentVersionApiParentResourceEnum, ContentVersionParentResourceEnum, type Contenttypedata, type Contenttypedata1, type Contenttypedata2, ConversationStatus, type ConversationSuggestionApi, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type Create, type CreateContactListing, type DeleteContactListing, type DownloadURLRequest, type DownloadURLResponse, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type FileContent, type FileContentApi, FileContentApiContentTypeEnum, FileContentContentTypeEnum, FilesApi, FilesApiAxiosParamCreator, FilesApiFactory, FilesApiFp, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIContent, type ListResponseAPIContentVersion, type ListResponseAPIInbox, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, type ListResponseAPITag, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type MessageAttachmentApi, MessageDirection, MessageStatus, type Messagecreate, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type Participantname, type Participanttypedata, type PhoneApi, type PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PlainTextContent, type PlainTextContentApi, PlainTextContentApiContentTypeEnum, PlainTextContentContentTypeEnum, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationTypeInput, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, RentalProviderTypes, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type SMSConversationDataApi, SMSConversationDataApiConversationTypeEnum, type SMSInboundSenderTypeDataApi, SMSInboundSenderTypeDataApiDirectionEnum, type SMSLegApi, type SMSMessageApi, SMSMessageApiMessageTypeEnum, SMSMessageStatus, type SMSOutboundSenderTypeDataApi, SMSOutboundSenderTypeDataApiDirectionEnum, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType, type SrcResourceModelsHelperModelsCustomBaseModelAddressApi1, type SrcResourceModelsHelperModelsCustomBaseModelAddressApi2, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi4, SrcResourceModelsHelperModelsCustomBaseModelCreateApi4MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, type SuggestionApi, SuggestionRejectionReasonType, SuggestionStatus, type Tag, TagsApi, TagsApiAxiosParamCreator, TagsApiFactory, TagsApiFp, TelnyxApi, TelnyxApiAxiosParamCreator, TelnyxApiFactory, TelnyxApiFp, type ToItemApi, type ToPhoneApi, type URLContent, type URLContentApi, URLContentApiContentTypeEnum, URLContentContentTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UploadURLRequest, type UploadURLResponse, type UserApi, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp };
10206
+ export { type APIAccount, type APIAddress, type APIAddressCreate, type APIAddressUpdate, type APIAiResponse, type APIAiResponseCreate, type APIContact, type APIContactCreate1, type APIContactCreate2, type APIContactUpdate, type APIContent, type APIContentUpdate, type APIContentVersion, APIContentVersionParentResourceEnum, type APIConversation, type APIConversationCreate, type APIConversationUpdate, type APIEmail, type APIEmailCreate, type APIEmailUpdate, type APIInbox, type APIInquiry, type APIListing, type APIManagedPhoneNumber, type APIMessage, type APIMessageCreate1, type APIMessageCreate2, type APIPhone, type APIPhoneCreate, type APIPhoneUpdate, type APIProvider, type APIProviderCreate, type APIProviderUpdate, type APIReservation, type APITag, type APITagCreate, type APITagUpdate, type APIUserDevice, type APIUserDeviceCreate, type APIValidationError, type APIValidationErrorLocInner, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, AiResponsesApi, AiResponsesApiAxiosParamCreator, AiResponsesApiFactory, AiResponsesApiFp, type AttributeSourceApi, type AttributionApi, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddressApi, type BotApi, BotApiParticipantTypeEnum, type ChannelInfoApi, Configuration, type ConfigurationParameters, ContactListingType, type ContactTypeDataApi, type Contactcreate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, type Content, ContentApi, ContentApiAxiosParamCreator, ContentApiFactory, ContentApiFp, ContentParentResource, type Contenttypedata, type Contenttypedata1, type Contenttypedata2, ConversationStatus, type ConversationSuggestionApi, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type Create, type CreateContactListing, type DeleteContactListing, type DownloadURLRequest, type DownloadURLResponse, type EmailApi, type EmailConversationDataApi, EmailConversationDataApiConversationTypeEnum, type EmailInboxApi, EmailInboxApiInboxTypeEnum, type EmailProviderMessageApi, EmailProviderMessageApiMessageTypeEnum, type ExternalStaffApi, ExternalStaffApiStaffTypeEnum, type FileContent, type FileContentApi, FileContentApiContentTypeEnum, FileContentContentTypeEnum, FilesApi, FilesApiAxiosParamCreator, FilesApiFactory, FilesApiFp, type GuestApi, GuestApiParticipantTypeEnum, type GuestDataApi, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type InternalStaffApi, InternalStaffApiStaffTypeEnum, type LeadDataApi, type ListResponseAPIAccount, type ListResponseAPIContent, type ListResponseAPIContentVersion, type ListResponseAPIInbox, type ListResponseAPIInquiry, type ListResponseAPIManagedPhoneNumber, type ListResponseAPIProvider, type ListResponseAPITag, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type MessageAttachmentApi, MessageDirection, MessageStatus, type Messagecreate, type Messagetypedata, type Messagetypedata1, type OwnerDataApi, type PaginatedResponseAPIContact, type PaginatedResponseAPIConversation, type PaginatedResponseAPIListing, type PaginatedResponseAPIMessage, type PaginatedResponseAPIReservation, PaginationDirection, type Participantname, type Participanttypedata, type PhoneApi, type PhoneInboxApi, PhoneInboxApiInboxTypeEnum, type PlainTextContent, type PlainTextContentApi, PlainTextContentApiContentTypeEnum, PlainTextContentContentTypeEnum, type ProviderAccountInboxApi, ProviderAccountInboxApiInboxTypeEnum, type ProviderAddressesApi, type ProviderAttributionApi, ProviderCommunicationTypeInput, type ProviderConversationDataApi, ProviderConversationDataApiConversationTypeEnum, type ProviderEmailsApi, type ProviderInfoApi, type ProviderPhonesApi, type ProviderStaffApi, ProviderStaffApiStaffTypeEnum, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type RelatedListingApi, type RentalProviderMessageApi, RentalProviderMessageApiMessageTypeEnum, RentalProviderTypes, ReservationChannelTypes, ReservationStatus, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type SMSConversationDataApi, SMSConversationDataApiConversationTypeEnum, type SMSInboundSenderTypeDataApi, SMSInboundSenderTypeDataApiDirectionEnum, type SMSLegApi, type SMSMessageApi, SMSMessageApiMessageTypeEnum, SMSMessageStatus, type SMSOutboundSenderTypeDataApi, SMSOutboundSenderTypeDataApiDirectionEnum, type Sendertypedata, SortOrder, SrcResourceModelsContactsModelContactsModelContactSortBy, SrcResourceModelsConversationsModelConversationsHelperModelsProviderCommunicationType, type SrcResourceModelsHelperModelsCustomBaseModelAddressApi1, type SrcResourceModelsHelperModelsCustomBaseModelAddressApi2, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi1, SrcResourceModelsHelperModelsCustomBaseModelCreateApi1ConversationTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi2, SrcResourceModelsHelperModelsCustomBaseModelCreateApi2MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi3, SrcResourceModelsHelperModelsCustomBaseModelCreateApi3MessageTypeEnum, type SrcResourceModelsHelperModelsCustomBaseModelCreateApi4, SrcResourceModelsHelperModelsCustomBaseModelCreateApi4MessageTypeEnum, SrcResourceModelsListingsModelListingBaseSortBy, SrcResourceModelsMessagesModelMessagesHelperModelsProviderCommunicationType, SrcResourceModelsMessagesModelMessagesModelBaseMessageSortBy, SrcResourceModelsReservationsModelReservationBaseModelSortBy, type StaffApi, StaffApiParticipantTypeEnum, type Stafftypedata, type SubjectApi, type SuggestionApi, SuggestionRejectionReasonType, SuggestionStatus, type Tag, TagsApi, TagsApiAxiosParamCreator, TagsApiFactory, TagsApiFp, TelnyxApi, TelnyxApiAxiosParamCreator, TelnyxApiFactory, TelnyxApiFp, type ToItemApi, type ToPhoneApi, type URLContent, type URLContentApi, URLContentApiContentTypeEnum, URLContentContentTypeEnum, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContactListing, type UploadURLRequest, type UploadURLResponse, type UserApi, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp };