@connectedxm/admin-sdk 7.2.3 → 7.2.5
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 +1 -1
- package/README.md +2 -1
- package/api.ts +141 -23
- package/dist/api.d.ts +77 -22
- package/dist/api.js +100 -10
- package/dist/esm/api.d.ts +77 -22
- package/dist/esm/api.js +94 -4
- package/docs/AccountsApi.md +64 -0
- package/docs/BaseEventSessionQuestion.md +0 -4
- package/docs/EventSessionQuestion.md +0 -4
- package/docs/EventSessionQuestionCreateInputs.md +0 -4
- package/docs/EventSessionQuestionUpdateInputs.md +0 -4
- package/docs/{GetSupportTickets200Response.md → GetAccountSupportTickets200Response.md} +3 -3
- package/docs/RoundSessionQuestion.md +0 -4
- package/docs/SupportApi.md +2 -2
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -736,6 +736,7 @@ docs/GetAccountLikes200Response.md
|
|
|
736
736
|
docs/GetAccountNotificationPreferences200Response.md
|
|
737
737
|
docs/GetAccountPayments200Response.md
|
|
738
738
|
docs/GetAccountRegistrations200Response.md
|
|
739
|
+
docs/GetAccountSupportTickets200Response.md
|
|
739
740
|
docs/GetAccountThreads200Response.md
|
|
740
741
|
docs/GetAccountTiers200Response.md
|
|
741
742
|
docs/GetAccounts200Response.md
|
|
@@ -995,7 +996,6 @@ docs/GetSupportTicketActivity200Response.md
|
|
|
995
996
|
docs/GetSupportTicketMessages200Response.md
|
|
996
997
|
docs/GetSupportTicketNotes200Response.md
|
|
997
998
|
docs/GetSupportTicketViewer200Response.md
|
|
998
|
-
docs/GetSupportTickets200Response.md
|
|
999
999
|
docs/GetSurveyQuestionChoiceSubQuestions200Response.md
|
|
1000
1000
|
docs/GetSurveyQuestionChoiceTranslation200Response.md
|
|
1001
1001
|
docs/GetSurveyQuestionChoiceTranslations200Response.md
|
package/README.md
CHANGED
|
@@ -64,6 +64,7 @@ Class | Method | HTTP request | Description
|
|
|
64
64
|
*AccountsApi* | [**getAccountNotificationPreferences**](docs/AccountsApi.md#getaccountnotificationpreferences) | **GET** /accounts/{accountId}/notification-preferences | Get Account Notification Preferences
|
|
65
65
|
*AccountsApi* | [**getAccountPayments**](docs/AccountsApi.md#getaccountpayments) | **GET** /accounts/{accountId}/payments | Get Account Payments
|
|
66
66
|
*AccountsApi* | [**getAccountRegistrations**](docs/AccountsApi.md#getaccountregistrations) | **GET** /accounts/{accountId}/registrations | Get Account Registrations
|
|
67
|
+
*AccountsApi* | [**getAccountSupportTickets**](docs/AccountsApi.md#getaccountsupporttickets) | **GET** /accounts/{accountId}/supportTickets | Get Account Support Tickets
|
|
67
68
|
*AccountsApi* | [**getAccountThreads**](docs/AccountsApi.md#getaccountthreads) | **GET** /accounts/{accountId}/threads | Get Account Threads
|
|
68
69
|
*AccountsApi* | [**getAccounts**](docs/AccountsApi.md#getaccounts) | **GET** /accounts | Get Accounts
|
|
69
70
|
*AccountsApi* | [**getAccountsByInternalRefId**](docs/AccountsApi.md#getaccountsbyinternalrefid) | **GET** /accounts/internal-ref-id/{internalRefId} | Get Accounts By Internal Ref Id
|
|
@@ -1881,6 +1882,7 @@ Class | Method | HTTP request | Description
|
|
|
1881
1882
|
- [GetAccountNotificationPreferences200Response](docs/GetAccountNotificationPreferences200Response.md)
|
|
1882
1883
|
- [GetAccountPayments200Response](docs/GetAccountPayments200Response.md)
|
|
1883
1884
|
- [GetAccountRegistrations200Response](docs/GetAccountRegistrations200Response.md)
|
|
1885
|
+
- [GetAccountSupportTickets200Response](docs/GetAccountSupportTickets200Response.md)
|
|
1884
1886
|
- [GetAccountThreads200Response](docs/GetAccountThreads200Response.md)
|
|
1885
1887
|
- [GetAccountTiers200Response](docs/GetAccountTiers200Response.md)
|
|
1886
1888
|
- [GetAccounts200Response](docs/GetAccounts200Response.md)
|
|
@@ -2140,7 +2142,6 @@ Class | Method | HTTP request | Description
|
|
|
2140
2142
|
- [GetSupportTicketMessages200Response](docs/GetSupportTicketMessages200Response.md)
|
|
2141
2143
|
- [GetSupportTicketNotes200Response](docs/GetSupportTicketNotes200Response.md)
|
|
2142
2144
|
- [GetSupportTicketViewer200Response](docs/GetSupportTicketViewer200Response.md)
|
|
2143
|
-
- [GetSupportTickets200Response](docs/GetSupportTickets200Response.md)
|
|
2144
2145
|
- [GetSurveyQuestionChoiceSubQuestions200Response](docs/GetSurveyQuestionChoiceSubQuestions200Response.md)
|
|
2145
2146
|
- [GetSurveyQuestionChoiceTranslation200Response](docs/GetSurveyQuestionChoiceTranslation200Response.md)
|
|
2146
2147
|
- [GetSurveyQuestionChoiceTranslations200Response](docs/GetSurveyQuestionChoiceTranslations200Response.md)
|
package/api.ts
CHANGED
|
@@ -1575,8 +1575,6 @@ export interface BaseEventSessionQuestion {
|
|
|
1575
1575
|
'sortOrder': number;
|
|
1576
1576
|
'featured': boolean;
|
|
1577
1577
|
'choices': Array<BaseEventSessionQuestionChoice>;
|
|
1578
|
-
'price': number | null;
|
|
1579
|
-
'supply': number | null;
|
|
1580
1578
|
}
|
|
1581
1579
|
|
|
1582
1580
|
|
|
@@ -5968,8 +5966,6 @@ export interface EventSessionQuestion {
|
|
|
5968
5966
|
'sortOrder': number;
|
|
5969
5967
|
'featured': boolean;
|
|
5970
5968
|
'choices': Array<BaseEventSessionQuestionChoice>;
|
|
5971
|
-
'price': number | null;
|
|
5972
|
-
'supply': number | null;
|
|
5973
5969
|
'sections': Array<BaseEventSessionSectionQuestion>;
|
|
5974
5970
|
'subQuestionOf': Array<EventSessionQuestionChoiceSubQuestion>;
|
|
5975
5971
|
'dashboardVisibility': boolean;
|
|
@@ -6055,8 +6051,6 @@ export interface EventSessionQuestionCreateInputs {
|
|
|
6055
6051
|
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
6056
6052
|
'featured'?: boolean;
|
|
6057
6053
|
'choices'?: Array<string> | null;
|
|
6058
|
-
'price'?: AdvertisementCreateInputsWeight | null;
|
|
6059
|
-
'supply'?: AdvertisementCreateInputsWeight | null;
|
|
6060
6054
|
'searchListId'?: string | null;
|
|
6061
6055
|
'masked'?: boolean;
|
|
6062
6056
|
}
|
|
@@ -6132,8 +6126,6 @@ export interface EventSessionQuestionUpdateInputs {
|
|
|
6132
6126
|
'locationOption'?: LocationQuestionOption | null;
|
|
6133
6127
|
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
6134
6128
|
'featured'?: boolean;
|
|
6135
|
-
'price'?: AdvertisementCreateInputsWeight | null;
|
|
6136
|
-
'supply'?: AdvertisementCreateInputsWeight | null;
|
|
6137
6129
|
'searchListId'?: string | null;
|
|
6138
6130
|
}
|
|
6139
6131
|
|
|
@@ -6828,6 +6820,17 @@ export enum GetAccountRegistrations200ResponseStatusEnum {
|
|
|
6828
6820
|
Ok = 'ok'
|
|
6829
6821
|
}
|
|
6830
6822
|
|
|
6823
|
+
export interface GetAccountSupportTickets200Response {
|
|
6824
|
+
'status': GetAccountSupportTickets200ResponseStatusEnum;
|
|
6825
|
+
'message': string;
|
|
6826
|
+
'data': Array<SupportTicket>;
|
|
6827
|
+
'count'?: number;
|
|
6828
|
+
}
|
|
6829
|
+
|
|
6830
|
+
export enum GetAccountSupportTickets200ResponseStatusEnum {
|
|
6831
|
+
Ok = 'ok'
|
|
6832
|
+
}
|
|
6833
|
+
|
|
6831
6834
|
export interface GetAccountThreads200Response {
|
|
6832
6835
|
'status': GetAccountThreads200ResponseStatusEnum;
|
|
6833
6836
|
'message': string;
|
|
@@ -9580,17 +9583,6 @@ export enum GetSupportTicketViewer200ResponseStatusEnum {
|
|
|
9580
9583
|
Ok = 'ok'
|
|
9581
9584
|
}
|
|
9582
9585
|
|
|
9583
|
-
export interface GetSupportTickets200Response {
|
|
9584
|
-
'status': GetSupportTickets200ResponseStatusEnum;
|
|
9585
|
-
'message': string;
|
|
9586
|
-
'data': Array<SupportTicket>;
|
|
9587
|
-
'count'?: number;
|
|
9588
|
-
}
|
|
9589
|
-
|
|
9590
|
-
export enum GetSupportTickets200ResponseStatusEnum {
|
|
9591
|
-
Ok = 'ok'
|
|
9592
|
-
}
|
|
9593
|
-
|
|
9594
9586
|
export interface GetSurveyQuestionChoiceSubQuestions200Response {
|
|
9595
9587
|
'status': GetSurveyQuestionChoiceSubQuestions200ResponseStatusEnum;
|
|
9596
9588
|
'message': string;
|
|
@@ -12279,8 +12271,6 @@ export interface RoundSessionQuestion {
|
|
|
12279
12271
|
'sortOrder': number;
|
|
12280
12272
|
'featured': boolean;
|
|
12281
12273
|
'choices': Array<BaseEventSessionQuestionChoice>;
|
|
12282
|
-
'price': number | null;
|
|
12283
|
-
'supply': number | null;
|
|
12284
12274
|
'sections': Array<BaseEventSessionSectionQuestion>;
|
|
12285
12275
|
'subQuestionOf': Array<EventSessionQuestionChoiceSubQuestion>;
|
|
12286
12276
|
'dashboardVisibility': boolean;
|
|
@@ -14891,6 +14881,66 @@ export const AccountsApiAxiosParamCreator = function (configuration?: Configurat
|
|
|
14891
14881
|
options: localVarRequestOptions,
|
|
14892
14882
|
};
|
|
14893
14883
|
},
|
|
14884
|
+
/**
|
|
14885
|
+
* Get Account Support Tickets endpoint
|
|
14886
|
+
* @summary Get Account Support Tickets
|
|
14887
|
+
* @param {string} accountId The account identifier
|
|
14888
|
+
* @param {number} [page] Page number
|
|
14889
|
+
* @param {number} [pageSize] Number of items per page
|
|
14890
|
+
* @param {string} [orderBy] Field to order by
|
|
14891
|
+
* @param {string} [search] Search query
|
|
14892
|
+
* @param {*} [options] Override http request option.
|
|
14893
|
+
* @throws {RequiredError}
|
|
14894
|
+
*/
|
|
14895
|
+
getAccountSupportTickets: async (accountId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
14896
|
+
// verify required parameter 'accountId' is not null or undefined
|
|
14897
|
+
assertParamExists('getAccountSupportTickets', 'accountId', accountId)
|
|
14898
|
+
const localVarPath = `/accounts/{accountId}/supportTickets`
|
|
14899
|
+
.replace(`{${"accountId"}}`, encodeURIComponent(String(accountId)));
|
|
14900
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
14901
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
14902
|
+
let baseOptions;
|
|
14903
|
+
if (configuration) {
|
|
14904
|
+
baseOptions = configuration.baseOptions;
|
|
14905
|
+
}
|
|
14906
|
+
|
|
14907
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
14908
|
+
const localVarHeaderParameter = {} as any;
|
|
14909
|
+
const localVarQueryParameter = {} as any;
|
|
14910
|
+
|
|
14911
|
+
// authentication ApiKeyAuth required
|
|
14912
|
+
await setApiKeyToObject(localVarHeaderParameter, "api-key", configuration)
|
|
14913
|
+
|
|
14914
|
+
// authentication OrganizationId required
|
|
14915
|
+
await setApiKeyToObject(localVarHeaderParameter, "organization", configuration)
|
|
14916
|
+
|
|
14917
|
+
if (page !== undefined) {
|
|
14918
|
+
localVarQueryParameter['page'] = page;
|
|
14919
|
+
}
|
|
14920
|
+
|
|
14921
|
+
if (pageSize !== undefined) {
|
|
14922
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
14923
|
+
}
|
|
14924
|
+
|
|
14925
|
+
if (orderBy !== undefined) {
|
|
14926
|
+
localVarQueryParameter['orderBy'] = orderBy;
|
|
14927
|
+
}
|
|
14928
|
+
|
|
14929
|
+
if (search !== undefined) {
|
|
14930
|
+
localVarQueryParameter['search'] = search;
|
|
14931
|
+
}
|
|
14932
|
+
|
|
14933
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
14934
|
+
|
|
14935
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
14936
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
14937
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
14938
|
+
|
|
14939
|
+
return {
|
|
14940
|
+
url: toPathString(localVarUrlObj),
|
|
14941
|
+
options: localVarRequestOptions,
|
|
14942
|
+
};
|
|
14943
|
+
},
|
|
14894
14944
|
/**
|
|
14895
14945
|
* Get Account Threads endpoint
|
|
14896
14946
|
* @summary Get Account Threads
|
|
@@ -15435,6 +15485,23 @@ export const AccountsApiFp = function(configuration?: Configuration) {
|
|
|
15435
15485
|
const localVarOperationServerBasePath = operationServerMap['AccountsApi.getAccountRegistrations']?.[localVarOperationServerIndex]?.url;
|
|
15436
15486
|
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
15437
15487
|
},
|
|
15488
|
+
/**
|
|
15489
|
+
* Get Account Support Tickets endpoint
|
|
15490
|
+
* @summary Get Account Support Tickets
|
|
15491
|
+
* @param {string} accountId The account identifier
|
|
15492
|
+
* @param {number} [page] Page number
|
|
15493
|
+
* @param {number} [pageSize] Number of items per page
|
|
15494
|
+
* @param {string} [orderBy] Field to order by
|
|
15495
|
+
* @param {string} [search] Search query
|
|
15496
|
+
* @param {*} [options] Override http request option.
|
|
15497
|
+
* @throws {RequiredError}
|
|
15498
|
+
*/
|
|
15499
|
+
async getAccountSupportTickets(accountId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountSupportTickets200Response>> {
|
|
15500
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getAccountSupportTickets(accountId, page, pageSize, orderBy, search, options);
|
|
15501
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
15502
|
+
const localVarOperationServerBasePath = operationServerMap['AccountsApi.getAccountSupportTickets']?.[localVarOperationServerIndex]?.url;
|
|
15503
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
15504
|
+
},
|
|
15438
15505
|
/**
|
|
15439
15506
|
* Get Account Threads endpoint
|
|
15440
15507
|
* @summary Get Account Threads
|
|
@@ -15675,6 +15742,16 @@ export const AccountsApiFactory = function (configuration?: Configuration, baseP
|
|
|
15675
15742
|
getAccountRegistrations(requestParameters: AccountsApiGetAccountRegistrationsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountRegistrations200Response> {
|
|
15676
15743
|
return localVarFp.getAccountRegistrations(requestParameters.accountId, requestParameters.page, requestParameters.pageSize, requestParameters.orderBy, requestParameters.search, options).then((request) => request(axios, basePath));
|
|
15677
15744
|
},
|
|
15745
|
+
/**
|
|
15746
|
+
* Get Account Support Tickets endpoint
|
|
15747
|
+
* @summary Get Account Support Tickets
|
|
15748
|
+
* @param {AccountsApiGetAccountSupportTicketsRequest} requestParameters Request parameters.
|
|
15749
|
+
* @param {*} [options] Override http request option.
|
|
15750
|
+
* @throws {RequiredError}
|
|
15751
|
+
*/
|
|
15752
|
+
getAccountSupportTickets(requestParameters: AccountsApiGetAccountSupportTicketsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountSupportTickets200Response> {
|
|
15753
|
+
return localVarFp.getAccountSupportTickets(requestParameters.accountId, requestParameters.page, requestParameters.pageSize, requestParameters.orderBy, requestParameters.search, options).then((request) => request(axios, basePath));
|
|
15754
|
+
},
|
|
15678
15755
|
/**
|
|
15679
15756
|
* Get Account Threads endpoint
|
|
15680
15757
|
* @summary Get Account Threads
|
|
@@ -16049,6 +16126,36 @@ export interface AccountsApiGetAccountRegistrationsRequest {
|
|
|
16049
16126
|
readonly search?: string
|
|
16050
16127
|
}
|
|
16051
16128
|
|
|
16129
|
+
/**
|
|
16130
|
+
* Request parameters for getAccountSupportTickets operation in AccountsApi.
|
|
16131
|
+
*/
|
|
16132
|
+
export interface AccountsApiGetAccountSupportTicketsRequest {
|
|
16133
|
+
/**
|
|
16134
|
+
* The account identifier
|
|
16135
|
+
*/
|
|
16136
|
+
readonly accountId: string
|
|
16137
|
+
|
|
16138
|
+
/**
|
|
16139
|
+
* Page number
|
|
16140
|
+
*/
|
|
16141
|
+
readonly page?: number
|
|
16142
|
+
|
|
16143
|
+
/**
|
|
16144
|
+
* Number of items per page
|
|
16145
|
+
*/
|
|
16146
|
+
readonly pageSize?: number
|
|
16147
|
+
|
|
16148
|
+
/**
|
|
16149
|
+
* Field to order by
|
|
16150
|
+
*/
|
|
16151
|
+
readonly orderBy?: string
|
|
16152
|
+
|
|
16153
|
+
/**
|
|
16154
|
+
* Search query
|
|
16155
|
+
*/
|
|
16156
|
+
readonly search?: string
|
|
16157
|
+
}
|
|
16158
|
+
|
|
16052
16159
|
/**
|
|
16053
16160
|
* Request parameters for getAccountThreads operation in AccountsApi.
|
|
16054
16161
|
*/
|
|
@@ -16308,6 +16415,17 @@ export class AccountsApi extends BaseAPI {
|
|
|
16308
16415
|
return AccountsApiFp(this.configuration).getAccountRegistrations(requestParameters.accountId, requestParameters.page, requestParameters.pageSize, requestParameters.orderBy, requestParameters.search, options).then((request) => request(this.axios, this.basePath));
|
|
16309
16416
|
}
|
|
16310
16417
|
|
|
16418
|
+
/**
|
|
16419
|
+
* Get Account Support Tickets endpoint
|
|
16420
|
+
* @summary Get Account Support Tickets
|
|
16421
|
+
* @param {AccountsApiGetAccountSupportTicketsRequest} requestParameters Request parameters.
|
|
16422
|
+
* @param {*} [options] Override http request option.
|
|
16423
|
+
* @throws {RequiredError}
|
|
16424
|
+
*/
|
|
16425
|
+
public getAccountSupportTickets(requestParameters: AccountsApiGetAccountSupportTicketsRequest, options?: RawAxiosRequestConfig) {
|
|
16426
|
+
return AccountsApiFp(this.configuration).getAccountSupportTickets(requestParameters.accountId, requestParameters.page, requestParameters.pageSize, requestParameters.orderBy, requestParameters.search, options).then((request) => request(this.axios, this.basePath));
|
|
16427
|
+
}
|
|
16428
|
+
|
|
16311
16429
|
/**
|
|
16312
16430
|
* Get Account Threads endpoint
|
|
16313
16431
|
* @summary Get Account Threads
|
|
@@ -138398,7 +138516,7 @@ export const SupportApiFp = function(configuration?: Configuration) {
|
|
|
138398
138516
|
* @param {*} [options] Override http request option.
|
|
138399
138517
|
* @throws {RequiredError}
|
|
138400
138518
|
*/
|
|
138401
|
-
async getSupportTickets(type?: string, state?: string, assignment?: GetSupportTicketsAssignmentEnum, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
138519
|
+
async getSupportTickets(type?: string, state?: string, assignment?: GetSupportTicketsAssignmentEnum, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountSupportTickets200Response>> {
|
|
138402
138520
|
const localVarAxiosArgs = await localVarAxiosParamCreator.getSupportTickets(type, state, assignment, page, pageSize, orderBy, search, options);
|
|
138403
138521
|
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
138404
138522
|
const localVarOperationServerBasePath = operationServerMap['SupportApi.getSupportTickets']?.[localVarOperationServerIndex]?.url;
|
|
@@ -138484,7 +138602,7 @@ export const SupportApiFactory = function (configuration?: Configuration, basePa
|
|
|
138484
138602
|
* @param {*} [options] Override http request option.
|
|
138485
138603
|
* @throws {RequiredError}
|
|
138486
138604
|
*/
|
|
138487
|
-
getSupportTickets(requestParameters: SupportApiGetSupportTicketsRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
138605
|
+
getSupportTickets(requestParameters: SupportApiGetSupportTicketsRequest = {}, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountSupportTickets200Response> {
|
|
138488
138606
|
return localVarFp.getSupportTickets(requestParameters.type, requestParameters.state, requestParameters.assignment, requestParameters.page, requestParameters.pageSize, requestParameters.orderBy, requestParameters.search, options).then((request) => request(axios, basePath));
|
|
138489
138607
|
},
|
|
138490
138608
|
/**
|
package/dist/api.d.ts
CHANGED
|
@@ -1452,8 +1452,6 @@ export interface BaseEventSessionQuestion {
|
|
|
1452
1452
|
'sortOrder': number;
|
|
1453
1453
|
'featured': boolean;
|
|
1454
1454
|
'choices': Array<BaseEventSessionQuestionChoice>;
|
|
1455
|
-
'price': number | null;
|
|
1456
|
-
'supply': number | null;
|
|
1457
1455
|
}
|
|
1458
1456
|
export interface BaseEventSessionQuestionChoice {
|
|
1459
1457
|
'id': string;
|
|
@@ -5452,8 +5450,6 @@ export interface EventSessionQuestion {
|
|
|
5452
5450
|
'sortOrder': number;
|
|
5453
5451
|
'featured': boolean;
|
|
5454
5452
|
'choices': Array<BaseEventSessionQuestionChoice>;
|
|
5455
|
-
'price': number | null;
|
|
5456
|
-
'supply': number | null;
|
|
5457
5453
|
'sections': Array<BaseEventSessionSectionQuestion>;
|
|
5458
5454
|
'subQuestionOf': Array<EventSessionQuestionChoiceSubQuestion>;
|
|
5459
5455
|
'dashboardVisibility': boolean;
|
|
@@ -5537,8 +5533,6 @@ export interface EventSessionQuestionCreateInputs {
|
|
|
5537
5533
|
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
5538
5534
|
'featured'?: boolean;
|
|
5539
5535
|
'choices'?: Array<string> | null;
|
|
5540
|
-
'price'?: AdvertisementCreateInputsWeight | null;
|
|
5541
|
-
'supply'?: AdvertisementCreateInputsWeight | null;
|
|
5542
5536
|
'searchListId'?: string | null;
|
|
5543
5537
|
'masked'?: boolean;
|
|
5544
5538
|
}
|
|
@@ -5609,8 +5603,6 @@ export interface EventSessionQuestionUpdateInputs {
|
|
|
5609
5603
|
'locationOption'?: LocationQuestionOption | null;
|
|
5610
5604
|
'sortOrder'?: AdvertisementCreateInputsWeight | null;
|
|
5611
5605
|
'featured'?: boolean;
|
|
5612
|
-
'price'?: AdvertisementCreateInputsWeight | null;
|
|
5613
|
-
'supply'?: AdvertisementCreateInputsWeight | null;
|
|
5614
5606
|
'searchListId'?: string | null;
|
|
5615
5607
|
}
|
|
5616
5608
|
export interface EventSessionSection {
|
|
@@ -6248,6 +6240,15 @@ export interface GetAccountRegistrations200Response {
|
|
|
6248
6240
|
export declare enum GetAccountRegistrations200ResponseStatusEnum {
|
|
6249
6241
|
Ok = "ok"
|
|
6250
6242
|
}
|
|
6243
|
+
export interface GetAccountSupportTickets200Response {
|
|
6244
|
+
'status': GetAccountSupportTickets200ResponseStatusEnum;
|
|
6245
|
+
'message': string;
|
|
6246
|
+
'data': Array<SupportTicket>;
|
|
6247
|
+
'count'?: number;
|
|
6248
|
+
}
|
|
6249
|
+
export declare enum GetAccountSupportTickets200ResponseStatusEnum {
|
|
6250
|
+
Ok = "ok"
|
|
6251
|
+
}
|
|
6251
6252
|
export interface GetAccountThreads200Response {
|
|
6252
6253
|
'status': GetAccountThreads200ResponseStatusEnum;
|
|
6253
6254
|
'message': string;
|
|
@@ -8486,15 +8487,6 @@ export interface GetSupportTicketViewer200Response {
|
|
|
8486
8487
|
export declare enum GetSupportTicketViewer200ResponseStatusEnum {
|
|
8487
8488
|
Ok = "ok"
|
|
8488
8489
|
}
|
|
8489
|
-
export interface GetSupportTickets200Response {
|
|
8490
|
-
'status': GetSupportTickets200ResponseStatusEnum;
|
|
8491
|
-
'message': string;
|
|
8492
|
-
'data': Array<SupportTicket>;
|
|
8493
|
-
'count'?: number;
|
|
8494
|
-
}
|
|
8495
|
-
export declare enum GetSupportTickets200ResponseStatusEnum {
|
|
8496
|
-
Ok = "ok"
|
|
8497
|
-
}
|
|
8498
8490
|
export interface GetSurveyQuestionChoiceSubQuestions200Response {
|
|
8499
8491
|
'status': GetSurveyQuestionChoiceSubQuestions200ResponseStatusEnum;
|
|
8500
8492
|
'message': string;
|
|
@@ -10888,8 +10880,6 @@ export interface RoundSessionQuestion {
|
|
|
10888
10880
|
'sortOrder': number;
|
|
10889
10881
|
'featured': boolean;
|
|
10890
10882
|
'choices': Array<BaseEventSessionQuestionChoice>;
|
|
10891
|
-
'price': number | null;
|
|
10892
|
-
'supply': number | null;
|
|
10893
10883
|
'sections': Array<BaseEventSessionSectionQuestion>;
|
|
10894
10884
|
'subQuestionOf': Array<EventSessionQuestionChoiceSubQuestion>;
|
|
10895
10885
|
'dashboardVisibility': boolean;
|
|
@@ -12764,6 +12754,18 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12764
12754
|
* @throws {RequiredError}
|
|
12765
12755
|
*/
|
|
12766
12756
|
getAccountRegistrations: (accountId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12757
|
+
/**
|
|
12758
|
+
* Get Account Support Tickets endpoint
|
|
12759
|
+
* @summary Get Account Support Tickets
|
|
12760
|
+
* @param {string} accountId The account identifier
|
|
12761
|
+
* @param {number} [page] Page number
|
|
12762
|
+
* @param {number} [pageSize] Number of items per page
|
|
12763
|
+
* @param {string} [orderBy] Field to order by
|
|
12764
|
+
* @param {string} [search] Search query
|
|
12765
|
+
* @param {*} [options] Override http request option.
|
|
12766
|
+
* @throws {RequiredError}
|
|
12767
|
+
*/
|
|
12768
|
+
getAccountSupportTickets: (accountId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12767
12769
|
/**
|
|
12768
12770
|
* Get Account Threads endpoint
|
|
12769
12771
|
* @summary Get Account Threads
|
|
@@ -12974,6 +12976,18 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
12974
12976
|
* @throws {RequiredError}
|
|
12975
12977
|
*/
|
|
12976
12978
|
getAccountRegistrations(accountId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountRegistrations200Response>>;
|
|
12979
|
+
/**
|
|
12980
|
+
* Get Account Support Tickets endpoint
|
|
12981
|
+
* @summary Get Account Support Tickets
|
|
12982
|
+
* @param {string} accountId The account identifier
|
|
12983
|
+
* @param {number} [page] Page number
|
|
12984
|
+
* @param {number} [pageSize] Number of items per page
|
|
12985
|
+
* @param {string} [orderBy] Field to order by
|
|
12986
|
+
* @param {string} [search] Search query
|
|
12987
|
+
* @param {*} [options] Override http request option.
|
|
12988
|
+
* @throws {RequiredError}
|
|
12989
|
+
*/
|
|
12990
|
+
getAccountSupportTickets(accountId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountSupportTickets200Response>>;
|
|
12977
12991
|
/**
|
|
12978
12992
|
* Get Account Threads endpoint
|
|
12979
12993
|
* @summary Get Account Threads
|
|
@@ -13149,6 +13163,14 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
13149
13163
|
* @throws {RequiredError}
|
|
13150
13164
|
*/
|
|
13151
13165
|
getAccountRegistrations(requestParameters: AccountsApiGetAccountRegistrationsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountRegistrations200Response>;
|
|
13166
|
+
/**
|
|
13167
|
+
* Get Account Support Tickets endpoint
|
|
13168
|
+
* @summary Get Account Support Tickets
|
|
13169
|
+
* @param {AccountsApiGetAccountSupportTicketsRequest} requestParameters Request parameters.
|
|
13170
|
+
* @param {*} [options] Override http request option.
|
|
13171
|
+
* @throws {RequiredError}
|
|
13172
|
+
*/
|
|
13173
|
+
getAccountSupportTickets(requestParameters: AccountsApiGetAccountSupportTicketsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountSupportTickets200Response>;
|
|
13152
13174
|
/**
|
|
13153
13175
|
* Get Account Threads endpoint
|
|
13154
13176
|
* @summary Get Account Threads
|
|
@@ -13459,6 +13481,31 @@ export interface AccountsApiGetAccountRegistrationsRequest {
|
|
|
13459
13481
|
*/
|
|
13460
13482
|
readonly search?: string;
|
|
13461
13483
|
}
|
|
13484
|
+
/**
|
|
13485
|
+
* Request parameters for getAccountSupportTickets operation in AccountsApi.
|
|
13486
|
+
*/
|
|
13487
|
+
export interface AccountsApiGetAccountSupportTicketsRequest {
|
|
13488
|
+
/**
|
|
13489
|
+
* The account identifier
|
|
13490
|
+
*/
|
|
13491
|
+
readonly accountId: string;
|
|
13492
|
+
/**
|
|
13493
|
+
* Page number
|
|
13494
|
+
*/
|
|
13495
|
+
readonly page?: number;
|
|
13496
|
+
/**
|
|
13497
|
+
* Number of items per page
|
|
13498
|
+
*/
|
|
13499
|
+
readonly pageSize?: number;
|
|
13500
|
+
/**
|
|
13501
|
+
* Field to order by
|
|
13502
|
+
*/
|
|
13503
|
+
readonly orderBy?: string;
|
|
13504
|
+
/**
|
|
13505
|
+
* Search query
|
|
13506
|
+
*/
|
|
13507
|
+
readonly search?: string;
|
|
13508
|
+
}
|
|
13462
13509
|
/**
|
|
13463
13510
|
* Request parameters for getAccountThreads operation in AccountsApi.
|
|
13464
13511
|
*/
|
|
@@ -13662,6 +13709,14 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
13662
13709
|
* @throws {RequiredError}
|
|
13663
13710
|
*/
|
|
13664
13711
|
getAccountRegistrations(requestParameters: AccountsApiGetAccountRegistrationsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountRegistrations200Response, any, {}>>;
|
|
13712
|
+
/**
|
|
13713
|
+
* Get Account Support Tickets endpoint
|
|
13714
|
+
* @summary Get Account Support Tickets
|
|
13715
|
+
* @param {AccountsApiGetAccountSupportTicketsRequest} requestParameters Request parameters.
|
|
13716
|
+
* @param {*} [options] Override http request option.
|
|
13717
|
+
* @throws {RequiredError}
|
|
13718
|
+
*/
|
|
13719
|
+
getAccountSupportTickets(requestParameters: AccountsApiGetAccountSupportTicketsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountSupportTickets200Response, any, {}>>;
|
|
13665
13720
|
/**
|
|
13666
13721
|
* Get Account Threads endpoint
|
|
13667
13722
|
* @summary Get Account Threads
|
|
@@ -75353,7 +75408,7 @@ export declare const SupportApiFp: (configuration?: Configuration) => {
|
|
|
75353
75408
|
* @param {*} [options] Override http request option.
|
|
75354
75409
|
* @throws {RequiredError}
|
|
75355
75410
|
*/
|
|
75356
|
-
getSupportTickets(type?: string, state?: string, assignment?: GetSupportTicketsAssignmentEnum, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
75411
|
+
getSupportTickets(type?: string, state?: string, assignment?: GetSupportTicketsAssignmentEnum, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountSupportTickets200Response>>;
|
|
75357
75412
|
/**
|
|
75358
75413
|
* Update Support Ticket endpoint
|
|
75359
75414
|
* @summary Update Support Ticket
|
|
@@ -75415,7 +75470,7 @@ export declare const SupportApiFactory: (configuration?: Configuration, basePath
|
|
|
75415
75470
|
* @param {*} [options] Override http request option.
|
|
75416
75471
|
* @throws {RequiredError}
|
|
75417
75472
|
*/
|
|
75418
|
-
getSupportTickets(requestParameters?: SupportApiGetSupportTicketsRequest, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
75473
|
+
getSupportTickets(requestParameters?: SupportApiGetSupportTicketsRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountSupportTickets200Response>;
|
|
75419
75474
|
/**
|
|
75420
75475
|
* Update Support Ticket endpoint
|
|
75421
75476
|
* @summary Update Support Ticket
|
|
@@ -75581,7 +75636,7 @@ export declare class SupportApi extends BaseAPI {
|
|
|
75581
75636
|
* @param {*} [options] Override http request option.
|
|
75582
75637
|
* @throws {RequiredError}
|
|
75583
75638
|
*/
|
|
75584
|
-
getSupportTickets(requestParameters?: SupportApiGetSupportTicketsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
75639
|
+
getSupportTickets(requestParameters?: SupportApiGetSupportTicketsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountSupportTickets200Response, any, {}>>;
|
|
75585
75640
|
/**
|
|
75586
75641
|
* Update Support Ticket endpoint
|
|
75587
75642
|
* @summary Update Support Ticket
|