yellowgrid-api-ts 3.0.80 → 3.0.81

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.
@@ -165,6 +165,7 @@ docs/TcxOfficeHoursEntity.md
165
165
  docs/TcxPhoneModel.md
166
166
  docs/TcxPhonesEntity.md
167
167
  docs/TcxSbcEntity.md
168
+ docs/TcxSbcModel.md
168
169
  docs/TcxSetupEntity.md
169
170
  docs/TcxSetupsModel.md
170
171
  docs/TcxSipTrunksEntity.md
package/README.md CHANGED
@@ -346,6 +346,7 @@ Class | Method | HTTP request | Description
346
346
  - [TcxPhoneModel](docs/TcxPhoneModel.md)
347
347
  - [TcxPhonesEntity](docs/TcxPhonesEntity.md)
348
348
  - [TcxSbcEntity](docs/TcxSbcEntity.md)
349
+ - [TcxSbcModel](docs/TcxSbcModel.md)
349
350
  - [TcxSetupEntity](docs/TcxSetupEntity.md)
350
351
  - [TcxSetupsModel](docs/TcxSetupsModel.md)
351
352
  - [TcxSipTrunksEntity](docs/TcxSipTrunksEntity.md)
package/api.ts CHANGED
@@ -7302,6 +7302,109 @@ export interface TcxSbcEntity {
7302
7302
  */
7303
7303
  'technicalContact'?: string;
7304
7304
  }
7305
+ /**
7306
+ * 3CX SBC Model
7307
+ * @export
7308
+ * @interface TcxSbcModel
7309
+ */
7310
+ export interface TcxSbcModel {
7311
+ /**
7312
+ * id
7313
+ * @type {number}
7314
+ * @memberof TcxSbcModel
7315
+ */
7316
+ 'id'?: number;
7317
+ /**
7318
+ * SBC ID
7319
+ * @type {number}
7320
+ * @memberof TcxSbcModel
7321
+ */
7322
+ 'sbcId'?: number;
7323
+ /**
7324
+ * 3CX URL
7325
+ * @type {string}
7326
+ * @memberof TcxSbcModel
7327
+ */
7328
+ 'tcxUrl'?: string;
7329
+ /**
7330
+ * 3CX SBC Auth Key
7331
+ * @type {string}
7332
+ * @memberof TcxSbcModel
7333
+ */
7334
+ 'tcxKey'?: string;
7335
+ /**
7336
+ * Label
7337
+ * @type {string}
7338
+ * @memberof TcxSbcModel
7339
+ */
7340
+ 'label'?: string;
7341
+ /**
7342
+ * IP Address
7343
+ * @type {string}
7344
+ * @memberof TcxSbcModel
7345
+ */
7346
+ 'ipAddress'?: string;
7347
+ /**
7348
+ * Subnet Mask
7349
+ * @type {string}
7350
+ * @memberof TcxSbcModel
7351
+ */
7352
+ 'netmask'?: string;
7353
+ /**
7354
+ * Default Gateway
7355
+ * @type {string}
7356
+ * @memberof TcxSbcModel
7357
+ */
7358
+ 'defaultGateway'?: string;
7359
+ /**
7360
+ * DNS 1
7361
+ * @type {string}
7362
+ * @memberof TcxSbcModel
7363
+ */
7364
+ 'dns1'?: string;
7365
+ /**
7366
+ * DNS 2
7367
+ * @type {string}
7368
+ * @memberof TcxSbcModel
7369
+ */
7370
+ 'dns2'?: string;
7371
+ /**
7372
+ * Site Address Line 1
7373
+ * @type {string}
7374
+ * @memberof TcxSbcModel
7375
+ */
7376
+ 'address1'?: string;
7377
+ /**
7378
+ * Site Address Line 2
7379
+ * @type {string}
7380
+ * @memberof TcxSbcModel
7381
+ */
7382
+ 'address2'?: string;
7383
+ /**
7384
+ * Site City
7385
+ * @type {string}
7386
+ * @memberof TcxSbcModel
7387
+ */
7388
+ 'city'?: string;
7389
+ /**
7390
+ * Site Postal Code
7391
+ * @type {string}
7392
+ * @memberof TcxSbcModel
7393
+ */
7394
+ 'postalCode'?: string;
7395
+ /**
7396
+ * Site Primary Contact
7397
+ * @type {string}
7398
+ * @memberof TcxSbcModel
7399
+ */
7400
+ 'primaryContact'?: string;
7401
+ /**
7402
+ * Site Technical Contact
7403
+ * @type {string}
7404
+ * @memberof TcxSbcModel
7405
+ */
7406
+ 'technicalContact'?: string;
7407
+ }
7305
7408
  /**
7306
7409
  * 3CX Wizard Setup Config
7307
7410
  * @export
@@ -7734,10 +7837,10 @@ export interface TcxWizardModel {
7734
7837
  'phones'?: Array<TcxPhoneModel>;
7735
7838
  /**
7736
7839
  *
7737
- * @type {Array<TcxSbcEntity>}
7840
+ * @type {Array<TcxSbcModel>}
7738
7841
  * @memberof TcxWizardModel
7739
7842
  */
7740
- 'sbcs'?: Array<TcxSbcEntity>;
7843
+ 'sbcs'?: Array<TcxSbcModel>;
7741
7844
  /**
7742
7845
  *
7743
7846
  * @type {TcxSipTrunksEntity}
@@ -9858,11 +9961,11 @@ export const Class3CXInstallationWizardApiAxiosParamCreator = function (configur
9858
9961
  /**
9859
9962
  * Delete 3CX Installation Wizard SBCs
9860
9963
  * @summary Delete 3CX Installation Wizard SBCs
9861
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
9964
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
9862
9965
  * @param {*} [options] Override http request option.
9863
9966
  * @throws {RequiredError}
9864
9967
  */
