yellowgrid-api-ts 3.2.289 → 3.2.291

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/api.d.ts CHANGED
@@ -1299,6 +1299,9 @@ export declare const AuditLogEntityTypeEnum: {
1299
1299
  readonly Pops3cxBackup: "pops_3cx_backup";
1300
1300
  readonly Pops3cxBilling: "pops_3cx_billing";
1301
1301
  readonly PopsDeadLicences: "pops_dead_licences";
1302
+ readonly Pops3cxEngineering: "pops_3cx_engineering";
1303
+ readonly Pops3cxEngineerTaskDefinitions: "pops_3cx_engineer_task_definitions";
1304
+ readonly Pops3cxEngineerTasks: "pops_3cx_engineer_tasks";
1302
1305
  readonly Pops3cxExts: "pops_3cx_exts";
1303
1306
  readonly PopsHostingPricing: "pops_hosting_pricing";
1304
1307
  readonly Pops3cxKeys: "pops_3cx_keys";
@@ -3070,6 +3073,23 @@ export interface EmailRequestModel {
3070
3073
  */
3071
3074
  'email': string;
3072
3075
  }
3076
+ /**
3077
+ * Engineered Wizard Request
3078
+ */
3079
+ export interface EngineeredWizardRequestModel {
3080
+ /**
3081
+ * Customer Name
3082
+ */
3083
+ 'customer': string;
3084
+ /**
3085
+ * Engineer ID
3086
+ */
3087
+ 'engineerId': number;
3088
+ /**
3089
+ * Licence Key
3090
+ */
3091
+ 'licenceKey': string;
3092
+ }
3073
3093
  /**
3074
3094
  * Service Event DTO
3075
3095
  */
@@ -9488,6 +9508,72 @@ export interface TcxDeadLicenceEntity {
9488
9508
  */
9489
9509
  'date': string;
9490
9510
  }
9511
+ /**
9512
+ * 3CX Engineer Task
9513
+ */
9514
+ export interface TcxEngineerTaskDTO {
9515
+ /**
9516
+ * Task ID
9517
+ */
9518
+ 'taskId': number;
9519
+ /**
9520
+ * Title
9521
+ */
9522
+ 'title': string;
9523
+ /**
9524
+ * Description
9525
+ */
9526
+ 'description': string;
9527
+ /**
9528
+ * Completion Status
9529
+ */
9530
+ 'complete': boolean;
9531
+ /**
9532
+ * Note
9533
+ */
9534
+ 'note': string;
9535
+ }
9536
+ /**
9537
+ * 3CX Engineering
9538
+ */
9539
+ export interface TcxEngineeringDTO {
9540
+ /**
9541
+ * Engineering ID
9542
+ */
9543
+ 'id': number;
9544
+ /**
9545
+ * Wizard ID
9546
+ */
9547
+ 'wizardId': number;
9548
+ /**
9549
+ * Engineer ID
9550
+ */
9551
+ 'engineerId': number;
9552
+ /**
9553
+ * Engineer Name
9554
+ */
9555
+ 'engineerName': string;
9556
+ /**
9557
+ * Ticket URL
9558
+ */
9559
+ 'ticketUrl': string;
9560
+ /**
9561
+ * Date Time
9562
+ */
9563
+ 'goLiveDate'?: string | null;
9564
+ /**
9565
+ * Spec
9566
+ */
9567
+ 'spec'?: string | null;
9568
+ /**
9569
+ * Note
9570
+ */
9571
+ 'note'?: string | null;
9572
+ /**
9573
+ * Tasks
9574
+ */
9575
+ 'tasks': Array<TcxEngineerTaskDTO>;
9576
+ }
9491
9577
  /**
9492
9578
  * 3CX Wizard Extension
9493
9579
  */
@@ -10479,6 +10565,19 @@ export interface TcxSipTrunksEntity {
10479
10565
  */
10480
10566
  'ipAddress'?: string | null;
10481
10567
  }
10568
+ /**
10569
+ * 3CX Wizard Summary
10570
+ */
10571
+ export interface TcxSummaryDTO {
10572
+ /**
10573
+ * Wizard ID
10574
+ */
10575
+ 'id': number;
10576
+ /**
10577
+ * Licence Key
10578
+ */
10579
+ 'licenceKey': string;
10580
+ }
10482
10581
  /**
10483
10582
  * 3CX Template
10484
10583
  */
@@ -10556,6 +10655,7 @@ export interface TcxWizardModel {
10556
10655
  'sbcs'?: Array<TcxSbcModel> | null;
10557
10656
  'sipTrunk'?: TcxSipTrunksEntity | null;
10558
10657
  'installationStatus'?: TcxWizardModelInstallationStatusEnum | null;
10658
+ 'engineering'?: TcxEngineeringDTO | null;
10559
10659
  'setup'?: TcxSetupEntity | null;
10560
10660
  /**
10561
10661
  * End User Wizard View
@@ -15335,6 +15435,13 @@ export declare const Class3CXInstallationWizardApiAxiosParamCreator: (configurat
15335
15435
  * @throws {RequiredError}
15336
15436
  */
15337
15437
  patchAddSbcs: (tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15438
+ /**
15439
+ * Allocate Wizard Engineer
15440
+ * @param {number} engineerId Engineer ID
15441
+ * @param {*} [options] Override http request option.
15442
+ * @throws {RequiredError}
15443
+ */
15444
+ patchAllocateEngineer: (engineerId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15338
15445
  /**
15339
15446
  * Update 3CX Installation Wizard
15340
15447
  * @summary Update 3CX Installation Wizard
@@ -15343,6 +15450,43 @@ export declare const Class3CXInstallationWizardApiAxiosParamCreator: (configurat
15343
15450
  * @throws {RequiredError}
15344
15451
  */
15345
15452
  patchGetWizard: (tcxWizardModel?: TcxWizardModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15453
+ /**
15454
+ * Update Wizard Engineer Task Complete Status
15455
+ * @param {number} taskId Task ID
15456
+ * @param {PatchMarkEngineerTaskAsCompleteCompleteEnum} complete Complete Status
15457
+ * @param {*} [options] Override http request option.
15458
+ * @throws {RequiredError}
15459
+ */
15460
+ patchMarkEngineerTaskAsComplete: (taskId: number, complete: PatchMarkEngineerTaskAsCompleteCompleteEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15461
+ /**
15462
+ * Update Wizard Engineer Task Note
15463
+ * @param {number} taskId Task ID
15464
+ * @param {string} note note
15465
+ * @param {*} [options] Override http request option.
15466
+ * @throws {RequiredError}
15467
+ */
15468
+ patchUpdateEngineerTaskNote: (taskId: number, note: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15469
+ /**
15470
+ * Update Wizard Go Live Date
15471
+ * @param {string} goLiveDate Go Live Date
15472
+ * @param {*} [options] Override http request option.
15473
+ * @throws {RequiredError}
15474
+ */
15475
+ patchUpdateGoLiveDate: (goLiveDate: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15476
+ /**
15477
+ * Update Wizard Engineer Note
15478
+ * @param {string} note Note
15479
+ * @param {*} [options] Override http request option.
15480
+ * @throws {RequiredError}
15481
+ */
15482
+ patchUpdateNote: (note: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15483
+ /**
15484
+ * Update Wizard Engineer Spec
15485
+ * @param {string} spec Spec
15486
+ * @param {*} [options] Override http request option.
15487
+ * @throws {RequiredError}
15488
+ */
15489
+ patchUpdateSpec: (spec: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
15346
15490
  /**
15347
15491
  * Add Extensions To 3CX Installation Wizard
15348
15492
  * @summary Add Extensions To 3CX Installation Wizard
@@ -15623,6 +15767,13 @@ export declare const Class3CXInstallationWizardApiFp: (configuration?: Configura
15623
15767
  * @throws {RequiredError}
15624
15768
  */
15625
15769
  patchAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxSbcModel>>>;
15770
+ /**
15771
+ * Allocate Wizard Engineer
15772
+ * @param {number} engineerId Engineer ID
15773
+ * @param {*} [options] Override http request option.
15774
+ * @throws {RequiredError}
15775
+ */
15776
+ patchAllocateEngineer(engineerId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
15626
15777
  /**
15627
15778
  * Update 3CX Installation Wizard
15628
15779
  * @summary Update 3CX Installation Wizard
@@ -15631,6 +15782,43 @@ export declare const Class3CXInstallationWizardApiFp: (configuration?: Configura
15631
15782
  * @throws {RequiredError}
15632
15783
  */
15633
15784
  patchGetWizard(tcxWizardModel?: TcxWizardModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxWizardModel>>;
15785
+ /**
15786
+ * Update Wizard Engineer Task Complete Status
15787
+ * @param {number} taskId Task ID
15788
+ * @param {PatchMarkEngineerTaskAsCompleteCompleteEnum} complete Complete Status
15789
+ * @param {*} [options] Override http request option.
15790
+ * @throws {RequiredError}
15791
+ */
15792
+ patchMarkEngineerTaskAsComplete(taskId: number, complete: PatchMarkEngineerTaskAsCompleteCompleteEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
15793
+ /**
15794
+ * Update Wizard Engineer Task Note
15795
+ * @param {number} taskId Task ID
15796
+ * @param {string} note note
15797
+ * @param {*} [options] Override http request option.
15798
+ * @throws {RequiredError}
15799
+ */
15800
+ patchUpdateEngineerTaskNote(taskId: number, note: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
15801
+ /**
15802
+ * Update Wizard Go Live Date
15803
+ * @param {string} goLiveDate Go Live Date
15804
+ * @param {*} [options] Override http request option.
15805
+ * @throws {RequiredError}
15806
+ */
15807
+ patchUpdateGoLiveDate(goLiveDate: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
15808
+ /**
15809
+ * Update Wizard Engineer Note
15810
+ * @param {string} note Note
15811
+ * @param {*} [options] Override http request option.
15812
+ * @throws {RequiredError}
15813
+ */
15814
+ patchUpdateNote(note: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
15815
+ /**
15816
+ * Update Wizard Engineer Spec
15817
+ * @param {string} spec Spec
15818
+ * @param {*} [options] Override http request option.
15819
+ * @throws {RequiredError}
15820
+ */
15821
+ patchUpdateSpec(spec: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
15634
15822
  /**
15635
15823
  * Add Extensions To 3CX Installation Wizard
15636
15824
  * @summary Add Extensions To 3CX Installation Wizard
@@ -15911,6 +16099,13 @@ export declare const Class3CXInstallationWizardApiFactory: (configuration?: Conf
15911
16099
  * @throws {RequiredError}
15912
16100
  */
15913
16101
  patchAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxSbcModel>>;
16102
+ /**
16103
+ * Allocate Wizard Engineer
16104
+ * @param {number} engineerId Engineer ID
16105
+ * @param {*} [options] Override http request option.
16106
+ * @throws {RequiredError}
16107
+ */
16108
+ patchAllocateEngineer(engineerId: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
15914
16109
  /**
15915
16110
  * Update 3CX Installation Wizard
15916
16111
  * @summary Update 3CX Installation Wizard
@@ -15919,6 +16114,43 @@ export declare const Class3CXInstallationWizardApiFactory: (configuration?: Conf
15919
16114
  * @throws {RequiredError}
15920
16115
  */
15921
16116
  patchGetWizard(tcxWizardModel?: TcxWizardModel, options?: RawAxiosRequestConfig): AxiosPromise<TcxWizardModel>;
16117
+ /**
16118
+ * Update Wizard Engineer Task Complete Status
16119
+ * @param {number} taskId Task ID
16120
+ * @param {PatchMarkEngineerTaskAsCompleteCompleteEnum} complete Complete Status
16121
+ * @param {*} [options] Override http request option.
16122
+ * @throws {RequiredError}
16123
+ */
16124
+ patchMarkEngineerTaskAsComplete(taskId: number, complete: PatchMarkEngineerTaskAsCompleteCompleteEnum, options?: RawAxiosRequestConfig): AxiosPromise<void>;
16125
+ /**
16126
+ * Update Wizard Engineer Task Note
16127
+ * @param {number} taskId Task ID
16128
+ * @param {string} note note
16129
+ * @param {*} [options] Override http request option.
16130
+ * @throws {RequiredError}
16131
+ */
16132
+ patchUpdateEngineerTaskNote(taskId: number, note: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
16133
+ /**
16134
+ * Update Wizard Go Live Date
16135
+ * @param {string} goLiveDate Go Live Date
16136
+ * @param {*} [options] Override http request option.
16137
+ * @throws {RequiredError}
16138
+ */
16139
+ patchUpdateGoLiveDate(goLiveDate: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
16140
+ /**
16141
+ * Update Wizard Engineer Note
16142
+ * @param {string} note Note
16143
+ * @param {*} [options] Override http request option.
16144
+ * @throws {RequiredError}
16145
+ */
16146
+ patchUpdateNote(note: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
16147
+ /**
16148
+ * Update Wizard Engineer Spec
16149
+ * @param {string} spec Spec
16150
+ * @param {*} [options] Override http request option.
16151
+ * @throws {RequiredError}
16152
+ */
16153
+ patchUpdateSpec(spec: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
15922
16154
  /**
15923
16155
  * Add Extensions To 3CX Installation Wizard
15924
16156
  * @summary Add Extensions To 3CX Installation Wizard
@@ -16199,6 +16431,13 @@ export declare class Class3CXInstallationWizardApi extends BaseAPI {
16199
16431
  * @throws {RequiredError}
16200
16432
  */
16201
16433
  patchAddSbcs(tcxSbcModel?: Array<TcxSbcModel>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxSbcModel[], any, {}>>;
16434
+ /**
16435
+ * Allocate Wizard Engineer
16436
+ * @param {number} engineerId Engineer ID
16437
+ * @param {*} [options] Override http request option.
16438
+ * @throws {RequiredError}
16439
+ */
16440
+ patchAllocateEngineer(engineerId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
16202
16441
  /**
16203
16442
  * Update 3CX Installation Wizard
16204
16443
  * @summary Update 3CX Installation Wizard
@@ -16207,6 +16446,43 @@ export declare class Class3CXInstallationWizardApi extends BaseAPI {
16207
16446
  * @throws {RequiredError}
16208
16447
  */
16209
16448
  patchGetWizard(tcxWizardModel?: TcxWizardModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxWizardModel, any, {}>>;
16449
+ /**
16450
+ * Update Wizard Engineer Task Complete Status
16451
+ * @param {number} taskId Task ID
16452
+ * @param {PatchMarkEngineerTaskAsCompleteCompleteEnum} complete Complete Status
16453
+ * @param {*} [options] Override http request option.
16454
+ * @throws {RequiredError}
16455
+ */
16456
+ patchMarkEngineerTaskAsComplete(taskId: number, complete: PatchMarkEngineerTaskAsCompleteCompleteEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
16457
+ /**
16458
+ * Update Wizard Engineer Task Note
16459
+ * @param {number} taskId Task ID
16460
+ * @param {string} note note
16461
+ * @param {*} [options] Override http request option.
16462
+ * @throws {RequiredError}
16463
+ */
16464
+ patchUpdateEngineerTaskNote(taskId: number, note: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
16465
+ /**
16466
+ * Update Wizard Go Live Date
16467
+ * @param {string} goLiveDate Go Live Date
16468
+ * @param {*} [options] Override http request option.
16469
+ * @throws {RequiredError}
16470
+ */
16471
+ patchUpdateGoLiveDate(goLiveDate: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
16472
+ /**
16473
+ * Update Wizard Engineer Note
16474
+ * @param {string} note Note
16475
+ * @param {*} [options] Override http request option.
16476
+ * @throws {RequiredError}
16477
+ */
16478
+ patchUpdateNote(note: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
16479
+ /**
16480
+ * Update Wizard Engineer Spec
16481
+ * @param {string} spec Spec
16482
+ * @param {*} [options] Override http request option.
16483
+ * @throws {RequiredError}
16484
+ */
16485
+ patchUpdateSpec(spec: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
16210
16486
  /**
16211
16487
  * Add Extensions To 3CX Installation Wizard
16212
16488
  * @summary Add Extensions To 3CX Installation Wizard
@@ -16318,6 +16594,11 @@ export declare class Class3CXInstallationWizardApi extends BaseAPI {
16318
16594
  */
16319
16595
  postUploadBackup(backup: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxBackupModel, any, {}>>;
16320
16596
  }
16597
+ export declare const PatchMarkEngineerTaskAsCompleteCompleteEnum: {
16598
+ readonly True: "true";
16599
+ readonly False: "false";
16600
+ };
16601
+ export type PatchMarkEngineerTaskAsCompleteCompleteEnum = typeof PatchMarkEngineerTaskAsCompleteCompleteEnum[keyof typeof PatchMarkEngineerTaskAsCompleteCompleteEnum];
16321
16602
  /**
16322
16603
  * Class3CXInstallationsApi - axios parameter creator
16323
16604
  */
@@ -18596,6 +18877,7 @@ export declare const PostAccessTokenScopeEnum: {
18596
18877
  export type PostAccessTokenScopeEnum = typeof PostAccessTokenScopeEnum[keyof typeof PostAccessTokenScopeEnum];
18597
18878
  export declare const PostAccessTokenTokenExchangeTypeEnum: {
18598
18879
  readonly TcxWizard: "tcx_wizard";
18880
+ readonly TcxWizardAdmin: "tcx_wizard_admin";
18599
18881
  readonly Portal: "portal";
18600
18882
  };
18601
18883
  export type PostAccessTokenTokenExchangeTypeEnum = typeof PostAccessTokenTokenExchangeTypeEnum[keyof typeof PostAccessTokenTokenExchangeTypeEnum];
@@ -18799,6 +19081,14 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
18799
19081
  * @throws {RequiredError}
18800
19082
  */
18801
19083
  postCreateShipment: (id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
19084
+ /**
19085
+ * Create Engineered Wizard
19086
+ * @param {number} id Order ID
19087
+ * @param {EngineeredWizardRequestModel} [engineeredWizardRequestModel] Engineered Wizard Request
19088
+ * @param {*} [options] Override http request option.
19089
+ * @throws {RequiredError}
19090
+ */
19091
+ postCreateWizardFromOrder: (id: number, engineeredWizardRequestModel?: EngineeredWizardRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
18802
19092
  /**
18803
19093
  * Create An Order (Beta)
18804
19094
  * @summary Create An Order (Beta)
@@ -19101,6 +19391,14 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
19101
19391
  * @throws {RequiredError}
19102
19392
  */
19103
19393
  postCreateShipment(id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShipmentDTO>>;
19394
+ /**
19395
+ * Create Engineered Wizard
19396
+ * @param {number} id Order ID
19397
+ * @param {EngineeredWizardRequestModel} [engineeredWizardRequestModel] Engineered Wizard Request
19398
+ * @param {*} [options] Override http request option.
19399
+ * @throws {RequiredError}
19400
+ */
19401
+ postCreateWizardFromOrder(id: number, engineeredWizardRequestModel?: EngineeredWizardRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxSummaryDTO>>;
19104
19402
  /**
19105
19403
  * Create An Order (Beta)
19106
19404
  * @summary Create An Order (Beta)
@@ -19403,6 +19701,14 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
19403
19701
  * @throws {RequiredError}
19404
19702
  */
19405
19703
  postCreateShipment(id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShipmentDTO>;
19704
+ /**
19705
+ * Create Engineered Wizard
19706
+ * @param {number} id Order ID
19707
+ * @param {EngineeredWizardRequestModel} [engineeredWizardRequestModel] Engineered Wizard Request
19708
+ * @param {*} [options] Override http request option.
19709
+ * @throws {RequiredError}
19710
+ */
19711
+ postCreateWizardFromOrder(id: number, engineeredWizardRequestModel?: EngineeredWizardRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<TcxSummaryDTO>;
19406
19712
  /**
19407
19713
  * Create An Order (Beta)
19408
19714
  * @summary Create An Order (Beta)
@@ -19705,6 +20011,14 @@ export declare class OrdersApi extends BaseAPI {
19705
20011
  * @throws {RequiredError}
19706
20012
  */
19707
20013
  postCreateShipment(id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShipmentDTO, any, {}>>;
20014
+ /**
20015
+ * Create Engineered Wizard
20016
+ * @param {number} id Order ID
20017
+ * @param {EngineeredWizardRequestModel} [engineeredWizardRequestModel] Engineered Wizard Request
20018
+ * @param {*} [options] Override http request option.
20019
+ * @throws {RequiredError}
20020
+ */
20021
+ postCreateWizardFromOrder(id: number, engineeredWizardRequestModel?: EngineeredWizardRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxSummaryDTO, any, {}>>;
19708
20022
  /**
19709
20023
  * Create An Order (Beta)
19710
20024
  * @summary Create An Order (Beta)