yellowgrid-api-ts 3.2.53-dev.0 → 3.2.53
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 +209 -2363
- 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 -1719
- 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 -61
- 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,198 +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
|
-
/**
|
|
4260
|
-
* OrdersEntity
|
|
4261
|
-
* @export
|
|
4262
|
-
* @interface OrderEntity
|
|
4263
|
-
*/
|
|
4264
|
-
export interface OrderEntity {
|
|
4265
|
-
/**
|
|
4266
|
-
* id
|
|
4267
|
-
* @type {number}
|
|
4268
|
-
* @memberof OrderEntity
|
|
4269
|
-
*/
|
|
4270
|
-
'id'?: number;
|
|
4271
|
-
/**
|
|
4272
|
-
* externalId
|
|
4273
|
-
* @type {string}
|
|
4274
|
-
* @memberof OrderEntity
|
|
4275
|
-
*/
|
|
4276
|
-
'reference'?: string;
|
|
4277
|
-
/**
|
|
4278
|
-
* sourceId
|
|
4279
|
-
* @type {number}
|
|
4280
|
-
* @memberof OrderEntity
|
|
4281
|
-
*/
|
|
4282
|
-
'sourceId'?: number;
|
|
4283
|
-
/**
|
|
4284
|
-
* sageInv
|
|
4285
|
-
* @type {string}
|
|
4286
|
-
* @memberof OrderEntity
|
|
4287
|
-
*/
|
|
4288
|
-
'invoiceNumber'?: string;
|
|
4289
|
-
/**
|
|
4290
|
-
* invoiceId
|
|
4291
|
-
* @type {string}
|
|
4292
|
-
* @memberof OrderEntity
|
|
4293
|
-
*/
|
|
4294
|
-
'invoiceId'?: string | null;
|
|
4295
|
-
/**
|
|
4296
|
-
* creditAccountId
|
|
4297
|
-
* @type {number}
|
|
4298
|
-
* @memberof OrderEntity
|
|
4299
|
-
*/
|
|
4300
|
-
'customerId'?: number;
|
|
4301
|
-
/**
|
|
4302
|
-
* orderDate
|
|
4303
|
-
* @type {string}
|
|
4304
|
-
* @memberof OrderEntity
|
|
4305
|
-
*/
|
|
4306
|
-
'orderDate'?: string;
|
|
4307
|
-
/**
|
|
4308
|
-
* orderPostedDate
|
|
4309
|
-
* @type {string}
|
|
4310
|
-
* @memberof OrderEntity
|
|
4311
|
-
*/
|
|
4312
|
-
'orderPostedDate'?: string;
|
|
4313
|
-
/**
|
|
4314
|
-
* buyerEmail
|
|
4315
|
-
* @type {string}
|
|
4316
|
-
* @memberof OrderEntity
|
|
4317
|
-
*/
|
|
4318
|
-
'buyerEmail'?: string;
|
|
3832
|
+
'buyerEmail'?: string;
|
|
4319
3833
|
/**
|
|
4320
3834
|
* buyerPhone
|
|
4321
3835
|
* @type {string}
|
|
@@ -4611,109 +4125,6 @@ export interface OrderEntity {
|
|
|
4611
4125
|
*/
|
|
4612
4126
|
'fulfillable'?: boolean | null;
|
|
4613
4127
|
}
|
|
4614
|
-
/**
|
|
4615
|
-
* Order Item Details
|
|
4616
|
-
* @export
|
|
4617
|
-
* @interface OrderItemDTO
|
|
4618
|
-
*/
|
|
4619
|
-
export interface OrderItemDTO {
|
|
4620
|
-
/**
|
|
4621
|
-
* SKU
|
|
4622
|
-
* @type {string}
|
|
4623
|
-
* @memberof OrderItemDTO
|
|
4624
|
-
*/
|
|
4625
|
-
'sku'?: string;
|
|
4626
|
-
/**
|
|
4627
|
-
* Quantity
|
|
4628
|
-
* @type {number}
|
|
4629
|
-
* @memberof OrderItemDTO
|
|
4630
|
-
*/
|
|
4631
|
-
'quantity'?: number;
|
|
4632
|
-
/**
|
|
4633
|
-
* ID
|
|
4634
|
-
* @type {number}
|
|
4635
|
-
* @memberof OrderItemDTO
|
|
4636
|
-
*/
|
|
4637
|
-
'id'?: number | null;
|
|
4638
|
-
/**
|
|
4639
|
-
* Order ID
|
|
4640
|
-
* @type {number}
|
|
4641
|
-
* @memberof OrderItemDTO
|
|
4642
|
-
*/
|
|
4643
|
-
'orderId'?: number | null;
|
|
4644
|
-
/**
|
|
4645
|
-
* Title
|
|
4646
|
-
* @type {string}
|
|
4647
|
-
* @memberof OrderItemDTO
|
|
4648
|
-
*/
|
|
4649
|
-
'title'?: string;
|
|
4650
|
-
/**
|
|
4651
|
-
* Price
|
|
4652
|
-
* @type {number}
|
|
4653
|
-
* @memberof OrderItemDTO
|
|
4654
|
-
*/
|
|
4655
|
-
'price'?: number;
|
|
4656
|
-
/**
|
|
4657
|
-
* 3CX Licence Key
|
|
4658
|
-
* @type {string}
|
|
4659
|
-
* @memberof OrderItemDTO
|
|
4660
|
-
*/
|
|
4661
|
-
'licenceKey'?: string | null;
|
|
4662
|
-
/**
|
|
4663
|
-
* Date Time
|
|
4664
|
-
* @type {string}
|
|
4665
|
-
* @memberof OrderItemDTO
|
|
4666
|
-
*/
|
|
4667
|
-
'licenceExpiry'?: string;
|
|
4668
|
-
/**
|
|
4669
|
-
* Date Time
|
|
4670
|
-
* @type {string}
|
|
4671
|
-
* @memberof OrderItemDTO
|
|
4672
|
-
*/
|
|
4673
|
-
'processDate'?: string;
|
|
4674
|
-
/**
|
|
4675
|
-
* 3CX Hosting
|
|
4676
|
-
* @type {boolean}
|
|
4677
|
-
* @memberof OrderItemDTO
|
|
4678
|
-
*/
|
|
4679
|
-
'hosting'?: boolean | null;
|
|
4680
|
-
/**
|
|
4681
|
-
* Promo Item
|
|
4682
|
-
* @type {boolean}
|
|
4683
|
-
* @memberof OrderItemDTO
|
|
4684
|
-
*/
|
|
4685
|
-
'promoItem'?: boolean;
|
|
4686
|
-
/**
|
|
4687
|
-
* Refunded
|
|
4688
|
-
* @type {number}
|
|
4689
|
-
* @memberof OrderItemDTO
|
|
4690
|
-
*/
|
|
4691
|
-
'refunded'?: number | null;
|
|
4692
|
-
/**
|
|
4693
|
-
* SBCs
|
|
4694
|
-
* @type {Array<TcxSbcDTO>}
|
|
4695
|
-
* @memberof OrderItemDTO
|
|
4696
|
-
*/
|
|
4697
|
-
'sbcs'?: Array<TcxSbcDTO>;
|
|
4698
|
-
/**
|
|
4699
|
-
* Readonly
|
|
4700
|
-
* @type {boolean}
|
|
4701
|
-
* @memberof OrderItemDTO
|
|
4702
|
-
*/
|
|
4703
|
-
'readonly'?: boolean;
|
|
4704
|
-
/**
|
|
4705
|
-
* 3CX Sales Code
|
|
4706
|
-
* @type {string}
|
|
4707
|
-
* @memberof OrderItemDTO
|
|
4708
|
-
*/
|
|
4709
|
-
'tcxSalesCode'?: string | null;
|
|
4710
|
-
/**
|
|
4711
|
-
* Suppliers
|
|
4712
|
-
* @type {Array<SupplierModel>}
|
|
4713
|
-
* @memberof OrderItemDTO
|
|
4714
|
-
*/
|
|
4715
|
-
'suppliers'?: Array<SupplierModel>;
|
|
4716
|
-
}
|
|
4717
4128
|
/**
|
|
4718
4129
|
* EdTechPro Order Request
|
|
4719
4130
|
* @export
|
|
@@ -5124,152 +4535,61 @@ export interface OrderedItemEntity {
|
|
|
5124
4535
|
'returnedStock'?: number;
|
|
5125
4536
|
}
|
|
5126
4537
|
/**
|
|
5127
|
-
*
|
|
4538
|
+
*
|
|
5128
4539
|
* @export
|
|
5129
|
-
* @interface
|
|
4540
|
+
* @interface PatchSetTcxWizardCnameRequest
|
|
5130
4541
|
*/
|
|
5131
|
-
export interface
|
|
4542
|
+
export interface PatchSetTcxWizardCnameRequest {
|
|
5132
4543
|
/**
|
|
5133
|
-
*
|
|
5134
|
-
* @type {
|
|
5135
|
-
* @memberof
|
|
4544
|
+
* CNAME
|
|
4545
|
+
* @type {string}
|
|
4546
|
+
* @memberof PatchSetTcxWizardCnameRequest
|
|
5136
4547
|
*/
|
|
5137
|
-
'
|
|
4548
|
+
'cname'?: string;
|
|
4549
|
+
}
|
|
4550
|
+
/**
|
|
4551
|
+
*
|
|
4552
|
+
* @export
|
|
4553
|
+
* @interface PatchUpdateAccountContactPasswordRequest
|
|
4554
|
+
*/
|
|
4555
|
+
export interface PatchUpdateAccountContactPasswordRequest {
|
|
5138
4556
|
/**
|
|
5139
|
-
*
|
|
5140
|
-
* @type {
|
|
5141
|
-
* @memberof
|
|
4557
|
+
* Password
|
|
4558
|
+
* @type {string}
|
|
4559
|
+
* @memberof PatchUpdateAccountContactPasswordRequest
|
|
5142
4560
|
*/
|
|
5143
|
-
'
|
|
4561
|
+
'password'?: string;
|
|
4562
|
+
}
|
|
4563
|
+
/**
|
|
4564
|
+
* Customer Account
|
|
4565
|
+
* @export
|
|
4566
|
+
* @interface PortalAccountModel
|
|
4567
|
+
*/
|
|
4568
|
+
export interface PortalAccountModel {
|
|
5144
4569
|
/**
|
|
5145
|
-
*
|
|
4570
|
+
* ID
|
|
5146
4571
|
* @type {number}
|
|
5147
|
-
* @memberof
|
|
4572
|
+
* @memberof PortalAccountModel
|
|
5148
4573
|
*/
|
|
5149
|
-
'
|
|
4574
|
+
'id'?: number;
|
|
5150
4575
|
/**
|
|
5151
|
-
*
|
|
5152
|
-
* @type {
|
|
5153
|
-
* @memberof
|
|
4576
|
+
* Contact Name
|
|
4577
|
+
* @type {string}
|
|
4578
|
+
* @memberof PortalAccountModel
|
|
5154
4579
|
*/
|
|
5155
|
-
'
|
|
4580
|
+
'name'?: string;
|
|
5156
4581
|
/**
|
|
5157
|
-
*
|
|
5158
|
-
* @type {
|
|
5159
|
-
* @memberof
|
|
4582
|
+
* Email
|
|
4583
|
+
* @type {string}
|
|
4584
|
+
* @memberof PortalAccountModel
|
|
5160
4585
|
*/
|
|
5161
|
-
'
|
|
4586
|
+
'email'?: string;
|
|
5162
4587
|
/**
|
|
5163
|
-
*
|
|
5164
|
-
* @type {
|
|
5165
|
-
* @memberof
|
|
4588
|
+
* Phone Number
|
|
4589
|
+
* @type {string}
|
|
4590
|
+
* @memberof PortalAccountModel
|
|
5166
4591
|
*/
|
|
5167
|
-
'
|
|
5168
|
-
/**
|
|
5169
|
-
* supplierPrice
|
|
5170
|
-
* @type {number}
|
|
5171
|
-
* @memberof OrderedItemModel
|
|
5172
|
-
*/
|
|
5173
|
-
'supplierPrice'?: number;
|
|
5174
|
-
/**
|
|
5175
|
-
* statusDate
|
|
5176
|
-
* @type {string}
|
|
5177
|
-
* @memberof OrderedItemModel
|
|
5178
|
-
*/
|
|
5179
|
-
'statusDate'?: string;
|
|
5180
|
-
/**
|
|
5181
|
-
* statusAuthor
|
|
5182
|
-
* @type {number}
|
|
5183
|
-
* @memberof OrderedItemModel
|
|
5184
|
-
*/
|
|
5185
|
-
'statusAuthor'?: number;
|
|
5186
|
-
/**
|
|
5187
|
-
* supplierPaid
|
|
5188
|
-
* @type {number}
|
|
5189
|
-
* @memberof OrderedItemModel
|
|
5190
|
-
*/
|
|
5191
|
-
'supplierPaid'?: number;
|
|
5192
|
-
/**
|
|
5193
|
-
* supplierCreditDue
|
|
5194
|
-
* @type {number}
|
|
5195
|
-
* @memberof OrderedItemModel
|
|
5196
|
-
*/
|
|
5197
|
-
'supplierCreditDue'?: number;
|
|
5198
|
-
/**
|
|
5199
|
-
* supplierCreditReceived
|
|
5200
|
-
* @type {number}
|
|
5201
|
-
* @memberof OrderedItemModel
|
|
5202
|
-
*/
|
|
5203
|
-
'supplierCreditReceived'?: number;
|
|
5204
|
-
/**
|
|
5205
|
-
* supplierSku
|
|
5206
|
-
* @type {string}
|
|
5207
|
-
* @memberof OrderedItemModel
|
|
5208
|
-
*/
|
|
5209
|
-
'supplierSku'?: string;
|
|
5210
|
-
/**
|
|
5211
|
-
* returnedStock
|
|
5212
|
-
* @type {number}
|
|
5213
|
-
* @memberof OrderedItemModel
|
|
5214
|
-
*/
|
|
5215
|
-
'returnedStock'?: number;
|
|
5216
|
-
}
|
|
5217
|
-
/**
|
|
5218
|
-
*
|
|
5219
|
-
* @export
|
|
5220
|
-
* @interface PatchSetTcxWizardCnameRequest
|
|
5221
|
-
*/
|
|
5222
|
-
export interface PatchSetTcxWizardCnameRequest {
|
|
5223
|
-
/**
|
|
5224
|
-
* CNAME
|
|
5225
|
-
* @type {string}
|
|
5226
|
-
* @memberof PatchSetTcxWizardCnameRequest
|
|
5227
|
-
*/
|
|
5228
|
-
'cname'?: string;
|
|
5229
|
-
}
|
|
5230
|
-
/**
|
|
5231
|
-
*
|
|
5232
|
-
* @export
|
|
5233
|
-
* @interface PatchUpdateAccountContactPasswordRequest
|
|
5234
|
-
*/
|
|
5235
|
-
export interface PatchUpdateAccountContactPasswordRequest {
|
|
5236
|
-
/**
|
|
5237
|
-
* Password
|
|
5238
|
-
* @type {string}
|
|
5239
|
-
* @memberof PatchUpdateAccountContactPasswordRequest
|
|
5240
|
-
*/
|
|
5241
|
-
'password'?: string;
|
|
5242
|
-
}
|
|
5243
|
-
/**
|
|
5244
|
-
* Customer Account
|
|
5245
|
-
* @export
|
|
5246
|
-
* @interface PortalAccountModel
|
|
5247
|
-
*/
|
|
5248
|
-
export interface PortalAccountModel {
|
|
5249
|
-
/**
|
|
5250
|
-
* ID
|
|
5251
|
-
* @type {number}
|
|
5252
|
-
* @memberof PortalAccountModel
|
|
5253
|
-
*/
|
|
5254
|
-
'id'?: number;
|
|
5255
|
-
/**
|
|
5256
|
-
* Contact Name
|
|
5257
|
-
* @type {string}
|
|
5258
|
-
* @memberof PortalAccountModel
|
|
5259
|
-
*/
|
|
5260
|
-
'name'?: string;
|
|
5261
|
-
/**
|
|
5262
|
-
* Email
|
|
5263
|
-
* @type {string}
|
|
5264
|
-
* @memberof PortalAccountModel
|
|
5265
|
-
*/
|
|
5266
|
-
'email'?: string;
|
|
5267
|
-
/**
|
|
5268
|
-
* Phone Number
|
|
5269
|
-
* @type {string}
|
|
5270
|
-
* @memberof PortalAccountModel
|
|
5271
|
-
*/
|
|
5272
|
-
'phone'?: string;
|
|
4592
|
+
'phone'?: string;
|
|
5273
4593
|
/**
|
|
5274
4594
|
* Company Name
|
|
5275
4595
|
* @type {string}
|
|
@@ -5440,19 +4760,6 @@ export interface PortalLoginModel {
|
|
|
5440
4760
|
*/
|
|
5441
4761
|
'redirect_uri'?: string;
|
|
5442
4762
|
}
|
|
5443
|
-
/**
|
|
5444
|
-
*
|
|
5445
|
-
* @export
|
|
5446
|
-
* @interface PostAddOrderNoteRequest
|
|
5447
|
-
*/
|
|
5448
|
-
export interface PostAddOrderNoteRequest {
|
|
5449
|
-
/**
|
|
5450
|
-
* Order Note
|
|
5451
|
-
* @type {string}
|
|
5452
|
-
* @memberof PostAddOrderNoteRequest
|
|
5453
|
-
*/
|
|
5454
|
-
'note'?: string;
|
|
5455
|
-
}
|
|
5456
4763
|
/**
|
|
5457
4764
|
*
|
|
5458
4765
|
* @export
|
|
@@ -5535,19 +4842,6 @@ export interface PostGetProductRequest {
|
|
|
5535
4842
|
*/
|
|
5536
4843
|
'hosting'?: boolean | null;
|
|
5537
4844
|
}
|
|
5538
|
-
/**
|
|
5539
|
-
*
|
|
5540
|
-
* @export
|
|
5541
|
-
* @interface PostSplitOrderRequest
|
|
5542
|
-
*/
|
|
5543
|
-
export interface PostSplitOrderRequest {
|
|
5544
|
-
/**
|
|
5545
|
-
* Item Ids
|
|
5546
|
-
* @type {Array<number>}
|
|
5547
|
-
* @memberof PostSplitOrderRequest
|
|
5548
|
-
*/
|
|
5549
|
-
'itemIds'?: Array<number>;
|
|
5550
|
-
}
|
|
5551
4845
|
/**
|
|
5552
4846
|
* Price & Stock List
|
|
5553
4847
|
* @export
|
|
@@ -5585,43 +4879,6 @@ export interface PriceListItemModel {
|
|
|
5585
4879
|
*/
|
|
5586
4880
|
'stock'?: number | null;
|
|
5587
4881
|
}
|
|
5588
|
-
/**
|
|
5589
|
-
* PrintersEntity
|
|
5590
|
-
* @export
|
|
5591
|
-
* @interface PrinterEntity
|
|
5592
|
-
*/
|
|
5593
|
-
export interface PrinterEntity {
|
|
5594
|
-
/**
|
|
5595
|
-
* id
|
|
5596
|
-
* @type {number}
|
|
5597
|
-
* @memberof PrinterEntity
|
|
5598
|
-
*/
|
|
5599
|
-
'id'?: number;
|
|
5600
|
-
/**
|
|
5601
|
-
* brand
|
|
5602
|
-
* @type {string}
|
|
5603
|
-
* @memberof PrinterEntity
|
|
5604
|
-
*/
|
|
5605
|
-
'brand'?: string;
|
|
5606
|
-
/**
|
|
5607
|
-
* model
|
|
5608
|
-
* @type {string}
|
|
5609
|
-
* @memberof PrinterEntity
|
|
5610
|
-
*/
|
|
5611
|
-
'model'?: string;
|
|
5612
|
-
/**
|
|
5613
|
-
* sn
|
|
5614
|
-
* @type {string}
|
|
5615
|
-
* @memberof PrinterEntity
|
|
5616
|
-
*/
|
|
5617
|
-
'sn'?: string;
|
|
5618
|
-
/**
|
|
5619
|
-
* location
|
|
5620
|
-
* @type {string}
|
|
5621
|
-
* @memberof PrinterEntity
|
|
5622
|
-
*/
|
|
5623
|
-
'location'?: string;
|
|
5624
|
-
}
|
|
5625
4882
|
/**
|
|
5626
4883
|
* PrizesEntity
|
|
5627
4884
|
* @export
|
|
@@ -6009,38 +5266,6 @@ export interface ProvisioningRequestEntity {
|
|
|
6009
5266
|
*/
|
|
6010
5267
|
'auth'?: string;
|
|
6011
5268
|
}
|
|
6012
|
-
/**
|
|
6013
|
-
*
|
|
6014
|
-
* @export
|
|
6015
|
-
* @interface PutAllocateItemsRequest
|
|
6016
|
-
*/
|
|
6017
|
-
export interface PutAllocateItemsRequest {
|
|
6018
|
-
/**
|
|
6019
|
-
* Items
|
|
6020
|
-
* @type {Array<PutAllocateItemsRequestItemsInner>}
|
|
6021
|
-
* @memberof PutAllocateItemsRequest
|
|
6022
|
-
*/
|
|
6023
|
-
'items'?: Array<PutAllocateItemsRequestItemsInner>;
|
|
6024
|
-
}
|
|
6025
|
-
/**
|
|
6026
|
-
*
|
|
6027
|
-
* @export
|
|
6028
|
-
* @interface PutAllocateItemsRequestItemsInner
|
|
6029
|
-
*/
|
|
6030
|
-
export interface PutAllocateItemsRequestItemsInner {
|
|
6031
|
-
/**
|
|
6032
|
-
* Item ID
|
|
6033
|
-
* @type {number}
|
|
6034
|
-
* @memberof PutAllocateItemsRequestItemsInner
|
|
6035
|
-
*/
|
|
6036
|
-
'itemId'?: number;
|
|
6037
|
-
/**
|
|
6038
|
-
* Quantity To Allocate
|
|
6039
|
-
* @type {number}
|
|
6040
|
-
* @memberof PutAllocateItemsRequestItemsInner
|
|
6041
|
-
*/
|
|
6042
|
-
'quantity'?: number;
|
|
6043
|
-
}
|
|
6044
5269
|
/**
|
|
6045
5270
|
* Azure Recordings Backup
|
|
6046
5271
|
* @export
|
|
@@ -6363,55 +5588,6 @@ export interface ShipmentAddressEntity {
|
|
|
6363
5588
|
*/
|
|
6364
5589
|
'shipPhoneNumber'?: string;
|
|
6365
5590
|
}
|
|
6366
|
-
/**
|
|
6367
|
-
* Shipment
|
|
6368
|
-
* @export
|
|
6369
|
-
* @interface ShipmentDTO
|
|
6370
|
-
*/
|
|
6371
|
-
export interface ShipmentDTO {
|
|
6372
|
-
/**
|
|
6373
|
-
* Courier
|
|
6374
|
-
* @type {string}
|
|
6375
|
-
* @memberof ShipmentDTO
|
|
6376
|
-
*/
|
|
6377
|
-
'courier'?: ShipmentDTOCourierEnum | null;
|
|
6378
|
-
/**
|
|
6379
|
-
* Courier Reference
|
|
6380
|
-
* @type {string}
|
|
6381
|
-
* @memberof ShipmentDTO
|
|
6382
|
-
*/
|
|
6383
|
-
'reference'?: string | null;
|
|
6384
|
-
/**
|
|
6385
|
-
* Date Time
|
|
6386
|
-
* @type {string}
|
|
6387
|
-
* @memberof ShipmentDTO
|
|
6388
|
-
*/
|
|
6389
|
-
'requestedDate'?: string;
|
|
6390
|
-
/**
|
|
6391
|
-
* Scanned Items
|
|
6392
|
-
* @type {Array<ScannedItemModel>}
|
|
6393
|
-
* @memberof ShipmentDTO
|
|
6394
|
-
*/
|
|
6395
|
-
'scannedItems'?: Array<ScannedItemModel>;
|
|
6396
|
-
/**
|
|
6397
|
-
* Items
|
|
6398
|
-
* @type {Array<ShipmentItemModel>}
|
|
6399
|
-
* @memberof ShipmentDTO
|
|
6400
|
-
*/
|
|
6401
|
-
'items'?: Array<ShipmentItemModel>;
|
|
6402
|
-
/**
|
|
6403
|
-
*
|
|
6404
|
-
* @type {AddressModel}
|
|
6405
|
-
* @memberof ShipmentDTO
|
|
6406
|
-
*/
|
|
6407
|
-
'address'?: AddressModel;
|
|
6408
|
-
}
|
|
6409
|
-
export declare const ShipmentDTOCourierEnum: {
|
|
6410
|
-
readonly Dpd: "DPD";
|
|
6411
|
-
readonly ChorltonPallet: "Chorlton Pallet";
|
|
6412
|
-
readonly Pops: "POPS";
|
|
6413
|
-
};
|
|
6414
|
-
export type ShipmentDTOCourierEnum = typeof ShipmentDTOCourierEnum[keyof typeof ShipmentDTOCourierEnum];
|
|
6415
5591
|
/**
|
|
6416
5592
|
* ShipmentsEntity
|
|
6417
5593
|
* @export
|
|
@@ -6491,25 +5667,6 @@ export interface ShipmentEntity {
|
|
|
6491
5667
|
*/
|
|
6492
5668
|
'provId'?: number;
|
|
6493
5669
|
}
|
|
6494
|
-
/**
|
|
6495
|
-
* Shipment Item
|
|
6496
|
-
* @export
|
|
6497
|
-
* @interface ShipmentItemDTO
|
|
6498
|
-
*/
|
|
6499
|
-
export interface ShipmentItemDTO {
|
|
6500
|
-
/**
|
|
6501
|
-
* Item ID
|
|
6502
|
-
* @type {number}
|
|
6503
|
-
* @memberof ShipmentItemDTO
|
|
6504
|
-
*/
|
|
6505
|
-
'itemId'?: number;
|
|
6506
|
-
/**
|
|
6507
|
-
* Quantity
|
|
6508
|
-
* @type {number}
|
|
6509
|
-
* @memberof ShipmentItemDTO
|
|
6510
|
-
*/
|
|
6511
|
-
'quantity'?: number;
|
|
6512
|
-
}
|
|
6513
5670
|
/**
|
|
6514
5671
|
* ShipmentItemsEntity
|
|
6515
5672
|
* @export
|
|
@@ -6548,257 +5705,61 @@ export interface ShipmentItemEntity {
|
|
|
6548
5705
|
'itemId'?: string;
|
|
6549
5706
|
}
|
|
6550
5707
|
/**
|
|
6551
|
-
*
|
|
5708
|
+
*
|
|
6552
5709
|
* @export
|
|
6553
|
-
* @interface
|
|
5710
|
+
* @interface ShippingConsignmentModel
|
|
6554
5711
|
*/
|
|
6555
|
-
export interface
|
|
6556
|
-
/**
|
|
6557
|
-
* id
|
|
6558
|
-
* @type {number}
|
|
6559
|
-
* @memberof ShipmentItemModel
|
|
6560
|
-
*/
|
|
6561
|
-
'id'?: number;
|
|
5712
|
+
export interface ShippingConsignmentModel {
|
|
6562
5713
|
/**
|
|
6563
|
-
*
|
|
6564
|
-
* @type {
|
|
6565
|
-
* @memberof
|
|
5714
|
+
*
|
|
5715
|
+
* @type {ShippingServiceModel}
|
|
5716
|
+
* @memberof ShippingConsignmentModel
|
|
6566
5717
|
*/
|
|
6567
|
-
'
|
|
5718
|
+
'service'?: ShippingServiceModel;
|
|
6568
5719
|
/**
|
|
6569
|
-
*
|
|
6570
|
-
* @type {
|
|
6571
|
-
* @memberof
|
|
5720
|
+
* ID/Number
|
|
5721
|
+
* @type {string}
|
|
5722
|
+
* @memberof ShippingConsignmentModel
|
|
6572
5723
|
*/
|
|
6573
|
-
'
|
|
5724
|
+
'id'?: string;
|
|
6574
5725
|
/**
|
|
6575
|
-
*
|
|
6576
|
-
* @type {
|
|
6577
|
-
* @memberof
|
|
5726
|
+
* Tracking Number
|
|
5727
|
+
* @type {string}
|
|
5728
|
+
* @memberof ShippingConsignmentModel
|
|
6578
5729
|
*/
|
|
6579
|
-
'
|
|
5730
|
+
'trackingNumber'?: string;
|
|
6580
5731
|
/**
|
|
6581
|
-
*
|
|
6582
|
-
* @type {string}
|
|
6583
|
-
* @memberof
|
|
5732
|
+
* Parcels
|
|
5733
|
+
* @type {Array<string>}
|
|
5734
|
+
* @memberof ShippingConsignmentModel
|
|
6584
5735
|
*/
|
|
6585
|
-
'
|
|
5736
|
+
'parcelIds'?: Array<string>;
|
|
6586
5737
|
}
|
|
6587
5738
|
/**
|
|
6588
|
-
*
|
|
5739
|
+
* Shipping Information
|
|
6589
5740
|
* @export
|
|
6590
|
-
* @interface
|
|
5741
|
+
* @interface ShippingInformationDTO
|
|
6591
5742
|
*/
|
|
6592
|
-
export interface
|
|
6593
|
-
/**
|
|
6594
|
-
* id
|
|
6595
|
-
* @type {number}
|
|
6596
|
-
* @memberof ShipmentModel
|
|
6597
|
-
*/
|
|
6598
|
-
'id'?: number;
|
|
5743
|
+
export interface ShippingInformationDTO {
|
|
6599
5744
|
/**
|
|
6600
|
-
*
|
|
6601
|
-
* @type {
|
|
6602
|
-
* @memberof
|
|
5745
|
+
* Items
|
|
5746
|
+
* @type {Array<BasicItemDTO>}
|
|
5747
|
+
* @memberof ShippingInformationDTO
|
|
6603
5748
|
*/
|
|
6604
|
-
'
|
|
5749
|
+
'items'?: Array<BasicItemDTO>;
|
|
6605
5750
|
/**
|
|
6606
|
-
*
|
|
5751
|
+
* Destination Post Code
|
|
6607
5752
|
* @type {string}
|
|
6608
|
-
* @memberof
|
|
5753
|
+
* @memberof ShippingInformationDTO
|
|
6609
5754
|
*/
|
|
6610
|
-
'
|
|
5755
|
+
'postalCode'?: string;
|
|
6611
5756
|
/**
|
|
6612
|
-
*
|
|
5757
|
+
* Destination ISO
|
|
6613
5758
|
* @type {string}
|
|
6614
|
-
* @memberof
|
|
6615
|
-
*/
|
|
6616
|
-
'courierService'?: string;
|
|
6617
|
-
/**
|
|
6618
|
-
* courierServiceDesc
|
|
6619
|
-
* @type {string}
|
|
6620
|
-
* @memberof ShipmentModel
|
|
6621
|
-
*/
|
|
6622
|
-
'courierServiceDesc'?: string;
|
|
6623
|
-
/**
|
|
6624
|
-
* courierReference
|
|
6625
|
-
* @type {string}
|
|
6626
|
-
* @memberof ShipmentModel
|
|
6627
|
-
*/
|
|
6628
|
-
'courierReference'?: string;
|
|
6629
|
-
/**
|
|
6630
|
-
* courierTracking
|
|
6631
|
-
* @type {string}
|
|
6632
|
-
* @memberof ShipmentModel
|
|
6633
|
-
*/
|
|
6634
|
-
'courierTracking'?: string;
|
|
6635
|
-
/**
|
|
6636
|
-
* courierBoxes
|
|
6637
|
-
* @type {number}
|
|
6638
|
-
* @memberof ShipmentModel
|
|
6639
|
-
*/
|
|
6640
|
-
'courierBoxes'?: number;
|
|
6641
|
-
/**
|
|
6642
|
-
* mac
|
|
6643
|
-
* @type {string}
|
|
6644
|
-
* @memberof ShipmentModel
|
|
6645
|
-
*/
|
|
6646
|
-
'scannedData'?: string;
|
|
6647
|
-
/**
|
|
6648
|
-
* date
|
|
6649
|
-
* @type {string}
|
|
6650
|
-
* @memberof ShipmentModel
|
|
6651
|
-
*/
|
|
6652
|
-
'dateShipped'?: string;
|
|
6653
|
-
/**
|
|
6654
|
-
* requestDate
|
|
6655
|
-
* @type {string}
|
|
6656
|
-
* @memberof ShipmentModel
|
|
6657
|
-
*/
|
|
6658
|
-
'requestDate'?: string;
|
|
6659
|
-
/**
|
|
6660
|
-
* provId
|
|
6661
|
-
* @type {number}
|
|
6662
|
-
* @memberof ShipmentModel
|
|
6663
|
-
*/
|
|
6664
|
-
'provId'?: number;
|
|
6665
|
-
}
|
|
6666
|
-
/**
|
|
6667
|
-
* Shipment Request
|
|
6668
|
-
* @export
|
|
6669
|
-
* @interface ShipmentRequestDTO
|
|
6670
|
-
*/
|
|
6671
|
-
export interface ShipmentRequestDTO {
|
|
6672
|
-
/**
|
|
6673
|
-
* Courier
|
|
6674
|
-
* @type {string}
|
|
6675
|
-
* @memberof ShipmentRequestDTO
|
|
6676
|
-
*/
|
|
6677
|
-
'courier'?: ShipmentRequestDTOCourierEnum;
|
|
6678
|
-
/**
|
|
6679
|
-
*
|
|
6680
|
-
* @type {AddressModel}
|
|
6681
|
-
* @memberof ShipmentRequestDTO
|
|
6682
|
-
*/
|
|
6683
|
-
'address'?: AddressModel | null;
|
|
6684
|
-
/**
|
|
6685
|
-
* Scanned Lines
|
|
6686
|
-
* @type {Array<string>}
|
|
6687
|
-
* @memberof ShipmentRequestDTO
|
|
6688
|
-
*/
|
|
6689
|
-
'scannedLines'?: Array<string>;
|
|
6690
|
-
/**
|
|
6691
|
-
* Service
|
|
6692
|
-
* @type {string}
|
|
6693
|
-
* @memberof ShipmentRequestDTO
|
|
6694
|
-
*/
|
|
6695
|
-
'service'?: string;
|
|
6696
|
-
/**
|
|
6697
|
-
* Date Time
|
|
6698
|
-
* @type {string}
|
|
6699
|
-
* @memberof ShipmentRequestDTO
|
|
6700
|
-
*/
|
|
6701
|
-
'shipDate'?: string;
|
|
6702
|
-
/**
|
|
6703
|
-
* Items
|
|
6704
|
-
* @type {Array<ShipmentItemDTO>}
|
|
6705
|
-
* @memberof ShipmentRequestDTO
|
|
6706
|
-
*/
|
|
6707
|
-
'items'?: Array<ShipmentItemDTO>;
|
|
6708
|
-
}
|
|
6709
|
-
export declare const ShipmentRequestDTOCourierEnum: {
|
|
6710
|
-
readonly Dpd: "DPD";
|
|
6711
|
-
readonly ChorltonPallet: "Chorlton Pallet";
|
|
6712
|
-
readonly Pops: "POPS";
|
|
6713
|
-
};
|
|
6714
|
-
export type ShipmentRequestDTOCourierEnum = typeof ShipmentRequestDTOCourierEnum[keyof typeof ShipmentRequestDTOCourierEnum];
|
|
6715
|
-
/**
|
|
6716
|
-
*
|
|
6717
|
-
* @export
|
|
6718
|
-
* @interface ShippingConsignmentModel
|
|
6719
|
-
*/
|
|
6720
|
-
export interface ShippingConsignmentModel {
|
|
6721
|
-
/**
|
|
6722
|
-
*
|
|
6723
|
-
* @type {ShippingServiceModel}
|
|
6724
|
-
* @memberof ShippingConsignmentModel
|
|
6725
|
-
*/
|
|
6726
|
-
'service'?: ShippingServiceModel;
|
|
6727
|
-
/**
|
|
6728
|
-
* ID/Number
|
|
6729
|
-
* @type {string}
|
|
6730
|
-
* @memberof ShippingConsignmentModel
|
|
6731
|
-
*/
|
|
6732
|
-
'id'?: string;
|
|
6733
|
-
/**
|
|
6734
|
-
* Tracking Number
|
|
6735
|
-
* @type {string}
|
|
6736
|
-
* @memberof ShippingConsignmentModel
|
|
6737
|
-
*/
|
|
6738
|
-
'trackingNumber'?: string;
|
|
6739
|
-
/**
|
|
6740
|
-
* Parcels
|
|
6741
|
-
* @type {Array<string>}
|
|
6742
|
-
* @memberof ShippingConsignmentModel
|
|
6743
|
-
*/
|
|
6744
|
-
'parcelIds'?: Array<string>;
|
|
6745
|
-
}
|
|
6746
|
-
/**
|
|
6747
|
-
* Shipping Information
|
|
6748
|
-
* @export
|
|
6749
|
-
* @interface ShippingInformationDTO
|
|
6750
|
-
*/
|
|
6751
|
-
export interface ShippingInformationDTO {
|
|
6752
|
-
/**
|
|
6753
|
-
* Items
|
|
6754
|
-
* @type {Array<BasicItemDTO>}
|
|
6755
|
-
* @memberof ShippingInformationDTO
|
|
6756
|
-
*/
|
|
6757
|
-
'items'?: Array<BasicItemDTO>;
|
|
6758
|
-
/**
|
|
6759
|
-
* Destination Post Code
|
|
6760
|
-
* @type {string}
|
|
6761
|
-
* @memberof ShippingInformationDTO
|
|
6762
|
-
*/
|
|
6763
|
-
'postalCode'?: string;
|
|
6764
|
-
/**
|
|
6765
|
-
* Destination ISO
|
|
6766
|
-
* @type {string}
|
|
6767
|
-
* @memberof ShippingInformationDTO
|
|
5759
|
+
* @memberof ShippingInformationDTO
|
|
6768
5760
|
*/
|
|
6769
5761
|
'iso'?: string;
|
|
6770
5762
|
}
|
|
6771
|
-
/**
|
|
6772
|
-
*
|
|
6773
|
-
* @export
|
|
6774
|
-
* @interface ShippingRequestDTO
|
|
6775
|
-
*/
|
|
6776
|
-
export interface ShippingRequestDTO {
|
|
6777
|
-
/**
|
|
6778
|
-
* Courier
|
|
6779
|
-
* @type {string}
|
|
6780
|
-
* @memberof ShippingRequestDTO
|
|
6781
|
-
*/
|
|
6782
|
-
'courier'?: ShippingRequestDTOCourierEnum;
|
|
6783
|
-
/**
|
|
6784
|
-
* Courier Service
|
|
6785
|
-
* @type {string}
|
|
6786
|
-
* @memberof ShippingRequestDTO
|
|
6787
|
-
*/
|
|
6788
|
-
'service'?: string;
|
|
6789
|
-
/**
|
|
6790
|
-
* Boxes
|
|
6791
|
-
* @type {number}
|
|
6792
|
-
* @memberof ShippingRequestDTO
|
|
6793
|
-
*/
|
|
6794
|
-
'boxes'?: number;
|
|
6795
|
-
}
|
|
6796
|
-
export declare const ShippingRequestDTOCourierEnum: {
|
|
6797
|
-
readonly Dpd: "DPD";
|
|
6798
|
-
readonly ChorltonPallet: "Chorlton Pallet";
|
|
6799
|
-
readonly Pops: "POPS";
|
|
6800
|
-
};
|
|
6801
|
-
export type ShippingRequestDTOCourierEnum = typeof ShippingRequestDTOCourierEnum[keyof typeof ShippingRequestDTOCourierEnum];
|
|
6802
5763
|
/**
|
|
6803
5764
|
* Shipping Service
|
|
6804
5765
|
* @export
|
|
@@ -8406,67 +7367,6 @@ export interface SupplierItemEntity {
|
|
|
8406
7367
|
*/
|
|
8407
7368
|
'supplierSku'?: string;
|
|
8408
7369
|
}
|
|
8409
|
-
/**
|
|
8410
|
-
* Supplier
|
|
8411
|
-
* @export
|
|
8412
|
-
* @interface SupplierModel
|
|
8413
|
-
*/
|
|
8414
|
-
export interface SupplierModel {
|
|
8415
|
-
/**
|
|
8416
|
-
* id
|
|
8417
|
-
* @type {number}
|
|
8418
|
-
* @memberof SupplierModel
|
|
8419
|
-
*/
|
|
8420
|
-
'id'?: number;
|
|
8421
|
-
/**
|
|
8422
|
-
* name
|
|
8423
|
-
* @type {string}
|
|
8424
|
-
* @memberof SupplierModel
|
|
8425
|
-
*/
|
|
8426
|
-
'name'?: string;
|
|
8427
|
-
/**
|
|
8428
|
-
* nameShort
|
|
8429
|
-
* @type {string}
|
|
8430
|
-
* @memberof SupplierModel
|
|
8431
|
-
*/
|
|
8432
|
-
'shortName'?: string;
|
|
8433
|
-
/**
|
|
8434
|
-
* email
|
|
8435
|
-
* @type {string}
|
|
8436
|
-
* @memberof SupplierModel
|
|
8437
|
-
*/
|
|
8438
|
-
'email'?: string;
|
|
8439
|
-
/**
|
|
8440
|
-
* phone
|
|
8441
|
-
* @type {string}
|
|
8442
|
-
* @memberof SupplierModel
|
|
8443
|
-
*/
|
|
8444
|
-
'phone'?: string;
|
|
8445
|
-
/**
|
|
8446
|
-
* defaultCourier
|
|
8447
|
-
* @type {string}
|
|
8448
|
-
* @memberof SupplierModel
|
|
8449
|
-
*/
|
|
8450
|
-
'defaultCourier'?: string;
|
|
8451
|
-
/**
|
|
8452
|
-
* defaultCarriage
|
|
8453
|
-
* @type {number}
|
|
8454
|
-
* @memberof SupplierModel
|
|
8455
|
-
*/
|
|
8456
|
-
'defaultCarriage'?: number;
|
|
8457
|
-
/**
|
|
8458
|
-
* account
|
|
8459
|
-
* @type {string}
|
|
8460
|
-
* @memberof SupplierModel
|
|
8461
|
-
*/
|
|
8462
|
-
'accountNumber'?: string;
|
|
8463
|
-
/**
|
|
8464
|
-
* internalAccount
|
|
8465
|
-
* @type {string}
|
|
8466
|
-
* @memberof SupplierModel
|
|
8467
|
-
*/
|
|
8468
|
-
'xeroAccountNumber'?: string;
|
|
8469
|
-
}
|
|
8470
7370
|
/**
|
|
8471
7371
|
* 3CX Wizard Restore From Backup
|
|
8472
7372
|
* @export
|
|
@@ -14453,16 +13353,6 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
14453
13353
|
* @export
|
|
14454
13354
|
*/
|
|
14455
13355
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14456
|
-
/**
|
|
14457
|
-
* Delete Shipment (Admin)
|
|
14458
|
-
* @summary Delete Shipment (Admin)
|
|
14459
|
-
* @param {number} id Order ID
|
|
14460
|
-
* @param {number} batchId Batch ID
|
|
14461
|
-
* @param {number} shipmentId Shipment ID
|
|
14462
|
-
* @param {*} [options] Override http request option.
|
|
14463
|
-
* @throws {RequiredError}
|
|
14464
|
-
*/
|
|
14465
|
-
deleteCreateShipment: (id: number, batchId: number, shipmentId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14466
13356
|
/**
|
|
14467
13357
|
* Delete Orders (Beta)
|
|
14468
13358
|
* @summary Delete Orders (Beta)
|
|
@@ -14479,14 +13369,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
14479
13369
|
* @throws {RequiredError}
|
|
14480
13370
|
*/
|
|
14481
13371
|
getGetAdminEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14482
|
-
/**
|
|
14483
|
-
* Get Order Details (Admin)
|
|
14484
|
-
* @summary Get Order Details (Admin)
|
|
14485
|
-
* @param {number} id Order ID
|
|
14486
|
-
* @param {*} [options] Override http request option.
|
|
14487
|
-
* @throws {RequiredError}
|
|
14488
|
-
*/
|
|
14489
|
-
getGetAdminOrderDetails: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14490
13372
|
/**
|
|
14491
13373
|
* Get Editable Order (Beta)
|
|
14492
13374
|
* @summary Get Editable Order (Beta)
|
|
@@ -14495,14 +13377,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
14495
13377
|
* @throws {RequiredError}
|
|
14496
13378
|
*/
|
|
14497
13379
|
getGetEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14498
|
-
/**
|
|
14499
|
-
* Download Order PDF
|
|
14500
|
-
* @summary Download Order PDF
|
|
14501
|
-
* @param {number} id Order ID
|
|
14502
|
-
* @param {*} [options] Override http request option.
|
|
14503
|
-
* @throws {RequiredError}
|
|
14504
|
-
*/
|
|
14505
|
-
getGetOrderPdf: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14506
13380
|
/**
|
|
14507
13381
|
* Get Orders (Beta)
|
|
14508
13382
|
* @summary Get Orders (Beta)
|
|
@@ -14517,15 +13391,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
14517
13391
|
* @throws {RequiredError}
|
|
14518
13392
|
*/
|
|
14519
13393
|
getGetOrders: (pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14520
|
-
/**
|
|
14521
|
-
* Add Order Note
|
|
14522
|
-
* @summary Add Order Note
|
|
14523
|
-
* @param {number} id Order ID
|
|
14524
|
-
* @param {PostAddOrderNoteRequest} [postAddOrderNoteRequest]
|
|
14525
|
-
* @param {*} [options] Override http request option.
|
|
14526
|
-
* @throws {RequiredError}
|
|
14527
|
-
*/
|
|
14528
|
-
postAddOrderNote: (id: number, postAddOrderNoteRequest?: PostAddOrderNoteRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14529
13394
|
/**
|
|
14530
13395
|
* Create An Order (Admin)
|
|
14531
13396
|
* @summary Create An Order (Admin)
|
|
@@ -14535,26 +13400,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
14535
13400
|
* @throws {RequiredError}
|
|
14536
13401
|
*/
|
|
14537
13402
|
postCreateAdminOrder: (readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14538
|
-
/**
|
|
14539
|
-
* Create Shipping Consignment
|
|
14540
|
-
* @summary Create Shipping Consignment
|
|
14541
|
-
* @param {number} id Order ID
|
|
14542
|
-
* @param {number} shipmentId Shipment ID
|
|
14543
|
-
* @param {ShippingRequestDTO} [shippingRequestDTO] Shipping Request
|
|
14544
|
-
* @param {*} [options] Override http request option.
|
|
14545
|
-
* @throws {RequiredError}
|
|
14546
|
-
*/
|
|
14547
|
-
postCreateConsignment: (id: number, shipmentId: number, shippingRequestDTO?: ShippingRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14548
|
-
/**
|
|
14549
|
-
* Create Shipment (Admin)
|
|
14550
|
-
* @summary Create Shipment (Admin)
|
|
14551
|
-
* @param {number} id Order ID
|
|
14552
|
-
* @param {number} batchId Batch ID
|
|
14553
|
-
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
14554
|
-
* @param {*} [options] Override http request option.
|
|
14555
|
-
* @throws {RequiredError}
|
|
14556
|
-
*/
|
|
14557
|
-
postCreateShipment: (id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14558
13403
|
/**
|
|
14559
13404
|
* Create An Order (Beta)
|
|
14560
13405
|
* @summary Create An Order (Beta)
|
|
@@ -14564,73 +13409,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
14564
13409
|
* @throws {RequiredError}
|
|
14565
13410
|
*/
|
|
14566
13411
|
postGetOrders: (readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14567
|
-
/**
|
|
14568
|
-
* Issue Credit (Admin)
|
|
14569
|
-
* @summary Issue Credit (Admin)
|
|
14570
|
-
* @param {number} id Order ID
|
|
14571
|
-
* @param {CreditNoteDTO} [creditNoteDTO] Credit Request
|
|
14572
|
-
* @param {*} [options] Override http request option.
|
|
14573
|
-
* @throws {RequiredError}
|
|
14574
|
-
*/
|
|
14575
|
-
postIssueCredit: (id: number, creditNoteDTO?: CreditNoteDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14576
|
-
/**
|
|
14577
|
-
* Print Shipment Label
|
|
14578
|
-
* @summary Print Shipment Label
|
|
14579
|
-
* @param {number} id Order ID
|
|
14580
|
-
* @param {number} shipmentId Shipment ID
|
|
14581
|
-
* @param {PostPrintShippingLabelPrinterEnum} printer Printer
|
|
14582
|
-
* @param {*} [options] Override http request option.
|
|
14583
|
-
* @throws {RequiredError}
|
|
14584
|
-
*/
|
|
14585
|
-
postPrintShippingLabel: (id: number, shipmentId: number, printer: PostPrintShippingLabelPrinterEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14586
|
-
/**
|
|
14587
|
-
* Send Order Email
|
|
14588
|
-
* @summary Send Order Email
|
|
14589
|
-
* @param {number} id Order ID
|
|
14590
|
-
* @param {string} email Email Address
|
|
14591
|
-
* @param {*} [options] Override http request option.
|
|
14592
|
-
* @throws {RequiredError}
|
|
14593
|
-
*/
|
|
14594
|
-
postSendOrderEmail: (id: number, email: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14595
|
-
/**
|
|
14596
|
-
* Send Supplier Email
|
|
14597
|
-
* @summary Send Supplier Email
|
|
14598
|
-
* @param {number} id Order ID
|
|
14599
|
-
* @param {number} batchId Batch ID
|
|
14600
|
-
* @param {*} [options] Override http request option.
|
|
14601
|
-
* @throws {RequiredError}
|
|
14602
|
-
*/
|
|
14603
|
-
postSendSupplierEmail: (id: number, batchId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14604
|
-
/**
|
|
14605
|
-
* Split Order
|
|
14606
|
-
* @summary Split Order
|
|
14607
|
-
* @param {number} id Order ID
|
|
14608
|
-
* @param {PostSplitOrderRequest} [postSplitOrderRequest]
|
|
14609
|
-
* @param {*} [options] Override http request option.
|
|
14610
|
-
* @throws {RequiredError}
|
|
14611
|
-
*/
|
|
14612
|
-
postSplitOrder: (id: number, postSplitOrderRequest?: PostSplitOrderRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14613
|
-
/**
|
|
14614
|
-
* Allocate Items To Supplier
|
|
14615
|
-
* @summary Allocate Items To Supplier
|
|
14616
|
-
* @param {number} id Order ID
|
|
14617
|
-
* @param {number} supplierId Supplier ID
|
|
14618
|
-
* @param {PutAllocateItemsRequest} [putAllocateItemsRequest]
|
|
14619
|
-
* @param {*} [options] Override http request option.
|
|
14620
|
-
* @throws {RequiredError}
|
|
14621
|
-
*/
|
|
14622
|
-
putAllocateItems: (id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14623
|
-
/**
|
|
14624
|
-
* Update Shipment (Admin)
|
|
14625
|
-
* @summary Update Shipment (Admin)
|
|
14626
|
-
* @param {number} id Order ID
|
|
14627
|
-
* @param {number} batchId Batch ID
|
|
14628
|
-
* @param {number} shipmentId Shipment ID
|
|
14629
|
-
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
14630
|
-
* @param {*} [options] Override http request option.
|
|
14631
|
-
* @throws {RequiredError}
|
|
14632
|
-
*/
|
|
14633
|
-
putCreateShipment: (id: number, batchId: number, shipmentId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14634
13412
|
/**
|
|
14635
13413
|
* Update An Order (Admin)
|
|
14636
13414
|
* @summary Update An Order (Admin)
|
|
@@ -14657,16 +13435,6 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
14657
13435
|
* @export
|
|
14658
13436
|
*/
|
|
14659
13437
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
14660
|
-
/**
|
|
14661
|
-
* Delete Shipment (Admin)
|
|
14662
|
-
* @summary Delete Shipment (Admin)
|
|
14663
|
-
* @param {number} id Order ID
|
|
14664
|
-
* @param {number} batchId Batch ID
|
|
14665
|
-
* @param {number} shipmentId Shipment ID
|
|
14666
|
-
* @param {*} [options] Override http request option.
|
|
14667
|
-
* @throws {RequiredError}
|
|
14668
|
-
*/
|
|
14669
|
-
deleteCreateShipment(id: number, batchId: number, shipmentId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14670
13438
|
/**
|
|
14671
13439
|
* Delete Orders (Beta)
|
|
14672
13440
|
* @summary Delete Orders (Beta)
|
|
@@ -14683,14 +13451,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
14683
13451
|
* @throws {RequiredError}
|
|
14684
13452
|
*/
|
|
14685
13453
|
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminOrderRequestDTO>>;
|
|
14686
|
-
/**
|
|
14687
|
-
* Get Order Details (Admin)
|
|
14688
|
-
* @summary Get Order Details (Admin)
|
|
14689
|
-
* @param {number} id Order ID
|
|
14690
|
-
* @param {*} [options] Override http request option.
|
|
14691
|
-
* @throws {RequiredError}
|
|
14692
|
-
*/
|
|
14693
|
-
getGetAdminOrderDetails(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrderDetailsDTO>>;
|
|
14694
13454
|
/**
|
|
14695
13455
|
* Get Editable Order (Beta)
|
|
14696
13456
|
* @summary Get Editable Order (Beta)
|
|
@@ -14699,14 +13459,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
14699
13459
|
* @throws {RequiredError}
|
|
14700
13460
|
*/
|
|
14701
13461
|
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DetailedOrderRequestDTO>>;
|
|
14702
|
-
/**
|
|
14703
|
-
* Download Order PDF
|
|
14704
|
-
* @summary Download Order PDF
|
|
14705
|
-
* @param {number} id Order ID
|
|
14706
|
-
* @param {*} [options] Override http request option.
|
|
14707
|
-
* @throws {RequiredError}
|
|
14708
|
-
*/
|
|
14709
|
-
getGetOrderPdf(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
14710
13462
|
/**
|
|
14711
13463
|
* Get Orders (Beta)
|
|
14712
13464
|
* @summary Get Orders (Beta)
|
|
@@ -14721,15 +13473,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
14721
13473
|
* @throws {RequiredError}
|
|
14722
13474
|
*/
|
|
14723
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>>;
|
|
14724
|
-
/**
|
|
14725
|
-
* Add Order Note
|
|
14726
|
-
* @summary Add Order Note
|
|
14727
|
-
* @param {number} id Order ID
|
|
14728
|
-
* @param {PostAddOrderNoteRequest} [postAddOrderNoteRequest]
|
|
14729
|
-
* @param {*} [options] Override http request option.
|
|
14730
|
-
* @throws {RequiredError}
|
|
14731
|
-
*/
|
|
14732
|
-
postAddOrderNote(id: number, postAddOrderNoteRequest?: PostAddOrderNoteRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14733
13476
|
/**
|
|
14734
13477
|
* Create An Order (Admin)
|
|
14735
13478
|
* @summary Create An Order (Admin)
|
|
@@ -14739,26 +13482,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
14739
13482
|
* @throws {RequiredError}
|
|
14740
13483
|
*/
|
|
14741
13484
|
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
14742
|
-
/**
|
|
14743
|
-
* Create Shipping Consignment
|
|
14744
|
-
* @summary Create Shipping Consignment
|
|
14745
|
-
* @param {number} id Order ID
|
|
14746
|
-
* @param {number} shipmentId Shipment ID
|
|
14747
|
-
* @param {ShippingRequestDTO} [shippingRequestDTO] Shipping Request
|
|
14748
|
-
* @param {*} [options] Override http request option.
|
|
14749
|
-
* @throws {RequiredError}
|
|
14750
|
-
*/
|
|
14751
|
-
postCreateConsignment(id: number, shipmentId: number, shippingRequestDTO?: ShippingRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShipmentModel>>;
|
|
14752
|
-
/**
|
|
14753
|
-
* Create Shipment (Admin)
|
|
14754
|
-
* @summary Create Shipment (Admin)
|
|
14755
|
-
* @param {number} id Order ID
|
|
14756
|
-
* @param {number} batchId Batch ID
|
|
14757
|
-
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
14758
|
-
* @param {*} [options] Override http request option.
|
|
14759
|
-
* @throws {RequiredError}
|
|
14760
|
-
*/
|
|
14761
|
-
postCreateShipment(id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShipmentModel>>;
|
|
14762
13485
|
/**
|
|
14763
13486
|
* Create An Order (Beta)
|
|
14764
13487
|
* @summary Create An Order (Beta)
|
|
@@ -14768,73 +13491,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
14768
13491
|
* @throws {RequiredError}
|
|
14769
13492
|
*/
|
|
14770
13493
|
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
14771
|
-
/**
|
|
14772
|
-
* Issue Credit (Admin)
|
|
14773
|
-
* @summary Issue Credit (Admin)
|
|
14774
|
-
* @param {number} id Order ID
|
|
14775
|
-
* @param {CreditNoteDTO} [creditNoteDTO] Credit Request
|
|
14776
|
-
* @param {*} [options] Override http request option.
|
|
14777
|
-
* @throws {RequiredError}
|
|
14778
|
-
*/
|
|
14779
|
-
postIssueCredit(id: number, creditNoteDTO?: CreditNoteDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreditNoteModel>>;
|
|
14780
|
-
/**
|
|
14781
|
-
* Print Shipment Label
|
|
14782
|
-
* @summary Print Shipment Label
|
|
14783
|
-
* @param {number} id Order ID
|
|
14784
|
-
* @param {number} shipmentId Shipment ID
|
|
14785
|
-
* @param {PostPrintShippingLabelPrinterEnum} printer Printer
|
|
14786
|
-
* @param {*} [options] Override http request option.
|
|
14787
|
-
* @throws {RequiredError}
|
|
14788
|
-
*/
|
|
14789
|
-
postPrintShippingLabel(id: number, shipmentId: number, printer: PostPrintShippingLabelPrinterEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
14790
|
-
/**
|
|
14791
|
-
* Send Order Email
|
|
14792
|
-
* @summary Send Order Email
|
|
14793
|
-
* @param {number} id Order ID
|
|
14794
|
-
* @param {string} email Email Address
|
|
14795
|
-
* @param {*} [options] Override http request option.
|
|
14796
|
-
* @throws {RequiredError}
|
|
14797
|
-
*/
|
|
14798
|
-
postSendOrderEmail(id: number, email: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14799
|
-
/**
|
|
14800
|
-
* Send Supplier Email
|
|
14801
|
-
* @summary Send Supplier Email
|
|
14802
|
-
* @param {number} id Order ID
|
|
14803
|
-
* @param {number} batchId Batch ID
|
|
14804
|
-
* @param {*} [options] Override http request option.
|
|
14805
|
-
* @throws {RequiredError}
|
|
14806
|
-
*/
|
|
14807
|
-
postSendSupplierEmail(id: number, batchId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14808
|
-
/**
|
|
14809
|
-
* Split Order
|
|
14810
|
-
* @summary Split Order
|
|
14811
|
-
* @param {number} id Order ID
|
|
14812
|
-
* @param {PostSplitOrderRequest} [postSplitOrderRequest]
|
|
14813
|
-
* @param {*} [options] Override http request option.
|
|
14814
|
-
* @throws {RequiredError}
|
|
14815
|
-
*/
|
|
14816
|
-
postSplitOrder(id: number, postSplitOrderRequest?: PostSplitOrderRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
14817
|
-
/**
|
|
14818
|
-
* Allocate Items To Supplier
|
|
14819
|
-
* @summary Allocate Items To Supplier
|
|
14820
|
-
* @param {number} id Order ID
|
|
14821
|
-
* @param {number} supplierId Supplier ID
|
|
14822
|
-
* @param {PutAllocateItemsRequest} [putAllocateItemsRequest]
|
|
14823
|
-
* @param {*} [options] Override http request option.
|
|
14824
|
-
* @throws {RequiredError}
|
|
14825
|
-
*/
|
|
14826
|
-
putAllocateItems(id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14827
|
-
/**
|
|
14828
|
-
* Update Shipment (Admin)
|
|
14829
|
-
* @summary Update Shipment (Admin)
|
|
14830
|
-
* @param {number} id Order ID
|
|
14831
|
-
* @param {number} batchId Batch ID
|
|
14832
|
-
* @param {number} shipmentId Shipment ID
|
|
14833
|
-
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
14834
|
-
* @param {*} [options] Override http request option.
|
|
14835
|
-
* @throws {RequiredError}
|
|
14836
|
-
*/
|
|
14837
|
-
putCreateShipment(id: number, batchId: number, shipmentId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShipmentModel>>;
|
|
14838
13494
|
/**
|
|
14839
13495
|
* Update An Order (Admin)
|
|
14840
13496
|
* @summary Update An Order (Admin)
|
|
@@ -14861,16 +13517,6 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
14861
13517
|
* @export
|
|
14862
13518
|
*/
|
|
14863
13519
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14864
|
-
/**
|
|
14865
|
-
* Delete Shipment (Admin)
|
|
14866
|
-
* @summary Delete Shipment (Admin)
|
|
14867
|
-
* @param {number} id Order ID
|
|
14868
|
-
* @param {number} batchId Batch ID
|
|
14869
|
-
* @param {number} shipmentId Shipment ID
|
|
14870
|
-
* @param {*} [options] Override http request option.
|
|
14871
|
-
* @throws {RequiredError}
|
|
14872
|
-
*/
|
|
14873
|
-
deleteCreateShipment(id: number, batchId: number, shipmentId: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
14874
13520
|
/**
|
|
14875
13521
|
* Delete Orders (Beta)
|
|
14876
13522
|
* @summary Delete Orders (Beta)
|
|
@@ -14887,14 +13533,6 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
14887
13533
|
* @throws {RequiredError}
|
|
14888
13534
|
*/
|
|
14889
13535
|
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminOrderRequestDTO>;
|
|
14890
|
-
/**
|
|
14891
|
-
* Get Order Details (Admin)
|
|
14892
|
-
* @summary Get Order Details (Admin)
|
|
14893
|
-
* @param {number} id Order ID
|
|
14894
|
-
* @param {*} [options] Override http request option.
|
|
14895
|
-
* @throws {RequiredError}
|
|
14896
|
-
*/
|
|
14897
|
-
getGetAdminOrderDetails(id: number, options?: RawAxiosRequestConfig): AxiosPromise<OrderDetailsDTO>;
|
|
14898
13536
|
/**
|
|
14899
13537
|
* Get Editable Order (Beta)
|
|
14900
13538
|
* @summary Get Editable Order (Beta)
|
|
@@ -14903,14 +13541,6 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
14903
13541
|
* @throws {RequiredError}
|
|
14904
13542
|
*/
|
|
14905
13543
|
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<DetailedOrderRequestDTO>;
|
|
14906
|
-
/**
|
|
14907
|
-
* Download Order PDF
|
|
14908
|
-
* @summary Download Order PDF
|
|
14909
|
-
* @param {number} id Order ID
|
|
14910
|
-
* @param {*} [options] Override http request option.
|
|
14911
|
-
* @throws {RequiredError}
|
|
14912
|
-
*/
|
|
14913
|
-
getGetOrderPdf(id: number, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
14914
13544
|
/**
|
|
14915
13545
|
* Get Orders (Beta)
|
|
14916
13546
|
* @summary Get Orders (Beta)
|
|
@@ -14925,15 +13555,6 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
14925
13555
|
* @throws {RequiredError}
|
|
14926
13556
|
*/
|
|
14927
13557
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummariesModel>;
|
|
14928
|
-
/**
|
|
14929
|
-
* Add Order Note
|
|
14930
|
-
* @summary Add Order Note
|
|
14931
|
-
* @param {number} id Order ID
|
|
14932
|
-
* @param {PostAddOrderNoteRequest} [postAddOrderNoteRequest]
|
|
14933
|
-
* @param {*} [options] Override http request option.
|
|
14934
|
-
* @throws {RequiredError}
|
|
14935
|
-
*/
|
|
14936
|
-
postAddOrderNote(id: number, postAddOrderNoteRequest?: PostAddOrderNoteRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
14937
13558
|
/**
|
|
14938
13559
|
* Create An Order (Admin)
|
|
14939
13560
|
* @summary Create An Order (Admin)
|
|
@@ -14943,26 +13564,6 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
14943
13564
|
* @throws {RequiredError}
|
|
14944
13565
|
*/
|
|
14945
13566
|
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
14946
|
-
/**
|
|
14947
|
-
* Create Shipping Consignment
|
|
14948
|
-
* @summary Create Shipping Consignment
|
|
14949
|
-
* @param {number} id Order ID
|
|
14950
|
-
* @param {number} shipmentId Shipment ID
|
|
14951
|
-
* @param {ShippingRequestDTO} [shippingRequestDTO] Shipping Request
|
|
14952
|
-
* @param {*} [options] Override http request option.
|
|
14953
|
-
* @throws {RequiredError}
|
|
14954
|
-
*/
|
|
14955
|
-
postCreateConsignment(id: number, shipmentId: number, shippingRequestDTO?: ShippingRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShipmentModel>;
|
|
14956
|
-
/**
|
|
14957
|
-
* Create Shipment (Admin)
|
|
14958
|
-
* @summary Create Shipment (Admin)
|
|
14959
|
-
* @param {number} id Order ID
|
|
14960
|
-
* @param {number} batchId Batch ID
|
|
14961
|
-
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
14962
|
-
* @param {*} [options] Override http request option.
|
|
14963
|
-
* @throws {RequiredError}
|
|
14964
|
-
*/
|
|
14965
|
-
postCreateShipment(id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShipmentModel>;
|
|
14966
13567
|
/**
|
|
14967
13568
|
* Create An Order (Beta)
|
|
14968
13569
|
* @summary Create An Order (Beta)
|
|
@@ -14972,73 +13573,6 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
14972
13573
|
* @throws {RequiredError}
|
|
14973
13574
|
*/
|
|
14974
13575
|
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
14975
|
-
/**
|
|
14976
|
-
* Issue Credit (Admin)
|
|
14977
|
-
* @summary Issue Credit (Admin)
|
|
14978
|
-
* @param {number} id Order ID
|
|
14979
|
-
* @param {CreditNoteDTO} [creditNoteDTO] Credit Request
|
|
14980
|
-
* @param {*} [options] Override http request option.
|
|
14981
|
-
* @throws {RequiredError}
|
|
14982
|
-
*/
|
|
14983
|
-
postIssueCredit(id: number, creditNoteDTO?: CreditNoteDTO, options?: RawAxiosRequestConfig): AxiosPromise<CreditNoteModel>;
|
|
14984
|
-
/**
|
|
14985
|
-
* Print Shipment Label
|
|
14986
|
-
* @summary Print Shipment Label
|
|
14987
|
-
* @param {number} id Order ID
|
|
14988
|
-
* @param {number} shipmentId Shipment ID
|
|
14989
|
-
* @param {PostPrintShippingLabelPrinterEnum} printer Printer
|
|
14990
|
-
* @param {*} [options] Override http request option.
|
|
14991
|
-
* @throws {RequiredError}
|
|
14992
|
-
*/
|
|
14993
|
-
postPrintShippingLabel(id: number, shipmentId: number, printer: PostPrintShippingLabelPrinterEnum, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
14994
|
-
/**
|
|
14995
|
-
* Send Order Email
|
|
14996
|
-
* @summary Send Order Email
|
|
14997
|
-
* @param {number} id Order ID
|
|
14998
|
-
* @param {string} email Email Address
|
|
14999
|
-
* @param {*} [options] Override http request option.
|
|
15000
|
-
* @throws {RequiredError}
|
|
15001
|
-
*/
|
|
15002
|
-
postSendOrderEmail(id: number, email: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15003
|
-
/**
|
|
15004
|
-
* Send Supplier Email
|
|
15005
|
-
* @summary Send Supplier Email
|
|
15006
|
-
* @param {number} id Order ID
|
|
15007
|
-
* @param {number} batchId Batch ID
|
|
15008
|
-
* @param {*} [options] Override http request option.
|
|
15009
|
-
* @throws {RequiredError}
|
|
15010
|
-
*/
|
|
15011
|
-
postSendSupplierEmail(id: number, batchId: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15012
|
-
/**
|
|
15013
|
-
* Split Order
|
|
15014
|
-
* @summary Split Order
|
|
15015
|
-
* @param {number} id Order ID
|
|
15016
|
-
* @param {PostSplitOrderRequest} [postSplitOrderRequest]
|
|
15017
|
-
* @param {*} [options] Override http request option.
|
|
15018
|
-
* @throws {RequiredError}
|
|
15019
|
-
*/
|
|
15020
|
-
postSplitOrder(id: number, postSplitOrderRequest?: PostSplitOrderRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
15021
|
-
/**
|
|
15022
|
-
* Allocate Items To Supplier
|
|
15023
|
-
* @summary Allocate Items To Supplier
|
|
15024
|
-
* @param {number} id Order ID
|
|
15025
|
-
* @param {number} supplierId Supplier ID
|
|
15026
|
-
* @param {PutAllocateItemsRequest} [putAllocateItemsRequest]
|
|
15027
|
-
* @param {*} [options] Override http request option.
|
|
15028
|
-
* @throws {RequiredError}
|
|
15029
|
-
*/
|
|
15030
|
-
putAllocateItems(id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15031
|
-
/**
|
|
15032
|
-
* Update Shipment (Admin)
|
|
15033
|
-
* @summary Update Shipment (Admin)
|
|
15034
|
-
* @param {number} id Order ID
|
|
15035
|
-
* @param {number} batchId Batch ID
|
|
15036
|
-
* @param {number} shipmentId Shipment ID
|
|
15037
|
-
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
15038
|
-
* @param {*} [options] Override http request option.
|
|
15039
|
-
* @throws {RequiredError}
|
|
15040
|
-
*/
|
|
15041
|
-
putCreateShipment(id: number, batchId: number, shipmentId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShipmentModel>;
|
|
15042
13576
|
/**
|
|
15043
13577
|
* Update An Order (Admin)
|
|
15044
13578
|
* @summary Update An Order (Admin)
|
|
@@ -15067,17 +13601,6 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
15067
13601
|
* @extends {BaseAPI}
|
|
15068
13602
|
*/
|
|
15069
13603
|
export declare class OrdersApi extends BaseAPI {
|
|
15070
|
-
/**
|
|
15071
|
-
* Delete Shipment (Admin)
|
|
15072
|
-
* @summary Delete Shipment (Admin)
|
|
15073
|
-
* @param {number} id Order ID
|
|
15074
|
-
* @param {number} batchId Batch ID
|
|
15075
|
-
* @param {number} shipmentId Shipment ID
|
|
15076
|
-
* @param {*} [options] Override http request option.
|
|
15077
|
-
* @throws {RequiredError}
|
|
15078
|
-
* @memberof OrdersApi
|
|
15079
|
-
*/
|
|
15080
|
-
deleteCreateShipment(id: number, batchId: number, shipmentId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
15081
13604
|
/**
|
|
15082
13605
|
* Delete Orders (Beta)
|
|
15083
13606
|
* @summary Delete Orders (Beta)
|
|
@@ -15096,15 +13619,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
15096
13619
|
* @memberof OrdersApi
|
|
15097
13620
|
*/
|
|
15098
13621
|
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminOrderRequestDTO, any, {}>>;
|
|
15099
|
-
/**
|
|
15100
|
-
* Get Order Details (Admin)
|
|
15101
|
-
* @summary Get Order Details (Admin)
|
|
15102
|
-
* @param {number} id Order ID
|
|
15103
|
-
* @param {*} [options] Override http request option.
|
|
15104
|
-
* @throws {RequiredError}
|
|
15105
|
-
* @memberof OrdersApi
|
|
15106
|
-
*/
|
|
15107
|
-
getGetAdminOrderDetails(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderDetailsDTO, any, {}>>;
|
|
15108
13622
|
/**
|
|
15109
13623
|
* Get Editable Order (Beta)
|
|
15110
13624
|
* @summary Get Editable Order (Beta)
|
|
@@ -15114,15 +13628,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
15114
13628
|
* @memberof OrdersApi
|
|
15115
13629
|
*/
|
|
15116
13630
|
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DetailedOrderRequestDTO, any, {}>>;
|
|
15117
|
-
/**
|
|
15118
|
-
* Download Order PDF
|
|
15119
|
-
* @summary Download Order PDF
|
|
15120
|
-
* @param {number} id Order ID
|
|
15121
|
-
* @param {*} [options] Override http request option.
|
|
15122
|
-
* @throws {RequiredError}
|
|
15123
|
-
* @memberof OrdersApi
|
|
15124
|
-
*/
|
|
15125
|
-
getGetOrderPdf(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
|
|
15126
13631
|
/**
|
|
15127
13632
|
* Get Orders (Beta)
|
|
15128
13633
|
* @summary Get Orders (Beta)
|
|
@@ -15138,16 +13643,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
15138
13643
|
* @memberof OrdersApi
|
|
15139
13644
|
*/
|
|
15140
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, {}>>;
|
|
15141
|
-
/**
|
|
15142
|
-
* Add Order Note
|
|
15143
|
-
* @summary Add Order Note
|
|
15144
|
-
* @param {number} id Order ID
|
|
15145
|
-
* @param {PostAddOrderNoteRequest} [postAddOrderNoteRequest]
|
|
15146
|
-
* @param {*} [options] Override http request option.
|
|
15147
|
-
* @throws {RequiredError}
|
|
15148
|
-
* @memberof OrdersApi
|
|
15149
|
-
*/
|
|
15150
|
-
postAddOrderNote(id: number, postAddOrderNoteRequest?: PostAddOrderNoteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
15151
13646
|
/**
|
|
15152
13647
|
* Create An Order (Admin)
|
|
15153
13648
|
* @summary Create An Order (Admin)
|
|
@@ -15158,28 +13653,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
15158
13653
|
* @memberof OrdersApi
|
|
15159
13654
|
*/
|
|
15160
13655
|
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
15161
|
-
/**
|
|
15162
|
-
* Create Shipping Consignment
|
|
15163
|
-
* @summary Create Shipping Consignment
|
|
15164
|
-
* @param {number} id Order ID
|
|
15165
|
-
* @param {number} shipmentId Shipment ID
|
|
15166
|
-
* @param {ShippingRequestDTO} [shippingRequestDTO] Shipping Request
|
|
15167
|
-
* @param {*} [options] Override http request option.
|
|
15168
|
-
* @throws {RequiredError}
|
|
15169
|
-
* @memberof OrdersApi
|
|
15170
|
-
*/
|
|
15171
|
-
postCreateConsignment(id: number, shipmentId: number, shippingRequestDTO?: ShippingRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShipmentModel, any, {}>>;
|
|
15172
|
-
/**
|
|
15173
|
-
* Create Shipment (Admin)
|
|
15174
|
-
* @summary Create Shipment (Admin)
|
|
15175
|
-
* @param {number} id Order ID
|
|
15176
|
-
* @param {number} batchId Batch ID
|
|
15177
|
-
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
15178
|
-
* @param {*} [options] Override http request option.
|
|
15179
|
-
* @throws {RequiredError}
|
|
15180
|
-
* @memberof OrdersApi
|
|
15181
|
-
*/
|
|
15182
|
-
postCreateShipment(id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShipmentModel, any, {}>>;
|
|
15183
13656
|
/**
|
|
15184
13657
|
* Create An Order (Beta)
|
|
15185
13658
|
* @summary Create An Order (Beta)
|
|
@@ -15190,80 +13663,6 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
15190
13663
|
* @memberof OrdersApi
|
|
15191
13664
|
*/
|
|
15192
13665
|
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
15193
|
-
/**
|
|
15194
|
-
* Issue Credit (Admin)
|
|
15195
|
-
* @summary Issue Credit (Admin)
|
|
15196
|
-
* @param {number} id Order ID
|
|
15197
|
-
* @param {CreditNoteDTO} [creditNoteDTO] Credit Request
|
|
15198
|
-
* @param {*} [options] Override http request option.
|
|
15199
|
-
* @throws {RequiredError}
|
|
15200
|
-
* @memberof OrdersApi
|
|
15201
|
-
*/
|
|
15202
|
-
postIssueCredit(id: number, creditNoteDTO?: CreditNoteDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreditNoteModel, any, {}>>;
|
|
15203
|
-
/**
|
|
15204
|
-
* Print Shipment Label
|
|
15205
|
-
* @summary Print Shipment Label
|
|
15206
|
-
* @param {number} id Order ID
|
|
15207
|
-
* @param {number} shipmentId Shipment ID
|
|
15208
|
-
* @param {PostPrintShippingLabelPrinterEnum} printer Printer
|
|
15209
|
-
* @param {*} [options] Override http request option.
|
|
15210
|
-
* @throws {RequiredError}
|
|
15211
|
-
* @memberof OrdersApi
|
|
15212
|
-
*/
|
|
15213
|
-
postPrintShippingLabel(id: number, shipmentId: number, printer: PostPrintShippingLabelPrinterEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
|
|
15214
|
-
/**
|
|
15215
|
-
* Send Order Email
|
|
15216
|
-
* @summary Send Order Email
|
|
15217
|
-
* @param {number} id Order ID
|
|
15218
|
-
* @param {string} email Email Address
|
|
15219
|
-
* @param {*} [options] Override http request option.
|
|
15220
|
-
* @throws {RequiredError}
|
|
15221
|
-
* @memberof OrdersApi
|
|
15222
|
-
*/
|
|
15223
|
-
postSendOrderEmail(id: number, email: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
15224
|
-
/**
|
|
15225
|
-
* Send Supplier Email
|
|
15226
|
-
* @summary Send Supplier Email
|
|
15227
|
-
* @param {number} id Order ID
|
|
15228
|
-
* @param {number} batchId Batch ID
|
|
15229
|
-
* @param {*} [options] Override http request option.
|
|
15230
|
-
* @throws {RequiredError}
|
|
15231
|
-
* @memberof OrdersApi
|
|
15232
|
-
*/
|
|
15233
|
-
postSendSupplierEmail(id: number, batchId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
15234
|
-
/**
|
|
15235
|
-
* Split Order
|
|
15236
|
-
* @summary Split Order
|
|
15237
|
-
* @param {number} id Order ID
|
|
15238
|
-
* @param {PostSplitOrderRequest} [postSplitOrderRequest]
|
|
15239
|
-
* @param {*} [options] Override http request option.
|
|
15240
|
-
* @throws {RequiredError}
|
|
15241
|
-
* @memberof OrdersApi
|
|
15242
|
-
*/
|
|
15243
|
-
postSplitOrder(id: number, postSplitOrderRequest?: PostSplitOrderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
15244
|
-
/**
|
|
15245
|
-
* Allocate Items To Supplier
|
|
15246
|
-
* @summary Allocate Items To Supplier
|
|
15247
|
-
* @param {number} id Order ID
|
|
15248
|
-
* @param {number} supplierId Supplier ID
|
|
15249
|
-
* @param {PutAllocateItemsRequest} [putAllocateItemsRequest]
|
|
15250
|
-
* @param {*} [options] Override http request option.
|
|
15251
|
-
* @throws {RequiredError}
|
|
15252
|
-
* @memberof OrdersApi
|
|
15253
|
-
*/
|
|
15254
|
-
putAllocateItems(id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
15255
|
-
/**
|
|
15256
|
-
* Update Shipment (Admin)
|
|
15257
|
-
* @summary Update Shipment (Admin)
|
|
15258
|
-
* @param {number} id Order ID
|
|
15259
|
-
* @param {number} batchId Batch ID
|
|
15260
|
-
* @param {number} shipmentId Shipment ID
|
|
15261
|
-
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
15262
|
-
* @param {*} [options] Override http request option.
|
|
15263
|
-
* @throws {RequiredError}
|
|
15264
|
-
* @memberof OrdersApi
|
|
15265
|
-
*/
|
|
15266
|
-
putCreateShipment(id: number, batchId: number, shipmentId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShipmentModel, any, {}>>;
|
|
15267
13666
|
/**
|
|
15268
13667
|
* Update An Order (Admin)
|
|
15269
13668
|
* @summary Update An Order (Admin)
|
|
@@ -15307,15 +13706,6 @@ export declare const GetGetOrdersFilterEnum: {
|
|
|
15307
13706
|
readonly BackOrders: "BACK_ORDERS";
|
|
15308
13707
|
};
|
|
15309
13708
|
export type GetGetOrdersFilterEnum = typeof GetGetOrdersFilterEnum[keyof typeof GetGetOrdersFilterEnum];
|
|
15310
|
-
/**
|
|
15311
|
-
* @export
|
|
15312
|
-
*/
|
|
15313
|
-
export declare const PostPrintShippingLabelPrinterEnum: {
|
|
15314
|
-
readonly NUMBER_1: 1;
|
|
15315
|
-
readonly NUMBER_2: 2;
|
|
15316
|
-
readonly NUMBER_3: 3;
|
|
15317
|
-
};
|
|
15318
|
-
export type PostPrintShippingLabelPrinterEnum = typeof PostPrintShippingLabelPrinterEnum[keyof typeof PostPrintShippingLabelPrinterEnum];
|
|
15319
13709
|
/**
|
|
15320
13710
|
* PricingApi - axios parameter creator
|
|
15321
13711
|
* @export
|