@connectedxm/admin-sdk 6.25.2 → 6.27.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +4 -0
- package/README.md +13 -0
- package/api.ts +1079 -96
- package/dist/api.d.ts +507 -0
- package/dist/api.js +758 -23
- package/dist/esm/api.d.ts +507 -0
- package/dist/esm/api.js +735 -0
- package/docs/CustomReportSchedule.md +24 -0
- package/docs/CustomReportScheduleInputs.md +24 -0
- package/docs/EventSessionVisibility.md +2 -0
- package/docs/EventsSessionsApi.md +366 -0
- package/docs/GetCustomReportSchedule200Response.md +24 -0
- package/docs/ReportsApi.md +160 -0
- package/docs/UpsertCustomReportSchedule200Response.md +24 -0
- package/package.json +1 -1
package/dist/esm/api.d.ts
CHANGED
|
@@ -4100,6 +4100,16 @@ export interface CustomReportCreateInputs {
|
|
|
4100
4100
|
export interface CustomReportExportInputs {
|
|
4101
4101
|
'email': string;
|
|
4102
4102
|
}
|
|
4103
|
+
export interface CustomReportSchedule {
|
|
4104
|
+
'scheduleExpression': string | null;
|
|
4105
|
+
'scheduleTimezone': string | null;
|
|
4106
|
+
'scheduleEmails': Array<string> | null;
|
|
4107
|
+
}
|
|
4108
|
+
export interface CustomReportScheduleInputs {
|
|
4109
|
+
'scheduleExpression'?: string | null;
|
|
4110
|
+
'scheduleTimezone'?: string | null;
|
|
4111
|
+
'scheduleEmails'?: Array<string> | null;
|
|
4112
|
+
}
|
|
4103
4113
|
export interface CustomReportUpdateInputs {
|
|
4104
4114
|
'name'?: string | null;
|
|
4105
4115
|
'description'?: string | null;
|
|
@@ -5692,6 +5702,7 @@ export interface EventSessionUpdateInputs {
|
|
|
5692
5702
|
}
|
|
5693
5703
|
export declare enum EventSessionVisibility {
|
|
5694
5704
|
Public = "PUBLIC",
|
|
5705
|
+
Preview = "PREVIEW",
|
|
5695
5706
|
Restricted = "RESTRICTED",
|
|
5696
5707
|
Registered = "REGISTERED",
|
|
5697
5708
|
Hidden = "HIDDEN"
|
|
@@ -6602,6 +6613,14 @@ export interface GetCustomReport200Response {
|
|
|
6602
6613
|
export declare enum GetCustomReport200ResponseStatusEnum {
|
|
6603
6614
|
Ok = "ok"
|
|
6604
6615
|
}
|
|
6616
|
+
export interface GetCustomReportSchedule200Response {
|
|
6617
|
+
'status': GetCustomReportSchedule200ResponseStatusEnum;
|
|
6618
|
+
'message': string;
|
|
6619
|
+
'data': CustomReportSchedule | null;
|
|
6620
|
+
}
|
|
6621
|
+
export declare enum GetCustomReportSchedule200ResponseStatusEnum {
|
|
6622
|
+
Ok = "ok"
|
|
6623
|
+
}
|
|
6605
6624
|
export interface GetCustomReportUsers200Response {
|
|
6606
6625
|
'status': GetCustomReportUsers200ResponseStatusEnum;
|
|
6607
6626
|
'message': string;
|
|
@@ -12446,6 +12465,14 @@ export interface UploadVideoCaptions200Response {
|
|
|
12446
12465
|
export declare enum UploadVideoCaptions200ResponseStatusEnum {
|
|
12447
12466
|
Ok = "ok"
|
|
12448
12467
|
}
|
|
12468
|
+
export interface UpsertCustomReportSchedule200Response {
|
|
12469
|
+
'status': UpsertCustomReportSchedule200ResponseStatusEnum;
|
|
12470
|
+
'message': string;
|
|
12471
|
+
'data': CustomReportSchedule;
|
|
12472
|
+
}
|
|
12473
|
+
export declare enum UpsertCustomReportSchedule200ResponseStatusEnum {
|
|
12474
|
+
Ok = "ok"
|
|
12475
|
+
}
|
|
12449
12476
|
export interface UpsertLinkPreview200Response {
|
|
12450
12477
|
'status': UpsertLinkPreview200ResponseStatusEnum;
|
|
12451
12478
|
'message': string;
|
|
@@ -45657,6 +45684,26 @@ export declare const EventsSessionsApiAxiosParamCreator: (configuration?: Config
|
|
|
45657
45684
|
* @throws {RequiredError}
|
|
45658
45685
|
*/
|
|
45659
45686
|
addEventSessionTrack: (eventId: string, sessionId: string, trackId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45687
|
+
/**
|
|
45688
|
+
* Add Event Session Visible Pass Type endpoint
|
|
45689
|
+
* @summary Add Event Session Visible Pass Type
|
|
45690
|
+
* @param {string} eventId The event identifier
|
|
45691
|
+
* @param {string} sessionId The session identifier
|
|
45692
|
+
* @param {string} passTypeId The passType identifier
|
|
45693
|
+
* @param {*} [options] Override http request option.
|
|
45694
|
+
* @throws {RequiredError}
|
|
45695
|
+
*/
|
|
45696
|
+
addEventSessionVisiblePassType: (eventId: string, sessionId: string, passTypeId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45697
|
+
/**
|
|
45698
|
+
* Add Event Session Visible Tier endpoint
|
|
45699
|
+
* @summary Add Event Session Visible Tier
|
|
45700
|
+
* @param {string} eventId The event identifier
|
|
45701
|
+
* @param {string} sessionId The session identifier
|
|
45702
|
+
* @param {string} tierId The tier identifier
|
|
45703
|
+
* @param {*} [options] Override http request option.
|
|
45704
|
+
* @throws {RequiredError}
|
|
45705
|
+
*/
|
|
45706
|
+
addEventSessionVisibleTier: (eventId: string, sessionId: string, tierId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45660
45707
|
/**
|
|
45661
45708
|
* Clone Event Session endpoint
|
|
45662
45709
|
* @summary Clone Event Session
|
|
@@ -45812,6 +45859,32 @@ export declare const EventsSessionsApiAxiosParamCreator: (configuration?: Config
|
|
|
45812
45859
|
* @throws {RequiredError}
|
|
45813
45860
|
*/
|
|
45814
45861
|
getEventSessionTracks: (eventId: string, sessionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45862
|
+
/**
|
|
45863
|
+
* Get Event Session Visible Pass Types endpoint
|
|
45864
|
+
* @summary Get Event Session Visible Pass Types
|
|
45865
|
+
* @param {string} eventId The event identifier
|
|
45866
|
+
* @param {string} sessionId The session identifier
|
|
45867
|
+
* @param {number} [page] Page number
|
|
45868
|
+
* @param {number} [pageSize] Number of items per page
|
|
45869
|
+
* @param {string} [orderBy] Field to order by
|
|
45870
|
+
* @param {string} [search] Search query
|
|
45871
|
+
* @param {*} [options] Override http request option.
|
|
45872
|
+
* @throws {RequiredError}
|
|
45873
|
+
*/
|
|
45874
|
+
getEventSessionVisiblePassTypes: (eventId: string, sessionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45875
|
+
/**
|
|
45876
|
+
* Get Event Session Visible Tiers endpoint
|
|
45877
|
+
* @summary Get Event Session Visible Tiers
|
|
45878
|
+
* @param {string} eventId The event identifier
|
|
45879
|
+
* @param {string} sessionId The session identifier
|
|
45880
|
+
* @param {number} [page] Page number
|
|
45881
|
+
* @param {number} [pageSize] Number of items per page
|
|
45882
|
+
* @param {string} [orderBy] Field to order by
|
|
45883
|
+
* @param {string} [search] Search query
|
|
45884
|
+
* @param {*} [options] Override http request option.
|
|
45885
|
+
* @throws {RequiredError}
|
|
45886
|
+
*/
|
|
45887
|
+
getEventSessionVisibleTiers: (eventId: string, sessionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45815
45888
|
/**
|
|
45816
45889
|
* Get Event Sessions endpoint
|
|
45817
45890
|
* @summary Get Event Sessions
|
|
@@ -45894,6 +45967,26 @@ export declare const EventsSessionsApiAxiosParamCreator: (configuration?: Config
|
|
|
45894
45967
|
* @throws {RequiredError}
|
|
45895
45968
|
*/
|
|
45896
45969
|
removeEventSessionTrack: (eventId: string, sessionId: string, trackId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45970
|
+
/**
|
|
45971
|
+
* Remove Event Session Visible Pass Type endpoint
|
|
45972
|
+
* @summary Remove Event Session Visible Pass Type
|
|
45973
|
+
* @param {string} eventId The event identifier
|
|
45974
|
+
* @param {string} sessionId The session identifier
|
|
45975
|
+
* @param {string} passTypeId The passType identifier
|
|
45976
|
+
* @param {*} [options] Override http request option.
|
|
45977
|
+
* @throws {RequiredError}
|
|
45978
|
+
*/
|
|
45979
|
+
removeEventSessionVisiblePassType: (eventId: string, sessionId: string, passTypeId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45980
|
+
/**
|
|
45981
|
+
* Remove Event Session Visible Tier endpoint
|
|
45982
|
+
* @summary Remove Event Session Visible Tier
|
|
45983
|
+
* @param {string} eventId The event identifier
|
|
45984
|
+
* @param {string} sessionId The session identifier
|
|
45985
|
+
* @param {string} tierId The tier identifier
|
|
45986
|
+
* @param {*} [options] Override http request option.
|
|
45987
|
+
* @throws {RequiredError}
|
|
45988
|
+
*/
|
|
45989
|
+
removeEventSessionVisibleTier: (eventId: string, sessionId: string, tierId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
45897
45990
|
/**
|
|
45898
45991
|
* Update Event Session endpoint
|
|
45899
45992
|
* @summary Update Event Session
|
|
@@ -45979,6 +46072,26 @@ export declare const EventsSessionsApiFp: (configuration?: Configuration) => {
|
|
|
45979
46072
|
* @throws {RequiredError}
|
|
45980
46073
|
*/
|
|
45981
46074
|
addEventSessionTrack(eventId: string, sessionId: string, trackId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSession200Response>>;
|
|
46075
|
+
/**
|
|
46076
|
+
* Add Event Session Visible Pass Type endpoint
|
|
46077
|
+
* @summary Add Event Session Visible Pass Type
|
|
46078
|
+
* @param {string} eventId The event identifier
|
|
46079
|
+
* @param {string} sessionId The session identifier
|
|
46080
|
+
* @param {string} passTypeId The passType identifier
|
|
46081
|
+
* @param {*} [options] Override http request option.
|
|
46082
|
+
* @throws {RequiredError}
|
|
46083
|
+
*/
|
|
46084
|
+
addEventSessionVisiblePassType(eventId: string, sessionId: string, passTypeId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSession200Response>>;
|
|
46085
|
+
/**
|
|
46086
|
+
* Add Event Session Visible Tier endpoint
|
|
46087
|
+
* @summary Add Event Session Visible Tier
|
|
46088
|
+
* @param {string} eventId The event identifier
|
|
46089
|
+
* @param {string} sessionId The session identifier
|
|
46090
|
+
* @param {string} tierId The tier identifier
|
|
46091
|
+
* @param {*} [options] Override http request option.
|
|
46092
|
+
* @throws {RequiredError}
|
|
46093
|
+
*/
|
|
46094
|
+
addEventSessionVisibleTier(eventId: string, sessionId: string, tierId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSession200Response>>;
|
|
45982
46095
|
/**
|
|
45983
46096
|
* Clone Event Session endpoint
|
|
45984
46097
|
* @summary Clone Event Session
|
|
@@ -46134,6 +46247,32 @@ export declare const EventsSessionsApiFp: (configuration?: Configuration) => {
|
|
|
46134
46247
|
* @throws {RequiredError}
|
|
46135
46248
|
*/
|
|
46136
46249
|
getEventSessionTracks(eventId: string, sessionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventSessionTracks200Response>>;
|
|
46250
|
+
/**
|
|
46251
|
+
* Get Event Session Visible Pass Types endpoint
|
|
46252
|
+
* @summary Get Event Session Visible Pass Types
|
|
46253
|
+
* @param {string} eventId The event identifier
|
|
46254
|
+
* @param {string} sessionId The session identifier
|
|
46255
|
+
* @param {number} [page] Page number
|
|
46256
|
+
* @param {number} [pageSize] Number of items per page
|
|
46257
|
+
* @param {string} [orderBy] Field to order by
|
|
46258
|
+
* @param {string} [search] Search query
|
|
46259
|
+
* @param {*} [options] Override http request option.
|
|
46260
|
+
* @throws {RequiredError}
|
|
46261
|
+
*/
|
|
46262
|
+
getEventSessionVisiblePassTypes(eventId: string, sessionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetEventAddOnPassTypes200Response>>;
|
|
46263
|
+
/**
|
|
46264
|
+
* Get Event Session Visible Tiers endpoint
|
|
46265
|
+
* @summary Get Event Session Visible Tiers
|
|
46266
|
+
* @param {string} eventId The event identifier
|
|
46267
|
+
* @param {string} sessionId The session identifier
|
|
46268
|
+
* @param {number} [page] Page number
|
|
46269
|
+
* @param {number} [pageSize] Number of items per page
|
|
46270
|
+
* @param {string} [orderBy] Field to order by
|
|
46271
|
+
* @param {string} [search] Search query
|
|
46272
|
+
* @param {*} [options] Override http request option.
|
|
46273
|
+
* @throws {RequiredError}
|
|
46274
|
+
*/
|
|
46275
|
+
getEventSessionVisibleTiers(eventId: string, sessionId: string, page?: number, pageSize?: number, orderBy?: string, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetAccountTiers200Response>>;
|
|
46137
46276
|
/**
|
|
46138
46277
|
* Get Event Sessions endpoint
|
|
46139
46278
|
* @summary Get Event Sessions
|
|
@@ -46216,6 +46355,26 @@ export declare const EventsSessionsApiFp: (configuration?: Configuration) => {
|
|
|
46216
46355
|
* @throws {RequiredError}
|
|
46217
46356
|
*/
|
|
46218
46357
|
removeEventSessionTrack(eventId: string, sessionId: string, trackId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSession200Response>>;
|
|
46358
|
+
/**
|
|
46359
|
+
* Remove Event Session Visible Pass Type endpoint
|
|
46360
|
+
* @summary Remove Event Session Visible Pass Type
|
|
46361
|
+
* @param {string} eventId The event identifier
|
|
46362
|
+
* @param {string} sessionId The session identifier
|
|
46363
|
+
* @param {string} passTypeId The passType identifier
|
|
46364
|
+
* @param {*} [options] Override http request option.
|
|
46365
|
+
* @throws {RequiredError}
|
|
46366
|
+
*/
|
|
46367
|
+
removeEventSessionVisiblePassType(eventId: string, sessionId: string, passTypeId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSession200Response>>;
|
|
46368
|
+
/**
|
|
46369
|
+
* Remove Event Session Visible Tier endpoint
|
|
46370
|
+
* @summary Remove Event Session Visible Tier
|
|
46371
|
+
* @param {string} eventId The event identifier
|
|
46372
|
+
* @param {string} sessionId The session identifier
|
|
46373
|
+
* @param {string} tierId The tier identifier
|
|
46374
|
+
* @param {*} [options] Override http request option.
|
|
46375
|
+
* @throws {RequiredError}
|
|
46376
|
+
*/
|
|
46377
|
+
removeEventSessionVisibleTier(eventId: string, sessionId: string, tierId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateEventSession200Response>>;
|
|
46219
46378
|
/**
|
|
46220
46379
|
* Update Event Session endpoint
|
|
46221
46380
|
* @summary Update Event Session
|
|
@@ -46287,6 +46446,22 @@ export declare const EventsSessionsApiFactory: (configuration?: Configuration, b
|
|
|
46287
46446
|
* @throws {RequiredError}
|
|
46288
46447
|
*/
|
|
46289
46448
|
addEventSessionTrack(requestParameters: EventsSessionsApiAddEventSessionTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSession200Response>;
|
|
46449
|
+
/**
|
|
46450
|
+
* Add Event Session Visible Pass Type endpoint
|
|
46451
|
+
* @summary Add Event Session Visible Pass Type
|
|
46452
|
+
* @param {EventsSessionsApiAddEventSessionVisiblePassTypeRequest} requestParameters Request parameters.
|
|
46453
|
+
* @param {*} [options] Override http request option.
|
|
46454
|
+
* @throws {RequiredError}
|
|
46455
|
+
*/
|
|
46456
|
+
addEventSessionVisiblePassType(requestParameters: EventsSessionsApiAddEventSessionVisiblePassTypeRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSession200Response>;
|
|
46457
|
+
/**
|
|
46458
|
+
* Add Event Session Visible Tier endpoint
|
|
46459
|
+
* @summary Add Event Session Visible Tier
|
|
46460
|
+
* @param {EventsSessionsApiAddEventSessionVisibleTierRequest} requestParameters Request parameters.
|
|
46461
|
+
* @param {*} [options] Override http request option.
|
|
46462
|
+
* @throws {RequiredError}
|
|
46463
|
+
*/
|
|
46464
|
+
addEventSessionVisibleTier(requestParameters: EventsSessionsApiAddEventSessionVisibleTierRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSession200Response>;
|
|
46290
46465
|
/**
|
|
46291
46466
|
* Clone Event Session endpoint
|
|
46292
46467
|
* @summary Clone Event Session
|
|
@@ -46391,6 +46566,22 @@ export declare const EventsSessionsApiFactory: (configuration?: Configuration, b
|
|
|
46391
46566
|
* @throws {RequiredError}
|
|
46392
46567
|
*/
|
|
46393
46568
|
getEventSessionTracks(requestParameters: EventsSessionsApiGetEventSessionTracksRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetEventSessionTracks200Response>;
|
|
46569
|
+
/**
|
|
46570
|
+
* Get Event Session Visible Pass Types endpoint
|
|
46571
|
+
* @summary Get Event Session Visible Pass Types
|
|
46572
|
+
* @param {EventsSessionsApiGetEventSessionVisiblePassTypesRequest} requestParameters Request parameters.
|
|
46573
|
+
* @param {*} [options] Override http request option.
|
|
46574
|
+
* @throws {RequiredError}
|
|
46575
|
+
*/
|
|
46576
|
+
getEventSessionVisiblePassTypes(requestParameters: EventsSessionsApiGetEventSessionVisiblePassTypesRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetEventAddOnPassTypes200Response>;
|
|
46577
|
+
/**
|
|
46578
|
+
* Get Event Session Visible Tiers endpoint
|
|
46579
|
+
* @summary Get Event Session Visible Tiers
|
|
46580
|
+
* @param {EventsSessionsApiGetEventSessionVisibleTiersRequest} requestParameters Request parameters.
|
|
46581
|
+
* @param {*} [options] Override http request option.
|
|
46582
|
+
* @throws {RequiredError}
|
|
46583
|
+
*/
|
|
46584
|
+
getEventSessionVisibleTiers(requestParameters: EventsSessionsApiGetEventSessionVisibleTiersRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetAccountTiers200Response>;
|
|
46394
46585
|
/**
|
|
46395
46586
|
* Get Event Sessions endpoint
|
|
46396
46587
|
* @summary Get Event Sessions
|
|
@@ -46455,6 +46646,22 @@ export declare const EventsSessionsApiFactory: (configuration?: Configuration, b
|
|
|
46455
46646
|
* @throws {RequiredError}
|
|
46456
46647
|
*/
|
|
46457
46648
|
removeEventSessionTrack(requestParameters: EventsSessionsApiRemoveEventSessionTrackRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSession200Response>;
|
|
46649
|
+
/**
|
|
46650
|
+
* Remove Event Session Visible Pass Type endpoint
|
|
46651
|
+
* @summary Remove Event Session Visible Pass Type
|
|
46652
|
+
* @param {EventsSessionsApiRemoveEventSessionVisiblePassTypeRequest} requestParameters Request parameters.
|
|
46653
|
+
* @param {*} [options] Override http request option.
|
|
46654
|
+
* @throws {RequiredError}
|
|
46655
|
+
*/
|
|
46656
|
+
removeEventSessionVisiblePassType(requestParameters: EventsSessionsApiRemoveEventSessionVisiblePassTypeRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSession200Response>;
|
|
46657
|
+
/**
|
|
46658
|
+
* Remove Event Session Visible Tier endpoint
|
|
46659
|
+
* @summary Remove Event Session Visible Tier
|
|
46660
|
+
* @param {EventsSessionsApiRemoveEventSessionVisibleTierRequest} requestParameters Request parameters.
|
|
46661
|
+
* @param {*} [options] Override http request option.
|
|
46662
|
+
* @throws {RequiredError}
|
|
46663
|
+
*/
|
|
46664
|
+
removeEventSessionVisibleTier(requestParameters: EventsSessionsApiRemoveEventSessionVisibleTierRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateEventSession200Response>;
|
|
46458
46665
|
/**
|
|
46459
46666
|
* Update Event Session endpoint
|
|
46460
46667
|
* @summary Update Event Session
|
|
@@ -46583,6 +46790,40 @@ export interface EventsSessionsApiAddEventSessionTrackRequest {
|
|
|
46583
46790
|
*/
|
|
46584
46791
|
readonly trackId: string;
|
|
46585
46792
|
}
|
|
46793
|
+
/**
|
|
46794
|
+
* Request parameters for addEventSessionVisiblePassType operation in EventsSessionsApi.
|
|
46795
|
+
*/
|
|
46796
|
+
export interface EventsSessionsApiAddEventSessionVisiblePassTypeRequest {
|
|
46797
|
+
/**
|
|
46798
|
+
* The event identifier
|
|
46799
|
+
*/
|
|
46800
|
+
readonly eventId: string;
|
|
46801
|
+
/**
|
|
46802
|
+
* The session identifier
|
|
46803
|
+
*/
|
|
46804
|
+
readonly sessionId: string;
|
|
46805
|
+
/**
|
|
46806
|
+
* The passType identifier
|
|
46807
|
+
*/
|
|
46808
|
+
readonly passTypeId: string;
|
|
46809
|
+
}
|
|
46810
|
+
/**
|
|
46811
|
+
* Request parameters for addEventSessionVisibleTier operation in EventsSessionsApi.
|
|
46812
|
+
*/
|
|
46813
|
+
export interface EventsSessionsApiAddEventSessionVisibleTierRequest {
|
|
46814
|
+
/**
|
|
46815
|
+
* The event identifier
|
|
46816
|
+
*/
|
|
46817
|
+
readonly eventId: string;
|
|
46818
|
+
/**
|
|
46819
|
+
* The session identifier
|
|
46820
|
+
*/
|
|
46821
|
+
readonly sessionId: string;
|
|
46822
|
+
/**
|
|
46823
|
+
* The tier identifier
|
|
46824
|
+
*/
|
|
46825
|
+
readonly tierId: string;
|
|
46826
|
+
}
|
|
46586
46827
|
/**
|
|
46587
46828
|
* Request parameters for cloneEventSession operation in EventsSessionsApi.
|
|
46588
46829
|
*/
|
|
@@ -46898,6 +47139,64 @@ export interface EventsSessionsApiGetEventSessionTracksRequest {
|
|
|
46898
47139
|
*/
|
|
46899
47140
|
readonly search?: string;
|
|
46900
47141
|
}
|
|
47142
|
+
/**
|
|
47143
|
+
* Request parameters for getEventSessionVisiblePassTypes operation in EventsSessionsApi.
|
|
47144
|
+
*/
|
|
47145
|
+
export interface EventsSessionsApiGetEventSessionVisiblePassTypesRequest {
|
|
47146
|
+
/**
|
|
47147
|
+
* The event identifier
|
|
47148
|
+
*/
|
|
47149
|
+
readonly eventId: string;
|
|
47150
|
+
/**
|
|
47151
|
+
* The session identifier
|
|
47152
|
+
*/
|
|
47153
|
+
readonly sessionId: string;
|
|
47154
|
+
/**
|
|
47155
|
+
* Page number
|
|
47156
|
+
*/
|
|
47157
|
+
readonly page?: number;
|
|
47158
|
+
/**
|
|
47159
|
+
* Number of items per page
|
|
47160
|
+
*/
|
|
47161
|
+
readonly pageSize?: number;
|
|
47162
|
+
/**
|
|
47163
|
+
* Field to order by
|
|
47164
|
+
*/
|
|
47165
|
+
readonly orderBy?: string;
|
|
47166
|
+
/**
|
|
47167
|
+
* Search query
|
|
47168
|
+
*/
|
|
47169
|
+
readonly search?: string;
|
|
47170
|
+
}
|
|
47171
|
+
/**
|
|
47172
|
+
* Request parameters for getEventSessionVisibleTiers operation in EventsSessionsApi.
|
|
47173
|
+
*/
|
|
47174
|
+
export interface EventsSessionsApiGetEventSessionVisibleTiersRequest {
|
|
47175
|
+
/**
|
|
47176
|
+
* The event identifier
|
|
47177
|
+
*/
|
|
47178
|
+
readonly eventId: string;
|
|
47179
|
+
/**
|
|
47180
|
+
* The session identifier
|
|
47181
|
+
*/
|
|
47182
|
+
readonly sessionId: string;
|
|
47183
|
+
/**
|
|
47184
|
+
* Page number
|
|
47185
|
+
*/
|
|
47186
|
+
readonly page?: number;
|
|
47187
|
+
/**
|
|
47188
|
+
* Number of items per page
|
|
47189
|
+
*/
|
|
47190
|
+
readonly pageSize?: number;
|
|
47191
|
+
/**
|
|
47192
|
+
* Field to order by
|
|
47193
|
+
*/
|
|
47194
|
+
readonly orderBy?: string;
|
|
47195
|
+
/**
|
|
47196
|
+
* Search query
|
|
47197
|
+
*/
|
|
47198
|
+
readonly search?: string;
|
|
47199
|
+
}
|
|
46901
47200
|
/**
|
|
46902
47201
|
* Request parameters for getEventSessions operation in EventsSessionsApi.
|
|
46903
47202
|
*/
|
|
@@ -47042,6 +47341,40 @@ export interface EventsSessionsApiRemoveEventSessionTrackRequest {
|
|
|
47042
47341
|
*/
|
|
47043
47342
|
readonly trackId: string;
|
|
47044
47343
|
}
|
|
47344
|
+
/**
|
|
47345
|
+
* Request parameters for removeEventSessionVisiblePassType operation in EventsSessionsApi.
|
|
47346
|
+
*/
|
|
47347
|
+
export interface EventsSessionsApiRemoveEventSessionVisiblePassTypeRequest {
|
|
47348
|
+
/**
|
|
47349
|
+
* The event identifier
|
|
47350
|
+
*/
|
|
47351
|
+
readonly eventId: string;
|
|
47352
|
+
/**
|
|
47353
|
+
* The session identifier
|
|
47354
|
+
*/
|
|
47355
|
+
readonly sessionId: string;
|
|
47356
|
+
/**
|
|
47357
|
+
* The passType identifier
|
|
47358
|
+
*/
|
|
47359
|
+
readonly passTypeId: string;
|
|
47360
|
+
}
|
|
47361
|
+
/**
|
|
47362
|
+
* Request parameters for removeEventSessionVisibleTier operation in EventsSessionsApi.
|
|
47363
|
+
*/
|
|
47364
|
+
export interface EventsSessionsApiRemoveEventSessionVisibleTierRequest {
|
|
47365
|
+
/**
|
|
47366
|
+
* The event identifier
|
|
47367
|
+
*/
|
|
47368
|
+
readonly eventId: string;
|
|
47369
|
+
/**
|
|
47370
|
+
* The session identifier
|
|
47371
|
+
*/
|
|
47372
|
+
readonly sessionId: string;
|
|
47373
|
+
/**
|
|
47374
|
+
* The tier identifier
|
|
47375
|
+
*/
|
|
47376
|
+
readonly tierId: string;
|
|
47377
|
+
}
|
|
47045
47378
|
/**
|
|
47046
47379
|
* Request parameters for updateEventSession operation in EventsSessionsApi.
|
|
47047
47380
|
*/
|
|
@@ -47119,6 +47452,22 @@ export declare class EventsSessionsApi extends BaseAPI {
|
|
|
47119
47452
|
* @throws {RequiredError}
|
|
47120
47453
|
*/
|
|
47121
47454
|
addEventSessionTrack(requestParameters: EventsSessionsApiAddEventSessionTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSession200Response, any, {}>>;
|
|
47455
|
+
/**
|
|
47456
|
+
* Add Event Session Visible Pass Type endpoint
|
|
47457
|
+
* @summary Add Event Session Visible Pass Type
|
|
47458
|
+
* @param {EventsSessionsApiAddEventSessionVisiblePassTypeRequest} requestParameters Request parameters.
|
|
47459
|
+
* @param {*} [options] Override http request option.
|
|
47460
|
+
* @throws {RequiredError}
|
|
47461
|
+
*/
|
|
47462
|
+
addEventSessionVisiblePassType(requestParameters: EventsSessionsApiAddEventSessionVisiblePassTypeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSession200Response, any, {}>>;
|
|
47463
|
+
/**
|
|
47464
|
+
* Add Event Session Visible Tier endpoint
|
|
47465
|
+
* @summary Add Event Session Visible Tier
|
|
47466
|
+
* @param {EventsSessionsApiAddEventSessionVisibleTierRequest} requestParameters Request parameters.
|
|
47467
|
+
* @param {*} [options] Override http request option.
|
|
47468
|
+
* @throws {RequiredError}
|
|
47469
|
+
*/
|
|
47470
|
+
addEventSessionVisibleTier(requestParameters: EventsSessionsApiAddEventSessionVisibleTierRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSession200Response, any, {}>>;
|
|
47122
47471
|
/**
|
|
47123
47472
|
* Clone Event Session endpoint
|
|
47124
47473
|
* @summary Clone Event Session
|
|
@@ -47223,6 +47572,22 @@ export declare class EventsSessionsApi extends BaseAPI {
|
|
|
47223
47572
|
* @throws {RequiredError}
|
|
47224
47573
|
*/
|
|
47225
47574
|
getEventSessionTracks(requestParameters: EventsSessionsApiGetEventSessionTracksRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEventSessionTracks200Response, any, {}>>;
|
|
47575
|
+
/**
|
|
47576
|
+
* Get Event Session Visible Pass Types endpoint
|
|
47577
|
+
* @summary Get Event Session Visible Pass Types
|
|
47578
|
+
* @param {EventsSessionsApiGetEventSessionVisiblePassTypesRequest} requestParameters Request parameters.
|
|
47579
|
+
* @param {*} [options] Override http request option.
|
|
47580
|
+
* @throws {RequiredError}
|
|
47581
|
+
*/
|
|
47582
|
+
getEventSessionVisiblePassTypes(requestParameters: EventsSessionsApiGetEventSessionVisiblePassTypesRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetEventAddOnPassTypes200Response, any, {}>>;
|
|
47583
|
+
/**
|
|
47584
|
+
* Get Event Session Visible Tiers endpoint
|
|
47585
|
+
* @summary Get Event Session Visible Tiers
|
|
47586
|
+
* @param {EventsSessionsApiGetEventSessionVisibleTiersRequest} requestParameters Request parameters.
|
|
47587
|
+
* @param {*} [options] Override http request option.
|
|
47588
|
+
* @throws {RequiredError}
|
|
47589
|
+
*/
|
|
47590
|
+
getEventSessionVisibleTiers(requestParameters: EventsSessionsApiGetEventSessionVisibleTiersRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetAccountTiers200Response, any, {}>>;
|
|
47226
47591
|
/**
|
|
47227
47592
|
* Get Event Sessions endpoint
|
|
47228
47593
|
* @summary Get Event Sessions
|
|
@@ -47287,6 +47652,22 @@ export declare class EventsSessionsApi extends BaseAPI {
|
|
|
47287
47652
|
* @throws {RequiredError}
|
|
47288
47653
|
*/
|
|
47289
47654
|
removeEventSessionTrack(requestParameters: EventsSessionsApiRemoveEventSessionTrackRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSession200Response, any, {}>>;
|
|
47655
|
+
/**
|
|
47656
|
+
* Remove Event Session Visible Pass Type endpoint
|
|
47657
|
+
* @summary Remove Event Session Visible Pass Type
|
|
47658
|
+
* @param {EventsSessionsApiRemoveEventSessionVisiblePassTypeRequest} requestParameters Request parameters.
|
|
47659
|
+
* @param {*} [options] Override http request option.
|
|
47660
|
+
* @throws {RequiredError}
|
|
47661
|
+
*/
|
|
47662
|
+
removeEventSessionVisiblePassType(requestParameters: EventsSessionsApiRemoveEventSessionVisiblePassTypeRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSession200Response, any, {}>>;
|
|
47663
|
+
/**
|
|
47664
|
+
* Remove Event Session Visible Tier endpoint
|
|
47665
|
+
* @summary Remove Event Session Visible Tier
|
|
47666
|
+
* @param {EventsSessionsApiRemoveEventSessionVisibleTierRequest} requestParameters Request parameters.
|
|
47667
|
+
* @param {*} [options] Override http request option.
|
|
47668
|
+
* @throws {RequiredError}
|
|
47669
|
+
*/
|
|
47670
|
+
removeEventSessionVisibleTier(requestParameters: EventsSessionsApiRemoveEventSessionVisibleTierRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateEventSession200Response, any, {}>>;
|
|
47290
47671
|
/**
|
|
47291
47672
|
* Update Event Session endpoint
|
|
47292
47673
|
* @summary Update Event Session
|
|
@@ -67557,6 +67938,14 @@ export declare const ReportsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
67557
67938
|
* @throws {RequiredError}
|
|
67558
67939
|
*/
|
|
67559
67940
|
deleteCustomReport: (reportId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
67941
|
+
/**
|
|
67942
|
+
* Delete Custom Report Schedule endpoint
|
|
67943
|
+
* @summary Delete Custom Report Schedule
|
|
67944
|
+
* @param {string} reportId The report identifier
|
|
67945
|
+
* @param {*} [options] Override http request option.
|
|
67946
|
+
* @throws {RequiredError}
|
|
67947
|
+
*/
|
|
67948
|
+
deleteCustomReportSchedule: (reportId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
67560
67949
|
/**
|
|
67561
67950
|
* Export Custom Report endpoint
|
|
67562
67951
|
* @summary Export Custom Report
|
|
@@ -67574,6 +67963,14 @@ export declare const ReportsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
67574
67963
|
* @throws {RequiredError}
|
|
67575
67964
|
*/
|
|
67576
67965
|
getCustomReport: (reportId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
67966
|
+
/**
|
|
67967
|
+
* Get Custom Report Schedule endpoint
|
|
67968
|
+
* @summary Get Custom Report Schedule
|
|
67969
|
+
* @param {string} reportId The report identifier
|
|
67970
|
+
* @param {*} [options] Override http request option.
|
|
67971
|
+
* @throws {RequiredError}
|
|
67972
|
+
*/
|
|
67973
|
+
getCustomReportSchedule: (reportId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
67577
67974
|
/**
|
|
67578
67975
|
* Get Custom Reports endpoint
|
|
67579
67976
|
* @summary Get Custom Reports
|
|
@@ -67612,6 +68009,15 @@ export declare const ReportsApiAxiosParamCreator: (configuration?: Configuration
|
|
|
67612
68009
|
* @throws {RequiredError}
|
|
67613
68010
|
*/
|
|
67614
68011
|
updateCustomReport: (reportId: string, report: CustomReportUpdateInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
68012
|
+
/**
|
|
68013
|
+
* Upsert Custom Report Schedule endpoint
|
|
68014
|
+
* @summary Upsert Custom Report Schedule
|
|
68015
|
+
* @param {string} reportId The report identifier
|
|
68016
|
+
* @param {CustomReportScheduleInputs} customReportScheduleInputs
|
|
68017
|
+
* @param {*} [options] Override http request option.
|
|
68018
|
+
* @throws {RequiredError}
|
|
68019
|
+
*/
|
|
68020
|
+
upsertCustomReportSchedule: (reportId: string, customReportScheduleInputs: CustomReportScheduleInputs, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
67615
68021
|
};
|
|
67616
68022
|
/**
|
|
67617
68023
|
* ReportsApi - functional programming interface
|
|
@@ -67634,6 +68040,14 @@ export declare const ReportsApiFp: (configuration?: Configuration) => {
|
|
|
67634
68040
|
* @throws {RequiredError}
|
|
67635
68041
|
*/
|
|
67636
68042
|
deleteCustomReport(reportId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreateAccountInvitations200Response>>;
|
|
68043
|
+
/**
|
|
68044
|
+
* Delete Custom Report Schedule endpoint
|
|
68045
|
+
* @summary Delete Custom Report Schedule
|
|
68046
|
+
* @param {string} reportId The report identifier
|
|
68047
|
+
* @param {*} [options] Override http request option.
|
|
68048
|
+
* @throws {RequiredError}
|
|
68049
|
+
*/
|
|
68050
|
+
deleteCustomReportSchedule(reportId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetCustomReportSchedule200Response>>;
|
|
67637
68051
|
/**
|
|
67638
68052
|
* Export Custom Report endpoint
|
|
67639
68053
|
* @summary Export Custom Report
|
|
@@ -67651,6 +68065,14 @@ export declare const ReportsApiFp: (configuration?: Configuration) => {
|
|
|
67651
68065
|
* @throws {RequiredError}
|
|
67652
68066
|
*/
|
|
67653
68067
|
getCustomReport(reportId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetCustomReport200Response>>;
|
|
68068
|
+
/**
|
|
68069
|
+
* Get Custom Report Schedule endpoint
|
|
68070
|
+
* @summary Get Custom Report Schedule
|
|
68071
|
+
* @param {string} reportId The report identifier
|
|
68072
|
+
* @param {*} [options] Override http request option.
|
|
68073
|
+
* @throws {RequiredError}
|
|
68074
|
+
*/
|
|
68075
|
+
getCustomReportSchedule(reportId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetCustomReportSchedule200Response>>;
|
|
67654
68076
|
/**
|
|
67655
68077
|
* Get Custom Reports endpoint
|
|
67656
68078
|
* @summary Get Custom Reports
|
|
@@ -67689,6 +68111,15 @@ export declare const ReportsApiFp: (configuration?: Configuration) => {
|
|
|
67689
68111
|
* @throws {RequiredError}
|
|
67690
68112
|
*/
|
|
67691
68113
|
updateCustomReport(reportId: string, report: CustomReportUpdateInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetCustomReport200Response>>;
|
|
68114
|
+
/**
|
|
68115
|
+
* Upsert Custom Report Schedule endpoint
|
|
68116
|
+
* @summary Upsert Custom Report Schedule
|
|
68117
|
+
* @param {string} reportId The report identifier
|
|
68118
|
+
* @param {CustomReportScheduleInputs} customReportScheduleInputs
|
|
68119
|
+
* @param {*} [options] Override http request option.
|
|
68120
|
+
* @throws {RequiredError}
|
|
68121
|
+
*/
|
|
68122
|
+
upsertCustomReportSchedule(reportId: string, customReportScheduleInputs: CustomReportScheduleInputs, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<UpsertCustomReportSchedule200Response>>;
|
|
67692
68123
|
};
|
|
67693
68124
|
/**
|
|
67694
68125
|
* ReportsApi - factory interface
|
|
@@ -67710,6 +68141,14 @@ export declare const ReportsApiFactory: (configuration?: Configuration, basePath
|
|
|
67710
68141
|
* @throws {RequiredError}
|
|
67711
68142
|
*/
|
|
67712
68143
|
deleteCustomReport(requestParameters: ReportsApiDeleteCustomReportRequest, options?: RawAxiosRequestConfig): AxiosPromise<CreateAccountInvitations200Response>;
|
|
68144
|
+
/**
|
|
68145
|
+
* Delete Custom Report Schedule endpoint
|
|
68146
|
+
* @summary Delete Custom Report Schedule
|
|
68147
|
+
* @param {ReportsApiDeleteCustomReportScheduleRequest} requestParameters Request parameters.
|
|
68148
|
+
* @param {*} [options] Override http request option.
|
|
68149
|
+
* @throws {RequiredError}
|
|
68150
|
+
*/
|
|
68151
|
+
deleteCustomReportSchedule(requestParameters: ReportsApiDeleteCustomReportScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetCustomReportSchedule200Response>;
|
|
67713
68152
|
/**
|
|
67714
68153
|
* Export Custom Report endpoint
|
|
67715
68154
|
* @summary Export Custom Report
|
|
@@ -67726,6 +68165,14 @@ export declare const ReportsApiFactory: (configuration?: Configuration, basePath
|
|
|
67726
68165
|
* @throws {RequiredError}
|
|
67727
68166
|
*/
|
|
67728
68167
|
getCustomReport(requestParameters: ReportsApiGetCustomReportRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetCustomReport200Response>;
|
|
68168
|
+
/**
|
|
68169
|
+
* Get Custom Report Schedule endpoint
|
|
68170
|
+
* @summary Get Custom Report Schedule
|
|
68171
|
+
* @param {ReportsApiGetCustomReportScheduleRequest} requestParameters Request parameters.
|
|
68172
|
+
* @param {*} [options] Override http request option.
|
|
68173
|
+
* @throws {RequiredError}
|
|
68174
|
+
*/
|
|
68175
|
+
getCustomReportSchedule(requestParameters: ReportsApiGetCustomReportScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetCustomReportSchedule200Response>;
|
|
67729
68176
|
/**
|
|
67730
68177
|
* Get Custom Reports endpoint
|
|
67731
68178
|
* @summary Get Custom Reports
|
|
@@ -67758,6 +68205,14 @@ export declare const ReportsApiFactory: (configuration?: Configuration, basePath
|
|
|
67758
68205
|
* @throws {RequiredError}
|
|
67759
68206
|
*/
|
|
67760
68207
|
updateCustomReport(requestParameters: ReportsApiUpdateCustomReportRequest, options?: RawAxiosRequestConfig): AxiosPromise<GetCustomReport200Response>;
|
|
68208
|
+
/**
|
|
68209
|
+
* Upsert Custom Report Schedule endpoint
|
|
68210
|
+
* @summary Upsert Custom Report Schedule
|
|
68211
|
+
* @param {ReportsApiUpsertCustomReportScheduleRequest} requestParameters Request parameters.
|
|
68212
|
+
* @param {*} [options] Override http request option.
|
|
68213
|
+
* @throws {RequiredError}
|
|
68214
|
+
*/
|
|
68215
|
+
upsertCustomReportSchedule(requestParameters: ReportsApiUpsertCustomReportScheduleRequest, options?: RawAxiosRequestConfig): AxiosPromise<UpsertCustomReportSchedule200Response>;
|
|
67761
68216
|
};
|
|
67762
68217
|
/**
|
|
67763
68218
|
* Request parameters for createCustomReport operation in ReportsApi.
|
|
@@ -67778,6 +68233,15 @@ export interface ReportsApiDeleteCustomReportRequest {
|
|
|
67778
68233
|
*/
|
|
67779
68234
|
readonly reportId: string;
|
|
67780
68235
|
}
|
|
68236
|
+
/**
|
|
68237
|
+
* Request parameters for deleteCustomReportSchedule operation in ReportsApi.
|
|
68238
|
+
*/
|
|
68239
|
+
export interface ReportsApiDeleteCustomReportScheduleRequest {
|
|
68240
|
+
/**
|
|
68241
|
+
* The report identifier
|
|
68242
|
+
*/
|
|
68243
|
+
readonly reportId: string;
|
|
68244
|
+
}
|
|
67781
68245
|
/**
|
|
67782
68246
|
* Request parameters for exportCustomReport operation in ReportsApi.
|
|
67783
68247
|
*/
|
|
@@ -67797,6 +68261,15 @@ export interface ReportsApiGetCustomReportRequest {
|
|
|
67797
68261
|
*/
|
|
67798
68262
|
readonly reportId: string;
|
|
67799
68263
|
}
|
|
68264
|
+
/**
|
|
68265
|
+
* Request parameters for getCustomReportSchedule operation in ReportsApi.
|
|
68266
|
+
*/
|
|
68267
|
+
export interface ReportsApiGetCustomReportScheduleRequest {
|
|
68268
|
+
/**
|
|
68269
|
+
* The report identifier
|
|
68270
|
+
*/
|
|
68271
|
+
readonly reportId: string;
|
|
68272
|
+
}
|
|
67800
68273
|
/**
|
|
67801
68274
|
* Request parameters for getCustomReports operation in ReportsApi.
|
|
67802
68275
|
*/
|
|
@@ -67857,6 +68330,16 @@ export interface ReportsApiUpdateCustomReportRequest {
|
|
|
67857
68330
|
*/
|
|
67858
68331
|
readonly report: CustomReportUpdateInputs;
|
|
67859
68332
|
}
|
|
68333
|
+
/**
|
|
68334
|
+
* Request parameters for upsertCustomReportSchedule operation in ReportsApi.
|
|
68335
|
+
*/
|
|
68336
|
+
export interface ReportsApiUpsertCustomReportScheduleRequest {
|
|
68337
|
+
/**
|
|
68338
|
+
* The report identifier
|
|
68339
|
+
*/
|
|
68340
|
+
readonly reportId: string;
|
|
68341
|
+
readonly customReportScheduleInputs: CustomReportScheduleInputs;
|
|
68342
|
+
}
|
|
67860
68343
|
/**
|
|
67861
68344
|
* ReportsApi - object-oriented interface
|
|
67862
68345
|
*/
|
|
@@ -67877,6 +68360,14 @@ export declare class ReportsApi extends BaseAPI {
|
|
|
67877
68360
|
* @throws {RequiredError}
|
|
67878
68361
|
*/
|
|
67879
68362
|
deleteCustomReport(requestParameters: ReportsApiDeleteCustomReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreateAccountInvitations200Response, any, {}>>;
|
|
68363
|
+
/**
|
|
68364
|
+
* Delete Custom Report Schedule endpoint
|
|
68365
|
+
* @summary Delete Custom Report Schedule
|
|
68366
|
+
* @param {ReportsApiDeleteCustomReportScheduleRequest} requestParameters Request parameters.
|
|
68367
|
+
* @param {*} [options] Override http request option.
|
|
68368
|
+
* @throws {RequiredError}
|
|
68369
|
+
*/
|
|
68370
|
+
deleteCustomReportSchedule(requestParameters: ReportsApiDeleteCustomReportScheduleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetCustomReportSchedule200Response, any, {}>>;
|
|
67880
68371
|
/**
|
|
67881
68372
|
* Export Custom Report endpoint
|
|
67882
68373
|
* @summary Export Custom Report
|
|
@@ -67893,6 +68384,14 @@ export declare class ReportsApi extends BaseAPI {
|
|
|
67893
68384
|
* @throws {RequiredError}
|
|
67894
68385
|
*/
|
|
67895
68386
|
getCustomReport(requestParameters: ReportsApiGetCustomReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetCustomReport200Response, any, {}>>;
|
|
68387
|
+
/**
|
|
68388
|
+
* Get Custom Report Schedule endpoint
|
|
68389
|
+
* @summary Get Custom Report Schedule
|
|
68390
|
+
* @param {ReportsApiGetCustomReportScheduleRequest} requestParameters Request parameters.
|
|
68391
|
+
* @param {*} [options] Override http request option.
|
|
68392
|
+
* @throws {RequiredError}
|
|
68393
|
+
*/
|
|
68394
|
+
getCustomReportSchedule(requestParameters: ReportsApiGetCustomReportScheduleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetCustomReportSchedule200Response, any, {}>>;
|
|
67896
68395
|
/**
|
|
67897
68396
|
* Get Custom Reports endpoint
|
|
67898
68397
|
* @summary Get Custom Reports
|
|
@@ -67925,6 +68424,14 @@ export declare class ReportsApi extends BaseAPI {
|
|
|
67925
68424
|
* @throws {RequiredError}
|
|
67926
68425
|
*/
|
|
67927
68426
|
updateCustomReport(requestParameters: ReportsApiUpdateCustomReportRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetCustomReport200Response, any, {}>>;
|
|
68427
|
+
/**
|
|
68428
|
+
* Upsert Custom Report Schedule endpoint
|
|
68429
|
+
* @summary Upsert Custom Report Schedule
|
|
68430
|
+
* @param {ReportsApiUpsertCustomReportScheduleRequest} requestParameters Request parameters.
|
|
68431
|
+
* @param {*} [options] Override http request option.
|
|
68432
|
+
* @throws {RequiredError}
|
|
68433
|
+
*/
|
|
68434
|
+
upsertCustomReportSchedule(requestParameters: ReportsApiUpsertCustomReportScheduleRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<UpsertCustomReportSchedule200Response, any, {}>>;
|
|
67928
68435
|
}
|
|
67929
68436
|
/**
|
|
67930
68437
|
* ReportsUsersApi - axios parameter creator
|