@connectedxm/admin-sdk 6.26.0 → 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/README.md +6 -0
- package/api.ts +1075 -382
- package/dist/api.d.ts +355 -0
- package/dist/api.js +511 -0
- package/dist/esm/api.d.ts +355 -0
- package/dist/esm/api.js +511 -0
- package/docs/EventSessionVisibility.md +2 -0
- package/docs/EventsSessionsApi.md +366 -0
- package/package.json +1 -1
package/dist/api.js
CHANGED
|
@@ -666,6 +666,7 @@ var EventSessionQuestionType;
|
|
|
666
666
|
var EventSessionVisibility;
|
|
667
667
|
(function (EventSessionVisibility) {
|
|
668
668
|
EventSessionVisibility["Public"] = "PUBLIC";
|
|
669
|
+
EventSessionVisibility["Preview"] = "PREVIEW";
|
|
669
670
|
EventSessionVisibility["Restricted"] = "RESTRICTED";
|
|
670
671
|
EventSessionVisibility["Registered"] = "REGISTERED";
|
|
671
672
|
EventSessionVisibility["Hidden"] = "HIDDEN";
|
|
@@ -52478,6 +52479,90 @@ const EventsSessionsApiAxiosParamCreator = function (configuration) {
|
|
|
52478
52479
|
options: localVarRequestOptions,
|
|
52479
52480
|
};
|
|
52480
52481
|
}),
|
|
52482
|
+
/**
|
|
52483
|
+
* Add Event Session Visible Pass Type endpoint
|
|
52484
|
+
* @summary Add Event Session Visible Pass Type
|
|
52485
|
+
* @param {string} eventId The event identifier
|
|
52486
|
+
* @param {string} sessionId The session identifier
|
|
52487
|
+
* @param {string} passTypeId The passType identifier
|
|
52488
|
+
* @param {*} [options] Override http request option.
|
|
52489
|
+
* @throws {RequiredError}
|
|
52490
|
+
*/
|
|
52491
|
+
addEventSessionVisiblePassType: (eventId_1, sessionId_1, passTypeId_1, ...args_1) => __awaiter(this, [eventId_1, sessionId_1, passTypeId_1, ...args_1], void 0, function* (eventId, sessionId, passTypeId, options = {}) {
|
|
52492
|
+
// verify required parameter 'eventId' is not null or undefined
|
|
52493
|
+
(0, common_1.assertParamExists)('addEventSessionVisiblePassType', 'eventId', eventId);
|
|
52494
|
+
// verify required parameter 'sessionId' is not null or undefined
|
|
52495
|
+
(0, common_1.assertParamExists)('addEventSessionVisiblePassType', 'sessionId', sessionId);
|
|
52496
|
+
// verify required parameter 'passTypeId' is not null or undefined
|
|
52497
|
+
(0, common_1.assertParamExists)('addEventSessionVisiblePassType', 'passTypeId', passTypeId);
|
|
52498
|
+
const localVarPath = `/events/{eventId}/sessions/{sessionId}/visiblePassTypes/{passTypeId}`
|
|
52499
|
+
.replace(`{${"eventId"}}`, encodeURIComponent(String(eventId)))
|
|
52500
|
+
.replace(`{${"sessionId"}}`, encodeURIComponent(String(sessionId)))
|
|
52501
|
+
.replace(`{${"passTypeId"}}`, encodeURIComponent(String(passTypeId)));
|
|
52502
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
52503
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
52504
|
+
let baseOptions;
|
|
52505
|
+
if (configuration) {
|
|
52506
|
+
baseOptions = configuration.baseOptions;
|
|
52507
|
+
}
|
|
52508
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
52509
|
+
const localVarHeaderParameter = {};
|
|
52510
|
+
const localVarQueryParameter = {};
|
|
52511
|
+
// authentication ApiKeyAuth required
|
|
52512
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "api-key", configuration);
|
|
52513
|
+
// authentication OrganizationId required
|
|
52514
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "organization", configuration);
|
|
52515
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
52516
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
52517
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
52518
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
52519
|
+
return {
|
|
52520
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
52521
|
+
options: localVarRequestOptions,
|
|
52522
|
+
};
|
|
52523
|
+
}),
|
|
52524
|
+
/**
|
|
52525
|
+
* Add Event Session Visible Tier endpoint
|
|
52526
|
+
* @summary Add Event Session Visible Tier
|
|
52527
|
+
* @param {string} eventId The event identifier
|
|
52528
|
+
* @param {string} sessionId The session identifier
|
|
52529
|
+
* @param {string} tierId The tier identifier
|
|
52530
|
+
* @param {*} [options] Override http request option.
|
|
52531
|
+
* @throws {RequiredError}
|
|
52532
|
+
*/
|
|
52533
|
+
addEventSessionVisibleTier: (eventId_1, sessionId_1, tierId_1, ...args_1) => __awaiter(this, [eventId_1, sessionId_1, tierId_1, ...args_1], void 0, function* (eventId, sessionId, tierId, options = {}) {
|
|
52534
|
+
// verify required parameter 'eventId' is not null or undefined
|
|
52535
|
+
(0, common_1.assertParamExists)('addEventSessionVisibleTier', 'eventId', eventId);
|
|
52536
|
+
// verify required parameter 'sessionId' is not null or undefined
|
|
52537
|
+
(0, common_1.assertParamExists)('addEventSessionVisibleTier', 'sessionId', sessionId);
|
|
52538
|
+
// verify required parameter 'tierId' is not null or undefined
|
|
52539
|
+
(0, common_1.assertParamExists)('addEventSessionVisibleTier', 'tierId', tierId);
|
|
52540
|
+
const localVarPath = `/events/{eventId}/sessions/{sessionId}/visibleTiers/{tierId}`
|
|
52541
|
+
.replace(`{${"eventId"}}`, encodeURIComponent(String(eventId)))
|
|
52542
|
+
.replace(`{${"sessionId"}}`, encodeURIComponent(String(sessionId)))
|
|
52543
|
+
.replace(`{${"tierId"}}`, encodeURIComponent(String(tierId)));
|
|
52544
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
52545
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
52546
|
+
let baseOptions;
|
|
52547
|
+
if (configuration) {
|
|
52548
|
+
baseOptions = configuration.baseOptions;
|
|
52549
|
+
}
|
|
52550
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
52551
|
+
const localVarHeaderParameter = {};
|
|
52552
|
+
const localVarQueryParameter = {};
|
|
52553
|
+
// authentication ApiKeyAuth required
|
|
52554
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "api-key", configuration);
|
|
52555
|
+
// authentication OrganizationId required
|
|
52556
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "organization", configuration);
|
|
52557
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
52558
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
52559
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
52560
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
52561
|
+
return {
|
|
52562
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
52563
|
+
options: localVarRequestOptions,
|
|
52564
|
+
};
|
|
52565
|
+
}),
|
|
52481
52566
|
/**
|
|
52482
52567
|
* Clone Event Session endpoint
|
|
52483
52568
|
* @summary Clone Event Session
|
|
@@ -53126,6 +53211,114 @@ const EventsSessionsApiAxiosParamCreator = function (configuration) {
|
|
|
53126
53211
|
options: localVarRequestOptions,
|
|
53127
53212
|
};
|
|
53128
53213
|
}),
|
|
53214
|
+
/**
|
|
53215
|
+
* Get Event Session Visible Pass Types endpoint
|
|
53216
|
+
* @summary Get Event Session Visible Pass Types
|
|
53217
|
+
* @param {string} eventId The event identifier
|
|
53218
|
+
* @param {string} sessionId The session identifier
|
|
53219
|
+
* @param {number} [page] Page number
|
|
53220
|
+
* @param {number} [pageSize] Number of items per page
|
|
53221
|
+
* @param {string} [orderBy] Field to order by
|
|
53222
|
+
* @param {string} [search] Search query
|
|
53223
|
+
* @param {*} [options] Override http request option.
|
|
53224
|
+
* @throws {RequiredError}
|
|
53225
|
+
*/
|
|
53226
|
+
getEventSessionVisiblePassTypes: (eventId_1, sessionId_1, page_1, pageSize_1, orderBy_1, search_1, ...args_1) => __awaiter(this, [eventId_1, sessionId_1, page_1, pageSize_1, orderBy_1, search_1, ...args_1], void 0, function* (eventId, sessionId, page, pageSize, orderBy, search, options = {}) {
|
|
53227
|
+
// verify required parameter 'eventId' is not null or undefined
|
|
53228
|
+
(0, common_1.assertParamExists)('getEventSessionVisiblePassTypes', 'eventId', eventId);
|
|
53229
|
+
// verify required parameter 'sessionId' is not null or undefined
|
|
53230
|
+
(0, common_1.assertParamExists)('getEventSessionVisiblePassTypes', 'sessionId', sessionId);
|
|
53231
|
+
const localVarPath = `/events/{eventId}/sessions/{sessionId}/visiblePassTypes`
|
|
53232
|
+
.replace(`{${"eventId"}}`, encodeURIComponent(String(eventId)))
|
|
53233
|
+
.replace(`{${"sessionId"}}`, encodeURIComponent(String(sessionId)));
|
|
53234
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
53235
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
53236
|
+
let baseOptions;
|
|
53237
|
+
if (configuration) {
|
|
53238
|
+
baseOptions = configuration.baseOptions;
|
|
53239
|
+
}
|
|
53240
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
53241
|
+
const localVarHeaderParameter = {};
|
|
53242
|
+
const localVarQueryParameter = {};
|
|
53243
|
+
// authentication ApiKeyAuth required
|
|
53244
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "api-key", configuration);
|
|
53245
|
+
// authentication OrganizationId required
|
|
53246
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "organization", configuration);
|
|
53247
|
+
if (page !== undefined) {
|
|
53248
|
+
localVarQueryParameter['page'] = page;
|
|
53249
|
+
}
|
|
53250
|
+
if (pageSize !== undefined) {
|
|
53251
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
53252
|
+
}
|
|
53253
|
+
if (orderBy !== undefined) {
|
|
53254
|
+
localVarQueryParameter['orderBy'] = orderBy;
|
|
53255
|
+
}
|
|
53256
|
+
if (search !== undefined) {
|
|
53257
|
+
localVarQueryParameter['search'] = search;
|
|
53258
|
+
}
|
|
53259
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
53260
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
53261
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
53262
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
53263
|
+
return {
|
|
53264
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
53265
|
+
options: localVarRequestOptions,
|
|
53266
|
+
};
|
|
53267
|
+
}),
|
|
53268
|
+
/**
|
|
53269
|
+
* Get Event Session Visible Tiers endpoint
|
|
53270
|
+
* @summary Get Event Session Visible Tiers
|
|
53271
|
+
* @param {string} eventId The event identifier
|
|
53272
|
+
* @param {string} sessionId The session identifier
|
|
53273
|
+
* @param {number} [page] Page number
|
|
53274
|
+
* @param {number} [pageSize] Number of items per page
|
|
53275
|
+
* @param {string} [orderBy] Field to order by
|
|
53276
|
+
* @param {string} [search] Search query
|
|
53277
|
+
* @param {*} [options] Override http request option.
|
|
53278
|
+
* @throws {RequiredError}
|
|
53279
|
+
*/
|
|
53280
|
+
getEventSessionVisibleTiers: (eventId_1, sessionId_1, page_1, pageSize_1, orderBy_1, search_1, ...args_1) => __awaiter(this, [eventId_1, sessionId_1, page_1, pageSize_1, orderBy_1, search_1, ...args_1], void 0, function* (eventId, sessionId, page, pageSize, orderBy, search, options = {}) {
|
|
53281
|
+
// verify required parameter 'eventId' is not null or undefined
|
|
53282
|
+
(0, common_1.assertParamExists)('getEventSessionVisibleTiers', 'eventId', eventId);
|
|
53283
|
+
// verify required parameter 'sessionId' is not null or undefined
|
|
53284
|
+
(0, common_1.assertParamExists)('getEventSessionVisibleTiers', 'sessionId', sessionId);
|
|
53285
|
+
const localVarPath = `/events/{eventId}/sessions/{sessionId}/visibleTiers`
|
|
53286
|
+
.replace(`{${"eventId"}}`, encodeURIComponent(String(eventId)))
|
|
53287
|
+
.replace(`{${"sessionId"}}`, encodeURIComponent(String(sessionId)));
|
|
53288
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
53289
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
53290
|
+
let baseOptions;
|
|
53291
|
+
if (configuration) {
|
|
53292
|
+
baseOptions = configuration.baseOptions;
|
|
53293
|
+
}
|
|
53294
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
53295
|
+
const localVarHeaderParameter = {};
|
|
53296
|
+
const localVarQueryParameter = {};
|
|
53297
|
+
// authentication ApiKeyAuth required
|
|
53298
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "api-key", configuration);
|
|
53299
|
+
// authentication OrganizationId required
|
|
53300
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "organization", configuration);
|
|
53301
|
+
if (page !== undefined) {
|
|
53302
|
+
localVarQueryParameter['page'] = page;
|
|
53303
|
+
}
|
|
53304
|
+
if (pageSize !== undefined) {
|
|
53305
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
53306
|
+
}
|
|
53307
|
+
if (orderBy !== undefined) {
|
|
53308
|
+
localVarQueryParameter['orderBy'] = orderBy;
|
|
53309
|
+
}
|
|
53310
|
+
if (search !== undefined) {
|
|
53311
|
+
localVarQueryParameter['search'] = search;
|
|
53312
|
+
}
|
|
53313
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
53314
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
53315
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
53316
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
53317
|
+
return {
|
|
53318
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
53319
|
+
options: localVarRequestOptions,
|
|
53320
|
+
};
|
|
53321
|
+
}),
|
|
53129
53322
|
/**
|
|
53130
53323
|
* Get Event Sessions endpoint
|
|
53131
53324
|
* @summary Get Event Sessions
|
|
@@ -53470,6 +53663,90 @@ const EventsSessionsApiAxiosParamCreator = function (configuration) {
|
|
|
53470
53663
|
options: localVarRequestOptions,
|
|
53471
53664
|
};
|
|
53472
53665
|
}),
|
|
53666
|
+
/**
|
|
53667
|
+
* Remove Event Session Visible Pass Type endpoint
|
|
53668
|
+
* @summary Remove Event Session Visible Pass Type
|
|
53669
|
+
* @param {string} eventId The event identifier
|
|
53670
|
+
* @param {string} sessionId The session identifier
|
|
53671
|
+
* @param {string} passTypeId The passType identifier
|
|
53672
|
+
* @param {*} [options] Override http request option.
|
|
53673
|
+
* @throws {RequiredError}
|
|
53674
|
+
*/
|
|
53675
|
+
removeEventSessionVisiblePassType: (eventId_1, sessionId_1, passTypeId_1, ...args_1) => __awaiter(this, [eventId_1, sessionId_1, passTypeId_1, ...args_1], void 0, function* (eventId, sessionId, passTypeId, options = {}) {
|
|
53676
|
+
// verify required parameter 'eventId' is not null or undefined
|
|
53677
|
+
(0, common_1.assertParamExists)('removeEventSessionVisiblePassType', 'eventId', eventId);
|
|
53678
|
+
// verify required parameter 'sessionId' is not null or undefined
|
|
53679
|
+
(0, common_1.assertParamExists)('removeEventSessionVisiblePassType', 'sessionId', sessionId);
|
|
53680
|
+
// verify required parameter 'passTypeId' is not null or undefined
|
|
53681
|
+
(0, common_1.assertParamExists)('removeEventSessionVisiblePassType', 'passTypeId', passTypeId);
|
|
53682
|
+
const localVarPath = `/events/{eventId}/sessions/{sessionId}/visiblePassTypes/{passTypeId}`
|
|
53683
|
+
.replace(`{${"eventId"}}`, encodeURIComponent(String(eventId)))
|
|
53684
|
+
.replace(`{${"sessionId"}}`, encodeURIComponent(String(sessionId)))
|
|
53685
|
+
.replace(`{${"passTypeId"}}`, encodeURIComponent(String(passTypeId)));
|
|
53686
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
53687
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
53688
|
+
let baseOptions;
|
|
53689
|
+
if (configuration) {
|
|
53690
|
+
baseOptions = configuration.baseOptions;
|
|
53691
|
+
}
|
|
53692
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
53693
|
+
const localVarHeaderParameter = {};
|
|
53694
|
+
const localVarQueryParameter = {};
|
|
53695
|
+
// authentication ApiKeyAuth required
|
|
53696
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "api-key", configuration);
|
|
53697
|
+
// authentication OrganizationId required
|
|
53698
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "organization", configuration);
|
|
53699
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
53700
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
53701
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
53702
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
53703
|
+
return {
|
|
53704
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
53705
|
+
options: localVarRequestOptions,
|
|
53706
|
+
};
|
|
53707
|
+
}),
|
|
53708
|
+
/**
|
|
53709
|
+
* Remove Event Session Visible Tier endpoint
|
|
53710
|
+
* @summary Remove Event Session Visible Tier
|
|
53711
|
+
* @param {string} eventId The event identifier
|
|
53712
|
+
* @param {string} sessionId The session identifier
|
|
53713
|
+
* @param {string} tierId The tier identifier
|
|
53714
|
+
* @param {*} [options] Override http request option.
|
|
53715
|
+
* @throws {RequiredError}
|
|
53716
|
+
*/
|
|
53717
|
+
removeEventSessionVisibleTier: (eventId_1, sessionId_1, tierId_1, ...args_1) => __awaiter(this, [eventId_1, sessionId_1, tierId_1, ...args_1], void 0, function* (eventId, sessionId, tierId, options = {}) {
|
|
53718
|
+
// verify required parameter 'eventId' is not null or undefined
|
|
53719
|
+
(0, common_1.assertParamExists)('removeEventSessionVisibleTier', 'eventId', eventId);
|
|
53720
|
+
// verify required parameter 'sessionId' is not null or undefined
|
|
53721
|
+
(0, common_1.assertParamExists)('removeEventSessionVisibleTier', 'sessionId', sessionId);
|
|
53722
|
+
// verify required parameter 'tierId' is not null or undefined
|
|
53723
|
+
(0, common_1.assertParamExists)('removeEventSessionVisibleTier', 'tierId', tierId);
|
|
53724
|
+
const localVarPath = `/events/{eventId}/sessions/{sessionId}/visibleTiers/{tierId}`
|
|
53725
|
+
.replace(`{${"eventId"}}`, encodeURIComponent(String(eventId)))
|
|
53726
|
+
.replace(`{${"sessionId"}}`, encodeURIComponent(String(sessionId)))
|
|
53727
|
+
.replace(`{${"tierId"}}`, encodeURIComponent(String(tierId)));
|
|
53728
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
53729
|
+
const localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
53730
|
+
let baseOptions;
|
|
53731
|
+
if (configuration) {
|
|
53732
|
+
baseOptions = configuration.baseOptions;
|
|
53733
|
+
}
|
|
53734
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
53735
|
+
const localVarHeaderParameter = {};
|
|
53736
|
+
const localVarQueryParameter = {};
|
|
53737
|
+
// authentication ApiKeyAuth required
|
|
53738
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "api-key", configuration);
|
|
53739
|
+
// authentication OrganizationId required
|
|
53740
|
+
yield (0, common_1.setApiKeyToObject)(localVarHeaderParameter, "organization", configuration);
|
|
53741
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
53742
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
53743
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
53744
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
53745
|
+
return {
|
|
53746
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
53747
|
+
options: localVarRequestOptions,
|
|
53748
|
+
};
|
|
53749
|
+
}),
|
|
53473
53750
|
/**
|
|
53474
53751
|
* Update Event Session endpoint
|
|
53475
53752
|
* @summary Update Event Session
|
|
@@ -53651,6 +53928,42 @@ const EventsSessionsApiFp = function (configuration) {
|
|
|
53651
53928
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
53652
53929
|
});
|
|
53653
53930
|
},
|
|
53931
|
+
/**
|
|
53932
|
+
* Add Event Session Visible Pass Type endpoint
|
|
53933
|
+
* @summary Add Event Session Visible Pass Type
|
|
53934
|
+
* @param {string} eventId The event identifier
|
|
53935
|
+
* @param {string} sessionId The session identifier
|
|
53936
|
+
* @param {string} passTypeId The passType identifier
|
|
53937
|
+
* @param {*} [options] Override http request option.
|
|
53938
|
+
* @throws {RequiredError}
|
|
53939
|
+
*/
|
|
53940
|
+
addEventSessionVisiblePassType(eventId, sessionId, passTypeId, options) {
|
|
53941
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
53942
|
+
var _a, _b, _c;
|
|
53943
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.addEventSessionVisiblePassType(eventId, sessionId, passTypeId, options);
|
|
53944
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
53945
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['EventsSessionsApi.addEventSessionVisiblePassType']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
53946
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
53947
|
+
});
|
|
53948
|
+
},
|
|
53949
|
+
/**
|
|
53950
|
+
* Add Event Session Visible Tier endpoint
|
|
53951
|
+
* @summary Add Event Session Visible Tier
|
|
53952
|
+
* @param {string} eventId The event identifier
|
|
53953
|
+
* @param {string} sessionId The session identifier
|
|
53954
|
+
* @param {string} tierId The tier identifier
|
|
53955
|
+
* @param {*} [options] Override http request option.
|
|
53956
|
+
* @throws {RequiredError}
|
|
53957
|
+
*/
|
|
53958
|
+
addEventSessionVisibleTier(eventId, sessionId, tierId, options) {
|
|
53959
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
53960
|
+
var _a, _b, _c;
|
|
53961
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.addEventSessionVisibleTier(eventId, sessionId, tierId, options);
|
|
53962
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
53963
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['EventsSessionsApi.addEventSessionVisibleTier']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
53964
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
53965
|
+
});
|
|
53966
|
+
},
|
|
53654
53967
|
/**
|
|
53655
53968
|
* Clone Event Session endpoint
|
|
53656
53969
|
* @summary Clone Event Session
|
|
@@ -53910,6 +54223,48 @@ const EventsSessionsApiFp = function (configuration) {
|
|
|
53910
54223
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
53911
54224
|
});
|
|
53912
54225
|
},
|
|
54226
|
+
/**
|
|
54227
|
+
* Get Event Session Visible Pass Types endpoint
|
|
54228
|
+
* @summary Get Event Session Visible Pass Types
|
|
54229
|
+
* @param {string} eventId The event identifier
|
|
54230
|
+
* @param {string} sessionId The session identifier
|
|
54231
|
+
* @param {number} [page] Page number
|
|
54232
|
+
* @param {number} [pageSize] Number of items per page
|
|
54233
|
+
* @param {string} [orderBy] Field to order by
|
|
54234
|
+
* @param {string} [search] Search query
|
|
54235
|
+
* @param {*} [options] Override http request option.
|
|
54236
|
+
* @throws {RequiredError}
|
|
54237
|
+
*/
|
|
54238
|
+
getEventSessionVisiblePassTypes(eventId, sessionId, page, pageSize, orderBy, search, options) {
|
|
54239
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
54240
|
+
var _a, _b, _c;
|
|
54241
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getEventSessionVisiblePassTypes(eventId, sessionId, page, pageSize, orderBy, search, options);
|
|
54242
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
54243
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['EventsSessionsApi.getEventSessionVisiblePassTypes']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
54244
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
54245
|
+
});
|
|
54246
|
+
},
|
|
54247
|
+
/**
|
|
54248
|
+
* Get Event Session Visible Tiers endpoint
|
|
54249
|
+
* @summary Get Event Session Visible Tiers
|
|
54250
|
+
* @param {string} eventId The event identifier
|
|
54251
|
+
* @param {string} sessionId The session identifier
|
|
54252
|
+
* @param {number} [page] Page number
|
|
54253
|
+
* @param {number} [pageSize] Number of items per page
|
|
54254
|
+
* @param {string} [orderBy] Field to order by
|
|
54255
|
+
* @param {string} [search] Search query
|
|
54256
|
+
* @param {*} [options] Override http request option.
|
|
54257
|
+
* @throws {RequiredError}
|
|
54258
|
+
*/
|
|
54259
|
+
getEventSessionVisibleTiers(eventId, sessionId, page, pageSize, orderBy, search, options) {
|
|
54260
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
54261
|
+
var _a, _b, _c;
|
|
54262
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getEventSessionVisibleTiers(eventId, sessionId, page, pageSize, orderBy, search, options);
|
|
54263
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
54264
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['EventsSessionsApi.getEventSessionVisibleTiers']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
54265
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
54266
|
+
});
|
|
54267
|
+
},
|
|
53913
54268
|
/**
|
|
53914
54269
|
* Get Event Sessions endpoint
|
|
53915
54270
|
* @summary Get Event Sessions
|
|
@@ -54056,6 +54411,42 @@ const EventsSessionsApiFp = function (configuration) {
|
|
|
54056
54411
|
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
54057
54412
|
});
|
|
54058
54413
|
},
|
|
54414
|
+
/**
|
|
54415
|
+
* Remove Event Session Visible Pass Type endpoint
|
|
54416
|
+
* @summary Remove Event Session Visible Pass Type
|
|
54417
|
+
* @param {string} eventId The event identifier
|
|
54418
|
+
* @param {string} sessionId The session identifier
|
|
54419
|
+
* @param {string} passTypeId The passType identifier
|
|
54420
|
+
* @param {*} [options] Override http request option.
|
|
54421
|
+
* @throws {RequiredError}
|
|
54422
|
+
*/
|
|
54423
|
+
removeEventSessionVisiblePassType(eventId, sessionId, passTypeId, options) {
|
|
54424
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
54425
|
+
var _a, _b, _c;
|
|
54426
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.removeEventSessionVisiblePassType(eventId, sessionId, passTypeId, options);
|
|
54427
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
54428
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['EventsSessionsApi.removeEventSessionVisiblePassType']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
54429
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
54430
|
+
});
|
|
54431
|
+
},
|
|
54432
|
+
/**
|
|
54433
|
+
* Remove Event Session Visible Tier endpoint
|
|
54434
|
+
* @summary Remove Event Session Visible Tier
|
|
54435
|
+
* @param {string} eventId The event identifier
|
|
54436
|
+
* @param {string} sessionId The session identifier
|
|
54437
|
+
* @param {string} tierId The tier identifier
|
|
54438
|
+
* @param {*} [options] Override http request option.
|
|
54439
|
+
* @throws {RequiredError}
|
|
54440
|
+
*/
|
|
54441
|
+
removeEventSessionVisibleTier(eventId, sessionId, tierId, options) {
|
|
54442
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
54443
|
+
var _a, _b, _c;
|
|
54444
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.removeEventSessionVisibleTier(eventId, sessionId, tierId, options);
|
|
54445
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
54446
|
+
const localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['EventsSessionsApi.removeEventSessionVisibleTier']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
54447
|
+
return (axios, basePath) => (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
54448
|
+
});
|
|
54449
|
+
},
|
|
54059
54450
|
/**
|
|
54060
54451
|
* Update Event Session endpoint
|
|
54061
54452
|
* @summary Update Event Session
|
|
@@ -54153,6 +54544,26 @@ const EventsSessionsApiFactory = function (configuration, basePath, axios) {
|
|
|
54153
54544
|
addEventSessionTrack(requestParameters, options) {
|
|
54154
54545
|
return localVarFp.addEventSessionTrack(requestParameters.eventId, requestParameters.sessionId, requestParameters.trackId, options).then((request) => request(axios, basePath));
|
|
54155
54546
|
},
|
|
54547
|
+
/**
|
|
54548
|
+
* Add Event Session Visible Pass Type endpoint
|
|
54549
|
+
* @summary Add Event Session Visible Pass Type
|
|
54550
|
+
* @param {EventsSessionsApiAddEventSessionVisiblePassTypeRequest} requestParameters Request parameters.
|
|
54551
|
+
* @param {*} [options] Override http request option.
|
|
54552
|
+
* @throws {RequiredError}
|
|
54553
|
+
*/
|
|
54554
|
+
addEventSessionVisiblePassType(requestParameters, options) {
|
|
54555
|
+
return localVarFp.addEventSessionVisiblePassType(requestParameters.eventId, requestParameters.sessionId, requestParameters.passTypeId, options).then((request) => request(axios, basePath));
|
|
54556
|
+
},
|
|
54557
|
+
/**
|
|
54558
|
+
* Add Event Session Visible Tier endpoint
|
|
54559
|
+
* @summary Add Event Session Visible Tier
|
|
54560
|
+
* @param {EventsSessionsApiAddEventSessionVisibleTierRequest} requestParameters Request parameters.
|
|
54561
|
+
* @param {*} [options] Override http request option.
|
|
54562
|
+
* @throws {RequiredError}
|
|
54563
|
+
*/
|
|
54564
|
+
addEventSessionVisibleTier(requestParameters, options) {
|
|
54565
|
+
return localVarFp.addEventSessionVisibleTier(requestParameters.eventId, requestParameters.sessionId, requestParameters.tierId, options).then((request) => request(axios, basePath));
|
|
54566
|
+
},
|
|
54156
54567
|
/**
|
|
54157
54568
|
* Clone Event Session endpoint
|
|
54158
54569
|
* @summary Clone Event Session
|
|
@@ -54283,6 +54694,26 @@ const EventsSessionsApiFactory = function (configuration, basePath, axios) {
|
|
|
54283
54694
|
getEventSessionTracks(requestParameters, options) {
|
|
54284
54695
|
return localVarFp.getEventSessionTracks(requestParameters.eventId, requestParameters.sessionId, requestParameters.page, requestParameters.pageSize, requestParameters.orderBy, requestParameters.search, options).then((request) => request(axios, basePath));
|
|
54285
54696
|
},
|
|
54697
|
+
/**
|
|
54698
|
+
* Get Event Session Visible Pass Types endpoint
|
|
54699
|
+
* @summary Get Event Session Visible Pass Types
|
|
54700
|
+
* @param {EventsSessionsApiGetEventSessionVisiblePassTypesRequest} requestParameters Request parameters.
|
|
54701
|
+
* @param {*} [options] Override http request option.
|
|
54702
|
+
* @throws {RequiredError}
|
|
54703
|
+
*/
|
|
54704
|
+
getEventSessionVisiblePassTypes(requestParameters, options) {
|
|
54705
|
+
return localVarFp.getEventSessionVisiblePassTypes(requestParameters.eventId, requestParameters.sessionId, requestParameters.page, requestParameters.pageSize, requestParameters.orderBy, requestParameters.search, options).then((request) => request(axios, basePath));
|
|
54706
|
+
},
|
|
54707
|
+
/**
|
|
54708
|
+
* Get Event Session Visible Tiers endpoint
|
|
54709
|
+
* @summary Get Event Session Visible Tiers
|
|
54710
|
+
* @param {EventsSessionsApiGetEventSessionVisibleTiersRequest} requestParameters Request parameters.
|
|
54711
|
+
* @param {*} [options] Override http request option.
|
|
54712
|
+
* @throws {RequiredError}
|
|
54713
|
+
*/
|
|
54714
|
+
getEventSessionVisibleTiers(requestParameters, options) {
|
|
54715
|
+
return localVarFp.getEventSessionVisibleTiers(requestParameters.eventId, requestParameters.sessionId, requestParameters.page, requestParameters.pageSize, requestParameters.orderBy, requestParameters.search, options).then((request) => request(axios, basePath));
|
|
54716
|
+
},
|
|
54286
54717
|
/**
|
|
54287
54718
|
* Get Event Sessions endpoint
|
|
54288
54719
|
* @summary Get Event Sessions
|
|
@@ -54363,6 +54794,26 @@ const EventsSessionsApiFactory = function (configuration, basePath, axios) {
|
|
|
54363
54794
|
removeEventSessionTrack(requestParameters, options) {
|
|
54364
54795
|
return localVarFp.removeEventSessionTrack(requestParameters.eventId, requestParameters.sessionId, requestParameters.trackId, options).then((request) => request(axios, basePath));
|
|
54365
54796
|
},
|
|
54797
|
+
/**
|
|
54798
|
+
* Remove Event Session Visible Pass Type endpoint
|
|
54799
|
+
* @summary Remove Event Session Visible Pass Type
|
|
54800
|
+
* @param {EventsSessionsApiRemoveEventSessionVisiblePassTypeRequest} requestParameters Request parameters.
|
|
54801
|
+
* @param {*} [options] Override http request option.
|
|
54802
|
+
* @throws {RequiredError}
|
|
54803
|
+
*/
|
|
54804
|
+
removeEventSessionVisiblePassType(requestParameters, options) {
|
|
54805
|
+
return localVarFp.removeEventSessionVisiblePassType(requestParameters.eventId, requestParameters.sessionId, requestParameters.passTypeId, options).then((request) => request(axios, basePath));
|
|
54806
|
+
},
|
|
54807
|
+
/**
|
|
54808
|
+
* Remove Event Session Visible Tier endpoint
|
|
54809
|
+
* @summary Remove Event Session Visible Tier
|
|
54810
|
+
* @param {EventsSessionsApiRemoveEventSessionVisibleTierRequest} requestParameters Request parameters.
|
|
54811
|
+
* @param {*} [options] Override http request option.
|
|
54812
|
+
* @throws {RequiredError}
|
|
54813
|
+
*/
|
|
54814
|
+
removeEventSessionVisibleTier(requestParameters, options) {
|
|
54815
|
+
return localVarFp.removeEventSessionVisibleTier(requestParameters.eventId, requestParameters.sessionId, requestParameters.tierId, options).then((request) => request(axios, basePath));
|
|
54816
|
+
},
|
|
54366
54817
|
/**
|
|
54367
54818
|
* Update Event Session endpoint
|
|
54368
54819
|
* @summary Update Event Session
|
|
@@ -54450,6 +54901,26 @@ class EventsSessionsApi extends base_1.BaseAPI {
|
|
|
54450
54901
|
addEventSessionTrack(requestParameters, options) {
|
|
54451
54902
|
return (0, exports.EventsSessionsApiFp)(this.configuration).addEventSessionTrack(requestParameters.eventId, requestParameters.sessionId, requestParameters.trackId, options).then((request) => request(this.axios, this.basePath));
|
|
54452
54903
|
}
|
|
54904
|
+
/**
|
|
54905
|
+
* Add Event Session Visible Pass Type endpoint
|
|
54906
|
+
* @summary Add Event Session Visible Pass Type
|
|
54907
|
+
* @param {EventsSessionsApiAddEventSessionVisiblePassTypeRequest} requestParameters Request parameters.
|
|
54908
|
+
* @param {*} [options] Override http request option.
|
|
54909
|
+
* @throws {RequiredError}
|
|
54910
|
+
*/
|
|
54911
|
+
addEventSessionVisiblePassType(requestParameters, options) {
|
|
54912
|
+
return (0, exports.EventsSessionsApiFp)(this.configuration).addEventSessionVisiblePassType(requestParameters.eventId, requestParameters.sessionId, requestParameters.passTypeId, options).then((request) => request(this.axios, this.basePath));
|
|
54913
|
+
}
|
|
54914
|
+
/**
|
|
54915
|
+
* Add Event Session Visible Tier endpoint
|
|
54916
|
+
* @summary Add Event Session Visible Tier
|
|
54917
|
+
* @param {EventsSessionsApiAddEventSessionVisibleTierRequest} requestParameters Request parameters.
|
|
54918
|
+
* @param {*} [options] Override http request option.
|
|
54919
|
+
* @throws {RequiredError}
|
|
54920
|
+
*/
|
|
54921
|
+
addEventSessionVisibleTier(requestParameters, options) {
|
|
54922
|
+
return (0, exports.EventsSessionsApiFp)(this.configuration).addEventSessionVisibleTier(requestParameters.eventId, requestParameters.sessionId, requestParameters.tierId, options).then((request) => request(this.axios, this.basePath));
|
|
54923
|
+
}
|
|
54453
54924
|
/**
|
|
54454
54925
|
* Clone Event Session endpoint
|
|
54455
54926
|
* @summary Clone Event Session
|
|
@@ -54580,6 +55051,26 @@ class EventsSessionsApi extends base_1.BaseAPI {
|
|
|
54580
55051
|
getEventSessionTracks(requestParameters, options) {
|
|
54581
55052
|
return (0, exports.EventsSessionsApiFp)(this.configuration).getEventSessionTracks(requestParameters.eventId, requestParameters.sessionId, requestParameters.page, requestParameters.pageSize, requestParameters.orderBy, requestParameters.search, options).then((request) => request(this.axios, this.basePath));
|
|
54582
55053
|
}
|
|
55054
|
+
/**
|
|
55055
|
+
* Get Event Session Visible Pass Types endpoint
|
|
55056
|
+
* @summary Get Event Session Visible Pass Types
|
|
55057
|
+
* @param {EventsSessionsApiGetEventSessionVisiblePassTypesRequest} requestParameters Request parameters.
|
|
55058
|
+
* @param {*} [options] Override http request option.
|
|
55059
|
+
* @throws {RequiredError}
|
|
55060
|
+
*/
|
|
55061
|
+
getEventSessionVisiblePassTypes(requestParameters, options) {
|
|
55062
|
+
return (0, exports.EventsSessionsApiFp)(this.configuration).getEventSessionVisiblePassTypes(requestParameters.eventId, requestParameters.sessionId, requestParameters.page, requestParameters.pageSize, requestParameters.orderBy, requestParameters.search, options).then((request) => request(this.axios, this.basePath));
|
|
55063
|
+
}
|
|
55064
|
+
/**
|
|
55065
|
+
* Get Event Session Visible Tiers endpoint
|
|
55066
|
+
* @summary Get Event Session Visible Tiers
|
|
55067
|
+
* @param {EventsSessionsApiGetEventSessionVisibleTiersRequest} requestParameters Request parameters.
|
|
55068
|
+
* @param {*} [options] Override http request option.
|
|
55069
|
+
* @throws {RequiredError}
|
|
55070
|
+
*/
|
|
55071
|
+
getEventSessionVisibleTiers(requestParameters, options) {
|
|
55072
|
+
return (0, exports.EventsSessionsApiFp)(this.configuration).getEventSessionVisibleTiers(requestParameters.eventId, requestParameters.sessionId, requestParameters.page, requestParameters.pageSize, requestParameters.orderBy, requestParameters.search, options).then((request) => request(this.axios, this.basePath));
|
|
55073
|
+
}
|
|
54583
55074
|
/**
|
|
54584
55075
|
* Get Event Sessions endpoint
|
|
54585
55076
|
* @summary Get Event Sessions
|
|
@@ -54660,6 +55151,26 @@ class EventsSessionsApi extends base_1.BaseAPI {
|
|
|
54660
55151
|
removeEventSessionTrack(requestParameters, options) {
|
|
54661
55152
|
return (0, exports.EventsSessionsApiFp)(this.configuration).removeEventSessionTrack(requestParameters.eventId, requestParameters.sessionId, requestParameters.trackId, options).then((request) => request(this.axios, this.basePath));
|
|
54662
55153
|
}
|
|
55154
|
+
/**
|
|
55155
|
+
* Remove Event Session Visible Pass Type endpoint
|
|
55156
|
+
* @summary Remove Event Session Visible Pass Type
|
|
55157
|
+
* @param {EventsSessionsApiRemoveEventSessionVisiblePassTypeRequest} requestParameters Request parameters.
|
|
55158
|
+
* @param {*} [options] Override http request option.
|
|
55159
|
+
* @throws {RequiredError}
|
|
55160
|
+
*/
|
|
55161
|
+
removeEventSessionVisiblePassType(requestParameters, options) {
|
|
55162
|
+
return (0, exports.EventsSessionsApiFp)(this.configuration).removeEventSessionVisiblePassType(requestParameters.eventId, requestParameters.sessionId, requestParameters.passTypeId, options).then((request) => request(this.axios, this.basePath));
|
|
55163
|
+
}
|
|
55164
|
+
/**
|
|
55165
|
+
* Remove Event Session Visible Tier endpoint
|
|
55166
|
+
* @summary Remove Event Session Visible Tier
|
|
55167
|
+
* @param {EventsSessionsApiRemoveEventSessionVisibleTierRequest} requestParameters Request parameters.
|
|
55168
|
+
* @param {*} [options] Override http request option.
|
|
55169
|
+
* @throws {RequiredError}
|
|
55170
|
+
*/
|
|
55171
|
+
removeEventSessionVisibleTier(requestParameters, options) {
|
|
55172
|
+
return (0, exports.EventsSessionsApiFp)(this.configuration).removeEventSessionVisibleTier(requestParameters.eventId, requestParameters.sessionId, requestParameters.tierId, options).then((request) => request(this.axios, this.basePath));
|
|
55173
|
+
}
|
|
54663
55174
|
/**
|
|
54664
55175
|
* Update Event Session endpoint
|
|
54665
55176
|
* @summary Update Event Session
|