yellowgrid-api-ts 3.2.71-dev.0 → 3.2.74-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +2 -1
- package/README.md +5 -3
- package/api.ts +351 -221
- package/dist/api.d.ts +258 -169
- package/dist/api.js +236 -149
- package/docs/AdminNumberPortDTO.md +57 -0
- package/docs/NumberPortNoteDTO.md +29 -0
- package/docs/NumberPortingApi.md +63 -6
- package/docs/OrdersApi.md +55 -55
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -647,6 +647,127 @@ export interface AddressRequestModel {
|
|
|
647
647
|
*/
|
|
648
648
|
'addressPostcode'?: string;
|
|
649
649
|
}
|
|
650
|
+
/**
|
|
651
|
+
* Admin Number Port Response
|
|
652
|
+
* @export
|
|
653
|
+
* @interface AdminNumberPortDTO
|
|
654
|
+
*/
|
|
655
|
+
export interface AdminNumberPortDTO {
|
|
656
|
+
/**
|
|
657
|
+
* Company Name
|
|
658
|
+
* @type {string}
|
|
659
|
+
* @memberof AdminNumberPortDTO
|
|
660
|
+
*/
|
|
661
|
+
'companyName'?: string | null;
|
|
662
|
+
/**
|
|
663
|
+
* Address Line 1
|
|
664
|
+
* @type {string}
|
|
665
|
+
* @memberof AdminNumberPortDTO
|
|
666
|
+
*/
|
|
667
|
+
'addressLine1'?: string | null;
|
|
668
|
+
/**
|
|
669
|
+
* Address Line 2
|
|
670
|
+
* @type {string}
|
|
671
|
+
* @memberof AdminNumberPortDTO
|
|
672
|
+
*/
|
|
673
|
+
'addressLine2'?: string | null;
|
|
674
|
+
/**
|
|
675
|
+
* City
|
|
676
|
+
* @type {string}
|
|
677
|
+
* @memberof AdminNumberPortDTO
|
|
678
|
+
*/
|
|
679
|
+
'city'?: string | null;
|
|
680
|
+
/**
|
|
681
|
+
* Post Code
|
|
682
|
+
* @type {string}
|
|
683
|
+
* @memberof AdminNumberPortDTO
|
|
684
|
+
*/
|
|
685
|
+
'postCode'?: string | null;
|
|
686
|
+
/**
|
|
687
|
+
* Trunk ID
|
|
688
|
+
* @type {number}
|
|
689
|
+
* @memberof AdminNumberPortDTO
|
|
690
|
+
*/
|
|
691
|
+
'trunkId'?: number | null;
|
|
692
|
+
/**
|
|
693
|
+
* Starter Bundle ID
|
|
694
|
+
* @type {string}
|
|
695
|
+
* @memberof AdminNumberPortDTO
|
|
696
|
+
*/
|
|
697
|
+
'tenantId'?: string | null;
|
|
698
|
+
/**
|
|
699
|
+
* Requested Port Date
|
|
700
|
+
* @type {string}
|
|
701
|
+
* @memberof AdminNumberPortDTO
|
|
702
|
+
*/
|
|
703
|
+
'requestedPortDate'?: string | null;
|
|
704
|
+
/**
|
|
705
|
+
* Port Date ASAP
|
|
706
|
+
* @type {boolean}
|
|
707
|
+
* @memberof AdminNumberPortDTO
|
|
708
|
+
*/
|
|
709
|
+
'asap'?: boolean | null;
|
|
710
|
+
/**
|
|
711
|
+
* Comment
|
|
712
|
+
* @type {string}
|
|
713
|
+
* @memberof AdminNumberPortDTO
|
|
714
|
+
*/
|
|
715
|
+
'comment'?: string | null;
|
|
716
|
+
/**
|
|
717
|
+
* Number Port ID
|
|
718
|
+
* @type {number}
|
|
719
|
+
* @memberof AdminNumberPortDTO
|
|
720
|
+
*/
|
|
721
|
+
'id'?: number;
|
|
722
|
+
/**
|
|
723
|
+
* Reseller ID
|
|
724
|
+
* @type {number}
|
|
725
|
+
* @memberof AdminNumberPortDTO
|
|
726
|
+
*/
|
|
727
|
+
'customerId'?: number;
|
|
728
|
+
/**
|
|
729
|
+
* Customer Name
|
|
730
|
+
* @type {string}
|
|
731
|
+
* @memberof AdminNumberPortDTO
|
|
732
|
+
*/
|
|
733
|
+
'customerName'?: string;
|
|
734
|
+
/**
|
|
735
|
+
* Porting Date
|
|
736
|
+
* @type {string}
|
|
737
|
+
* @memberof AdminNumberPortDTO
|
|
738
|
+
*/
|
|
739
|
+
'portDate'?: string;
|
|
740
|
+
/**
|
|
741
|
+
* Number Ranges
|
|
742
|
+
* @type {Array<NumberPortRangeDTO>}
|
|
743
|
+
* @memberof AdminNumberPortDTO
|
|
744
|
+
*/
|
|
745
|
+
'numberRanges'?: Array<NumberPortRangeDTO>;
|
|
746
|
+
/**
|
|
747
|
+
* Status
|
|
748
|
+
* @type {number}
|
|
749
|
+
* @memberof AdminNumberPortDTO
|
|
750
|
+
*/
|
|
751
|
+
'status'?: number;
|
|
752
|
+
/**
|
|
753
|
+
* Status Text
|
|
754
|
+
* @type {string}
|
|
755
|
+
* @memberof AdminNumberPortDTO
|
|
756
|
+
*/
|
|
757
|
+
'statusText'?: string;
|
|
758
|
+
/**
|
|
759
|
+
* Ticket ID
|
|
760
|
+
* @type {number}
|
|
761
|
+
* @memberof AdminNumberPortDTO
|
|
762
|
+
*/
|
|
763
|
+
'ticketId'?: number | null;
|
|
764
|
+
/**
|
|
765
|
+
* Notes
|
|
766
|
+
* @type {Array<NumberPortNoteDTO>}
|
|
767
|
+
* @memberof AdminNumberPortDTO
|
|
768
|
+
*/
|
|
769
|
+
'notes'?: Array<NumberPortNoteDTO>;
|
|
770
|
+
}
|
|
650
771
|
/**
|
|
651
772
|
* Admin Order Request
|
|
652
773
|
* @export
|
|
@@ -1099,6 +1220,7 @@ export declare const AuditLogEntityTypeEnum: {
|
|
|
1099
1220
|
readonly PopsLinkedOrders: "pops_linked_orders";
|
|
1100
1221
|
readonly NumberPorts: "number_ports";
|
|
1101
1222
|
readonly NumberPortRanges: "number_port_ranges";
|
|
1223
|
+
readonly NumberPortNotes: "number_port_notes";
|
|
1102
1224
|
readonly PopsOfflineInstances: "pops_offline_instances";
|
|
1103
1225
|
readonly PopsOrderedItems: "pops_ordered_items";
|
|
1104
1226
|
readonly PopsPrizes: "pops_prizes";
|
|
@@ -4210,107 +4332,41 @@ export interface NumberPortDTO {
|
|
|
4210
4332
|
'ticketId'?: number | null;
|
|
4211
4333
|
}
|
|
4212
4334
|
/**
|
|
4213
|
-
* Number Port
|
|
4335
|
+
* Number Port Note DTO
|
|
4214
4336
|
* @export
|
|
4215
|
-
* @interface
|
|
4337
|
+
* @interface NumberPortNoteDTO
|
|
4216
4338
|
*/
|
|
4217
|
-
export interface
|
|
4339
|
+
export interface NumberPortNoteDTO {
|
|
4218
4340
|
/**
|
|
4219
|
-
*
|
|
4341
|
+
* id
|
|
4220
4342
|
* @type {number}
|
|
4221
|
-
* @memberof
|
|
4343
|
+
* @memberof NumberPortNoteDTO
|
|
4222
4344
|
*/
|
|
4223
4345
|
'id'?: number;
|
|
4224
4346
|
/**
|
|
4225
|
-
*
|
|
4347
|
+
* portId
|
|
4226
4348
|
* @type {number}
|
|
4227
|
-
* @memberof
|
|
4349
|
+
* @memberof NumberPortNoteDTO
|
|
4228
4350
|
*/
|
|
4229
|
-
'
|
|
4230
|
-
/**
|
|
4231
|
-
* End User
|
|
4232
|
-
* @type {string}
|
|
4233
|
-
* @memberof NumberPortModel
|
|
4234
|
-
*/
|
|
4235
|
-
'endUser'?: string | null;
|
|
4236
|
-
/**
|
|
4237
|
-
* Address Line 1
|
|
4238
|
-
* @type {string}
|
|
4239
|
-
* @memberof NumberPortModel
|
|
4240
|
-
*/
|
|
4241
|
-
'addressLine1'?: string | null;
|
|
4242
|
-
/**
|
|
4243
|
-
* Address Line 2
|
|
4244
|
-
* @type {string}
|
|
4245
|
-
* @memberof NumberPortModel
|
|
4246
|
-
*/
|
|
4247
|
-
'addressLine2'?: string | null;
|
|
4248
|
-
/**
|
|
4249
|
-
* City
|
|
4250
|
-
* @type {string}
|
|
4251
|
-
* @memberof NumberPortModel
|
|
4252
|
-
*/
|
|
4253
|
-
'city'?: string | null;
|
|
4254
|
-
/**
|
|
4255
|
-
* Post Code
|
|
4256
|
-
* @type {string}
|
|
4257
|
-
* @memberof NumberPortModel
|
|
4258
|
-
*/
|
|
4259
|
-
'postCode'?: string | null;
|
|
4260
|
-
/**
|
|
4261
|
-
* Trunk ID
|
|
4262
|
-
* @type {number}
|
|
4263
|
-
* @memberof NumberPortModel
|
|
4264
|
-
*/
|
|
4265
|
-
'trunkId'?: number | null;
|
|
4266
|
-
/**
|
|
4267
|
-
* Tenant ID
|
|
4268
|
-
* @type {string}
|
|
4269
|
-
* @memberof NumberPortModel
|
|
4270
|
-
*/
|
|
4271
|
-
'tenantId'?: string | null;
|
|
4272
|
-
/**
|
|
4273
|
-
* Requested Port Date
|
|
4274
|
-
* @type {string}
|
|
4275
|
-
* @memberof NumberPortModel
|
|
4276
|
-
*/
|
|
4277
|
-
'requestedPortDate'?: string | null;
|
|
4351
|
+
'portId'?: number;
|
|
4278
4352
|
/**
|
|
4279
|
-
*
|
|
4353
|
+
* note
|
|
4280
4354
|
* @type {string}
|
|
4281
|
-
* @memberof
|
|
4355
|
+
* @memberof NumberPortNoteDTO
|
|
4282
4356
|
*/
|
|
4283
|
-
'
|
|
4357
|
+
'note'?: string;
|
|
4284
4358
|
/**
|
|
4285
|
-
*
|
|
4359
|
+
* user
|
|
4286
4360
|
* @type {string}
|
|
4287
|
-
* @memberof
|
|
4288
|
-
*/
|
|
4289
|
-
'comment'?: string | null;
|
|
4290
|
-
/**
|
|
4291
|
-
* Status
|
|
4292
|
-
* @type {number}
|
|
4293
|
-
* @memberof NumberPortModel
|
|
4294
|
-
*/
|
|
4295
|
-
'status'?: number | null;
|
|
4296
|
-
/**
|
|
4297
|
-
* Ticket ID
|
|
4298
|
-
* @type {number}
|
|
4299
|
-
* @memberof NumberPortModel
|
|
4361
|
+
* @memberof NumberPortNoteDTO
|
|
4300
4362
|
*/
|
|
4301
|
-
'
|
|
4302
|
-
/**
|
|
4303
|
-
* Number Port Ranges
|
|
4304
|
-
* @type {Array<any>}
|
|
4305
|
-
* @memberof NumberPortModel
|
|
4306
|
-
*/
|
|
4307
|
-
'ranges'?: Array<any>;
|
|
4363
|
+
'user'?: string;
|
|
4308
4364
|
/**
|
|
4309
|
-
*
|
|
4365
|
+
* timestamp
|
|
4310
4366
|
* @type {string}
|
|
4311
|
-
* @memberof
|
|
4367
|
+
* @memberof NumberPortNoteDTO
|
|
4312
4368
|
*/
|
|
4313
|
-
'
|
|
4369
|
+
'timestamp'?: string;
|
|
4314
4370
|
}
|
|
4315
4371
|
/**
|
|
4316
4372
|
* Number Port Range Response
|
|
@@ -14593,6 +14649,14 @@ export declare const NumberPortingApiAxiosParamCreator: (configuration?: Configu
|
|
|
14593
14649
|
* @throws {RequiredError}
|
|
14594
14650
|
*/
|
|
14595
14651
|
patchCloseAdminNumberPort: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14652
|
+
/**
|
|
14653
|
+
*
|
|
14654
|
+
* @param {number} id Number Port ID
|
|
14655
|
+
* @param {string} body
|
|
14656
|
+
* @param {*} [options] Override http request option.
|
|
14657
|
+
* @throws {RequiredError}
|
|
14658
|
+
*/
|
|
14659
|
+
postAddAdminNote: (id: number, body: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14596
14660
|
/**
|
|
14597
14661
|
*
|
|
14598
14662
|
* @param {string | null} [companyName] Company Name
|
|
@@ -14685,7 +14749,7 @@ export declare const NumberPortingApiFp: (configuration?: Configuration) => {
|
|
|
14685
14749
|
* @param {*} [options] Override http request option.
|
|
14686
14750
|
* @throws {RequiredError}
|
|
14687
14751
|
*/
|
|
14688
|
-
getGetAdminNumberPort(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
14752
|
+
getGetAdminNumberPort(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminNumberPortDTO>>;
|
|
14689
14753
|
/**
|
|
14690
14754
|
*
|
|
14691
14755
|
* @param {number} [pageSize] Number Of Results
|
|
@@ -14708,7 +14772,15 @@ export declare const NumberPortingApiFp: (configuration?: Configuration) => {
|
|
|
14708
14772
|
* @param {*} [options] Override http request option.
|
|
14709
14773
|
* @throws {RequiredError}
|
|
14710
14774
|
*/
|
|
14711
|
-
patchCloseAdminNumberPort(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
14775
|
+
patchCloseAdminNumberPort(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminNumberPortDTO>>;
|
|
14776
|
+
/**
|
|
14777
|
+
*
|
|
14778
|
+
* @param {number} id Number Port ID
|
|
14779
|
+
* @param {string} body
|
|
14780
|
+
* @param {*} [options] Override http request option.
|
|
14781
|
+
* @throws {RequiredError}
|
|
14782
|
+
*/
|
|
14783
|
+
postAddAdminNote(id: number, body: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminNumberPortDTO>>;
|
|
14712
14784
|
/**
|
|
14713
14785
|
*
|
|
14714
14786
|
* @param {string | null} [companyName] Company Name
|
|
@@ -14772,7 +14844,7 @@ export declare const NumberPortingApiFp: (configuration?: Configuration) => {
|
|
|
14772
14844
|
* @param {*} [options] Override http request option.
|
|
14773
14845
|
* @throws {RequiredError}
|
|
14774
14846
|
*/
|
|
14775
|
-
putGetAdminNumberPort(id: number, numberPortDTO: NumberPortDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<
|
|
14847
|
+
putGetAdminNumberPort(id: number, numberPortDTO: NumberPortDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminNumberPortDTO>>;
|
|
14776
14848
|
};
|
|
14777
14849
|
/**
|
|
14778
14850
|
* NumberPortingApi - factory interface
|
|
@@ -14801,7 +14873,7 @@ export declare const NumberPortingApiFactory: (configuration?: Configuration, ba
|
|
|
14801
14873
|
* @param {*} [options] Override http request option.
|
|
14802
14874
|
* @throws {RequiredError}
|
|
14803
14875
|
*/
|
|
14804
|
-
getGetAdminNumberPort(id: number, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
14876
|
+
getGetAdminNumberPort(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminNumberPortDTO>;
|
|
14805
14877
|
/**
|
|
14806
14878
|
*
|
|
14807
14879
|
* @param {number} [pageSize] Number Of Results
|
|
@@ -14824,7 +14896,15 @@ export declare const NumberPortingApiFactory: (configuration?: Configuration, ba
|
|
|
14824
14896
|
* @param {*} [options] Override http request option.
|
|
14825
14897
|
* @throws {RequiredError}
|
|
14826
14898
|
*/
|
|
14827
|
-
patchCloseAdminNumberPort(id: number, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
14899
|
+
patchCloseAdminNumberPort(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminNumberPortDTO>;
|
|
14900
|
+
/**
|
|
14901
|
+
*
|
|
14902
|
+
* @param {number} id Number Port ID
|
|
14903
|
+
* @param {string} body
|
|
14904
|
+
* @param {*} [options] Override http request option.
|
|
14905
|
+
* @throws {RequiredError}
|
|
14906
|
+
*/
|
|
14907
|
+
postAddAdminNote(id: number, body: string, options?: RawAxiosRequestConfig): AxiosPromise<AdminNumberPortDTO>;
|
|
14828
14908
|
/**
|
|
14829
14909
|
*
|
|
14830
14910
|
* @param {string | null} [companyName] Company Name
|
|
@@ -14888,7 +14968,7 @@ export declare const NumberPortingApiFactory: (configuration?: Configuration, ba
|
|
|
14888
14968
|
* @param {*} [options] Override http request option.
|
|
14889
14969
|
* @throws {RequiredError}
|
|
14890
14970
|
*/
|
|
14891
|
-
putGetAdminNumberPort(id: number, numberPortDTO: NumberPortDTO, options?: RawAxiosRequestConfig): AxiosPromise<
|
|
14971
|
+
putGetAdminNumberPort(id: number, numberPortDTO: NumberPortDTO, options?: RawAxiosRequestConfig): AxiosPromise<AdminNumberPortDTO>;
|
|
14892
14972
|
};
|
|
14893
14973
|
/**
|
|
14894
14974
|
* NumberPortingApi - object-oriented interface
|
|
@@ -14922,7 +15002,7 @@ export declare class NumberPortingApi extends BaseAPI {
|
|
|
14922
15002
|
* @throws {RequiredError}
|
|
14923
15003
|
* @memberof NumberPortingApi
|
|
14924
15004
|
*/
|
|
14925
|
-
getGetAdminNumberPort(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
15005
|
+
getGetAdminNumberPort(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminNumberPortDTO, any, {}>>;
|
|
14926
15006
|
/**
|
|
14927
15007
|
*
|
|
14928
15008
|
* @param {number} [pageSize] Number Of Results
|
|
@@ -14948,7 +15028,16 @@ export declare class NumberPortingApi extends BaseAPI {
|
|
|
14948
15028
|
* @throws {RequiredError}
|
|
14949
15029
|
* @memberof NumberPortingApi
|
|
14950
15030
|
*/
|
|
14951
|
-
patchCloseAdminNumberPort(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
15031
|
+
patchCloseAdminNumberPort(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminNumberPortDTO, any, {}>>;
|
|
15032
|
+
/**
|
|
15033
|
+
*
|
|
15034
|
+
* @param {number} id Number Port ID
|
|
15035
|
+
* @param {string} body
|
|
15036
|
+
* @param {*} [options] Override http request option.
|
|
15037
|
+
* @throws {RequiredError}
|
|
15038
|
+
* @memberof NumberPortingApi
|
|
15039
|
+
*/
|
|
15040
|
+
postAddAdminNote(id: number, body: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminNumberPortDTO, any, {}>>;
|
|
14952
15041
|
/**
|
|
14953
15042
|
*
|
|
14954
15043
|
* @param {string | null} [companyName] Company Name
|
|
@@ -15016,7 +15105,7 @@ export declare class NumberPortingApi extends BaseAPI {
|
|
|
15016
15105
|
* @throws {RequiredError}
|
|
15017
15106
|
* @memberof NumberPortingApi
|
|
15018
15107
|
*/
|
|
15019
|
-
putGetAdminNumberPort(id: number, numberPortDTO: NumberPortDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<
|
|
15108
|
+
putGetAdminNumberPort(id: number, numberPortDTO: NumberPortDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminNumberPortDTO, any, {}>>;
|
|
15020
15109
|
}
|
|
15021
15110
|
/**
|
|
15022
15111
|
* OAuth20Api - axios parameter creator
|
|
@@ -15397,23 +15486,23 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
15397
15486
|
*/
|
|
15398
15487
|
deleteDeleteBatch: (id: number, batchId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15399
15488
|
/**
|
|
15400
|
-
* Delete
|
|
15401
|
-
* @summary Delete
|
|
15489
|
+
* Delete Orders (Beta)
|
|
15490
|
+
* @summary Delete Orders (Beta)
|
|
15402
15491
|
* @param {number} id Order ID
|
|
15403
|
-
* @param {number} batchId Batch ID
|
|
15404
|
-
* @param {number} shipmentId Shipment ID
|
|
15405
15492
|
* @param {*} [options] Override http request option.
|
|
15406
15493
|
* @throws {RequiredError}
|
|
15407
15494
|
*/
|
|
15408
|
-
|
|
15495
|
+
deleteUpdateOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15409
15496
|
/**
|
|
15410
|
-
* Delete
|
|
15411
|
-
* @summary Delete
|
|
15497
|
+
* Delete Shipment (Admin)
|
|
15498
|
+
* @summary Delete Shipment (Admin)
|
|
15412
15499
|
* @param {number} id Order ID
|
|
15500
|
+
* @param {number} batchId Batch ID
|
|
15501
|
+
* @param {number} shipmentId Shipment ID
|
|
15413
15502
|
* @param {*} [options] Override http request option.
|
|
15414
15503
|
* @throws {RequiredError}
|
|
15415
15504
|
*/
|
|
15416
|
-
|
|
15505
|
+
deleteUpdateShipment: (id: number, batchId: number, shipmentId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15417
15506
|
/**
|
|
15418
15507
|
* Get Editable Order (Admin)
|
|
15419
15508
|
* @summary Get Editable Order (Admin)
|
|
@@ -15563,17 +15652,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
15563
15652
|
* @throws {RequiredError}
|
|
15564
15653
|
*/
|
|
15565
15654
|
putAllocateItems: (id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15566
|
-
/**
|
|
15567
|
-
* Update Shipment (Admin)
|
|
15568
|
-
* @summary Update Shipment (Admin)
|
|
15569
|
-
* @param {number} id Order ID
|
|
15570
|
-
* @param {number} batchId Batch ID
|
|
15571
|
-
* @param {number} shipmentId Shipment ID
|
|
15572
|
-
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
15573
|
-
* @param {*} [options] Override http request option.
|
|
15574
|
-
* @throws {RequiredError}
|
|
15575
|
-
*/
|
|
15576
|
-
putCreateShipment: (id: number, batchId: number, shipmentId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15577
15655
|
/**
|
|
15578
15656
|
* Update An Order (Admin)
|
|
15579
15657
|
* @summary Update An Order (Admin)
|
|
@@ -15594,6 +15672,17 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
15594
15672
|
* @throws {RequiredError}
|
|
15595
15673
|
*/
|
|
15596
15674
|
putUpdateOrder: (id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15675
|
+
/**
|
|
15676
|
+
* Update Shipment (Admin)
|
|
15677
|
+
* @summary Update Shipment (Admin)
|
|
15678
|
+
* @param {number} id Order ID
|
|
15679
|
+
* @param {number} batchId Batch ID
|
|
15680
|
+
* @param {number} shipmentId Shipment ID
|
|
15681
|
+
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
15682
|
+
* @param {*} [options] Override http request option.
|
|
15683
|
+
* @throws {RequiredError}
|
|
15684
|
+
*/
|
|
15685
|
+
putUpdateShipment: (id: number, batchId: number, shipmentId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15597
15686
|
};
|
|
15598
15687
|
/**
|
|
15599
15688
|
* OrdersApi - functional programming interface
|
|
@@ -15609,23 +15698,23 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
15609
15698
|
*/
|
|
15610
15699
|
deleteDeleteBatch(id: number, batchId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15611
15700
|
/**
|
|
15612
|
-
* Delete
|
|
15613
|
-
* @summary Delete
|
|
15701
|
+
* Delete Orders (Beta)
|
|
15702
|
+
* @summary Delete Orders (Beta)
|
|
15614
15703
|
* @param {number} id Order ID
|
|
15615
|
-
* @param {number} batchId Batch ID
|
|
15616
|
-
* @param {number} shipmentId Shipment ID
|
|
15617
15704
|
* @param {*} [options] Override http request option.
|
|
15618
15705
|
* @throws {RequiredError}
|
|
15619
15706
|
*/
|
|
15620
|
-
|
|
15707
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15621
15708
|
/**
|
|
15622
|
-
* Delete
|
|
15623
|
-
* @summary Delete
|
|
15709
|
+
* Delete Shipment (Admin)
|
|
15710
|
+
* @summary Delete Shipment (Admin)
|
|
15624
15711
|
* @param {number} id Order ID
|
|
15712
|
+
* @param {number} batchId Batch ID
|
|
15713
|
+
* @param {number} shipmentId Shipment ID
|
|
15625
15714
|
* @param {*} [options] Override http request option.
|
|
15626
15715
|
* @throws {RequiredError}
|
|
15627
15716
|
*/
|
|
15628
|
-
|
|
15717
|
+
deleteUpdateShipment(id: number, batchId: number, shipmentId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
15629
15718
|
/**
|
|
15630
15719
|
* Get Editable Order (Admin)
|
|
15631
15720
|
* @summary Get Editable Order (Admin)
|
|
@@ -15775,17 +15864,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
15775
15864
|
* @throws {RequiredError}
|
|
15776
15865
|
*/
|
|
15777
15866
|
putAllocateItems(id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<BatchDTO>>>;
|
|
15778
|
-
/**
|
|
15779
|
-
* Update Shipment (Admin)
|
|
15780
|
-
* @summary Update Shipment (Admin)
|
|
15781
|
-
* @param {number} id Order ID
|
|
15782
|
-
* @param {number} batchId Batch ID
|
|
15783
|
-
* @param {number} shipmentId Shipment ID
|
|
15784
|
-
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
15785
|
-
* @param {*} [options] Override http request option.
|
|
15786
|
-
* @throws {RequiredError}
|
|
15787
|
-
*/
|
|
15788
|
-
putCreateShipment(id: number, batchId: number, shipmentId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShipmentModel>>;
|
|
15789
15867
|
/**
|
|
15790
15868
|
* Update An Order (Admin)
|
|
15791
15869
|
* @summary Update An Order (Admin)
|
|
@@ -15806,6 +15884,17 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
15806
15884
|
* @throws {RequiredError}
|
|
15807
15885
|
*/
|
|
15808
15886
|
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
15887
|
+
/**
|
|
15888
|
+
* Update Shipment (Admin)
|
|
15889
|
+
* @summary Update Shipment (Admin)
|
|
15890
|
+
* @param {number} id Order ID
|
|
15891
|
+
* @param {number} batchId Batch ID
|
|
15892
|
+
* @param {number} shipmentId Shipment ID
|
|
15893
|
+
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
15894
|
+
* @param {*} [options] Override http request option.
|
|
15895
|
+
* @throws {RequiredError}
|
|
15896
|
+
*/
|
|
15897
|
+
putUpdateShipment(id: number, batchId: number, shipmentId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShipmentModel>>;
|
|
15809
15898
|
};
|
|
15810
15899
|
/**
|
|
15811
15900
|
* OrdersApi - factory interface
|
|
@@ -15821,23 +15910,23 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
15821
15910
|
*/
|
|
15822
15911
|
deleteDeleteBatch(id: number, batchId: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15823
15912
|
/**
|
|
15824
|
-
* Delete
|
|
15825
|
-
* @summary Delete
|
|
15913
|
+
* Delete Orders (Beta)
|
|
15914
|
+
* @summary Delete Orders (Beta)
|
|
15826
15915
|
* @param {number} id Order ID
|
|
15827
|
-
* @param {number} batchId Batch ID
|
|
15828
|
-
* @param {number} shipmentId Shipment ID
|
|
15829
15916
|
* @param {*} [options] Override http request option.
|
|
15830
15917
|
* @throws {RequiredError}
|
|
15831
15918
|
*/
|
|
15832
|
-
|
|
15919
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15833
15920
|
/**
|
|
15834
|
-
* Delete
|
|
15835
|
-
* @summary Delete
|
|
15921
|
+
* Delete Shipment (Admin)
|
|
15922
|
+
* @summary Delete Shipment (Admin)
|
|
15836
15923
|
* @param {number} id Order ID
|
|
15924
|
+
* @param {number} batchId Batch ID
|
|
15925
|
+
* @param {number} shipmentId Shipment ID
|
|
15837
15926
|
* @param {*} [options] Override http request option.
|
|
15838
15927
|
* @throws {RequiredError}
|
|
15839
15928
|
*/
|
|
15840
|
-
|
|
15929
|
+
deleteUpdateShipment(id: number, batchId: number, shipmentId: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15841
15930
|
/**
|
|
15842
15931
|
* Get Editable Order (Admin)
|
|
15843
15932
|
* @summary Get Editable Order (Admin)
|
|
@@ -15987,17 +16076,6 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
15987
16076
|
* @throws {RequiredError}
|
|
15988
16077
|
*/
|
|
15989
16078
|
putAllocateItems(id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<BatchDTO>>;
|
|
15990
|
-
/**
|
|
15991
|
-
* Update Shipment (Admin)
|
|
15992
|
-
* @summary Update Shipment (Admin)
|
|
15993
|
-
* @param {number} id Order ID
|
|
15994
|
-
* @param {number} batchId Batch ID
|
|
15995
|
-
* @param {number} shipmentId Shipment ID
|
|
15996
|
-
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
15997
|
-
* @param {*} [options] Override http request option.
|
|
15998
|
-
* @throws {RequiredError}
|
|
15999
|
-
*/
|
|
16000
|
-
putCreateShipment(id: number, batchId: number, shipmentId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShipmentModel>;
|
|
16001
16079
|
/**
|
|
16002
16080
|
* Update An Order (Admin)
|
|
16003
16081
|
* @summary Update An Order (Admin)
|
|
@@ -16018,6 +16096,17 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
16018
16096
|
* @throws {RequiredError}
|
|
16019
16097
|
*/
|
|
16020
16098
|
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
16099
|
+
/**
|
|
16100
|
+
* Update Shipment (Admin)
|
|
16101
|
+
* @summary Update Shipment (Admin)
|
|
16102
|
+
* @param {number} id Order ID
|
|
16103
|
+
* @param {number} batchId Batch ID
|
|
16104
|
+
* @param {number} shipmentId Shipment ID
|
|
16105
|
+
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
16106
|
+
* @param {*} [options] Override http request option.
|
|
16107
|
+
* @throws {RequiredError}
|
|
16108
|
+
*/
|
|
16109
|
+
putUpdateShipment(id: number, batchId: number, shipmentId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShipmentModel>;
|
|
16021
16110
|
};
|
|
16022
16111
|
/**
|
|
16023
16112
|
* OrdersApi - object-oriented interface
|
|
@@ -16036,25 +16125,25 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
16036
16125
|
*/
|
|
16037
16126
|
deleteDeleteBatch(id: number, batchId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
16038
16127
|
/**
|
|
16039
|
-
* Delete
|
|
16040
|
-
* @summary Delete
|
|
16128
|
+
* Delete Orders (Beta)
|
|
16129
|
+
* @summary Delete Orders (Beta)
|
|
16041
16130
|
* @param {number} id Order ID
|
|
16042
|
-
* @param {number} batchId Batch ID
|
|
16043
|
-
* @param {number} shipmentId Shipment ID
|
|
16044
16131
|
* @param {*} [options] Override http request option.
|
|
16045
16132
|
* @throws {RequiredError}
|
|
16046
16133
|
* @memberof OrdersApi
|
|
16047
16134
|
*/
|
|
16048
|
-
|
|
16135
|
+
deleteUpdateOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
16049
16136
|
/**
|
|
16050
|
-
* Delete
|
|
16051
|
-
* @summary Delete
|
|
16137
|
+
* Delete Shipment (Admin)
|
|
16138
|
+
* @summary Delete Shipment (Admin)
|
|
16052
16139
|
* @param {number} id Order ID
|
|
16140
|
+
* @param {number} batchId Batch ID
|
|
16141
|
+
* @param {number} shipmentId Shipment ID
|
|
16053
16142
|
* @param {*} [options] Override http request option.
|
|
16054
16143
|
* @throws {RequiredError}
|
|
16055
16144
|
* @memberof OrdersApi
|
|
16056
16145
|
*/
|
|
16057
|
-
|
|
16146
|
+
deleteUpdateShipment(id: number, batchId: number, shipmentId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
16058
16147
|
/**
|
|
16059
16148
|
* Get Editable Order (Admin)
|
|
16060
16149
|
* @summary Get Editable Order (Admin)
|
|
@@ -16220,18 +16309,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
16220
16309
|
* @memberof OrdersApi
|
|
16221
16310
|
*/
|
|
16222
16311
|
putAllocateItems(id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<BatchDTO[], any, {}>>;
|
|
16223
|
-
/**
|
|
16224
|
-
* Update Shipment (Admin)
|
|
16225
|
-
* @summary Update Shipment (Admin)
|
|
16226
|
-
* @param {number} id Order ID
|
|
16227
|
-
* @param {number} batchId Batch ID
|
|
16228
|
-
* @param {number} shipmentId Shipment ID
|
|
16229
|
-
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
16230
|
-
* @param {*} [options] Override http request option.
|
|
16231
|
-
* @throws {RequiredError}
|
|
16232
|
-
* @memberof OrdersApi
|
|
16233
|
-
*/
|
|
16234
|
-
putCreateShipment(id: number, batchId: number, shipmentId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShipmentModel, any, {}>>;
|
|
16235
16312
|
/**
|
|
16236
16313
|
* Update An Order (Admin)
|
|
16237
16314
|
* @summary Update An Order (Admin)
|
|
@@ -16254,6 +16331,18 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
16254
16331
|
* @memberof OrdersApi
|
|
16255
16332
|
*/
|
|
16256
16333
|
putUpdateOrder(id: number, readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
16334
|
+
/**
|
|
16335
|
+
* Update Shipment (Admin)
|
|
16336
|
+
* @summary Update Shipment (Admin)
|
|
16337
|
+
* @param {number} id Order ID
|
|
16338
|
+
* @param {number} batchId Batch ID
|
|
16339
|
+
* @param {number} shipmentId Shipment ID
|
|
16340
|
+
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
16341
|
+
* @param {*} [options] Override http request option.
|
|
16342
|
+
* @throws {RequiredError}
|
|
16343
|
+
* @memberof OrdersApi
|
|
16344
|
+
*/
|
|
16345
|
+
putUpdateShipment(id: number, batchId: number, shipmentId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShipmentModel, any, {}>>;
|
|
16257
16346
|
}
|
|
16258
16347
|
/**
|
|
16259
16348
|
* @export
|