@ember-home/unbound-ts-client 1.0.61 → 1.0.62
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 +59 -1
- package/dist/index.d.ts +59 -1
- package/dist/index.js +123 -13
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +110 -0
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -97,7 +97,7 @@ declare class Configuration {
|
|
|
97
97
|
* FastAPI
|
|
98
98
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
99
99
|
*
|
|
100
|
-
* The version of the OpenAPI document: 1.0.
|
|
100
|
+
* The version of the OpenAPI document: 1.0.62
|
|
101
101
|
*
|
|
102
102
|
*
|
|
103
103
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -12126,6 +12126,13 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
12126
12126
|
* @throws {RequiredError}
|
|
12127
12127
|
*/
|
|
12128
12128
|
userDevicesDelete: (userDeviceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12129
|
+
/**
|
|
12130
|
+
* Fetch users for the current account from auth_gateway.
|
|
12131
|
+
* @summary Users List
|
|
12132
|
+
* @param {*} [options] Override http request option.
|
|
12133
|
+
* @throws {RequiredError}
|
|
12134
|
+
*/
|
|
12135
|
+
usersList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12129
12136
|
/**
|
|
12130
12137
|
*
|
|
12131
12138
|
* @summary Unifiedwebhook
|
|
@@ -13445,6 +13452,13 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
13445
13452
|
* @throws {RequiredError}
|
|
13446
13453
|
*/
|
|
13447
13454
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
13455
|
+
/**
|
|
13456
|
+
* Fetch users for the current account from auth_gateway.
|
|
13457
|
+
* @summary Users List
|
|
13458
|
+
* @param {*} [options] Override http request option.
|
|
13459
|
+
* @throws {RequiredError}
|
|
13460
|
+
*/
|
|
13461
|
+
usersList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<UserApi>>>;
|
|
13448
13462
|
/**
|
|
13449
13463
|
*
|
|
13450
13464
|
* @summary Unifiedwebhook
|
|
@@ -14764,6 +14778,13 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
14764
14778
|
* @throws {RequiredError}
|
|
14765
14779
|
*/
|
|
14766
14780
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
14781
|
+
/**
|
|
14782
|
+
* Fetch users for the current account from auth_gateway.
|
|
14783
|
+
* @summary Users List
|
|
14784
|
+
* @param {*} [options] Override http request option.
|
|
14785
|
+
* @throws {RequiredError}
|
|
14786
|
+
*/
|
|
14787
|
+
usersList(options?: RawAxiosRequestConfig): AxiosPromise<Array<UserApi>>;
|
|
14767
14788
|
/**
|
|
14768
14789
|
*
|
|
14769
14790
|
* @summary Unifiedwebhook
|
|
@@ -16226,6 +16247,14 @@ declare class UnboundApi extends BaseAPI {
|
|
|
16226
16247
|
* @memberof UnboundApi
|
|
16227
16248
|
*/
|
|
16228
16249
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
16250
|
+
/**
|
|
16251
|
+
* Fetch users for the current account from auth_gateway.
|
|
16252
|
+
* @summary Users List
|
|
16253
|
+
* @param {*} [options] Override http request option.
|
|
16254
|
+
* @throws {RequiredError}
|
|
16255
|
+
* @memberof UnboundApi
|
|
16256
|
+
*/
|
|
16257
|
+
usersList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UserApi[], any>>;
|
|
16229
16258
|
/**
|
|
16230
16259
|
*
|
|
16231
16260
|
* @summary Unifiedwebhook
|
|
@@ -16357,6 +16386,13 @@ declare const UsersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
16357
16386
|
* @throws {RequiredError}
|
|
16358
16387
|
*/
|
|
16359
16388
|
getUser: (userId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
16389
|
+
/**
|
|
16390
|
+
* Fetch users for the current account from auth_gateway.
|
|
16391
|
+
* @summary Users List
|
|
16392
|
+
* @param {*} [options] Override http request option.
|
|
16393
|
+
* @throws {RequiredError}
|
|
16394
|
+
*/
|
|
16395
|
+
usersList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
16360
16396
|
};
|
|
16361
16397
|
/**
|
|
16362
16398
|
* UsersApi - functional programming interface
|
|
@@ -16378,6 +16414,13 @@ declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
16378
16414
|
* @throws {RequiredError}
|
|
16379
16415
|
*/
|
|
16380
16416
|
getUser(userId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserApi>>;
|
|
16417
|
+
/**
|
|
16418
|
+
* Fetch users for the current account from auth_gateway.
|
|
16419
|
+
* @summary Users List
|
|
16420
|
+
* @param {*} [options] Override http request option.
|
|
16421
|
+
* @throws {RequiredError}
|
|
16422
|
+
*/
|
|
16423
|
+
usersList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<UserApi>>>;
|
|
16381
16424
|
};
|
|
16382
16425
|
/**
|
|
16383
16426
|
* UsersApi - factory interface
|
|
@@ -16399,6 +16442,13 @@ declare const UsersApiFactory: (configuration?: Configuration, basePath?: string
|
|
|
16399
16442
|
* @throws {RequiredError}
|
|
16400
16443
|
*/
|
|
16401
16444
|
getUser(userId: string, options?: RawAxiosRequestConfig): AxiosPromise<UserApi>;
|
|
16445
|
+
/**
|
|
16446
|
+
* Fetch users for the current account from auth_gateway.
|
|
16447
|
+
* @summary Users List
|
|
16448
|
+
* @param {*} [options] Override http request option.
|
|
16449
|
+
* @throws {RequiredError}
|
|
16450
|
+
*/
|
|
16451
|
+
usersList(options?: RawAxiosRequestConfig): AxiosPromise<Array<UserApi>>;
|
|
16402
16452
|
};
|
|
16403
16453
|
/**
|
|
16404
16454
|
* UsersApi - object-oriented interface
|
|
@@ -16424,6 +16474,14 @@ declare class UsersApi extends BaseAPI {
|
|
|
16424
16474
|
* @memberof UsersApi
|
|
16425
16475
|
*/
|
|
16426
16476
|
getUser(userId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UserApi, any>>;
|
|
16477
|
+
/**
|
|
16478
|
+
* Fetch users for the current account from auth_gateway.
|
|
16479
|
+
* @summary Users List
|
|
16480
|
+
* @param {*} [options] Override http request option.
|
|
16481
|
+
* @throws {RequiredError}
|
|
16482
|
+
* @memberof UsersApi
|
|
16483
|
+
*/
|
|
16484
|
+
usersList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UserApi[], any>>;
|
|
16427
16485
|
}
|
|
16428
16486
|
|
|
16429
16487
|
export { AIQueriesApi, AIQueriesApiAxiosParamCreator, AIQueriesApiFactory, AIQueriesApiFp, type APIContactsListings, type APIMicroServicePrincipal, type APIUserPrincipal, type Account, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type Address, type AddressCreate, type AddressProviderAddresses, type AddressProviderAddressesProviderAttribution, type AddressUpdate, type AirbnbChannelFinanceFields, AirbnbChannelFinanceFieldsChannelTypeEnum, type Attribution, type AttributionAttributeSource, AudienceTypes, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddress, type Bot, BotParticipantTypeEnum, type Channelfinancefields, CommunitiesApi, CommunitiesApiAxiosParamCreator, CommunitiesApiFactory, CommunitiesApiFp, type Community, type CommunityCreate, type CommunityType, type CommunityTypeCreate, type CommunityTypeList, CommunityTypeType, type CommunityTypeUpdate, CommunityTypesApi, CommunityTypesApiAxiosParamCreator, CommunityTypesApiFactory, CommunityTypesApiFp, type CommunityUpdate, Configuration, type ConfigurationParameters, type Contact, type ContactCreate, ContactSortBy, type ContactTypeData, type ContactUpdate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ContactsListingsApi, ContactsListingsApiAxiosParamCreator, ContactsListingsApiFactory, ContactsListingsApiFp, type ContactsListingsCreateContactListing, type ContactsListingsUpdateContactListing, type ContentItem, type ContentItemCreate, type ContentItemFullResponse, type ContentItemUpdate, type ContentItemVersion, ContentItemVersionSortBy, ContentItemsApi, ContentItemsApiAxiosParamCreator, ContentItemsApiFactory, ContentItemsApiFp, type ContentRelatedAllResourcesTypeData, ContentRelatedAllResourcesTypeDataRelationTypeEnum, ContentRelatedAllResourcesTypeDataResourceTypeEnum, type ContentRelatedIndividualResourcesFullTypeData, ContentRelatedIndividualResourcesFullTypeDataRelationTypeEnum, type ContentRelatedIndividualResourcesFullTypeDataResourcesInner, type ContentRelatedIndividualResourcesTypeData, type ContentRelatedIndividualResourcesTypeDataOutput, ContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum, ContentRelatedIndividualResourcesTypeDataRelationTypeEnum, type ContentRelatedResource, type Contenttypedata, type Contenttypedata1, type Contenttypedata2, type Conversation, type ConversationAIQuery, type ConversationAIQuerySuggestion, type ConversationCreate, ConversationSortBy, ConversationStatus, type ConversationSuggestion, type ConversationUpdate, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type DownloadURLRequest, type DownloadURLResponse, type Email, type EmailConversationData, EmailConversationDataConversationTypeEnum, type EmailCreate, type EmailInbox, EmailInboxInboxTypeEnum, type EmailNotification, type EmailNotificationCreate, EmailNotificationCreateNotificationTypeEnum, EmailNotificationNotificationTypeEnum, type EmailProviderEmails, type EmailProviderEmailsProviderAttribution, type EmailProviderMessage, type EmailProviderMessageCreate, EmailProviderMessageCreateMessageTypeEnum, EmailProviderMessageMessageTypeEnum, type EmailUpdate, type FileContent, FileContentContentTypeEnum, FilesApi, FilesApiAxiosParamCreator, FilesApiFactory, FilesApiFp, type GeneralAIQuery, type GeneralAIQueryResponse, type Guest, type GuestData, GuestParticipantTypeEnum, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type Inbox, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, IngestionStatusType, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type Inquiry, type InquiryTypeCreate, InquiryTypeCreateRelationTypeEnum, type InquiryTypeUpdate, InquiryTypeUpdateRelationTypeEnum, type JWKModel, type JWKSResponse, type LeadData, type ListResponseInbox, type ListResponseInquiry, type ListResponseManagedPhoneNumber, type ListResponsePermission, type ListResponseProvider, type ListResponseRole, type Listing, type ListingBaseAddress, type ListingBaseChannelInfo, type ListingBaseChannelInfoChannelDetails, ListingSortBy, type ListingVersion, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, type ManagedPhoneNumber, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type Message, type MessageAttachment, type MessageCreate, type MessageCreateWithSuggestion, MessageDirection, MessageSortBy, MessageStatus, MessagesApi, MessagesApiAxiosParamCreator, MessagesApiFactory, MessagesApiFp, type Messagetypedata, type Messagetypedata1, type MobileDevicePushNotification, type Notification, NotificationPriority, NotificationStatus, NotificationsApi, NotificationsApiAxiosParamCreator, NotificationsApiFactory, NotificationsApiFp, type Notificationtypedata, type OAuth2AccessToken, type OAuth2ClientCredentialRequest, OAuth2ClientCredentialRequestGrantTypeEnum, type OAuth2ExchangeTokenRequest, OAuth2ExchangeTokenRequestGrantTypeEnum, OAuth2TokenTypes, type OwnerData, type OwnerTypeCreate, OwnerTypeCreateRelationTypeEnum, type OwnerTypeUpdate, OwnerTypeUpdateRelationTypeEnum, type PaginatedResponseAccount, type PaginatedResponseCommunity, type PaginatedResponseContact, type PaginatedResponseContentItem, type PaginatedResponseContentItemFullResponse, type PaginatedResponseContentItemVersion, type PaginatedResponseConversation, type PaginatedResponseListing, type PaginatedResponseListingVersion, type PaginatedResponseMessage, type PaginatedResponseReservation, type PaginatedResponseReservationVersion, PaginationDirection, type Participantname, type Participanttypedata, type Payload, type Permission, type PermissionCreate, PermissionsApi, PermissionsApiAxiosParamCreator, PermissionsApiFactory, PermissionsApiFp, type Phone, type PhoneCapabilities, type PhoneCreate, type PhoneInbox, PhoneInboxInboxTypeEnum, PhoneLifecycle, type PhoneProviderPhones, type PhoneProviderPhonesProviderAttribution, type PhoneUpdate, type PlainTextContent, PlainTextContentContentTypeEnum, PropertyTypes, type Provider, type ProviderAccountInbox, ProviderAccountInboxInboxTypeEnum, ProviderConversationCommunicationType, type ProviderConversationData, ProviderConversationDataConversationTypeEnum, type ProviderCreate, type ProviderUpdate, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type PushNotification, type PushNotificationCreate, PushNotificationCreateNotificationTypeEnum, PushNotificationNotificationTypeEnum, type RelatedListing, RelatedResourceType, type Relationtypedata, type Relationtypedata1, type Relationtypedata2, type Relationtypedata3, type Relationtypedata4, type RentalProviderMessage, RentalProviderMessageCommunicationType, type RentalProviderMessageCreate, RentalProviderMessageCreateMessageTypeEnum, RentalProviderMessageMessageTypeEnum, RentalProviderTypes, type Reservation, type ReservationBaseChannelInfo, ReservationChannelTypes, type ReservationProviderInfo, ReservationSortBy, ReservationStatus, type ReservationVersion, ReservationVersionSortBy, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Role, type RoleCreate, RolesApi, RolesApiAxiosParamCreator, RolesApiFactory, RolesApiFp, type SMSConversationData, SMSConversationDataConversationTypeEnum, type SMSConversationDataCreate, SMSConversationDataCreateConversationTypeEnum, type SMSInboundSenderTypeData, SMSInboundSenderTypeDataDirectionEnum, type SMSLeg, SMSLineType, type SMSMessage, type SMSMessageCreate, SMSMessageCreateMessageTypeEnum, SMSMessageMessageTypeEnum, SMSMessageStatus, type SMSOutboundSenderTypeData, SMSOutboundSenderTypeDataDirectionEnum, type Sendertypedata, SortByAuthGateway, SortByUbFastApi, SortOrder, type Staff, type StaffExternalStaff, StaffExternalStaffStaffTypeEnum, type StaffInternalStaff, StaffInternalStaffStaffTypeEnum, StaffParticipantTypeEnum, type StaffProviderStaff, StaffProviderStaffStaffTypeEnum, type Stafftypedata, type Subject, type Suggestion, SuggestionRejectionReasonType, SuggestionStatus, SuggestionUsedType, TelnyxApi, TelnyxApiAxiosParamCreator, TelnyxApiFactory, TelnyxApiFp, type ToItem, type ToPhone, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContentRelatedResourcesRequest, type UpdateContentRelatedResourcesResponse, type UploadURLRequest, type UploadURLResponse, type UserApi, type UserDevice, type UserDeviceCreate, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp, UsersApi, UsersApiAxiosParamCreator, UsersApiFactory, UsersApiFp, type Usertypedata, type ValidationError, type ValidationErrorLocInner, type WebContent, WebContentContentTypeEnum, WebContentCrawlStatus, type WebContentCreate, WebContentCreateContentTypeEnum, type WebContentNode, type WebContentRoot, type WebContentTree, type WebContentUpdate, WebContentUpdateContentTypeEnum };
|
package/dist/index.d.ts
CHANGED
|
@@ -97,7 +97,7 @@ declare class Configuration {
|
|
|
97
97
|
* FastAPI
|
|
98
98
|
* No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
99
99
|
*
|
|
100
|
-
* The version of the OpenAPI document: 1.0.
|
|
100
|
+
* The version of the OpenAPI document: 1.0.62
|
|
101
101
|
*
|
|
102
102
|
*
|
|
103
103
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -12126,6 +12126,13 @@ declare const UnboundApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
12126
12126
|
* @throws {RequiredError}
|
|
12127
12127
|
*/
|
|
12128
12128
|
userDevicesDelete: (userDeviceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12129
|
+
/**
|
|
12130
|
+
* Fetch users for the current account from auth_gateway.
|
|
12131
|
+
* @summary Users List
|
|
12132
|
+
* @param {*} [options] Override http request option.
|
|
12133
|
+
* @throws {RequiredError}
|
|
12134
|
+
*/
|
|
12135
|
+
usersList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12129
12136
|
/**
|
|
12130
12137
|
*
|
|
12131
12138
|
* @summary Unifiedwebhook
|
|
@@ -13445,6 +13452,13 @@ declare const UnboundApiFp: (configuration?: Configuration) => {
|
|
|
13445
13452
|
* @throws {RequiredError}
|
|
13446
13453
|
*/
|
|
13447
13454
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
13455
|
+
/**
|
|
13456
|
+
* Fetch users for the current account from auth_gateway.
|
|
13457
|
+
* @summary Users List
|
|
13458
|
+
* @param {*} [options] Override http request option.
|
|
13459
|
+
* @throws {RequiredError}
|
|
13460
|
+
*/
|
|
13461
|
+
usersList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<UserApi>>>;
|
|
13448
13462
|
/**
|
|
13449
13463
|
*
|
|
13450
13464
|
* @summary Unifiedwebhook
|
|
@@ -14764,6 +14778,13 @@ declare const UnboundApiFactory: (configuration?: Configuration, basePath?: stri
|
|
|
14764
14778
|
* @throws {RequiredError}
|
|
14765
14779
|
*/
|
|
14766
14780
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
14781
|
+
/**
|
|
14782
|
+
* Fetch users for the current account from auth_gateway.
|
|
14783
|
+
* @summary Users List
|
|
14784
|
+
* @param {*} [options] Override http request option.
|
|
14785
|
+
* @throws {RequiredError}
|
|
14786
|
+
*/
|
|
14787
|
+
usersList(options?: RawAxiosRequestConfig): AxiosPromise<Array<UserApi>>;
|
|
14767
14788
|
/**
|
|
14768
14789
|
*
|
|
14769
14790
|
* @summary Unifiedwebhook
|
|
@@ -16226,6 +16247,14 @@ declare class UnboundApi extends BaseAPI {
|
|
|
16226
16247
|
* @memberof UnboundApi
|
|
16227
16248
|
*/
|
|
16228
16249
|
userDevicesDelete(userDeviceId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<void, any>>;
|
|
16250
|
+
/**
|
|
16251
|
+
* Fetch users for the current account from auth_gateway.
|
|
16252
|
+
* @summary Users List
|
|
16253
|
+
* @param {*} [options] Override http request option.
|
|
16254
|
+
* @throws {RequiredError}
|
|
16255
|
+
* @memberof UnboundApi
|
|
16256
|
+
*/
|
|
16257
|
+
usersList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UserApi[], any>>;
|
|
16229
16258
|
/**
|
|
16230
16259
|
*
|
|
16231
16260
|
* @summary Unifiedwebhook
|
|
@@ -16357,6 +16386,13 @@ declare const UsersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
|
16357
16386
|
* @throws {RequiredError}
|
|
16358
16387
|
*/
|
|
16359
16388
|
getUser: (userId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
16389
|
+
/**
|
|
16390
|
+
* Fetch users for the current account from auth_gateway.
|
|
16391
|
+
* @summary Users List
|
|
16392
|
+
* @param {*} [options] Override http request option.
|
|
16393
|
+
* @throws {RequiredError}
|
|
16394
|
+
*/
|
|
16395
|
+
usersList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
16360
16396
|
};
|
|
16361
16397
|
/**
|
|
16362
16398
|
* UsersApi - functional programming interface
|
|
@@ -16378,6 +16414,13 @@ declare const UsersApiFp: (configuration?: Configuration) => {
|
|
|
16378
16414
|
* @throws {RequiredError}
|
|
16379
16415
|
*/
|
|
16380
16416
|
getUser(userId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UserApi>>;
|
|
16417
|
+
/**
|
|
16418
|
+
* Fetch users for the current account from auth_gateway.
|
|
16419
|
+
* @summary Users List
|
|
16420
|
+
* @param {*} [options] Override http request option.
|
|
16421
|
+
* @throws {RequiredError}
|
|
16422
|
+
*/
|
|
16423
|
+
usersList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<UserApi>>>;
|
|
16381
16424
|
};
|
|
16382
16425
|
/**
|
|
16383
16426
|
* UsersApi - factory interface
|
|
@@ -16399,6 +16442,13 @@ declare const UsersApiFactory: (configuration?: Configuration, basePath?: string
|
|
|
16399
16442
|
* @throws {RequiredError}
|
|
16400
16443
|
*/
|
|
16401
16444
|
getUser(userId: string, options?: RawAxiosRequestConfig): AxiosPromise<UserApi>;
|
|
16445
|
+
/**
|
|
16446
|
+
* Fetch users for the current account from auth_gateway.
|
|
16447
|
+
* @summary Users List
|
|
16448
|
+
* @param {*} [options] Override http request option.
|
|
16449
|
+
* @throws {RequiredError}
|
|
16450
|
+
*/
|
|
16451
|
+
usersList(options?: RawAxiosRequestConfig): AxiosPromise<Array<UserApi>>;
|
|
16402
16452
|
};
|
|
16403
16453
|
/**
|
|
16404
16454
|
* UsersApi - object-oriented interface
|
|
@@ -16424,6 +16474,14 @@ declare class UsersApi extends BaseAPI {
|
|
|
16424
16474
|
* @memberof UsersApi
|
|
16425
16475
|
*/
|
|
16426
16476
|
getUser(userId: string, options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UserApi, any>>;
|
|
16477
|
+
/**
|
|
16478
|
+
* Fetch users for the current account from auth_gateway.
|
|
16479
|
+
* @summary Users List
|
|
16480
|
+
* @param {*} [options] Override http request option.
|
|
16481
|
+
* @throws {RequiredError}
|
|
16482
|
+
* @memberof UsersApi
|
|
16483
|
+
*/
|
|
16484
|
+
usersList(options?: RawAxiosRequestConfig): Promise<axios.AxiosResponse<UserApi[], any>>;
|
|
16427
16485
|
}
|
|
16428
16486
|
|
|
16429
16487
|
export { AIQueriesApi, AIQueriesApiAxiosParamCreator, AIQueriesApiFactory, AIQueriesApiFp, type APIContactsListings, type APIMicroServicePrincipal, type APIUserPrincipal, type Account, AccountsApi, AccountsApiAxiosParamCreator, AccountsApiFactory, AccountsApiFp, type Address, type AddressCreate, type AddressProviderAddresses, type AddressProviderAddressesProviderAttribution, type AddressUpdate, type AirbnbChannelFinanceFields, AirbnbChannelFinanceFieldsChannelTypeEnum, type Attribution, type AttributionAttributeSource, AudienceTypes, AuthApi, AuthApiAxiosParamCreator, AuthApiFactory, AuthApiFp, type BaseAddress, type Bot, BotParticipantTypeEnum, type Channelfinancefields, CommunitiesApi, CommunitiesApiAxiosParamCreator, CommunitiesApiFactory, CommunitiesApiFp, type Community, type CommunityCreate, type CommunityType, type CommunityTypeCreate, type CommunityTypeList, CommunityTypeType, type CommunityTypeUpdate, CommunityTypesApi, CommunityTypesApiAxiosParamCreator, CommunityTypesApiFactory, CommunityTypesApiFp, type CommunityUpdate, Configuration, type ConfigurationParameters, type Contact, type ContactCreate, ContactSortBy, type ContactTypeData, type ContactUpdate, ContactsApi, ContactsApiAxiosParamCreator, ContactsApiFactory, ContactsApiFp, ContactsListingsApi, ContactsListingsApiAxiosParamCreator, ContactsListingsApiFactory, ContactsListingsApiFp, type ContactsListingsCreateContactListing, type ContactsListingsUpdateContactListing, type ContentItem, type ContentItemCreate, type ContentItemFullResponse, type ContentItemUpdate, type ContentItemVersion, ContentItemVersionSortBy, ContentItemsApi, ContentItemsApiAxiosParamCreator, ContentItemsApiFactory, ContentItemsApiFp, type ContentRelatedAllResourcesTypeData, ContentRelatedAllResourcesTypeDataRelationTypeEnum, ContentRelatedAllResourcesTypeDataResourceTypeEnum, type ContentRelatedIndividualResourcesFullTypeData, ContentRelatedIndividualResourcesFullTypeDataRelationTypeEnum, type ContentRelatedIndividualResourcesFullTypeDataResourcesInner, type ContentRelatedIndividualResourcesTypeData, type ContentRelatedIndividualResourcesTypeDataOutput, ContentRelatedIndividualResourcesTypeDataOutputRelationTypeEnum, ContentRelatedIndividualResourcesTypeDataRelationTypeEnum, type ContentRelatedResource, type Contenttypedata, type Contenttypedata1, type Contenttypedata2, type Conversation, type ConversationAIQuery, type ConversationAIQuerySuggestion, type ConversationCreate, ConversationSortBy, ConversationStatus, type ConversationSuggestion, type ConversationUpdate, ConversationsApi, ConversationsApiAxiosParamCreator, ConversationsApiFactory, ConversationsApiFp, type Conversationtypedata, type DownloadURLRequest, type DownloadURLResponse, type Email, type EmailConversationData, EmailConversationDataConversationTypeEnum, type EmailCreate, type EmailInbox, EmailInboxInboxTypeEnum, type EmailNotification, type EmailNotificationCreate, EmailNotificationCreateNotificationTypeEnum, EmailNotificationNotificationTypeEnum, type EmailProviderEmails, type EmailProviderEmailsProviderAttribution, type EmailProviderMessage, type EmailProviderMessageCreate, EmailProviderMessageCreateMessageTypeEnum, EmailProviderMessageMessageTypeEnum, type EmailUpdate, type FileContent, FileContentContentTypeEnum, FilesApi, FilesApiAxiosParamCreator, FilesApiFactory, FilesApiFp, type GeneralAIQuery, type GeneralAIQueryResponse, type Guest, type GuestData, GuestParticipantTypeEnum, type HTTPValidationError, HostawayApi, HostawayApiAxiosParamCreator, HostawayApiFactory, HostawayApiFp, type Inbox, InboxesApi, InboxesApiAxiosParamCreator, InboxesApiFactory, InboxesApiFp, type Inboxtypedata, IngestionStatusType, InquiriesApi, InquiriesApiAxiosParamCreator, InquiriesApiFactory, InquiriesApiFp, type Inquiry, type InquiryTypeCreate, InquiryTypeCreateRelationTypeEnum, type InquiryTypeUpdate, InquiryTypeUpdateRelationTypeEnum, type JWKModel, type JWKSResponse, type LeadData, type ListResponseInbox, type ListResponseInquiry, type ListResponseManagedPhoneNumber, type ListResponsePermission, type ListResponseProvider, type ListResponseRole, type Listing, type ListingBaseAddress, type ListingBaseChannelInfo, type ListingBaseChannelInfoChannelDetails, ListingSortBy, type ListingVersion, ListingsApi, ListingsApiAxiosParamCreator, ListingsApiFactory, ListingsApiFp, type ManagedPhoneNumber, ManagedPhoneNumbersApi, ManagedPhoneNumbersApiAxiosParamCreator, ManagedPhoneNumbersApiFactory, ManagedPhoneNumbersApiFp, type Message, type MessageAttachment, type MessageCreate, type MessageCreateWithSuggestion, MessageDirection, MessageSortBy, MessageStatus, MessagesApi, MessagesApiAxiosParamCreator, MessagesApiFactory, MessagesApiFp, type Messagetypedata, type Messagetypedata1, type MobileDevicePushNotification, type Notification, NotificationPriority, NotificationStatus, NotificationsApi, NotificationsApiAxiosParamCreator, NotificationsApiFactory, NotificationsApiFp, type Notificationtypedata, type OAuth2AccessToken, type OAuth2ClientCredentialRequest, OAuth2ClientCredentialRequestGrantTypeEnum, type OAuth2ExchangeTokenRequest, OAuth2ExchangeTokenRequestGrantTypeEnum, OAuth2TokenTypes, type OwnerData, type OwnerTypeCreate, OwnerTypeCreateRelationTypeEnum, type OwnerTypeUpdate, OwnerTypeUpdateRelationTypeEnum, type PaginatedResponseAccount, type PaginatedResponseCommunity, type PaginatedResponseContact, type PaginatedResponseContentItem, type PaginatedResponseContentItemFullResponse, type PaginatedResponseContentItemVersion, type PaginatedResponseConversation, type PaginatedResponseListing, type PaginatedResponseListingVersion, type PaginatedResponseMessage, type PaginatedResponseReservation, type PaginatedResponseReservationVersion, PaginationDirection, type Participantname, type Participanttypedata, type Payload, type Permission, type PermissionCreate, PermissionsApi, PermissionsApiAxiosParamCreator, PermissionsApiFactory, PermissionsApiFp, type Phone, type PhoneCapabilities, type PhoneCreate, type PhoneInbox, PhoneInboxInboxTypeEnum, PhoneLifecycle, type PhoneProviderPhones, type PhoneProviderPhonesProviderAttribution, type PhoneUpdate, type PlainTextContent, PlainTextContentContentTypeEnum, PropertyTypes, type Provider, type ProviderAccountInbox, ProviderAccountInboxInboxTypeEnum, ProviderConversationCommunicationType, type ProviderConversationData, ProviderConversationDataConversationTypeEnum, type ProviderCreate, type ProviderUpdate, ProvidersApi, ProvidersApiAxiosParamCreator, ProvidersApiFactory, ProvidersApiFp, type PushNotification, type PushNotificationCreate, PushNotificationCreateNotificationTypeEnum, PushNotificationNotificationTypeEnum, type RelatedListing, RelatedResourceType, type Relationtypedata, type Relationtypedata1, type Relationtypedata2, type Relationtypedata3, type Relationtypedata4, type RentalProviderMessage, RentalProviderMessageCommunicationType, type RentalProviderMessageCreate, RentalProviderMessageCreateMessageTypeEnum, RentalProviderMessageMessageTypeEnum, RentalProviderTypes, type Reservation, type ReservationBaseChannelInfo, ReservationChannelTypes, type ReservationProviderInfo, ReservationSortBy, ReservationStatus, type ReservationVersion, ReservationVersionSortBy, ReservationsApi, ReservationsApiAxiosParamCreator, ReservationsApiFactory, ReservationsApiFp, type Role, type RoleCreate, RolesApi, RolesApiAxiosParamCreator, RolesApiFactory, RolesApiFp, type SMSConversationData, SMSConversationDataConversationTypeEnum, type SMSConversationDataCreate, SMSConversationDataCreateConversationTypeEnum, type SMSInboundSenderTypeData, SMSInboundSenderTypeDataDirectionEnum, type SMSLeg, SMSLineType, type SMSMessage, type SMSMessageCreate, SMSMessageCreateMessageTypeEnum, SMSMessageMessageTypeEnum, SMSMessageStatus, type SMSOutboundSenderTypeData, SMSOutboundSenderTypeDataDirectionEnum, type Sendertypedata, SortByAuthGateway, SortByUbFastApi, SortOrder, type Staff, type StaffExternalStaff, StaffExternalStaffStaffTypeEnum, type StaffInternalStaff, StaffInternalStaffStaffTypeEnum, StaffParticipantTypeEnum, type StaffProviderStaff, StaffProviderStaffStaffTypeEnum, type Stafftypedata, type Subject, type Suggestion, SuggestionRejectionReasonType, SuggestionStatus, SuggestionUsedType, TelnyxApi, TelnyxApiAxiosParamCreator, TelnyxApiFactory, TelnyxApiFp, type ToItem, type ToPhone, UnboundApi, UnboundApiAxiosParamCreator, UnboundApiFactory, UnboundApiFp, type UpdateContentRelatedResourcesRequest, type UpdateContentRelatedResourcesResponse, type UploadURLRequest, type UploadURLResponse, type UserApi, type UserDevice, type UserDeviceCreate, UserDeviceOs, UserDevicesApi, UserDevicesApiAxiosParamCreator, UserDevicesApiFactory, UserDevicesApiFp, UsersApi, UsersApiAxiosParamCreator, UsersApiFactory, UsersApiFp, type Usertypedata, type ValidationError, type ValidationErrorLocInner, type WebContent, WebContentContentTypeEnum, WebContentCrawlStatus, type WebContentCreate, WebContentCreateContentTypeEnum, type WebContentNode, type WebContentRoot, type WebContentTree, type WebContentUpdate, WebContentUpdateContentTypeEnum };
|
package/dist/index.js
CHANGED
|
@@ -10498,6 +10498,30 @@ var UnboundApiAxiosParamCreator = function(configuration) {
|
|
|
10498
10498
|
options: localVarRequestOptions
|
|
10499
10499
|
};
|
|
10500
10500
|
},
|
|
10501
|
+
/**
|
|
10502
|
+
* Fetch users for the current account from auth_gateway.
|
|
10503
|
+
* @summary Users List
|
|
10504
|
+
* @param {*} [options] Override http request option.
|
|
10505
|
+
* @throws {RequiredError}
|
|
10506
|
+
*/
|
|
10507
|
+
usersList: async (options = {}) => {
|
|
10508
|
+
const localVarPath = `/v1/users`;
|
|
10509
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
10510
|
+
let baseOptions;
|
|
10511
|
+
if (configuration) {
|
|
10512
|
+
baseOptions = configuration.baseOptions;
|
|
10513
|
+
}
|
|
10514
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
10515
|
+
const localVarHeaderParameter = {};
|
|
10516
|
+
const localVarQueryParameter = {};
|
|
10517
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
10518
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
10519
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
10520
|
+
return {
|
|
10521
|
+
url: toPathString(localVarUrlObj),
|
|
10522
|
+
options: localVarRequestOptions
|
|
10523
|
+
};
|
|
10524
|
+
},
|
|
10501
10525
|
/**
|
|
10502
10526
|
*
|
|
10503
10527
|
* @summary Unifiedwebhook
|
|
@@ -12557,6 +12581,18 @@ var UnboundApiFp = function(configuration) {
|
|
|
12557
12581
|
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _875 => _875["UnboundApi.userDevicesDelete"], 'optionalAccess', _876 => _876[localVarOperationServerIndex], 'optionalAccess', _877 => _877.url]);
|
|
12558
12582
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
12559
12583
|
},
|
|
12584
|
+
/**
|
|
12585
|
+
* Fetch users for the current account from auth_gateway.
|
|
12586
|
+
* @summary Users List
|
|
12587
|
+
* @param {*} [options] Override http request option.
|
|
12588
|
+
* @throws {RequiredError}
|
|
12589
|
+
*/
|
|
12590
|
+
async usersList(options) {
|
|
12591
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.usersList(options);
|
|
12592
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _878 => _878.serverIndex]), () => ( 0));
|
|
12593
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _879 => _879["UnboundApi.usersList"], 'optionalAccess', _880 => _880[localVarOperationServerIndex], 'optionalAccess', _881 => _881.url]);
|
|
12594
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
12595
|
+
},
|
|
12560
12596
|
/**
|
|
12561
12597
|
*
|
|
12562
12598
|
* @summary Unifiedwebhook
|
|
@@ -12566,8 +12602,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
12566
12602
|
*/
|
|
12567
12603
|
async webhook(body, options) {
|
|
12568
12604
|
const localVarAxiosArgs = await localVarAxiosParamCreator.webhook(body, options);
|
|
12569
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
12570
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
12605
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _882 => _882.serverIndex]), () => ( 0));
|
|
12606
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _883 => _883["UnboundApi.webhook"], 'optionalAccess', _884 => _884[localVarOperationServerIndex], 'optionalAccess', _885 => _885.url]);
|
|
12571
12607
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
12572
12608
|
},
|
|
12573
12609
|
/**
|
|
@@ -12579,8 +12615,8 @@ var UnboundApiFp = function(configuration) {
|
|
|
12579
12615
|
*/
|
|
12580
12616
|
async webhook_61(body, options) {
|
|
12581
12617
|
const localVarAxiosArgs = await localVarAxiosParamCreator.webhook_61(body, options);
|
|
12582
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
12583
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
12618
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _886 => _886.serverIndex]), () => ( 0));
|
|
12619
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _887 => _887["UnboundApi.webhook_61"], 'optionalAccess', _888 => _888[localVarOperationServerIndex], 'optionalAccess', _889 => _889.url]);
|
|
12584
12620
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
12585
12621
|
}
|
|
12586
12622
|
};
|
|
@@ -14163,6 +14199,15 @@ var UnboundApiFactory = function(configuration, basePath, axios) {
|
|
|
14163
14199
|
userDevicesDelete(userDeviceId, options) {
|
|
14164
14200
|
return localVarFp.userDevicesDelete(userDeviceId, options).then((request) => request(axios, basePath));
|
|
14165
14201
|
},
|
|
14202
|
+
/**
|
|
14203
|
+
* Fetch users for the current account from auth_gateway.
|
|
14204
|
+
* @summary Users List
|
|
14205
|
+
* @param {*} [options] Override http request option.
|
|
14206
|
+
* @throws {RequiredError}
|
|
14207
|
+
*/
|
|
14208
|
+
usersList(options) {
|
|
14209
|
+
return localVarFp.usersList(options).then((request) => request(axios, basePath));
|
|
14210
|
+
},
|
|
14166
14211
|
/**
|
|
14167
14212
|
*
|
|
14168
14213
|
* @summary Unifiedwebhook
|
|
@@ -15902,6 +15947,16 @@ var UnboundApi = class extends BaseAPI {
|
|
|
15902
15947
|
userDevicesDelete(userDeviceId, options) {
|
|
15903
15948
|
return UnboundApiFp(this.configuration).userDevicesDelete(userDeviceId, options).then((request) => request(this.axios, this.basePath));
|
|
15904
15949
|
}
|
|
15950
|
+
/**
|
|
15951
|
+
* Fetch users for the current account from auth_gateway.
|
|
15952
|
+
* @summary Users List
|
|
15953
|
+
* @param {*} [options] Override http request option.
|
|
15954
|
+
* @throws {RequiredError}
|
|
15955
|
+
* @memberof UnboundApi
|
|
15956
|
+
*/
|
|
15957
|
+
usersList(options) {
|
|
15958
|
+
return UnboundApiFp(this.configuration).usersList(options).then((request) => request(this.axios, this.basePath));
|
|
15959
|
+
}
|
|
15905
15960
|
/**
|
|
15906
15961
|
*
|
|
15907
15962
|
* @summary Unifiedwebhook
|
|
@@ -15995,8 +16050,8 @@ var UserDevicesApiFp = function(configuration) {
|
|
|
15995
16050
|
*/
|
|
15996
16051
|
async userDevicesCreate(userDeviceCreate, options) {
|
|
15997
16052
|
const localVarAxiosArgs = await localVarAxiosParamCreator.userDevicesCreate(userDeviceCreate, options);
|
|
15998
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
15999
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
16053
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _890 => _890.serverIndex]), () => ( 0));
|
|
16054
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _891 => _891["UserDevicesApi.userDevicesCreate"], 'optionalAccess', _892 => _892[localVarOperationServerIndex], 'optionalAccess', _893 => _893.url]);
|
|
16000
16055
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
16001
16056
|
},
|
|
16002
16057
|
/**
|
|
@@ -16008,8 +16063,8 @@ var UserDevicesApiFp = function(configuration) {
|
|
|
16008
16063
|
*/
|
|
16009
16064
|
async userDevicesDelete(userDeviceId, options) {
|
|
16010
16065
|
const localVarAxiosArgs = await localVarAxiosParamCreator.userDevicesDelete(userDeviceId, options);
|
|
16011
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
16012
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
16066
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _894 => _894.serverIndex]), () => ( 0));
|
|
16067
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _895 => _895["UserDevicesApi.userDevicesDelete"], 'optionalAccess', _896 => _896[localVarOperationServerIndex], 'optionalAccess', _897 => _897.url]);
|
|
16013
16068
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
16014
16069
|
}
|
|
16015
16070
|
};
|
|
@@ -16114,6 +16169,30 @@ var UsersApiAxiosParamCreator = function(configuration) {
|
|
|
16114
16169
|
url: toPathString(localVarUrlObj),
|
|
16115
16170
|
options: localVarRequestOptions
|
|
16116
16171
|
};
|
|
16172
|
+
},
|
|
16173
|
+
/**
|
|
16174
|
+
* Fetch users for the current account from auth_gateway.
|
|
16175
|
+
* @summary Users List
|
|
16176
|
+
* @param {*} [options] Override http request option.
|
|
16177
|
+
* @throws {RequiredError}
|
|
16178
|
+
*/
|
|
16179
|
+
usersList: async (options = {}) => {
|
|
16180
|
+
const localVarPath = `/v1/users`;
|
|
16181
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
16182
|
+
let baseOptions;
|
|
16183
|
+
if (configuration) {
|
|
16184
|
+
baseOptions = configuration.baseOptions;
|
|
16185
|
+
}
|
|
16186
|
+
const localVarRequestOptions = { method: "GET", ...baseOptions, ...options };
|
|
16187
|
+
const localVarHeaderParameter = {};
|
|
16188
|
+
const localVarQueryParameter = {};
|
|
16189
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
16190
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
16191
|
+
localVarRequestOptions.headers = { ...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers };
|
|
16192
|
+
return {
|
|
16193
|
+
url: toPathString(localVarUrlObj),
|
|
16194
|
+
options: localVarRequestOptions
|
|
16195
|
+
};
|
|
16117
16196
|
}
|
|
16118
16197
|
};
|
|
16119
16198
|
};
|
|
@@ -16128,8 +16207,8 @@ var UsersApiFp = function(configuration) {
|
|
|
16128
16207
|
*/
|
|
16129
16208
|
async getMe(options) {
|
|
16130
16209
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getMe(options);
|
|
16131
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
16132
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
16210
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _898 => _898.serverIndex]), () => ( 0));
|
|
16211
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _899 => _899["UsersApi.getMe"], 'optionalAccess', _900 => _900[localVarOperationServerIndex], 'optionalAccess', _901 => _901.url]);
|
|
16133
16212
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
16134
16213
|
},
|
|
16135
16214
|
/**
|
|
@@ -16141,8 +16220,20 @@ var UsersApiFp = function(configuration) {
|
|
|
16141
16220
|
*/
|
|
16142
16221
|
async getUser(userId, options) {
|
|
16143
16222
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getUser(userId, options);
|
|
16144
|
-
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess',
|
|
16145
|
-
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access',
|
|
16223
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _902 => _902.serverIndex]), () => ( 0));
|
|
16224
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _903 => _903["UsersApi.getUser"], 'optionalAccess', _904 => _904[localVarOperationServerIndex], 'optionalAccess', _905 => _905.url]);
|
|
16225
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
16226
|
+
},
|
|
16227
|
+
/**
|
|
16228
|
+
* Fetch users for the current account from auth_gateway.
|
|
16229
|
+
* @summary Users List
|
|
16230
|
+
* @param {*} [options] Override http request option.
|
|
16231
|
+
* @throws {RequiredError}
|
|
16232
|
+
*/
|
|
16233
|
+
async usersList(options) {
|
|
16234
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.usersList(options);
|
|
16235
|
+
const localVarOperationServerIndex = _nullishCoalesce(_optionalChain([configuration, 'optionalAccess', _906 => _906.serverIndex]), () => ( 0));
|
|
16236
|
+
const localVarOperationServerBasePath = _optionalChain([operationServerMap, 'access', _907 => _907["UsersApi.usersList"], 'optionalAccess', _908 => _908[localVarOperationServerIndex], 'optionalAccess', _909 => _909.url]);
|
|
16146
16237
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, _axios2.default, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
16147
16238
|
}
|
|
16148
16239
|
};
|
|
@@ -16168,6 +16259,15 @@ var UsersApiFactory = function(configuration, basePath, axios) {
|
|
|
16168
16259
|
*/
|
|
16169
16260
|
getUser(userId, options) {
|
|
16170
16261
|
return localVarFp.getUser(userId, options).then((request) => request(axios, basePath));
|
|
16262
|
+
},
|
|
16263
|
+
/**
|
|
16264
|
+
* Fetch users for the current account from auth_gateway.
|
|
16265
|
+
* @summary Users List
|
|
16266
|
+
* @param {*} [options] Override http request option.
|
|
16267
|
+
* @throws {RequiredError}
|
|
16268
|
+
*/
|
|
16269
|
+
usersList(options) {
|
|
16270
|
+
return localVarFp.usersList(options).then((request) => request(axios, basePath));
|
|
16171
16271
|
}
|
|
16172
16272
|
};
|
|
16173
16273
|
};
|
|
@@ -16193,6 +16293,16 @@ var UsersApi = class extends BaseAPI {
|
|
|
16193
16293
|
getUser(userId, options) {
|
|
16194
16294
|
return UsersApiFp(this.configuration).getUser(userId, options).then((request) => request(this.axios, this.basePath));
|
|
16195
16295
|
}
|
|
16296
|
+
/**
|
|
16297
|
+
* Fetch users for the current account from auth_gateway.
|
|
16298
|
+
* @summary Users List
|
|
16299
|
+
* @param {*} [options] Override http request option.
|
|
16300
|
+
* @throws {RequiredError}
|
|
16301
|
+
* @memberof UsersApi
|
|
16302
|
+
*/
|
|
16303
|
+
usersList(options) {
|
|
16304
|
+
return UsersApiFp(this.configuration).usersList(options).then((request) => request(this.axios, this.basePath));
|
|
16305
|
+
}
|
|
16196
16306
|
};
|
|
16197
16307
|
|
|
16198
16308
|
// src/configuration.ts
|
|
@@ -16263,7 +16373,7 @@ var Configuration = class {
|
|
|
16263
16373
|
this.baseOptions = {
|
|
16264
16374
|
...param.baseOptions,
|
|
16265
16375
|
headers: {
|
|
16266
|
-
..._optionalChain([param, 'access',
|
|
16376
|
+
..._optionalChain([param, 'access', _910 => _910.baseOptions, 'optionalAccess', _911 => _911.headers])
|
|
16267
16377
|
}
|
|
16268
16378
|
};
|
|
16269
16379
|
this.formDataCtor = param.formDataCtor;
|