yellowgrid-api-ts 3.2.288 → 3.2.290

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
  */
@@ -6682,6 +6702,7 @@ export declare const ReportRequestDTOReportEnum: {
6682
6702
  readonly _11: "11";
6683
6703
  readonly _12: "12";
6684
6704
  readonly _13: "13";
6705
+ readonly _14: "14";
6685
6706
  };
6686
6707
  export type ReportRequestDTOReportEnum = typeof ReportRequestDTOReportEnum[keyof typeof ReportRequestDTOReportEnum];
6687
6708
  export declare const ReportRequestDTOGraphTypeEnum: {
@@ -9487,6 +9508,72 @@ export interface TcxDeadLicenceEntity {
9487
9508
  */
9488
9509
  'date': string;
9489
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
+ }
9490
9577
  /**
9491
9578
  * 3CX Wizard Extension
9492
9579
  */
@@ -10478,6 +10565,19 @@ export interface TcxSipTrunksEntity {
10478
10565
  */
10479
10566
  'ipAddress'?: string | null;
10480
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
+ }
10481
10581
  /**
10482
10582
  * 3CX Template
10483
10583
  */
@@ -10555,6 +10655,7 @@ export interface TcxWizardModel {
10555
10655
  'sbcs'?: Array<TcxSbcModel> | null;
10556
10656
  'sipTrunk'?: TcxSipTrunksEntity | null;
10557
10657
  'installationStatus'?: TcxWizardModelInstallationStatusEnum | null;
10658
+ 'engineering'?: TcxEngineeringDTO | null;
10558
10659
  'setup'?: TcxSetupEntity | null;
10559
10660
  /**
10560
10661
  * End User Wizard View
@@ -15334,6 +15435,13 @@ export declare const Class3CXInstallationWizardApiAxiosParamCreator: (configurat
15334
15435
  * @throws {RequiredError}
15335
15436
  */
15336
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>;
15337
15445
  /**
15338
15446
  * Update 3CX Installation Wizard
15339
15447
  * @summary Update 3CX Installation Wizard
@@ -15342,6 +15450,43 @@ export declare const Class3CXInstallationWizardApiAxiosParamCreator: (configurat
15342
15450
  * @throws {RequiredError}
15343
15451
  */
15344
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>;
15345
15490
  /**
15346
15491
  * Add Extensions To 3CX Installation Wizard
15347
15492
  * @summary Add Extensions To 3CX Installation Wizard
@@ -15622,6 +15767,13 @@ export declare const Class3CXInstallationWizardApiFp: (configuration?: Configura
15622
15767
  * @throws {RequiredError}
15623
15768
  */
15624
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>>;
15625
15777
  /**
15626
15778
  * Update 3CX Installation Wizard
15627
15779
  * @summary Update 3CX Installation Wizard
@@ -15630,6 +15782,43 @@ export declare const Class3CXInstallationWizardApiFp: (configuration?: Configura
15630
15782
  * @throws {RequiredError}
15631
15783
  */
15632
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>>;
15633
15822
  /**
15634
15823
  * Add Extensions To 3CX Installation Wizard
15635
15824
  * @summary Add Extensions To 3CX Installation Wizard
@@ -15910,6 +16099,13 @@ export declare const Class3CXInstallationWizardApiFactory: (configuration?: Conf
15910
16099
  * @throws {RequiredError}
15911
16100
  */
15912
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>;
15913
16109
  /**
15914
16110
  * Update 3CX Installation Wizard
15915
16111
  * @summary Update 3CX Installation Wizard
@@ -15918,6 +16114,43 @@ export declare const Class3CXInstallationWizardApiFactory: (configuration?: Conf
15918
16114
  * @throws {RequiredError}
15919
16115
  */
15920
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>;
15921
16154
  /**
15922
16155
  * Add Extensions To 3CX Installation Wizard
15923
16156
  * @summary Add Extensions To 3CX Installation Wizard
@@ -16198,6 +16431,13 @@ export declare class Class3CXInstallationWizardApi extends BaseAPI {
16198
16431
  * @throws {RequiredError}
16199
16432
  */
16200
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, {}>>;
16201
16441
  /**
16202
16442
  * Update 3CX Installation Wizard
16203
16443
  * @summary Update 3CX Installation Wizard
@@ -16206,6 +16446,43 @@ export declare class Class3CXInstallationWizardApi extends BaseAPI {
16206
16446
  * @throws {RequiredError}
16207
16447
  */
16208
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, {}>>;
16209
16486
  /**
16210
16487
  * Add Extensions To 3CX Installation Wizard
16211
16488
  * @summary Add Extensions To 3CX Installation Wizard
@@ -16317,6 +16594,11 @@ export declare class Class3CXInstallationWizardApi extends BaseAPI {
16317
16594
  */
16318
16595
  postUploadBackup(backup: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxBackupModel, any, {}>>;
16319
16596
  }
16597
+ export declare const PatchMarkEngineerTaskAsCompleteCompleteEnum: {
16598
+ readonly True: "true";
16599
+ readonly False: "false";
16600
+ };
16601
+ export type PatchMarkEngineerTaskAsCompleteCompleteEnum = typeof PatchMarkEngineerTaskAsCompleteCompleteEnum[keyof typeof PatchMarkEngineerTaskAsCompleteCompleteEnum];
16320
16602
  /**
16321
16603
  * Class3CXInstallationsApi - axios parameter creator
16322
16604
  */
@@ -18595,6 +18877,7 @@ export declare const PostAccessTokenScopeEnum: {
18595
18877
  export type PostAccessTokenScopeEnum = typeof PostAccessTokenScopeEnum[keyof typeof PostAccessTokenScopeEnum];
18596
18878
  export declare const PostAccessTokenTokenExchangeTypeEnum: {
18597
18879
  readonly TcxWizard: "tcx_wizard";
18880
+ readonly TcxWizardAdmin: "tcx_wizard_admin";
18598
18881
  readonly Portal: "portal";
18599
18882
  };
18600
18883
  export type PostAccessTokenTokenExchangeTypeEnum = typeof PostAccessTokenTokenExchangeTypeEnum[keyof typeof PostAccessTokenTokenExchangeTypeEnum];
@@ -18798,6 +19081,14 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
18798
19081
  * @throws {RequiredError}
18799
19082
  */
18800
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>;
18801
19092
  /**
18802
19093
  * Create An Order (Beta)
18803
19094
  * @summary Create An Order (Beta)
@@ -19100,6 +19391,14 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
19100
19391
  * @throws {RequiredError}
19101
19392
  */
19102
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>>;
19103
19402
  /**
19104
19403
  * Create An Order (Beta)
19105
19404
  * @summary Create An Order (Beta)
@@ -19402,6 +19701,14 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
19402
19701
  * @throws {RequiredError}
19403
19702
  */
19404
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>;
19405
19712
  /**
19406
19713
  * Create An Order (Beta)
19407
19714
  * @summary Create An Order (Beta)
@@ -19704,6 +20011,14 @@ export declare class OrdersApi extends BaseAPI {
19704
20011
  * @throws {RequiredError}
19705
20012
  */
19706
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, {}>>;
19707
20022
  /**
19708
20023
  * Create An Order (Beta)
19709
20024
  * @summary Create An Order (Beta)