@connectedxm/admin-sdk 6.8.6 → 6.9.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 +5 -0
- package/AdminApi.ts +6 -1
- package/README.md +10 -0
- package/api.ts +710 -0
- package/dist/AdminApi.d.ts +4 -1
- package/dist/AdminApi.js +3 -1
- package/dist/api.d.ts +376 -0
- package/dist/api.js +512 -3
- package/dist/esm/AdminApi.d.ts +4 -1
- package/dist/esm/AdminApi.js +4 -2
- package/dist/esm/api.d.ts +376 -0
- package/dist/esm/api.js +505 -0
- package/docs/AccountCreateInputs.md +2 -0
- package/docs/AccountUpdateInputs.md +2 -0
- package/docs/BaseEventBlock.md +4 -0
- package/docs/BaseSeriesRegistration.md +32 -0
- package/docs/EventBlock.md +4 -0
- package/docs/EventBlockCreateInputs.md +4 -0
- package/docs/EventBlockUpdateInputs.md +4 -0
- package/docs/Series.md +8 -0
- package/docs/SeriesCreateInputs.md +10 -0
- package/docs/SeriesRegistration.md +36 -0
- package/docs/SeriesRegistrationCreateInputs.md +20 -0
- package/docs/SeriesRegistrationUpdateInputs.md +20 -0
- package/docs/SeriesRegistrationsApi.md +354 -0
- package/docs/SeriesUpdateInputs.md +10 -0
- package/package.json +1 -1
package/dist/esm/api.js
CHANGED
|
@@ -70058,6 +70058,511 @@ export class SeriesApi extends BaseAPI {
|
|
|
70058
70058
|
return SeriesApiFp(this.configuration).updateSeries(requestParameters.seriesId, requestParameters.series, options).then((request) => request(this.axios, this.basePath));
|
|
70059
70059
|
}
|
|
70060
70060
|
}
|
|
70061
|
+
/**
|
|
70062
|
+
* SeriesRegistrationsApi - axios parameter creator
|
|
70063
|
+
*/
|
|
70064
|
+
export const SeriesRegistrationsApiAxiosParamCreator = function (configuration) {
|
|
70065
|
+
return {
|
|
70066
|
+
/**
|
|
70067
|
+
* Create Series Registration endpoint
|
|
70068
|
+
* @summary Create Series Registration
|
|
70069
|
+
* @param {string} seriesId The series identifier
|
|
70070
|
+
* @param {SeriesRegistrationCreateInputs} seriesRegistrationCreateInputs
|
|
70071
|
+
* @param {*} [options] Override http request option.
|
|
70072
|
+
* @throws {RequiredError}
|
|
70073
|
+
*/
|
|
70074
|
+
createSeriesRegistration: (seriesId_1, seriesRegistrationCreateInputs_1, ...args_1) => __awaiter(this, [seriesId_1, seriesRegistrationCreateInputs_1, ...args_1], void 0, function* (seriesId, seriesRegistrationCreateInputs, options = {}) {
|
|
70075
|
+
// verify required parameter 'seriesId' is not null or undefined
|
|
70076
|
+
assertParamExists('createSeriesRegistration', 'seriesId', seriesId);
|
|
70077
|
+
// verify required parameter 'seriesRegistrationCreateInputs' is not null or undefined
|
|
70078
|
+
assertParamExists('createSeriesRegistration', 'seriesRegistrationCreateInputs', seriesRegistrationCreateInputs);
|
|
70079
|
+
const localVarPath = `/series/{seriesId}/registrations`
|
|
70080
|
+
.replace(`{${"seriesId"}}`, encodeURIComponent(String(seriesId)));
|
|
70081
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
70082
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
70083
|
+
let baseOptions;
|
|
70084
|
+
if (configuration) {
|
|
70085
|
+
baseOptions = configuration.baseOptions;
|
|
70086
|
+
}
|
|
70087
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'POST' }, baseOptions), options);
|
|
70088
|
+
const localVarHeaderParameter = {};
|
|
70089
|
+
const localVarQueryParameter = {};
|
|
70090
|
+
// authentication ApiKeyAuth required
|
|
70091
|
+
yield setApiKeyToObject(localVarHeaderParameter, "api-key", configuration);
|
|
70092
|
+
// authentication OrganizationId required
|
|
70093
|
+
yield setApiKeyToObject(localVarHeaderParameter, "organization", configuration);
|
|
70094
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
70095
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
70096
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
70097
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
70098
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
70099
|
+
localVarRequestOptions.data = serializeDataIfNeeded(seriesRegistrationCreateInputs, localVarRequestOptions, configuration);
|
|
70100
|
+
return {
|
|
70101
|
+
url: toPathString(localVarUrlObj),
|
|
70102
|
+
options: localVarRequestOptions,
|
|
70103
|
+
};
|
|
70104
|
+
}),
|
|
70105
|
+
/**
|
|
70106
|
+
* Delete Series Registration endpoint
|
|
70107
|
+
* @summary Delete Series Registration
|
|
70108
|
+
* @param {string} seriesId The series identifier
|
|
70109
|
+
* @param {string} registrationId The registration identifier
|
|
70110
|
+
* @param {*} [options] Override http request option.
|
|
70111
|
+
* @throws {RequiredError}
|
|
70112
|
+
*/
|
|
70113
|
+
deleteSeriesRegistration: (seriesId_1, registrationId_1, ...args_1) => __awaiter(this, [seriesId_1, registrationId_1, ...args_1], void 0, function* (seriesId, registrationId, options = {}) {
|
|
70114
|
+
// verify required parameter 'seriesId' is not null or undefined
|
|
70115
|
+
assertParamExists('deleteSeriesRegistration', 'seriesId', seriesId);
|
|
70116
|
+
// verify required parameter 'registrationId' is not null or undefined
|
|
70117
|
+
assertParamExists('deleteSeriesRegistration', 'registrationId', registrationId);
|
|
70118
|
+
const localVarPath = `/series/{seriesId}/registrations/{registrationId}`
|
|
70119
|
+
.replace(`{${"seriesId"}}`, encodeURIComponent(String(seriesId)))
|
|
70120
|
+
.replace(`{${"registrationId"}}`, encodeURIComponent(String(registrationId)));
|
|
70121
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
70122
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
70123
|
+
let baseOptions;
|
|
70124
|
+
if (configuration) {
|
|
70125
|
+
baseOptions = configuration.baseOptions;
|
|
70126
|
+
}
|
|
70127
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'DELETE' }, baseOptions), options);
|
|
70128
|
+
const localVarHeaderParameter = {};
|
|
70129
|
+
const localVarQueryParameter = {};
|
|
70130
|
+
// authentication ApiKeyAuth required
|
|
70131
|
+
yield setApiKeyToObject(localVarHeaderParameter, "api-key", configuration);
|
|
70132
|
+
// authentication OrganizationId required
|
|
70133
|
+
yield setApiKeyToObject(localVarHeaderParameter, "organization", configuration);
|
|
70134
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
70135
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
70136
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
70137
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
70138
|
+
return {
|
|
70139
|
+
url: toPathString(localVarUrlObj),
|
|
70140
|
+
options: localVarRequestOptions,
|
|
70141
|
+
};
|
|
70142
|
+
}),
|
|
70143
|
+
/**
|
|
70144
|
+
* Get Series Registration endpoint
|
|
70145
|
+
* @summary Get Series Registration
|
|
70146
|
+
* @param {string} seriesId The series identifier
|
|
70147
|
+
* @param {string} registrationId The registration identifier
|
|
70148
|
+
* @param {*} [options] Override http request option.
|
|
70149
|
+
* @throws {RequiredError}
|
|
70150
|
+
*/
|
|
70151
|
+
getSeriesRegistration: (seriesId_1, registrationId_1, ...args_1) => __awaiter(this, [seriesId_1, registrationId_1, ...args_1], void 0, function* (seriesId, registrationId, options = {}) {
|
|
70152
|
+
// verify required parameter 'seriesId' is not null or undefined
|
|
70153
|
+
assertParamExists('getSeriesRegistration', 'seriesId', seriesId);
|
|
70154
|
+
// verify required parameter 'registrationId' is not null or undefined
|
|
70155
|
+
assertParamExists('getSeriesRegistration', 'registrationId', registrationId);
|
|
70156
|
+
const localVarPath = `/series/{seriesId}/registrations/{registrationId}`
|
|
70157
|
+
.replace(`{${"seriesId"}}`, encodeURIComponent(String(seriesId)))
|
|
70158
|
+
.replace(`{${"registrationId"}}`, encodeURIComponent(String(registrationId)));
|
|
70159
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
70160
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
70161
|
+
let baseOptions;
|
|
70162
|
+
if (configuration) {
|
|
70163
|
+
baseOptions = configuration.baseOptions;
|
|
70164
|
+
}
|
|
70165
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
70166
|
+
const localVarHeaderParameter = {};
|
|
70167
|
+
const localVarQueryParameter = {};
|
|
70168
|
+
// authentication ApiKeyAuth required
|
|
70169
|
+
yield setApiKeyToObject(localVarHeaderParameter, "api-key", configuration);
|
|
70170
|
+
// authentication OrganizationId required
|
|
70171
|
+
yield setApiKeyToObject(localVarHeaderParameter, "organization", configuration);
|
|
70172
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
70173
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
70174
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
70175
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
70176
|
+
return {
|
|
70177
|
+
url: toPathString(localVarUrlObj),
|
|
70178
|
+
options: localVarRequestOptions,
|
|
70179
|
+
};
|
|
70180
|
+
}),
|
|
70181
|
+
/**
|
|
70182
|
+
* Get Series Registration Passes endpoint
|
|
70183
|
+
* @summary Get Series Registration Passes
|
|
70184
|
+
* @param {string} seriesId The series identifier
|
|
70185
|
+
* @param {string} registrationId The registration identifier
|
|
70186
|
+
* @param {*} [options] Override http request option.
|
|
70187
|
+
* @throws {RequiredError}
|
|
70188
|
+
*/
|
|
70189
|
+
getSeriesRegistrationPasses: (seriesId_1, registrationId_1, ...args_1) => __awaiter(this, [seriesId_1, registrationId_1, ...args_1], void 0, function* (seriesId, registrationId, options = {}) {
|
|
70190
|
+
// verify required parameter 'seriesId' is not null or undefined
|
|
70191
|
+
assertParamExists('getSeriesRegistrationPasses', 'seriesId', seriesId);
|
|
70192
|
+
// verify required parameter 'registrationId' is not null or undefined
|
|
70193
|
+
assertParamExists('getSeriesRegistrationPasses', 'registrationId', registrationId);
|
|
70194
|
+
const localVarPath = `/series/{seriesId}/registrations/{registrationId}/passes`
|
|
70195
|
+
.replace(`{${"seriesId"}}`, encodeURIComponent(String(seriesId)))
|
|
70196
|
+
.replace(`{${"registrationId"}}`, encodeURIComponent(String(registrationId)));
|
|
70197
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
70198
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
70199
|
+
let baseOptions;
|
|
70200
|
+
if (configuration) {
|
|
70201
|
+
baseOptions = configuration.baseOptions;
|
|
70202
|
+
}
|
|
70203
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
70204
|
+
const localVarHeaderParameter = {};
|
|
70205
|
+
const localVarQueryParameter = {};
|
|
70206
|
+
// authentication ApiKeyAuth required
|
|
70207
|
+
yield setApiKeyToObject(localVarHeaderParameter, "api-key", configuration);
|
|
70208
|
+
// authentication OrganizationId required
|
|
70209
|
+
yield setApiKeyToObject(localVarHeaderParameter, "organization", configuration);
|
|
70210
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
70211
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
70212
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
70213
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
70214
|
+
return {
|
|
70215
|
+
url: toPathString(localVarUrlObj),
|
|
70216
|
+
options: localVarRequestOptions,
|
|
70217
|
+
};
|
|
70218
|
+
}),
|
|
70219
|
+
/**
|
|
70220
|
+
* Get Series Registrations endpoint
|
|
70221
|
+
* @summary Get Series Registrations
|
|
70222
|
+
* @param {string} seriesId The series identifier
|
|
70223
|
+
* @param {PurchaseStatus} [status] Filter by status
|
|
70224
|
+
* @param {number} [page] Page number
|
|
70225
|
+
* @param {number} [pageSize] Number of items per page
|
|
70226
|
+
* @param {string} [orderBy] Field to order by
|
|
70227
|
+
* @param {string} [search] Search query
|
|
70228
|
+
* @param {*} [options] Override http request option.
|
|
70229
|
+
* @throws {RequiredError}
|
|
70230
|
+
*/
|
|
70231
|
+
getSeriesRegistrations: (seriesId_1, status_1, page_1, pageSize_1, orderBy_1, search_1, ...args_1) => __awaiter(this, [seriesId_1, status_1, page_1, pageSize_1, orderBy_1, search_1, ...args_1], void 0, function* (seriesId, status, page, pageSize, orderBy, search, options = {}) {
|
|
70232
|
+
// verify required parameter 'seriesId' is not null or undefined
|
|
70233
|
+
assertParamExists('getSeriesRegistrations', 'seriesId', seriesId);
|
|
70234
|
+
const localVarPath = `/series/{seriesId}/registrations`
|
|
70235
|
+
.replace(`{${"seriesId"}}`, encodeURIComponent(String(seriesId)));
|
|
70236
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
70237
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
70238
|
+
let baseOptions;
|
|
70239
|
+
if (configuration) {
|
|
70240
|
+
baseOptions = configuration.baseOptions;
|
|
70241
|
+
}
|
|
70242
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'GET' }, baseOptions), options);
|
|
70243
|
+
const localVarHeaderParameter = {};
|
|
70244
|
+
const localVarQueryParameter = {};
|
|
70245
|
+
// authentication ApiKeyAuth required
|
|
70246
|
+
yield setApiKeyToObject(localVarHeaderParameter, "api-key", configuration);
|
|
70247
|
+
// authentication OrganizationId required
|
|
70248
|
+
yield setApiKeyToObject(localVarHeaderParameter, "organization", configuration);
|
|
70249
|
+
if (status !== undefined) {
|
|
70250
|
+
localVarQueryParameter['status'] = status;
|
|
70251
|
+
}
|
|
70252
|
+
if (page !== undefined) {
|
|
70253
|
+
localVarQueryParameter['page'] = page;
|
|
70254
|
+
}
|
|
70255
|
+
if (pageSize !== undefined) {
|
|
70256
|
+
localVarQueryParameter['pageSize'] = pageSize;
|
|
70257
|
+
}
|
|
70258
|
+
if (orderBy !== undefined) {
|
|
70259
|
+
localVarQueryParameter['orderBy'] = orderBy;
|
|
70260
|
+
}
|
|
70261
|
+
if (search !== undefined) {
|
|
70262
|
+
localVarQueryParameter['search'] = search;
|
|
70263
|
+
}
|
|
70264
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
70265
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
70266
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
70267
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
70268
|
+
return {
|
|
70269
|
+
url: toPathString(localVarUrlObj),
|
|
70270
|
+
options: localVarRequestOptions,
|
|
70271
|
+
};
|
|
70272
|
+
}),
|
|
70273
|
+
/**
|
|
70274
|
+
* Update Series Registration endpoint
|
|
70275
|
+
* @summary Update Series Registration
|
|
70276
|
+
* @param {string} seriesId The series identifier
|
|
70277
|
+
* @param {string} registrationId The registration identifier
|
|
70278
|
+
* @param {SeriesRegistrationUpdateInputs} seriesRegistrationUpdateInputs
|
|
70279
|
+
* @param {*} [options] Override http request option.
|
|
70280
|
+
* @throws {RequiredError}
|
|
70281
|
+
*/
|
|
70282
|
+
updateSeriesRegistration: (seriesId_1, registrationId_1, seriesRegistrationUpdateInputs_1, ...args_1) => __awaiter(this, [seriesId_1, registrationId_1, seriesRegistrationUpdateInputs_1, ...args_1], void 0, function* (seriesId, registrationId, seriesRegistrationUpdateInputs, options = {}) {
|
|
70283
|
+
// verify required parameter 'seriesId' is not null or undefined
|
|
70284
|
+
assertParamExists('updateSeriesRegistration', 'seriesId', seriesId);
|
|
70285
|
+
// verify required parameter 'registrationId' is not null or undefined
|
|
70286
|
+
assertParamExists('updateSeriesRegistration', 'registrationId', registrationId);
|
|
70287
|
+
// verify required parameter 'seriesRegistrationUpdateInputs' is not null or undefined
|
|
70288
|
+
assertParamExists('updateSeriesRegistration', 'seriesRegistrationUpdateInputs', seriesRegistrationUpdateInputs);
|
|
70289
|
+
const localVarPath = `/series/{seriesId}/registrations/{registrationId}`
|
|
70290
|
+
.replace(`{${"seriesId"}}`, encodeURIComponent(String(seriesId)))
|
|
70291
|
+
.replace(`{${"registrationId"}}`, encodeURIComponent(String(registrationId)));
|
|
70292
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
70293
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
70294
|
+
let baseOptions;
|
|
70295
|
+
if (configuration) {
|
|
70296
|
+
baseOptions = configuration.baseOptions;
|
|
70297
|
+
}
|
|
70298
|
+
const localVarRequestOptions = Object.assign(Object.assign({ method: 'PUT' }, baseOptions), options);
|
|
70299
|
+
const localVarHeaderParameter = {};
|
|
70300
|
+
const localVarQueryParameter = {};
|
|
70301
|
+
// authentication ApiKeyAuth required
|
|
70302
|
+
yield setApiKeyToObject(localVarHeaderParameter, "api-key", configuration);
|
|
70303
|
+
// authentication OrganizationId required
|
|
70304
|
+
yield setApiKeyToObject(localVarHeaderParameter, "organization", configuration);
|
|
70305
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
70306
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
70307
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
70308
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
70309
|
+
localVarRequestOptions.headers = Object.assign(Object.assign(Object.assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
70310
|
+
localVarRequestOptions.data = serializeDataIfNeeded(seriesRegistrationUpdateInputs, localVarRequestOptions, configuration);
|
|
70311
|
+
return {
|
|
70312
|
+
url: toPathString(localVarUrlObj),
|
|
70313
|
+
options: localVarRequestOptions,
|
|
70314
|
+
};
|
|
70315
|
+
}),
|
|
70316
|
+
};
|
|
70317
|
+
};
|
|
70318
|
+
/**
|
|
70319
|
+
* SeriesRegistrationsApi - functional programming interface
|
|
70320
|
+
*/
|
|
70321
|
+
export const SeriesRegistrationsApiFp = function (configuration) {
|
|
70322
|
+
const localVarAxiosParamCreator = SeriesRegistrationsApiAxiosParamCreator(configuration);
|
|
70323
|
+
return {
|
|
70324
|
+
/**
|
|
70325
|
+
* Create Series Registration endpoint
|
|
70326
|
+
* @summary Create Series Registration
|
|
70327
|
+
* @param {string} seriesId The series identifier
|
|
70328
|
+
* @param {SeriesRegistrationCreateInputs} seriesRegistrationCreateInputs
|
|
70329
|
+
* @param {*} [options] Override http request option.
|
|
70330
|
+
* @throws {RequiredError}
|
|
70331
|
+
*/
|
|
70332
|
+
createSeriesRegistration(seriesId, seriesRegistrationCreateInputs, options) {
|
|
70333
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
70334
|
+
var _a, _b, _c;
|
|
70335
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.createSeriesRegistration(seriesId, seriesRegistrationCreateInputs, options);
|
|
70336
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
70337
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SeriesRegistrationsApi.createSeriesRegistration']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
70338
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
70339
|
+
});
|
|
70340
|
+
},
|
|
70341
|
+
/**
|
|
70342
|
+
* Delete Series Registration endpoint
|
|
70343
|
+
* @summary Delete Series Registration
|
|
70344
|
+
* @param {string} seriesId The series identifier
|
|
70345
|
+
* @param {string} registrationId The registration identifier
|
|
70346
|
+
* @param {*} [options] Override http request option.
|
|
70347
|
+
* @throws {RequiredError}
|
|
70348
|
+
*/
|
|
70349
|
+
deleteSeriesRegistration(seriesId, registrationId, options) {
|
|
70350
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
70351
|
+
var _a, _b, _c;
|
|
70352
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.deleteSeriesRegistration(seriesId, registrationId, options);
|
|
70353
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
70354
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SeriesRegistrationsApi.deleteSeriesRegistration']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
70355
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
70356
|
+
});
|
|
70357
|
+
},
|
|
70358
|
+
/**
|
|
70359
|
+
* Get Series Registration endpoint
|
|
70360
|
+
* @summary Get Series Registration
|
|
70361
|
+
* @param {string} seriesId The series identifier
|
|
70362
|
+
* @param {string} registrationId The registration identifier
|
|
70363
|
+
* @param {*} [options] Override http request option.
|
|
70364
|
+
* @throws {RequiredError}
|
|
70365
|
+
*/
|
|
70366
|
+
getSeriesRegistration(seriesId, registrationId, options) {
|
|
70367
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
70368
|
+
var _a, _b, _c;
|
|
70369
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getSeriesRegistration(seriesId, registrationId, options);
|
|
70370
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
70371
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SeriesRegistrationsApi.getSeriesRegistration']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
70372
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
70373
|
+
});
|
|
70374
|
+
},
|
|
70375
|
+
/**
|
|
70376
|
+
* Get Series Registration Passes endpoint
|
|
70377
|
+
* @summary Get Series Registration Passes
|
|
70378
|
+
* @param {string} seriesId The series identifier
|
|
70379
|
+
* @param {string} registrationId The registration identifier
|
|
70380
|
+
* @param {*} [options] Override http request option.
|
|
70381
|
+
* @throws {RequiredError}
|
|
70382
|
+
*/
|
|
70383
|
+
getSeriesRegistrationPasses(seriesId, registrationId, options) {
|
|
70384
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
70385
|
+
var _a, _b, _c;
|
|
70386
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getSeriesRegistrationPasses(seriesId, registrationId, options);
|
|
70387
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
70388
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SeriesRegistrationsApi.getSeriesRegistrationPasses']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
70389
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
70390
|
+
});
|
|
70391
|
+
},
|
|
70392
|
+
/**
|
|
70393
|
+
* Get Series Registrations endpoint
|
|
70394
|
+
* @summary Get Series Registrations
|
|
70395
|
+
* @param {string} seriesId The series identifier
|
|
70396
|
+
* @param {PurchaseStatus} [status] Filter by status
|
|
70397
|
+
* @param {number} [page] Page number
|
|
70398
|
+
* @param {number} [pageSize] Number of items per page
|
|
70399
|
+
* @param {string} [orderBy] Field to order by
|
|
70400
|
+
* @param {string} [search] Search query
|
|
70401
|
+
* @param {*} [options] Override http request option.
|
|
70402
|
+
* @throws {RequiredError}
|
|
70403
|
+
*/
|
|
70404
|
+
getSeriesRegistrations(seriesId, status, page, pageSize, orderBy, search, options) {
|
|
70405
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
70406
|
+
var _a, _b, _c;
|
|
70407
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.getSeriesRegistrations(seriesId, status, page, pageSize, orderBy, search, options);
|
|
70408
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
70409
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SeriesRegistrationsApi.getSeriesRegistrations']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
70410
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
70411
|
+
});
|
|
70412
|
+
},
|
|
70413
|
+
/**
|
|
70414
|
+
* Update Series Registration endpoint
|
|
70415
|
+
* @summary Update Series Registration
|
|
70416
|
+
* @param {string} seriesId The series identifier
|
|
70417
|
+
* @param {string} registrationId The registration identifier
|
|
70418
|
+
* @param {SeriesRegistrationUpdateInputs} seriesRegistrationUpdateInputs
|
|
70419
|
+
* @param {*} [options] Override http request option.
|
|
70420
|
+
* @throws {RequiredError}
|
|
70421
|
+
*/
|
|
70422
|
+
updateSeriesRegistration(seriesId, registrationId, seriesRegistrationUpdateInputs, options) {
|
|
70423
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
70424
|
+
var _a, _b, _c;
|
|
70425
|
+
const localVarAxiosArgs = yield localVarAxiosParamCreator.updateSeriesRegistration(seriesId, registrationId, seriesRegistrationUpdateInputs, options);
|
|
70426
|
+
const localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
70427
|
+
const localVarOperationServerBasePath = (_c = (_b = operationServerMap['SeriesRegistrationsApi.updateSeriesRegistration']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
70428
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
70429
|
+
});
|
|
70430
|
+
},
|
|
70431
|
+
};
|
|
70432
|
+
};
|
|
70433
|
+
/**
|
|
70434
|
+
* SeriesRegistrationsApi - factory interface
|
|
70435
|
+
*/
|
|
70436
|
+
export const SeriesRegistrationsApiFactory = function (configuration, basePath, axios) {
|
|
70437
|
+
const localVarFp = SeriesRegistrationsApiFp(configuration);
|
|
70438
|
+
return {
|
|
70439
|
+
/**
|
|
70440
|
+
* Create Series Registration endpoint
|
|
70441
|
+
* @summary Create Series Registration
|
|
70442
|
+
* @param {SeriesRegistrationsApiCreateSeriesRegistrationRequest} requestParameters Request parameters.
|
|
70443
|
+
* @param {*} [options] Override http request option.
|
|
70444
|
+
* @throws {RequiredError}
|
|
70445
|
+
*/
|
|
70446
|
+
createSeriesRegistration(requestParameters, options) {
|
|
70447
|
+
return localVarFp.createSeriesRegistration(requestParameters.seriesId, requestParameters.seriesRegistrationCreateInputs, options).then((request) => request(axios, basePath));
|
|
70448
|
+
},
|
|
70449
|
+
/**
|
|
70450
|
+
* Delete Series Registration endpoint
|
|
70451
|
+
* @summary Delete Series Registration
|
|
70452
|
+
* @param {SeriesRegistrationsApiDeleteSeriesRegistrationRequest} requestParameters Request parameters.
|
|
70453
|
+
* @param {*} [options] Override http request option.
|
|
70454
|
+
* @throws {RequiredError}
|
|
70455
|
+
*/
|
|
70456
|
+
deleteSeriesRegistration(requestParameters, options) {
|
|
70457
|
+
return localVarFp.deleteSeriesRegistration(requestParameters.seriesId, requestParameters.registrationId, options).then((request) => request(axios, basePath));
|
|
70458
|
+
},
|
|
70459
|
+
/**
|
|
70460
|
+
* Get Series Registration endpoint
|
|
70461
|
+
* @summary Get Series Registration
|
|
70462
|
+
* @param {SeriesRegistrationsApiGetSeriesRegistrationRequest} requestParameters Request parameters.
|
|
70463
|
+
* @param {*} [options] Override http request option.
|
|
70464
|
+
* @throws {RequiredError}
|
|
70465
|
+
*/
|
|
70466
|
+
getSeriesRegistration(requestParameters, options) {
|
|
70467
|
+
return localVarFp.getSeriesRegistration(requestParameters.seriesId, requestParameters.registrationId, options).then((request) => request(axios, basePath));
|
|
70468
|
+
},
|
|
70469
|
+
/**
|
|
70470
|
+
* Get Series Registration Passes endpoint
|
|
70471
|
+
* @summary Get Series Registration Passes
|
|
70472
|
+
* @param {SeriesRegistrationsApiGetSeriesRegistrationPassesRequest} requestParameters Request parameters.
|
|
70473
|
+
* @param {*} [options] Override http request option.
|
|
70474
|
+
* @throws {RequiredError}
|
|
70475
|
+
*/
|
|
70476
|
+
getSeriesRegistrationPasses(requestParameters, options) {
|
|
70477
|
+
return localVarFp.getSeriesRegistrationPasses(requestParameters.seriesId, requestParameters.registrationId, options).then((request) => request(axios, basePath));
|
|
70478
|
+
},
|
|
70479
|
+
/**
|
|
70480
|
+
* Get Series Registrations endpoint
|
|
70481
|
+
* @summary Get Series Registrations
|
|
70482
|
+
* @param {SeriesRegistrationsApiGetSeriesRegistrationsRequest} requestParameters Request parameters.
|
|
70483
|
+
* @param {*} [options] Override http request option.
|
|
70484
|
+
* @throws {RequiredError}
|
|
70485
|
+
*/
|
|
70486
|
+
getSeriesRegistrations(requestParameters, options) {
|
|
70487
|
+
return localVarFp.getSeriesRegistrations(requestParameters.seriesId, requestParameters.status, requestParameters.page, requestParameters.pageSize, requestParameters.orderBy, requestParameters.search, options).then((request) => request(axios, basePath));
|
|
70488
|
+
},
|
|
70489
|
+
/**
|
|
70490
|
+
* Update Series Registration endpoint
|
|
70491
|
+
* @summary Update Series Registration
|
|
70492
|
+
* @param {SeriesRegistrationsApiUpdateSeriesRegistrationRequest} requestParameters Request parameters.
|
|
70493
|
+
* @param {*} [options] Override http request option.
|
|
70494
|
+
* @throws {RequiredError}
|
|
70495
|
+
*/
|
|
70496
|
+
updateSeriesRegistration(requestParameters, options) {
|
|
70497
|
+
return localVarFp.updateSeriesRegistration(requestParameters.seriesId, requestParameters.registrationId, requestParameters.seriesRegistrationUpdateInputs, options).then((request) => request(axios, basePath));
|
|
70498
|
+
},
|
|
70499
|
+
};
|
|
70500
|
+
};
|
|
70501
|
+
/**
|
|
70502
|
+
* SeriesRegistrationsApi - object-oriented interface
|
|
70503
|
+
*/
|
|
70504
|
+
export class SeriesRegistrationsApi extends BaseAPI {
|
|
70505
|
+
/**
|
|
70506
|
+
* Create Series Registration endpoint
|
|
70507
|
+
* @summary Create Series Registration
|
|
70508
|
+
* @param {SeriesRegistrationsApiCreateSeriesRegistrationRequest} requestParameters Request parameters.
|
|
70509
|
+
* @param {*} [options] Override http request option.
|
|
70510
|
+
* @throws {RequiredError}
|
|
70511
|
+
*/
|
|
70512
|
+
createSeriesRegistration(requestParameters, options) {
|
|
70513
|
+
return SeriesRegistrationsApiFp(this.configuration).createSeriesRegistration(requestParameters.seriesId, requestParameters.seriesRegistrationCreateInputs, options).then((request) => request(this.axios, this.basePath));
|
|
70514
|
+
}
|
|
70515
|
+
/**
|
|
70516
|
+
* Delete Series Registration endpoint
|
|
70517
|
+
* @summary Delete Series Registration
|
|
70518
|
+
* @param {SeriesRegistrationsApiDeleteSeriesRegistrationRequest} requestParameters Request parameters.
|
|
70519
|
+
* @param {*} [options] Override http request option.
|
|
70520
|
+
* @throws {RequiredError}
|
|
70521
|
+
*/
|
|
70522
|
+
deleteSeriesRegistration(requestParameters, options) {
|
|
70523
|
+
return SeriesRegistrationsApiFp(this.configuration).deleteSeriesRegistration(requestParameters.seriesId, requestParameters.registrationId, options).then((request) => request(this.axios, this.basePath));
|
|
70524
|
+
}
|
|
70525
|
+
/**
|
|
70526
|
+
* Get Series Registration endpoint
|
|
70527
|
+
* @summary Get Series Registration
|
|
70528
|
+
* @param {SeriesRegistrationsApiGetSeriesRegistrationRequest} requestParameters Request parameters.
|
|
70529
|
+
* @param {*} [options] Override http request option.
|
|
70530
|
+
* @throws {RequiredError}
|
|
70531
|
+
*/
|
|
70532
|
+
getSeriesRegistration(requestParameters, options) {
|
|
70533
|
+
return SeriesRegistrationsApiFp(this.configuration).getSeriesRegistration(requestParameters.seriesId, requestParameters.registrationId, options).then((request) => request(this.axios, this.basePath));
|
|
70534
|
+
}
|
|
70535
|
+
/**
|
|
70536
|
+
* Get Series Registration Passes endpoint
|
|
70537
|
+
* @summary Get Series Registration Passes
|
|
70538
|
+
* @param {SeriesRegistrationsApiGetSeriesRegistrationPassesRequest} requestParameters Request parameters.
|
|
70539
|
+
* @param {*} [options] Override http request option.
|
|
70540
|
+
* @throws {RequiredError}
|
|
70541
|
+
*/
|
|
70542
|
+
getSeriesRegistrationPasses(requestParameters, options) {
|
|
70543
|
+
return SeriesRegistrationsApiFp(this.configuration).getSeriesRegistrationPasses(requestParameters.seriesId, requestParameters.registrationId, options).then((request) => request(this.axios, this.basePath));
|
|
70544
|
+
}
|
|
70545
|
+
/**
|
|
70546
|
+
* Get Series Registrations endpoint
|
|
70547
|
+
* @summary Get Series Registrations
|
|
70548
|
+
* @param {SeriesRegistrationsApiGetSeriesRegistrationsRequest} requestParameters Request parameters.
|
|
70549
|
+
* @param {*} [options] Override http request option.
|
|
70550
|
+
* @throws {RequiredError}
|
|
70551
|
+
*/
|
|
70552
|
+
getSeriesRegistrations(requestParameters, options) {
|
|
70553
|
+
return SeriesRegistrationsApiFp(this.configuration).getSeriesRegistrations(requestParameters.seriesId, requestParameters.status, requestParameters.page, requestParameters.pageSize, requestParameters.orderBy, requestParameters.search, options).then((request) => request(this.axios, this.basePath));
|
|
70554
|
+
}
|
|
70555
|
+
/**
|
|
70556
|
+
* Update Series Registration endpoint
|
|
70557
|
+
* @summary Update Series Registration
|
|
70558
|
+
* @param {SeriesRegistrationsApiUpdateSeriesRegistrationRequest} requestParameters Request parameters.
|
|
70559
|
+
* @param {*} [options] Override http request option.
|
|
70560
|
+
* @throws {RequiredError}
|
|
70561
|
+
*/
|
|
70562
|
+
updateSeriesRegistration(requestParameters, options) {
|
|
70563
|
+
return SeriesRegistrationsApiFp(this.configuration).updateSeriesRegistration(requestParameters.seriesId, requestParameters.registrationId, requestParameters.seriesRegistrationUpdateInputs, options).then((request) => request(this.axios, this.basePath));
|
|
70564
|
+
}
|
|
70565
|
+
}
|
|
70061
70566
|
/**
|
|
70062
70567
|
* SponsorsApi - axios parameter creator
|
|
70063
70568
|
*/
|
|
@@ -30,6 +30,7 @@ Name | Type | Description | Notes
|
|
|
30
30
|
**locale** | **string** | | [optional] [default to undefined]
|
|
31
31
|
**taxEntityUseCode** | **string** | | [optional] [default to undefined]
|
|
32
32
|
**attributes** | **{ [key: string]: any; }** | | [optional] [default to undefined]
|
|
33
|
+
**confirmationEmailCount** | **number** | | [optional] [default to undefined]
|
|
33
34
|
|
|
34
35
|
## Example
|
|
35
36
|
|
|
@@ -62,6 +63,7 @@ const instance: AccountCreateInputs = {
|
|
|
62
63
|
locale,
|
|
63
64
|
taxEntityUseCode,
|
|
64
65
|
attributes,
|
|
66
|
+
confirmationEmailCount,
|
|
65
67
|
};
|
|
66
68
|
```
|
|
67
69
|
|
|
@@ -31,6 +31,7 @@ Name | Type | Description | Notes
|
|
|
31
31
|
**locale** | **string** | | [optional] [default to undefined]
|
|
32
32
|
**taxEntityUseCode** | **string** | | [optional] [default to undefined]
|
|
33
33
|
**attributes** | **{ [key: string]: any; }** | | [optional] [default to undefined]
|
|
34
|
+
**confirmationEmailCount** | **number** | | [optional] [default to undefined]
|
|
34
35
|
|
|
35
36
|
## Example
|
|
36
37
|
|
|
@@ -64,6 +65,7 @@ const instance: AccountUpdateInputs = {
|
|
|
64
65
|
locale,
|
|
65
66
|
taxEntityUseCode,
|
|
66
67
|
attributes,
|
|
68
|
+
confirmationEmailCount,
|
|
67
69
|
};
|
|
68
70
|
```
|
|
69
71
|
|
package/docs/BaseEventBlock.md
CHANGED
|
@@ -7,7 +7,9 @@ Name | Type | Description | Notes
|
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**id** | **string** | | [default to undefined]
|
|
9
9
|
**name** | **string** | | [default to undefined]
|
|
10
|
+
**description** | **string** | | [default to undefined]
|
|
10
11
|
**limit** | **number** | | [default to undefined]
|
|
12
|
+
**grouped** | **boolean** | | [default to undefined]
|
|
11
13
|
|
|
12
14
|
## Example
|
|
13
15
|
|
|
@@ -17,7 +19,9 @@ import { BaseEventBlock } from '@connectedxm/admin-sdk';
|
|
|
17
19
|
const instance: BaseEventBlock = {
|
|
18
20
|
id,
|
|
19
21
|
name,
|
|
22
|
+
description,
|
|
20
23
|
limit,
|
|
24
|
+
grouped,
|
|
21
25
|
};
|
|
22
26
|
```
|
|
23
27
|
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
# BaseSeriesRegistration
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
## Properties
|
|
5
|
+
|
|
6
|
+
Name | Type | Description | Notes
|
|
7
|
+
------------ | ------------- | ------------- | -------------
|
|
8
|
+
**id** | **string** | | [default to undefined]
|
|
9
|
+
**organizationId** | **string** | | [default to undefined]
|
|
10
|
+
**seriesId** | **string** | | [default to undefined]
|
|
11
|
+
**series** | [**BaseSeries**](BaseSeries.md) | | [default to undefined]
|
|
12
|
+
**accountId** | **string** | | [default to undefined]
|
|
13
|
+
**account** | [**BaseAccount**](BaseAccount.md) | | [default to undefined]
|
|
14
|
+
**status** | [**PurchaseStatus**](PurchaseStatus.md) | | [default to undefined]
|
|
15
|
+
|
|
16
|
+
## Example
|
|
17
|
+
|
|
18
|
+
```typescript
|
|
19
|
+
import { BaseSeriesRegistration } from '@connectedxm/admin-sdk';
|
|
20
|
+
|
|
21
|
+
const instance: BaseSeriesRegistration = {
|
|
22
|
+
id,
|
|
23
|
+
organizationId,
|
|
24
|
+
seriesId,
|
|
25
|
+
series,
|
|
26
|
+
accountId,
|
|
27
|
+
account,
|
|
28
|
+
status,
|
|
29
|
+
};
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
package/docs/EventBlock.md
CHANGED
|
@@ -7,7 +7,9 @@ Name | Type | Description | Notes
|
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**id** | **string** | | [default to undefined]
|
|
9
9
|
**name** | **string** | | [default to undefined]
|
|
10
|
+
**description** | **string** | | [default to undefined]
|
|
10
11
|
**limit** | **number** | | [default to undefined]
|
|
12
|
+
**grouped** | **boolean** | | [default to undefined]
|
|
11
13
|
**event** | [**BaseEvent**](BaseEvent.md) | | [default to undefined]
|
|
12
14
|
**sessions** | [**Array<BaseEventSession>**](BaseEventSession.md) | | [default to undefined]
|
|
13
15
|
**createdAt** | **string** | | [default to undefined]
|
|
@@ -21,7 +23,9 @@ import { EventBlock } from '@connectedxm/admin-sdk';
|
|
|
21
23
|
const instance: EventBlock = {
|
|
22
24
|
id,
|
|
23
25
|
name,
|
|
26
|
+
description,
|
|
24
27
|
limit,
|
|
28
|
+
grouped,
|
|
25
29
|
event,
|
|
26
30
|
sessions,
|
|
27
31
|
createdAt,
|
|
@@ -6,7 +6,9 @@
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**name** | **string** | | [default to undefined]
|
|
9
|
+
**description** | **string** | | [optional] [default to undefined]
|
|
9
10
|
**limit** | **number** | | [optional] [default to undefined]
|
|
11
|
+
**grouped** | **boolean** | | [optional] [default to undefined]
|
|
10
12
|
|
|
11
13
|
## Example
|
|
12
14
|
|
|
@@ -15,7 +17,9 @@ import { EventBlockCreateInputs } from '@connectedxm/admin-sdk';
|
|
|
15
17
|
|
|
16
18
|
const instance: EventBlockCreateInputs = {
|
|
17
19
|
name,
|
|
20
|
+
description,
|
|
18
21
|
limit,
|
|
22
|
+
grouped,
|
|
19
23
|
};
|
|
20
24
|
```
|
|
21
25
|
|
|
@@ -6,7 +6,9 @@
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**name** | **string** | | [optional] [default to undefined]
|
|
9
|
+
**description** | **string** | | [optional] [default to undefined]
|
|
9
10
|
**limit** | **number** | | [optional] [default to undefined]
|
|
11
|
+
**grouped** | **boolean** | | [optional] [default to undefined]
|
|
10
12
|
|
|
11
13
|
## Example
|
|
12
14
|
|
|
@@ -15,7 +17,9 @@ import { EventBlockUpdateInputs } from '@connectedxm/admin-sdk';
|
|
|
15
17
|
|
|
16
18
|
const instance: EventBlockUpdateInputs = {
|
|
17
19
|
name,
|
|
20
|
+
description,
|
|
18
21
|
limit,
|
|
22
|
+
grouped,
|
|
19
23
|
};
|
|
20
24
|
```
|
|
21
25
|
|