@closerplatform/spinner-openapi 0.12.69 → 0.12.72
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/dist/api.d.ts +324 -0
- package/dist/api.js +589 -1
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -6171,6 +6171,51 @@ export interface TrainingInfo {
|
|
|
6171
6171
|
*/
|
|
6172
6172
|
status: ModelTrainingStatus;
|
|
6173
6173
|
}
|
|
6174
|
+
/**
|
|
6175
|
+
*
|
|
6176
|
+
* @export
|
|
6177
|
+
* @interface TransferParametersDto
|
|
6178
|
+
*/
|
|
6179
|
+
export interface TransferParametersDto {
|
|
6180
|
+
/**
|
|
6181
|
+
*
|
|
6182
|
+
* @type {boolean}
|
|
6183
|
+
* @memberof TransferParametersDto
|
|
6184
|
+
*/
|
|
6185
|
+
enabled: boolean;
|
|
6186
|
+
}
|
|
6187
|
+
/**
|
|
6188
|
+
*
|
|
6189
|
+
* @export
|
|
6190
|
+
* @interface TransferRuleDto
|
|
6191
|
+
*/
|
|
6192
|
+
export interface TransferRuleDto {
|
|
6193
|
+
/**
|
|
6194
|
+
*
|
|
6195
|
+
* @type {string}
|
|
6196
|
+
* @memberof TransferRuleDto
|
|
6197
|
+
*/
|
|
6198
|
+
tagGroupId: string;
|
|
6199
|
+
/**
|
|
6200
|
+
*
|
|
6201
|
+
* @type {Array<string>}
|
|
6202
|
+
* @memberof TransferRuleDto
|
|
6203
|
+
*/
|
|
6204
|
+
targetTagGroupIds: Array<string>;
|
|
6205
|
+
}
|
|
6206
|
+
/**
|
|
6207
|
+
*
|
|
6208
|
+
* @export
|
|
6209
|
+
* @interface TransferRulePatchForm
|
|
6210
|
+
*/
|
|
6211
|
+
export interface TransferRulePatchForm {
|
|
6212
|
+
/**
|
|
6213
|
+
*
|
|
6214
|
+
* @type {Array<string>}
|
|
6215
|
+
* @memberof TransferRulePatchForm
|
|
6216
|
+
*/
|
|
6217
|
+
targetTagGroupIds: Array<string>;
|
|
6218
|
+
}
|
|
6174
6219
|
/**
|
|
6175
6220
|
*
|
|
6176
6221
|
* @export
|
|
@@ -13036,6 +13081,285 @@ export declare class StatusApi extends BaseAPI {
|
|
|
13036
13081
|
*/
|
|
13037
13082
|
statusGet(options?: any): Promise<MeetmeStatus>;
|
|
13038
13083
|
}
|
|
13084
|
+
/**
|
|
13085
|
+
* TagGroupTransfersApi - fetch parameter creator
|
|
13086
|
+
* @export
|
|
13087
|
+
*/
|
|
13088
|
+
export declare const TagGroupTransfersApiFetchParamCreator: (configuration?: Configuration) => {
|
|
13089
|
+
/**
|
|
13090
|
+
*
|
|
13091
|
+
* @summary endpoint to create tag groups transfer rules
|
|
13092
|
+
* @param {TransferRuleDto} body
|
|
13093
|
+
* @param {*} [options] Override http request option.
|
|
13094
|
+
* @throws {RequiredError}
|
|
13095
|
+
*/
|
|
13096
|
+
createTagGroupTransfers(body: TransferRuleDto, options?: any): FetchArgs;
|
|
13097
|
+
/**
|
|
13098
|
+
*
|
|
13099
|
+
* @summary authorized endpoint to delete tag group transfers
|
|
13100
|
+
* @param {string} id primary key of record which should be deleted
|
|
13101
|
+
* @param {*} [options] Override http request option.
|
|
13102
|
+
* @throws {RequiredError}
|
|
13103
|
+
*/
|
|
13104
|
+
deleteTagGroupTransfers(id: string, options?: any): FetchArgs;
|
|
13105
|
+
/**
|
|
13106
|
+
*
|
|
13107
|
+
* @summary endpoint to retrieve tag groups transfer rules
|
|
13108
|
+
* @param {string} id primary key of record
|
|
13109
|
+
* @param {*} [options] Override http request option.
|
|
13110
|
+
* @throws {RequiredError}
|
|
13111
|
+
*/
|
|
13112
|
+
getTagGroupTransfer(id: string, options?: any): FetchArgs;
|
|
13113
|
+
/**
|
|
13114
|
+
*
|
|
13115
|
+
* @summary endpoint to retrieve tag groups transfer rules
|
|
13116
|
+
* @param {*} [options] Override http request option.
|
|
13117
|
+
* @throws {RequiredError}
|
|
13118
|
+
*/
|
|
13119
|
+
getTagGroupTransfers(options?: any): FetchArgs;
|
|
13120
|
+
/**
|
|
13121
|
+
*
|
|
13122
|
+
* @summary endpoint to patch tag groups transfer rules
|
|
13123
|
+
* @param {TransferRulePatchForm} body
|
|
13124
|
+
* @param {string} id primary key of record which should be patched
|
|
13125
|
+
* @param {*} [options] Override http request option.
|
|
13126
|
+
* @throws {RequiredError}
|
|
13127
|
+
*/
|
|
13128
|
+
patchTagGroupTransfers(body: TransferRulePatchForm, id: string, options?: any): FetchArgs;
|
|
13129
|
+
};
|
|
13130
|
+
/**
|
|
13131
|
+
* TagGroupTransfersApi - functional programming interface
|
|
13132
|
+
* @export
|
|
13133
|
+
*/
|
|
13134
|
+
export declare const TagGroupTransfersApiFp: (configuration?: Configuration) => {
|
|
13135
|
+
/**
|
|
13136
|
+
*
|
|
13137
|
+
* @summary endpoint to create tag groups transfer rules
|
|
13138
|
+
* @param {TransferRuleDto} body
|
|
13139
|
+
* @param {*} [options] Override http request option.
|
|
13140
|
+
* @throws {RequiredError}
|
|
13141
|
+
*/
|
|
13142
|
+
createTagGroupTransfers(body: TransferRuleDto, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<TransferRuleDto>;
|
|
13143
|
+
/**
|
|
13144
|
+
*
|
|
13145
|
+
* @summary authorized endpoint to delete tag group transfers
|
|
13146
|
+
* @param {string} id primary key of record which should be deleted
|
|
13147
|
+
* @param {*} [options] Override http request option.
|
|
13148
|
+
* @throws {RequiredError}
|
|
13149
|
+
*/
|
|
13150
|
+
deleteTagGroupTransfers(id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Response>;
|
|
13151
|
+
/**
|
|
13152
|
+
*
|
|
13153
|
+
* @summary endpoint to retrieve tag groups transfer rules
|
|
13154
|
+
* @param {string} id primary key of record
|
|
13155
|
+
* @param {*} [options] Override http request option.
|
|
13156
|
+
* @throws {RequiredError}
|
|
13157
|
+
*/
|
|
13158
|
+
getTagGroupTransfer(id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<TransferRuleDto>;
|
|
13159
|
+
/**
|
|
13160
|
+
*
|
|
13161
|
+
* @summary endpoint to retrieve tag groups transfer rules
|
|
13162
|
+
* @param {*} [options] Override http request option.
|
|
13163
|
+
* @throws {RequiredError}
|
|
13164
|
+
*/
|
|
13165
|
+
getTagGroupTransfers(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<Array<TransferRuleDto>>;
|
|
13166
|
+
/**
|
|
13167
|
+
*
|
|
13168
|
+
* @summary endpoint to patch tag groups transfer rules
|
|
13169
|
+
* @param {TransferRulePatchForm} body
|
|
13170
|
+
* @param {string} id primary key of record which should be patched
|
|
13171
|
+
* @param {*} [options] Override http request option.
|
|
13172
|
+
* @throws {RequiredError}
|
|
13173
|
+
*/
|
|
13174
|
+
patchTagGroupTransfers(body: TransferRulePatchForm, id: string, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<TransferRuleDto>;
|
|
13175
|
+
};
|
|
13176
|
+
/**
|
|
13177
|
+
* TagGroupTransfersApi - factory interface
|
|
13178
|
+
* @export
|
|
13179
|
+
*/
|
|
13180
|
+
export declare const TagGroupTransfersApiFactory: (configuration?: Configuration, fetch?: FetchAPI, basePath?: string) => {
|
|
13181
|
+
/**
|
|
13182
|
+
*
|
|
13183
|
+
* @summary endpoint to create tag groups transfer rules
|
|
13184
|
+
* @param {TransferRuleDto} body
|
|
13185
|
+
* @param {*} [options] Override http request option.
|
|
13186
|
+
* @throws {RequiredError}
|
|
13187
|
+
*/
|
|
13188
|
+
createTagGroupTransfers(body: TransferRuleDto, options?: any): Promise<TransferRuleDto>;
|
|
13189
|
+
/**
|
|
13190
|
+
*
|
|
13191
|
+
* @summary authorized endpoint to delete tag group transfers
|
|
13192
|
+
* @param {string} id primary key of record which should be deleted
|
|
13193
|
+
* @param {*} [options] Override http request option.
|
|
13194
|
+
* @throws {RequiredError}
|
|
13195
|
+
*/
|
|
13196
|
+
deleteTagGroupTransfers(id: string, options?: any): Promise<Response>;
|
|
13197
|
+
/**
|
|
13198
|
+
*
|
|
13199
|
+
* @summary endpoint to retrieve tag groups transfer rules
|
|
13200
|
+
* @param {string} id primary key of record
|
|
13201
|
+
* @param {*} [options] Override http request option.
|
|
13202
|
+
* @throws {RequiredError}
|
|
13203
|
+
*/
|
|
13204
|
+
getTagGroupTransfer(id: string, options?: any): Promise<TransferRuleDto>;
|
|
13205
|
+
/**
|
|
13206
|
+
*
|
|
13207
|
+
* @summary endpoint to retrieve tag groups transfer rules
|
|
13208
|
+
* @param {*} [options] Override http request option.
|
|
13209
|
+
* @throws {RequiredError}
|
|
13210
|
+
*/
|
|
13211
|
+
getTagGroupTransfers(options?: any): Promise<TransferRuleDto[]>;
|
|
13212
|
+
/**
|
|
13213
|
+
*
|
|
13214
|
+
* @summary endpoint to patch tag groups transfer rules
|
|
13215
|
+
* @param {TransferRulePatchForm} body
|
|
13216
|
+
* @param {string} id primary key of record which should be patched
|
|
13217
|
+
* @param {*} [options] Override http request option.
|
|
13218
|
+
* @throws {RequiredError}
|
|
13219
|
+
*/
|
|
13220
|
+
patchTagGroupTransfers(body: TransferRulePatchForm, id: string, options?: any): Promise<TransferRuleDto>;
|
|
13221
|
+
};
|
|
13222
|
+
/**
|
|
13223
|
+
* TagGroupTransfersApi - object-oriented interface
|
|
13224
|
+
* @export
|
|
13225
|
+
* @class TagGroupTransfersApi
|
|
13226
|
+
* @extends {BaseAPI}
|
|
13227
|
+
*/
|
|
13228
|
+
export declare class TagGroupTransfersApi extends BaseAPI {
|
|
13229
|
+
/**
|
|
13230
|
+
*
|
|
13231
|
+
* @summary endpoint to create tag groups transfer rules
|
|
13232
|
+
* @param {TransferRuleDto} body
|
|
13233
|
+
* @param {*} [options] Override http request option.
|
|
13234
|
+
* @throws {RequiredError}
|
|
13235
|
+
* @memberof TagGroupTransfersApi
|
|
13236
|
+
*/
|
|
13237
|
+
createTagGroupTransfers(body: TransferRuleDto, options?: any): Promise<TransferRuleDto>;
|
|
13238
|
+
/**
|
|
13239
|
+
*
|
|
13240
|
+
* @summary authorized endpoint to delete tag group transfers
|
|
13241
|
+
* @param {string} id primary key of record which should be deleted
|
|
13242
|
+
* @param {*} [options] Override http request option.
|
|
13243
|
+
* @throws {RequiredError}
|
|
13244
|
+
* @memberof TagGroupTransfersApi
|
|
13245
|
+
*/
|
|
13246
|
+
deleteTagGroupTransfers(id: string, options?: any): Promise<Response>;
|
|
13247
|
+
/**
|
|
13248
|
+
*
|
|
13249
|
+
* @summary endpoint to retrieve tag groups transfer rules
|
|
13250
|
+
* @param {string} id primary key of record
|
|
13251
|
+
* @param {*} [options] Override http request option.
|
|
13252
|
+
* @throws {RequiredError}
|
|
13253
|
+
* @memberof TagGroupTransfersApi
|
|
13254
|
+
*/
|
|
13255
|
+
getTagGroupTransfer(id: string, options?: any): Promise<TransferRuleDto>;
|
|
13256
|
+
/**
|
|
13257
|
+
*
|
|
13258
|
+
* @summary endpoint to retrieve tag groups transfer rules
|
|
13259
|
+
* @param {*} [options] Override http request option.
|
|
13260
|
+
* @throws {RequiredError}
|
|
13261
|
+
* @memberof TagGroupTransfersApi
|
|
13262
|
+
*/
|
|
13263
|
+
getTagGroupTransfers(options?: any): Promise<TransferRuleDto[]>;
|
|
13264
|
+
/**
|
|
13265
|
+
*
|
|
13266
|
+
* @summary endpoint to patch tag groups transfer rules
|
|
13267
|
+
* @param {TransferRulePatchForm} body
|
|
13268
|
+
* @param {string} id primary key of record which should be patched
|
|
13269
|
+
* @param {*} [options] Override http request option.
|
|
13270
|
+
* @throws {RequiredError}
|
|
13271
|
+
* @memberof TagGroupTransfersApi
|
|
13272
|
+
*/
|
|
13273
|
+
patchTagGroupTransfers(body: TransferRulePatchForm, id: string, options?: any): Promise<TransferRuleDto>;
|
|
13274
|
+
}
|
|
13275
|
+
/**
|
|
13276
|
+
* TagGroupTransfersParametersApi - fetch parameter creator
|
|
13277
|
+
* @export
|
|
13278
|
+
*/
|
|
13279
|
+
export declare const TagGroupTransfersParametersApiFetchParamCreator: (configuration?: Configuration) => {
|
|
13280
|
+
/**
|
|
13281
|
+
*
|
|
13282
|
+
* @summary endpoint to retrieve tag groups transfer parameteres
|
|
13283
|
+
* @param {*} [options] Override http request option.
|
|
13284
|
+
* @throws {RequiredError}
|
|
13285
|
+
*/
|
|
13286
|
+
getTagGroupTransfersParameters(options?: any): FetchArgs;
|
|
13287
|
+
/**
|
|
13288
|
+
*
|
|
13289
|
+
* @summary endpoint to patch tag groups transfer parameteres
|
|
13290
|
+
* @param {TransferParametersDto} body
|
|
13291
|
+
* @param {*} [options] Override http request option.
|
|
13292
|
+
* @throws {RequiredError}
|
|
13293
|
+
*/
|
|
13294
|
+
patchTagGroupTransfersParameters(body: TransferParametersDto, options?: any): FetchArgs;
|
|
13295
|
+
};
|
|
13296
|
+
/**
|
|
13297
|
+
* TagGroupTransfersParametersApi - functional programming interface
|
|
13298
|
+
* @export
|
|
13299
|
+
*/
|
|
13300
|
+
export declare const TagGroupTransfersParametersApiFp: (configuration?: Configuration) => {
|
|
13301
|
+
/**
|
|
13302
|
+
*
|
|
13303
|
+
* @summary endpoint to retrieve tag groups transfer parameteres
|
|
13304
|
+
* @param {*} [options] Override http request option.
|
|
13305
|
+
* @throws {RequiredError}
|
|
13306
|
+
*/
|
|
13307
|
+
getTagGroupTransfersParameters(options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<TransferParametersDto>;
|
|
13308
|
+
/**
|
|
13309
|
+
*
|
|
13310
|
+
* @summary endpoint to patch tag groups transfer parameteres
|
|
13311
|
+
* @param {TransferParametersDto} body
|
|
13312
|
+
* @param {*} [options] Override http request option.
|
|
13313
|
+
* @throws {RequiredError}
|
|
13314
|
+
*/
|
|
13315
|
+
patchTagGroupTransfersParameters(body: TransferParametersDto, options?: any): (fetch?: FetchAPI, basePath?: string) => Promise<TransferParametersDto>;
|
|
13316
|
+
};
|
|
13317
|
+
/**
|
|
13318
|
+
* TagGroupTransfersParametersApi - factory interface
|
|
13319
|
+
* @export
|
|
13320
|
+
*/
|
|
13321
|
+
export declare const TagGroupTransfersParametersApiFactory: (configuration?: Configuration, fetch?: FetchAPI, basePath?: string) => {
|
|
13322
|
+
/**
|
|
13323
|
+
*
|
|
13324
|
+
* @summary endpoint to retrieve tag groups transfer parameteres
|
|
13325
|
+
* @param {*} [options] Override http request option.
|
|
13326
|
+
* @throws {RequiredError}
|
|
13327
|
+
*/
|
|
13328
|
+
getTagGroupTransfersParameters(options?: any): Promise<TransferParametersDto>;
|
|
13329
|
+
/**
|
|
13330
|
+
*
|
|
13331
|
+
* @summary endpoint to patch tag groups transfer parameteres
|
|
13332
|
+
* @param {TransferParametersDto} body
|
|
13333
|
+
* @param {*} [options] Override http request option.
|
|
13334
|
+
* @throws {RequiredError}
|
|
13335
|
+
*/
|
|
13336
|
+
patchTagGroupTransfersParameters(body: TransferParametersDto, options?: any): Promise<TransferParametersDto>;
|
|
13337
|
+
};
|
|
13338
|
+
/**
|
|
13339
|
+
* TagGroupTransfersParametersApi - object-oriented interface
|
|
13340
|
+
* @export
|
|
13341
|
+
* @class TagGroupTransfersParametersApi
|
|
13342
|
+
* @extends {BaseAPI}
|
|
13343
|
+
*/
|
|
13344
|
+
export declare class TagGroupTransfersParametersApi extends BaseAPI {
|
|
13345
|
+
/**
|
|
13346
|
+
*
|
|
13347
|
+
* @summary endpoint to retrieve tag groups transfer parameteres
|
|
13348
|
+
* @param {*} [options] Override http request option.
|
|
13349
|
+
* @throws {RequiredError}
|
|
13350
|
+
* @memberof TagGroupTransfersParametersApi
|
|
13351
|
+
*/
|
|
13352
|
+
getTagGroupTransfersParameters(options?: any): Promise<TransferParametersDto>;
|
|
13353
|
+
/**
|
|
13354
|
+
*
|
|
13355
|
+
* @summary endpoint to patch tag groups transfer parameteres
|
|
13356
|
+
* @param {TransferParametersDto} body
|
|
13357
|
+
* @param {*} [options] Override http request option.
|
|
13358
|
+
* @throws {RequiredError}
|
|
13359
|
+
* @memberof TagGroupTransfersParametersApi
|
|
13360
|
+
*/
|
|
13361
|
+
patchTagGroupTransfersParameters(body: TransferParametersDto, options?: any): Promise<TransferParametersDto>;
|
|
13362
|
+
}
|
|
13039
13363
|
/**
|
|
13040
13364
|
* TagGroupsApi - fetch parameter creator
|
|
13041
13365
|
* @export
|
package/dist/api.js
CHANGED
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
* Do not edit the file manually.
|
|
14
14
|
*/
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.WidgetsFormsSubmissionsApi = exports.WidgetsFormsSubmissionsApiFactory = exports.WidgetsFormsSubmissionsApiFp = exports.WidgetsFormsSubmissionsApiFetchParamCreator = exports.WebhooksApi = exports.WebhooksApiFactory = exports.WebhooksApiFp = exports.WebhooksApiFetchParamCreator = exports.UsersApi = exports.UsersApiFactory = exports.UsersApiFp = exports.UsersApiFetchParamCreator = exports.UrlTagMappingsApi = exports.UrlTagMappingsApiFactory = exports.UrlTagMappingsApiFp = exports.UrlTagMappingsApiFetchParamCreator = exports.UnreadApi = exports.UnreadApiFactory = exports.UnreadApiFp = exports.UnreadApiFetchParamCreator = exports.TopicsApi = exports.TopicsApiFactory = exports.TopicsApiFp = exports.TopicsApiFetchParamCreator = exports.TagsApi = exports.TagsApiFactory = exports.TagsApiFp = exports.TagsApiFetchParamCreator = exports.TagMappingsApi = exports.TagMappingsApiFactory = exports.TagMappingsApiFp = exports.TagMappingsApiFetchParamCreator = exports.TagGroupsApi = exports.TagGroupsApiFactory = exports.TagGroupsApiFp = exports.TagGroupsApiFetchParamCreator = exports.StatusApi = exports.StatusApiFactory = exports.StatusApiFp = exports.StatusApiFetchParamCreator = exports.SessionApi = exports.SessionApiFactory = exports.SessionApiFp = exports.SessionApiFetchParamCreator = exports.RoomsApi = exports.RoomsApiFactory = exports.RoomsApiFp = exports.RoomsApiFetchParamCreator = exports.RolesApi = exports.RolesApiFactory = exports.RolesApiFp = exports.RolesApiFetchParamCreator = exports.PushApi = exports.PushApiFactory = exports.PushApiFp = exports.PushApiFetchParamCreator = exports.ProfanitiesApi = exports.ProfanitiesApiFactory = exports.ProfanitiesApiFp = exports.ProfanitiesApiFetchParamCreator = exports.ProactiveMsgApi = exports.ProactiveMsgApiFactory = exports.ProactiveMsgApiFp = exports.ProactiveMsgApiFetchParamCreator = exports.OrgsApi = exports.OrgsApiFactory = exports.OrgsApiFp = exports.OrgsApiFetchParamCreator = exports.OplAddressApi = exports.OplAddressApiFactory = exports.OplAddressApiFp = exports.OplAddressApiFetchParamCreator = exports.OIDCApi = exports.OIDCApiFactory = exports.OIDCApiFp = exports.OIDCApiFetchParamCreator = exports.OAuthApi = exports.OAuthApiFactory = exports.OAuthApiFp = exports.OAuthApiFetchParamCreator = exports.NLUApi = exports.NLUApiFactory = exports.NLUApiFp = exports.NLUApiFetchParamCreator = exports.MessageWidgetsApi = exports.MessageWidgetsApiFactory = exports.MessageWidgetsApiFp = exports.MessageWidgetsApiFetchParamCreator = exports.MeetingsApi = exports.MeetingsApiFactory = exports.MeetingsApiFp = exports.MeetingsApiFetchParamCreator = exports.MainNotificationsApi = exports.MainNotificationsApiFactory = exports.MainNotificationsApiFp = exports.MainNotificationsApiFetchParamCreator = exports.InviteesApi = exports.InviteesApiFactory = exports.InviteesApiFp = exports.InviteesApiFetchParamCreator = exports.FilesApi = exports.FilesApiFactory = exports.FilesApiFp = exports.FilesApiFetchParamCreator = exports.EventActionsApi = exports.EventActionsApiFactory = exports.EventActionsApiFp = exports.EventActionsApiFetchParamCreator = exports.ConversationsApi = exports.ConversationsApiFactory = exports.ConversationsApiFp = exports.ConversationsApiFetchParamCreator = exports.CompatibilityApi = exports.CompatibilityApiFactory = exports.CompatibilityApiFp = exports.CompatibilityApiFetchParamCreator = exports.CobrowsingApi = exports.CobrowsingApiFactory = exports.CobrowsingApiFp = exports.CobrowsingApiFetchParamCreator = exports.CallsApi = exports.CallsApiFactory = exports.CallsApiFp = exports.CallsApiFetchParamCreator = exports.CalendarsApi = exports.CalendarsApiFactory = exports.CalendarsApiFp = exports.CalendarsApiFetchParamCreator = exports.BotsApi = exports.BotsApiFactory = exports.BotsApiFp = exports.BotsApiFetchParamCreator = exports.BillingsApi = exports.BillingsApiFactory = exports.BillingsApiFp = exports.BillingsApiFetchParamCreator = exports.AgentStatusesApi = exports.AgentStatusesApiFactory = exports.AgentStatusesApiFp = exports.AgentStatusesApiFetchParamCreator = exports.AgentGroupsApi = exports.AgentGroupsApiFactory = exports.AgentGroupsApiFp = exports.AgentGroupsApiFetchParamCreator = exports.WidgetButtonsInput = exports.UserRole = exports.SnoozedStatus = exports.RegisterInPushService = exports.ModelTrainingStatus = exports.MessageWidgetConfigContextType = exports.MatchingStrategy = exports.InboxSorting = exports.InboxEntryType = exports.EventActionEvent = exports.ConversationStatus = exports.ChatEvent = exports.ChangeBotTypeForm = exports.BotInfo = exports.ArtichokePresence = exports.AppPresence = exports.AppPermission = exports.RequiredError = exports.BaseAPI = exports.COLLECTION_FORMATS = void 0;
|
|
16
|
+
exports.WidgetsFormsSubmissionsApi = exports.WidgetsFormsSubmissionsApiFactory = exports.WidgetsFormsSubmissionsApiFp = exports.WidgetsFormsSubmissionsApiFetchParamCreator = exports.WebhooksApi = exports.WebhooksApiFactory = exports.WebhooksApiFp = exports.WebhooksApiFetchParamCreator = exports.UsersApi = exports.UsersApiFactory = exports.UsersApiFp = exports.UsersApiFetchParamCreator = exports.UrlTagMappingsApi = exports.UrlTagMappingsApiFactory = exports.UrlTagMappingsApiFp = exports.UrlTagMappingsApiFetchParamCreator = exports.UnreadApi = exports.UnreadApiFactory = exports.UnreadApiFp = exports.UnreadApiFetchParamCreator = exports.TopicsApi = exports.TopicsApiFactory = exports.TopicsApiFp = exports.TopicsApiFetchParamCreator = exports.TagsApi = exports.TagsApiFactory = exports.TagsApiFp = exports.TagsApiFetchParamCreator = exports.TagMappingsApi = exports.TagMappingsApiFactory = exports.TagMappingsApiFp = exports.TagMappingsApiFetchParamCreator = exports.TagGroupsApi = exports.TagGroupsApiFactory = exports.TagGroupsApiFp = exports.TagGroupsApiFetchParamCreator = exports.TagGroupTransfersParametersApi = exports.TagGroupTransfersParametersApiFactory = exports.TagGroupTransfersParametersApiFp = exports.TagGroupTransfersParametersApiFetchParamCreator = exports.TagGroupTransfersApi = exports.TagGroupTransfersApiFactory = exports.TagGroupTransfersApiFp = exports.TagGroupTransfersApiFetchParamCreator = exports.StatusApi = exports.StatusApiFactory = exports.StatusApiFp = exports.StatusApiFetchParamCreator = exports.SessionApi = exports.SessionApiFactory = exports.SessionApiFp = exports.SessionApiFetchParamCreator = exports.RoomsApi = exports.RoomsApiFactory = exports.RoomsApiFp = exports.RoomsApiFetchParamCreator = exports.RolesApi = exports.RolesApiFactory = exports.RolesApiFp = exports.RolesApiFetchParamCreator = exports.PushApi = exports.PushApiFactory = exports.PushApiFp = exports.PushApiFetchParamCreator = exports.ProfanitiesApi = exports.ProfanitiesApiFactory = exports.ProfanitiesApiFp = exports.ProfanitiesApiFetchParamCreator = exports.ProactiveMsgApi = exports.ProactiveMsgApiFactory = exports.ProactiveMsgApiFp = exports.ProactiveMsgApiFetchParamCreator = exports.OrgsApi = exports.OrgsApiFactory = exports.OrgsApiFp = exports.OrgsApiFetchParamCreator = exports.OplAddressApi = exports.OplAddressApiFactory = exports.OplAddressApiFp = exports.OplAddressApiFetchParamCreator = exports.OIDCApi = exports.OIDCApiFactory = exports.OIDCApiFp = exports.OIDCApiFetchParamCreator = exports.OAuthApi = exports.OAuthApiFactory = exports.OAuthApiFp = exports.OAuthApiFetchParamCreator = exports.NLUApi = exports.NLUApiFactory = exports.NLUApiFp = exports.NLUApiFetchParamCreator = exports.MessageWidgetsApi = exports.MessageWidgetsApiFactory = exports.MessageWidgetsApiFp = exports.MessageWidgetsApiFetchParamCreator = exports.MeetingsApi = exports.MeetingsApiFactory = exports.MeetingsApiFp = exports.MeetingsApiFetchParamCreator = exports.MainNotificationsApi = exports.MainNotificationsApiFactory = exports.MainNotificationsApiFp = exports.MainNotificationsApiFetchParamCreator = exports.InviteesApi = exports.InviteesApiFactory = exports.InviteesApiFp = exports.InviteesApiFetchParamCreator = exports.FilesApi = exports.FilesApiFactory = exports.FilesApiFp = exports.FilesApiFetchParamCreator = exports.EventActionsApi = exports.EventActionsApiFactory = exports.EventActionsApiFp = exports.EventActionsApiFetchParamCreator = exports.ConversationsApi = exports.ConversationsApiFactory = exports.ConversationsApiFp = exports.ConversationsApiFetchParamCreator = exports.CompatibilityApi = exports.CompatibilityApiFactory = exports.CompatibilityApiFp = exports.CompatibilityApiFetchParamCreator = exports.CobrowsingApi = exports.CobrowsingApiFactory = exports.CobrowsingApiFp = exports.CobrowsingApiFetchParamCreator = exports.CallsApi = exports.CallsApiFactory = exports.CallsApiFp = exports.CallsApiFetchParamCreator = exports.CalendarsApi = exports.CalendarsApiFactory = exports.CalendarsApiFp = exports.CalendarsApiFetchParamCreator = exports.BotsApi = exports.BotsApiFactory = exports.BotsApiFp = exports.BotsApiFetchParamCreator = exports.BillingsApi = exports.BillingsApiFactory = exports.BillingsApiFp = exports.BillingsApiFetchParamCreator = exports.AgentStatusesApi = exports.AgentStatusesApiFactory = exports.AgentStatusesApiFp = exports.AgentStatusesApiFetchParamCreator = exports.AgentGroupsApi = exports.AgentGroupsApiFactory = exports.AgentGroupsApiFp = exports.AgentGroupsApiFetchParamCreator = exports.WidgetButtonsInput = exports.UserRole = exports.SnoozedStatus = exports.RegisterInPushService = exports.ModelTrainingStatus = exports.MessageWidgetConfigContextType = exports.MatchingStrategy = exports.InboxSorting = exports.InboxEntryType = exports.EventActionEvent = exports.ConversationStatus = exports.ChatEvent = exports.ChangeBotTypeForm = exports.BotInfo = exports.ArtichokePresence = exports.AppPresence = exports.AppPermission = exports.RequiredError = exports.BaseAPI = exports.COLLECTION_FORMATS = void 0;
|
|
17
17
|
const url = require("url");
|
|
18
18
|
const isomorphicFetch = require("isomorphic-fetch");
|
|
19
19
|
const BASE_PATH = "/api".replace(/\/+$/, "");
|
|
@@ -13681,6 +13681,594 @@ class StatusApi extends BaseAPI {
|
|
|
13681
13681
|
}
|
|
13682
13682
|
}
|
|
13683
13683
|
exports.StatusApi = StatusApi;
|
|
13684
|
+
/**
|
|
13685
|
+
* TagGroupTransfersApi - fetch parameter creator
|
|
13686
|
+
* @export
|
|
13687
|
+
*/
|
|
13688
|
+
exports.TagGroupTransfersApiFetchParamCreator = function (configuration) {
|
|
13689
|
+
return {
|
|
13690
|
+
/**
|
|
13691
|
+
*
|
|
13692
|
+
* @summary endpoint to create tag groups transfer rules
|
|
13693
|
+
* @param {TransferRuleDto} body
|
|
13694
|
+
* @param {*} [options] Override http request option.
|
|
13695
|
+
* @throws {RequiredError}
|
|
13696
|
+
*/
|
|
13697
|
+
createTagGroupTransfers(body, options = {}) {
|
|
13698
|
+
// verify required parameter 'body' is not null or undefined
|
|
13699
|
+
if (body === null || body === undefined) {
|
|
13700
|
+
throw new RequiredError('body', 'Required parameter body was null or undefined when calling createTagGroupTransfers.');
|
|
13701
|
+
}
|
|
13702
|
+
const localVarPath = `/tag-groups-transfers`;
|
|
13703
|
+
const localVarUrlObj = url.parse(localVarPath, true);
|
|
13704
|
+
const localVarRequestOptions = Object.assign({ method: 'POST' }, options);
|
|
13705
|
+
const localVarHeaderParameter = {};
|
|
13706
|
+
const localVarQueryParameter = {};
|
|
13707
|
+
// authentication apiKey required
|
|
13708
|
+
if (configuration && configuration.apiKey) {
|
|
13709
|
+
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
13710
|
+
? configuration.apiKey("X-Api-Key")
|
|
13711
|
+
: configuration.apiKey;
|
|
13712
|
+
localVarHeaderParameter["X-Api-Key"] = localVarApiKeyValue;
|
|
13713
|
+
}
|
|
13714
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
13715
|
+
localVarUrlObj.query = Object.assign({}, localVarUrlObj.query, localVarQueryParameter, options.query);
|
|
13716
|
+
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
|
|
13717
|
+
delete localVarUrlObj.search;
|
|
13718
|
+
localVarRequestOptions.headers = Object.assign({}, localVarHeaderParameter, options.headers);
|
|
13719
|
+
const needsSerialization = ("TransferRuleDto" !== "string") || localVarRequestOptions.headers['Content-Type'] === 'application/json';
|
|
13720
|
+
localVarRequestOptions.body = needsSerialization ? JSON.stringify(body || {}) : (body || "");
|
|
13721
|
+
return {
|
|
13722
|
+
url: url.format(localVarUrlObj),
|
|
13723
|
+
options: localVarRequestOptions,
|
|
13724
|
+
};
|
|
13725
|
+
},
|
|
13726
|
+
/**
|
|
13727
|
+
*
|
|
13728
|
+
* @summary authorized endpoint to delete tag group transfers
|
|
13729
|
+
* @param {string} id primary key of record which should be deleted
|
|
13730
|
+
* @param {*} [options] Override http request option.
|
|
13731
|
+
* @throws {RequiredError}
|
|
13732
|
+
*/
|
|
13733
|
+
deleteTagGroupTransfers(id, options = {}) {
|
|
13734
|
+
// verify required parameter 'id' is not null or undefined
|
|
13735
|
+
if (id === null || id === undefined) {
|
|
13736
|
+
throw new RequiredError('id', 'Required parameter id was null or undefined when calling deleteTagGroupTransfers.');
|
|
13737
|
+
}
|
|
13738
|
+
const localVarPath = `/tag-groups-transfers/{id}`
|
|
13739
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
13740
|
+
const localVarUrlObj = url.parse(localVarPath, true);
|
|
13741
|
+
const localVarRequestOptions = Object.assign({ method: 'DELETE' }, options);
|
|
13742
|
+
const localVarHeaderParameter = {};
|
|
13743
|
+
const localVarQueryParameter = {};
|
|
13744
|
+
// authentication apiKey required
|
|
13745
|
+
if (configuration && configuration.apiKey) {
|
|
13746
|
+
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
13747
|
+
? configuration.apiKey("X-Api-Key")
|
|
13748
|
+
: configuration.apiKey;
|
|
13749
|
+
localVarHeaderParameter["X-Api-Key"] = localVarApiKeyValue;
|
|
13750
|
+
}
|
|
13751
|
+
localVarUrlObj.query = Object.assign({}, localVarUrlObj.query, localVarQueryParameter, options.query);
|
|
13752
|
+
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
|
|
13753
|
+
delete localVarUrlObj.search;
|
|
13754
|
+
localVarRequestOptions.headers = Object.assign({}, localVarHeaderParameter, options.headers);
|
|
13755
|
+
return {
|
|
13756
|
+
url: url.format(localVarUrlObj),
|
|
13757
|
+
options: localVarRequestOptions,
|
|
13758
|
+
};
|
|
13759
|
+
},
|
|
13760
|
+
/**
|
|
13761
|
+
*
|
|
13762
|
+
* @summary endpoint to retrieve tag groups transfer rules
|
|
13763
|
+
* @param {string} id primary key of record
|
|
13764
|
+
* @param {*} [options] Override http request option.
|
|
13765
|
+
* @throws {RequiredError}
|
|
13766
|
+
*/
|
|
13767
|
+
getTagGroupTransfer(id, options = {}) {
|
|
13768
|
+
// verify required parameter 'id' is not null or undefined
|
|
13769
|
+
if (id === null || id === undefined) {
|
|
13770
|
+
throw new RequiredError('id', 'Required parameter id was null or undefined when calling getTagGroupTransfer.');
|
|
13771
|
+
}
|
|
13772
|
+
const localVarPath = `/tag-groups-transfers/{id}`
|
|
13773
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
13774
|
+
const localVarUrlObj = url.parse(localVarPath, true);
|
|
13775
|
+
const localVarRequestOptions = Object.assign({ method: 'GET' }, options);
|
|
13776
|
+
const localVarHeaderParameter = {};
|
|
13777
|
+
const localVarQueryParameter = {};
|
|
13778
|
+
// authentication apiKey required
|
|
13779
|
+
if (configuration && configuration.apiKey) {
|
|
13780
|
+
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
13781
|
+
? configuration.apiKey("X-Api-Key")
|
|
13782
|
+
: configuration.apiKey;
|
|
13783
|
+
localVarHeaderParameter["X-Api-Key"] = localVarApiKeyValue;
|
|
13784
|
+
}
|
|
13785
|
+
localVarUrlObj.query = Object.assign({}, localVarUrlObj.query, localVarQueryParameter, options.query);
|
|
13786
|
+
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
|
|
13787
|
+
delete localVarUrlObj.search;
|
|
13788
|
+
localVarRequestOptions.headers = Object.assign({}, localVarHeaderParameter, options.headers);
|
|
13789
|
+
return {
|
|
13790
|
+
url: url.format(localVarUrlObj),
|
|
13791
|
+
options: localVarRequestOptions,
|
|
13792
|
+
};
|
|
13793
|
+
},
|
|
13794
|
+
/**
|
|
13795
|
+
*
|
|
13796
|
+
* @summary endpoint to retrieve tag groups transfer rules
|
|
13797
|
+
* @param {*} [options] Override http request option.
|
|
13798
|
+
* @throws {RequiredError}
|
|
13799
|
+
*/
|
|
13800
|
+
getTagGroupTransfers(options = {}) {
|
|
13801
|
+
const localVarPath = `/tag-groups-transfers`;
|
|
13802
|
+
const localVarUrlObj = url.parse(localVarPath, true);
|
|
13803
|
+
const localVarRequestOptions = Object.assign({ method: 'GET' }, options);
|
|
13804
|
+
const localVarHeaderParameter = {};
|
|
13805
|
+
const localVarQueryParameter = {};
|
|
13806
|
+
// authentication apiKey required
|
|
13807
|
+
if (configuration && configuration.apiKey) {
|
|
13808
|
+
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
13809
|
+
? configuration.apiKey("X-Api-Key")
|
|
13810
|
+
: configuration.apiKey;
|
|
13811
|
+
localVarHeaderParameter["X-Api-Key"] = localVarApiKeyValue;
|
|
13812
|
+
}
|
|
13813
|
+
localVarUrlObj.query = Object.assign({}, localVarUrlObj.query, localVarQueryParameter, options.query);
|
|
13814
|
+
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
|
|
13815
|
+
delete localVarUrlObj.search;
|
|
13816
|
+
localVarRequestOptions.headers = Object.assign({}, localVarHeaderParameter, options.headers);
|
|
13817
|
+
return {
|
|
13818
|
+
url: url.format(localVarUrlObj),
|
|
13819
|
+
options: localVarRequestOptions,
|
|
13820
|
+
};
|
|
13821
|
+
},
|
|
13822
|
+
/**
|
|
13823
|
+
*
|
|
13824
|
+
* @summary endpoint to patch tag groups transfer rules
|
|
13825
|
+
* @param {TransferRulePatchForm} body
|
|
13826
|
+
* @param {string} id primary key of record which should be patched
|
|
13827
|
+
* @param {*} [options] Override http request option.
|
|
13828
|
+
* @throws {RequiredError}
|
|
13829
|
+
*/
|
|
13830
|
+
patchTagGroupTransfers(body, id, options = {}) {
|
|
13831
|
+
// verify required parameter 'body' is not null or undefined
|
|
13832
|
+
if (body === null || body === undefined) {
|
|
13833
|
+
throw new RequiredError('body', 'Required parameter body was null or undefined when calling patchTagGroupTransfers.');
|
|
13834
|
+
}
|
|
13835
|
+
// verify required parameter 'id' is not null or undefined
|
|
13836
|
+
if (id === null || id === undefined) {
|
|
13837
|
+
throw new RequiredError('id', 'Required parameter id was null or undefined when calling patchTagGroupTransfers.');
|
|
13838
|
+
}
|
|
13839
|
+
const localVarPath = `/tag-groups-transfers/{id}`
|
|
13840
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
13841
|
+
const localVarUrlObj = url.parse(localVarPath, true);
|
|
13842
|
+
const localVarRequestOptions = Object.assign({ method: 'PATCH' }, options);
|
|
13843
|
+
const localVarHeaderParameter = {};
|
|
13844
|
+
const localVarQueryParameter = {};
|
|
13845
|
+
// authentication apiKey required
|
|
13846
|
+
if (configuration && configuration.apiKey) {
|
|
13847
|
+
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
13848
|
+
? configuration.apiKey("X-Api-Key")
|
|
13849
|
+
: configuration.apiKey;
|
|
13850
|
+
localVarHeaderParameter["X-Api-Key"] = localVarApiKeyValue;
|
|
13851
|
+
}
|
|
13852
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
13853
|
+
localVarUrlObj.query = Object.assign({}, localVarUrlObj.query, localVarQueryParameter, options.query);
|
|
13854
|
+
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
|
|
13855
|
+
delete localVarUrlObj.search;
|
|
13856
|
+
localVarRequestOptions.headers = Object.assign({}, localVarHeaderParameter, options.headers);
|
|
13857
|
+
const needsSerialization = ("TransferRulePatchForm" !== "string") || localVarRequestOptions.headers['Content-Type'] === 'application/json';
|
|
13858
|
+
localVarRequestOptions.body = needsSerialization ? JSON.stringify(body || {}) : (body || "");
|
|
13859
|
+
return {
|
|
13860
|
+
url: url.format(localVarUrlObj),
|
|
13861
|
+
options: localVarRequestOptions,
|
|
13862
|
+
};
|
|
13863
|
+
},
|
|
13864
|
+
};
|
|
13865
|
+
};
|
|
13866
|
+
/**
|
|
13867
|
+
* TagGroupTransfersApi - functional programming interface
|
|
13868
|
+
* @export
|
|
13869
|
+
*/
|
|
13870
|
+
exports.TagGroupTransfersApiFp = function (configuration) {
|
|
13871
|
+
return {
|
|
13872
|
+
/**
|
|
13873
|
+
*
|
|
13874
|
+
* @summary endpoint to create tag groups transfer rules
|
|
13875
|
+
* @param {TransferRuleDto} body
|
|
13876
|
+
* @param {*} [options] Override http request option.
|
|
13877
|
+
* @throws {RequiredError}
|
|
13878
|
+
*/
|
|
13879
|
+
createTagGroupTransfers(body, options) {
|
|
13880
|
+
const localVarFetchArgs = exports.TagGroupTransfersApiFetchParamCreator(configuration).createTagGroupTransfers(body, options);
|
|
13881
|
+
return (fetch = isomorphicFetch, basePath = BASE_PATH) => {
|
|
13882
|
+
return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {
|
|
13883
|
+
if (response.status >= 200 && response.status < 300) {
|
|
13884
|
+
return response.json();
|
|
13885
|
+
}
|
|
13886
|
+
else {
|
|
13887
|
+
throw response;
|
|
13888
|
+
}
|
|
13889
|
+
});
|
|
13890
|
+
};
|
|
13891
|
+
},
|
|
13892
|
+
/**
|
|
13893
|
+
*
|
|
13894
|
+
* @summary authorized endpoint to delete tag group transfers
|
|
13895
|
+
* @param {string} id primary key of record which should be deleted
|
|
13896
|
+
* @param {*} [options] Override http request option.
|
|
13897
|
+
* @throws {RequiredError}
|
|
13898
|
+
*/
|
|
13899
|
+
deleteTagGroupTransfers(id, options) {
|
|
13900
|
+
const localVarFetchArgs = exports.TagGroupTransfersApiFetchParamCreator(configuration).deleteTagGroupTransfers(id, options);
|
|
13901
|
+
return (fetch = isomorphicFetch, basePath = BASE_PATH) => {
|
|
13902
|
+
return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {
|
|
13903
|
+
if (response.status >= 200 && response.status < 300) {
|
|
13904
|
+
return response;
|
|
13905
|
+
}
|
|
13906
|
+
else {
|
|
13907
|
+
throw response;
|
|
13908
|
+
}
|
|
13909
|
+
});
|
|
13910
|
+
};
|
|
13911
|
+
},
|
|
13912
|
+
/**
|
|
13913
|
+
*
|
|
13914
|
+
* @summary endpoint to retrieve tag groups transfer rules
|
|
13915
|
+
* @param {string} id primary key of record
|
|
13916
|
+
* @param {*} [options] Override http request option.
|
|
13917
|
+
* @throws {RequiredError}
|
|
13918
|
+
*/
|
|
13919
|
+
getTagGroupTransfer(id, options) {
|
|
13920
|
+
const localVarFetchArgs = exports.TagGroupTransfersApiFetchParamCreator(configuration).getTagGroupTransfer(id, options);
|
|
13921
|
+
return (fetch = isomorphicFetch, basePath = BASE_PATH) => {
|
|
13922
|
+
return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {
|
|
13923
|
+
if (response.status >= 200 && response.status < 300) {
|
|
13924
|
+
return response.json();
|
|
13925
|
+
}
|
|
13926
|
+
else {
|
|
13927
|
+
throw response;
|
|
13928
|
+
}
|
|
13929
|
+
});
|
|
13930
|
+
};
|
|
13931
|
+
},
|
|
13932
|
+
/**
|
|
13933
|
+
*
|
|
13934
|
+
* @summary endpoint to retrieve tag groups transfer rules
|
|
13935
|
+
* @param {*} [options] Override http request option.
|
|
13936
|
+
* @throws {RequiredError}
|
|
13937
|
+
*/
|
|
13938
|
+
getTagGroupTransfers(options) {
|
|
13939
|
+
const localVarFetchArgs = exports.TagGroupTransfersApiFetchParamCreator(configuration).getTagGroupTransfers(options);
|
|
13940
|
+
return (fetch = isomorphicFetch, basePath = BASE_PATH) => {
|
|
13941
|
+
return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {
|
|
13942
|
+
if (response.status >= 200 && response.status < 300) {
|
|
13943
|
+
return response.json();
|
|
13944
|
+
}
|
|
13945
|
+
else {
|
|
13946
|
+
throw response;
|
|
13947
|
+
}
|
|
13948
|
+
});
|
|
13949
|
+
};
|
|
13950
|
+
},
|
|
13951
|
+
/**
|
|
13952
|
+
*
|
|
13953
|
+
* @summary endpoint to patch tag groups transfer rules
|
|
13954
|
+
* @param {TransferRulePatchForm} body
|
|
13955
|
+
* @param {string} id primary key of record which should be patched
|
|
13956
|
+
* @param {*} [options] Override http request option.
|
|
13957
|
+
* @throws {RequiredError}
|
|
13958
|
+
*/
|
|
13959
|
+
patchTagGroupTransfers(body, id, options) {
|
|
13960
|
+
const localVarFetchArgs = exports.TagGroupTransfersApiFetchParamCreator(configuration).patchTagGroupTransfers(body, id, options);
|
|
13961
|
+
return (fetch = isomorphicFetch, basePath = BASE_PATH) => {
|
|
13962
|
+
return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {
|
|
13963
|
+
if (response.status >= 200 && response.status < 300) {
|
|
13964
|
+
return response.json();
|
|
13965
|
+
}
|
|
13966
|
+
else {
|
|
13967
|
+
throw response;
|
|
13968
|
+
}
|
|
13969
|
+
});
|
|
13970
|
+
};
|
|
13971
|
+
},
|
|
13972
|
+
};
|
|
13973
|
+
};
|
|
13974
|
+
/**
|
|
13975
|
+
* TagGroupTransfersApi - factory interface
|
|
13976
|
+
* @export
|
|
13977
|
+
*/
|
|
13978
|
+
exports.TagGroupTransfersApiFactory = function (configuration, fetch, basePath) {
|
|
13979
|
+
return {
|
|
13980
|
+
/**
|
|
13981
|
+
*
|
|
13982
|
+
* @summary endpoint to create tag groups transfer rules
|
|
13983
|
+
* @param {TransferRuleDto} body
|
|
13984
|
+
* @param {*} [options] Override http request option.
|
|
13985
|
+
* @throws {RequiredError}
|
|
13986
|
+
*/
|
|
13987
|
+
createTagGroupTransfers(body, options) {
|
|
13988
|
+
return exports.TagGroupTransfersApiFp(configuration).createTagGroupTransfers(body, options)(fetch, basePath);
|
|
13989
|
+
},
|
|
13990
|
+
/**
|
|
13991
|
+
*
|
|
13992
|
+
* @summary authorized endpoint to delete tag group transfers
|
|
13993
|
+
* @param {string} id primary key of record which should be deleted
|
|
13994
|
+
* @param {*} [options] Override http request option.
|
|
13995
|
+
* @throws {RequiredError}
|
|
13996
|
+
*/
|
|
13997
|
+
deleteTagGroupTransfers(id, options) {
|
|
13998
|
+
return exports.TagGroupTransfersApiFp(configuration).deleteTagGroupTransfers(id, options)(fetch, basePath);
|
|
13999
|
+
},
|
|
14000
|
+
/**
|
|
14001
|
+
*
|
|
14002
|
+
* @summary endpoint to retrieve tag groups transfer rules
|
|
14003
|
+
* @param {string} id primary key of record
|
|
14004
|
+
* @param {*} [options] Override http request option.
|
|
14005
|
+
* @throws {RequiredError}
|
|
14006
|
+
*/
|
|
14007
|
+
getTagGroupTransfer(id, options) {
|
|
14008
|
+
return exports.TagGroupTransfersApiFp(configuration).getTagGroupTransfer(id, options)(fetch, basePath);
|
|
14009
|
+
},
|
|
14010
|
+
/**
|
|
14011
|
+
*
|
|
14012
|
+
* @summary endpoint to retrieve tag groups transfer rules
|
|
14013
|
+
* @param {*} [options] Override http request option.
|
|
14014
|
+
* @throws {RequiredError}
|
|
14015
|
+
*/
|
|
14016
|
+
getTagGroupTransfers(options) {
|
|
14017
|
+
return exports.TagGroupTransfersApiFp(configuration).getTagGroupTransfers(options)(fetch, basePath);
|
|
14018
|
+
},
|
|
14019
|
+
/**
|
|
14020
|
+
*
|
|
14021
|
+
* @summary endpoint to patch tag groups transfer rules
|
|
14022
|
+
* @param {TransferRulePatchForm} body
|
|
14023
|
+
* @param {string} id primary key of record which should be patched
|
|
14024
|
+
* @param {*} [options] Override http request option.
|
|
14025
|
+
* @throws {RequiredError}
|
|
14026
|
+
*/
|
|
14027
|
+
patchTagGroupTransfers(body, id, options) {
|
|
14028
|
+
return exports.TagGroupTransfersApiFp(configuration).patchTagGroupTransfers(body, id, options)(fetch, basePath);
|
|
14029
|
+
},
|
|
14030
|
+
};
|
|
14031
|
+
};
|
|
14032
|
+
/**
|
|
14033
|
+
* TagGroupTransfersApi - object-oriented interface
|
|
14034
|
+
* @export
|
|
14035
|
+
* @class TagGroupTransfersApi
|
|
14036
|
+
* @extends {BaseAPI}
|
|
14037
|
+
*/
|
|
14038
|
+
class TagGroupTransfersApi extends BaseAPI {
|
|
14039
|
+
/**
|
|
14040
|
+
*
|
|
14041
|
+
* @summary endpoint to create tag groups transfer rules
|
|
14042
|
+
* @param {TransferRuleDto} body
|
|
14043
|
+
* @param {*} [options] Override http request option.
|
|
14044
|
+
* @throws {RequiredError}
|
|
14045
|
+
* @memberof TagGroupTransfersApi
|
|
14046
|
+
*/
|
|
14047
|
+
createTagGroupTransfers(body, options) {
|
|
14048
|
+
return exports.TagGroupTransfersApiFp(this.configuration).createTagGroupTransfers(body, options)(this.fetch, this.basePath);
|
|
14049
|
+
}
|
|
14050
|
+
/**
|
|
14051
|
+
*
|
|
14052
|
+
* @summary authorized endpoint to delete tag group transfers
|
|
14053
|
+
* @param {string} id primary key of record which should be deleted
|
|
14054
|
+
* @param {*} [options] Override http request option.
|
|
14055
|
+
* @throws {RequiredError}
|
|
14056
|
+
* @memberof TagGroupTransfersApi
|
|
14057
|
+
*/
|
|
14058
|
+
deleteTagGroupTransfers(id, options) {
|
|
14059
|
+
return exports.TagGroupTransfersApiFp(this.configuration).deleteTagGroupTransfers(id, options)(this.fetch, this.basePath);
|
|
14060
|
+
}
|
|
14061
|
+
/**
|
|
14062
|
+
*
|
|
14063
|
+
* @summary endpoint to retrieve tag groups transfer rules
|
|
14064
|
+
* @param {string} id primary key of record
|
|
14065
|
+
* @param {*} [options] Override http request option.
|
|
14066
|
+
* @throws {RequiredError}
|
|
14067
|
+
* @memberof TagGroupTransfersApi
|
|
14068
|
+
*/
|
|
14069
|
+
getTagGroupTransfer(id, options) {
|
|
14070
|
+
return exports.TagGroupTransfersApiFp(this.configuration).getTagGroupTransfer(id, options)(this.fetch, this.basePath);
|
|
14071
|
+
}
|
|
14072
|
+
/**
|
|
14073
|
+
*
|
|
14074
|
+
* @summary endpoint to retrieve tag groups transfer rules
|
|
14075
|
+
* @param {*} [options] Override http request option.
|
|
14076
|
+
* @throws {RequiredError}
|
|
14077
|
+
* @memberof TagGroupTransfersApi
|
|
14078
|
+
*/
|
|
14079
|
+
getTagGroupTransfers(options) {
|
|
14080
|
+
return exports.TagGroupTransfersApiFp(this.configuration).getTagGroupTransfers(options)(this.fetch, this.basePath);
|
|
14081
|
+
}
|
|
14082
|
+
/**
|
|
14083
|
+
*
|
|
14084
|
+
* @summary endpoint to patch tag groups transfer rules
|
|
14085
|
+
* @param {TransferRulePatchForm} body
|
|
14086
|
+
* @param {string} id primary key of record which should be patched
|
|
14087
|
+
* @param {*} [options] Override http request option.
|
|
14088
|
+
* @throws {RequiredError}
|
|
14089
|
+
* @memberof TagGroupTransfersApi
|
|
14090
|
+
*/
|
|
14091
|
+
patchTagGroupTransfers(body, id, options) {
|
|
14092
|
+
return exports.TagGroupTransfersApiFp(this.configuration).patchTagGroupTransfers(body, id, options)(this.fetch, this.basePath);
|
|
14093
|
+
}
|
|
14094
|
+
}
|
|
14095
|
+
exports.TagGroupTransfersApi = TagGroupTransfersApi;
|
|
14096
|
+
/**
|
|
14097
|
+
* TagGroupTransfersParametersApi - fetch parameter creator
|
|
14098
|
+
* @export
|
|
14099
|
+
*/
|
|
14100
|
+
exports.TagGroupTransfersParametersApiFetchParamCreator = function (configuration) {
|
|
14101
|
+
return {
|
|
14102
|
+
/**
|
|
14103
|
+
*
|
|
14104
|
+
* @summary endpoint to retrieve tag groups transfer parameteres
|
|
14105
|
+
* @param {*} [options] Override http request option.
|
|
14106
|
+
* @throws {RequiredError}
|
|
14107
|
+
*/
|
|
14108
|
+
getTagGroupTransfersParameters(options = {}) {
|
|
14109
|
+
const localVarPath = `/tag-groups-transfers-parameters`;
|
|
14110
|
+
const localVarUrlObj = url.parse(localVarPath, true);
|
|
14111
|
+
const localVarRequestOptions = Object.assign({ method: 'GET' }, options);
|
|
14112
|
+
const localVarHeaderParameter = {};
|
|
14113
|
+
const localVarQueryParameter = {};
|
|
14114
|
+
// authentication apiKey required
|
|
14115
|
+
if (configuration && configuration.apiKey) {
|
|
14116
|
+
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
14117
|
+
? configuration.apiKey("X-Api-Key")
|
|
14118
|
+
: configuration.apiKey;
|
|
14119
|
+
localVarHeaderParameter["X-Api-Key"] = localVarApiKeyValue;
|
|
14120
|
+
}
|
|
14121
|
+
localVarUrlObj.query = Object.assign({}, localVarUrlObj.query, localVarQueryParameter, options.query);
|
|
14122
|
+
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
|
|
14123
|
+
delete localVarUrlObj.search;
|
|
14124
|
+
localVarRequestOptions.headers = Object.assign({}, localVarHeaderParameter, options.headers);
|
|
14125
|
+
return {
|
|
14126
|
+
url: url.format(localVarUrlObj),
|
|
14127
|
+
options: localVarRequestOptions,
|
|
14128
|
+
};
|
|
14129
|
+
},
|
|
14130
|
+
/**
|
|
14131
|
+
*
|
|
14132
|
+
* @summary endpoint to patch tag groups transfer parameteres
|
|
14133
|
+
* @param {TransferParametersDto} body
|
|
14134
|
+
* @param {*} [options] Override http request option.
|
|
14135
|
+
* @throws {RequiredError}
|
|
14136
|
+
*/
|
|
14137
|
+
patchTagGroupTransfersParameters(body, options = {}) {
|
|
14138
|
+
// verify required parameter 'body' is not null or undefined
|
|
14139
|
+
if (body === null || body === undefined) {
|
|
14140
|
+
throw new RequiredError('body', 'Required parameter body was null or undefined when calling patchTagGroupTransfersParameters.');
|
|
14141
|
+
}
|
|
14142
|
+
const localVarPath = `/tag-groups-transfers-parameters`;
|
|
14143
|
+
const localVarUrlObj = url.parse(localVarPath, true);
|
|
14144
|
+
const localVarRequestOptions = Object.assign({ method: 'PATCH' }, options);
|
|
14145
|
+
const localVarHeaderParameter = {};
|
|
14146
|
+
const localVarQueryParameter = {};
|
|
14147
|
+
// authentication apiKey required
|
|
14148
|
+
if (configuration && configuration.apiKey) {
|
|
14149
|
+
const localVarApiKeyValue = typeof configuration.apiKey === 'function'
|
|
14150
|
+
? configuration.apiKey("X-Api-Key")
|
|
14151
|
+
: configuration.apiKey;
|
|
14152
|
+
localVarHeaderParameter["X-Api-Key"] = localVarApiKeyValue;
|
|
14153
|
+
}
|
|
14154
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
14155
|
+
localVarUrlObj.query = Object.assign({}, localVarUrlObj.query, localVarQueryParameter, options.query);
|
|
14156
|
+
// fix override query string Detail: https://stackoverflow.com/a/7517673/1077943
|
|
14157
|
+
delete localVarUrlObj.search;
|
|
14158
|
+
localVarRequestOptions.headers = Object.assign({}, localVarHeaderParameter, options.headers);
|
|
14159
|
+
const needsSerialization = ("TransferParametersDto" !== "string") || localVarRequestOptions.headers['Content-Type'] === 'application/json';
|
|
14160
|
+
localVarRequestOptions.body = needsSerialization ? JSON.stringify(body || {}) : (body || "");
|
|
14161
|
+
return {
|
|
14162
|
+
url: url.format(localVarUrlObj),
|
|
14163
|
+
options: localVarRequestOptions,
|
|
14164
|
+
};
|
|
14165
|
+
},
|
|
14166
|
+
};
|
|
14167
|
+
};
|
|
14168
|
+
/**
|
|
14169
|
+
* TagGroupTransfersParametersApi - functional programming interface
|
|
14170
|
+
* @export
|
|
14171
|
+
*/
|
|
14172
|
+
exports.TagGroupTransfersParametersApiFp = function (configuration) {
|
|
14173
|
+
return {
|
|
14174
|
+
/**
|
|
14175
|
+
*
|
|
14176
|
+
* @summary endpoint to retrieve tag groups transfer parameteres
|
|
14177
|
+
* @param {*} [options] Override http request option.
|
|
14178
|
+
* @throws {RequiredError}
|
|
14179
|
+
*/
|
|
14180
|
+
getTagGroupTransfersParameters(options) {
|
|
14181
|
+
const localVarFetchArgs = exports.TagGroupTransfersParametersApiFetchParamCreator(configuration).getTagGroupTransfersParameters(options);
|
|
14182
|
+
return (fetch = isomorphicFetch, basePath = BASE_PATH) => {
|
|
14183
|
+
return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {
|
|
14184
|
+
if (response.status >= 200 && response.status < 300) {
|
|
14185
|
+
return response.json();
|
|
14186
|
+
}
|
|
14187
|
+
else {
|
|
14188
|
+
throw response;
|
|
14189
|
+
}
|
|
14190
|
+
});
|
|
14191
|
+
};
|
|
14192
|
+
},
|
|
14193
|
+
/**
|
|
14194
|
+
*
|
|
14195
|
+
* @summary endpoint to patch tag groups transfer parameteres
|
|
14196
|
+
* @param {TransferParametersDto} body
|
|
14197
|
+
* @param {*} [options] Override http request option.
|
|
14198
|
+
* @throws {RequiredError}
|
|
14199
|
+
*/
|
|
14200
|
+
patchTagGroupTransfersParameters(body, options) {
|
|
14201
|
+
const localVarFetchArgs = exports.TagGroupTransfersParametersApiFetchParamCreator(configuration).patchTagGroupTransfersParameters(body, options);
|
|
14202
|
+
return (fetch = isomorphicFetch, basePath = BASE_PATH) => {
|
|
14203
|
+
return fetch(basePath + localVarFetchArgs.url, localVarFetchArgs.options).then((response) => {
|
|
14204
|
+
if (response.status >= 200 && response.status < 300) {
|
|
14205
|
+
return response.json();
|
|
14206
|
+
}
|
|
14207
|
+
else {
|
|
14208
|
+
throw response;
|
|
14209
|
+
}
|
|
14210
|
+
});
|
|
14211
|
+
};
|
|
14212
|
+
},
|
|
14213
|
+
};
|
|
14214
|
+
};
|
|
14215
|
+
/**
|
|
14216
|
+
* TagGroupTransfersParametersApi - factory interface
|
|
14217
|
+
* @export
|
|
14218
|
+
*/
|
|
14219
|
+
exports.TagGroupTransfersParametersApiFactory = function (configuration, fetch, basePath) {
|
|
14220
|
+
return {
|
|
14221
|
+
/**
|
|
14222
|
+
*
|
|
14223
|
+
* @summary endpoint to retrieve tag groups transfer parameteres
|
|
14224
|
+
* @param {*} [options] Override http request option.
|
|
14225
|
+
* @throws {RequiredError}
|
|
14226
|
+
*/
|
|
14227
|
+
getTagGroupTransfersParameters(options) {
|
|
14228
|
+
return exports.TagGroupTransfersParametersApiFp(configuration).getTagGroupTransfersParameters(options)(fetch, basePath);
|
|
14229
|
+
},
|
|
14230
|
+
/**
|
|
14231
|
+
*
|
|
14232
|
+
* @summary endpoint to patch tag groups transfer parameteres
|
|
14233
|
+
* @param {TransferParametersDto} body
|
|
14234
|
+
* @param {*} [options] Override http request option.
|
|
14235
|
+
* @throws {RequiredError}
|
|
14236
|
+
*/
|
|
14237
|
+
patchTagGroupTransfersParameters(body, options) {
|
|
14238
|
+
return exports.TagGroupTransfersParametersApiFp(configuration).patchTagGroupTransfersParameters(body, options)(fetch, basePath);
|
|
14239
|
+
},
|
|
14240
|
+
};
|
|
14241
|
+
};
|
|
14242
|
+
/**
|
|
14243
|
+
* TagGroupTransfersParametersApi - object-oriented interface
|
|
14244
|
+
* @export
|
|
14245
|
+
* @class TagGroupTransfersParametersApi
|
|
14246
|
+
* @extends {BaseAPI}
|
|
14247
|
+
*/
|
|
14248
|
+
class TagGroupTransfersParametersApi extends BaseAPI {
|
|
14249
|
+
/**
|
|
14250
|
+
*
|
|
14251
|
+
* @summary endpoint to retrieve tag groups transfer parameteres
|
|
14252
|
+
* @param {*} [options] Override http request option.
|
|
14253
|
+
* @throws {RequiredError}
|
|
14254
|
+
* @memberof TagGroupTransfersParametersApi
|
|
14255
|
+
*/
|
|
14256
|
+
getTagGroupTransfersParameters(options) {
|
|
14257
|
+
return exports.TagGroupTransfersParametersApiFp(this.configuration).getTagGroupTransfersParameters(options)(this.fetch, this.basePath);
|
|
14258
|
+
}
|
|
14259
|
+
/**
|
|
14260
|
+
*
|
|
14261
|
+
* @summary endpoint to patch tag groups transfer parameteres
|
|
14262
|
+
* @param {TransferParametersDto} body
|
|
14263
|
+
* @param {*} [options] Override http request option.
|
|
14264
|
+
* @throws {RequiredError}
|
|
14265
|
+
* @memberof TagGroupTransfersParametersApi
|
|
14266
|
+
*/
|
|
14267
|
+
patchTagGroupTransfersParameters(body, options) {
|
|
14268
|
+
return exports.TagGroupTransfersParametersApiFp(this.configuration).patchTagGroupTransfersParameters(body, options)(this.fetch, this.basePath);
|
|
14269
|
+
}
|
|
14270
|
+
}
|
|
14271
|
+
exports.TagGroupTransfersParametersApi = TagGroupTransfersParametersApi;
|
|
13684
14272
|
/**
|
|
13685
14273
|
* TagGroupsApi - fetch parameter creator
|
|
13686
14274
|
* @export
|