yellowgrid-api-ts 3.2.238 → 3.2.239
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 +3 -0
- package/README.md +3 -0
- package/api.ts +180 -0
- package/dist/api.d.ts +129 -0
- package/dist/api.js +125 -4
- package/docs/MiscApi.md +63 -0
- package/docs/PasswordSenderDTO.md +37 -0
- package/docs/PasswordSenderEntity.md +33 -0
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
|
@@ -113,6 +113,7 @@ docs/ItemEntity.md
|
|
|
113
113
|
docs/LinkedOrderEntity.md
|
|
114
114
|
docs/MFARequiredModel.md
|
|
115
115
|
docs/MacAddressDTO.md
|
|
116
|
+
docs/MiscApi.md
|
|
116
117
|
docs/MonthlyUsageModel.md
|
|
117
118
|
docs/MultiTenantChangeResponseModel.md
|
|
118
119
|
docs/MyPBXToolsApi.md
|
|
@@ -140,6 +141,8 @@ docs/OrderedItemEntity.md
|
|
|
140
141
|
docs/OrderedItemModel.md
|
|
141
142
|
docs/OrdersApi.md
|
|
142
143
|
docs/PartnerDTO.md
|
|
144
|
+
docs/PasswordSenderDTO.md
|
|
145
|
+
docs/PasswordSenderEntity.md
|
|
143
146
|
docs/PatchUpdateAccountCnameRequest.md
|
|
144
147
|
docs/PatchUpdateAccountCompanyNumberRequest.md
|
|
145
148
|
docs/PatchUpdateAccountContactPasswordRequest.md
|
package/README.md
CHANGED
|
@@ -177,6 +177,7 @@ Class | Method | HTTP request | Description
|
|
|
177
177
|
*Class3CXMultiTenantApi* | [**postGetMtNewDdis**](docs/Class3CXMultiTenantApi.md#postgetmtnewddis) | **POST** /tcx/mt/changes/ddis | Get 3CX MT New DDIs
|
|
178
178
|
*Class3CXMultiTenantApi* | [**postGetTenants**](docs/Class3CXMultiTenantApi.md#postgettenants) | **POST** /tcx/mt/tenants | Add 3CX MT Tenant
|
|
179
179
|
*Class3CXMultiTenantApi* | [**postTrackMtChange**](docs/Class3CXMultiTenantApi.md#posttrackmtchange) | **POST** /tcx/mt/changes/track | Track 3CX MT Change
|
|
180
|
+
*MiscApi* | [**postSendPassword**](docs/MiscApi.md#postsendpassword) | **POST** /admin/password/send |
|
|
180
181
|
*MyPBXToolsApi* | [**getGetRecording**](docs/MyPBXToolsApi.md#getgetrecording) | **GET** /mypbxtools/recordings | Fetch recording from a 3CX instance
|
|
181
182
|
*NumberPortingApi* | [**deleteGetAdminNumberPort**](docs/NumberPortingApi.md#deletegetadminnumberport) | **DELETE** /admin/sip/numbers/ports/{id} |
|
|
182
183
|
*NumberPortingApi* | [**getCreateNumberPort**](docs/NumberPortingApi.md#getcreatenumberport) | **GET** /sip/numbers/ports |
|
|
@@ -451,6 +452,8 @@ Class | Method | HTTP request | Description
|
|
|
451
452
|
- [OrderedItemEntity](docs/OrderedItemEntity.md)
|
|
452
453
|
- [OrderedItemModel](docs/OrderedItemModel.md)
|
|
453
454
|
- [PartnerDTO](docs/PartnerDTO.md)
|
|
455
|
+
- [PasswordSenderDTO](docs/PasswordSenderDTO.md)
|
|
456
|
+
- [PasswordSenderEntity](docs/PasswordSenderEntity.md)
|
|
454
457
|
- [PatchUpdateAccountCnameRequest](docs/PatchUpdateAccountCnameRequest.md)
|
|
455
458
|
- [PatchUpdateAccountCompanyNumberRequest](docs/PatchUpdateAccountCompanyNumberRequest.md)
|
|
456
459
|
- [PatchUpdateAccountContactPasswordRequest](docs/PatchUpdateAccountContactPasswordRequest.md)
|
package/api.ts
CHANGED
|
@@ -977,6 +977,7 @@ export const AuditLogEntityTypeEnum = {
|
|
|
977
977
|
NumberPortNotes: 'number_port_notes',
|
|
978
978
|
PopsOfflineInstances: 'pops_offline_instances',
|
|
979
979
|
PopsOrderedItems: 'pops_ordered_items',
|
|
980
|
+
PopsPasswordSender: 'pops_password_sender',
|
|
980
981
|
PopsPrizes: 'pops_prizes',
|
|
981
982
|
PopsPrinters: 'pops_printers',
|
|
982
983
|
PopsPromoCodes: 'pops_promo_codes',
|
|
@@ -4441,6 +4442,89 @@ export interface PartnerDTO {
|
|
|
4441
4442
|
*/
|
|
4442
4443
|
'customer'?: AccountSummaryDTO | null;
|
|
4443
4444
|
}
|
|
4445
|
+
/**
|
|
4446
|
+
* Password Sender Request
|
|
4447
|
+
*/
|
|
4448
|
+
export interface PasswordSenderDTO {
|
|
4449
|
+
/**
|
|
4450
|
+
* Username
|
|
4451
|
+
*/
|
|
4452
|
+
'username'?: string;
|
|
4453
|
+
/**
|
|
4454
|
+
* Password
|
|
4455
|
+
*/
|
|
4456
|
+
'password'?: string | null;
|
|
4457
|
+
/**
|
|
4458
|
+
* Expiry Interval
|
|
4459
|
+
*/
|
|
4460
|
+
'expiryInterval'?: number | null;
|
|
4461
|
+
/**
|
|
4462
|
+
* Interval Type
|
|
4463
|
+
*/
|
|
4464
|
+
'intervalType'?: PasswordSenderDTOIntervalTypeEnum | null;
|
|
4465
|
+
/**
|
|
4466
|
+
* Expiry
|
|
4467
|
+
*/
|
|
4468
|
+
'expiry'?: string | null;
|
|
4469
|
+
/**
|
|
4470
|
+
* Recipient
|
|
4471
|
+
*/
|
|
4472
|
+
'recipient'?: Array<string>;
|
|
4473
|
+
/**
|
|
4474
|
+
* URL
|
|
4475
|
+
*/
|
|
4476
|
+
'url'?: string | null;
|
|
4477
|
+
/**
|
|
4478
|
+
* Description
|
|
4479
|
+
*/
|
|
4480
|
+
'description'?: string | null;
|
|
4481
|
+
/**
|
|
4482
|
+
* Password URL
|
|
4483
|
+
*/
|
|
4484
|
+
'passwordUrl'?: string | null;
|
|
4485
|
+
}
|
|
4486
|
+
|
|
4487
|
+
export const PasswordSenderDTOIntervalTypeEnum = {
|
|
4488
|
+
Minute: 'Minute',
|
|
4489
|
+
Hour: 'Hour',
|
|
4490
|
+
Day: 'Day',
|
|
4491
|
+
} as const;
|
|
4492
|
+
|
|
4493
|
+
export type PasswordSenderDTOIntervalTypeEnum = typeof PasswordSenderDTOIntervalTypeEnum[keyof typeof PasswordSenderDTOIntervalTypeEnum];
|
|
4494
|
+
|
|
4495
|
+
/**
|
|
4496
|
+
* PasswordSenderEntity
|
|
4497
|
+
*/
|
|
4498
|
+
export interface PasswordSenderEntity {
|
|
4499
|
+
/**
|
|
4500
|
+
* uniqueId
|
|
4501
|
+
*/
|
|
4502
|
+
'uniqueId'?: string;
|
|
4503
|
+
/**
|
|
4504
|
+
* url
|
|
4505
|
+
*/
|
|
4506
|
+
'url'?: string;
|
|
4507
|
+
/**
|
|
4508
|
+
* username
|
|
4509
|
+
*/
|
|
4510
|
+
'username'?: string;
|
|
4511
|
+
/**
|
|
4512
|
+
* password
|
|
4513
|
+
*/
|
|
4514
|
+
'password'?: string;
|
|
4515
|
+
/**
|
|
4516
|
+
* expiryTime
|
|
4517
|
+
*/
|
|
4518
|
+
'expiryTime'?: string;
|
|
4519
|
+
/**
|
|
4520
|
+
* emailRecipient
|
|
4521
|
+
*/
|
|
4522
|
+
'emailRecipient'?: string;
|
|
4523
|
+
/**
|
|
4524
|
+
* description
|
|
4525
|
+
*/
|
|
4526
|
+
'description'?: string;
|
|
4527
|
+
}
|
|
4444
4528
|
export interface PatchUpdateAccountCnameRequest {
|
|
4445
4529
|
/**
|
|
4446
4530
|
* CNAME
|
|
@@ -18045,6 +18129,102 @@ export const GetGetTenantsStatusEnum = {
|
|
|
18045
18129
|
export type GetGetTenantsStatusEnum = typeof GetGetTenantsStatusEnum[keyof typeof GetGetTenantsStatusEnum];
|
|
18046
18130
|
|
|
18047
18131
|
|
|
18132
|
+
/**
|
|
18133
|
+
* MiscApi - axios parameter creator
|
|
18134
|
+
*/
|
|
18135
|
+
export const MiscApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
18136
|
+
return {
|
|
18137
|
+
/**
|
|
18138
|
+
* Share Credentials
|
|
18139
|
+
* @param {PasswordSenderDTO} [passwordSenderDTO] Password Sender Request
|
|
18140
|
+
* @param {*} [options] Override http request option.
|
|
18141
|
+
* @throws {RequiredError}
|
|
18142
|
+
*/
|
|
18143
|
+
postSendPassword: async (passwordSenderDTO?: PasswordSenderDTO, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
18144
|
+
const localVarPath = `/admin/password/send`;
|
|
18145
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
18146
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
18147
|
+
let baseOptions;
|
|
18148
|
+
if (configuration) {
|
|
18149
|
+
baseOptions = configuration.baseOptions;
|
|
18150
|
+
}
|
|
18151
|
+
|
|
18152
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
18153
|
+
const localVarHeaderParameter = {} as any;
|
|
18154
|
+
const localVarQueryParameter = {} as any;
|
|
18155
|
+
|
|
18156
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
18157
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
18158
|
+
|
|
18159
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
18160
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
18161
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
18162
|
+
localVarRequestOptions.data = serializeDataIfNeeded(passwordSenderDTO, localVarRequestOptions, configuration)
|
|
18163
|
+
|
|
18164
|
+
return {
|
|
18165
|
+
url: toPathString(localVarUrlObj),
|
|
18166
|
+
options: localVarRequestOptions,
|
|
18167
|
+
};
|
|
18168
|
+
},
|
|
18169
|
+
}
|
|
18170
|
+
};
|
|
18171
|
+
|
|
18172
|
+
/**
|
|
18173
|
+
* MiscApi - functional programming interface
|
|
18174
|
+
*/
|
|
18175
|
+
export const MiscApiFp = function(configuration?: Configuration) {
|
|
18176
|
+
const localVarAxiosParamCreator = MiscApiAxiosParamCreator(configuration)
|
|
18177
|
+
return {
|
|
18178
|
+
/**
|
|
18179
|
+
* Share Credentials
|
|
18180
|
+
* @param {PasswordSenderDTO} [passwordSenderDTO] Password Sender Request
|
|
18181
|
+
* @param {*} [options] Override http request option.
|
|
18182
|
+
* @throws {RequiredError}
|
|
18183
|
+
*/
|
|
18184
|
+
async postSendPassword(passwordSenderDTO?: PasswordSenderDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PasswordSenderDTO>> {
|
|
18185
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.postSendPassword(passwordSenderDTO, options);
|
|
18186
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
18187
|
+
const localVarOperationServerBasePath = operationServerMap['MiscApi.postSendPassword']?.[localVarOperationServerIndex]?.url;
|
|
18188
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
18189
|
+
},
|
|
18190
|
+
}
|
|
18191
|
+
};
|
|
18192
|
+
|
|
18193
|
+
/**
|
|
18194
|
+
* MiscApi - factory interface
|
|
18195
|
+
*/
|
|
18196
|
+
export const MiscApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
18197
|
+
const localVarFp = MiscApiFp(configuration)
|
|
18198
|
+
return {
|
|
18199
|
+
/**
|
|
18200
|
+
* Share Credentials
|
|
18201
|
+
* @param {PasswordSenderDTO} [passwordSenderDTO] Password Sender Request
|
|
18202
|
+
* @param {*} [options] Override http request option.
|
|
18203
|
+
* @throws {RequiredError}
|
|
18204
|
+
*/
|
|
18205
|
+
postSendPassword(passwordSenderDTO?: PasswordSenderDTO, options?: RawAxiosRequestConfig): AxiosPromise<PasswordSenderDTO> {
|
|
18206
|
+
return localVarFp.postSendPassword(passwordSenderDTO, options).then((request) => request(axios, basePath));
|
|
18207
|
+
},
|
|
18208
|
+
};
|
|
18209
|
+
};
|
|
18210
|
+
|
|
18211
|
+
/**
|
|
18212
|
+
* MiscApi - object-oriented interface
|
|
18213
|
+
*/
|
|
18214
|
+
export class MiscApi extends BaseAPI {
|
|
18215
|
+
/**
|
|
18216
|
+
* Share Credentials
|
|
18217
|
+
* @param {PasswordSenderDTO} [passwordSenderDTO] Password Sender Request
|
|
18218
|
+
* @param {*} [options] Override http request option.
|
|
18219
|
+
* @throws {RequiredError}
|
|
18220
|
+
*/
|
|
18221
|
+
public postSendPassword(passwordSenderDTO?: PasswordSenderDTO, options?: RawAxiosRequestConfig) {
|
|
18222
|
+
return MiscApiFp(this.configuration).postSendPassword(passwordSenderDTO, options).then((request) => request(this.axios, this.basePath));
|
|
18223
|
+
}
|
|
18224
|
+
}
|
|
18225
|
+
|
|
18226
|
+
|
|
18227
|
+
|
|
18048
18228
|
/**
|
|
18049
18229
|
* MyPBXToolsApi - axios parameter creator
|
|
18050
18230
|
*/
|
package/dist/api.d.ts
CHANGED
|
@@ -956,6 +956,7 @@ export declare const AuditLogEntityTypeEnum: {
|
|
|
956
956
|
readonly NumberPortNotes: "number_port_notes";
|
|
957
957
|
readonly PopsOfflineInstances: "pops_offline_instances";
|
|
958
958
|
readonly PopsOrderedItems: "pops_ordered_items";
|
|
959
|
+
readonly PopsPasswordSender: "pops_password_sender";
|
|
959
960
|
readonly PopsPrizes: "pops_prizes";
|
|
960
961
|
readonly PopsPrinters: "pops_printers";
|
|
961
962
|
readonly PopsPromoCodes: "pops_promo_codes";
|
|
@@ -4393,6 +4394,86 @@ export interface PartnerDTO {
|
|
|
4393
4394
|
*/
|
|
4394
4395
|
'customer'?: AccountSummaryDTO | null;
|
|
4395
4396
|
}
|
|
4397
|
+
/**
|
|
4398
|
+
* Password Sender Request
|
|
4399
|
+
*/
|
|
4400
|
+
export interface PasswordSenderDTO {
|
|
4401
|
+
/**
|
|
4402
|
+
* Username
|
|
4403
|
+
*/
|
|
4404
|
+
'username'?: string;
|
|
4405
|
+
/**
|
|
4406
|
+
* Password
|
|
4407
|
+
*/
|
|
4408
|
+
'password'?: string | null;
|
|
4409
|
+
/**
|
|
4410
|
+
* Expiry Interval
|
|
4411
|
+
*/
|
|
4412
|
+
'expiryInterval'?: number | null;
|
|
4413
|
+
/**
|
|
4414
|
+
* Interval Type
|
|
4415
|
+
*/
|
|
4416
|
+
'intervalType'?: PasswordSenderDTOIntervalTypeEnum | null;
|
|
4417
|
+
/**
|
|
4418
|
+
* Expiry
|
|
4419
|
+
*/
|
|
4420
|
+
'expiry'?: string | null;
|
|
4421
|
+
/**
|
|
4422
|
+
* Recipient
|
|
4423
|
+
*/
|
|
4424
|
+
'recipient'?: Array<string>;
|
|
4425
|
+
/**
|
|
4426
|
+
* URL
|
|
4427
|
+
*/
|
|
4428
|
+
'url'?: string | null;
|
|
4429
|
+
/**
|
|
4430
|
+
* Description
|
|
4431
|
+
*/
|
|
4432
|
+
'description'?: string | null;
|
|
4433
|
+
/**
|
|
4434
|
+
* Password URL
|
|
4435
|
+
*/
|
|
4436
|
+
'passwordUrl'?: string | null;
|
|
4437
|
+
}
|
|
4438
|
+
export declare const PasswordSenderDTOIntervalTypeEnum: {
|
|
4439
|
+
readonly Minute: "Minute";
|
|
4440
|
+
readonly Hour: "Hour";
|
|
4441
|
+
readonly Day: "Day";
|
|
4442
|
+
};
|
|
4443
|
+
export type PasswordSenderDTOIntervalTypeEnum = typeof PasswordSenderDTOIntervalTypeEnum[keyof typeof PasswordSenderDTOIntervalTypeEnum];
|
|
4444
|
+
/**
|
|
4445
|
+
* PasswordSenderEntity
|
|
4446
|
+
*/
|
|
4447
|
+
export interface PasswordSenderEntity {
|
|
4448
|
+
/**
|
|
4449
|
+
* uniqueId
|
|
4450
|
+
*/
|
|
4451
|
+
'uniqueId'?: string;
|
|
4452
|
+
/**
|
|
4453
|
+
* url
|
|
4454
|
+
*/
|
|
4455
|
+
'url'?: string;
|
|
4456
|
+
/**
|
|
4457
|
+
* username
|
|
4458
|
+
*/
|
|
4459
|
+
'username'?: string;
|
|
4460
|
+
/**
|
|
4461
|
+
* password
|
|
4462
|
+
*/
|
|
4463
|
+
'password'?: string;
|
|
4464
|
+
/**
|
|
4465
|
+
* expiryTime
|
|
4466
|
+
*/
|
|
4467
|
+
'expiryTime'?: string;
|
|
4468
|
+
/**
|
|
4469
|
+
* emailRecipient
|
|
4470
|
+
*/
|
|
4471
|
+
'emailRecipient'?: string;
|
|
4472
|
+
/**
|
|
4473
|
+
* description
|
|
4474
|
+
*/
|
|
4475
|
+
'description'?: string;
|
|
4476
|
+
}
|
|
4396
4477
|
export interface PatchUpdateAccountCnameRequest {
|
|
4397
4478
|
/**
|
|
4398
4479
|
* CNAME
|
|
@@ -13103,6 +13184,54 @@ export declare const GetGetTenantsStatusEnum: {
|
|
|
13103
13184
|
readonly FailedOver: "Failed Over";
|
|
13104
13185
|
};
|
|
13105
13186
|
export type GetGetTenantsStatusEnum = typeof GetGetTenantsStatusEnum[keyof typeof GetGetTenantsStatusEnum];
|
|
13187
|
+
/**
|
|
13188
|
+
* MiscApi - axios parameter creator
|
|
13189
|
+
*/
|
|
13190
|
+
export declare const MiscApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
13191
|
+
/**
|
|
13192
|
+
* Share Credentials
|
|
13193
|
+
* @param {PasswordSenderDTO} [passwordSenderDTO] Password Sender Request
|
|
13194
|
+
* @param {*} [options] Override http request option.
|
|
13195
|
+
* @throws {RequiredError}
|
|
13196
|
+
*/
|
|
13197
|
+
postSendPassword: (passwordSenderDTO?: PasswordSenderDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13198
|
+
};
|
|
13199
|
+
/**
|
|
13200
|
+
* MiscApi - functional programming interface
|
|
13201
|
+
*/
|
|
13202
|
+
export declare const MiscApiFp: (configuration?: Configuration) => {
|
|
13203
|
+
/**
|
|
13204
|
+
* Share Credentials
|
|
13205
|
+
* @param {PasswordSenderDTO} [passwordSenderDTO] Password Sender Request
|
|
13206
|
+
* @param {*} [options] Override http request option.
|
|
13207
|
+
* @throws {RequiredError}
|
|
13208
|
+
*/
|
|
13209
|
+
postSendPassword(passwordSenderDTO?: PasswordSenderDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PasswordSenderDTO>>;
|
|
13210
|
+
};
|
|
13211
|
+
/**
|
|
13212
|
+
* MiscApi - factory interface
|
|
13213
|
+
*/
|
|
13214
|
+
export declare const MiscApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
13215
|
+
/**
|
|
13216
|
+
* Share Credentials
|
|
13217
|
+
* @param {PasswordSenderDTO} [passwordSenderDTO] Password Sender Request
|
|
13218
|
+
* @param {*} [options] Override http request option.
|
|
13219
|
+
* @throws {RequiredError}
|
|
13220
|
+
*/
|
|
13221
|
+
postSendPassword(passwordSenderDTO?: PasswordSenderDTO, options?: RawAxiosRequestConfig): AxiosPromise<PasswordSenderDTO>;
|
|
13222
|
+
};
|
|
13223
|
+
/**
|
|
13224
|
+
* MiscApi - object-oriented interface
|
|
13225
|
+
*/
|
|
13226
|
+
export declare class MiscApi extends BaseAPI {
|
|
13227
|
+
/**
|
|
13228
|
+
* Share Credentials
|
|
13229
|
+
* @param {PasswordSenderDTO} [passwordSenderDTO] Password Sender Request
|
|
13230
|
+
* @param {*} [options] Override http request option.
|
|
13231
|
+
* @throws {RequiredError}
|
|
13232
|
+
*/
|
|
13233
|
+
postSendPassword(passwordSenderDTO?: PasswordSenderDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PasswordSenderDTO, any, {}>>;
|
|
13234
|
+
}
|
|
13106
13235
|
/**
|
|
13107
13236
|
* MyPBXToolsApi - axios parameter creator
|
|
13108
13237
|
*/
|
package/dist/api.js
CHANGED
|
@@ -84,10 +84,10 @@ var __spreadArray = (this && this.__spreadArray) || function (to, from, pack) {
|
|
|
84
84
|
return to.concat(ar || Array.prototype.slice.call(from));
|
|
85
85
|
};
|
|
86
86
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
87
|
-
exports.
|
|
88
|
-
exports.
|
|
89
|
-
exports.
|
|
90
|
-
exports.PostAddWebhookWebhookUriEnum = exports.WebhooksApi = exports.WebhooksApiFactory = exports.WebhooksApiFp = exports.WebhooksApiAxiosParamCreator = exports.TicketsApi = exports.TicketsApiFactory = exports.TicketsApiFp = exports.TicketsApiAxiosParamCreator = exports.SystemApi = exports.SystemApiFactory = exports.SystemApiFp = exports.SystemApiAxiosParamCreator = exports.SuppliersApi = exports.SuppliersApiFactory = exports.SuppliersApiFp = exports.SuppliersApiAxiosParamCreator = exports.StockManagementApi = exports.StockManagementApiFactory = exports.StockManagementApiFp = exports.StockManagementApiAxiosParamCreator = exports.ShippingApi = void 0;
|
|
87
|
+
exports.BillingApiAxiosParamCreator = exports.PatchSetPrizePromoStateEnum = exports.PatchSetPortalAccessStateEnum = exports.PatchSetOnHoldStateEnum = exports.PatchSetAccountStatusStateEnum = exports.AccountsApi = exports.AccountsApiFactory = exports.AccountsApiFp = exports.AccountsApiAxiosParamCreator = exports.UpgradeRequestModelSchoolTypeEnum = exports.UpgradeRequestModelLicenceTypeEnum = exports.TcxWizardModelInstallationStatusEnum = exports.TcxWizardModelInstallTypeEnum = exports.TcxSetupEntityRegionEnum = exports.TcxSetupEntityInstallTypeEnum = exports.TcxMultiTenantModelPackageEnum = exports.StockReportItemModelCurrencyEnum = exports.StockOrderModelPaidEnum = exports.StockOrderModelDeliveryMethodEnum = exports.SmsResponseModelEventTypeEnum = exports.SmsPhoneNumberModelStatusEnum = exports.SmsAccountRequestDTOTypeEnum = exports.SmsAccountRequestDTOProviderEnum = exports.SipTrunkChangeResponseModelTypeEnum = exports.ShippingServiceModelCourierEnum = exports.ShippingServiceDTOCourierEnum = exports.ShippingRequestDTOPrinterEnum = exports.ShippingRequestDTOCourierEnum = exports.ShipmentRequestDTOCourierEnum = exports.ShipmentDTOCourierEnum = exports.ServiceStatusDTOStatusEnum = exports.ServiceHealthDTOGlobalStatusEnum = exports.ProspectDTOStatusEnum = exports.PatchUpdateTcxHostingPriceListRequestPriceListEnum = exports.PatchUpdatePriceListRequestPriceListEnum = exports.PasswordSenderDTOIntervalTypeEnum = exports.OrderTotalModelCurrencyEnum = exports.OrderRequestModelSchoolTypeEnum = exports.OrderRequestModelLicenceTypeEnum = exports.MultiTenantChangeResponseModelTypeEnum = exports.ItemDiscountEntityTypeEnum = exports.HostingRegionDTOCodeEnum = exports.HostingChangeResponseModelTypeEnum = exports.EventDTOStatusEnum = exports.DivertResponseModelStatusEnum = exports.AuditLogEntityTypeEnum = exports.AuditLogEntityActionEnum = exports.AdminUserModelPermissionsEnum = exports.AdminUserModelRoleEnum = exports.AdminOrderRequestDTOPaymentMethodEnum = void 0;
|
|
88
|
+
exports.OAuth20ApiFp = exports.OAuth20ApiAxiosParamCreator = exports.NumberPortingApi = exports.NumberPortingApiFactory = exports.NumberPortingApiFp = exports.NumberPortingApiAxiosParamCreator = exports.MyPBXToolsApi = exports.MyPBXToolsApiFactory = exports.MyPBXToolsApiFp = exports.MyPBXToolsApiAxiosParamCreator = exports.MiscApi = exports.MiscApiFactory = exports.MiscApiFp = exports.MiscApiAxiosParamCreator = exports.GetGetTenantsStatusEnum = exports.Class3CXMultiTenantApi = exports.Class3CXMultiTenantApiFactory = exports.Class3CXMultiTenantApiFp = exports.Class3CXMultiTenantApiAxiosParamCreator = exports.GetGetPriceSchoolTypeEnum = exports.GetGetPriceLicenceTypeEnum = exports.Class3CXIntegrationsApi = exports.Class3CXIntegrationsApiFactory = exports.Class3CXIntegrationsApiFp = exports.Class3CXIntegrationsApiAxiosParamCreator = exports.PostResizeInstanceSizeEnum = exports.PostFailoverInstanceTypeEnum = exports.GetGetInstallationsInstallTypeEnum = exports.GetGetInstallationsHostingEnum = exports.GetGetInstallationsStatusEnum = exports.Class3CXInstallationsApi = exports.Class3CXInstallationsApiFactory = exports.Class3CXInstallationsApiFp = exports.Class3CXInstallationsApiAxiosParamCreator = exports.Class3CXInstallationWizardApi = exports.Class3CXInstallationWizardApiFactory = exports.Class3CXInstallationWizardApiFp = exports.Class3CXInstallationWizardApiAxiosParamCreator = exports.Class3CXApi = exports.Class3CXApiFactory = exports.Class3CXApiFp = exports.Class3CXApiAxiosParamCreator = exports.GetGetCrmActivitiesTypeEnum = exports.CRMApi = exports.CRMApiFactory = exports.CRMApiFp = exports.CRMApiAxiosParamCreator = exports.BillingApi = exports.BillingApiFactory = exports.BillingApiFp = void 0;
|
|
89
|
+
exports.ServicesApiFp = exports.ServicesApiAxiosParamCreator = exports.SMSApi = exports.SMSApiFactory = exports.SMSApiFp = exports.SMSApiAxiosParamCreator = exports.SIPTrunksApi = exports.SIPTrunksApiFactory = exports.SIPTrunksApiFp = exports.SIPTrunksApiAxiosParamCreator = exports.ReportsApi = exports.ReportsApiFactory = exports.ReportsApiFp = exports.ReportsApiAxiosParamCreator = exports.ProvisioningApi = exports.ProvisioningApiFactory = exports.ProvisioningApiFp = exports.ProvisioningApiAxiosParamCreator = exports.ProspectsApi = exports.ProspectsApiFactory = exports.ProspectsApiFp = exports.ProspectsApiAxiosParamCreator = exports.GetGetLegacyStockListFormatEnum = exports.ProductsApi = exports.ProductsApiFactory = exports.ProductsApiFp = exports.ProductsApiAxiosParamCreator = exports.PostSendPriceListCategoryEnum = exports.PostSendPriceListFormatEnum = exports.PostSendPriceListTypeEnum = exports.GetGetPriceListCategoryEnum = exports.GetGetPriceListFormatEnum = exports.GetGetPriceListTypeEnum = exports.PricingApi = exports.PricingApiFactory = exports.PricingApiFp = exports.PricingApiAxiosParamCreator = exports.PostPrintShippingLabelPrinterEnum = exports.GetGetOrdersFilterEnum = exports.GetGetOrdersStatusEnum = exports.OrdersApi = exports.OrdersApiFactory = exports.OrdersApiFp = exports.OrdersApiAxiosParamCreator = exports.PostAuthoriseScopeEnum = exports.PostAccessTokenTokenExchangeTypeEnum = exports.PostAccessTokenScopeEnum = exports.PostAccessTokenGrantTypeEnum = exports.OAuth20Api = exports.OAuth20ApiFactory = void 0;
|
|
90
|
+
exports.PostAddWebhookWebhookUriEnum = exports.WebhooksApi = exports.WebhooksApiFactory = exports.WebhooksApiFp = exports.WebhooksApiAxiosParamCreator = exports.TicketsApi = exports.TicketsApiFactory = exports.TicketsApiFp = exports.TicketsApiAxiosParamCreator = exports.SystemApi = exports.SystemApiFactory = exports.SystemApiFp = exports.SystemApiAxiosParamCreator = exports.SuppliersApi = exports.SuppliersApiFactory = exports.SuppliersApiFp = exports.SuppliersApiAxiosParamCreator = exports.StockManagementApi = exports.StockManagementApiFactory = exports.StockManagementApiFp = exports.StockManagementApiAxiosParamCreator = exports.ShippingApi = exports.ShippingApiFactory = exports.ShippingApiFp = exports.ShippingApiAxiosParamCreator = exports.ServicesApi = exports.ServicesApiFactory = void 0;
|
|
91
91
|
var axios_1 = require("axios");
|
|
92
92
|
// Some imports not used depending on template conditions
|
|
93
93
|
// @ts-ignore
|
|
@@ -156,6 +156,7 @@ exports.AuditLogEntityTypeEnum = {
|
|
|
156
156
|
NumberPortNotes: 'number_port_notes',
|
|
157
157
|
PopsOfflineInstances: 'pops_offline_instances',
|
|
158
158
|
PopsOrderedItems: 'pops_ordered_items',
|
|
159
|
+
PopsPasswordSender: 'pops_password_sender',
|
|
159
160
|
PopsPrizes: 'pops_prizes',
|
|
160
161
|
PopsPrinters: 'pops_printers',
|
|
161
162
|
PopsPromoCodes: 'pops_promo_codes',
|
|
@@ -287,6 +288,11 @@ exports.OrderTotalModelCurrencyEnum = {
|
|
|
287
288
|
Thb: 'THB',
|
|
288
289
|
Zar: 'ZAR',
|
|
289
290
|
};
|
|
291
|
+
exports.PasswordSenderDTOIntervalTypeEnum = {
|
|
292
|
+
Minute: 'Minute',
|
|
293
|
+
Hour: 'Hour',
|
|
294
|
+
Day: 'Day',
|
|
295
|
+
};
|
|
290
296
|
exports.PatchUpdatePriceListRequestPriceListEnum = {
|
|
291
297
|
Rrp: 'RRP',
|
|
292
298
|
Trade: 'Trade',
|
|
@@ -11393,6 +11399,121 @@ exports.GetGetTenantsStatusEnum = {
|
|
|
11393
11399
|
Offline: 'Offline',
|
|
11394
11400
|
FailedOver: 'Failed Over',
|
|
11395
11401
|
};
|
|
11402
|
+
/**
|
|
11403
|
+
* MiscApi - axios parameter creator
|
|
11404
|
+
*/
|
|
11405
|
+
var MiscApiAxiosParamCreator = function (configuration) {
|
|
11406
|
+
var _this = this;
|
|
11407
|
+
return {
|
|
11408
|
+
/**
|
|
11409
|
+
* Share Credentials
|
|
11410
|
+
* @param {PasswordSenderDTO} [passwordSenderDTO] Password Sender Request
|
|
11411
|
+
* @param {*} [options] Override http request option.
|
|
11412
|
+
* @throws {RequiredError}
|
|
11413
|
+
*/
|
|
11414
|
+
postSendPassword: function (passwordSenderDTO_1) {
|
|
11415
|
+
var args_1 = [];
|
|
11416
|
+
for (var _i = 1; _i < arguments.length; _i++) {
|
|
11417
|
+
args_1[_i - 1] = arguments[_i];
|
|
11418
|
+
}
|
|
11419
|
+
return __awaiter(_this, __spreadArray([passwordSenderDTO_1], args_1, true), void 0, function (passwordSenderDTO, options) {
|
|
11420
|
+
var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
|
|
11421
|
+
if (options === void 0) { options = {}; }
|
|
11422
|
+
return __generator(this, function (_a) {
|
|
11423
|
+
localVarPath = "/admin/password/send";
|
|
11424
|
+
localVarUrlObj = new URL(localVarPath, common_1.DUMMY_BASE_URL);
|
|
11425
|
+
if (configuration) {
|
|
11426
|
+
baseOptions = configuration.baseOptions;
|
|
11427
|
+
}
|
|
11428
|
+
localVarRequestOptions = __assign(__assign({ method: 'POST' }, baseOptions), options);
|
|
11429
|
+
localVarHeaderParameter = {};
|
|
11430
|
+
localVarQueryParameter = {};
|
|
11431
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
11432
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
11433
|
+
(0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
|
|
11434
|
+
headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
11435
|
+
localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
|
|
11436
|
+
localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(passwordSenderDTO, localVarRequestOptions, configuration);
|
|
11437
|
+
return [2 /*return*/, {
|
|
11438
|
+
url: (0, common_1.toPathString)(localVarUrlObj),
|
|
11439
|
+
options: localVarRequestOptions,
|
|
11440
|
+
}];
|
|
11441
|
+
});
|
|
11442
|
+
});
|
|
11443
|
+
},
|
|
11444
|
+
};
|
|
11445
|
+
};
|
|
11446
|
+
exports.MiscApiAxiosParamCreator = MiscApiAxiosParamCreator;
|
|
11447
|
+
/**
|
|
11448
|
+
* MiscApi - functional programming interface
|
|
11449
|
+
*/
|
|
11450
|
+
var MiscApiFp = function (configuration) {
|
|
11451
|
+
var localVarAxiosParamCreator = (0, exports.MiscApiAxiosParamCreator)(configuration);
|
|
11452
|
+
return {
|
|
11453
|
+
/**
|
|
11454
|
+
* Share Credentials
|
|
11455
|
+
* @param {PasswordSenderDTO} [passwordSenderDTO] Password Sender Request
|
|
11456
|
+
* @param {*} [options] Override http request option.
|
|
11457
|
+
* @throws {RequiredError}
|
|
11458
|
+
*/
|
|
11459
|
+
postSendPassword: function (passwordSenderDTO, options) {
|
|
11460
|
+
return __awaiter(this, void 0, void 0, function () {
|
|
11461
|
+
var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
|
|
11462
|
+
var _a, _b, _c;
|
|
11463
|
+
return __generator(this, function (_d) {
|
|
11464
|
+
switch (_d.label) {
|
|
11465
|
+
case 0: return [4 /*yield*/, localVarAxiosParamCreator.postSendPassword(passwordSenderDTO, options)];
|
|
11466
|
+
case 1:
|
|
11467
|
+
localVarAxiosArgs = _d.sent();
|
|
11468
|
+
localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
|
|
11469
|
+
localVarOperationServerBasePath = (_c = (_b = base_1.operationServerMap['MiscApi.postSendPassword']) === null || _b === void 0 ? void 0 : _b[localVarOperationServerIndex]) === null || _c === void 0 ? void 0 : _c.url;
|
|
11470
|
+
return [2 /*return*/, function (axios, basePath) { return (0, common_1.createRequestFunction)(localVarAxiosArgs, axios_1.default, base_1.BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath); }];
|
|
11471
|
+
}
|
|
11472
|
+
});
|
|
11473
|
+
});
|
|
11474
|
+
},
|
|
11475
|
+
};
|
|
11476
|
+
};
|
|
11477
|
+
exports.MiscApiFp = MiscApiFp;
|
|
11478
|
+
/**
|
|
11479
|
+
* MiscApi - factory interface
|
|
11480
|
+
*/
|
|
11481
|
+
var MiscApiFactory = function (configuration, basePath, axios) {
|
|
11482
|
+
var localVarFp = (0, exports.MiscApiFp)(configuration);
|
|
11483
|
+
return {
|
|
11484
|
+
/**
|
|
11485
|
+
* Share Credentials
|
|
11486
|
+
* @param {PasswordSenderDTO} [passwordSenderDTO] Password Sender Request
|
|
11487
|
+
* @param {*} [options] Override http request option.
|
|
11488
|
+
* @throws {RequiredError}
|
|
11489
|
+
*/
|
|
11490
|
+
postSendPassword: function (passwordSenderDTO, options) {
|
|
11491
|
+
return localVarFp.postSendPassword(passwordSenderDTO, options).then(function (request) { return request(axios, basePath); });
|
|
11492
|
+
},
|
|
11493
|
+
};
|
|
11494
|
+
};
|
|
11495
|
+
exports.MiscApiFactory = MiscApiFactory;
|
|
11496
|
+
/**
|
|
11497
|
+
* MiscApi - object-oriented interface
|
|
11498
|
+
*/
|
|
11499
|
+
var MiscApi = /** @class */ (function (_super) {
|
|
11500
|
+
__extends(MiscApi, _super);
|
|
11501
|
+
function MiscApi() {
|
|
11502
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
11503
|
+
}
|
|
11504
|
+
/**
|
|
11505
|
+
* Share Credentials
|
|
11506
|
+
* @param {PasswordSenderDTO} [passwordSenderDTO] Password Sender Request
|
|
11507
|
+
* @param {*} [options] Override http request option.
|
|
11508
|
+
* @throws {RequiredError}
|
|
11509
|
+
*/
|
|
11510
|
+
MiscApi.prototype.postSendPassword = function (passwordSenderDTO, options) {
|
|
11511
|
+
var _this = this;
|
|
11512
|
+
return (0, exports.MiscApiFp)(this.configuration).postSendPassword(passwordSenderDTO, options).then(function (request) { return request(_this.axios, _this.basePath); });
|
|
11513
|
+
};
|
|
11514
|
+
return MiscApi;
|
|
11515
|
+
}(base_1.BaseAPI));
|
|
11516
|
+
exports.MiscApi = MiscApi;
|
|
11396
11517
|
/**
|
|
11397
11518
|
* MyPBXToolsApi - axios parameter creator
|
|
11398
11519
|
*/
|
package/docs/MiscApi.md
ADDED
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
# MiscApi
|
|
2
|
+
|
|
3
|
+
All URIs are relative to *https://bitbucket.org*
|
|
4
|
+
|
|
5
|
+
|Method | HTTP request | Description|
|
|
6
|
+
|------------- | ------------- | -------------|
|
|
7
|
+
|[**postSendPassword**](#postsendpassword) | **POST** /admin/password/send | |
|
|
8
|
+
|
|
9
|
+
# **postSendPassword**
|
|
10
|
+
> PasswordSenderDTO postSendPassword()
|
|
11
|
+
|
|
12
|
+
Share Credentials
|
|
13
|
+
|
|
14
|
+
### Example
|
|
15
|
+
|
|
16
|
+
```typescript
|
|
17
|
+
import {
|
|
18
|
+
MiscApi,
|
|
19
|
+
Configuration,
|
|
20
|
+
PasswordSenderDTO
|
|
21
|
+
} from 'yellowgrid-api-ts';
|
|
22
|
+
|
|
23
|
+
const configuration = new Configuration();
|
|
24
|
+
const apiInstance = new MiscApi(configuration);
|
|
25
|
+
|
|
26
|
+
let passwordSenderDTO: PasswordSenderDTO; //Password Sender Request (optional)
|
|
27
|
+
|
|
28
|
+
const { status, data } = await apiInstance.postSendPassword(
|
|
29
|
+
passwordSenderDTO
|
|
30
|
+
);
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
### Parameters
|
|
34
|
+
|
|
35
|
+
|Name | Type | Description | Notes|
|
|
36
|
+
|------------- | ------------- | ------------- | -------------|
|
|
37
|
+
| **passwordSenderDTO** | **PasswordSenderDTO**| Password Sender Request | |
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
### Return type
|
|
41
|
+
|
|
42
|
+
**PasswordSenderDTO**
|
|
43
|
+
|
|
44
|
+
### Authorization
|
|
45
|
+
|
|
46
|
+
No authorization required
|
|
47
|
+
|
|
48
|
+
### HTTP request headers
|
|
49
|
+
|
|
50
|
+
- **Content-Type**: application/json
|
|
51
|
+
- **Accept**: application/json
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
### HTTP response details
|
|
55
|
+
| Status code | Description | Response headers |
|
|
56
|
+
|-------------|-------------|------------------|
|
|
57
|
+
|**200** | Password Sender Response | - |
|
|
58
|
+
|**400** | Bad Request | - |
|
|
59
|
+
|**401** | Unauthorised | - |
|
|
60
|
+
|**403** | Access Denied | - |
|
|
61
|
+
|
|
62
|
+
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
|
|
63
|
+
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
# PasswordSenderDTO
|
|
2
|
+
|
|
3
|
+
Password Sender Request
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**username** | **string** | Username | [optional] [default to undefined]
|
|
10
|
+
**password** | **string** | Password | [optional] [default to undefined]
|
|
11
|
+
**expiryInterval** | **number** | Expiry Interval | [optional] [default to undefined]
|
|
12
|
+
**intervalType** | **string** | Interval Type | [optional] [default to undefined]
|
|
13
|
+
**expiry** | **string** | Expiry | [optional] [default to undefined]
|
|
14
|
+
**recipient** | **Array<string>** | Recipient | [optional] [default to undefined]
|
|
15
|
+
**url** | **string** | URL | [optional] [default to undefined]
|
|
16
|
+
**description** | **string** | Description | [optional] [default to undefined]
|
|
17
|
+
**passwordUrl** | **string** | Password URL | [optional] [default to undefined]
|
|
18
|
+
|
|
19
|
+
## Example
|
|
20
|
+
|
|
21
|
+
```typescript
|
|
22
|
+
import { PasswordSenderDTO } from 'yellowgrid-api-ts';
|
|
23
|
+
|
|
24
|
+
const instance: PasswordSenderDTO = {
|
|
25
|
+
username,
|
|
26
|
+
password,
|
|
27
|
+
expiryInterval,
|
|
28
|
+
intervalType,
|
|
29
|
+
expiry,
|
|
30
|
+
recipient,
|
|
31
|
+
url,
|
|
32
|
+
description,
|
|
33
|
+
passwordUrl,
|
|
34
|
+
};
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
# PasswordSenderEntity
|
|
2
|
+
|
|
3
|
+
PasswordSenderEntity
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**uniqueId** | **string** | uniqueId | [optional] [default to undefined]
|
|
10
|
+
**url** | **string** | url | [optional] [default to undefined]
|
|
11
|
+
**username** | **string** | username | [optional] [default to undefined]
|
|
12
|
+
**password** | **string** | password | [optional] [default to undefined]
|
|
13
|
+
**expiryTime** | **string** | expiryTime | [optional] [default to undefined]
|
|
14
|
+
**emailRecipient** | **string** | emailRecipient | [optional] [default to undefined]
|
|
15
|
+
**description** | **string** | description | [optional] [default to undefined]
|
|
16
|
+
|
|
17
|
+
## Example
|
|
18
|
+
|
|
19
|
+
```typescript
|
|
20
|
+
import { PasswordSenderEntity } from 'yellowgrid-api-ts';
|
|
21
|
+
|
|
22
|
+
const instance: PasswordSenderEntity = {
|
|
23
|
+
uniqueId,
|
|
24
|
+
url,
|
|
25
|
+
username,
|
|
26
|
+
password,
|
|
27
|
+
expiryTime,
|
|
28
|
+
emailRecipient,
|
|
29
|
+
description,
|
|
30
|
+
};
|
|
31
|
+
```
|
|
32
|
+
|
|
33
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|