yellowgrid-api-ts 3.2.54-dev.0 → 3.2.55
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 +229 -249
- package/README.md +0 -34
- package/api.ts +206 -2366
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/config.json +3 -3
- package/configuration.ts +1 -1
- package/dist/api.d.ts +109 -1725
- package/dist/api.js +84 -1379
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/OrdersApi.md +12 -788
- package/getEnums.php +31 -31
- package/index.ts +1 -1
- package/package.json +1 -1
- package/dist/models/CourierEnum.d.ts +0 -18
- package/dist/models/CourierEnum.js +0 -20
- package/dist/models/PrinterEnum.d.ts +0 -18
- package/dist/models/PrinterEnum.js +0 -20
- package/docs/BatchDTO.md +0 -57
- package/docs/CreditNoteDTO.md +0 -21
- package/docs/CreditNoteEntity.md +0 -29
- package/docs/CreditNoteItemDTO.md +0 -25
- package/docs/CreditNoteItemEntity.md +0 -29
- package/docs/CreditNoteModel.md +0 -29
- package/docs/OrderDetailsDTO.md +0 -63
- package/docs/OrderItemDTO.md +0 -51
- package/docs/OrderedItemModel.md +0 -47
- package/docs/PostAddOrderNoteRequest.md +0 -20
- package/docs/PostSplitOrderRequest.md +0 -20
- package/docs/PrinterEntity.md +0 -29
- package/docs/PutAllocateItemsRequest.md +0 -20
- package/docs/PutAllocateItemsRequestItemsInner.md +0 -22
- package/docs/ShipmentDTO.md +0 -31
- package/docs/ShipmentItemDTO.md +0 -23
- package/docs/ShipmentItemModel.md +0 -29
- package/docs/ShipmentModel.md +0 -43
- package/docs/ShipmentRequestDTO.md +0 -31
- package/docs/ShippingRequestDTO.md +0 -24
- package/docs/SupplierModel.md +0 -37
- package/hs_err_pid58424.log +0 -247
- package/models/CourierEnum.ts +0 -19
- package/models/PrinterEnum.ts +0 -19
package/dist/api.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* Yellowgrid
|
|
3
|
-
* Welcome to the Yellowgrid API documentation.
|
|
3
|
+
* Welcome to the Yellowgrid API documentation. This API provides secure and comprehensive access to the Yellowgrid platform, enabling developers and integrators to manage accounts, contacts, SIP trunks, SMS messaging, 3CX integrations, and provisioning services. ## Key Features: - **Accounts**: View and manage account details, contacts, client credentials, and verification. - **Provisioning**: Automate setup and configuration of devices and groups. - **SIP Trunks**: Manage trunk creation, changes, DDIs, diverts, and configuration. - **Messaging**: Send SMS messages securely via the messaging gateway. - **3CX Integrations**: Automate licence handling, installation, and multi-tenant setup. ## Authentication: The API supports OAuth 2.0 for authentication and authorization. Ensure you use a valid bearer token for all authenticated endpoints. ## Base URL: `http://api.yellowgrid.local` For questions or technical support, please contact support@yellowgrid.co.uk.
|
|
4
4
|
*
|
|
5
5
|
* The version of the OpenAPI document: 0
|
|
6
6
|
*
|
|
@@ -1016,13 +1016,13 @@ export interface AuditLogEntity {
|
|
|
1016
1016
|
* @type {string}
|
|
1017
1017
|
* @memberof AuditLogEntity
|
|
1018
1018
|
*/
|
|
1019
|
-
'action'?:
|
|
1019
|
+
'action'?: string;
|
|
1020
1020
|
/**
|
|
1021
1021
|
* type
|
|
1022
1022
|
* @type {string}
|
|
1023
1023
|
* @memberof AuditLogEntity
|
|
1024
1024
|
*/
|
|
1025
|
-
'type'?:
|
|
1025
|
+
'type'?: string;
|
|
1026
1026
|
/**
|
|
1027
1027
|
* identifier
|
|
1028
1028
|
* @type {string}
|
|
@@ -1060,89 +1060,6 @@ export interface AuditLogEntity {
|
|
|
1060
1060
|
*/
|
|
1061
1061
|
'description'?: string;
|
|
1062
1062
|
}
|
|
1063
|
-
export declare const AuditLogEntityActionEnum: {
|
|
1064
|
-
readonly Create: "CREATE";
|
|
1065
|
-
readonly Read: "READ";
|
|
1066
|
-
readonly Update: "UPDATE";
|
|
1067
|
-
readonly Delete: "DELETE";
|
|
1068
|
-
};
|
|
1069
|
-
export type AuditLogEntityActionEnum = typeof AuditLogEntityActionEnum[keyof typeof AuditLogEntityActionEnum];
|
|
1070
|
-
export declare const AuditLogEntityTypeEnum: {
|
|
1071
|
-
readonly AuditLog: "audit_log";
|
|
1072
|
-
readonly PopsOrders: "pops_orders";
|
|
1073
|
-
readonly PopsAccountContacts: "pops_account_contacts";
|
|
1074
|
-
readonly ApiLog: "api_log";
|
|
1075
|
-
readonly PopsBatches: "pops_batches";
|
|
1076
|
-
readonly PopsCourierPrices: "pops_courier_prices";
|
|
1077
|
-
readonly PopsCreditAccounts: "pops_credit_accounts";
|
|
1078
|
-
readonly PopsCreditNotes: "pops_credit_notes";
|
|
1079
|
-
readonly PopsCreditNotesItems: "pops_credit_notes_items";
|
|
1080
|
-
readonly EdtechproClients: "edtechpro_clients";
|
|
1081
|
-
readonly EdtechproSchools: "edtechpro_schools";
|
|
1082
|
-
readonly FreshdeskTickets: "freshdesk_tickets";
|
|
1083
|
-
readonly PopsFtpAccounts: "pops_ftp_accounts";
|
|
1084
|
-
readonly ServiceEvents: "service_events";
|
|
1085
|
-
readonly ServiceEventUpdates: "service_event_updates";
|
|
1086
|
-
readonly ServiceEventSubscriptions: "service_event_subscriptions";
|
|
1087
|
-
readonly PopsInstanceFailoverIps: "pops_instance_failover_ips";
|
|
1088
|
-
readonly PopsOvhDeleteSchedule: "pops_ovh_delete_schedule";
|
|
1089
|
-
readonly PopsOvhInstances: "pops_ovh_instances";
|
|
1090
|
-
readonly PopsInstanceFailover: "pops_instance_failover";
|
|
1091
|
-
readonly PopsInstanceMonitoring: "pops_instance_monitoring";
|
|
1092
|
-
readonly PopsInstanceMonitoringLog: "pops_instance_monitoring_log";
|
|
1093
|
-
readonly PopsInstanceScheduledTasks: "pops_instance_scheduled_tasks";
|
|
1094
|
-
readonly PopsInstance3cxDetails: "pops_instance_3cx_details";
|
|
1095
|
-
readonly PopsInstanceUserCredentials: "pops_instance_user_credentials";
|
|
1096
|
-
readonly IpBlacklist: "ip_blacklist";
|
|
1097
|
-
readonly PopsItemDiscounts: "pops_item_discounts";
|
|
1098
|
-
readonly PopsItems: "pops_items";
|
|
1099
|
-
readonly PopsLinkedOrders: "pops_linked_orders";
|
|
1100
|
-
readonly PopsOfflineInstances: "pops_offline_instances";
|
|
1101
|
-
readonly PopsOrderedItems: "pops_ordered_items";
|
|
1102
|
-
readonly PopsPrizes: "pops_prizes";
|
|
1103
|
-
readonly PopsPrinters: "pops_printers";
|
|
1104
|
-
readonly PopsPromoCodes: "pops_promo_codes";
|
|
1105
|
-
readonly PopsPromoItems: "pops_promo_items";
|
|
1106
|
-
readonly PopsProvisioning: "pops_provisioning";
|
|
1107
|
-
readonly S3Buckets: "s3_buckets";
|
|
1108
|
-
readonly PopsShipmentAddress: "pops_shipment_address";
|
|
1109
|
-
readonly PopsShipments: "pops_shipments";
|
|
1110
|
-
readonly PopsShipmentItems: "pops_shipment_items";
|
|
1111
|
-
readonly PopsSipTrunkChangeQueue: "pops_sip_trunk_change_queue";
|
|
1112
|
-
readonly PopsSipTrunks: "pops_sip_trunks";
|
|
1113
|
-
readonly PopsSms: "pops_sms";
|
|
1114
|
-
readonly PopsSmsNumbers: "pops_sms_numbers";
|
|
1115
|
-
readonly PopsSmsWhitelist: "pops_sms_whitelist";
|
|
1116
|
-
readonly PopsDistCourier: "pops_dist_courier";
|
|
1117
|
-
readonly PopsDistDeductions: "pops_dist_deductions";
|
|
1118
|
-
readonly PopsDistOrder: "pops_dist_order";
|
|
1119
|
-
readonly PopsDistItems: "pops_dist_items";
|
|
1120
|
-
readonly PopsDistPrices: "pops_dist_prices";
|
|
1121
|
-
readonly PopsDistManufacturer: "pops_dist_manufacturer";
|
|
1122
|
-
readonly PopsStockTransactions: "pops_stock_transactions";
|
|
1123
|
-
readonly PopsSuppliers: "pops_suppliers";
|
|
1124
|
-
readonly PopsSupplierItems: "pops_supplier_items";
|
|
1125
|
-
readonly Pops3cxBackup: "pops_3cx_backup";
|
|
1126
|
-
readonly Pops3cxBilling: "pops_3cx_billing";
|
|
1127
|
-
readonly PopsDeadLicences: "pops_dead_licences";
|
|
1128
|
-
readonly Pops3cxExts: "pops_3cx_exts";
|
|
1129
|
-
readonly PopsHostingPricing: "pops_hosting_pricing";
|
|
1130
|
-
readonly Pops3cxKeys: "pops_3cx_keys";
|
|
1131
|
-
readonly Pops3cxMacs: "pops_3cx_macs";
|
|
1132
|
-
readonly Pops3cxNumbers: "pops_3cx_numbers";
|
|
1133
|
-
readonly Pops3cxOfficeHours: "pops_3cx_office_hours";
|
|
1134
|
-
readonly Pops3cxPhones: "pops_3cx_phones";
|
|
1135
|
-
readonly Pops3cxSbc: "pops_3cx_sbc";
|
|
1136
|
-
readonly Pops3cxSetup: "pops_3cx_setup";
|
|
1137
|
-
readonly Pops3cxSipTrunks: "pops_3cx_sip_trunks";
|
|
1138
|
-
readonly Pops3cxUsers: "pops_3cx_users";
|
|
1139
|
-
readonly PopsUsers: "pops_users";
|
|
1140
|
-
readonly Webhook: "webhook";
|
|
1141
|
-
readonly PopsXeroLog: "pops_xero_log";
|
|
1142
|
-
readonly Oauth2Clients: "oauth2_clients";
|
|
1143
|
-
readonly Oauth2Tokens: "oauth2_tokens";
|
|
1144
|
-
};
|
|
1145
|
-
export type AuditLogEntityTypeEnum = typeof AuditLogEntityTypeEnum[keyof typeof AuditLogEntityTypeEnum];
|
|
1146
1063
|
/**
|
|
1147
1064
|
* OAuth Auth Code Response
|
|
1148
1065
|
* @export
|
|
@@ -1206,127 +1123,6 @@ export interface BasicProductDTO {
|
|
|
1206
1123
|
*/
|
|
1207
1124
|
'title'?: string;
|
|
1208
1125
|
}
|
|
1209
|
-
/**
|
|
1210
|
-
* Batch DTO
|
|
1211
|
-
* @export
|
|
1212
|
-
* @interface BatchDTO
|
|
1213
|
-
*/
|
|
1214
|
-
export interface BatchDTO {
|
|
1215
|
-
/**
|
|
1216
|
-
* id
|
|
1217
|
-
* @type {number}
|
|
1218
|
-
* @memberof BatchDTO
|
|
1219
|
-
*/
|
|
1220
|
-
'id'?: number;
|
|
1221
|
-
/**
|
|
1222
|
-
* orderId
|
|
1223
|
-
* @type {number}
|
|
1224
|
-
* @memberof BatchDTO
|
|
1225
|
-
*/
|
|
1226
|
-
'orderId'?: number;
|
|
1227
|
-
/**
|
|
1228
|
-
* supplierId
|
|
1229
|
-
* @type {number}
|
|
1230
|
-
* @memberof BatchDTO
|
|
1231
|
-
*/
|
|
1232
|
-
'supplierId'?: number;
|
|
1233
|
-
/**
|
|
1234
|
-
* poNumber
|
|
1235
|
-
* @type {string}
|
|
1236
|
-
* @memberof BatchDTO
|
|
1237
|
-
*/
|
|
1238
|
-
'poNumber'?: string;
|
|
1239
|
-
/**
|
|
1240
|
-
* carriage
|
|
1241
|
-
* @type {number}
|
|
1242
|
-
* @memberof BatchDTO
|
|
1243
|
-
*/
|
|
1244
|
-
'carriage'?: number;
|
|
1245
|
-
/**
|
|
1246
|
-
* courier
|
|
1247
|
-
* @type {string}
|
|
1248
|
-
* @memberof BatchDTO
|
|
1249
|
-
*/
|
|
1250
|
-
'courier'?: string;
|
|
1251
|
-
/**
|
|
1252
|
-
* courierService
|
|
1253
|
-
* @type {string}
|
|
1254
|
-
* @memberof BatchDTO
|
|
1255
|
-
*/
|
|
1256
|
-
'courierService'?: string;
|
|
1257
|
-
/**
|
|
1258
|
-
* courierReference
|
|
1259
|
-
* @type {string}
|
|
1260
|
-
* @memberof BatchDTO
|
|
1261
|
-
*/
|
|
1262
|
-
'courierReference'?: string;
|
|
1263
|
-
/**
|
|
1264
|
-
* courierUnique
|
|
1265
|
-
* @type {string}
|
|
1266
|
-
* @memberof BatchDTO
|
|
1267
|
-
*/
|
|
1268
|
-
'courierUnique'?: string;
|
|
1269
|
-
/**
|
|
1270
|
-
* notes
|
|
1271
|
-
* @type {string}
|
|
1272
|
-
* @memberof BatchDTO
|
|
1273
|
-
*/
|
|
1274
|
-
'notes'?: string;
|
|
1275
|
-
/**
|
|
1276
|
-
* ordered
|
|
1277
|
-
* @type {number}
|
|
1278
|
-
* @memberof BatchDTO
|
|
1279
|
-
*/
|
|
1280
|
-
'ordered'?: number;
|
|
1281
|
-
/**
|
|
1282
|
-
* carriagePaid
|
|
1283
|
-
* @type {number}
|
|
1284
|
-
* @memberof BatchDTO
|
|
1285
|
-
*/
|
|
1286
|
-
'carriagePaid'?: number;
|
|
1287
|
-
/**
|
|
1288
|
-
* carriageRefunded
|
|
1289
|
-
* @type {number}
|
|
1290
|
-
* @memberof BatchDTO
|
|
1291
|
-
*/
|
|
1292
|
-
'carriageRefunded'?: number;
|
|
1293
|
-
/**
|
|
1294
|
-
* carriageRefundedDue
|
|
1295
|
-
* @type {number}
|
|
1296
|
-
* @memberof BatchDTO
|
|
1297
|
-
*/
|
|
1298
|
-
'carriageRefundedDue'?: number;
|
|
1299
|
-
/**
|
|
1300
|
-
* netdespatchLabel
|
|
1301
|
-
* @type {string}
|
|
1302
|
-
* @memberof BatchDTO
|
|
1303
|
-
*/
|
|
1304
|
-
'netdespatchLabel'?: string;
|
|
1305
|
-
/**
|
|
1306
|
-
* courierBoxes
|
|
1307
|
-
* @type {number}
|
|
1308
|
-
* @memberof BatchDTO
|
|
1309
|
-
*/
|
|
1310
|
-
'courierBoxes'?: number;
|
|
1311
|
-
/**
|
|
1312
|
-
* mac
|
|
1313
|
-
* @type {string}
|
|
1314
|
-
* @memberof BatchDTO
|
|
1315
|
-
*/
|
|
1316
|
-
'mac'?: string;
|
|
1317
|
-
/**
|
|
1318
|
-
* Shipments
|
|
1319
|
-
* @type {Array<ShipmentDTO>}
|
|
1320
|
-
* @memberof BatchDTO
|
|
1321
|
-
*/
|
|
1322
|
-
'shipments'?: Array<ShipmentDTO>;
|
|
1323
|
-
/**
|
|
1324
|
-
* Items
|
|
1325
|
-
* @type {Array<OrderedItemModel>}
|
|
1326
|
-
* @memberof BatchDTO
|
|
1327
|
-
*/
|
|
1328
|
-
'items'?: Array<OrderedItemModel>;
|
|
1329
|
-
}
|
|
1330
1126
|
/**
|
|
1331
1127
|
* BatchesEntity
|
|
1332
1128
|
* @export
|
|
@@ -1882,155 +1678,6 @@ export interface CreditAccountEntity {
|
|
|
1882
1678
|
*/
|
|
1883
1679
|
'prizePromo'?: boolean;
|
|
1884
1680
|
}
|
|
1885
|
-
/**
|
|
1886
|
-
* Credit Note
|
|
1887
|
-
* @export
|
|
1888
|
-
* @interface CreditNoteDTO
|
|
1889
|
-
*/
|
|
1890
|
-
export interface CreditNoteDTO {
|
|
1891
|
-
/**
|
|
1892
|
-
* Items
|
|
1893
|
-
* @type {Array<CreditNoteItemDTO>}
|
|
1894
|
-
* @memberof CreditNoteDTO
|
|
1895
|
-
*/
|
|
1896
|
-
'items'?: Array<CreditNoteItemDTO>;
|
|
1897
|
-
}
|
|
1898
|
-
/**
|
|
1899
|
-
* CreditNotesEntity
|
|
1900
|
-
* @export
|
|
1901
|
-
* @interface CreditNoteEntity
|
|
1902
|
-
*/
|
|
1903
|
-
export interface CreditNoteEntity {
|
|
1904
|
-
/**
|
|
1905
|
-
* id
|
|
1906
|
-
* @type {number}
|
|
1907
|
-
* @memberof CreditNoteEntity
|
|
1908
|
-
*/
|
|
1909
|
-
'id'?: number;
|
|
1910
|
-
/**
|
|
1911
|
-
* orderId
|
|
1912
|
-
* @type {number}
|
|
1913
|
-
* @memberof CreditNoteEntity
|
|
1914
|
-
*/
|
|
1915
|
-
'orderId'?: number;
|
|
1916
|
-
/**
|
|
1917
|
-
* transactionId
|
|
1918
|
-
* @type {string}
|
|
1919
|
-
* @memberof CreditNoteEntity
|
|
1920
|
-
*/
|
|
1921
|
-
'transactionId'?: string;
|
|
1922
|
-
/**
|
|
1923
|
-
* amount
|
|
1924
|
-
* @type {number}
|
|
1925
|
-
* @memberof CreditNoteEntity
|
|
1926
|
-
*/
|
|
1927
|
-
'amount'?: number;
|
|
1928
|
-
/**
|
|
1929
|
-
* timestamp
|
|
1930
|
-
* @type {string}
|
|
1931
|
-
* @memberof CreditNoteEntity
|
|
1932
|
-
*/
|
|
1933
|
-
'timestamp'?: string;
|
|
1934
|
-
}
|
|
1935
|
-
/**
|
|
1936
|
-
* Credit Note Item
|
|
1937
|
-
* @export
|
|
1938
|
-
* @interface CreditNoteItemDTO
|
|
1939
|
-
*/
|
|
1940
|
-
export interface CreditNoteItemDTO {
|
|
1941
|
-
/**
|
|
1942
|
-
* Item ID
|
|
1943
|
-
* @type {number}
|
|
1944
|
-
* @memberof CreditNoteItemDTO
|
|
1945
|
-
*/
|
|
1946
|
-
'itemId'?: number;
|
|
1947
|
-
/**
|
|
1948
|
-
* Quantity
|
|
1949
|
-
* @type {number}
|
|
1950
|
-
* @memberof CreditNoteItemDTO
|
|
1951
|
-
*/
|
|
1952
|
-
'quantity'?: number | null;
|
|
1953
|
-
/**
|
|
1954
|
-
* Amount
|
|
1955
|
-
* @type {number}
|
|
1956
|
-
* @memberof CreditNoteItemDTO
|
|
1957
|
-
*/
|
|
1958
|
-
'amount'?: number | null;
|
|
1959
|
-
}
|
|
1960
|
-
/**
|
|
1961
|
-
* CreditNotesItemsEntity
|
|
1962
|
-
* @export
|
|
1963
|
-
* @interface CreditNoteItemEntity
|
|
1964
|
-
*/
|
|
1965
|
-
export interface CreditNoteItemEntity {
|
|
1966
|
-
/**
|
|
1967
|
-
* id
|
|
1968
|
-
* @type {number}
|
|
1969
|
-
* @memberof CreditNoteItemEntity
|
|
1970
|
-
*/
|
|
1971
|
-
'id'?: number;
|
|
1972
|
-
/**
|
|
1973
|
-
* creditNoteId
|
|
1974
|
-
* @type {number}
|
|
1975
|
-
* @memberof CreditNoteItemEntity
|
|
1976
|
-
*/
|
|
1977
|
-
'creditNoteId'?: number;
|
|
1978
|
-
/**
|
|
1979
|
-
* orderId
|
|
1980
|
-
* @type {number}
|
|
1981
|
-
* @memberof CreditNoteItemEntity
|
|
1982
|
-
*/
|
|
1983
|
-
'orderId'?: number;
|
|
1984
|
-
/**
|
|
1985
|
-
* itemId
|
|
1986
|
-
* @type {number}
|
|
1987
|
-
* @memberof CreditNoteItemEntity
|
|
1988
|
-
*/
|
|
1989
|
-
'itemId'?: number;
|
|
1990
|
-
/**
|
|
1991
|
-
* amount
|
|
1992
|
-
* @type {number}
|
|
1993
|
-
* @memberof CreditNoteItemEntity
|
|
1994
|
-
*/
|
|
1995
|
-
'amount'?: number;
|
|
1996
|
-
}
|
|
1997
|
-
/**
|
|
1998
|
-
* Credit Note Model
|
|
1999
|
-
* @export
|
|
2000
|
-
* @interface CreditNoteModel
|
|
2001
|
-
*/
|
|
2002
|
-
export interface CreditNoteModel {
|
|
2003
|
-
/**
|
|
2004
|
-
* id
|
|
2005
|
-
* @type {number}
|
|
2006
|
-
* @memberof CreditNoteModel
|
|
2007
|
-
*/
|
|
2008
|
-
'id'?: number;
|
|
2009
|
-
/**
|
|
2010
|
-
* orderId
|
|
2011
|
-
* @type {number}
|
|
2012
|
-
* @memberof CreditNoteModel
|
|
2013
|
-
*/
|
|
2014
|
-
'orderId'?: number;
|
|
2015
|
-
/**
|
|
2016
|
-
* transactionId
|
|
2017
|
-
* @type {string}
|
|
2018
|
-
* @memberof CreditNoteModel
|
|
2019
|
-
*/
|
|
2020
|
-
'transactionId'?: string;
|
|
2021
|
-
/**
|
|
2022
|
-
* amount
|
|
2023
|
-
* @type {number}
|
|
2024
|
-
* @memberof CreditNoteModel
|
|
2025
|
-
*/
|
|
2026
|
-
'amount'?: number;
|
|
2027
|
-
/**
|
|
2028
|
-
* timestamp
|
|
2029
|
-
* @type {string}
|
|
2030
|
-
* @memberof CreditNoteModel
|
|
2031
|
-
*/
|
|
2032
|
-
'timestamp'?: string;
|
|
2033
|
-
}
|
|
2034
1681
|
/**
|
|
2035
1682
|
* CRM Contact
|
|
2036
1683
|
* @export
|
|
@@ -3742,7 +3389,7 @@ export interface ItemDTO {
|
|
|
3742
3389
|
* @type {Array<TcxSbcDTO>}
|
|
3743
3390
|
* @memberof ItemDTO
|
|
3744
3391
|
*/
|
|
3745
|
-
'sbcs'?: Array<TcxSbcDTO
|
|
3392
|
+
'sbcs'?: Array<TcxSbcDTO> | null;
|
|
3746
3393
|
/**
|
|
3747
3394
|
* Readonly
|
|
3748
3395
|
* @type {boolean}
|
|
@@ -4124,204 +3771,65 @@ export interface OfflineInstancesEntity {
|
|
|
4124
3771
|
'alerted'?: number;
|
|
4125
3772
|
}
|
|
4126
3773
|
/**
|
|
4127
|
-
*
|
|
3774
|
+
* OrdersEntity
|
|
4128
3775
|
* @export
|
|
4129
|
-
* @interface
|
|
3776
|
+
* @interface OrderEntity
|
|
4130
3777
|
*/
|
|
4131
|
-
export interface
|
|
3778
|
+
export interface OrderEntity {
|
|
4132
3779
|
/**
|
|
4133
|
-
*
|
|
3780
|
+
* id
|
|
4134
3781
|
* @type {number}
|
|
4135
|
-
* @memberof
|
|
3782
|
+
* @memberof OrderEntity
|
|
4136
3783
|
*/
|
|
4137
3784
|
'id'?: number;
|
|
4138
3785
|
/**
|
|
4139
|
-
*
|
|
3786
|
+
* externalId
|
|
4140
3787
|
* @type {string}
|
|
4141
|
-
* @memberof
|
|
3788
|
+
* @memberof OrderEntity
|
|
4142
3789
|
*/
|
|
4143
|
-
'reference'?: string
|
|
3790
|
+
'reference'?: string;
|
|
4144
3791
|
/**
|
|
4145
|
-
*
|
|
3792
|
+
* sourceId
|
|
3793
|
+
* @type {number}
|
|
3794
|
+
* @memberof OrderEntity
|
|
3795
|
+
*/
|
|
3796
|
+
'sourceId'?: number;
|
|
3797
|
+
/**
|
|
3798
|
+
* sageInv
|
|
4146
3799
|
* @type {string}
|
|
4147
|
-
* @memberof
|
|
3800
|
+
* @memberof OrderEntity
|
|
4148
3801
|
*/
|
|
4149
3802
|
'invoiceNumber'?: string;
|
|
4150
3803
|
/**
|
|
4151
|
-
*
|
|
3804
|
+
* invoiceId
|
|
4152
3805
|
* @type {string}
|
|
4153
|
-
* @memberof
|
|
3806
|
+
* @memberof OrderEntity
|
|
4154
3807
|
*/
|
|
4155
3808
|
'invoiceId'?: string | null;
|
|
4156
3809
|
/**
|
|
4157
|
-
*
|
|
3810
|
+
* creditAccountId
|
|
3811
|
+
* @type {number}
|
|
3812
|
+
* @memberof OrderEntity
|
|
3813
|
+
*/
|
|
3814
|
+
'customerId'?: number;
|
|
3815
|
+
/**
|
|
3816
|
+
* orderDate
|
|
4158
3817
|
* @type {string}
|
|
4159
|
-
* @memberof
|
|
3818
|
+
* @memberof OrderEntity
|
|
4160
3819
|
*/
|
|
4161
3820
|
'orderDate'?: string;
|
|
4162
3821
|
/**
|
|
4163
|
-
*
|
|
4164
|
-
* @type {
|
|
4165
|
-
* @memberof
|
|
3822
|
+
* orderPostedDate
|
|
3823
|
+
* @type {string}
|
|
3824
|
+
* @memberof OrderEntity
|
|
4166
3825
|
*/
|
|
4167
|
-
'
|
|
3826
|
+
'orderPostedDate'?: string;
|
|
4168
3827
|
/**
|
|
4169
|
-
*
|
|
4170
|
-
* @type {
|
|
4171
|
-
* @memberof
|
|
3828
|
+
* buyerEmail
|
|
3829
|
+
* @type {string}
|
|
3830
|
+
* @memberof OrderEntity
|
|
4172
3831
|
*/
|
|
4173
|
-
'
|
|
4174
|
-
/**
|
|
4175
|
-
* Quote
|
|
4176
|
-
* @type {boolean}
|
|
4177
|
-
* @memberof OrderDetailsDTO
|
|
4178
|
-
*/
|
|
4179
|
-
'quote'?: boolean;
|
|
4180
|
-
/**
|
|
4181
|
-
*
|
|
4182
|
-
* @type {AccountSummaryDTO}
|
|
4183
|
-
* @memberof OrderDetailsDTO
|
|
4184
|
-
*/
|
|
4185
|
-
'customer'?: AccountSummaryDTO;
|
|
4186
|
-
/**
|
|
4187
|
-
*
|
|
4188
|
-
* @type {AddressModel}
|
|
4189
|
-
* @memberof OrderDetailsDTO
|
|
4190
|
-
*/
|
|
4191
|
-
'shippingAddress'?: AddressModel;
|
|
4192
|
-
/**
|
|
4193
|
-
* Items
|
|
4194
|
-
* @type {Array<ItemDTO>}
|
|
4195
|
-
* @memberof OrderDetailsDTO
|
|
4196
|
-
*/
|
|
4197
|
-
'items'?: Array<ItemDTO>;
|
|
4198
|
-
/**
|
|
4199
|
-
* Carriage Charge
|
|
4200
|
-
* @type {number}
|
|
4201
|
-
* @memberof OrderDetailsDTO
|
|
4202
|
-
*/
|
|
4203
|
-
'carriageCharge'?: number;
|
|
4204
|
-
/**
|
|
4205
|
-
* Fulfillable
|
|
4206
|
-
* @type {boolean}
|
|
4207
|
-
* @memberof OrderDetailsDTO
|
|
4208
|
-
*/
|
|
4209
|
-
'fulfillable'?: boolean | null;
|
|
4210
|
-
/**
|
|
4211
|
-
* Provisioning URL
|
|
4212
|
-
* @type {string}
|
|
4213
|
-
* @memberof OrderDetailsDTO
|
|
4214
|
-
*/
|
|
4215
|
-
'provisioningUrl'?: string | null;
|
|
4216
|
-
/**
|
|
4217
|
-
*
|
|
4218
|
-
* @type {ShippingServiceDTO}
|
|
4219
|
-
* @memberof OrderDetailsDTO
|
|
4220
|
-
*/
|
|
4221
|
-
'shippingService'?: ShippingServiceDTO;
|
|
4222
|
-
/**
|
|
4223
|
-
* Readonly
|
|
4224
|
-
* @type {boolean}
|
|
4225
|
-
* @memberof OrderDetailsDTO
|
|
4226
|
-
*/
|
|
4227
|
-
'readonly'?: boolean;
|
|
4228
|
-
/**
|
|
4229
|
-
* Detailed Items
|
|
4230
|
-
* @type {Array<OrderItemDTO>}
|
|
4231
|
-
* @memberof OrderDetailsDTO
|
|
4232
|
-
*/
|
|
4233
|
-
'detailedItems'?: Array<OrderItemDTO>;
|
|
4234
|
-
/**
|
|
4235
|
-
* Batches
|
|
4236
|
-
* @type {Array<BatchDTO>}
|
|
4237
|
-
* @memberof OrderDetailsDTO
|
|
4238
|
-
*/
|
|
4239
|
-
'batches'?: Array<BatchDTO>;
|
|
4240
|
-
/**
|
|
4241
|
-
* Audit Log
|
|
4242
|
-
* @type {Array<AuditLogEntity>}
|
|
4243
|
-
* @memberof OrderDetailsDTO
|
|
4244
|
-
*/
|
|
4245
|
-
'logEntries'?: Array<AuditLogEntity>;
|
|
4246
|
-
/**
|
|
4247
|
-
* Card Payment Link
|
|
4248
|
-
* @type {string}
|
|
4249
|
-
* @memberof OrderDetailsDTO
|
|
4250
|
-
*/
|
|
4251
|
-
'paymentLink'?: string | null;
|
|
4252
|
-
/**
|
|
4253
|
-
* Credits
|
|
4254
|
-
* @type {Array<CreditNoteModel>}
|
|
4255
|
-
* @memberof OrderDetailsDTO
|
|
4256
|
-
*/
|
|
4257
|
-
'credits'?: Array<CreditNoteModel>;
|
|
4258
|
-
/**
|
|
4259
|
-
* Customer Email
|
|
4260
|
-
* @type {string}
|
|
4261
|
-
* @memberof OrderDetailsDTO
|
|
4262
|
-
*/
|
|
4263
|
-
'customerEmail'?: string;
|
|
4264
|
-
}
|
|
4265
|
-
/**
|
|
4266
|
-
* OrdersEntity
|
|
4267
|
-
* @export
|
|
4268
|
-
* @interface OrderEntity
|
|
4269
|
-
*/
|
|
4270
|
-
export interface OrderEntity {
|
|
4271
|
-
/**
|
|
4272
|
-
* id
|
|
4273
|
-
* @type {number}
|
|
4274
|
-
* @memberof OrderEntity
|
|
4275
|
-
*/
|
|
4276
|
-
'id'?: number;
|
|
4277
|
-
/**
|
|
4278
|
-
* externalId
|
|
4279
|
-
* @type {string}
|
|
4280
|
-
* @memberof OrderEntity
|
|
4281
|
-
*/
|
|
4282
|
-
'reference'?: string;
|
|
4283
|
-
/**
|
|
4284
|
-
* sourceId
|
|
4285
|
-
* @type {number}
|
|
4286
|
-
* @memberof OrderEntity
|
|
4287
|
-
*/
|
|
4288
|
-
'sourceId'?: number;
|
|
4289
|
-
/**
|
|
4290
|
-
* sageInv
|
|
4291
|
-
* @type {string}
|
|
4292
|
-
* @memberof OrderEntity
|
|
4293
|
-
*/
|
|
4294
|
-
'invoiceNumber'?: string;
|
|
4295
|
-
/**
|
|
4296
|
-
* invoiceId
|
|
4297
|
-
* @type {string}
|
|
4298
|
-
* @memberof OrderEntity
|
|
4299
|
-
*/
|
|
4300
|
-
'invoiceId'?: string | null;
|
|
4301
|
-
/**
|
|
4302
|
-
* creditAccountId
|
|
4303
|
-
* @type {number}
|
|
4304
|
-
* @memberof OrderEntity
|
|
4305
|
-
*/
|
|
4306
|
-
'customerId'?: number;
|
|
4307
|
-
/**
|
|
4308
|
-
* orderDate
|
|
4309
|
-
* @type {string}
|
|
4310
|
-
* @memberof OrderEntity
|
|
4311
|
-
*/
|
|
4312
|
-
'orderDate'?: string;
|
|
4313
|
-
/**
|
|
4314
|
-
* orderPostedDate
|
|
4315
|
-
* @type {string}
|
|
4316
|
-
* @memberof OrderEntity
|
|
4317
|
-
*/
|
|
4318
|
-
'orderPostedDate'?: string;
|
|
4319
|
-
/**
|
|
4320
|
-
* buyerEmail
|
|
4321
|
-
* @type {string}
|
|
4322
|
-
* @memberof OrderEntity
|
|
4323
|
-
*/
|
|
4324
|
-
'buyerEmail'?: string;
|
|
3832
|
+
'buyerEmail'?: string;
|
|
4325
3833
|
/**
|
|
4326
3834
|
* buyerPhone
|
|
4327
3835
|
* @type {string}
|
|
@@ -4617,109 +4125,6 @@ export interface OrderEntity {
|
|
|
4617
4125
|
*/
|
|
4618
4126
|
'fulfillable'?: boolean | null;
|
|
4619
4127
|
}
|
|
4620
|
-
/**
|
|
4621
|
-
* Order Item Details
|
|
4622
|
-
* @export
|
|
4623
|
-
* @interface OrderItemDTO
|
|
4624
|
-
*/
|
|
4625
|
-
export interface OrderItemDTO {
|
|
4626
|
-
/**
|
|
4627
|
-
* SKU
|
|
4628
|
-
* @type {string}
|
|
4629
|
-
* @memberof OrderItemDTO
|
|
4630
|
-
*/
|
|
4631
|
-
'sku'?: string;
|
|
4632
|
-
/**
|
|
4633
|
-
* Quantity
|
|
4634
|
-
* @type {number}
|
|
4635
|
-
* @memberof OrderItemDTO
|
|
4636
|
-
*/
|
|
4637
|
-
'quantity'?: number;
|
|
4638
|
-
/**
|
|
4639
|
-
* ID
|
|
4640
|
-
* @type {number}
|
|
4641
|
-
* @memberof OrderItemDTO
|
|
4642
|
-
*/
|
|
4643
|
-
'id'?: number | null;
|
|
4644
|
-
/**
|
|
4645
|
-
* Order ID
|
|
4646
|
-
* @type {number}
|
|
4647
|
-
* @memberof OrderItemDTO
|
|
4648
|
-
*/
|
|
4649
|
-
'orderId'?: number | null;
|
|
4650
|
-
/**
|
|
4651
|
-
* Title
|
|
4652
|
-
* @type {string}
|
|
4653
|
-
* @memberof OrderItemDTO
|
|
4654
|
-
*/
|
|
4655
|
-
'title'?: string;
|
|
4656
|
-
/**
|
|
4657
|
-
* Price
|
|
4658
|
-
* @type {number}
|
|
4659
|
-
* @memberof OrderItemDTO
|
|
4660
|
-
*/
|
|
4661
|
-
'price'?: number;
|
|
4662
|
-
/**
|
|
4663
|
-
* 3CX Licence Key
|
|
4664
|
-
* @type {string}
|
|
4665
|
-
* @memberof OrderItemDTO
|
|
4666
|
-
*/
|
|
4667
|
-
'licenceKey'?: string | null;
|
|
4668
|
-
/**
|
|
4669
|
-
* Date Time
|
|
4670
|
-
* @type {string}
|
|
4671
|
-
* @memberof OrderItemDTO
|
|
4672
|
-
*/
|
|
4673
|
-
'licenceExpiry'?: string;
|
|
4674
|
-
/**
|
|
4675
|
-
* Date Time
|
|
4676
|
-
* @type {string}
|
|
4677
|
-
* @memberof OrderItemDTO
|
|
4678
|
-
*/
|
|
4679
|
-
'processDate'?: string;
|
|
4680
|
-
/**
|
|
4681
|
-
* 3CX Hosting
|
|
4682
|
-
* @type {boolean}
|
|
4683
|
-
* @memberof OrderItemDTO
|
|
4684
|
-
*/
|
|
4685
|
-
'hosting'?: boolean | null;
|
|
4686
|
-
/**
|
|
4687
|
-
* Promo Item
|
|
4688
|
-
* @type {boolean}
|
|
4689
|
-
* @memberof OrderItemDTO
|
|
4690
|
-
*/
|
|
4691
|
-
'promoItem'?: boolean;
|
|
4692
|
-
/**
|
|
4693
|
-
* Refunded
|
|
4694
|
-
* @type {number}
|
|
4695
|
-
* @memberof OrderItemDTO
|
|
4696
|
-
*/
|
|
4697
|
-
'refunded'?: number | null;
|
|
4698
|
-
/**
|
|
4699
|
-
* SBCs
|
|
4700
|
-
* @type {Array<TcxSbcDTO>}
|
|
4701
|
-
* @memberof OrderItemDTO
|
|
4702
|
-
*/
|
|
4703
|
-
'sbcs'?: Array<TcxSbcDTO>;
|
|
4704
|
-
/**
|
|
4705
|
-
* Readonly
|
|
4706
|
-
* @type {boolean}
|
|
4707
|
-
* @memberof OrderItemDTO
|
|
4708
|
-
*/
|
|
4709
|
-
'readonly'?: boolean;
|
|
4710
|
-
/**
|
|
4711
|
-
* 3CX Sales Code
|
|
4712
|
-
* @type {string}
|
|
4713
|
-
* @memberof OrderItemDTO
|
|
4714
|
-
*/
|
|
4715
|
-
'tcxSalesCode'?: string | null;
|
|
4716
|
-
/**
|
|
4717
|
-
* Suppliers
|
|
4718
|
-
* @type {Array<SupplierModel>}
|
|
4719
|
-
* @memberof OrderItemDTO
|
|
4720
|
-
*/
|
|
4721
|
-
'suppliers'?: Array<SupplierModel>;
|
|
4722
|
-
}
|
|
4723
4128
|
/**
|
|
4724
4129
|
* EdTechPro Order Request
|
|
4725
4130
|
* @export
|
|
@@ -5130,152 +4535,61 @@ export interface OrderedItemEntity {
|
|
|
5130
4535
|
'returnedStock'?: number;
|
|
5131
4536
|
}
|
|
5132
4537
|
/**
|
|
5133
|
-
*
|
|
4538
|
+
*
|
|
5134
4539
|
* @export
|
|
5135
|
-
* @interface
|
|
4540
|
+
* @interface PatchSetTcxWizardCnameRequest
|
|
5136
4541
|
*/
|
|
5137
|
-
export interface
|
|
4542
|
+
export interface PatchSetTcxWizardCnameRequest {
|
|
5138
4543
|
/**
|
|
5139
|
-
*
|
|
5140
|
-
* @type {
|
|
5141
|
-
* @memberof
|
|
4544
|
+
* CNAME
|
|
4545
|
+
* @type {string}
|
|
4546
|
+
* @memberof PatchSetTcxWizardCnameRequest
|
|
5142
4547
|
*/
|
|
5143
|
-
'
|
|
4548
|
+
'cname'?: string;
|
|
4549
|
+
}
|
|
4550
|
+
/**
|
|
4551
|
+
*
|
|
4552
|
+
* @export
|
|
4553
|
+
* @interface PatchUpdateAccountContactPasswordRequest
|
|
4554
|
+
*/
|
|
4555
|
+
export interface PatchUpdateAccountContactPasswordRequest {
|
|
5144
4556
|
/**
|
|
5145
|
-
*
|
|
5146
|
-
* @type {
|
|
5147
|
-
* @memberof
|
|
4557
|
+
* Password
|
|
4558
|
+
* @type {string}
|
|
4559
|
+
* @memberof PatchUpdateAccountContactPasswordRequest
|
|
5148
4560
|
*/
|
|
5149
|
-
'
|
|
4561
|
+
'password'?: string;
|
|
4562
|
+
}
|
|
4563
|
+
/**
|
|
4564
|
+
* Customer Account
|
|
4565
|
+
* @export
|
|
4566
|
+
* @interface PortalAccountModel
|
|
4567
|
+
*/
|
|
4568
|
+
export interface PortalAccountModel {
|
|
5150
4569
|
/**
|
|
5151
|
-
*
|
|
4570
|
+
* ID
|
|
5152
4571
|
* @type {number}
|
|
5153
|
-
* @memberof
|
|
4572
|
+
* @memberof PortalAccountModel
|
|
5154
4573
|
*/
|
|
5155
|
-
'
|
|
4574
|
+
'id'?: number;
|
|
5156
4575
|
/**
|
|
5157
|
-
*
|
|
5158
|
-
* @type {
|
|
5159
|
-
* @memberof
|
|
4576
|
+
* Contact Name
|
|
4577
|
+
* @type {string}
|
|
4578
|
+
* @memberof PortalAccountModel
|
|
5160
4579
|
*/
|
|
5161
|
-
'
|
|
4580
|
+
'name'?: string;
|
|
5162
4581
|
/**
|
|
5163
|
-
*
|
|
5164
|
-
* @type {
|
|
5165
|
-
* @memberof
|
|
4582
|
+
* Email
|
|
4583
|
+
* @type {string}
|
|
4584
|
+
* @memberof PortalAccountModel
|
|
5166
4585
|
*/
|
|
5167
|
-
'
|
|
4586
|
+
'email'?: string;
|
|
5168
4587
|
/**
|
|
5169
|
-
*
|
|
5170
|
-
* @type {
|
|
5171
|
-
* @memberof
|
|
4588
|
+
* Phone Number
|
|
4589
|
+
* @type {string}
|
|
4590
|
+
* @memberof PortalAccountModel
|
|
5172
4591
|
*/
|
|
5173
|
-
'
|
|
5174
|
-
/**
|
|
5175
|
-
* supplierPrice
|
|
5176
|
-
* @type {number}
|
|
5177
|
-
* @memberof OrderedItemModel
|
|
5178
|
-
*/
|
|
5179
|
-
'supplierPrice'?: number;
|
|
5180
|
-
/**
|
|
5181
|
-
* statusDate
|
|
5182
|
-
* @type {string}
|
|
5183
|
-
* @memberof OrderedItemModel
|
|
5184
|
-
*/
|
|
5185
|
-
'statusDate'?: string;
|
|
5186
|
-
/**
|
|
5187
|
-
* statusAuthor
|
|
5188
|
-
* @type {number}
|
|
5189
|
-
* @memberof OrderedItemModel
|
|
5190
|
-
*/
|
|
5191
|
-
'statusAuthor'?: number;
|
|
5192
|
-
/**
|
|
5193
|
-
* supplierPaid
|
|
5194
|
-
* @type {number}
|
|
5195
|
-
* @memberof OrderedItemModel
|
|
5196
|
-
*/
|
|
5197
|
-
'supplierPaid'?: number;
|
|
5198
|
-
/**
|
|
5199
|
-
* supplierCreditDue
|
|
5200
|
-
* @type {number}
|
|
5201
|
-
* @memberof OrderedItemModel
|
|
5202
|
-
*/
|
|
5203
|
-
'supplierCreditDue'?: number;
|
|
5204
|
-
/**
|
|
5205
|
-
* supplierCreditReceived
|
|
5206
|
-
* @type {number}
|
|
5207
|
-
* @memberof OrderedItemModel
|
|
5208
|
-
*/
|
|
5209
|
-
'supplierCreditReceived'?: number;
|
|
5210
|
-
/**
|
|
5211
|
-
* supplierSku
|
|
5212
|
-
* @type {string}
|
|
5213
|
-
* @memberof OrderedItemModel
|
|
5214
|
-
*/
|
|
5215
|
-
'supplierSku'?: string;
|
|
5216
|
-
/**
|
|
5217
|
-
* returnedStock
|
|
5218
|
-
* @type {number}
|
|
5219
|
-
* @memberof OrderedItemModel
|
|
5220
|
-
*/
|
|
5221
|
-
'returnedStock'?: number;
|
|
5222
|
-
}
|
|
5223
|
-
/**
|
|
5224
|
-
*
|
|
5225
|
-
* @export
|
|
5226
|
-
* @interface PatchSetTcxWizardCnameRequest
|
|
5227
|
-
*/
|
|
5228
|
-
export interface PatchSetTcxWizardCnameRequest {
|
|
5229
|
-
/**
|
|
5230
|
-
* CNAME
|
|
5231
|
-
* @type {string}
|
|
5232
|
-
* @memberof PatchSetTcxWizardCnameRequest
|
|
5233
|
-
*/
|
|
5234
|
-
'cname'?: string;
|
|
5235
|
-
}
|
|
5236
|
-
/**
|
|
5237
|
-
*
|
|
5238
|
-
* @export
|
|
5239
|
-
* @interface PatchUpdateAccountContactPasswordRequest
|
|
5240
|
-
*/
|
|
5241
|
-
export interface PatchUpdateAccountContactPasswordRequest {
|
|
5242
|
-
/**
|
|
5243
|
-
* Password
|
|
5244
|
-
* @type {string}
|
|
5245
|
-
* @memberof PatchUpdateAccountContactPasswordRequest
|
|
5246
|
-
*/
|
|
5247
|
-
'password'?: string;
|
|
5248
|
-
}
|
|
5249
|
-
/**
|
|
5250
|
-
* Customer Account
|
|
5251
|
-
* @export
|
|
5252
|
-
* @interface PortalAccountModel
|
|
5253
|
-
*/
|
|
5254
|
-
export interface PortalAccountModel {
|
|
5255
|
-
/**
|
|
5256
|
-
* ID
|
|
5257
|
-
* @type {number}
|
|
5258
|
-
* @memberof PortalAccountModel
|
|
5259
|
-
*/
|
|
5260
|
-
'id'?: number;
|
|
5261
|
-
/**
|
|
5262
|
-
* Contact Name
|
|
5263
|
-
* @type {string}
|
|
5264
|
-
* @memberof PortalAccountModel
|
|
5265
|
-
*/
|
|
5266
|
-
'name'?: string;
|
|
5267
|
-
/**
|
|
5268
|
-
* Email
|
|
5269
|
-
* @type {string}
|
|
5270
|
-
* @memberof PortalAccountModel
|
|
5271
|
-
*/
|
|
5272
|
-
'email'?: string;
|
|
5273
|
-
/**
|
|
5274
|
-
* Phone Number
|
|
5275
|
-
* @type {string}
|
|
5276
|
-
* @memberof PortalAccountModel
|
|
5277
|
-
*/
|
|
5278
|
-
'phone'?: string;
|
|
4592
|
+
'phone'?: string;
|
|
5279
4593
|
/**
|
|
5280
4594
|
* Company Name
|
|
5281
4595
|
* @type {string}
|
|
@@ -5446,19 +4760,6 @@ export interface PortalLoginModel {
|
|
|
5446
4760
|
*/
|
|
5447
4761
|
'redirect_uri'?: string;
|
|
5448
4762
|
}
|
|
5449
|
-
/**
|
|
5450
|
-
*
|
|
5451
|
-
* @export
|
|
5452
|
-
* @interface PostAddOrderNoteRequest
|
|
5453
|
-
*/
|
|
5454
|
-
export interface PostAddOrderNoteRequest {
|
|
5455
|
-
/**
|
|
5456
|
-
* Order Note
|
|
5457
|
-
* @type {string}
|
|
5458
|
-
* @memberof PostAddOrderNoteRequest
|
|
5459
|
-
*/
|
|
5460
|
-
'note'?: string;
|
|
5461
|
-
}
|
|
5462
4763
|
/**
|
|
5463
4764
|
*
|
|
5464
4765
|
* @export
|
|
@@ -5541,19 +4842,6 @@ export interface PostGetProductRequest {
|
|
|
5541
4842
|
*/
|
|
5542
4843
|
'hosting'?: boolean | null;
|
|
5543
4844
|
}
|
|
5544
|
-
/**
|
|
5545
|
-
*
|
|
5546
|
-
* @export
|
|
5547
|
-
* @interface PostSplitOrderRequest
|
|
5548
|
-
*/
|
|
5549
|
-
export interface PostSplitOrderRequest {
|
|
5550
|
-
/**
|
|
5551
|
-
* Item Ids
|
|
5552
|
-
* @type {Array<number>}
|
|
5553
|
-
* @memberof PostSplitOrderRequest
|
|
5554
|
-
*/
|
|
5555
|
-
'itemIds'?: Array<number>;
|
|
5556
|
-
}
|
|
5557
4845
|
/**
|
|
5558
4846
|
* Price & Stock List
|
|
5559
4847
|
* @export
|
|
@@ -5591,43 +4879,6 @@ export interface PriceListItemModel {
|
|
|
5591
4879
|
*/
|
|
5592
4880
|
'stock'?: number | null;
|
|
5593
4881
|
}
|
|
5594
|
-
/**
|
|
5595
|
-
* PrintersEntity
|
|
5596
|
-
* @export
|
|
5597
|
-
* @interface PrinterEntity
|
|
5598
|
-
*/
|
|
5599
|
-
export interface PrinterEntity {
|
|
5600
|
-
/**
|
|
5601
|
-
* id
|
|
5602
|
-
* @type {number}
|
|
5603
|
-
* @memberof PrinterEntity
|
|
5604
|
-
*/
|
|
5605
|
-
'id'?: number;
|
|
5606
|
-
/**
|
|
5607
|
-
* brand
|
|
5608
|
-
* @type {string}
|
|
5609
|
-
* @memberof PrinterEntity
|
|
5610
|
-
*/
|
|
5611
|
-
'brand'?: string;
|
|
5612
|
-
/**
|
|
5613
|
-
* model
|
|
5614
|
-
* @type {string}
|
|
5615
|
-
* @memberof PrinterEntity
|
|
5616
|
-
*/
|
|
5617
|
-
'model'?: string;
|
|
5618
|
-
/**
|
|
5619
|
-
* sn
|
|
5620
|
-
* @type {string}
|
|
5621
|
-
* @memberof PrinterEntity
|
|
5622
|
-
*/
|
|
5623
|
-
'sn'?: string;
|
|
5624
|
-
/**
|
|
5625
|
-
* location
|
|
5626
|
-
* @type {string}
|
|
5627
|
-
* @memberof PrinterEntity
|
|
5628
|
-
*/
|
|
5629
|
-
'location'?: string;
|
|
5630
|
-
}
|
|
5631
4882
|
/**
|
|
5632
4883
|
* PrizesEntity
|
|
5633
4884
|
* @export
|
|
@@ -6015,38 +5266,6 @@ export interface ProvisioningRequestEntity {
|
|
|
6015
5266
|
*/
|
|
6016
5267
|
'auth'?: string;
|
|
6017
5268
|
}
|
|
6018
|
-
/**
|
|
6019
|
-
*
|
|
6020
|
-
* @export
|
|
6021
|
-
* @interface PutAllocateItemsRequest
|
|
6022
|
-
*/
|
|
6023
|
-
export interface PutAllocateItemsRequest {
|
|
6024
|
-
/**
|
|
6025
|
-
* Items
|
|
6026
|
-
* @type {Array<PutAllocateItemsRequestItemsInner>}
|
|
6027
|
-
* @memberof PutAllocateItemsRequest
|
|
6028
|
-
*/
|
|
6029
|
-
'items'?: Array<PutAllocateItemsRequestItemsInner>;
|
|
6030
|
-
}
|
|
6031
|
-
/**
|
|
6032
|
-
*
|
|
6033
|
-
* @export
|
|
6034
|
-
* @interface PutAllocateItemsRequestItemsInner
|
|
6035
|
-
*/
|
|
6036
|
-
export interface PutAllocateItemsRequestItemsInner {
|
|
6037
|
-
/**
|
|
6038
|
-
* Item ID
|
|
6039
|
-
* @type {number}
|
|
6040
|
-
* @memberof PutAllocateItemsRequestItemsInner
|
|
6041
|
-
*/
|
|
6042
|
-
'itemId'?: number;
|
|
6043
|
-
/**
|
|
6044
|
-
* Quantity To Allocate
|
|
6045
|
-
* @type {number}
|
|
6046
|
-
* @memberof PutAllocateItemsRequestItemsInner
|
|
6047
|
-
*/
|
|
6048
|
-
'quantity'?: number;
|
|
6049
|
-
}
|
|
6050
5269
|
/**
|
|
6051
5270
|
* Azure Recordings Backup
|
|
6052
5271
|
* @export
|
|
@@ -6369,55 +5588,6 @@ export interface ShipmentAddressEntity {
|
|
|
6369
5588
|
*/
|
|
6370
5589
|
'shipPhoneNumber'?: string;
|
|
6371
5590
|
}
|
|
6372
|
-
/**
|
|
6373
|
-
* Shipment
|
|
6374
|
-
* @export
|
|
6375
|
-
* @interface ShipmentDTO
|
|
6376
|
-
*/
|
|
6377
|
-
export interface ShipmentDTO {
|
|
6378
|
-
/**
|
|
6379
|
-
* Courier
|
|
6380
|
-
* @type {string}
|
|
6381
|
-
* @memberof ShipmentDTO
|
|
6382
|
-
*/
|
|
6383
|
-
'courier'?: ShipmentDTOCourierEnum | null;
|
|
6384
|
-
/**
|
|
6385
|
-
* Courier Reference
|
|
6386
|
-
* @type {string}
|
|
6387
|
-
* @memberof ShipmentDTO
|
|
6388
|
-
*/
|
|
6389
|
-
'reference'?: string | null;
|
|
6390
|
-
/**
|
|
6391
|
-
* Date Time
|
|
6392
|
-
* @type {string}
|
|
6393
|
-
* @memberof ShipmentDTO
|
|
6394
|
-
*/
|
|
6395
|
-
'requestedDate'?: string;
|
|
6396
|
-
/**
|
|
6397
|
-
* Scanned Items
|
|
6398
|
-
* @type {Array<ScannedItemModel>}
|
|
6399
|
-
* @memberof ShipmentDTO
|
|
6400
|
-
*/
|
|
6401
|
-
'scannedItems'?: Array<ScannedItemModel>;
|
|
6402
|
-
/**
|
|
6403
|
-
* Items
|
|
6404
|
-
* @type {Array<ShipmentItemModel>}
|
|
6405
|
-
* @memberof ShipmentDTO
|
|
6406
|
-
*/
|
|
6407
|
-
'items'?: Array<ShipmentItemModel>;
|
|
6408
|
-
/**
|
|
6409
|
-
*
|
|
6410
|
-
* @type {AddressModel}
|
|
6411
|
-
* @memberof ShipmentDTO
|
|
6412
|
-
*/
|
|
6413
|
-
'address'?: AddressModel;
|
|
6414
|
-
}
|
|
6415
|
-
export declare const ShipmentDTOCourierEnum: {
|
|
6416
|
-
readonly Dpd: "DPD";
|
|
6417
|
-
readonly ChorltonPallet: "Chorlton Pallet";
|
|
6418
|
-
readonly Pops: "POPS";
|
|
6419
|
-
};
|
|
6420
|
-
export type ShipmentDTOCourierEnum = typeof ShipmentDTOCourierEnum[keyof typeof ShipmentDTOCourierEnum];
|
|
6421
5591
|
/**
|
|
6422
5592
|
* ShipmentsEntity
|
|
6423
5593
|
* @export
|
|
@@ -6497,25 +5667,6 @@ export interface ShipmentEntity {
|
|
|
6497
5667
|
*/
|
|
6498
5668
|
'provId'?: number;
|
|
6499
5669
|
}
|
|
6500
|
-
/**
|
|
6501
|
-
* Shipment Item
|
|
6502
|
-
* @export
|
|
6503
|
-
* @interface ShipmentItemDTO
|
|
6504
|
-
*/
|
|
6505
|
-
export interface ShipmentItemDTO {
|
|
6506
|
-
/**
|
|
6507
|
-
* Item ID
|
|
6508
|
-
* @type {number}
|
|
6509
|
-
* @memberof ShipmentItemDTO
|
|
6510
|
-
*/
|
|
6511
|
-
'itemId'?: number;
|
|
6512
|
-
/**
|
|
6513
|
-
* Quantity
|
|
6514
|
-
* @type {number}
|
|
6515
|
-
* @memberof ShipmentItemDTO
|
|
6516
|
-
*/
|
|
6517
|
-
'quantity'?: number;
|
|
6518
|
-
}
|
|
6519
5670
|
/**
|
|
6520
5671
|
* ShipmentItemsEntity
|
|
6521
5672
|
* @export
|
|
@@ -6554,257 +5705,61 @@ export interface ShipmentItemEntity {
|
|
|
6554
5705
|
'itemId'?: string;
|
|
6555
5706
|
}
|
|
6556
5707
|
/**
|
|
6557
|
-
*
|
|
5708
|
+
*
|
|
6558
5709
|
* @export
|
|
6559
|
-
* @interface
|
|
5710
|
+
* @interface ShippingConsignmentModel
|
|
6560
5711
|
*/
|
|
6561
|
-
export interface
|
|
6562
|
-
/**
|
|
6563
|
-
* id
|
|
6564
|
-
* @type {number}
|
|
6565
|
-
* @memberof ShipmentItemModel
|
|
6566
|
-
*/
|
|
6567
|
-
'id'?: number;
|
|
5712
|
+
export interface ShippingConsignmentModel {
|
|
6568
5713
|
/**
|
|
6569
|
-
*
|
|
6570
|
-
* @type {
|
|
6571
|
-
* @memberof
|
|
5714
|
+
*
|
|
5715
|
+
* @type {ShippingServiceModel}
|
|
5716
|
+
* @memberof ShippingConsignmentModel
|
|
6572
5717
|
*/
|
|
6573
|
-
'
|
|
5718
|
+
'service'?: ShippingServiceModel;
|
|
6574
5719
|
/**
|
|
6575
|
-
*
|
|
6576
|
-
* @type {
|
|
6577
|
-
* @memberof
|
|
5720
|
+
* ID/Number
|
|
5721
|
+
* @type {string}
|
|
5722
|
+
* @memberof ShippingConsignmentModel
|
|
6578
5723
|
*/
|
|
6579
|
-
'
|
|
5724
|
+
'id'?: string;
|
|
6580
5725
|
/**
|
|
6581
|
-
*
|
|
6582
|
-
* @type {
|
|
6583
|
-
* @memberof
|
|
5726
|
+
* Tracking Number
|
|
5727
|
+
* @type {string}
|
|
5728
|
+
* @memberof ShippingConsignmentModel
|
|
6584
5729
|
*/
|
|
6585
|
-
'
|
|
5730
|
+
'trackingNumber'?: string;
|
|
6586
5731
|
/**
|
|
6587
|
-
*
|
|
6588
|
-
* @type {string}
|
|
6589
|
-
* @memberof
|
|
5732
|
+
* Parcels
|
|
5733
|
+
* @type {Array<string>}
|
|
5734
|
+
* @memberof ShippingConsignmentModel
|
|
6590
5735
|
*/
|
|
6591
|
-
'
|
|
5736
|
+
'parcelIds'?: Array<string>;
|
|
6592
5737
|
}
|
|
6593
5738
|
/**
|
|
6594
|
-
*
|
|
5739
|
+
* Shipping Information
|
|
6595
5740
|
* @export
|
|
6596
|
-
* @interface
|
|
5741
|
+
* @interface ShippingInformationDTO
|
|
6597
5742
|
*/
|
|
6598
|
-
export interface
|
|
6599
|
-
/**
|
|
6600
|
-
* id
|
|
6601
|
-
* @type {number}
|
|
6602
|
-
* @memberof ShipmentModel
|
|
6603
|
-
*/
|
|
6604
|
-
'id'?: number;
|
|
5743
|
+
export interface ShippingInformationDTO {
|
|
6605
5744
|
/**
|
|
6606
|
-
*
|
|
6607
|
-
* @type {
|
|
6608
|
-
* @memberof
|
|
5745
|
+
* Items
|
|
5746
|
+
* @type {Array<BasicItemDTO>}
|
|
5747
|
+
* @memberof ShippingInformationDTO
|
|
6609
5748
|
*/
|
|
6610
|
-
'
|
|
5749
|
+
'items'?: Array<BasicItemDTO>;
|
|
6611
5750
|
/**
|
|
6612
|
-
*
|
|
5751
|
+
* Destination Post Code
|
|
6613
5752
|
* @type {string}
|
|
6614
|
-
* @memberof
|
|
5753
|
+
* @memberof ShippingInformationDTO
|
|
6615
5754
|
*/
|
|
6616
|
-
'
|
|
5755
|
+
'postalCode'?: string;
|
|
6617
5756
|
/**
|
|
6618
|
-
*
|
|
5757
|
+
* Destination ISO
|
|
6619
5758
|
* @type {string}
|
|
6620
|
-
* @memberof
|
|
6621
|
-
*/
|
|
6622
|
-
'courierService'?: string;
|
|
6623
|
-
/**
|
|
6624
|
-
* courierServiceDesc
|
|
6625
|
-
* @type {string}
|
|
6626
|
-
* @memberof ShipmentModel
|
|
6627
|
-
*/
|
|
6628
|
-
'courierServiceDesc'?: string;
|
|
6629
|
-
/**
|
|
6630
|
-
* courierReference
|
|
6631
|
-
* @type {string}
|
|
6632
|
-
* @memberof ShipmentModel
|
|
6633
|
-
*/
|
|
6634
|
-
'courierReference'?: string;
|
|
6635
|
-
/**
|
|
6636
|
-
* courierTracking
|
|
6637
|
-
* @type {string}
|
|
6638
|
-
* @memberof ShipmentModel
|
|
6639
|
-
*/
|
|
6640
|
-
'courierTracking'?: string;
|
|
6641
|
-
/**
|
|
6642
|
-
* courierBoxes
|
|
6643
|
-
* @type {number}
|
|
6644
|
-
* @memberof ShipmentModel
|
|
6645
|
-
*/
|
|
6646
|
-
'courierBoxes'?: number;
|
|
6647
|
-
/**
|
|
6648
|
-
* mac
|
|
6649
|
-
* @type {string}
|
|
6650
|
-
* @memberof ShipmentModel
|
|
6651
|
-
*/
|
|
6652
|
-
'scannedData'?: string;
|
|
6653
|
-
/**
|
|
6654
|
-
* date
|
|
6655
|
-
* @type {string}
|
|
6656
|
-
* @memberof ShipmentModel
|
|
6657
|
-
*/
|
|
6658
|
-
'dateShipped'?: string;
|
|
6659
|
-
/**
|
|
6660
|
-
* requestDate
|
|
6661
|
-
* @type {string}
|
|
6662
|
-
* @memberof ShipmentModel
|
|
6663
|
-
*/
|
|
6664
|
-
'requestDate'?: string;
|
|
6665
|
-
/**
|
|
6666
|
-
* provId
|
|
6667
|
-
* @type {number}
|
|
6668
|
-
* @memberof ShipmentModel
|
|
6669
|
-
*/
|
|
6670
|
-
'provId'?: number;
|
|
6671
|
-
}
|
|
6672
|
-
/**
|
|
6673
|
-
* Shipment Request
|
|
6674
|
-
* @export
|
|
6675
|
-
* @interface ShipmentRequestDTO
|
|
6676
|
-
*/
|
|
6677
|
-
export interface ShipmentRequestDTO {
|
|
6678
|
-
/**
|
|
6679
|
-
* Courier
|
|
6680
|
-
* @type {string}
|
|
6681
|
-
* @memberof ShipmentRequestDTO
|
|
6682
|
-
*/
|
|
6683
|
-
'courier'?: ShipmentRequestDTOCourierEnum;
|
|
6684
|
-
/**
|
|
6685
|
-
*
|
|
6686
|
-
* @type {AddressModel}
|
|
6687
|
-
* @memberof ShipmentRequestDTO
|
|
6688
|
-
*/
|
|
6689
|
-
'address'?: AddressModel | null;
|
|
6690
|
-
/**
|
|
6691
|
-
* Scanned Lines
|
|
6692
|
-
* @type {Array<string>}
|
|
6693
|
-
* @memberof ShipmentRequestDTO
|
|
6694
|
-
*/
|
|
6695
|
-
'scannedLines'?: Array<string>;
|
|
6696
|
-
/**
|
|
6697
|
-
* Service
|
|
6698
|
-
* @type {string}
|
|
6699
|
-
* @memberof ShipmentRequestDTO
|
|
6700
|
-
*/
|
|
6701
|
-
'service'?: string;
|
|
6702
|
-
/**
|
|
6703
|
-
* Date Time
|
|
6704
|
-
* @type {string}
|
|
6705
|
-
* @memberof ShipmentRequestDTO
|
|
6706
|
-
*/
|
|
6707
|
-
'shipDate'?: string;
|
|
6708
|
-
/**
|
|
6709
|
-
* Items
|
|
6710
|
-
* @type {Array<ShipmentItemDTO>}
|
|
6711
|
-
* @memberof ShipmentRequestDTO
|
|
6712
|
-
*/
|
|
6713
|
-
'items'?: Array<ShipmentItemDTO>;
|
|
6714
|
-
}
|
|
6715
|
-
export declare const ShipmentRequestDTOCourierEnum: {
|
|
6716
|
-
readonly Dpd: "DPD";
|
|
6717
|
-
readonly ChorltonPallet: "Chorlton Pallet";
|
|
6718
|
-
readonly Pops: "POPS";
|
|
6719
|
-
};
|
|
6720
|
-
export type ShipmentRequestDTOCourierEnum = typeof ShipmentRequestDTOCourierEnum[keyof typeof ShipmentRequestDTOCourierEnum];
|
|
6721
|
-
/**
|
|
6722
|
-
*
|
|
6723
|
-
* @export
|
|
6724
|
-
* @interface ShippingConsignmentModel
|
|
6725
|
-
*/
|
|
6726
|
-
export interface ShippingConsignmentModel {
|
|
6727
|
-
/**
|
|
6728
|
-
*
|
|
6729
|
-
* @type {ShippingServiceModel}
|
|
6730
|
-
* @memberof ShippingConsignmentModel
|
|
6731
|
-
*/
|
|
6732
|
-
'service'?: ShippingServiceModel;
|
|
6733
|
-
/**
|
|
6734
|
-
* ID/Number
|
|
6735
|
-
* @type {string}
|
|
6736
|
-
* @memberof ShippingConsignmentModel
|
|
6737
|
-
*/
|
|
6738
|
-
'id'?: string;
|
|
6739
|
-
/**
|
|
6740
|
-
* Tracking Number
|
|
6741
|
-
* @type {string}
|
|
6742
|
-
* @memberof ShippingConsignmentModel
|
|
6743
|
-
*/
|
|
6744
|
-
'trackingNumber'?: string;
|
|
6745
|
-
/**
|
|
6746
|
-
* Parcels
|
|
6747
|
-
* @type {Array<string>}
|
|
6748
|
-
* @memberof ShippingConsignmentModel
|
|
6749
|
-
*/
|
|
6750
|
-
'parcelIds'?: Array<string>;
|
|
6751
|
-
}
|
|
6752
|
-
/**
|
|
6753
|
-
* Shipping Information
|
|
6754
|
-
* @export
|
|
6755
|
-
* @interface ShippingInformationDTO
|
|
6756
|
-
*/
|
|
6757
|
-
export interface ShippingInformationDTO {
|
|
6758
|
-
/**
|
|
6759
|
-
* Items
|
|
6760
|
-
* @type {Array<BasicItemDTO>}
|
|
6761
|
-
* @memberof ShippingInformationDTO
|
|
6762
|
-
*/
|
|
6763
|
-
'items'?: Array<BasicItemDTO>;
|
|
6764
|
-
/**
|
|
6765
|
-
* Destination Post Code
|
|
6766
|
-
* @type {string}
|
|
6767
|
-
* @memberof ShippingInformationDTO
|
|
6768
|
-
*/
|
|
6769
|
-
'postalCode'?: string;
|
|
6770
|
-
/**
|
|
6771
|
-
* Destination ISO
|
|
6772
|
-
* @type {string}
|
|
6773
|
-
* @memberof ShippingInformationDTO
|
|
5759
|
+
* @memberof ShippingInformationDTO
|
|
6774
5760
|
*/
|
|
6775
5761
|
'iso'?: string;
|
|
6776
5762
|
}
|
|
6777
|
-
/**
|
|
6778
|
-
*
|
|
6779
|
-
* @export
|
|
6780
|
-
* @interface ShippingRequestDTO
|
|
6781
|
-
*/
|
|
6782
|
-
export interface ShippingRequestDTO {
|
|
6783
|
-
/**
|
|
6784
|
-
* Courier
|
|
6785
|
-
* @type {string}
|
|
6786
|
-
* @memberof ShippingRequestDTO
|
|
6787
|
-
*/
|
|
6788
|
-
'courier'?: ShippingRequestDTOCourierEnum;
|
|
6789
|
-
/**
|
|
6790
|
-
* Courier Service
|
|
6791
|
-
* @type {string}
|
|
6792
|
-
* @memberof ShippingRequestDTO
|
|
6793
|
-
*/
|
|
6794
|
-
'service'?: string;
|
|
6795
|
-
/**
|
|
6796
|
-
* Boxes
|
|
6797
|
-
* @type {number}
|
|
6798
|
-
* @memberof ShippingRequestDTO
|
|
6799
|
-
*/
|
|
6800
|
-
'boxes'?: number;
|
|
6801
|
-
}
|
|
6802
|
-
export declare const ShippingRequestDTOCourierEnum: {
|
|
6803
|
-
readonly Dpd: "DPD";
|
|
6804
|
-
readonly ChorltonPallet: "Chorlton Pallet";
|
|
6805
|
-
readonly Pops: "POPS";
|
|
6806
|
-
};
|
|
6807
|
-
export type ShippingRequestDTOCourierEnum = typeof ShippingRequestDTOCourierEnum[keyof typeof ShippingRequestDTOCourierEnum];
|
|
6808
5763
|
/**
|
|
6809
5764
|
* Shipping Service
|
|
6810
5765
|
* @export
|
|
@@ -8412,67 +7367,6 @@ export interface SupplierItemEntity {
|
|
|
8412
7367
|
*/
|
|
8413
7368
|
'supplierSku'?: string;
|
|
8414
7369
|
}
|
|
8415
|
-
/**
|
|
8416
|
-
* Supplier
|
|
8417
|
-
* @export
|
|
8418
|
-
* @interface SupplierModel
|
|
8419
|
-
*/
|
|
8420
|
-
export interface SupplierModel {
|
|
8421
|
-
/**
|
|
8422
|
-
* id
|
|
8423
|
-
* @type {number}
|
|
8424
|
-
* @memberof SupplierModel
|
|
8425
|
-
*/
|
|
8426
|
-
'id'?: number;
|
|
8427
|
-
/**
|
|
8428
|
-
* name
|
|
8429
|
-
* @type {string}
|
|
8430
|
-
* @memberof SupplierModel
|
|
8431
|
-
*/
|
|
8432
|
-
'name'?: string;
|
|
8433
|
-
/**
|
|
8434
|
-
* nameShort
|
|
8435
|
-
* @type {string}
|
|
8436
|
-
* @memberof SupplierModel
|
|
8437
|
-
*/
|
|
8438
|
-
'shortName'?: string;
|
|
8439
|
-
/**
|
|
8440
|
-
* email
|
|
8441
|
-
* @type {string}
|
|
8442
|
-
* @memberof SupplierModel
|
|
8443
|
-
*/
|
|
8444
|
-
'email'?: string;
|
|
8445
|
-
/**
|
|
8446
|
-
* phone
|
|
8447
|
-
* @type {string}
|
|
8448
|
-
* @memberof SupplierModel
|
|
8449
|
-
*/
|
|
8450
|
-
'phone'?: string;
|
|
8451
|
-
/**
|
|
8452
|
-
* defaultCourier
|
|
8453
|
-
* @type {string}
|
|
8454
|
-
* @memberof SupplierModel
|
|
8455
|
-
*/
|
|
8456
|
-
'defaultCourier'?: string;
|
|
8457
|
-
/**
|
|
8458
|
-
* defaultCarriage
|
|
8459
|
-
* @type {number}
|
|
8460
|
-
* @memberof SupplierModel
|
|
8461
|
-
*/
|
|
8462
|
-
'defaultCarriage'?: number;
|
|
8463
|
-
/**
|
|
8464
|
-
* account
|
|
8465
|
-
* @type {string}
|
|
8466
|
-
* @memberof SupplierModel
|
|
8467
|
-
*/
|
|
8468
|
-
'accountNumber'?: string;
|
|
8469
|
-
/**
|
|
8470
|
-
* internalAccount
|
|
8471
|
-
* @type {string}
|
|
8472
|
-
* @memberof SupplierModel
|
|
8473
|
-
*/
|
|
8474
|
-
'xeroAccountNumber'?: string;
|
|
8475
|
-
}
|
|
8476
7370
|
/**
|
|
8477
7371
|
* 3CX Wizard Restore From Backup
|
|
8478
7372
|
* @export
|
|
@@ -14459,16 +13353,6 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
14459
13353
|
* @export
|
|
14460
13354
|
*/
|
|
14461
13355
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14462
|
-
/**
|
|
14463
|
-
* Delete Shipment (Admin)
|
|
14464
|
-
* @summary Delete Shipment (Admin)
|
|
14465
|
-
* @param {number} id Order ID
|
|
14466
|
-
* @param {number} batchId Batch ID
|
|
14467
|
-
* @param {number} shipmentId Shipment ID
|
|
14468
|
-
* @param {*} [options] Override http request option.
|
|
14469
|
-
* @throws {RequiredError}
|
|
14470
|
-
*/
|
|
14471
|
-
deleteCreateShipment: (id: number, batchId: number, shipmentId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14472
13356
|
/**
|
|
14473
13357
|
* Delete Orders (Beta)
|
|
14474
13358
|
* @summary Delete Orders (Beta)
|
|
@@ -14485,14 +13369,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
14485
13369
|
* @throws {RequiredError}
|
|
14486
13370
|
*/
|
|
14487
13371
|
getGetAdminEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14488
|
-
/**
|
|
14489
|
-
* Get Order Details (Admin)
|
|
14490
|
-
* @summary Get Order Details (Admin)
|
|
14491
|
-
* @param {number} id Order ID
|
|
14492
|
-
* @param {*} [options] Override http request option.
|
|
14493
|
-
* @throws {RequiredError}
|
|
14494
|
-
*/
|
|
14495
|
-
getGetAdminOrderDetails: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14496
13372
|
/**
|
|
14497
13373
|
* Get Editable Order (Beta)
|
|
14498
13374
|
* @summary Get Editable Order (Beta)
|
|
@@ -14501,14 +13377,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
14501
13377
|
* @throws {RequiredError}
|
|
14502
13378
|
*/
|
|
14503
13379
|
getGetEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14504
|
-
/**
|
|
14505
|
-
* Download Order PDF
|
|
14506
|
-
* @summary Download Order PDF
|
|
14507
|
-
* @param {number} id Order ID
|
|
14508
|
-
* @param {*} [options] Override http request option.
|
|
14509
|
-
* @throws {RequiredError}
|
|
14510
|
-
*/
|
|
14511
|
-
getGetOrderPdf: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14512
13380
|
/**
|
|
14513
13381
|
* Get Orders (Beta)
|
|
14514
13382
|
* @summary Get Orders (Beta)
|
|
@@ -14523,15 +13391,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
14523
13391
|
* @throws {RequiredError}
|
|
14524
13392
|
*/
|
|
14525
13393
|
getGetOrders: (pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14526
|
-
/**
|
|
14527
|
-
* Add Order Note
|
|
14528
|
-
* @summary Add Order Note
|
|
14529
|
-
* @param {number} id Order ID
|
|
14530
|
-
* @param {PostAddOrderNoteRequest} [postAddOrderNoteRequest]
|
|
14531
|
-
* @param {*} [options] Override http request option.
|
|
14532
|
-
* @throws {RequiredError}
|
|
14533
|
-
*/
|
|
14534
|
-
postAddOrderNote: (id: number, postAddOrderNoteRequest?: PostAddOrderNoteRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14535
13394
|
/**
|
|
14536
13395
|
* Create An Order (Admin)
|
|
14537
13396
|
* @summary Create An Order (Admin)
|
|
@@ -14541,26 +13400,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
14541
13400
|
* @throws {RequiredError}
|
|
14542
13401
|
*/
|
|
14543
13402
|
postCreateAdminOrder: (readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14544
|
-
/**
|
|
14545
|
-
* Create Shipping Consignment
|
|
14546
|
-
* @summary Create Shipping Consignment
|
|
14547
|
-
* @param {number} id Order ID
|
|
14548
|
-
* @param {number} shipmentId Shipment ID
|
|
14549
|
-
* @param {ShippingRequestDTO} [shippingRequestDTO] Shipping Request
|
|
14550
|
-
* @param {*} [options] Override http request option.
|
|
14551
|
-
* @throws {RequiredError}
|
|
14552
|
-
*/
|
|
14553
|
-
postCreateConsignment: (id: number, shipmentId: number, shippingRequestDTO?: ShippingRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14554
|
-
/**
|
|
14555
|
-
* Create Shipment (Admin)
|
|
14556
|
-
* @summary Create Shipment (Admin)
|
|
14557
|
-
* @param {number} id Order ID
|
|
14558
|
-
* @param {number} batchId Batch ID
|
|
14559
|
-
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
14560
|
-
* @param {*} [options] Override http request option.
|
|
14561
|
-
* @throws {RequiredError}
|
|
14562
|
-
*/
|
|
14563
|
-
postCreateShipment: (id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14564
13403
|
/**
|
|
14565
13404
|
* Create An Order (Beta)
|
|
14566
13405
|
* @summary Create An Order (Beta)
|
|
@@ -14570,73 +13409,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
14570
13409
|
* @throws {RequiredError}
|
|
14571
13410
|
*/
|
|
14572
13411
|
postGetOrders: (readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14573
|
-
/**
|
|
14574
|
-
* Issue Credit (Admin)
|
|
14575
|
-
* @summary Issue Credit (Admin)
|
|
14576
|
-
* @param {number} id Order ID
|
|
14577
|
-
* @param {CreditNoteDTO} [creditNoteDTO] Credit Request
|
|
14578
|
-
* @param {*} [options] Override http request option.
|
|
14579
|
-
* @throws {RequiredError}
|
|
14580
|
-
*/
|
|
14581
|
-
postIssueCredit: (id: number, creditNoteDTO?: CreditNoteDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14582
|
-
/**
|
|
14583
|
-
* Print Shipment Label
|
|
14584
|
-
* @summary Print Shipment Label
|
|
14585
|
-
* @param {number} id Order ID
|
|
14586
|
-
* @param {number} shipmentId Shipment ID
|
|
14587
|
-
* @param {PostPrintShippingLabelPrinterEnum} printer Printer
|
|
14588
|
-
* @param {*} [options] Override http request option.
|
|
14589
|
-
* @throws {RequiredError}
|
|
14590
|
-
*/
|
|
14591
|
-
postPrintShippingLabel: (id: number, shipmentId: number, printer: PostPrintShippingLabelPrinterEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14592
|
-
/**
|
|
14593
|
-
* Send Order Email
|
|
14594
|
-
* @summary Send Order Email
|
|
14595
|
-
* @param {number} id Order ID
|
|
14596
|
-
* @param {string} email Email Address
|
|
14597
|
-
* @param {*} [options] Override http request option.
|
|
14598
|
-
* @throws {RequiredError}
|
|
14599
|
-
*/
|
|
14600
|
-
postSendOrderEmail: (id: number, email: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14601
|
-
/**
|
|
14602
|
-
* Send Supplier Email
|
|
14603
|
-
* @summary Send Supplier Email
|
|
14604
|
-
* @param {number} id Order ID
|
|
14605
|
-
* @param {number} batchId Batch ID
|
|
14606
|
-
* @param {*} [options] Override http request option.
|
|
14607
|
-
* @throws {RequiredError}
|
|
14608
|
-
*/
|
|
14609
|
-
postSendSupplierEmail: (id: number, batchId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14610
|
-
/**
|
|
14611
|
-
* Split Order
|
|
14612
|
-
* @summary Split Order
|
|
14613
|
-
* @param {number} id Order ID
|
|
14614
|
-
* @param {PostSplitOrderRequest} [postSplitOrderRequest]
|
|
14615
|
-
* @param {*} [options] Override http request option.
|
|
14616
|
-
* @throws {RequiredError}
|
|
14617
|
-
*/
|
|
14618
|
-
postSplitOrder: (id: number, postSplitOrderRequest?: PostSplitOrderRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14619
|
-
/**
|
|
14620
|
-
* Allocate Items To Supplier
|
|
14621
|
-
* @summary Allocate Items To Supplier
|
|
14622
|
-
* @param {number} id Order ID
|
|
14623
|
-
* @param {number} supplierId Supplier ID
|
|
14624
|
-
* @param {PutAllocateItemsRequest} [putAllocateItemsRequest]
|
|
14625
|
-
* @param {*} [options] Override http request option.
|
|
14626
|
-
* @throws {RequiredError}
|
|
14627
|
-
*/
|
|
14628
|
-
putAllocateItems: (id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14629
|
-
/**
|
|
14630
|
-
* Update Shipment (Admin)
|
|
14631
|
-
* @summary Update Shipment (Admin)
|
|
14632
|
-
* @param {number} id Order ID
|
|
14633
|
-
* @param {number} batchId Batch ID
|
|
14634
|
-
* @param {number} shipmentId Shipment ID
|
|
14635
|
-
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
14636
|
-
* @param {*} [options] Override http request option.
|
|
14637
|
-
* @throws {RequiredError}
|
|
14638
|
-
*/
|
|
14639
|
-
putCreateShipment: (id: number, batchId: number, shipmentId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14640
13412
|
/**
|
|
14641
13413
|
* Update An Order (Admin)
|
|
14642
13414
|
* @summary Update An Order (Admin)
|
|
@@ -14663,16 +13435,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
14663
13435
|
* @export
|
|
14664
13436
|
*/
|
|
14665
13437
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
14666
|
-
/**
|
|
14667
|
-
* Delete Shipment (Admin)
|
|
14668
|
-
* @summary Delete Shipment (Admin)
|
|
14669
|
-
* @param {number} id Order ID
|
|
14670
|
-
* @param {number} batchId Batch ID
|
|
14671
|
-
* @param {number} shipmentId Shipment ID
|
|
14672
|
-
* @param {*} [options] Override http request option.
|
|
14673
|
-
* @throws {RequiredError}
|
|
14674
|
-
*/
|
|
14675
|
-
deleteCreateShipment(id: number, batchId: number, shipmentId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14676
13438
|
/**
|
|
14677
13439
|
* Delete Orders (Beta)
|
|
14678
13440
|
* @summary Delete Orders (Beta)
|
|
@@ -14689,14 +13451,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
14689
13451
|
* @throws {RequiredError}
|
|
14690
13452
|
*/
|
|
14691
13453
|
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminOrderRequestDTO>>;
|
|
14692
|
-
/**
|
|
14693
|
-
* Get Order Details (Admin)
|
|
14694
|
-
* @summary Get Order Details (Admin)
|
|
14695
|
-
* @param {number} id Order ID
|
|
14696
|
-
* @param {*} [options] Override http request option.
|
|
14697
|
-
* @throws {RequiredError}
|
|
14698
|
-
*/
|
|
14699
|
-
getGetAdminOrderDetails(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrderDetailsDTO>>;
|
|
14700
13454
|
/**
|
|
14701
13455
|
* Get Editable Order (Beta)
|
|
14702
13456
|
* @summary Get Editable Order (Beta)
|
|
@@ -14705,14 +13459,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
14705
13459
|
* @throws {RequiredError}
|
|
14706
13460
|
*/
|
|
14707
13461
|
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DetailedOrderRequestDTO>>;
|
|
14708
|
-
/**
|
|
14709
|
-
* Download Order PDF
|
|
14710
|
-
* @summary Download Order PDF
|
|
14711
|
-
* @param {number} id Order ID
|
|
14712
|
-
* @param {*} [options] Override http request option.
|
|
14713
|
-
* @throws {RequiredError}
|
|
14714
|
-
*/
|
|
14715
|
-
getGetOrderPdf(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
14716
13462
|
/**
|
|
14717
13463
|
* Get Orders (Beta)
|
|
14718
13464
|
* @summary Get Orders (Beta)
|
|
@@ -14727,15 +13473,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
14727
13473
|
* @throws {RequiredError}
|
|
14728
13474
|
*/
|
|
14729
13475
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrderSummariesModel>>;
|
|
14730
|
-
/**
|
|
14731
|
-
* Add Order Note
|
|
14732
|
-
* @summary Add Order Note
|
|
14733
|
-
* @param {number} id Order ID
|
|
14734
|
-
* @param {PostAddOrderNoteRequest} [postAddOrderNoteRequest]
|
|
14735
|
-
* @param {*} [options] Override http request option.
|
|
14736
|
-
* @throws {RequiredError}
|
|
14737
|
-
*/
|
|
14738
|
-
postAddOrderNote(id: number, postAddOrderNoteRequest?: PostAddOrderNoteRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14739
13476
|
/**
|
|
14740
13477
|
* Create An Order (Admin)
|
|
14741
13478
|
* @summary Create An Order (Admin)
|
|
@@ -14745,26 +13482,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
14745
13482
|
* @throws {RequiredError}
|
|
14746
13483
|
*/
|
|
14747
13484
|
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
14748
|
-
/**
|
|
14749
|
-
* Create Shipping Consignment
|
|
14750
|
-
* @summary Create Shipping Consignment
|
|
14751
|
-
* @param {number} id Order ID
|
|
14752
|
-
* @param {number} shipmentId Shipment ID
|
|
14753
|
-
* @param {ShippingRequestDTO} [shippingRequestDTO] Shipping Request
|
|
14754
|
-
* @param {*} [options] Override http request option.
|
|
14755
|
-
* @throws {RequiredError}
|
|
14756
|
-
*/
|
|
14757
|
-
postCreateConsignment(id: number, shipmentId: number, shippingRequestDTO?: ShippingRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShipmentModel>>;
|
|
14758
|
-
/**
|
|
14759
|
-
* Create Shipment (Admin)
|
|
14760
|
-
* @summary Create Shipment (Admin)
|
|
14761
|
-
* @param {number} id Order ID
|
|
14762
|
-
* @param {number} batchId Batch ID
|
|
14763
|
-
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
14764
|
-
* @param {*} [options] Override http request option.
|
|
14765
|
-
* @throws {RequiredError}
|
|
14766
|
-
*/
|
|
14767
|
-
postCreateShipment(id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShipmentModel>>;
|
|
14768
13485
|
/**
|
|
14769
13486
|
* Create An Order (Beta)
|
|
14770
13487
|
* @summary Create An Order (Beta)
|
|
@@ -14774,73 +13491,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
14774
13491
|
* @throws {RequiredError}
|
|
14775
13492
|
*/
|
|
14776
13493
|
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
14777
|
-
/**
|
|
14778
|
-
* Issue Credit (Admin)
|
|
14779
|
-
* @summary Issue Credit (Admin)
|
|
14780
|
-
* @param {number} id Order ID
|
|
14781
|
-
* @param {CreditNoteDTO} [creditNoteDTO] Credit Request
|
|
14782
|
-
* @param {*} [options] Override http request option.
|
|
14783
|
-
* @throws {RequiredError}
|
|
14784
|
-
*/
|
|
14785
|
-
postIssueCredit(id: number, creditNoteDTO?: CreditNoteDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreditNoteModel>>;
|
|
14786
|
-
/**
|
|
14787
|
-
* Print Shipment Label
|
|
14788
|
-
* @summary Print Shipment Label
|
|
14789
|
-
* @param {number} id Order ID
|
|
14790
|
-
* @param {number} shipmentId Shipment ID
|
|
14791
|
-
* @param {PostPrintShippingLabelPrinterEnum} printer Printer
|
|
14792
|
-
* @param {*} [options] Override http request option.
|
|
14793
|
-
* @throws {RequiredError}
|
|
14794
|
-
*/
|
|
14795
|
-
postPrintShippingLabel(id: number, shipmentId: number, printer: PostPrintShippingLabelPrinterEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
14796
|
-
/**
|
|
14797
|
-
* Send Order Email
|
|
14798
|
-
* @summary Send Order Email
|
|
14799
|
-
* @param {number} id Order ID
|
|
14800
|
-
* @param {string} email Email Address
|
|
14801
|
-
* @param {*} [options] Override http request option.
|
|
14802
|
-
* @throws {RequiredError}
|
|
14803
|
-
*/
|
|
14804
|
-
postSendOrderEmail(id: number, email: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14805
|
-
/**
|
|
14806
|
-
* Send Supplier Email
|
|
14807
|
-
* @summary Send Supplier Email
|
|
14808
|
-
* @param {number} id Order ID
|
|
14809
|
-
* @param {number} batchId Batch ID
|
|
14810
|
-
* @param {*} [options] Override http request option.
|
|
14811
|
-
* @throws {RequiredError}
|
|
14812
|
-
*/
|
|
14813
|
-
postSendSupplierEmail(id: number, batchId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14814
|
-
/**
|
|
14815
|
-
* Split Order
|
|
14816
|
-
* @summary Split Order
|
|
14817
|
-
* @param {number} id Order ID
|
|
14818
|
-
* @param {PostSplitOrderRequest} [postSplitOrderRequest]
|
|
14819
|
-
* @param {*} [options] Override http request option.
|
|
14820
|
-
* @throws {RequiredError}
|
|
14821
|
-
*/
|
|
14822
|
-
postSplitOrder(id: number, postSplitOrderRequest?: PostSplitOrderRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
14823
|
-
/**
|
|
14824
|
-
* Allocate Items To Supplier
|
|
14825
|
-
* @summary Allocate Items To Supplier
|
|
14826
|
-
* @param {number} id Order ID
|
|
14827
|
-
* @param {number} supplierId Supplier ID
|
|
14828
|
-
* @param {PutAllocateItemsRequest} [putAllocateItemsRequest]
|
|
14829
|
-
* @param {*} [options] Override http request option.
|
|
14830
|
-
* @throws {RequiredError}
|
|
14831
|
-
*/
|
|
14832
|
-
putAllocateItems(id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14833
|
-
/**
|
|
14834
|
-
* Update Shipment (Admin)
|
|
14835
|
-
* @summary Update Shipment (Admin)
|
|
14836
|
-
* @param {number} id Order ID
|
|
14837
|
-
* @param {number} batchId Batch ID
|
|
14838
|
-
* @param {number} shipmentId Shipment ID
|
|
14839
|
-
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
14840
|
-
* @param {*} [options] Override http request option.
|
|
14841
|
-
* @throws {RequiredError}
|
|
14842
|
-
*/
|
|
14843
|
-
putCreateShipment(id: number, batchId: number, shipmentId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShipmentModel>>;
|
|
14844
13494
|
/**
|
|
14845
13495
|
* Update An Order (Admin)
|
|
14846
13496
|
* @summary Update An Order (Admin)
|
|
@@ -14867,16 +13517,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
14867
13517
|
* @export
|
|
14868
13518
|
*/
|
|
14869
13519
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14870
|
-
/**
|
|
14871
|
-
* Delete Shipment (Admin)
|
|
14872
|
-
* @summary Delete Shipment (Admin)
|
|
14873
|
-
* @param {number} id Order ID
|
|
14874
|
-
* @param {number} batchId Batch ID
|
|
14875
|
-
* @param {number} shipmentId Shipment ID
|
|
14876
|
-
* @param {*} [options] Override http request option.
|
|
14877
|
-
* @throws {RequiredError}
|
|
14878
|
-
*/
|
|
14879
|
-
deleteCreateShipment(id: number, batchId: number, shipmentId: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
14880
13520
|
/**
|
|
14881
13521
|
* Delete Orders (Beta)
|
|
14882
13522
|
* @summary Delete Orders (Beta)
|
|
@@ -14893,14 +13533,6 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
14893
13533
|
* @throws {RequiredError}
|
|
14894
13534
|
*/
|
|
14895
13535
|
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminOrderRequestDTO>;
|
|
14896
|
-
/**
|
|
14897
|
-
* Get Order Details (Admin)
|
|
14898
|
-
* @summary Get Order Details (Admin)
|
|
14899
|
-
* @param {number} id Order ID
|
|
14900
|
-
* @param {*} [options] Override http request option.
|
|
14901
|
-
* @throws {RequiredError}
|
|
14902
|
-
*/
|
|
14903
|
-
getGetAdminOrderDetails(id: number, options?: RawAxiosRequestConfig): AxiosPromise<OrderDetailsDTO>;
|
|
14904
13536
|
/**
|
|
14905
13537
|
* Get Editable Order (Beta)
|
|
14906
13538
|
* @summary Get Editable Order (Beta)
|
|
@@ -14909,14 +13541,6 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
14909
13541
|
* @throws {RequiredError}
|
|
14910
13542
|
*/
|
|
14911
13543
|
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<DetailedOrderRequestDTO>;
|
|
14912
|
-
/**
|
|
14913
|
-
* Download Order PDF
|
|
14914
|
-
* @summary Download Order PDF
|
|
14915
|
-
* @param {number} id Order ID
|
|
14916
|
-
* @param {*} [options] Override http request option.
|
|
14917
|
-
* @throws {RequiredError}
|
|
14918
|
-
*/
|
|
14919
|
-
getGetOrderPdf(id: number, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
14920
13544
|
/**
|
|
14921
13545
|
* Get Orders (Beta)
|
|
14922
13546
|
* @summary Get Orders (Beta)
|
|
@@ -14931,15 +13555,6 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
14931
13555
|
* @throws {RequiredError}
|
|
14932
13556
|
*/
|
|
14933
13557
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummariesModel>;
|
|
14934
|
-
/**
|
|
14935
|
-
* Add Order Note
|
|
14936
|
-
* @summary Add Order Note
|
|
14937
|
-
* @param {number} id Order ID
|
|
14938
|
-
* @param {PostAddOrderNoteRequest} [postAddOrderNoteRequest]
|
|
14939
|
-
* @param {*} [options] Override http request option.
|
|
14940
|
-
* @throws {RequiredError}
|
|
14941
|
-
*/
|
|
14942
|
-
postAddOrderNote(id: number, postAddOrderNoteRequest?: PostAddOrderNoteRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
14943
13558
|
/**
|
|
14944
13559
|
* Create An Order (Admin)
|
|
14945
13560
|
* @summary Create An Order (Admin)
|
|
@@ -14949,26 +13564,6 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
14949
13564
|
* @throws {RequiredError}
|
|
14950
13565
|
*/
|
|
14951
13566
|
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
14952
|
-
/**
|
|
14953
|
-
* Create Shipping Consignment
|
|
14954
|
-
* @summary Create Shipping Consignment
|
|
14955
|
-
* @param {number} id Order ID
|
|
14956
|
-
* @param {number} shipmentId Shipment ID
|
|
14957
|
-
* @param {ShippingRequestDTO} [shippingRequestDTO] Shipping Request
|
|
14958
|
-
* @param {*} [options] Override http request option.
|
|
14959
|
-
* @throws {RequiredError}
|
|
14960
|
-
*/
|
|
14961
|
-
postCreateConsignment(id: number, shipmentId: number, shippingRequestDTO?: ShippingRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShipmentModel>;
|
|
14962
|
-
/**
|
|
14963
|
-
* Create Shipment (Admin)
|
|
14964
|
-
* @summary Create Shipment (Admin)
|
|
14965
|
-
* @param {number} id Order ID
|
|
14966
|
-
* @param {number} batchId Batch ID
|
|
14967
|
-
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
14968
|
-
* @param {*} [options] Override http request option.
|
|
14969
|
-
* @throws {RequiredError}
|
|
14970
|
-
*/
|
|
14971
|
-
postCreateShipment(id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShipmentModel>;
|
|
14972
13567
|
/**
|
|
14973
13568
|
* Create An Order (Beta)
|
|
14974
13569
|
* @summary Create An Order (Beta)
|
|
@@ -14978,73 +13573,6 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
14978
13573
|
* @throws {RequiredError}
|
|
14979
13574
|
*/
|
|
14980
13575
|
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
14981
|
-
/**
|
|
14982
|
-
* Issue Credit (Admin)
|
|
14983
|
-
* @summary Issue Credit (Admin)
|
|
14984
|
-
* @param {number} id Order ID
|
|
14985
|
-
* @param {CreditNoteDTO} [creditNoteDTO] Credit Request
|
|
14986
|
-
* @param {*} [options] Override http request option.
|
|
14987
|
-
* @throws {RequiredError}
|
|
14988
|
-
*/
|
|
14989
|
-
postIssueCredit(id: number, creditNoteDTO?: CreditNoteDTO, options?: RawAxiosRequestConfig): AxiosPromise<CreditNoteModel>;
|
|
14990
|
-
/**
|
|
14991
|
-
* Print Shipment Label
|
|
14992
|
-
* @summary Print Shipment Label
|
|
14993
|
-
* @param {number} id Order ID
|
|
14994
|
-
* @param {number} shipmentId Shipment ID
|
|
14995
|
-
* @param {PostPrintShippingLabelPrinterEnum} printer Printer
|
|
14996
|
-
* @param {*} [options] Override http request option.
|
|
14997
|
-
* @throws {RequiredError}
|
|
14998
|
-
*/
|
|
14999
|
-
postPrintShippingLabel(id: number, shipmentId: number, printer: PostPrintShippingLabelPrinterEnum, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
15000
|
-
/**
|
|
15001
|
-
* Send Order Email
|
|
15002
|
-
* @summary Send Order Email
|
|
15003
|
-
* @param {number} id Order ID
|
|
15004
|
-
* @param {string} email Email Address
|
|
15005
|
-
* @param {*} [options] Override http request option.
|
|
15006
|
-
* @throws {RequiredError}
|
|
15007
|
-
*/
|
|
15008
|
-
postSendOrderEmail(id: number, email: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15009
|
-
/**
|
|
15010
|
-
* Send Supplier Email
|
|
15011
|
-
* @summary Send Supplier Email
|
|
15012
|
-
* @param {number} id Order ID
|
|
15013
|
-
* @param {number} batchId Batch ID
|
|
15014
|
-
* @param {*} [options] Override http request option.
|
|
15015
|
-
* @throws {RequiredError}
|
|
15016
|
-
*/
|
|
15017
|
-
postSendSupplierEmail(id: number, batchId: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15018
|
-
/**
|
|
15019
|
-
* Split Order
|
|
15020
|
-
* @summary Split Order
|
|
15021
|
-
* @param {number} id Order ID
|
|
15022
|
-
* @param {PostSplitOrderRequest} [postSplitOrderRequest]
|
|
15023
|
-
* @param {*} [options] Override http request option.
|
|
15024
|
-
* @throws {RequiredError}
|
|
15025
|
-
*/
|
|
15026
|
-
postSplitOrder(id: number, postSplitOrderRequest?: PostSplitOrderRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
15027
|
-
/**
|
|
15028
|
-
* Allocate Items To Supplier
|
|
15029
|
-
* @summary Allocate Items To Supplier
|
|
15030
|
-
* @param {number} id Order ID
|
|
15031
|
-
* @param {number} supplierId Supplier ID
|
|
15032
|
-
* @param {PutAllocateItemsRequest} [putAllocateItemsRequest]
|
|
15033
|
-
* @param {*} [options] Override http request option.
|
|
15034
|
-
* @throws {RequiredError}
|
|
15035
|
-
*/
|
|
15036
|
-
putAllocateItems(id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15037
|
-
/**
|
|
15038
|
-
* Update Shipment (Admin)
|
|
15039
|
-
* @summary Update Shipment (Admin)
|
|
15040
|
-
* @param {number} id Order ID
|
|
15041
|
-
* @param {number} batchId Batch ID
|
|
15042
|
-
* @param {number} shipmentId Shipment ID
|
|
15043
|
-
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
15044
|
-
* @param {*} [options] Override http request option.
|
|
15045
|
-
* @throws {RequiredError}
|
|
15046
|
-
*/
|
|
15047
|
-
putCreateShipment(id: number, batchId: number, shipmentId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShipmentModel>;
|
|
15048
13576
|
/**
|
|
15049
13577
|
* Update An Order (Admin)
|
|
15050
13578
|
* @summary Update An Order (Admin)
|
|
@@ -15073,17 +13601,6 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
15073
13601
|
* @extends {BaseAPI}
|
|
15074
13602
|
*/
|
|
15075
13603
|
export declare class OrdersApi extends BaseAPI {
|
|
15076
|
-
/**
|
|
15077
|
-
* Delete Shipment (Admin)
|
|
15078
|
-
* @summary Delete Shipment (Admin)
|
|
15079
|
-
* @param {number} id Order ID
|
|
15080
|
-
* @param {number} batchId Batch ID
|
|
15081
|
-
* @param {number} shipmentId Shipment ID
|
|
15082
|
-
* @param {*} [options] Override http request option.
|
|
15083
|
-
* @throws {RequiredError}
|
|
15084
|
-
* @memberof OrdersApi
|
|
15085
|
-
*/
|
|
15086
|
-
deleteCreateShipment(id: number, batchId: number, shipmentId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
15087
13604
|
/**
|
|
15088
13605
|
* Delete Orders (Beta)
|
|
15089
13606
|
* @summary Delete Orders (Beta)
|
|
@@ -15102,15 +13619,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
15102
13619
|
* @memberof OrdersApi
|
|
15103
13620
|
*/
|
|
15104
13621
|
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminOrderRequestDTO, any, {}>>;
|
|
15105
|
-
/**
|
|
15106
|
-
* Get Order Details (Admin)
|
|
15107
|
-
* @summary Get Order Details (Admin)
|
|
15108
|
-
* @param {number} id Order ID
|
|
15109
|
-
* @param {*} [options] Override http request option.
|
|
15110
|
-
* @throws {RequiredError}
|
|
15111
|
-
* @memberof OrdersApi
|
|
15112
|
-
*/
|
|
15113
|
-
getGetAdminOrderDetails(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderDetailsDTO, any, {}>>;
|
|
15114
13622
|
/**
|
|
15115
13623
|
* Get Editable Order (Beta)
|
|
15116
13624
|
* @summary Get Editable Order (Beta)
|
|
@@ -15120,15 +13628,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
15120
13628
|
* @memberof OrdersApi
|
|
15121
13629
|
*/
|
|
15122
13630
|
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DetailedOrderRequestDTO, any, {}>>;
|
|
15123
|
-
/**
|
|
15124
|
-
* Download Order PDF
|
|
15125
|
-
* @summary Download Order PDF
|
|
15126
|
-
* @param {number} id Order ID
|
|
15127
|
-
* @param {*} [options] Override http request option.
|
|
15128
|
-
* @throws {RequiredError}
|
|
15129
|
-
* @memberof OrdersApi
|
|
15130
|
-
*/
|
|
15131
|
-
getGetOrderPdf(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
|
|
15132
13631
|
/**
|
|
15133
13632
|
* Get Orders (Beta)
|
|
15134
13633
|
* @summary Get Orders (Beta)
|
|
@@ -15144,16 +13643,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
15144
13643
|
* @memberof OrdersApi
|
|
15145
13644
|
*/
|
|
15146
13645
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummariesModel, any, {}>>;
|
|
15147
|
-
/**
|
|
15148
|
-
* Add Order Note
|
|
15149
|
-
* @summary Add Order Note
|
|
15150
|
-
* @param {number} id Order ID
|
|
15151
|
-
* @param {PostAddOrderNoteRequest} [postAddOrderNoteRequest]
|
|
15152
|
-
* @param {*} [options] Override http request option.
|
|
15153
|
-
* @throws {RequiredError}
|
|
15154
|
-
* @memberof OrdersApi
|
|
15155
|
-
*/
|
|
15156
|
-
postAddOrderNote(id: number, postAddOrderNoteRequest?: PostAddOrderNoteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
15157
13646
|
/**
|
|
15158
13647
|
* Create An Order (Admin)
|
|
15159
13648
|
* @summary Create An Order (Admin)
|
|
@@ -15164,28 +13653,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
15164
13653
|
* @memberof OrdersApi
|
|
15165
13654
|
*/
|
|
15166
13655
|
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
15167
|
-
/**
|
|
15168
|
-
* Create Shipping Consignment
|
|
15169
|
-
* @summary Create Shipping Consignment
|
|
15170
|
-
* @param {number} id Order ID
|
|
15171
|
-
* @param {number} shipmentId Shipment ID
|
|
15172
|
-
* @param {ShippingRequestDTO} [shippingRequestDTO] Shipping Request
|
|
15173
|
-
* @param {*} [options] Override http request option.
|
|
15174
|
-
* @throws {RequiredError}
|
|
15175
|
-
* @memberof OrdersApi
|
|
15176
|
-
*/
|
|
15177
|
-
postCreateConsignment(id: number, shipmentId: number, shippingRequestDTO?: ShippingRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShipmentModel, any, {}>>;
|
|
15178
|
-
/**
|
|
15179
|
-
* Create Shipment (Admin)
|
|
15180
|
-
* @summary Create Shipment (Admin)
|
|
15181
|
-
* @param {number} id Order ID
|
|
15182
|
-
* @param {number} batchId Batch ID
|
|
15183
|
-
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
15184
|
-
* @param {*} [options] Override http request option.
|
|
15185
|
-
* @throws {RequiredError}
|
|
15186
|
-
* @memberof OrdersApi
|
|
15187
|
-
*/
|
|
15188
|
-
postCreateShipment(id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShipmentModel, any, {}>>;
|
|
15189
13656
|
/**
|
|
15190
13657
|
* Create An Order (Beta)
|
|
15191
13658
|
* @summary Create An Order (Beta)
|
|
@@ -15196,80 +13663,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
15196
13663
|
* @memberof OrdersApi
|
|
15197
13664
|
*/
|
|
15198
13665
|
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
15199
|
-
/**
|
|
15200
|
-
* Issue Credit (Admin)
|
|
15201
|
-
* @summary Issue Credit (Admin)
|
|
15202
|
-
* @param {number} id Order ID
|
|
15203
|
-
* @param {CreditNoteDTO} [creditNoteDTO] Credit Request
|
|
15204
|
-
* @param {*} [options] Override http request option.
|
|
15205
|
-
* @throws {RequiredError}
|
|
15206
|
-
* @memberof OrdersApi
|
|
15207
|
-
*/
|
|
15208
|
-
postIssueCredit(id: number, creditNoteDTO?: CreditNoteDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreditNoteModel, any, {}>>;
|
|
15209
|
-
/**
|
|
15210
|
-
* Print Shipment Label
|
|
15211
|
-
* @summary Print Shipment Label
|
|
15212
|
-
* @param {number} id Order ID
|
|
15213
|
-
* @param {number} shipmentId Shipment ID
|
|
15214
|
-
* @param {PostPrintShippingLabelPrinterEnum} printer Printer
|
|
15215
|
-
* @param {*} [options] Override http request option.
|
|
15216
|
-
* @throws {RequiredError}
|
|
15217
|
-
* @memberof OrdersApi
|
|
15218
|
-
*/
|
|
15219
|
-
postPrintShippingLabel(id: number, shipmentId: number, printer: PostPrintShippingLabelPrinterEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
|
|
15220
|
-
/**
|
|
15221
|
-
* Send Order Email
|
|
15222
|
-
* @summary Send Order Email
|
|
15223
|
-
* @param {number} id Order ID
|
|
15224
|
-
* @param {string} email Email Address
|
|
15225
|
-
* @param {*} [options] Override http request option.
|
|
15226
|
-
* @throws {RequiredError}
|
|
15227
|
-
* @memberof OrdersApi
|
|
15228
|
-
*/
|
|
15229
|
-
postSendOrderEmail(id: number, email: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
15230
|
-
/**
|
|
15231
|
-
* Send Supplier Email
|
|
15232
|
-
* @summary Send Supplier Email
|
|
15233
|
-
* @param {number} id Order ID
|
|
15234
|
-
* @param {number} batchId Batch ID
|
|
15235
|
-
* @param {*} [options] Override http request option.
|
|
15236
|
-
* @throws {RequiredError}
|
|
15237
|
-
* @memberof OrdersApi
|
|
15238
|
-
*/
|
|
15239
|
-
postSendSupplierEmail(id: number, batchId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
15240
|
-
/**
|
|
15241
|
-
* Split Order
|
|
15242
|
-
* @summary Split Order
|
|
15243
|
-
* @param {number} id Order ID
|
|
15244
|
-
* @param {PostSplitOrderRequest} [postSplitOrderRequest]
|
|
15245
|
-
* @param {*} [options] Override http request option.
|
|
15246
|
-
* @throws {RequiredError}
|
|
15247
|
-
* @memberof OrdersApi
|
|
15248
|
-
*/
|
|
15249
|
-
postSplitOrder(id: number, postSplitOrderRequest?: PostSplitOrderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
15250
|
-
/**
|
|
15251
|
-
* Allocate Items To Supplier
|
|
15252
|
-
* @summary Allocate Items To Supplier
|
|
15253
|
-
* @param {number} id Order ID
|
|
15254
|
-
* @param {number} supplierId Supplier ID
|
|
15255
|
-
* @param {PutAllocateItemsRequest} [putAllocateItemsRequest]
|
|
15256
|
-
* @param {*} [options] Override http request option.
|
|
15257
|
-
* @throws {RequiredError}
|
|
15258
|
-
* @memberof OrdersApi
|
|
15259
|
-
*/
|
|
15260
|
-
putAllocateItems(id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
15261
|
-
/**
|
|
15262
|
-
* Update Shipment (Admin)
|
|
15263
|
-
* @summary Update Shipment (Admin)
|
|
15264
|
-
* @param {number} id Order ID
|
|
15265
|
-
* @param {number} batchId Batch ID
|
|
15266
|
-
* @param {number} shipmentId Shipment ID
|
|
15267
|
-
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
15268
|
-
* @param {*} [options] Override http request option.
|
|
15269
|
-
* @throws {RequiredError}
|
|
15270
|
-
* @memberof OrdersApi
|
|
15271
|
-
*/
|
|
15272
|
-
putCreateShipment(id: number, batchId: number, shipmentId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShipmentModel, any, {}>>;
|
|
15273
13666
|
/**
|
|
15274
13667
|
* Update An Order (Admin)
|
|
15275
13668
|
* @summary Update An Order (Admin)
|
|
@@ -15313,15 +13706,6 @@ export declare const GetGetOrdersFilterEnum: {
|
|
|
15313
13706
|
readonly BackOrders: "BACK_ORDERS";
|
|
15314
13707
|
};
|
|
15315
13708
|
export type GetGetOrdersFilterEnum = typeof GetGetOrdersFilterEnum[keyof typeof GetGetOrdersFilterEnum];
|
|
15316
|
-
/**
|
|
15317
|
-
* @export
|
|
15318
|
-
*/
|
|
15319
|
-
export declare const PostPrintShippingLabelPrinterEnum: {
|
|
15320
|
-
readonly NUMBER_1: 1;
|
|
15321
|
-
readonly NUMBER_2: 2;
|
|
15322
|
-
readonly NUMBER_3: 3;
|
|
15323
|
-
};
|
|
15324
|
-
export type PostPrintShippingLabelPrinterEnum = typeof PostPrintShippingLabelPrinterEnum[keyof typeof PostPrintShippingLabelPrinterEnum];
|
|
15325
13709
|
/**
|
|
15326
13710
|
* PricingApi - axios parameter creator
|
|
15327
13711
|
* @export
|