9865
- deleteAddSbcs: async (tcxSbcEntity?: Array<TcxSbcEntity>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
9968
+ deleteAddSbcs: async (tcxSbcModel?: Array<TcxSbcModel>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
9866
9969
  const localVarPath = `/tcx/wizards/sbcs`;
9867
9970
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
9868
9971
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -9882,7 +9985,7 @@ export const Class3CXInstallationWizardApiAxiosParamCreator = function (configur
9882
9985
  setSearchParams(localVarUrlObj, localVarQueryParameter);
9883
9986
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
9884
9987
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
9885
- localVarRequestOptions.data = serializeDataIfNeeded(tcxSbcEntity, localVarRequestOptions, configuration)
9988
+ localVarRequestOptions.data = serializeDataIfNeeded(tcxSbcModel, localVarRequestOptions, configuration)
9886
9989
 
9887
9990
  return {
9888
9991
  url: toPathString(localVarUrlObj),
@@ -10229,11 +10332,11 @@ export const Class3CXInstallationWizardApiAxiosParamCreator = function (configur
10229
10332
  /**
10230
10333
  * Update 3CX Installation Wizard SBCs
10231
10334
  * @summary Update 3CX Installation Wizard SBCs
10232
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
10335
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
10233
10336
  * @param {*} [options] Override http request option.
10234
10337
  * @throws {RequiredError}
10235
10338
  */
10236
- patchAddSbcs: async (tcxSbcEntity?: Array<TcxSbcEntity>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
10339
+ patchAddSbcs: async (tcxSbcModel?: Array<TcxSbcModel>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
10237
10340
  const localVarPath = `/tcx/wizards/sbcs`;
10238
10341
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
10239
10342
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -10253,7 +10356,7 @@ export const Class3CXInstallationWizardApiAxiosParamCreator = function (configur
10253
10356
  setSearchParams(localVarUrlObj, localVarQueryParameter);
10254
10357
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
10255
10358
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
10256
- localVarRequestOptions.data = serializeDataIfNeeded(tcxSbcEntity, localVarRequestOptions, configuration)
10359
+ localVarRequestOptions.data = serializeDataIfNeeded(tcxSbcModel, localVarRequestOptions, configuration)
10257
10360
 
10258
10361
  return {
10259
10362
  url: toPathString(localVarUrlObj),
@@ -10399,11 +10502,11 @@ export const Class3CXInstallationWizardApiAxiosParamCreator = function (configur
10399
10502
  /**
10400
10503
  * Add SBCs To 3CX Installation Wizard
10401
10504
  * @summary Add SBCs To 3CX Installation Wizard
10402
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
10505
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
10403
10506
  * @param {*} [options] Override http request option.
10404
10507
  * @throws {RequiredError}
10405
10508
  */
10406
- postAddSbcs: async (tcxSbcEntity?: Array<TcxSbcEntity>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
10509
+ postAddSbcs: async (tcxSbcModel?: Array<TcxSbcModel>, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
10407
10510
  const localVarPath = `/tcx/wizards/sbcs`;
10408
10511
  // use dummy base URL string because the URL constructor only accepts absolute URLs.
10409
10512
  const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
@@ -10423,7 +10526,7 @@ export const Class3CXInstallationWizardApiAxiosParamCreator = function (configur
10423
10526
  setSearchParams(localVarUrlObj, localVarQueryParameter);
10424
10527
  let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
10425
10528
  localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
10426
- localVarRequestOptions.data = serializeDataIfNeeded(tcxSbcEntity, localVarRequestOptions, configuration)
10529
+ localVarRequestOptions.data = serializeDataIfNeeded(tcxSbcModel, localVarRequestOptions, configuration)
10427
10530
 
10428
10531
  return {
10429
10532
  url: toPathString(localVarUrlObj),
@@ -10700,12 +10803,12 @@ export const Class3CXInstallationWizardApiFp = function(configuration?: Configur
10700
10803
  /**
10701
10804
  * Delete 3CX Installation Wizard SBCs
10702
10805
  * @summary Delete 3CX Installation Wizard SBCs
10703
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
10806
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
10704
10807
  * @param {*} [options] Override http request option.
10705
10808
  * @throws {RequiredError}
10706
10809
  */
10707
- async deleteAddSbcs(tcxSbcEntity?: Array<TcxSbcEntity>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
10708
- const localVarAxiosArgs = await localVarAxiosParamCreator.deleteAddSbcs(tcxSbcEntity, options);
10810
+ async deleteAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>> {
10811
+ const localVarAxiosArgs = await localVarAxiosParamCreator.deleteAddSbcs(tcxSbcModel, options);
10709
10812
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
10710
10813
  const localVarOperationServerBasePath = operationServerMap['Class3CXInstallationWizardApi.deleteAddSbcs']?.[localVarOperationServerIndex]?.url;
10711
10814
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -10841,12 +10944,12 @@ export const Class3CXInstallationWizardApiFp = function(configuration?: Configur
10841
10944
  /**
10842
10945
  * Update 3CX Installation Wizard SBCs
10843
10946
  * @summary Update 3CX Installation Wizard SBCs
10844
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
10947
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
10845
10948
  * @param {*} [options] Override http request option.
10846
10949
  * @throws {RequiredError}
10847
10950
  */
10848
- async patchAddSbcs(tcxSbcEntity?: Array<TcxSbcEntity>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxSbcEntity>>> {
10849
- const localVarAxiosArgs = await localVarAxiosParamCreator.patchAddSbcs(tcxSbcEntity, options);
10951
+ async patchAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxSbcModel>>> {
10952
+ const localVarAxiosArgs = await localVarAxiosParamCreator.patchAddSbcs(tcxSbcModel, options);
10850
10953
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
10851
10954
  const localVarOperationServerBasePath = operationServerMap['Class3CXInstallationWizardApi.patchAddSbcs']?.[localVarOperationServerIndex]?.url;
10852
10955
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -10906,12 +11009,12 @@ export const Class3CXInstallationWizardApiFp = function(configuration?: Configur
10906
11009
  /**
10907
11010
  * Add SBCs To 3CX Installation Wizard
10908
11011
  * @summary Add SBCs To 3CX Installation Wizard
10909
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
11012
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
10910
11013
  * @param {*} [options] Override http request option.
10911
11014
  * @throws {RequiredError}
10912
11015
  */
10913
- async postAddSbcs(tcxSbcEntity?: Array<TcxSbcEntity>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxSbcEntity>>> {
10914
- const localVarAxiosArgs = await localVarAxiosParamCreator.postAddSbcs(tcxSbcEntity, options);
11016
+ async postAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxSbcModel>>> {
11017
+ const localVarAxiosArgs = await localVarAxiosParamCreator.postAddSbcs(tcxSbcModel, options);
10915
11018
  const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
10916
11019
  const localVarOperationServerBasePath = operationServerMap['Class3CXInstallationWizardApi.postAddSbcs']?.[localVarOperationServerIndex]?.url;
10917
11020
  return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
@@ -11029,12 +11132,12 @@ export const Class3CXInstallationWizardApiFactory = function (configuration?: Co
11029
11132
  /**
11030
11133
  * Delete 3CX Installation Wizard SBCs
11031
11134
  * @summary Delete 3CX Installation Wizard SBCs
11032
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
11135
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
11033
11136
  * @param {*} [options] Override http request option.
11034
11137
  * @throws {RequiredError}
11035
11138
  */
11036
- deleteAddSbcs(tcxSbcEntity?: Array<TcxSbcEntity>, options?: RawAxiosRequestConfig): AxiosPromise<void> {
11037
- return localVarFp.deleteAddSbcs(tcxSbcEntity, options).then((request) => request(axios, basePath));
11139
+ deleteAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): AxiosPromise<void> {
11140
+ return localVarFp.deleteAddSbcs(tcxSbcModel, options).then((request) => request(axios, basePath));
11038
11141
  },
11039
11142
  /**
11040
11143
  * Delete 3CX Installation Wizard
@@ -11137,12 +11240,12 @@ export const Class3CXInstallationWizardApiFactory = function (configuration?: Co
11137
11240
  /**
11138
11241
  * Update 3CX Installation Wizard SBCs
11139
11242
  * @summary Update 3CX Installation Wizard SBCs
11140
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
11243
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
11141
11244
  * @param {*} [options] Override http request option.
11142
11245
  * @throws {RequiredError}
11143
11246
  */
11144
- patchAddSbcs(tcxSbcEntity?: Array<TcxSbcEntity>, options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxSbcEntity>> {
11145
- return localVarFp.patchAddSbcs(tcxSbcEntity, options).then((request) => request(axios, basePath));
11247
+ patchAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxSbcModel>> {
11248
+ return localVarFp.patchAddSbcs(tcxSbcModel, options).then((request) => request(axios, basePath));
11146
11249
  },
11147
11250
  /**
11148
11251
  * Update 3CX Installation Wizard
@@ -11187,12 +11290,12 @@ export const Class3CXInstallationWizardApiFactory = function (configuration?: Co
11187
11290
  /**
11188
11291
  * Add SBCs To 3CX Installation Wizard
11189
11292
  * @summary Add SBCs To 3CX Installation Wizard
11190
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
11293
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
11191
11294
  * @param {*} [options] Override http request option.
11192
11295
  * @throws {RequiredError}
11193
11296
  */
11194
- postAddSbcs(tcxSbcEntity?: Array<TcxSbcEntity>, options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxSbcEntity>> {
11195
- return localVarFp.postAddSbcs(tcxSbcEntity, options).then((request) => request(axios, basePath));
11297
+ postAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxSbcModel>> {
11298
+ return localVarFp.postAddSbcs(tcxSbcModel, options).then((request) => request(axios, basePath));
11196
11299
  },
11197
11300
  /**
11198
11301
  * Build Instance From 3CX Installation Wizard
@@ -11298,13 +11401,13 @@ export class Class3CXInstallationWizardApi extends BaseAPI {
11298
11401
  /**
11299
11402
  * Delete 3CX Installation Wizard SBCs
11300
11403
  * @summary Delete 3CX Installation Wizard SBCs
11301
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
11404
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
11302
11405
  * @param {*} [options] Override http request option.
11303
11406
  * @throws {RequiredError}
11304
11407
  * @memberof Class3CXInstallationWizardApi
11305
11408
  */
11306
- public deleteAddSbcs(tcxSbcEntity?: Array<TcxSbcEntity>, options?: RawAxiosRequestConfig) {
11307
- return Class3CXInstallationWizardApiFp(this.configuration).deleteAddSbcs(tcxSbcEntity, options).then((request) => request(this.axios, this.basePath));
11409
+ public deleteAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig) {
11410
+ return Class3CXInstallationWizardApiFp(this.configuration).deleteAddSbcs(tcxSbcModel, options).then((request) => request(this.axios, this.basePath));
11308
11411
  }
11309
11412
 
11310
11413
  /**
@@ -11428,13 +11531,13 @@ export class Class3CXInstallationWizardApi extends BaseAPI {
11428
11531
  /**
11429
11532
  * Update 3CX Installation Wizard SBCs
11430
11533
  * @summary Update 3CX Installation Wizard SBCs
11431
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
11534
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
11432
11535
  * @param {*} [options] Override http request option.
11433
11536
  * @throws {RequiredError}
11434
11537
  * @memberof Class3CXInstallationWizardApi
11435
11538
  */
11436
- public patchAddSbcs(tcxSbcEntity?: Array<TcxSbcEntity>, options?: RawAxiosRequestConfig) {
11437
- return Class3CXInstallationWizardApiFp(this.configuration).patchAddSbcs(tcxSbcEntity, options).then((request) => request(this.axios, this.basePath));
11539
+ public patchAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig) {
11540
+ return Class3CXInstallationWizardApiFp(this.configuration).patchAddSbcs(tcxSbcModel, options).then((request) => request(this.axios, this.basePath));
11438
11541
  }
11439
11542
 
11440
11543
  /**
@@ -11488,13 +11591,13 @@ export class Class3CXInstallationWizardApi extends BaseAPI {
11488
11591
  /**
11489
11592
  * Add SBCs To 3CX Installation Wizard
11490
11593
  * @summary Add SBCs To 3CX Installation Wizard
11491
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
11594
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
11492
11595
  * @param {*} [options] Override http request option.
11493
11596
  * @throws {RequiredError}
11494
11597
  * @memberof Class3CXInstallationWizardApi
11495
11598
  */
11496
- public postAddSbcs(tcxSbcEntity?: Array<TcxSbcEntity>, options?: RawAxiosRequestConfig) {
11497
- return Class3CXInstallationWizardApiFp(this.configuration).postAddSbcs(tcxSbcEntity, options).then((request) => request(this.axios, this.basePath));
11599
+ public postAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig) {
11600
+ return Class3CXInstallationWizardApiFp(this.configuration).postAddSbcs(tcxSbcModel, options).then((request) => request(this.axios, this.basePath));
11498
11601
  }
11499
11602
 
11500
11603
  /**
package/dist/api.d.ts CHANGED
@@ -7256,6 +7256,109 @@ export interface TcxSbcEntity {
7256
7256
  */
7257
7257
  'technicalContact'?: string;
7258
7258
  }
7259
+ /**
7260
+ * 3CX SBC Model
7261
+ * @export
7262
+ * @interface TcxSbcModel
7263
+ */
7264
+ export interface TcxSbcModel {
7265
+ /**
7266
+ * id
7267
+ * @type {number}
7268
+ * @memberof TcxSbcModel
7269
+ */
7270
+ 'id'?: number;
7271
+ /**
7272
+ * SBC ID
7273
+ * @type {number}
7274
+ * @memberof TcxSbcModel
7275
+ */
7276
+ 'sbcId'?: number;
7277
+ /**
7278
+ * 3CX URL
7279
+ * @type {string}
7280
+ * @memberof TcxSbcModel
7281
+ */
7282
+ 'tcxUrl'?: string;
7283
+ /**
7284
+ * 3CX SBC Auth Key
7285
+ * @type {string}
7286
+ * @memberof TcxSbcModel
7287
+ */
7288
+ 'tcxKey'?: string;
7289
+ /**
7290
+ * Label
7291
+ * @type {string}
7292
+ * @memberof TcxSbcModel
7293
+ */
7294
+ 'label'?: string;
7295
+ /**
7296
+ * IP Address
7297
+ * @type {string}
7298
+ * @memberof TcxSbcModel
7299
+ */
7300
+ 'ipAddress'?: string;
7301
+ /**
7302
+ * Subnet Mask
7303
+ * @type {string}
7304
+ * @memberof TcxSbcModel
7305
+ */
7306
+ 'netmask'?: string;
7307
+ /**
7308
+ * Default Gateway
7309
+ * @type {string}
7310
+ * @memberof TcxSbcModel
7311
+ */
7312
+ 'defaultGateway'?: string;
7313
+ /**
7314
+ * DNS 1
7315
+ * @type {string}
7316
+ * @memberof TcxSbcModel
7317
+ */
7318
+ 'dns1'?: string;
7319
+ /**
7320
+ * DNS 2
7321
+ * @type {string}
7322
+ * @memberof TcxSbcModel
7323
+ */
7324
+ 'dns2'?: string;
7325
+ /**
7326
+ * Site Address Line 1
7327
+ * @type {string}
7328
+ * @memberof TcxSbcModel
7329
+ */
7330
+ 'address1'?: string;
7331
+ /**
7332
+ * Site Address Line 2
7333
+ * @type {string}
7334
+ * @memberof TcxSbcModel
7335
+ */
7336
+ 'address2'?: string;
7337
+ /**
7338
+ * Site City
7339
+ * @type {string}
7340
+ * @memberof TcxSbcModel
7341
+ */
7342
+ 'city'?: string;
7343
+ /**
7344
+ * Site Postal Code
7345
+ * @type {string}
7346
+ * @memberof TcxSbcModel
7347
+ */
7348
+ 'postalCode'?: string;
7349
+ /**
7350
+ * Site Primary Contact
7351
+ * @type {string}
7352
+ * @memberof TcxSbcModel
7353
+ */
7354
+ 'primaryContact'?: string;
7355
+ /**
7356
+ * Site Technical Contact
7357
+ * @type {string}
7358
+ * @memberof TcxSbcModel
7359
+ */
7360
+ 'technicalContact'?: string;
7361
+ }
7259
7362
  /**
7260
7363
  * 3CX Wizard Setup Config
7261
7364
  * @export
@@ -7685,10 +7788,10 @@ export interface TcxWizardModel {
7685
7788
  'phones'?: Array<TcxPhoneModel>;
7686
7789
  /**
7687
7790
  *
7688
- * @type {Array<TcxSbcEntity>}
7791
+ * @type {Array<TcxSbcModel>}
7689
7792
  * @memberof TcxWizardModel
7690
7793
  */
7691
- 'sbcs'?: Array<TcxSbcEntity>;
7794
+ 'sbcs'?: Array<TcxSbcModel>;
7692
7795
  /**
7693
7796
  *
7694
7797
  * @type {TcxSipTrunksEntity}
@@ -8940,11 +9043,11 @@ export declare const Class3CXInstallationWizardApiAxiosParamCreator: (configurat
8940
9043
  /**
8941
9044
  * Delete 3CX Installation Wizard SBCs
8942
9045
  * @summary Delete 3CX Installation Wizard SBCs
8943
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
9046
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
8944
9047
  * @param {*} [options] Override http request option.
8945
9048
  * @throws {RequiredError}
8946
9049
  */
8947
- deleteAddSbcs: (tcxSbcEntity?: Array<TcxSbcEntity>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9050
+ deleteAddSbcs: (tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
8948
9051
  /**
8949
9052
  * Delete 3CX Installation Wizard
8950
9053
  * @summary Delete 3CX Installation Wizard
@@ -9026,11 +9129,11 @@ export declare const Class3CXInstallationWizardApiAxiosParamCreator: (configurat
9026
9129
  /**
9027
9130
  * Update 3CX Installation Wizard SBCs
9028
9131
  * @summary Update 3CX Installation Wizard SBCs
9029
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
9132
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
9030
9133
  * @param {*} [options] Override http request option.
9031
9134
  * @throws {RequiredError}
9032
9135
  */
9033
- patchAddSbcs: (tcxSbcEntity?: Array<TcxSbcEntity>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9136
+ patchAddSbcs: (tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9034
9137
  /**
9035
9138
  * Update 3CX Installation Wizard
9036
9139
  * @summary Update 3CX Installation Wizard
@@ -9066,11 +9169,11 @@ export declare const Class3CXInstallationWizardApiAxiosParamCreator: (configurat
9066
9169
  /**
9067
9170
  * Add SBCs To 3CX Installation Wizard
9068
9171
  * @summary Add SBCs To 3CX Installation Wizard
9069
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
9172
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
9070
9173
  * @param {*} [options] Override http request option.
9071
9174
  * @throws {RequiredError}
9072
9175
  */
9073
- postAddSbcs: (tcxSbcEntity?: Array<TcxSbcEntity>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9176
+ postAddSbcs: (tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9074
9177
  /**
9075
9178
  * Build Instance From 3CX Installation Wizard
9076
9179
  * @summary Build Instance From 3CX Installation Wizard
@@ -9149,11 +9252,11 @@ export declare const Class3CXInstallationWizardApiFp: (configuration?: Configura
9149
9252
  /**
9150
9253
  * Delete 3CX Installation Wizard SBCs
9151
9254
  * @summary Delete 3CX Installation Wizard SBCs
9152
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
9255
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
9153
9256
  * @param {*} [options] Override http request option.
9154
9257
  * @throws {RequiredError}
9155
9258
  */
9156
- deleteAddSbcs(tcxSbcEntity?: Array<TcxSbcEntity>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
9259
+ deleteAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
9157
9260
  /**
9158
9261
  * Delete 3CX Installation Wizard
9159
9262
  * @summary Delete 3CX Installation Wizard
@@ -9235,11 +9338,11 @@ export declare const Class3CXInstallationWizardApiFp: (configuration?: Configura
9235
9338
  /**
9236
9339
  * Update 3CX Installation Wizard SBCs
9237
9340
  * @summary Update 3CX Installation Wizard SBCs
9238
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
9341
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
9239
9342
  * @param {*} [options] Override http request option.
9240
9343
  * @throws {RequiredError}
9241
9344
  */
9242
- patchAddSbcs(tcxSbcEntity?: Array<TcxSbcEntity>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxSbcEntity>>>;
9345
+ patchAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxSbcModel>>>;
9243
9346
  /**
9244
9347
  * Update 3CX Installation Wizard
9245
9348
  * @summary Update 3CX Installation Wizard
@@ -9275,11 +9378,11 @@ export declare const Class3CXInstallationWizardApiFp: (configuration?: Configura
9275
9378
  /**
9276
9379
  * Add SBCs To 3CX Installation Wizard
9277
9380
  * @summary Add SBCs To 3CX Installation Wizard
9278
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
9381
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
9279
9382
  * @param {*} [options] Override http request option.
9280
9383
  * @throws {RequiredError}
9281
9384
  */
9282
- postAddSbcs(tcxSbcEntity?: Array<TcxSbcEntity>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxSbcEntity>>>;
9385
+ postAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxSbcModel>>>;
9283
9386
  /**
9284
9387
  * Build Instance From 3CX Installation Wizard
9285
9388
  * @summary Build Instance From 3CX Installation Wizard
@@ -9358,11 +9461,11 @@ export declare const Class3CXInstallationWizardApiFactory: (configuration?: Conf
9358
9461
  /**
9359
9462
  * Delete 3CX Installation Wizard SBCs
9360
9463
  * @summary Delete 3CX Installation Wizard SBCs
9361
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
9464
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
9362
9465
  * @param {*} [options] Override http request option.
9363
9466
  * @throws {RequiredError}
9364
9467
  */
9365
- deleteAddSbcs(tcxSbcEntity?: Array<TcxSbcEntity>, options?: RawAxiosRequestConfig): AxiosPromise<void>;
9468
+ deleteAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): AxiosPromise<void>;
9366
9469
  /**
9367
9470
  * Delete 3CX Installation Wizard
9368
9471
  * @summary Delete 3CX Installation Wizard
@@ -9444,11 +9547,11 @@ export declare const Class3CXInstallationWizardApiFactory: (configuration?: Conf
9444
9547
  /**
9445
9548
  * Update 3CX Installation Wizard SBCs
9446
9549
  * @summary Update 3CX Installation Wizard SBCs
9447
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
9550
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
9448
9551
  * @param {*} [options] Override http request option.
9449
9552
  * @throws {RequiredError}
9450
9553
  */
9451
- patchAddSbcs(tcxSbcEntity?: Array<TcxSbcEntity>, options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxSbcEntity>>;
9554
+ patchAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxSbcModel>>;
9452
9555
  /**
9453
9556
  * Update 3CX Installation Wizard
9454
9557
  * @summary Update 3CX Installation Wizard
@@ -9484,11 +9587,11 @@ export declare const Class3CXInstallationWizardApiFactory: (configuration?: Conf
9484
9587
  /**
9485
9588
  * Add SBCs To 3CX Installation Wizard
9486
9589
  * @summary Add SBCs To 3CX Installation Wizard
9487
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
9590
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
9488
9591
  * @param {*} [options] Override http request option.
9489
9592
  * @throws {RequiredError}
9490
9593
  */
9491
- postAddSbcs(tcxSbcEntity?: Array<TcxSbcEntity>, options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxSbcEntity>>;
9594
+ postAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxSbcModel>>;
9492
9595
  /**
9493
9596
  * Build Instance From 3CX Installation Wizard
9494
9597
  * @summary Build Instance From 3CX Installation Wizard
@@ -9572,12 +9675,12 @@ export declare class Class3CXInstallationWizardApi extends BaseAPI {
9572
9675
  /**
9573
9676
  * Delete 3CX Installation Wizard SBCs
9574
9677
  * @summary Delete 3CX Installation Wizard SBCs
9575
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
9678
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
9576
9679
  * @param {*} [options] Override http request option.
9577
9680
  * @throws {RequiredError}
9578
9681
  * @memberof Class3CXInstallationWizardApi
9579
9682
  */
9580
- deleteAddSbcs(tcxSbcEntity?: Array<TcxSbcEntity>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
9683
+ deleteAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
9581
9684
  /**
9582
9685
  * Delete 3CX Installation Wizard
9583
9686
  * @summary Delete 3CX Installation Wizard
@@ -9669,12 +9772,12 @@ export declare class Class3CXInstallationWizardApi extends BaseAPI {
9669
9772
  /**
9670
9773
  * Update 3CX Installation Wizard SBCs
9671
9774
  * @summary Update 3CX Installation Wizard SBCs
9672
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
9775
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
9673
9776
  * @param {*} [options] Override http request option.
9674
9777
  * @throws {RequiredError}
9675
9778
  * @memberof Class3CXInstallationWizardApi
9676
9779
  */
9677
- patchAddSbcs(tcxSbcEntity?: Array<TcxSbcEntity>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxSbcEntity[], any, {}>>;
9780
+ patchAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxSbcModel[], any, {}>>;
9678
9781
  /**
9679
9782
  * Update 3CX Installation Wizard
9680
9783
  * @summary Update 3CX Installation Wizard
@@ -9714,12 +9817,12 @@ export declare class Class3CXInstallationWizardApi extends BaseAPI {
9714
9817
  /**
9715
9818
  * Add SBCs To 3CX Installation Wizard
9716
9819
  * @summary Add SBCs To 3CX Installation Wizard
9717
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
9820
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
9718
9821
  * @param {*} [options] Override http request option.
9719
9822
  * @throws {RequiredError}
9720
9823
  * @memberof Class3CXInstallationWizardApi
9721
9824
  */
9722
- postAddSbcs(tcxSbcEntity?: Array<TcxSbcEntity>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxSbcEntity[], any, {}>>;
9825
+ postAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxSbcModel[], any, {}>>;
9723
9826
  /**
9724
9827
  * Build Instance From 3CX Installation Wizard
9725
9828
  * @summary Build Instance From 3CX Installation Wizard
package/dist/api.js CHANGED
@@ -2113,16 +2113,16 @@ var Class3CXInstallationWizardApiAxiosParamCreator = function (configuration) {
2113
2113
  /**
2114
2114
  * Delete 3CX Installation Wizard SBCs
2115
2115
  * @summary Delete 3CX Installation Wizard SBCs
2116
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
2116
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
2117
2117
  * @param {*} [options] Override http request option.
2118
2118
  * @throws {RequiredError}
2119
2119
  */
2120
- deleteAddSbcs: function (tcxSbcEntity_1) {
2120
+ deleteAddSbcs: function (tcxSbcModel_1) {
2121
2121
  var args_1 = [];
2122
2122
  for (var _i = 1; _i < arguments.length; _i++) {
2123
2123
  args_1[_i - 1] = arguments[_i];
2124
2124
  }
2125
- return __awaiter(_this, __spreadArray([tcxSbcEntity_1], args_1, true), void 0, function (tcxSbcEntity, options) {
2125
+ return __awaiter(_this, __spreadArray([tcxSbcModel_1], args_1, true), void 0, function (tcxSbcModel, options) {
2126
2126
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
2127
2127
  if (options === void 0) { options = {}; }
2128
2128
  return __generator(this, function (_a) {
@@ -2138,7 +2138,7 @@ var Class3CXInstallationWizardApiAxiosParamCreator = function (configuration) {
2138
2138
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
2139
2139
  headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2140
2140
  localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
2141
- localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(tcxSbcEntity, localVarRequestOptions, configuration);
2141
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(tcxSbcModel, localVarRequestOptions, configuration);
2142
2142
  return [2 /*return*/, {
2143
2143
  url: (0, common_1.toPathString)(localVarUrlObj),
2144
2144
  options: localVarRequestOptions,
@@ -2509,16 +2509,16 @@ var Class3CXInstallationWizardApiAxiosParamCreator = function (configuration) {
2509
2509
  /**
2510
2510
  * Update 3CX Installation Wizard SBCs
2511
2511
  * @summary Update 3CX Installation Wizard SBCs
2512
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
2512
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
2513
2513
  * @param {*} [options] Override http request option.
2514
2514
  * @throws {RequiredError}
2515
2515
  */
2516
- patchAddSbcs: function (tcxSbcEntity_1) {
2516
+ patchAddSbcs: function (tcxSbcModel_1) {
2517
2517
  var args_1 = [];
2518
2518
  for (var _i = 1; _i < arguments.length; _i++) {
2519
2519
  args_1[_i - 1] = arguments[_i];
2520
2520
  }
2521
- return __awaiter(_this, __spreadArray([tcxSbcEntity_1], args_1, true), void 0, function (tcxSbcEntity, options) {
2521
+ return __awaiter(_this, __spreadArray([tcxSbcModel_1], args_1, true), void 0, function (tcxSbcModel, options) {
2522
2522
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
2523
2523
  if (options === void 0) { options = {}; }
2524
2524
  return __generator(this, function (_a) {
@@ -2534,7 +2534,7 @@ var Class3CXInstallationWizardApiAxiosParamCreator = function (configuration) {
2534
2534
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
2535
2535
  headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2536
2536
  localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
2537
- localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(tcxSbcEntity, localVarRequestOptions, configuration);
2537
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(tcxSbcModel, localVarRequestOptions, configuration);
2538
2538
  return [2 /*return*/, {
2539
2539
  url: (0, common_1.toPathString)(localVarUrlObj),
2540
2540
  options: localVarRequestOptions,
@@ -2689,16 +2689,16 @@ var Class3CXInstallationWizardApiAxiosParamCreator = function (configuration) {
2689
2689
  /**
2690
2690
  * Add SBCs To 3CX Installation Wizard
2691
2691
  * @summary Add SBCs To 3CX Installation Wizard
2692
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
2692
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
2693
2693
  * @param {*} [options] Override http request option.
2694
2694
  * @throws {RequiredError}
2695
2695
  */
2696
- postAddSbcs: function (tcxSbcEntity_1) {
2696
+ postAddSbcs: function (tcxSbcModel_1) {
2697
2697
  var args_1 = [];
2698
2698
  for (var _i = 1; _i < arguments.length; _i++) {
2699
2699
  args_1[_i - 1] = arguments[_i];
2700
2700
  }
2701
- return __awaiter(_this, __spreadArray([tcxSbcEntity_1], args_1, true), void 0, function (tcxSbcEntity, options) {
2701
+ return __awaiter(_this, __spreadArray([tcxSbcModel_1], args_1, true), void 0, function (tcxSbcModel, options) {
2702
2702
  var localVarPath, localVarUrlObj, baseOptions, localVarRequestOptions, localVarHeaderParameter, localVarQueryParameter, headersFromBaseOptions;
2703
2703
  if (options === void 0) { options = {}; }
2704
2704
  return __generator(this, function (_a) {
@@ -2714,7 +2714,7 @@ var Class3CXInstallationWizardApiAxiosParamCreator = function (configuration) {
2714
2714
  (0, common_1.setSearchParams)(localVarUrlObj, localVarQueryParameter);
2715
2715
  headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2716
2716
  localVarRequestOptions.headers = __assign(__assign(__assign({}, localVarHeaderParameter), headersFromBaseOptions), options.headers);
2717
- localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(tcxSbcEntity, localVarRequestOptions, configuration);
2717
+ localVarRequestOptions.data = (0, common_1.serializeDataIfNeeded)(tcxSbcModel, localVarRequestOptions, configuration);
2718
2718
  return [2 /*return*/, {
2719
2719
  url: (0, common_1.toPathString)(localVarUrlObj),
2720
2720
  options: localVarRequestOptions,
@@ -3027,17 +3027,17 @@ var Class3CXInstallationWizardApiFp = function (configuration) {
3027
3027
  /**
3028
3028
  * Delete 3CX Installation Wizard SBCs
3029
3029
  * @summary Delete 3CX Installation Wizard SBCs
3030
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
3030
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
3031
3031
  * @param {*} [options] Override http request option.
3032
3032
  * @throws {RequiredError}
3033
3033
  */
3034
- deleteAddSbcs: function (tcxSbcEntity, options) {
3034
+ deleteAddSbcs: function (tcxSbcModel, options) {
3035
3035
  return __awaiter(this, void 0, void 0, function () {
3036
3036
  var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
3037
3037
  var _a, _b, _c;
3038
3038
  return __generator(this, function (_d) {
3039
3039
  switch (_d.label) {
3040
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.deleteAddSbcs(tcxSbcEntity, options)];
3040
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.deleteAddSbcs(tcxSbcModel, options)];
3041
3041
  case 1:
3042
3042
  localVarAxiosArgs = _d.sent();
3043
3043
  localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
@@ -3278,17 +3278,17 @@ var Class3CXInstallationWizardApiFp = function (configuration) {
3278
3278
  /**
3279
3279
  * Update 3CX Installation Wizard SBCs
3280
3280
  * @summary Update 3CX Installation Wizard SBCs
3281
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
3281
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
3282
3282
  * @param {*} [options] Override http request option.
3283
3283
  * @throws {RequiredError}
3284
3284
  */
3285
- patchAddSbcs: function (tcxSbcEntity, options) {
3285
+ patchAddSbcs: function (tcxSbcModel, options) {
3286
3286
  return __awaiter(this, void 0, void 0, function () {
3287
3287
  var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
3288
3288
  var _a, _b, _c;
3289
3289
  return __generator(this, function (_d) {
3290
3290
  switch (_d.label) {
3291
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.patchAddSbcs(tcxSbcEntity, options)];
3291
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.patchAddSbcs(tcxSbcModel, options)];
3292
3292
  case 1:
3293
3293
  localVarAxiosArgs = _d.sent();
3294
3294
  localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
@@ -3393,17 +3393,17 @@ var Class3CXInstallationWizardApiFp = function (configuration) {
3393
3393
  /**
3394
3394
  * Add SBCs To 3CX Installation Wizard
3395
3395
  * @summary Add SBCs To 3CX Installation Wizard
3396
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
3396
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
3397
3397
  * @param {*} [options] Override http request option.
3398
3398
  * @throws {RequiredError}
3399
3399
  */
3400
- postAddSbcs: function (tcxSbcEntity, options) {
3400
+ postAddSbcs: function (tcxSbcModel, options) {
3401
3401
  return __awaiter(this, void 0, void 0, function () {
3402
3402
  var localVarAxiosArgs, localVarOperationServerIndex, localVarOperationServerBasePath;
3403
3403
  var _a, _b, _c;
3404
3404
  return __generator(this, function (_d) {
3405
3405
  switch (_d.label) {
3406
- case 0: return [4 /*yield*/, localVarAxiosParamCreator.postAddSbcs(tcxSbcEntity, options)];
3406
+ case 0: return [4 /*yield*/, localVarAxiosParamCreator.postAddSbcs(tcxSbcModel, options)];
3407
3407
  case 1:
3408
3408
  localVarAxiosArgs = _d.sent();
3409
3409
  localVarOperationServerIndex = (_a = configuration === null || configuration === void 0 ? void 0 : configuration.serverIndex) !== null && _a !== void 0 ? _a : 0;
@@ -3576,12 +3576,12 @@ var Class3CXInstallationWizardApiFactory = function (configuration, basePath, ax
3576
3576
  /**
3577
3577
  * Delete 3CX Installation Wizard SBCs
3578
3578
  * @summary Delete 3CX Installation Wizard SBCs
3579
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
3579
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
3580
3580
  * @param {*} [options] Override http request option.
3581
3581
  * @throws {RequiredError}
3582
3582
  */
3583
- deleteAddSbcs: function (tcxSbcEntity, options) {
3584
- return localVarFp.deleteAddSbcs(tcxSbcEntity, options).then(function (request) { return request(axios, basePath); });
3583
+ deleteAddSbcs: function (tcxSbcModel, options) {
3584
+ return localVarFp.deleteAddSbcs(tcxSbcModel, options).then(function (request) { return request(axios, basePath); });
3585
3585
  },
3586
3586
  /**
3587
3587
  * Delete 3CX Installation Wizard
@@ -3684,12 +3684,12 @@ var Class3CXInstallationWizardApiFactory = function (configuration, basePath, ax
3684
3684
  /**
3685
3685
  * Update 3CX Installation Wizard SBCs
3686
3686
  * @summary Update 3CX Installation Wizard SBCs
3687
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
3687
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
3688
3688
  * @param {*} [options] Override http request option.
3689
3689
  * @throws {RequiredError}
3690
3690
  */
3691
- patchAddSbcs: function (tcxSbcEntity, options) {
3692
- return localVarFp.patchAddSbcs(tcxSbcEntity, options).then(function (request) { return request(axios, basePath); });
3691
+ patchAddSbcs: function (tcxSbcModel, options) {
3692
+ return localVarFp.patchAddSbcs(tcxSbcModel, options).then(function (request) { return request(axios, basePath); });
3693
3693
  },
3694
3694
  /**
3695
3695
  * Update 3CX Installation Wizard
@@ -3734,12 +3734,12 @@ var Class3CXInstallationWizardApiFactory = function (configuration, basePath, ax
3734
3734
  /**
3735
3735
  * Add SBCs To 3CX Installation Wizard
3736
3736
  * @summary Add SBCs To 3CX Installation Wizard
3737
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
3737
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
3738
3738
  * @param {*} [options] Override http request option.
3739
3739
  * @throws {RequiredError}
3740
3740
  */
3741
- postAddSbcs: function (tcxSbcEntity, options) {
3742
- return localVarFp.postAddSbcs(tcxSbcEntity, options).then(function (request) { return request(axios, basePath); });
3741
+ postAddSbcs: function (tcxSbcModel, options) {
3742
+ return localVarFp.postAddSbcs(tcxSbcModel, options).then(function (request) { return request(axios, basePath); });
3743
3743
  },
3744
3744
  /**
3745
3745
  * Build Instance From 3CX Installation Wizard
@@ -3849,14 +3849,14 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
3849
3849
  /**
3850
3850
  * Delete 3CX Installation Wizard SBCs
3851
3851
  * @summary Delete 3CX Installation Wizard SBCs
3852
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
3852
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
3853
3853
  * @param {*} [options] Override http request option.
3854
3854
  * @throws {RequiredError}
3855
3855
  * @memberof Class3CXInstallationWizardApi
3856
3856
  */
3857
- Class3CXInstallationWizardApi.prototype.deleteAddSbcs = function (tcxSbcEntity, options) {
3857
+ Class3CXInstallationWizardApi.prototype.deleteAddSbcs = function (tcxSbcModel, options) {
3858
3858
  var _this = this;
3859
- return (0, exports.Class3CXInstallationWizardApiFp)(this.configuration).deleteAddSbcs(tcxSbcEntity, options).then(function (request) { return request(_this.axios, _this.basePath); });
3859
+ return (0, exports.Class3CXInstallationWizardApiFp)(this.configuration).deleteAddSbcs(tcxSbcModel, options).then(function (request) { return request(_this.axios, _this.basePath); });
3860
3860
  };
3861
3861
  /**
3862
3862
  * Delete 3CX Installation Wizard
@@ -3979,14 +3979,14 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
3979
3979
  /**
3980
3980
  * Update 3CX Installation Wizard SBCs
3981
3981
  * @summary Update 3CX Installation Wizard SBCs
3982
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
3982
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
3983
3983
  * @param {*} [options] Override http request option.
3984
3984
  * @throws {RequiredError}
3985
3985
  * @memberof Class3CXInstallationWizardApi
3986
3986
  */
3987
- Class3CXInstallationWizardApi.prototype.patchAddSbcs = function (tcxSbcEntity, options) {
3987
+ Class3CXInstallationWizardApi.prototype.patchAddSbcs = function (tcxSbcModel, options) {
3988
3988
  var _this = this;
3989
- return (0, exports.Class3CXInstallationWizardApiFp)(this.configuration).patchAddSbcs(tcxSbcEntity, options).then(function (request) { return request(_this.axios, _this.basePath); });
3989
+ return (0, exports.Class3CXInstallationWizardApiFp)(this.configuration).patchAddSbcs(tcxSbcModel, options).then(function (request) { return request(_this.axios, _this.basePath); });
3990
3990
  };
3991
3991
  /**
3992
3992
  * Update 3CX Installation Wizard
@@ -4039,14 +4039,14 @@ var Class3CXInstallationWizardApi = /** @class */ (function (_super) {
4039
4039
  /**
4040
4040
  * Add SBCs To 3CX Installation Wizard
4041
4041
  * @summary Add SBCs To 3CX Installation Wizard
4042
- * @param {Array<TcxSbcEntity>} [tcxSbcEntity] 3CX Wizard SBCs
4042
+ * @param {Array<TcxSbcModel>} [tcxSbcModel] 3CX Wizard SBCs
4043
4043
  * @param {*} [options] Override http request option.
4044
4044
  * @throws {RequiredError}
4045
4045
  * @memberof Class3CXInstallationWizardApi
4046
4046
  */
4047
- Class3CXInstallationWizardApi.prototype.postAddSbcs = function (tcxSbcEntity, options) {
4047
+ Class3CXInstallationWizardApi.prototype.postAddSbcs = function (tcxSbcModel, options) {
4048
4048
  var _this = this;
4049
- return (0, exports.Class3CXInstallationWizardApiFp)(this.configuration).postAddSbcs(tcxSbcEntity, options).then(function (request) { return request(_this.axios, _this.basePath); });
4049
+ return (0, exports.Class3CXInstallationWizardApiFp)(this.configuration).postAddSbcs(tcxSbcModel, options).then(function (request) { return request(_this.axios, _this.basePath); });
4050
4050
  };
4051
4051
  /**
4052
4052
  * Build Instance From 3CX Installation Wizard
@@ -208,10 +208,10 @@ import {
208
208
  const configuration = new Configuration();
209
209
  const apiInstance = new Class3CXInstallationWizardApi(configuration);
210
210
 
211
- let tcxSbcEntity: Array<TcxSbcEntity>; //3CX Wizard SBCs (optional)
211
+ let tcxSbcModel: Array<TcxSbcModel>; //3CX Wizard SBCs (optional)
212
212
 
213
213
  const { status, data } = await apiInstance.deleteAddSbcs(
214
- tcxSbcEntity
214
+ tcxSbcModel
215
215
  );
216
216
  ```
217
217
 
@@ -219,7 +219,7 @@ const { status, data } = await apiInstance.deleteAddSbcs(
219
219
 
220
220
  |Name | Type | Description | Notes|
221
221
  |------------- | ------------- | ------------- | -------------|
222
- | **tcxSbcEntity** | **Array<TcxSbcEntity>**| 3CX Wizard SBCs | |
222
+ | **tcxSbcModel** | **Array<TcxSbcModel>**| 3CX Wizard SBCs | |
223
223
 
224
224
 
225
225
  ### Return type
@@ -755,7 +755,7 @@ No authorization required
755
755
  [[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)
756
756
 
757
757
  # **patchAddSbcs**
758
- > Array<TcxSbcEntity> patchAddSbcs()
758
+ > Array<TcxSbcModel> patchAddSbcs()
759
759
 
760
760
  Update 3CX Installation Wizard SBCs
761
761
 
@@ -770,10 +770,10 @@ import {
770
770
  const configuration = new Configuration();
771
771
  const apiInstance = new Class3CXInstallationWizardApi(configuration);
772
772
 
773
- let tcxSbcEntity: Array<TcxSbcEntity>; //3CX Wizard SBCs (optional)
773
+ let tcxSbcModel: Array<TcxSbcModel>; //3CX Wizard SBCs (optional)
774
774
 
775
775
  const { status, data } = await apiInstance.patchAddSbcs(
776
- tcxSbcEntity
776
+ tcxSbcModel
777
777
  );
778
778
  ```
779
779
 
@@ -781,12 +781,12 @@ const { status, data } = await apiInstance.patchAddSbcs(
781
781
 
782
782
  |Name | Type | Description | Notes|
783
783
  |------------- | ------------- | ------------- | -------------|
784
- | **tcxSbcEntity** | **Array<TcxSbcEntity>**| 3CX Wizard SBCs | |
784
+ | **tcxSbcModel** | **Array<TcxSbcModel>**| 3CX Wizard SBCs | |
785
785
 
786
786
 
787
787
  ### Return type
788
788
 
789
- **Array<TcxSbcEntity>**
789
+ **Array<TcxSbcModel>**
790
790
 
791
791
  ### Authorization
792
792
 
@@ -1026,7 +1026,7 @@ No authorization required
1026
1026
  [[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)
1027
1027
 
1028
1028
  # **postAddSbcs**
1029
- > Array<TcxSbcEntity> postAddSbcs()
1029
+ > Array<TcxSbcModel> postAddSbcs()
1030
1030
 
1031
1031
  Add SBCs To 3CX Installation Wizard
1032
1032
 
@@ -1041,10 +1041,10 @@ import {
1041
1041
  const configuration = new Configuration();
1042
1042
  const apiInstance = new Class3CXInstallationWizardApi(configuration);
1043
1043
 
1044
- let tcxSbcEntity: Array<TcxSbcEntity>; //3CX Wizard SBCs (optional)
1044
+ let tcxSbcModel: Array<TcxSbcModel>; //3CX Wizard SBCs (optional)
1045
1045
 
1046
1046
  const { status, data } = await apiInstance.postAddSbcs(
1047
- tcxSbcEntity
1047
+ tcxSbcModel
1048
1048
  );
1049
1049
  ```
1050
1050
 
@@ -1052,12 +1052,12 @@ const { status, data } = await apiInstance.postAddSbcs(
1052
1052
 
1053
1053
  |Name | Type | Description | Notes|
1054
1054
  |------------- | ------------- | ------------- | -------------|
1055
- | **tcxSbcEntity** | **Array<TcxSbcEntity>**| 3CX Wizard SBCs | |
1055
+ | **tcxSbcModel** | **Array<TcxSbcModel>**| 3CX Wizard SBCs | |
1056
1056
 
1057
1057
 
1058
1058
  ### Return type
1059
1059
 
1060
- **Array<TcxSbcEntity>**
1060
+ **Array<TcxSbcModel>**
1061
1061
 
1062
1062
  ### Authorization
1063
1063
 
@@ -0,0 +1,51 @@
1
+ # TcxSbcModel
2
+
3
+ 3CX SBC Model
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ **id** | **number** | id | [optional] [default to undefined]
10
+ **sbcId** | **number** | SBC ID | [optional] [default to undefined]
11
+ **tcxUrl** | **string** | 3CX URL | [optional] [default to undefined]
12
+ **tcxKey** | **string** | 3CX SBC Auth Key | [optional] [default to undefined]
13
+ **label** | **string** | Label | [optional] [default to undefined]
14
+ **ipAddress** | **string** | IP Address | [optional] [default to undefined]
15
+ **netmask** | **string** | Subnet Mask | [optional] [default to undefined]
16
+ **defaultGateway** | **string** | Default Gateway | [optional] [default to undefined]
17
+ **dns1** | **string** | DNS 1 | [optional] [default to undefined]
18
+ **dns2** | **string** | DNS 2 | [optional] [default to undefined]
19
+ **address1** | **string** | Site Address Line 1 | [optional] [default to undefined]
20
+ **address2** | **string** | Site Address Line 2 | [optional] [default to undefined]
21
+ **city** | **string** | Site City | [optional] [default to undefined]
22
+ **postalCode** | **string** | Site Postal Code | [optional] [default to undefined]
23
+ **primaryContact** | **string** | Site Primary Contact | [optional] [default to undefined]
24
+ **technicalContact** | **string** | Site Technical Contact | [optional] [default to undefined]
25
+
26
+ ## Example
27
+
28
+ ```typescript
29
+ import { TcxSbcModel } from 'yellowgrid-api-ts';
30
+
31
+ const instance: TcxSbcModel = {
32
+ id,
33
+ sbcId,
34
+ tcxUrl,
35
+ tcxKey,
36
+ label,
37
+ ipAddress,
38
+ netmask,
39
+ defaultGateway,
40
+ dns1,
41
+ dns2,
42
+ address1,
43
+ address2,
44
+ city,
45
+ postalCode,
46
+ primaryContact,
47
+ technicalContact,
48
+ };
49
+ ```
50
+
51
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -15,7 +15,7 @@ Name | Type | Description | Notes
15
15
  **numbers** | [**Array&lt;TcxNumbersEntity&gt;**](TcxNumbersEntity.md) | | [optional] [default to undefined]
16
16
  **officeHours** | [**TcxOfficeHoursEntity**](TcxOfficeHoursEntity.md) | | [optional] [default to undefined]
17
17
  **phones** | [**Array&lt;TcxPhoneModel&gt;**](TcxPhoneModel.md) | | [optional] [default to undefined]
18
- **sbcs** | [**Array&lt;TcxSbcEntity&gt;**](TcxSbcEntity.md) | | [optional] [default to undefined]
18
+ **sbcs** | [**Array&lt;TcxSbcModel&gt;**](TcxSbcModel.md) | | [optional] [default to undefined]
19
19
  **sipTrunk** | [**TcxSipTrunksEntity**](TcxSipTrunksEntity.md) | | [optional] [default to undefined]
20
20
  **installationStatus** | **string** | | [optional] [default to undefined]
21
21
  **setup** | [**TcxSetupEntity**](TcxSetupEntity.md) | | [optional] [default to undefined]
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "yellowgrid-api-ts",
3
- "version": "3.0.80",
3
+ "version": "3.0.81",
4
4
  "description": "OpenAPI client for yellowgrid-api-ts",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {