@connectedxm/admin-sdk 6.6.2 → 6.7.3
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/.openapi-generator/FILES +8 -3
- package/AdminApi.ts +3 -9
- package/README.md +16 -6
- package/api.ts +1073 -832
- package/dist/AdminApi.d.ts +2 -4
- package/dist/AdminApi.js +1 -3
- package/dist/api.d.ts +550 -432
- package/dist/api.js +773 -608
- package/dist/esm/AdminApi.d.ts +2 -4
- package/dist/esm/AdminApi.js +2 -4
- package/dist/esm/api.d.ts +550 -432
- package/dist/esm/api.js +759 -586
- package/docs/AccountsApi.md +64 -0
- package/docs/ActivitiesApi.md +3 -0
- package/docs/BaseOrganizationModuleSettings.md +20 -0
- package/docs/BaseOrganizationModuleSettingsTranslation.md +22 -0
- package/docs/EventAttendeeCreateInputs.md +20 -0
- package/docs/EventsAttendeesApi.md +7 -6
- package/docs/Organization.md +0 -16
- package/docs/OrganizationModuleSettings.md +36 -0
- package/docs/OrganizationModuleSettingsTranslation.md +24 -0
- package/docs/OrganizationModuleSettingsTranslationUpdateInputs.md +20 -0
- package/docs/OrganizationModuleSettingsUpdateInputs.md +34 -0
- package/docs/OrganizationModulesSettingsApi.md +105 -0
- package/docs/OrganizationUpdateInputs.md +0 -16
- package/docs/SupportApi.md +241 -0
- package/docs/SupportMessagesApi.md +64 -0
- package/docs/SupportNotesApi.md +64 -0
- package/docs/SupportTicketState.md +2 -0
- package/package.json +1 -1
- package/docs/SupportticketsApi.md +0 -248
- package/docs/SupportticketsMessagesApi.md +0 -71
- package/docs/SupportticketsNotesApi.md +0 -71
package/dist/esm/api.d.ts
CHANGED
|
@@ -1737,6 +1737,13 @@ export interface BaseOrganizationModule {
|
|
|
1737
1737
|
'enabled': boolean;
|
|
1738
1738
|
'editable': boolean;
|
|
1739
1739
|
}
|
|
1740
|
+
export interface BaseOrganizationModuleSettings {
|
|
1741
|
+
'organizationId': string;
|
|
1742
|
+
}
|
|
1743
|
+
export interface BaseOrganizationModuleSettingsTranslation {
|
|
1744
|
+
'organizationId': string;
|
|
1745
|
+
'locale': string;
|
|
1746
|
+
}
|
|
1740
1747
|
export interface BasePassAddOn {
|
|
1741
1748
|
'addOnId': string;
|
|
1742
1749
|
'addOn': BaseEventAddOn;
|
|
@@ -3802,6 +3809,9 @@ export interface EventAttendeeAllOfCount {
|
|
|
3802
3809
|
'payments': number;
|
|
3803
3810
|
'coupons': number;
|
|
3804
3811
|
}
|
|
3812
|
+
export interface EventAttendeeCreateInputs {
|
|
3813
|
+
'accountId': string;
|
|
3814
|
+
}
|
|
3805
3815
|
export interface EventAttendeePackageCreateInputs {
|
|
3806
3816
|
'packageId': string;
|
|
3807
3817
|
'status'?: PurchaseStatus;
|
|
@@ -7386,15 +7396,7 @@ export interface Organization {
|
|
|
7386
7396
|
'locales': Array<string>;
|
|
7387
7397
|
'inviteOnly': boolean;
|
|
7388
7398
|
'googleTagManagerId': string | null;
|
|
7389
|
-
'meetingGroupCallAdminPreset': string;
|
|
7390
|
-
'meetingGroupCallGuestPreset': string;
|
|
7391
|
-
'meetingWebinarAdminPreset': string;
|
|
7392
|
-
'meetingWebinarGuestPreset': string;
|
|
7393
|
-
'meetingLivestreamAdminPreset': string;
|
|
7394
|
-
'meetingLivestreamGuestPreset': string;
|
|
7395
7399
|
'options': object | null;
|
|
7396
|
-
'autoResolveSupportTickets': boolean;
|
|
7397
|
-
'autoResolveSupportTicketMessage': string | null;
|
|
7398
7400
|
}
|
|
7399
7401
|
export declare enum OrganizationActionType {
|
|
7400
7402
|
Create = "create",
|
|
@@ -7487,6 +7489,35 @@ export interface OrganizationModule {
|
|
|
7487
7489
|
'createdAt': string;
|
|
7488
7490
|
'updatedAt': string;
|
|
7489
7491
|
}
|
|
7492
|
+
export interface OrganizationModuleSettings {
|
|
7493
|
+
'organizationId': string;
|
|
7494
|
+
'meetingGroupCallAdminPreset': string;
|
|
7495
|
+
'meetingGroupCallGuestPreset': string;
|
|
7496
|
+
'meetingWebinarAdminPreset': string;
|
|
7497
|
+
'meetingWebinarGuestPreset': string;
|
|
7498
|
+
'meetingLivestreamAdminPreset': string;
|
|
7499
|
+
'meetingLivestreamGuestPreset': string;
|
|
7500
|
+
'supportAutoResolve': boolean;
|
|
7501
|
+
'supportAutoResolveMessage'?: string;
|
|
7502
|
+
}
|
|
7503
|
+
export interface OrganizationModuleSettingsTranslation {
|
|
7504
|
+
'organizationId': string;
|
|
7505
|
+
'locale': string;
|
|
7506
|
+
'supportAutoResolveMessage'?: string;
|
|
7507
|
+
}
|
|
7508
|
+
export interface OrganizationModuleSettingsTranslationUpdateInputs {
|
|
7509
|
+
'supportAutoResolveMessage'?: string;
|
|
7510
|
+
}
|
|
7511
|
+
export interface OrganizationModuleSettingsUpdateInputs {
|
|
7512
|
+
'meetingGroupCallAdminPreset'?: string;
|
|
7513
|
+
'meetingGroupCallGuestPreset'?: string;
|
|
7514
|
+
'meetingWebinarAdminPreset'?: string;
|
|
7515
|
+
'meetingWebinarGuestPreset'?: string;
|
|
7516
|
+
'meetingLivestreamAdminPreset'?: string;
|
|
7517
|
+
'meetingLivestreamGuestPreset'?: string;
|
|
7518
|
+
'supportAutoResolve'?: boolean;
|
|
7519
|
+
'supportAutoResolveMessage'?: string;
|
|
7520
|
+
}
|
|
7490
7521
|
export declare enum OrganizationModuleType {
|
|
7491
7522
|
Activities = "activities",
|
|
7492
7523
|
Events = "events",
|
|
@@ -7631,15 +7662,7 @@ export interface OrganizationUpdateInputs {
|
|
|
7631
7662
|
'locales'?: Array<string> | null;
|
|
7632
7663
|
'inviteOnly'?: boolean;
|
|
7633
7664
|
'googleTagManagerId'?: string | null;
|
|
7634
|
-
'meetingGroupCallAdminPreset'?: string;
|
|
7635
|
-
'meetingGroupCallGuestPreset'?: string;
|
|
7636
|
-
'meetingWebinarAdminPreset'?: string;
|
|
7637
|
-
'meetingWebinarGuestPreset'?: string;
|
|
7638
|
-
'meetingLivestreamAdminPreset'?: string;
|
|
7639
|
-
'meetingLivestreamGuestPreset'?: string;
|
|
7640
7665
|
'options'?: object | null;
|
|
7641
|
-
'autoResolveSupportTickets'?: boolean;
|
|
7642
|
-
'autoResolveSupportTicketMessage'?: string | null;
|
|
7643
7666
|
}
|
|
7644
7667
|
export declare enum PageType {
|
|
7645
7668
|
About = "about",
|
|
@@ -8742,7 +8765,8 @@ export declare enum SupportTicketState {
|
|
|
8742
8765
|
New = "new",
|
|
8743
8766
|
InProgress = "inProgress",
|
|
8744
8767
|
Resolved = "resolved",
|
|
8745
|
-
Spam = "spam"
|
|
8768
|
+
Spam = "spam",
|
|
8769
|
+
Archived = "archived"
|
|
8746
8770
|
}
|
|
8747
8771
|
export declare enum SupportTicketType {
|
|
8748
8772
|
Support = "support",
|
|
@@ -9758,6 +9782,18 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
9758
9782
|
* @throws {RequiredError}
|
|
9759
9783
|
*/
|
|
9760
9784
|
getAccountPayments: (accountId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9785
|
+
/**
|
|
9786
|
+
* Get Account Registrations endpoint
|
|
9787
|
+
* @summary Get Account Registrations
|
|
9788
|
+
* @param {string} accountId The account identifier
|
|
9789
|
+
* @param {number} [page] Page number
|
|
9790
|
+
* @param {number} [pageSize] Number of items per page
|
|
9791
|
+
* @param {string} [orderBy] Field to order by
|
|
9792
|
+
* @param {string} [search] Search query
|
|
9793
|
+
* @param {*} [options] Override http request option.
|
|
9794
|
+
* @throws {RequiredError}
|
|
9795
|
+
*/
|
|
9796
|
+
getAccountRegistrations: (accountId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
9761
9797
|
/**
|
|
9762
9798
|
* Get Account Threads endpoint
|
|
9763
9799
|
* @summary Get Account Threads
|
|
@@ -9921,6 +9957,18 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
9921
9957
|
* @throws {RequiredError}
|
|
9922
9958
|
*/
|
|
9923
9959
|
getAccountPayments(accountId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountPayments200Response>>;
|
|
9960
|
+
/**
|
|
9961
|
+
* Get Account Registrations endpoint
|
|
9962
|
+
* @summary Get Account Registrations
|
|
9963
|
+
* @param {string} accountId The account identifier
|
|
9964
|
+
* @param {number} [page] Page number
|
|
9965
|
+
* @param {number} [pageSize] Number of items per page
|
|
9966
|
+
* @param {string} [orderBy] Field to order by
|
|
9967
|
+
* @param {string} [search] Search query
|
|
9968
|
+
* @param {*} [options] Override http request option.
|
|
9969
|
+
* @throws {RequiredError}
|
|
9970
|
+
*/
|
|
9971
|
+
getAccountRegistrations(accountId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountInvitations200Response>>;
|
|
9924
9972
|
/**
|
|
9925
9973
|
* Get Account Threads endpoint
|
|
9926
9974
|
* @summary Get Account Threads
|
|
@@ -10057,6 +10105,14 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
10057
10105
|
* @throws {RequiredError}
|
|
10058
10106
|
*/
|
|
10059
10107
|
getAccountPayments(requestParameters: AccountsApiGetAccountPaymentsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountPayments200Response>;
|
|
10108
|
+
/**
|
|
10109
|
+
* Get Account Registrations endpoint
|
|
10110
|
+
* @summary Get Account Registrations
|
|
10111
|
+
* @param {AccountsApiGetAccountRegistrationsRequest} requestParameters Request parameters.
|
|
10112
|
+
* @param {*} [options] Override http request option.
|
|
10113
|
+
* @throws {RequiredError}
|
|
10114
|
+
*/
|
|
10115
|
+
getAccountRegistrations(requestParameters: AccountsApiGetAccountRegistrationsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountInvitations200Response>;
|
|
10060
10116
|
/**
|
|
10061
10117
|
* Get Account Threads endpoint
|
|
10062
10118
|
* @summary Get Account Threads
|
|
@@ -10294,6 +10350,31 @@ export interface AccountsApiGetAccountPaymentsRequest {
|
|
|
10294
10350
|
*/
|
|
10295
10351
|
readonly search?: string;
|
|
10296
10352
|
}
|
|
10353
|
+
/**
|
|
10354
|
+
* Request parameters for getAccountRegistrations operation in AccountsApi.
|
|
10355
|
+
*/
|
|
10356
|
+
export interface AccountsApiGetAccountRegistrationsRequest {
|
|
10357
|
+
/**
|
|
10358
|
+
* The account identifier
|
|
10359
|
+
*/
|
|
10360
|
+
readonly accountId: string;
|
|
10361
|
+
/**
|
|
10362
|
+
* Page number
|
|
10363
|
+
*/
|
|
10364
|
+
readonly page?: number;
|
|
10365
|
+
/**
|
|
10366
|
+
* Number of items per page
|
|
10367
|
+
*/
|
|
10368
|
+
readonly pageSize?: number;
|
|
10369
|
+
/**
|
|
10370
|
+
* Field to order by
|
|
10371
|
+
*/
|
|
10372
|
+
readonly orderBy?: string;
|
|
10373
|
+
/**
|
|
10374
|
+
* Search query
|
|
10375
|
+
*/
|
|
10376
|
+
readonly search?: string;
|
|
10377
|
+
}
|
|
10297
10378
|
/**
|
|
10298
10379
|
* Request parameters for getAccountThreads operation in AccountsApi.
|
|
10299
10380
|
*/
|
|
@@ -10463,6 +10544,14 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
10463
10544
|
* @throws {RequiredError}
|
|
10464
10545
|
*/
|
|
10465
10546
|
getAccountPayments(requestParameters: AccountsApiGetAccountPaymentsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountPayments200Response, any, {}>>;
|
|
10547
|
+
/**
|
|
10548
|
+
* Get Account Registrations endpoint
|
|
10549
|
+
* @summary Get Account Registrations
|
|
10550
|
+
* @param {AccountsApiGetAccountRegistrationsRequest} requestParameters Request parameters.
|
|
10551
|
+
* @param {*} [options] Override http request option.
|
|
10552
|
+
* @throws {RequiredError}
|
|
10553
|
+
*/
|
|
10554
|
+
getAccountRegistrations(requestParameters: AccountsApiGetAccountRegistrationsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountInvitations200Response, any, {}>>;
|
|
10466
10555
|
/**
|
|
10467
10556
|
* Get Account Threads endpoint
|
|
10468
10557
|
* @summary Get Account Threads
|
|
@@ -12174,6 +12263,7 @@ export declare const ActivitiesApiAxiosParamCreator: (configuration?: Configurat
|
|
|
12174
12263
|
* @param {ModerationStatus} [moderation] Filter by moderation
|
|
12175
12264
|
* @param {object} [featured] Filter by featured
|
|
12176
12265
|
* @param {ActivityStatus} [status] Filter by status
|
|
12266
|
+
* @param {boolean} [global] Filter by global
|
|
12177
12267
|
* @param {number} [page] Page number
|
|
12178
12268
|
* @param {number} [pageSize] Number of items per page
|
|
12179
12269
|
* @param {string} [orderBy] Field to order by
|
|
@@ -12181,7 +12271,7 @@ export declare const ActivitiesApiAxiosParamCreator: (configuration?: Configurat
|
|
|
12181
12271
|
* @param {*} [options] Override http request option.
|
|
12182
12272
|
* @throws {RequiredError}
|
|
12183
12273
|
*/
|
|
12184
|
-
getActivities: (moderation?: ModerationStatus, featured?: object, status?: ActivityStatus, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12274
|
+
getActivities: (moderation?: ModerationStatus, featured?: object, status?: ActivityStatus, global?: boolean, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12185
12275
|
/**
|
|
12186
12276
|
* Get Activity endpoint
|
|
12187
12277
|
* @summary Get Activity
|
|
@@ -12268,6 +12358,7 @@ export declare const ActivitiesApiFp: (configuration?: Configuration) => {
|
|
|
12268
12358
|
* @param {ModerationStatus} [moderation] Filter by moderation
|
|
12269
12359
|
* @param {object} [featured] Filter by featured
|
|
12270
12360
|
* @param {ActivityStatus} [status] Filter by status
|
|
12361
|
+
* @param {boolean} [global] Filter by global
|
|
12271
12362
|
* @param {number} [page] Page number
|
|
12272
12363
|
* @param {number} [pageSize] Number of items per page
|
|
12273
12364
|
* @param {string} [orderBy] Field to order by
|
|
@@ -12275,7 +12366,7 @@ export declare const ActivitiesApiFp: (configuration?: Configuration) => {
|
|
|
12275
12366
|
* @param {*} [options] Override http request option.
|
|
12276
12367
|
* @throws {RequiredError}
|
|
12277
12368
|
*/
|
|
12278
|
-
getActivities(moderation?: ModerationStatus, featured?: object, status?: ActivityStatus, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountActivities200Response>>;
|
|
12369
|
+
getActivities(moderation?: ModerationStatus, featured?: object, status?: ActivityStatus, global?: boolean, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountActivities200Response>>;
|
|
12279
12370
|
/**
|
|
12280
12371
|
* Get Activity endpoint
|
|
12281
12372
|
* @summary Get Activity
|
|
@@ -12454,6 +12545,10 @@ export interface ActivitiesApiGetActivitiesRequest {
|
|
|
12454
12545
|
* Filter by status
|
|
12455
12546
|
*/
|
|
12456
12547
|
readonly status?: ActivityStatus;
|
|
12548
|
+
/**
|
|
12549
|
+
* Filter by global
|
|
12550
|
+
*/
|
|
12551
|
+
readonly global?: boolean;
|
|
12457
12552
|
/**
|
|
12458
12553
|
* Page number
|
|
12459
12554
|
*/
|
|
@@ -20140,11 +20235,11 @@ export declare const EventsAttendeesApiAxiosParamCreator: (configuration?: Confi
|
|
|
20140
20235
|
* Create Event Attendee endpoint
|
|
20141
20236
|
* @summary Create Event Attendee
|
|
20142
20237
|
* @param {string} eventId The event identifier
|
|
20143
|
-
* @param {
|
|
20238
|
+
* @param {EventAttendeeCreateInputs} eventAttendeeCreateInputs
|
|
20144
20239
|
* @param {*} [options] Override http request option.
|
|
20145
20240
|
* @throws {RequiredError}
|
|
20146
20241
|
*/
|
|
20147
|
-
createEventAttendee: (eventId: string,
|
|
20242
|
+
createEventAttendee: (eventId: string, eventAttendeeCreateInputs: EventAttendeeCreateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
20148
20243
|
/**
|
|
20149
20244
|
* Delete Event Attendee endpoint
|
|
20150
20245
|
* @summary Delete Event Attendee
|
|
@@ -20272,11 +20367,11 @@ export declare const EventsAttendeesApiFp: (configuration?: Configuration) => {
|
|
|
20272
20367
|
* Create Event Attendee endpoint
|
|
20273
20368
|
* @summary Create Event Attendee
|
|
20274
20369
|
* @param {string} eventId The event identifier
|
|
20275
|
-
* @param {
|
|
20370
|
+
* @param {EventAttendeeCreateInputs} eventAttendeeCreateInputs
|
|
20276
20371
|
* @param {*} [options] Override http request option.
|
|
20277
20372
|
* @throws {RequiredError}
|
|
20278
20373
|
*/
|
|
20279
|
-
createEventAttendee(eventId: string,
|
|
20374
|
+
createEventAttendee(eventId: string, eventAttendeeCreateInputs: EventAttendeeCreateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventAttendee200Response>>;
|
|
20280
20375
|
/**
|
|
20281
20376
|
* Delete Event Attendee endpoint
|
|
20282
20377
|
* @summary Delete Event Attendee
|
|
@@ -20497,10 +20592,7 @@ export interface EventsAttendeesApiCreateEventAttendeeRequest {
|
|
|
20497
20592
|
* The event identifier
|
|
20498
20593
|
*/
|
|
20499
20594
|
readonly eventId: string;
|
|
20500
|
-
|
|
20501
|
-
* Filter by accountId
|
|
20502
|
-
*/
|
|
20503
|
-
readonly accountId: string;
|
|
20595
|
+
readonly eventAttendeeCreateInputs: EventAttendeeCreateInputs;
|
|
20504
20596
|
}
|
|
20505
20597
|
/**
|
|
20506
20598
|
* Request parameters for deleteEventAttendee operation in EventsAttendeesApi.
|
|
@@ -50285,6 +50377,92 @@ export declare class OrganizationModulesCustomApi extends BaseAPI {
|
|
|
50285
50377
|
*/
|
|
50286
50378
|
updateCustomModule(requestParameters: OrganizationModulesCustomApiUpdateCustomModuleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateCustomModule200Response, any, {}>>;
|
|
50287
50379
|
}
|
|
50380
|
+
/**
|
|
50381
|
+
* OrganizationModulesSettingsApi - axios parameter creator
|
|
50382
|
+
*/
|
|
50383
|
+
export declare const OrganizationModulesSettingsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
50384
|
+
/**
|
|
50385
|
+
* Get Organization Module Settings endpoint
|
|
50386
|
+
* @summary Get Organization Module Settings
|
|
50387
|
+
* @param {*} [options] Override http request option.
|
|
50388
|
+
* @throws {RequiredError}
|
|
50389
|
+
*/
|
|
50390
|
+
getOrganizationModuleSettings: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
50391
|
+
/**
|
|
50392
|
+
* Update Organization Module Settings endpoint
|
|
50393
|
+
* @summary Update Organization Module Settings
|
|
50394
|
+
* @param {OrganizationModuleSettingsUpdateInputs} organizationModuleSettingsUpdateInputs
|
|
50395
|
+
* @param {*} [options] Override http request option.
|
|
50396
|
+
* @throws {RequiredError}
|
|
50397
|
+
*/
|
|
50398
|
+
updateOrganizationModuleSettings: (organizationModuleSettingsUpdateInputs: OrganizationModuleSettingsUpdateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
50399
|
+
};
|
|
50400
|
+
/**
|
|
50401
|
+
* OrganizationModulesSettingsApi - functional programming interface
|
|
50402
|
+
*/
|
|
50403
|
+
export declare const OrganizationModulesSettingsApiFp: (configuration?: Configuration) => {
|
|
50404
|
+
/**
|
|
50405
|
+
* Get Organization Module Settings endpoint
|
|
50406
|
+
* @summary Get Organization Module Settings
|
|
50407
|
+
* @param {*} [options] Override http request option.
|
|
50408
|
+
* @throws {RequiredError}
|
|
50409
|
+
*/
|
|
50410
|
+
getOrganizationModuleSettings(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountAddress200Response>>;
|
|
50411
|
+
/**
|
|
50412
|
+
* Update Organization Module Settings endpoint
|
|
50413
|
+
* @summary Update Organization Module Settings
|
|
50414
|
+
* @param {OrganizationModuleSettingsUpdateInputs} organizationModuleSettingsUpdateInputs
|
|
50415
|
+
* @param {*} [options] Override http request option.
|
|
50416
|
+
* @throws {RequiredError}
|
|
50417
|
+
*/
|
|
50418
|
+
updateOrganizationModuleSettings(organizationModuleSettingsUpdateInputs: OrganizationModuleSettingsUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountAddress200Response>>;
|
|
50419
|
+
};
|
|
50420
|
+
/**
|
|
50421
|
+
* OrganizationModulesSettingsApi - factory interface
|
|
50422
|
+
*/
|
|
50423
|
+
export declare const OrganizationModulesSettingsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
50424
|
+
/**
|
|
50425
|
+
* Get Organization Module Settings endpoint
|
|
50426
|
+
* @summary Get Organization Module Settings
|
|
50427
|
+
* @param {*} [options] Override http request option.
|
|
50428
|
+
* @throws {RequiredError}
|
|
50429
|
+
*/
|
|
50430
|
+
getOrganizationModuleSettings(options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountAddress200Response>;
|
|
50431
|
+
/**
|
|
50432
|
+
* Update Organization Module Settings endpoint
|
|
50433
|
+
* @summary Update Organization Module Settings
|
|
50434
|
+
* @param {OrganizationModulesSettingsApiUpdateOrganizationModuleSettingsRequest} requestParameters Request parameters.
|
|
50435
|
+
* @param {*} [options] Override http request option.
|
|
50436
|
+
* @throws {RequiredError}
|
|
50437
|
+
*/
|
|
50438
|
+
updateOrganizationModuleSettings(requestParameters: OrganizationModulesSettingsApiUpdateOrganizationModuleSettingsRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountAddress200Response>;
|
|
50439
|
+
};
|
|
50440
|
+
/**
|
|
50441
|
+
* Request parameters for updateOrganizationModuleSettings operation in OrganizationModulesSettingsApi.
|
|
50442
|
+
*/
|
|
50443
|
+
export interface OrganizationModulesSettingsApiUpdateOrganizationModuleSettingsRequest {
|
|
50444
|
+
readonly organizationModuleSettingsUpdateInputs: OrganizationModuleSettingsUpdateInputs;
|
|
50445
|
+
}
|
|
50446
|
+
/**
|
|
50447
|
+
* OrganizationModulesSettingsApi - object-oriented interface
|
|
50448
|
+
*/
|
|
50449
|
+
export declare class OrganizationModulesSettingsApi extends BaseAPI {
|
|
50450
|
+
/**
|
|
50451
|
+
* Get Organization Module Settings endpoint
|
|
50452
|
+
* @summary Get Organization Module Settings
|
|
50453
|
+
* @param {*} [options] Override http request option.
|
|
50454
|
+
* @throws {RequiredError}
|
|
50455
|
+
*/
|
|
50456
|
+
getOrganizationModuleSettings(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountAddress200Response, any, {}>>;
|
|
50457
|
+
/**
|
|
50458
|
+
* Update Organization Module Settings endpoint
|
|
50459
|
+
* @summary Update Organization Module Settings
|
|
50460
|
+
* @param {OrganizationModulesSettingsApiUpdateOrganizationModuleSettingsRequest} requestParameters Request parameters.
|
|
50461
|
+
* @param {*} [options] Override http request option.
|
|
50462
|
+
* @throws {RequiredError}
|
|
50463
|
+
*/
|
|
50464
|
+
updateOrganizationModuleSettings(requestParameters: OrganizationModulesSettingsApiUpdateOrganizationModuleSettingsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountAddress200Response, any, {}>>;
|
|
50465
|
+
}
|
|
50288
50466
|
/**
|
|
50289
50467
|
* OrganizationModulesTiersApi - axios parameter creator
|
|
50290
50468
|
*/
|
|
@@ -55939,6 +56117,49 @@ export declare const SupportApiAxiosParamCreator: (configuration?: Configuration
|
|
|
55939
56117
|
* @throws {RequiredError}
|
|
55940
56118
|
*/
|
|
55941
56119
|
deleteSupportTicket: (supportTicketId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56120
|
+
/**
|
|
56121
|
+
* Get Support Ticket endpoint
|
|
56122
|
+
* @summary Get Support Ticket
|
|
56123
|
+
* @param {string} supportTicketId The supportTicket identifier
|
|
56124
|
+
* @param {*} [options] Override http request option.
|
|
56125
|
+
* @throws {RequiredError}
|
|
56126
|
+
*/
|
|
56127
|
+
getSupportTicket: (supportTicketId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56128
|
+
/**
|
|
56129
|
+
* Get Support Ticket Activity endpoint
|
|
56130
|
+
* @summary Get Support Ticket Activity
|
|
56131
|
+
* @param {string} supportTicketId The supportTicket identifier
|
|
56132
|
+
* @param {*} [options] Override http request option.
|
|
56133
|
+
* @throws {RequiredError}
|
|
56134
|
+
*/
|
|
56135
|
+
getSupportTicketActivity: (supportTicketId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56136
|
+
/**
|
|
56137
|
+
* Get Support Ticket Viewer endpoint
|
|
56138
|
+
* @summary Get Support Ticket Viewer
|
|
56139
|
+
* @param {string} supportTicketId The supportTicket identifier
|
|
56140
|
+
* @param {string} [orgMembershipId] Filter by orgMembershipId
|
|
56141
|
+
* @param {number} [page] Page number
|
|
56142
|
+
* @param {number} [pageSize] Number of items per page
|
|
56143
|
+
* @param {string} [orderBy] Field to order by
|
|
56144
|
+
* @param {string} [search] Search query
|
|
56145
|
+
* @param {*} [options] Override http request option.
|
|
56146
|
+
* @throws {RequiredError}
|
|
56147
|
+
*/
|
|
56148
|
+
getSupportTicketViewer: (supportTicketId: string, orgMembershipId?: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56149
|
+
/**
|
|
56150
|
+
* Get Support Tickets endpoint
|
|
56151
|
+
* @summary Get Support Tickets
|
|
56152
|
+
* @param {string} [type] Filter by type
|
|
56153
|
+
* @param {string} [state] Filter by state
|
|
56154
|
+
* @param {GetSupportTicketsAssignmentEnum} [assignment] Filter by assignment
|
|
56155
|
+
* @param {number} [page] Page number
|
|
56156
|
+
* @param {number} [pageSize] Number of items per page
|
|
56157
|
+
* @param {string} [orderBy] Field to order by
|
|
56158
|
+
* @param {string} [search] Search query
|
|
56159
|
+
* @param {*} [options] Override http request option.
|
|
56160
|
+
* @throws {RequiredError}
|
|
56161
|
+
*/
|
|
56162
|
+
getSupportTickets: (type?: string, state?: string, assignment?: GetSupportTicketsAssignmentEnum, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
55942
56163
|
/**
|
|
55943
56164
|
* Update Support Ticket endpoint
|
|
55944
56165
|
* @summary Update Support Ticket
|
|
@@ -55969,6 +56190,49 @@ export declare const SupportApiFp: (configuration?: Configuration) => {
|
|
|
55969
56190
|
* @throws {RequiredError}
|
|
55970
56191
|
*/
|
|
55971
56192
|
deleteSupportTicket(supportTicketId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
|
|
56193
|
+
/**
|
|
56194
|
+
* Get Support Ticket endpoint
|
|
56195
|
+
* @summary Get Support Ticket
|
|
56196
|
+
* @param {string} supportTicketId The supportTicket identifier
|
|
56197
|
+
* @param {*} [options] Override http request option.
|
|
56198
|
+
* @throws {RequiredError}
|
|
56199
|
+
*/
|
|
56200
|
+
getSupportTicket(supportTicketId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateSupportTicket200Response>>;
|
|
56201
|
+
/**
|
|
56202
|
+
* Get Support Ticket Activity endpoint
|
|
56203
|
+
* @summary Get Support Ticket Activity
|
|
56204
|
+
* @param {string} supportTicketId The supportTicket identifier
|
|
56205
|
+
* @param {*} [options] Override http request option.
|
|
56206
|
+
* @throws {RequiredError}
|
|
56207
|
+
*/
|
|
56208
|
+
getSupportTicketActivity(supportTicketId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountAddress200Response>>;
|
|
56209
|
+
/**
|
|
56210
|
+
* Get Support Ticket Viewer endpoint
|
|
56211
|
+
* @summary Get Support Ticket Viewer
|
|
56212
|
+
* @param {string} supportTicketId The supportTicket identifier
|
|
56213
|
+
* @param {string} [orgMembershipId] Filter by orgMembershipId
|
|
56214
|
+
* @param {number} [page] Page number
|
|
56215
|
+
* @param {number} [pageSize] Number of items per page
|
|
56216
|
+
* @param {string} [orderBy] Field to order by
|
|
56217
|
+
* @param {string} [search] Search query
|
|
56218
|
+
* @param {*} [options] Override http request option.
|
|
56219
|
+
* @throws {RequiredError}
|
|
56220
|
+
*/
|
|
56221
|
+
getSupportTicketViewer(supportTicketId: string, orgMembershipId?: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountInvitations200Response>>;
|
|
56222
|
+
/**
|
|
56223
|
+
* Get Support Tickets endpoint
|
|
56224
|
+
* @summary Get Support Tickets
|
|
56225
|
+
* @param {string} [type] Filter by type
|
|
56226
|
+
* @param {string} [state] Filter by state
|
|
56227
|
+
* @param {GetSupportTicketsAssignmentEnum} [assignment] Filter by assignment
|
|
56228
|
+
* @param {number} [page] Page number
|
|
56229
|
+
* @param {number} [pageSize] Number of items per page
|
|
56230
|
+
* @param {string} [orderBy] Field to order by
|
|
56231
|
+
* @param {string} [search] Search query
|
|
56232
|
+
* @param {*} [options] Override http request option.
|
|
56233
|
+
* @throws {RequiredError}
|
|
56234
|
+
*/
|
|
56235
|
+
getSupportTickets(type?: string, state?: string, assignment?: GetSupportTicketsAssignmentEnum, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSupportTickets200Response>>;
|
|
55972
56236
|
/**
|
|
55973
56237
|
* Update Support Ticket endpoint
|
|
55974
56238
|
* @summary Update Support Ticket
|
|
@@ -55999,6 +56263,38 @@ export declare const SupportApiFactory: (configuration?: Configuration, basePath
|
|
|
55999
56263
|
* @throws {RequiredError}
|
|
56000
56264
|
*/
|
|
56001
56265
|
deleteSupportTicket(requestParameters: SupportApiDeleteSupportTicketRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response>;
|
|
56266
|
+
/**
|
|
56267
|
+
* Get Support Ticket endpoint
|
|
56268
|
+
* @summary Get Support Ticket
|
|
56269
|
+
* @param {SupportApiGetSupportTicketRequest} requestParameters Request parameters.
|
|
56270
|
+
* @param {*} [options] Override http request option.
|
|
56271
|
+
* @throws {RequiredError}
|
|
56272
|
+
*/
|
|
56273
|
+
getSupportTicket(requestParameters: SupportApiGetSupportTicketRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateSupportTicket200Response>;
|
|
56274
|
+
/**
|
|
56275
|
+
* Get Support Ticket Activity endpoint
|
|
56276
|
+
* @summary Get Support Ticket Activity
|
|
56277
|
+
* @param {SupportApiGetSupportTicketActivityRequest} requestParameters Request parameters.
|
|
56278
|
+
* @param {*} [options] Override http request option.
|
|
56279
|
+
* @throws {RequiredError}
|
|
56280
|
+
*/
|
|
56281
|
+
getSupportTicketActivity(requestParameters: SupportApiGetSupportTicketActivityRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountAddress200Response>;
|
|
56282
|
+
/**
|
|
56283
|
+
* Get Support Ticket Viewer endpoint
|
|
56284
|
+
* @summary Get Support Ticket Viewer
|
|
56285
|
+
* @param {SupportApiGetSupportTicketViewerRequest} requestParameters Request parameters.
|
|
56286
|
+
* @param {*} [options] Override http request option.
|
|
56287
|
+
* @throws {RequiredError}
|
|
56288
|
+
*/
|
|
56289
|
+
getSupportTicketViewer(requestParameters: SupportApiGetSupportTicketViewerRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountInvitations200Response>;
|
|
56290
|
+
/**
|
|
56291
|
+
* Get Support Tickets endpoint
|
|
56292
|
+
* @summary Get Support Tickets
|
|
56293
|
+
* @param {SupportApiGetSupportTicketsRequest} requestParameters Request parameters.
|
|
56294
|
+
* @param {*} [options] Override http request option.
|
|
56295
|
+
* @throws {RequiredError}
|
|
56296
|
+
*/
|
|
56297
|
+
getSupportTickets(requestParameters?: SupportApiGetSupportTicketsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSupportTickets200Response>;
|
|
56002
56298
|
/**
|
|
56003
56299
|
* Update Support Ticket endpoint
|
|
56004
56300
|
* @summary Update Support Ticket
|
|
@@ -56023,6 +56319,86 @@ export interface SupportApiDeleteSupportTicketRequest {
|
|
|
56023
56319
|
*/
|
|
56024
56320
|
readonly supportTicketId: string;
|
|
56025
56321
|
}
|
|
56322
|
+
/**
|
|
56323
|
+
* Request parameters for getSupportTicket operation in SupportApi.
|
|
56324
|
+
*/
|
|
56325
|
+
export interface SupportApiGetSupportTicketRequest {
|
|
56326
|
+
/**
|
|
56327
|
+
* The supportTicket identifier
|
|
56328
|
+
*/
|
|
56329
|
+
readonly supportTicketId: string;
|
|
56330
|
+
}
|
|
56331
|
+
/**
|
|
56332
|
+
* Request parameters for getSupportTicketActivity operation in SupportApi.
|
|
56333
|
+
*/
|
|
56334
|
+
export interface SupportApiGetSupportTicketActivityRequest {
|
|
56335
|
+
/**
|
|
56336
|
+
* The supportTicket identifier
|
|
56337
|
+
*/
|
|
56338
|
+
readonly supportTicketId: string;
|
|
56339
|
+
}
|
|
56340
|
+
/**
|
|
56341
|
+
* Request parameters for getSupportTicketViewer operation in SupportApi.
|
|
56342
|
+
*/
|
|
56343
|
+
export interface SupportApiGetSupportTicketViewerRequest {
|
|
56344
|
+
/**
|
|
56345
|
+
* The supportTicket identifier
|
|
56346
|
+
*/
|
|
56347
|
+
readonly supportTicketId: string;
|
|
56348
|
+
/**
|
|
56349
|
+
* Filter by orgMembershipId
|
|
56350
|
+
*/
|
|
56351
|
+
readonly orgMembershipId?: string;
|
|
56352
|
+
/**
|
|
56353
|
+
* Page number
|
|
56354
|
+
*/
|
|
56355
|
+
readonly page?: number;
|
|
56356
|
+
/**
|
|
56357
|
+
* Number of items per page
|
|
56358
|
+
*/
|
|
56359
|
+
readonly pageSize?: number;
|
|
56360
|
+
/**
|
|
56361
|
+
* Field to order by
|
|
56362
|
+
*/
|
|
56363
|
+
readonly orderBy?: string;
|
|
56364
|
+
/**
|
|
56365
|
+
* Search query
|
|
56366
|
+
*/
|
|
56367
|
+
readonly search?: string;
|
|
56368
|
+
}
|
|
56369
|
+
/**
|
|
56370
|
+
* Request parameters for getSupportTickets operation in SupportApi.
|
|
56371
|
+
*/
|
|
56372
|
+
export interface SupportApiGetSupportTicketsRequest {
|
|
56373
|
+
/**
|
|
56374
|
+
* Filter by type
|
|
56375
|
+
*/
|
|
56376
|
+
readonly type?: string;
|
|
56377
|
+
/**
|
|
56378
|
+
* Filter by state
|
|
56379
|
+
*/
|
|
56380
|
+
readonly state?: string;
|
|
56381
|
+
/**
|
|
56382
|
+
* Filter by assignment
|
|
56383
|
+
*/
|
|
56384
|
+
readonly assignment?: GetSupportTicketsAssignmentEnum;
|
|
56385
|
+
/**
|
|
56386
|
+
* Page number
|
|
56387
|
+
*/
|
|
56388
|
+
readonly page?: number;
|
|
56389
|
+
/**
|
|
56390
|
+
* Number of items per page
|
|
56391
|
+
*/
|
|
56392
|
+
readonly pageSize?: number;
|
|
56393
|
+
/**
|
|
56394
|
+
* Field to order by
|
|
56395
|
+
*/
|
|
56396
|
+
readonly orderBy?: string;
|
|
56397
|
+
/**
|
|
56398
|
+
* Search query
|
|
56399
|
+
*/
|
|
56400
|
+
readonly search?: string;
|
|
56401
|
+
}
|
|
56026
56402
|
/**
|
|
56027
56403
|
* Request parameters for updateSupportTicket operation in SupportApi.
|
|
56028
56404
|
*/
|
|
@@ -56053,6 +56429,38 @@ export declare class SupportApi extends BaseAPI {
|
|
|
56053
56429
|
* @throws {RequiredError}
|
|
56054
56430
|
*/
|
|
56055
56431
|
deleteSupportTicket(requestParameters: SupportApiDeleteSupportTicketRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountInvitations200Response, any, {}>>;
|
|
56432
|
+
/**
|
|
56433
|
+
* Get Support Ticket endpoint
|
|
56434
|
+
* @summary Get Support Ticket
|
|
56435
|
+
* @param {SupportApiGetSupportTicketRequest} requestParameters Request parameters.
|
|
56436
|
+
* @param {*} [options] Override http request option.
|
|
56437
|
+
* @throws {RequiredError}
|
|
56438
|
+
*/
|
|
56439
|
+
getSupportTicket(requestParameters: SupportApiGetSupportTicketRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateSupportTicket200Response, any, {}>>;
|
|
56440
|
+
/**
|
|
56441
|
+
* Get Support Ticket Activity endpoint
|
|
56442
|
+
* @summary Get Support Ticket Activity
|
|
56443
|
+
* @param {SupportApiGetSupportTicketActivityRequest} requestParameters Request parameters.
|
|
56444
|
+
* @param {*} [options] Override http request option.
|
|
56445
|
+
* @throws {RequiredError}
|
|
56446
|
+
*/
|
|
56447
|
+
getSupportTicketActivity(requestParameters: SupportApiGetSupportTicketActivityRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountAddress200Response, any, {}>>;
|
|
56448
|
+
/**
|
|
56449
|
+
* Get Support Ticket Viewer endpoint
|
|
56450
|
+
* @summary Get Support Ticket Viewer
|
|
56451
|
+
* @param {SupportApiGetSupportTicketViewerRequest} requestParameters Request parameters.
|
|
56452
|
+
* @param {*} [options] Override http request option.
|
|
56453
|
+
* @throws {RequiredError}
|
|
56454
|
+
*/
|
|
56455
|
+
getSupportTicketViewer(requestParameters: SupportApiGetSupportTicketViewerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountInvitations200Response, any, {}>>;
|
|
56456
|
+
/**
|
|
56457
|
+
* Get Support Tickets endpoint
|
|
56458
|
+
* @summary Get Support Tickets
|
|
56459
|
+
* @param {SupportApiGetSupportTicketsRequest} requestParameters Request parameters.
|
|
56460
|
+
* @param {*} [options] Override http request option.
|
|
56461
|
+
* @throws {RequiredError}
|
|
56462
|
+
*/
|
|
56463
|
+
getSupportTickets(requestParameters?: SupportApiGetSupportTicketsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetSupportTickets200Response, any, {}>>;
|
|
56056
56464
|
/**
|
|
56057
56465
|
* Update Support Ticket endpoint
|
|
56058
56466
|
* @summary Update Support Ticket
|
|
@@ -56062,6 +56470,10 @@ export declare class SupportApi extends BaseAPI {
|
|
|
56062
56470
|
*/
|
|
56063
56471
|
updateSupportTicket(requestParameters: SupportApiUpdateSupportTicketRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateSupportTicket200Response, any, {}>>;
|
|
56064
56472
|
}
|
|
56473
|
+
export declare enum GetSupportTicketsAssignmentEnum {
|
|
56474
|
+
Me = "me",
|
|
56475
|
+
Unassigned = "unassigned"
|
|
56476
|
+
}
|
|
56065
56477
|
/**
|
|
56066
56478
|
* SupportMessagesApi - axios parameter creator
|
|
56067
56479
|
*/
|
|
@@ -56075,6 +56487,18 @@ export declare const SupportMessagesApiAxiosParamCreator: (configuration?: Confi
|
|
|
56075
56487
|
* @throws {RequiredError}
|
|
56076
56488
|
*/
|
|
56077
56489
|
createSupportTicketMessage: (supportTicketId: string, supportTicketMessageCreateInputs: SupportTicketMessageCreateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56490
|
+
/**
|
|
56491
|
+
* Get Support Ticket Messages endpoint
|
|
56492
|
+
* @summary Get Support Ticket Messages
|
|
56493
|
+
* @param {string} supportTicketId The supportTicket identifier
|
|
56494
|
+
* @param {number} [page] Page number
|
|
56495
|
+
* @param {number} [pageSize] Number of items per page
|
|
56496
|
+
* @param {string} [orderBy] Field to order by
|
|
56497
|
+
* @param {string} [search] Search query
|
|
56498
|
+
* @param {*} [options] Override http request option.
|
|
56499
|
+
* @throws {RequiredError}
|
|
56500
|
+
*/
|
|
56501
|
+
getSupportTicketMessages: (supportTicketId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56078
56502
|
};
|
|
56079
56503
|
/**
|
|
56080
56504
|
* SupportMessagesApi - functional programming interface
|
|
@@ -56089,6 +56513,18 @@ export declare const SupportMessagesApiFp: (configuration?: Configuration) => {
|
|
|
56089
56513
|
* @throws {RequiredError}
|
|
56090
56514
|
*/
|
|
56091
56515
|
createSupportTicketMessage(supportTicketId: string, supportTicketMessageCreateInputs: SupportTicketMessageCreateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountAddress200Response>>;
|
|
56516
|
+
/**
|
|
56517
|
+
* Get Support Ticket Messages endpoint
|
|
56518
|
+
* @summary Get Support Ticket Messages
|
|
56519
|
+
* @param {string} supportTicketId The supportTicket identifier
|
|
56520
|
+
* @param {number} [page] Page number
|
|
56521
|
+
* @param {number} [pageSize] Number of items per page
|
|
56522
|
+
* @param {string} [orderBy] Field to order by
|
|
56523
|
+
* @param {string} [search] Search query
|
|
56524
|
+
* @param {*} [options] Override http request option.
|
|
56525
|
+
* @throws {RequiredError}
|
|
56526
|
+
*/
|
|
56527
|
+
getSupportTicketMessages(supportTicketId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountInvitations200Response>>;
|
|
56092
56528
|
};
|
|
56093
56529
|
/**
|
|
56094
56530
|
* SupportMessagesApi - factory interface
|
|
@@ -56102,6 +56538,14 @@ export declare const SupportMessagesApiFactory: (configuration?: Configuration,
|
|
|
56102
56538
|
* @throws {RequiredError}
|
|
56103
56539
|
*/
|
|
56104
56540
|
createSupportTicketMessage(requestParameters: SupportMessagesApiCreateSupportTicketMessageRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountAddress200Response>;
|
|
56541
|
+
/**
|
|
56542
|
+
* Get Support Ticket Messages endpoint
|
|
56543
|
+
* @summary Get Support Ticket Messages
|
|
56544
|
+
* @param {SupportMessagesApiGetSupportTicketMessagesRequest} requestParameters Request parameters.
|
|
56545
|
+
* @param {*} [options] Override http request option.
|
|
56546
|
+
* @throws {RequiredError}
|
|
56547
|
+
*/
|
|
56548
|
+
getSupportTicketMessages(requestParameters: SupportMessagesApiGetSupportTicketMessagesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountInvitations200Response>;
|
|
56105
56549
|
};
|
|
56106
56550
|
/**
|
|
56107
56551
|
* Request parameters for createSupportTicketMessage operation in SupportMessagesApi.
|
|
@@ -56113,6 +56557,31 @@ export interface SupportMessagesApiCreateSupportTicketMessageRequest {
|
|
|
56113
56557
|
readonly supportTicketId: string;
|
|
56114
56558
|
readonly supportTicketMessageCreateInputs: SupportTicketMessageCreateInputs;
|
|
56115
56559
|
}
|
|
56560
|
+
/**
|
|
56561
|
+
* Request parameters for getSupportTicketMessages operation in SupportMessagesApi.
|
|
56562
|
+
*/
|
|
56563
|
+
export interface SupportMessagesApiGetSupportTicketMessagesRequest {
|
|
56564
|
+
/**
|
|
56565
|
+
* The supportTicket identifier
|
|
56566
|
+
*/
|
|
56567
|
+
readonly supportTicketId: string;
|
|
56568
|
+
/**
|
|
56569
|
+
* Page number
|
|
56570
|
+
*/
|
|
56571
|
+
readonly page?: number;
|
|
56572
|
+
/**
|
|
56573
|
+
* Number of items per page
|
|
56574
|
+
*/
|
|
56575
|
+
readonly pageSize?: number;
|
|
56576
|
+
/**
|
|
56577
|
+
* Field to order by
|
|
56578
|
+
*/
|
|
56579
|
+
readonly orderBy?: string;
|
|
56580
|
+
/**
|
|
56581
|
+
* Search query
|
|
56582
|
+
*/
|
|
56583
|
+
readonly search?: string;
|
|
56584
|
+
}
|
|
56116
56585
|
/**
|
|
56117
56586
|
* SupportMessagesApi - object-oriented interface
|
|
56118
56587
|
*/
|
|
@@ -56125,6 +56594,14 @@ export declare class SupportMessagesApi extends BaseAPI {
|
|
|
56125
56594
|
* @throws {RequiredError}
|
|
56126
56595
|
*/
|
|
56127
56596
|
createSupportTicketMessage(requestParameters: SupportMessagesApiCreateSupportTicketMessageRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountAddress200Response, any, {}>>;
|
|
56597
|
+
/**
|
|
56598
|
+
* Get Support Ticket Messages endpoint
|
|
56599
|
+
* @summary Get Support Ticket Messages
|
|
56600
|
+
* @param {SupportMessagesApiGetSupportTicketMessagesRequest} requestParameters Request parameters.
|
|
56601
|
+
* @param {*} [options] Override http request option.
|
|
56602
|
+
* @throws {RequiredError}
|
|
56603
|
+
*/
|
|
56604
|
+
getSupportTicketMessages(requestParameters: SupportMessagesApiGetSupportTicketMessagesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountInvitations200Response, any, {}>>;
|
|
56128
56605
|
}
|
|
56129
56606
|
/**
|
|
56130
56607
|
* SupportNotesApi - axios parameter creator
|
|
@@ -56148,6 +56625,18 @@ export declare const SupportNotesApiAxiosParamCreator: (configuration?: Configur
|
|
|
56148
56625
|
* @throws {RequiredError}
|
|
56149
56626
|
*/
|
|
56150
56627
|
deleteSupportTicketNote: (supportTicketId: string, noteId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56628
|
+
/**
|
|
56629
|
+
* Get Support Ticket Notes endpoint
|
|
56630
|
+
* @summary Get Support Ticket Notes
|
|
56631
|
+
* @param {string} supportTicketId The supportTicket identifier
|
|
56632
|
+
* @param {number} [page] Page number
|
|
56633
|
+
* @param {number} [pageSize] Number of items per page
|
|
56634
|
+
* @param {string} [orderBy] Field to order by
|
|
56635
|
+
* @param {string} [search] Search query
|
|
56636
|
+
* @param {*} [options] Override http request option.
|
|
56637
|
+
* @throws {RequiredError}
|
|
56638
|
+
*/
|
|
56639
|
+
getSupportTicketNotes: (supportTicketId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56151
56640
|
};
|
|
56152
56641
|
/**
|
|
56153
56642
|
* SupportNotesApi - functional programming interface
|
|
@@ -56171,6 +56660,18 @@ export declare const SupportNotesApiFp: (configuration?: Configuration) => {
|
|
|
56171
56660
|
* @throws {RequiredError}
|
|
56172
56661
|
*/
|
|
56173
56662
|
deleteSupportTicketNote(supportTicketId: string, noteId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
|
|
56663
|
+
/**
|
|
56664
|
+
* Get Support Ticket Notes endpoint
|
|
56665
|
+
* @summary Get Support Ticket Notes
|
|
56666
|
+
* @param {string} supportTicketId The supportTicket identifier
|
|
56667
|
+
* @param {number} [page] Page number
|
|
56668
|
+
* @param {number} [pageSize] Number of items per page
|
|
56669
|
+
* @param {string} [orderBy] Field to order by
|
|
56670
|
+
* @param {string} [search] Search query
|
|
56671
|
+
* @param {*} [options] Override http request option.
|
|
56672
|
+
* @throws {RequiredError}
|
|
56673
|
+
*/
|
|
56674
|
+
getSupportTicketNotes(supportTicketId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountInvitations200Response>>;
|
|
56174
56675
|
};
|
|
56175
56676
|
/**
|
|
56176
56677
|
* SupportNotesApi - factory interface
|
|
@@ -56192,6 +56693,14 @@ export declare const SupportNotesApiFactory: (configuration?: Configuration, bas
|
|
|
56192
56693
|
* @throws {RequiredError}
|
|
56193
56694
|
*/
|
|
56194
56695
|
deleteSupportTicketNote(requestParameters: SupportNotesApiDeleteSupportTicketNoteRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response>;
|
|
56696
|
+
/**
|
|
56697
|
+
* Get Support Ticket Notes endpoint
|
|
56698
|
+
* @summary Get Support Ticket Notes
|
|
56699
|
+
* @param {SupportNotesApiGetSupportTicketNotesRequest} requestParameters Request parameters.
|
|
56700
|
+
* @param {*} [options] Override http request option.
|
|
56701
|
+
* @throws {RequiredError}
|
|
56702
|
+
*/
|
|
56703
|
+
getSupportTicketNotes(requestParameters: SupportNotesApiGetSupportTicketNotesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountInvitations200Response>;
|
|
56195
56704
|
};
|
|
56196
56705
|
/**
|
|
56197
56706
|
* Request parameters for createSupportTicketNote operation in SupportNotesApi.
|
|
@@ -56217,331 +56726,9 @@ export interface SupportNotesApiDeleteSupportTicketNoteRequest {
|
|
|
56217
56726
|
readonly noteId: string;
|
|
56218
56727
|
}
|
|
56219
56728
|
/**
|
|
56220
|
-
*
|
|
56221
|
-
*/
|
|
56222
|
-
export declare class SupportNotesApi extends BaseAPI {
|
|
56223
|
-
/**
|
|
56224
|
-
* Create Support Ticket Note endpoint
|
|
56225
|
-
* @summary Create Support Ticket Note
|
|
56226
|
-
* @param {SupportNotesApiCreateSupportTicketNoteRequest} requestParameters Request parameters.
|
|
56227
|
-
* @param {*} [options] Override http request option.
|
|
56228
|
-
* @throws {RequiredError}
|
|
56229
|
-
*/
|
|
56230
|
-
createSupportTicketNote(requestParameters: SupportNotesApiCreateSupportTicketNoteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountAddress200Response, any, {}>>;
|
|
56231
|
-
/**
|
|
56232
|
-
* Delete Support Ticket Note endpoint
|
|
56233
|
-
* @summary Delete Support Ticket Note
|
|
56234
|
-
* @param {SupportNotesApiDeleteSupportTicketNoteRequest} requestParameters Request parameters.
|
|
56235
|
-
* @param {*} [options] Override http request option.
|
|
56236
|
-
* @throws {RequiredError}
|
|
56237
|
-
*/
|
|
56238
|
-
deleteSupportTicketNote(requestParameters: SupportNotesApiDeleteSupportTicketNoteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountInvitations200Response, any, {}>>;
|
|
56239
|
-
}
|
|
56240
|
-
/**
|
|
56241
|
-
* SupportticketsApi - axios parameter creator
|
|
56242
|
-
*/
|
|
56243
|
-
export declare const SupportticketsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
56244
|
-
/**
|
|
56245
|
-
* Get Support Ticket endpoint
|
|
56246
|
-
* @summary Get Support Ticket
|
|
56247
|
-
* @param {string} supportTicketId The supportTicket identifier
|
|
56248
|
-
* @param {*} [options] Override http request option.
|
|
56249
|
-
* @throws {RequiredError}
|
|
56250
|
-
*/
|
|
56251
|
-
getSupportTicket: (supportTicketId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56252
|
-
/**
|
|
56253
|
-
* Get Support Ticket Activity endpoint
|
|
56254
|
-
* @summary Get Support Ticket Activity
|
|
56255
|
-
* @param {string} supportTicketId The supportTicket identifier
|
|
56256
|
-
* @param {*} [options] Override http request option.
|
|
56257
|
-
* @throws {RequiredError}
|
|
56258
|
-
*/
|
|
56259
|
-
getSupportTicketActivity: (supportTicketId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56260
|
-
/**
|
|
56261
|
-
* Get Support Ticket Viewer endpoint
|
|
56262
|
-
* @summary Get Support Ticket Viewer
|
|
56263
|
-
* @param {string} supportTicketId The supportTicket identifier
|
|
56264
|
-
* @param {string} [orgMembershipId] Filter by orgMembershipId
|
|
56265
|
-
* @param {number} [page] Page number
|
|
56266
|
-
* @param {number} [pageSize] Number of items per page
|
|
56267
|
-
* @param {string} [orderBy] Field to order by
|
|
56268
|
-
* @param {string} [search] Search query
|
|
56269
|
-
* @param {*} [options] Override http request option.
|
|
56270
|
-
* @throws {RequiredError}
|
|
56271
|
-
*/
|
|
56272
|
-
getSupportTicketViewer: (supportTicketId: string, orgMembershipId?: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56273
|
-
/**
|
|
56274
|
-
* Get Support Tickets endpoint
|
|
56275
|
-
* @summary Get Support Tickets
|
|
56276
|
-
* @param {string} [type] Filter by type
|
|
56277
|
-
* @param {string} [state] Filter by state
|
|
56278
|
-
* @param {GetSupportTicketsAssignmentEnum} [assignment] Filter by assignment
|
|
56279
|
-
* @param {number} [page] Page number
|
|
56280
|
-
* @param {number} [pageSize] Number of items per page
|
|
56281
|
-
* @param {string} [orderBy] Field to order by
|
|
56282
|
-
* @param {string} [search] Search query
|
|
56283
|
-
* @param {*} [options] Override http request option.
|
|
56284
|
-
* @throws {RequiredError}
|
|
56285
|
-
*/
|
|
56286
|
-
getSupportTickets: (type?: string, state?: string, assignment?: GetSupportTicketsAssignmentEnum, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56287
|
-
};
|
|
56288
|
-
/**
|
|
56289
|
-
* SupportticketsApi - functional programming interface
|
|
56290
|
-
*/
|
|
56291
|
-
export declare const SupportticketsApiFp: (configuration?: Configuration) => {
|
|
56292
|
-
/**
|
|
56293
|
-
* Get Support Ticket endpoint
|
|
56294
|
-
* @summary Get Support Ticket
|
|
56295
|
-
* @param {string} supportTicketId The supportTicket identifier
|
|
56296
|
-
* @param {*} [options] Override http request option.
|
|
56297
|
-
* @throws {RequiredError}
|
|
56298
|
-
*/
|
|
56299
|
-
getSupportTicket(supportTicketId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateSupportTicket200Response>>;
|
|
56300
|
-
/**
|
|
56301
|
-
* Get Support Ticket Activity endpoint
|
|
56302
|
-
* @summary Get Support Ticket Activity
|
|
56303
|
-
* @param {string} supportTicketId The supportTicket identifier
|
|
56304
|
-
* @param {*} [options] Override http request option.
|
|
56305
|
-
* @throws {RequiredError}
|
|
56306
|
-
*/
|
|
56307
|
-
getSupportTicketActivity(supportTicketId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountAddress200Response>>;
|
|
56308
|
-
/**
|
|
56309
|
-
* Get Support Ticket Viewer endpoint
|
|
56310
|
-
* @summary Get Support Ticket Viewer
|
|
56311
|
-
* @param {string} supportTicketId The supportTicket identifier
|
|
56312
|
-
* @param {string} [orgMembershipId] Filter by orgMembershipId
|
|
56313
|
-
* @param {number} [page] Page number
|
|
56314
|
-
* @param {number} [pageSize] Number of items per page
|
|
56315
|
-
* @param {string} [orderBy] Field to order by
|
|
56316
|
-
* @param {string} [search] Search query
|
|
56317
|
-
* @param {*} [options] Override http request option.
|
|
56318
|
-
* @throws {RequiredError}
|
|
56319
|
-
*/
|
|
56320
|
-
getSupportTicketViewer(supportTicketId: string, orgMembershipId?: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountInvitations200Response>>;
|
|
56321
|
-
/**
|
|
56322
|
-
* Get Support Tickets endpoint
|
|
56323
|
-
* @summary Get Support Tickets
|
|
56324
|
-
* @param {string} [type] Filter by type
|
|
56325
|
-
* @param {string} [state] Filter by state
|
|
56326
|
-
* @param {GetSupportTicketsAssignmentEnum} [assignment] Filter by assignment
|
|
56327
|
-
* @param {number} [page] Page number
|
|
56328
|
-
* @param {number} [pageSize] Number of items per page
|
|
56329
|
-
* @param {string} [orderBy] Field to order by
|
|
56330
|
-
* @param {string} [search] Search query
|
|
56331
|
-
* @param {*} [options] Override http request option.
|
|
56332
|
-
* @throws {RequiredError}
|
|
56333
|
-
*/
|
|
56334
|
-
getSupportTickets(type?: string, state?: string, assignment?: GetSupportTicketsAssignmentEnum, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetSupportTickets200Response>>;
|
|
56335
|
-
};
|
|
56336
|
-
/**
|
|
56337
|
-
* SupportticketsApi - factory interface
|
|
56338
|
-
*/
|
|
56339
|
-
export declare const SupportticketsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
56340
|
-
/**
|
|
56341
|
-
* Get Support Ticket endpoint
|
|
56342
|
-
* @summary Get Support Ticket
|
|
56343
|
-
* @param {SupportticketsApiGetSupportTicketRequest} requestParameters Request parameters.
|
|
56344
|
-
* @param {*} [options] Override http request option.
|
|
56345
|
-
* @throws {RequiredError}
|
|
56346
|
-
*/
|
|
56347
|
-
getSupportTicket(requestParameters: SupportticketsApiGetSupportTicketRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateSupportTicket200Response>;
|
|
56348
|
-
/**
|
|
56349
|
-
* Get Support Ticket Activity endpoint
|
|
56350
|
-
* @summary Get Support Ticket Activity
|
|
56351
|
-
* @param {SupportticketsApiGetSupportTicketActivityRequest} requestParameters Request parameters.
|
|
56352
|
-
* @param {*} [options] Override http request option.
|
|
56353
|
-
* @throws {RequiredError}
|
|
56354
|
-
*/
|
|
56355
|
-
getSupportTicketActivity(requestParameters: SupportticketsApiGetSupportTicketActivityRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountAddress200Response>;
|
|
56356
|
-
/**
|
|
56357
|
-
* Get Support Ticket Viewer endpoint
|
|
56358
|
-
* @summary Get Support Ticket Viewer
|
|
56359
|
-
* @param {SupportticketsApiGetSupportTicketViewerRequest} requestParameters Request parameters.
|
|
56360
|
-
* @param {*} [options] Override http request option.
|
|
56361
|
-
* @throws {RequiredError}
|
|
56362
|
-
*/
|
|
56363
|
-
getSupportTicketViewer(requestParameters: SupportticketsApiGetSupportTicketViewerRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountInvitations200Response>;
|
|
56364
|
-
/**
|
|
56365
|
-
* Get Support Tickets endpoint
|
|
56366
|
-
* @summary Get Support Tickets
|
|
56367
|
-
* @param {SupportticketsApiGetSupportTicketsRequest} requestParameters Request parameters.
|
|
56368
|
-
* @param {*} [options] Override http request option.
|
|
56369
|
-
* @throws {RequiredError}
|
|
56370
|
-
*/
|
|
56371
|
-
getSupportTickets(requestParameters?: SupportticketsApiGetSupportTicketsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetSupportTickets200Response>;
|
|
56372
|
-
};
|
|
56373
|
-
/**
|
|
56374
|
-
* Request parameters for getSupportTicket operation in SupportticketsApi.
|
|
56375
|
-
*/
|
|
56376
|
-
export interface SupportticketsApiGetSupportTicketRequest {
|
|
56377
|
-
/**
|
|
56378
|
-
* The supportTicket identifier
|
|
56379
|
-
*/
|
|
56380
|
-
readonly supportTicketId: string;
|
|
56381
|
-
}
|
|
56382
|
-
/**
|
|
56383
|
-
* Request parameters for getSupportTicketActivity operation in SupportticketsApi.
|
|
56384
|
-
*/
|
|
56385
|
-
export interface SupportticketsApiGetSupportTicketActivityRequest {
|
|
56386
|
-
/**
|
|
56387
|
-
* The supportTicket identifier
|
|
56388
|
-
*/
|
|
56389
|
-
readonly supportTicketId: string;
|
|
56390
|
-
}
|
|
56391
|
-
/**
|
|
56392
|
-
* Request parameters for getSupportTicketViewer operation in SupportticketsApi.
|
|
56393
|
-
*/
|
|
56394
|
-
export interface SupportticketsApiGetSupportTicketViewerRequest {
|
|
56395
|
-
/**
|
|
56396
|
-
* The supportTicket identifier
|
|
56397
|
-
*/
|
|
56398
|
-
readonly supportTicketId: string;
|
|
56399
|
-
/**
|
|
56400
|
-
* Filter by orgMembershipId
|
|
56401
|
-
*/
|
|
56402
|
-
readonly orgMembershipId?: string;
|
|
56403
|
-
/**
|
|
56404
|
-
* Page number
|
|
56405
|
-
*/
|
|
56406
|
-
readonly page?: number;
|
|
56407
|
-
/**
|
|
56408
|
-
* Number of items per page
|
|
56409
|
-
*/
|
|
56410
|
-
readonly pageSize?: number;
|
|
56411
|
-
/**
|
|
56412
|
-
* Field to order by
|
|
56413
|
-
*/
|
|
56414
|
-
readonly orderBy?: string;
|
|
56415
|
-
/**
|
|
56416
|
-
* Search query
|
|
56417
|
-
*/
|
|
56418
|
-
readonly search?: string;
|
|
56419
|
-
}
|
|
56420
|
-
/**
|
|
56421
|
-
* Request parameters for getSupportTickets operation in SupportticketsApi.
|
|
56422
|
-
*/
|
|
56423
|
-
export interface SupportticketsApiGetSupportTicketsRequest {
|
|
56424
|
-
/**
|
|
56425
|
-
* Filter by type
|
|
56426
|
-
*/
|
|
56427
|
-
readonly type?: string;
|
|
56428
|
-
/**
|
|
56429
|
-
* Filter by state
|
|
56430
|
-
*/
|
|
56431
|
-
readonly state?: string;
|
|
56432
|
-
/**
|
|
56433
|
-
* Filter by assignment
|
|
56434
|
-
*/
|
|
56435
|
-
readonly assignment?: GetSupportTicketsAssignmentEnum;
|
|
56436
|
-
/**
|
|
56437
|
-
* Page number
|
|
56438
|
-
*/
|
|
56439
|
-
readonly page?: number;
|
|
56440
|
-
/**
|
|
56441
|
-
* Number of items per page
|
|
56442
|
-
*/
|
|
56443
|
-
readonly pageSize?: number;
|
|
56444
|
-
/**
|
|
56445
|
-
* Field to order by
|
|
56446
|
-
*/
|
|
56447
|
-
readonly orderBy?: string;
|
|
56448
|
-
/**
|
|
56449
|
-
* Search query
|
|
56450
|
-
*/
|
|
56451
|
-
readonly search?: string;
|
|
56452
|
-
}
|
|
56453
|
-
/**
|
|
56454
|
-
* SupportticketsApi - object-oriented interface
|
|
56455
|
-
*/
|
|
56456
|
-
export declare class SupportticketsApi extends BaseAPI {
|
|
56457
|
-
/**
|
|
56458
|
-
* Get Support Ticket endpoint
|
|
56459
|
-
* @summary Get Support Ticket
|
|
56460
|
-
* @param {SupportticketsApiGetSupportTicketRequest} requestParameters Request parameters.
|
|
56461
|
-
* @param {*} [options] Override http request option.
|
|
56462
|
-
* @throws {RequiredError}
|
|
56463
|
-
*/
|
|
56464
|
-
getSupportTicket(requestParameters: SupportticketsApiGetSupportTicketRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateSupportTicket200Response, any, {}>>;
|
|
56465
|
-
/**
|
|
56466
|
-
* Get Support Ticket Activity endpoint
|
|
56467
|
-
* @summary Get Support Ticket Activity
|
|
56468
|
-
* @param {SupportticketsApiGetSupportTicketActivityRequest} requestParameters Request parameters.
|
|
56469
|
-
* @param {*} [options] Override http request option.
|
|
56470
|
-
* @throws {RequiredError}
|
|
56471
|
-
*/
|
|
56472
|
-
getSupportTicketActivity(requestParameters: SupportticketsApiGetSupportTicketActivityRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountAddress200Response, any, {}>>;
|
|
56473
|
-
/**
|
|
56474
|
-
* Get Support Ticket Viewer endpoint
|
|
56475
|
-
* @summary Get Support Ticket Viewer
|
|
56476
|
-
* @param {SupportticketsApiGetSupportTicketViewerRequest} requestParameters Request parameters.
|
|
56477
|
-
* @param {*} [options] Override http request option.
|
|
56478
|
-
* @throws {RequiredError}
|
|
56479
|
-
*/
|
|
56480
|
-
getSupportTicketViewer(requestParameters: SupportticketsApiGetSupportTicketViewerRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountInvitations200Response, any, {}>>;
|
|
56481
|
-
/**
|
|
56482
|
-
* Get Support Tickets endpoint
|
|
56483
|
-
* @summary Get Support Tickets
|
|
56484
|
-
* @param {SupportticketsApiGetSupportTicketsRequest} requestParameters Request parameters.
|
|
56485
|
-
* @param {*} [options] Override http request option.
|
|
56486
|
-
* @throws {RequiredError}
|
|
56487
|
-
*/
|
|
56488
|
-
getSupportTickets(requestParameters?: SupportticketsApiGetSupportTicketsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetSupportTickets200Response, any, {}>>;
|
|
56489
|
-
}
|
|
56490
|
-
export declare enum GetSupportTicketsAssignmentEnum {
|
|
56491
|
-
Me = "me",
|
|
56492
|
-
Unassigned = "unassigned"
|
|
56493
|
-
}
|
|
56494
|
-
/**
|
|
56495
|
-
* SupportticketsMessagesApi - axios parameter creator
|
|
56496
|
-
*/
|
|
56497
|
-
export declare const SupportticketsMessagesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
56498
|
-
/**
|
|
56499
|
-
* Get Support Ticket Messages endpoint
|
|
56500
|
-
* @summary Get Support Ticket Messages
|
|
56501
|
-
* @param {string} supportTicketId The supportTicket identifier
|
|
56502
|
-
* @param {number} [page] Page number
|
|
56503
|
-
* @param {number} [pageSize] Number of items per page
|
|
56504
|
-
* @param {string} [orderBy] Field to order by
|
|
56505
|
-
* @param {string} [search] Search query
|
|
56506
|
-
* @param {*} [options] Override http request option.
|
|
56507
|
-
* @throws {RequiredError}
|
|
56508
|
-
*/
|
|
56509
|
-
getSupportTicketMessages: (supportTicketId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56510
|
-
};
|
|
56511
|
-
/**
|
|
56512
|
-
* SupportticketsMessagesApi - functional programming interface
|
|
56729
|
+
* Request parameters for getSupportTicketNotes operation in SupportNotesApi.
|
|
56513
56730
|
*/
|
|
56514
|
-
export
|
|
56515
|
-
/**
|
|
56516
|
-
* Get Support Ticket Messages endpoint
|
|
56517
|
-
* @summary Get Support Ticket Messages
|
|
56518
|
-
* @param {string} supportTicketId The supportTicket identifier
|
|
56519
|
-
* @param {number} [page] Page number
|
|
56520
|
-
* @param {number} [pageSize] Number of items per page
|
|
56521
|
-
* @param {string} [orderBy] Field to order by
|
|
56522
|
-
* @param {string} [search] Search query
|
|
56523
|
-
* @param {*} [options] Override http request option.
|
|
56524
|
-
* @throws {RequiredError}
|
|
56525
|
-
*/
|
|
56526
|
-
getSupportTicketMessages(supportTicketId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountInvitations200Response>>;
|
|
56527
|
-
};
|
|
56528
|
-
/**
|
|
56529
|
-
* SupportticketsMessagesApi - factory interface
|
|
56530
|
-
*/
|
|
56531
|
-
export declare const SupportticketsMessagesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
56532
|
-
/**
|
|
56533
|
-
* Get Support Ticket Messages endpoint
|
|
56534
|
-
* @summary Get Support Ticket Messages
|
|
56535
|
-
* @param {SupportticketsMessagesApiGetSupportTicketMessagesRequest} requestParameters Request parameters.
|
|
56536
|
-
* @param {*} [options] Override http request option.
|
|
56537
|
-
* @throws {RequiredError}
|
|
56538
|
-
*/
|
|
56539
|
-
getSupportTicketMessages(requestParameters: SupportticketsMessagesApiGetSupportTicketMessagesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountInvitations200Response>;
|
|
56540
|
-
};
|
|
56541
|
-
/**
|
|
56542
|
-
* Request parameters for getSupportTicketMessages operation in SupportticketsMessagesApi.
|
|
56543
|
-
*/
|
|
56544
|
-
export interface SupportticketsMessagesApiGetSupportTicketMessagesRequest {
|
|
56731
|
+
export interface SupportNotesApiGetSupportTicketNotesRequest {
|
|
56545
56732
|
/**
|
|
56546
56733
|
* The supportTicket identifier
|
|
56547
56734
|
*/
|
|
@@ -56564,102 +56751,33 @@ export interface SupportticketsMessagesApiGetSupportTicketMessagesRequest {
|
|
|
56564
56751
|
readonly search?: string;
|
|
56565
56752
|
}
|
|
56566
56753
|
/**
|
|
56567
|
-
*
|
|
56568
|
-
*/
|
|
56569
|
-
export declare class SupportticketsMessagesApi extends BaseAPI {
|
|
56570
|
-
/**
|
|
56571
|
-
* Get Support Ticket Messages endpoint
|
|
56572
|
-
* @summary Get Support Ticket Messages
|
|
56573
|
-
* @param {SupportticketsMessagesApiGetSupportTicketMessagesRequest} requestParameters Request parameters.
|
|
56574
|
-
* @param {*} [options] Override http request option.
|
|
56575
|
-
* @throws {RequiredError}
|
|
56576
|
-
*/
|
|
56577
|
-
getSupportTicketMessages(requestParameters: SupportticketsMessagesApiGetSupportTicketMessagesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountInvitations200Response, any, {}>>;
|
|
56578
|
-
}
|
|
56579
|
-
/**
|
|
56580
|
-
* SupportticketsNotesApi - axios parameter creator
|
|
56581
|
-
*/
|
|
56582
|
-
export declare const SupportticketsNotesApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
56583
|
-
/**
|
|
56584
|
-
* Get Support Ticket Notes endpoint
|
|
56585
|
-
* @summary Get Support Ticket Notes
|
|
56586
|
-
* @param {string} supportTicketId The supportTicket identifier
|
|
56587
|
-
* @param {number} [page] Page number
|
|
56588
|
-
* @param {number} [pageSize] Number of items per page
|
|
56589
|
-
* @param {string} [orderBy] Field to order by
|
|
56590
|
-
* @param {string} [search] Search query
|
|
56591
|
-
* @param {*} [options] Override http request option.
|
|
56592
|
-
* @throws {RequiredError}
|
|
56593
|
-
*/
|
|
56594
|
-
getSupportTicketNotes: (supportTicketId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
56595
|
-
};
|
|
56596
|
-
/**
|
|
56597
|
-
* SupportticketsNotesApi - functional programming interface
|
|
56754
|
+
* SupportNotesApi - object-oriented interface
|
|
56598
56755
|
*/
|
|
56599
|
-
export declare
|
|
56756
|
+
export declare class SupportNotesApi extends BaseAPI {
|
|
56600
56757
|
/**
|
|
56601
|
-
*
|
|
56602
|
-
* @summary
|
|
56603
|
-
* @param {
|
|
56604
|
-
* @param {number} [page] Page number
|
|
56605
|
-
* @param {number} [pageSize] Number of items per page
|
|
56606
|
-
* @param {string} [orderBy] Field to order by
|
|
56607
|
-
* @param {string} [search] Search query
|
|
56758
|
+
* Create Support Ticket Note endpoint
|
|
56759
|
+
* @summary Create Support Ticket Note
|
|
56760
|
+
* @param {SupportNotesApiCreateSupportTicketNoteRequest} requestParameters Request parameters.
|
|
56608
56761
|
* @param {*} [options] Override http request option.
|
|
56609
56762
|
* @throws {RequiredError}
|
|
56610
56763
|
*/
|
|
56611
|
-
|
|
56612
|
-
};
|
|
56613
|
-
/**
|
|
56614
|
-
* SupportticketsNotesApi - factory interface
|
|
56615
|
-
*/
|
|
56616
|
-
export declare const SupportticketsNotesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
56764
|
+
createSupportTicketNote(requestParameters: SupportNotesApiCreateSupportTicketNoteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountAddress200Response, any, {}>>;
|
|
56617
56765
|
/**
|
|
56618
|
-
*
|
|
56619
|
-
* @summary
|
|
56620
|
-
* @param {
|
|
56766
|
+
* Delete Support Ticket Note endpoint
|
|
56767
|
+
* @summary Delete Support Ticket Note
|
|
56768
|
+
* @param {SupportNotesApiDeleteSupportTicketNoteRequest} requestParameters Request parameters.
|
|
56621
56769
|
* @param {*} [options] Override http request option.
|
|
56622
56770
|
* @throws {RequiredError}
|
|
56623
56771
|
*/
|
|
56624
|
-
|
|
56625
|
-
};
|
|
56626
|
-
/**
|
|
56627
|
-
* Request parameters for getSupportTicketNotes operation in SupportticketsNotesApi.
|
|
56628
|
-
*/
|
|
56629
|
-
export interface SupportticketsNotesApiGetSupportTicketNotesRequest {
|
|
56630
|
-
/**
|
|
56631
|
-
* The supportTicket identifier
|
|
56632
|
-
*/
|
|
56633
|
-
readonly supportTicketId: string;
|
|
56634
|
-
/**
|
|
56635
|
-
* Page number
|
|
56636
|
-
*/
|
|
56637
|
-
readonly page?: number;
|
|
56638
|
-
/**
|
|
56639
|
-
* Number of items per page
|
|
56640
|
-
*/
|
|
56641
|
-
readonly pageSize?: number;
|
|
56642
|
-
/**
|
|
56643
|
-
* Field to order by
|
|
56644
|
-
*/
|
|
56645
|
-
readonly orderBy?: string;
|
|
56646
|
-
/**
|
|
56647
|
-
* Search query
|
|
56648
|
-
*/
|
|
56649
|
-
readonly search?: string;
|
|
56650
|
-
}
|
|
56651
|
-
/**
|
|
56652
|
-
* SupportticketsNotesApi - object-oriented interface
|
|
56653
|
-
*/
|
|
56654
|
-
export declare class SupportticketsNotesApi extends BaseAPI {
|
|
56772
|
+
deleteSupportTicketNote(requestParameters: SupportNotesApiDeleteSupportTicketNoteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountInvitations200Response, any, {}>>;
|
|
56655
56773
|
/**
|
|
56656
56774
|
* Get Support Ticket Notes endpoint
|
|
56657
56775
|
* @summary Get Support Ticket Notes
|
|
56658
|
-
* @param {
|
|
56776
|
+
* @param {SupportNotesApiGetSupportTicketNotesRequest} requestParameters Request parameters.
|
|
56659
56777
|
* @param {*} [options] Override http request option.
|
|
56660
56778
|
* @throws {RequiredError}
|
|
56661
56779
|
*/
|
|
56662
|
-
getSupportTicketNotes(requestParameters:
|
|
56780
|
+
getSupportTicketNotes(requestParameters: SupportNotesApiGetSupportTicketNotesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountInvitations200Response, any, {}>>;
|
|
56663
56781
|
}
|
|
56664
56782
|
/**
|
|
56665
56783
|
* SurveysApi - axios parameter creator
|