yellowgrid-api-ts 3.2.60 → 3.2.62-dev.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.openapi-generator/FILES +249 -229
- package/README.md +36 -1
- package/api.ts +2459 -215
- package/base.ts +2 -2
- package/common.ts +1 -1
- package/config.json +3 -3
- package/configuration.ts +1 -1
- package/dist/api.d.ts +1767 -106
- package/dist/api.js +1487 -107
- package/dist/base.d.ts +1 -1
- package/dist/base.js +2 -2
- 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/dist/models/CourierEnum.d.ts +18 -0
- package/dist/models/CourierEnum.js +20 -0
- package/dist/models/PrinterEnum.d.ts +18 -0
- package/dist/models/PrinterEnum.js +20 -0
- package/docs/AccountsApi.md +1 -1
- package/docs/BatchDTO.md +59 -0
- package/docs/CRMApi.md +1 -1
- package/docs/Class3CXApi.md +1 -1
- package/docs/Class3CXInstallationWizardApi.md +1 -1
- package/docs/Class3CXInstallationsApi.md +1 -1
- package/docs/Class3CXIntegrationsApi.md +1 -1
- package/docs/Class3CXMultiTenantApi.md +1 -1
- package/docs/CreditNoteDTO.md +21 -0
- package/docs/CreditNoteEntity.md +29 -0
- package/docs/CreditNoteItemDTO.md +25 -0
- package/docs/CreditNoteItemEntity.md +29 -0
- package/docs/CreditNoteModel.md +29 -0
- package/docs/MyPBXToolsApi.md +1 -1
- package/docs/OAuth20Api.md +1 -1
- package/docs/OrderDetailsDTO.md +63 -0
- package/docs/OrderItemDTO.md +53 -0
- package/docs/OrderedItemModel.md +47 -0
- package/docs/OrdersApi.md +857 -23
- package/docs/PostAddOrderNoteRequest.md +20 -0
- package/docs/PostSplitOrderRequest.md +20 -0
- package/docs/PricingApi.md +1 -1
- package/docs/PrinterEntity.md +29 -0
- package/docs/ProductsApi.md +1 -1
- package/docs/ProvisioningApi.md +1 -1
- package/docs/PutAllocateItemsRequest.md +20 -0
- package/docs/PutAllocateItemsRequestItemsInner.md +22 -0
- package/docs/SIPTrunksApi.md +1 -1
- package/docs/SMSApi.md +1 -1
- package/docs/ServicesApi.md +1 -1
- package/docs/ShipmentDTO.md +31 -0
- package/docs/ShipmentItemDTO.md +23 -0
- package/docs/ShipmentItemModel.md +29 -0
- package/docs/ShipmentModel.md +43 -0
- package/docs/ShipmentRequestDTO.md +31 -0
- package/docs/ShippingApi.md +1 -1
- package/docs/ShippingRequestDTO.md +24 -0
- package/docs/StockManagementApi.md +1 -1
- package/docs/SupplierModel.md +37 -0
- package/docs/SystemApi.md +1 -1
- package/docs/TicketsApi.md +1 -1
- package/docs/WebhooksApi.md +1 -1
- package/getEnums.php +31 -31
- package/hs_err_pid58424.log +247 -0
- package/index.ts +1 -1
- package/models/CourierEnum.ts +19 -0
- package/models/PrinterEnum.ts +19 -0
- package/package.json +1 -1
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: `https://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'?: AuditLogEntityActionEnum;
|
|
1020
1020
|
/**
|
|
1021
1021
|
* type
|
|
1022
1022
|
* @type {string}
|
|
1023
1023
|
* @memberof AuditLogEntity
|
|
1024
1024
|
*/
|
|
1025
|
-
'type'?:
|
|
1025
|
+
'type'?: AuditLogEntityTypeEnum;
|
|
1026
1026
|
/**
|
|
1027
1027
|
* identifier
|
|
1028
1028
|
* @type {string}
|
|
@@ -1060,6 +1060,89 @@ 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];
|
|
1063
1146
|
/**
|
|
1064
1147
|
* OAuth Auth Code Response
|
|
1065
1148
|
* @export
|
|
@@ -1123,6 +1206,133 @@ export interface BasicProductDTO {
|
|
|
1123
1206
|
*/
|
|
1124
1207
|
'title'?: string;
|
|
1125
1208
|
}
|
|
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
|
+
*
|
|
1331
|
+
* @type {SupplierModel}
|
|
1332
|
+
* @memberof BatchDTO
|
|
1333
|
+
*/
|
|
1334
|
+
'supplier'?: SupplierModel;
|
|
1335
|
+
}
|
|
1126
1336
|
/**
|
|
1127
1337
|
* BatchesEntity
|
|
1128
1338
|
* @export
|
|
@@ -1678,6 +1888,155 @@ export interface CreditAccountEntity {
|
|
|
1678
1888
|
*/
|
|
1679
1889
|
'prizePromo'?: boolean;
|
|
1680
1890
|
}
|
|
1891
|
+
/**
|
|
1892
|
+
* Credit Note
|
|
1893
|
+
* @export
|
|
1894
|
+
* @interface CreditNoteDTO
|
|
1895
|
+
*/
|
|
1896
|
+
export interface CreditNoteDTO {
|
|
1897
|
+
/**
|
|
1898
|
+
* Items
|
|
1899
|
+
* @type {Array<CreditNoteItemDTO>}
|
|
1900
|
+
* @memberof CreditNoteDTO
|
|
1901
|
+
*/
|
|
1902
|
+
'items'?: Array<CreditNoteItemDTO>;
|
|
1903
|
+
}
|
|
1904
|
+
/**
|
|
1905
|
+
* CreditNotesEntity
|
|
1906
|
+
* @export
|
|
1907
|
+
* @interface CreditNoteEntity
|
|
1908
|
+
*/
|
|
1909
|
+
export interface CreditNoteEntity {
|
|
1910
|
+
/**
|
|
1911
|
+
* id
|
|
1912
|
+
* @type {number}
|
|
1913
|
+
* @memberof CreditNoteEntity
|
|
1914
|
+
*/
|
|
1915
|
+
'id'?: number;
|
|
1916
|
+
/**
|
|
1917
|
+
* orderId
|
|
1918
|
+
* @type {number}
|
|
1919
|
+
* @memberof CreditNoteEntity
|
|
1920
|
+
*/
|
|
1921
|
+
'orderId'?: number;
|
|
1922
|
+
/**
|
|
1923
|
+
* transactionId
|
|
1924
|
+
* @type {string}
|
|
1925
|
+
* @memberof CreditNoteEntity
|
|
1926
|
+
*/
|
|
1927
|
+
'transactionId'?: string;
|
|
1928
|
+
/**
|
|
1929
|
+
* amount
|
|
1930
|
+
* @type {number}
|
|
1931
|
+
* @memberof CreditNoteEntity
|
|
1932
|
+
*/
|
|
1933
|
+
'amount'?: number;
|
|
1934
|
+
/**
|
|
1935
|
+
* timestamp
|
|
1936
|
+
* @type {string}
|
|
1937
|
+
* @memberof CreditNoteEntity
|
|
1938
|
+
*/
|
|
1939
|
+
'timestamp'?: string;
|
|
1940
|
+
}
|
|
1941
|
+
/**
|
|
1942
|
+
* Credit Note Item
|
|
1943
|
+
* @export
|
|
1944
|
+
* @interface CreditNoteItemDTO
|
|
1945
|
+
*/
|
|
1946
|
+
export interface CreditNoteItemDTO {
|
|
1947
|
+
/**
|
|
1948
|
+
* Item ID
|
|
1949
|
+
* @type {number}
|
|
1950
|
+
* @memberof CreditNoteItemDTO
|
|
1951
|
+
*/
|
|
1952
|
+
'itemId'?: number;
|
|
1953
|
+
/**
|
|
1954
|
+
* Quantity
|
|
1955
|
+
* @type {number}
|
|
1956
|
+
* @memberof CreditNoteItemDTO
|
|
1957
|
+
*/
|
|
1958
|
+
'quantity'?: number | null;
|
|
1959
|
+
/**
|
|
1960
|
+
* Amount
|
|
1961
|
+
* @type {number}
|
|
1962
|
+
* @memberof CreditNoteItemDTO
|
|
1963
|
+
*/
|
|
1964
|
+
'amount'?: number | null;
|
|
1965
|
+
}
|
|
1966
|
+
/**
|
|
1967
|
+
* CreditNotesItemsEntity
|
|
1968
|
+
* @export
|
|
1969
|
+
* @interface CreditNoteItemEntity
|
|
1970
|
+
*/
|
|
1971
|
+
export interface CreditNoteItemEntity {
|
|
1972
|
+
/**
|
|
1973
|
+
* id
|
|
1974
|
+
* @type {number}
|
|
1975
|
+
* @memberof CreditNoteItemEntity
|
|
1976
|
+
*/
|
|
1977
|
+
'id'?: number;
|
|
1978
|
+
/**
|
|
1979
|
+
* creditNoteId
|
|
1980
|
+
* @type {number}
|
|
1981
|
+
* @memberof CreditNoteItemEntity
|
|
1982
|
+
*/
|
|
1983
|
+
'creditNoteId'?: number;
|
|
1984
|
+
/**
|
|
1985
|
+
* orderId
|
|
1986
|
+
* @type {number}
|
|
1987
|
+
* @memberof CreditNoteItemEntity
|
|
1988
|
+
*/
|
|
1989
|
+
'orderId'?: number;
|
|
1990
|
+
/**
|
|
1991
|
+
* itemId
|
|
1992
|
+
* @type {number}
|
|
1993
|
+
* @memberof CreditNoteItemEntity
|
|
1994
|
+
*/
|
|
1995
|
+
'itemId'?: number;
|
|
1996
|
+
/**
|
|
1997
|
+
* amount
|
|
1998
|
+
* @type {number}
|
|
1999
|
+
* @memberof CreditNoteItemEntity
|
|
2000
|
+
*/
|
|
2001
|
+
'amount'?: number;
|
|
2002
|
+
}
|
|
2003
|
+
/**
|
|
2004
|
+
* Credit Note Model
|
|
2005
|
+
* @export
|
|
2006
|
+
* @interface CreditNoteModel
|
|
2007
|
+
*/
|
|
2008
|
+
export interface CreditNoteModel {
|
|
2009
|
+
/**
|
|
2010
|
+
* id
|
|
2011
|
+
* @type {number}
|
|
2012
|
+
* @memberof CreditNoteModel
|
|
2013
|
+
*/
|
|
2014
|
+
'id'?: number;
|
|
2015
|
+
/**
|
|
2016
|
+
* orderId
|
|
2017
|
+
* @type {number}
|
|
2018
|
+
* @memberof CreditNoteModel
|
|
2019
|
+
*/
|
|
2020
|
+
'orderId'?: number;
|
|
2021
|
+
/**
|
|
2022
|
+
* transactionId
|
|
2023
|
+
* @type {string}
|
|
2024
|
+
* @memberof CreditNoteModel
|
|
2025
|
+
*/
|
|
2026
|
+
'transactionId'?: string;
|
|
2027
|
+
/**
|
|
2028
|
+
* amount
|
|
2029
|
+
* @type {number}
|
|
2030
|
+
* @memberof CreditNoteModel
|
|
2031
|
+
*/
|
|
2032
|
+
'amount'?: number;
|
|
2033
|
+
/**
|
|
2034
|
+
* timestamp
|
|
2035
|
+
* @type {string}
|
|
2036
|
+
* @memberof CreditNoteModel
|
|
2037
|
+
*/
|
|
2038
|
+
'timestamp'?: string;
|
|
2039
|
+
}
|
|
1681
2040
|
/**
|
|
1682
2041
|
* CRM Contact
|
|
1683
2042
|
* @export
|
|
@@ -3389,7 +3748,7 @@ export interface ItemDTO {
|
|
|
3389
3748
|
* @type {Array<TcxSbcDTO>}
|
|
3390
3749
|
* @memberof ItemDTO
|
|
3391
3750
|
*/
|
|
3392
|
-
'sbcs'?: Array<TcxSbcDTO
|
|
3751
|
+
'sbcs'?: Array<TcxSbcDTO>;
|
|
3393
3752
|
/**
|
|
3394
3753
|
* Readonly
|
|
3395
3754
|
* @type {boolean}
|
|
@@ -3771,65 +4130,204 @@ export interface OfflineInstancesEntity {
|
|
|
3771
4130
|
'alerted'?: number;
|
|
3772
4131
|
}
|
|
3773
4132
|
/**
|
|
3774
|
-
*
|
|
4133
|
+
* Order Details
|
|
3775
4134
|
* @export
|
|
3776
|
-
* @interface
|
|
4135
|
+
* @interface OrderDetailsDTO
|
|
3777
4136
|
*/
|
|
3778
|
-
export interface
|
|
4137
|
+
export interface OrderDetailsDTO {
|
|
3779
4138
|
/**
|
|
3780
|
-
*
|
|
4139
|
+
* ID
|
|
3781
4140
|
* @type {number}
|
|
3782
|
-
* @memberof
|
|
4141
|
+
* @memberof OrderDetailsDTO
|
|
3783
4142
|
*/
|
|
3784
4143
|
'id'?: number;
|
|
3785
4144
|
/**
|
|
3786
|
-
*
|
|
4145
|
+
* Reference
|
|
3787
4146
|
* @type {string}
|
|
3788
|
-
* @memberof
|
|
3789
|
-
*/
|
|
3790
|
-
'reference'?: string;
|
|
3791
|
-
/**
|
|
3792
|
-
* sourceId
|
|
3793
|
-
* @type {number}
|
|
3794
|
-
* @memberof OrderEntity
|
|
4147
|
+
* @memberof OrderDetailsDTO
|
|
3795
4148
|
*/
|
|
3796
|
-
'
|
|
4149
|
+
'reference'?: string | null;
|
|
3797
4150
|
/**
|
|
3798
|
-
*
|
|
4151
|
+
* Invoice Number
|
|
3799
4152
|
* @type {string}
|
|
3800
|
-
* @memberof
|
|
4153
|
+
* @memberof OrderDetailsDTO
|
|
3801
4154
|
*/
|
|
3802
4155
|
'invoiceNumber'?: string;
|
|
3803
4156
|
/**
|
|
3804
|
-
*
|
|
4157
|
+
* Invoice ID
|
|
3805
4158
|
* @type {string}
|
|
3806
|
-
* @memberof
|
|
4159
|
+
* @memberof OrderDetailsDTO
|
|
3807
4160
|
*/
|
|
3808
4161
|
'invoiceId'?: string | null;
|
|
3809
4162
|
/**
|
|
3810
|
-
*
|
|
3811
|
-
* @type {number}
|
|
3812
|
-
* @memberof OrderEntity
|
|
3813
|
-
*/
|
|
3814
|
-
'customerId'?: number;
|
|
3815
|
-
/**
|
|
3816
|
-
* orderDate
|
|
4163
|
+
* Date Time
|
|
3817
4164
|
* @type {string}
|
|
3818
|
-
* @memberof
|
|
4165
|
+
* @memberof OrderDetailsDTO
|
|
3819
4166
|
*/
|
|
3820
4167
|
'orderDate'?: string;
|
|
3821
4168
|
/**
|
|
3822
|
-
*
|
|
3823
|
-
* @type {
|
|
3824
|
-
* @memberof
|
|
4169
|
+
* Paid
|
|
4170
|
+
* @type {boolean}
|
|
4171
|
+
* @memberof OrderDetailsDTO
|
|
3825
4172
|
*/
|
|
3826
|
-
'
|
|
4173
|
+
'paid'?: boolean;
|
|
3827
4174
|
/**
|
|
3828
|
-
*
|
|
3829
|
-
* @type {
|
|
3830
|
-
* @memberof
|
|
4175
|
+
* Complete
|
|
4176
|
+
* @type {boolean}
|
|
4177
|
+
* @memberof OrderDetailsDTO
|
|
3831
4178
|
*/
|
|
3832
|
-
'
|
|
4179
|
+
'complete'?: boolean;
|
|
4180
|
+
/**
|
|
4181
|
+
* Quote
|
|
4182
|
+
* @type {boolean}
|
|
4183
|
+
* @memberof OrderDetailsDTO
|
|
4184
|
+
*/
|
|
4185
|
+
'quote'?: boolean;
|
|
4186
|
+
/**
|
|
4187
|
+
*
|
|
4188
|
+
* @type {AccountSummaryDTO}
|
|
4189
|
+
* @memberof OrderDetailsDTO
|
|
4190
|
+
*/
|
|
4191
|
+
'customer'?: AccountSummaryDTO;
|
|
4192
|
+
/**
|
|
4193
|
+
*
|
|
4194
|
+
* @type {AddressModel}
|
|
4195
|
+
* @memberof OrderDetailsDTO
|
|
4196
|
+
*/
|
|
4197
|
+
'shippingAddress'?: AddressModel;
|
|
4198
|
+
/**
|
|
4199
|
+
* Items
|
|
4200
|
+
* @type {Array<ItemDTO>}
|
|
4201
|
+
* @memberof OrderDetailsDTO
|
|
4202
|
+
*/
|
|
4203
|
+
'items'?: Array<ItemDTO>;
|
|
4204
|
+
/**
|
|
4205
|
+
* Carriage Charge
|
|
4206
|
+
* @type {number}
|
|
4207
|
+
* @memberof OrderDetailsDTO
|
|
4208
|
+
*/
|
|
4209
|
+
'carriageCharge'?: number;
|
|
4210
|
+
/**
|
|
4211
|
+
* Fulfillable
|
|
4212
|
+
* @type {boolean}
|
|
4213
|
+
* @memberof OrderDetailsDTO
|
|
4214
|
+
*/
|
|
4215
|
+
'fulfillable'?: boolean | null;
|
|
4216
|
+
/**
|
|
4217
|
+
* Provisioning URL
|
|
4218
|
+
* @type {string}
|
|
4219
|
+
* @memberof OrderDetailsDTO
|
|
4220
|
+
*/
|
|
4221
|
+
'provisioningUrl'?: string | null;
|
|
4222
|
+
/**
|
|
4223
|
+
*
|
|
4224
|
+
* @type {ShippingServiceDTO}
|
|
4225
|
+
* @memberof OrderDetailsDTO
|
|
4226
|
+
*/
|
|
4227
|
+
'shippingService'?: ShippingServiceDTO;
|
|
4228
|
+
/**
|
|
4229
|
+
* Readonly
|
|
4230
|
+
* @type {boolean}
|
|
4231
|
+
* @memberof OrderDetailsDTO
|
|
4232
|
+
*/
|
|
4233
|
+
'readonly'?: boolean;
|
|
4234
|
+
/**
|
|
4235
|
+
* Detailed Items
|
|
4236
|
+
* @type {Array<OrderItemDTO>}
|
|
4237
|
+
* @memberof OrderDetailsDTO
|
|
4238
|
+
*/
|
|
4239
|
+
'detailedItems'?: Array<OrderItemDTO>;
|
|
4240
|
+
/**
|
|
4241
|
+
* Batches
|
|
4242
|
+
* @type {Array<BatchDTO>}
|
|
4243
|
+
* @memberof OrderDetailsDTO
|
|
4244
|
+
*/
|
|
4245
|
+
'batches'?: Array<BatchDTO>;
|
|
4246
|
+
/**
|
|
4247
|
+
* Audit Log
|
|
4248
|
+
* @type {Array<AuditLogEntity>}
|
|
4249
|
+
* @memberof OrderDetailsDTO
|
|
4250
|
+
*/
|
|
4251
|
+
'logEntries'?: Array<AuditLogEntity>;
|
|
4252
|
+
/**
|
|
4253
|
+
* Card Payment Link
|
|
4254
|
+
* @type {string}
|
|
4255
|
+
* @memberof OrderDetailsDTO
|
|
4256
|
+
*/
|
|
4257
|
+
'paymentLink'?: string | null;
|
|
4258
|
+
/**
|
|
4259
|
+
* Credits
|
|
4260
|
+
* @type {Array<CreditNoteModel>}
|
|
4261
|
+
* @memberof OrderDetailsDTO
|
|
4262
|
+
*/
|
|
4263
|
+
'credits'?: Array<CreditNoteModel>;
|
|
4264
|
+
/**
|
|
4265
|
+
* Customer Email
|
|
4266
|
+
* @type {string}
|
|
4267
|
+
* @memberof OrderDetailsDTO
|
|
4268
|
+
*/
|
|
4269
|
+
'customerEmail'?: string;
|
|
4270
|
+
}
|
|
4271
|
+
/**
|
|
4272
|
+
* OrdersEntity
|
|
4273
|
+
* @export
|
|
4274
|
+
* @interface OrderEntity
|
|
4275
|
+
*/
|
|
4276
|
+
export interface OrderEntity {
|
|
4277
|
+
/**
|
|
4278
|
+
* id
|
|
4279
|
+
* @type {number}
|
|
4280
|
+
* @memberof OrderEntity
|
|
4281
|
+
*/
|
|
4282
|
+
'id'?: number;
|
|
4283
|
+
/**
|
|
4284
|
+
* externalId
|
|
4285
|
+
* @type {string}
|
|
4286
|
+
* @memberof OrderEntity
|
|
4287
|
+
*/
|
|
4288
|
+
'reference'?: string;
|
|
4289
|
+
/**
|
|
4290
|
+
* sourceId
|
|
4291
|
+
* @type {number}
|
|
4292
|
+
* @memberof OrderEntity
|
|
4293
|
+
*/
|
|
4294
|
+
'sourceId'?: number;
|
|
4295
|
+
/**
|
|
4296
|
+
* sageInv
|
|
4297
|
+
* @type {string}
|
|
4298
|
+
* @memberof OrderEntity
|
|
4299
|
+
*/
|
|
4300
|
+
'invoiceNumber'?: string;
|
|
4301
|
+
/**
|
|
4302
|
+
* invoiceId
|
|
4303
|
+
* @type {string}
|
|
4304
|
+
* @memberof OrderEntity
|
|
4305
|
+
*/
|
|
4306
|
+
'invoiceId'?: string | null;
|
|
4307
|
+
/**
|
|
4308
|
+
* creditAccountId
|
|
4309
|
+
* @type {number}
|
|
4310
|
+
* @memberof OrderEntity
|
|
4311
|
+
*/
|
|
4312
|
+
'customerId'?: number;
|
|
4313
|
+
/**
|
|
4314
|
+
* orderDate
|
|
4315
|
+
* @type {string}
|
|
4316
|
+
* @memberof OrderEntity
|
|
4317
|
+
*/
|
|
4318
|
+
'orderDate'?: string;
|
|
4319
|
+
/**
|
|
4320
|
+
* orderPostedDate
|
|
4321
|
+
* @type {string}
|
|
4322
|
+
* @memberof OrderEntity
|
|
4323
|
+
*/
|
|
4324
|
+
'orderPostedDate'?: string;
|
|
4325
|
+
/**
|
|
4326
|
+
* buyerEmail
|
|
4327
|
+
* @type {string}
|
|
4328
|
+
* @memberof OrderEntity
|
|
4329
|
+
*/
|
|
4330
|
+
'buyerEmail'?: string;
|
|
3833
4331
|
/**
|
|
3834
4332
|
* buyerPhone
|
|
3835
4333
|
* @type {string}
|
|
@@ -4125,6 +4623,115 @@ export interface OrderEntity {
|
|
|
4125
4623
|
*/
|
|
4126
4624
|
'fulfillable'?: boolean | null;
|
|
4127
4625
|
}
|
|
4626
|
+
/**
|
|
4627
|
+
* Order Item Details
|
|
4628
|
+
* @export
|
|
4629
|
+
* @interface OrderItemDTO
|
|
4630
|
+
*/
|
|
4631
|
+
export interface OrderItemDTO {
|
|
4632
|
+
/**
|
|
4633
|
+
* SKU
|
|
4634
|
+
* @type {string}
|
|
4635
|
+
* @memberof OrderItemDTO
|
|
4636
|
+
*/
|
|
4637
|
+
'sku'?: string;
|
|
4638
|
+
/**
|
|
4639
|
+
* Quantity
|
|
4640
|
+
* @type {number}
|
|
4641
|
+
* @memberof OrderItemDTO
|
|
4642
|
+
*/
|
|
4643
|
+
'quantity'?: number;
|
|
4644
|
+
/**
|
|
4645
|
+
* ID
|
|
4646
|
+
* @type {number}
|
|
4647
|
+
* @memberof OrderItemDTO
|
|
4648
|
+
*/
|
|
4649
|
+
'id'?: number | null;
|
|
4650
|
+
/**
|
|
4651
|
+
* Order ID
|
|
4652
|
+
* @type {number}
|
|
4653
|
+
* @memberof OrderItemDTO
|
|
4654
|
+
*/
|
|
4655
|
+
'orderId'?: number | null;
|
|
4656
|
+
/**
|
|
4657
|
+
* Title
|
|
4658
|
+
* @type {string}
|
|
4659
|
+
* @memberof OrderItemDTO
|
|
4660
|
+
*/
|
|
4661
|
+
'title'?: string;
|
|
4662
|
+
/**
|
|
4663
|
+
* Price
|
|
4664
|
+
* @type {number}
|
|
4665
|
+
* @memberof OrderItemDTO
|
|
4666
|
+
*/
|
|
4667
|
+
'price'?: number;
|
|
4668
|
+
/**
|
|
4669
|
+
* 3CX Licence Key
|
|
4670
|
+
* @type {string}
|
|
4671
|
+
* @memberof OrderItemDTO
|
|
4672
|
+
*/
|
|
4673
|
+
'licenceKey'?: string | null;
|
|
4674
|
+
/**
|
|
4675
|
+
* Date Time
|
|
4676
|
+
* @type {string}
|
|
4677
|
+
* @memberof OrderItemDTO
|
|
4678
|
+
*/
|
|
4679
|
+
'licenceExpiry'?: string;
|
|
4680
|
+
/**
|
|
4681
|
+
* Date Time
|
|
4682
|
+
* @type {string}
|
|
4683
|
+
* @memberof OrderItemDTO
|
|
4684
|
+
*/
|
|
4685
|
+
'processDate'?: string;
|
|
4686
|
+
/**
|
|
4687
|
+
* 3CX Hosting
|
|
4688
|
+
* @type {boolean}
|
|
4689
|
+
* @memberof OrderItemDTO
|
|
4690
|
+
*/
|
|
4691
|
+
'hosting'?: boolean | null;
|
|
4692
|
+
/**
|
|
4693
|
+
* Promo Item
|
|
4694
|
+
* @type {boolean}
|
|
4695
|
+
* @memberof OrderItemDTO
|
|
4696
|
+
*/
|
|
4697
|
+
'promoItem'?: boolean;
|
|
4698
|
+
/**
|
|
4699
|
+
* Refunded
|
|
4700
|
+
* @type {number}
|
|
4701
|
+
* @memberof OrderItemDTO
|
|
4702
|
+
*/
|
|
4703
|
+
'refunded'?: number | null;
|
|
4704
|
+
/**
|
|
4705
|
+
* SBCs
|
|
4706
|
+
* @type {Array<TcxSbcDTO>}
|
|
4707
|
+
* @memberof OrderItemDTO
|
|
4708
|
+
*/
|
|
4709
|
+
'sbcs'?: Array<TcxSbcDTO>;
|
|
4710
|
+
/**
|
|
4711
|
+
* Readonly
|
|
4712
|
+
* @type {boolean}
|
|
4713
|
+
* @memberof OrderItemDTO
|
|
4714
|
+
*/
|
|
4715
|
+
'readonly'?: boolean;
|
|
4716
|
+
/**
|
|
4717
|
+
* 3CX Sales Code
|
|
4718
|
+
* @type {string}
|
|
4719
|
+
* @memberof OrderItemDTO
|
|
4720
|
+
*/
|
|
4721
|
+
'tcxSalesCode'?: string | null;
|
|
4722
|
+
/**
|
|
4723
|
+
* Suppliers
|
|
4724
|
+
* @type {Array<SupplierModel>}
|
|
4725
|
+
* @memberof OrderItemDTO
|
|
4726
|
+
*/
|
|
4727
|
+
'suppliers'?: Array<SupplierModel>;
|
|
4728
|
+
/**
|
|
4729
|
+
* Allocated
|
|
4730
|
+
* @type {number}
|
|
4731
|
+
* @memberof OrderItemDTO
|
|
4732
|
+
*/
|
|
4733
|
+
'allocated'?: number | null;
|
|
4734
|
+
}
|
|
4128
4735
|
/**
|
|
4129
4736
|
* EdTechPro Order Request
|
|
4130
4737
|
* @export
|
|
@@ -4535,57 +5142,148 @@ export interface OrderedItemEntity {
|
|
|
4535
5142
|
'returnedStock'?: number;
|
|
4536
5143
|
}
|
|
4537
5144
|
/**
|
|
4538
|
-
*
|
|
5145
|
+
* Ordered Item Model
|
|
4539
5146
|
* @export
|
|
4540
|
-
* @interface
|
|
5147
|
+
* @interface OrderedItemModel
|
|
4541
5148
|
*/
|
|
4542
|
-
export interface
|
|
5149
|
+
export interface OrderedItemModel {
|
|
4543
5150
|
/**
|
|
4544
|
-
*
|
|
4545
|
-
* @type {
|
|
4546
|
-
* @memberof
|
|
5151
|
+
* id
|
|
5152
|
+
* @type {number}
|
|
5153
|
+
* @memberof OrderedItemModel
|
|
4547
5154
|
*/
|
|
4548
|
-
'
|
|
4549
|
-
}
|
|
4550
|
-
/**
|
|
4551
|
-
*
|
|
4552
|
-
* @export
|
|
4553
|
-
* @interface PatchUpdateAccountContactPasswordRequest
|
|
4554
|
-
*/
|
|
4555
|
-
export interface PatchUpdateAccountContactPasswordRequest {
|
|
5155
|
+
'id'?: number;
|
|
4556
5156
|
/**
|
|
4557
|
-
*
|
|
4558
|
-
* @type {
|
|
4559
|
-
* @memberof
|
|
5157
|
+
* itemId
|
|
5158
|
+
* @type {number}
|
|
5159
|
+
* @memberof OrderedItemModel
|
|
4560
5160
|
*/
|
|
4561
|
-
'
|
|
4562
|
-
}
|
|
4563
|
-
/**
|
|
4564
|
-
* Customer Account
|
|
4565
|
-
* @export
|
|
4566
|
-
* @interface PortalAccountModel
|
|
4567
|
-
*/
|
|
4568
|
-
export interface PortalAccountModel {
|
|
5161
|
+
'itemId'?: number;
|
|
4569
5162
|
/**
|
|
4570
|
-
*
|
|
5163
|
+
* orderedQuantity
|
|
4571
5164
|
* @type {number}
|
|
4572
|
-
* @memberof
|
|
5165
|
+
* @memberof OrderedItemModel
|
|
4573
5166
|
*/
|
|
4574
|
-
'
|
|
5167
|
+
'orderedQuantity'?: number;
|
|
4575
5168
|
/**
|
|
4576
|
-
*
|
|
4577
|
-
* @type {
|
|
4578
|
-
* @memberof
|
|
5169
|
+
* itemStatus
|
|
5170
|
+
* @type {number}
|
|
5171
|
+
* @memberof OrderedItemModel
|
|
4579
5172
|
*/
|
|
4580
|
-
'
|
|
5173
|
+
'itemStatus'?: number;
|
|
4581
5174
|
/**
|
|
4582
|
-
*
|
|
4583
|
-
* @type {
|
|
4584
|
-
* @memberof
|
|
5175
|
+
* supplierId
|
|
5176
|
+
* @type {number}
|
|
5177
|
+
* @memberof OrderedItemModel
|
|
4585
5178
|
*/
|
|
4586
|
-
'
|
|
5179
|
+
'supplierId'?: number;
|
|
4587
5180
|
/**
|
|
4588
|
-
*
|
|
5181
|
+
* supplierItemId
|
|
5182
|
+
* @type {number}
|
|
5183
|
+
* @memberof OrderedItemModel
|
|
5184
|
+
*/
|
|
5185
|
+
'supplierItemId'?: number;
|
|
5186
|
+
/**
|
|
5187
|
+
* supplierPrice
|
|
5188
|
+
* @type {number}
|
|
5189
|
+
* @memberof OrderedItemModel
|
|
5190
|
+
*/
|
|
5191
|
+
'supplierPrice'?: number;
|
|
5192
|
+
/**
|
|
5193
|
+
* statusDate
|
|
5194
|
+
* @type {string}
|
|
5195
|
+
* @memberof OrderedItemModel
|
|
5196
|
+
*/
|
|
5197
|
+
'statusDate'?: string;
|
|
5198
|
+
/**
|
|
5199
|
+
* statusAuthor
|
|
5200
|
+
* @type {number}
|
|
5201
|
+
* @memberof OrderedItemModel
|
|
5202
|
+
*/
|
|
5203
|
+
'statusAuthor'?: number;
|
|
5204
|
+
/**
|
|
5205
|
+
* supplierPaid
|
|
5206
|
+
* @type {number}
|
|
5207
|
+
* @memberof OrderedItemModel
|
|
5208
|
+
*/
|
|
5209
|
+
'supplierPaid'?: number;
|
|
5210
|
+
/**
|
|
5211
|
+
* supplierCreditDue
|
|
5212
|
+
* @type {number}
|
|
5213
|
+
* @memberof OrderedItemModel
|
|
5214
|
+
*/
|
|
5215
|
+
'supplierCreditDue'?: number;
|
|
5216
|
+
/**
|
|
5217
|
+
* supplierCreditReceived
|
|
5218
|
+
* @type {number}
|
|
5219
|
+
* @memberof OrderedItemModel
|
|
5220
|
+
*/
|
|
5221
|
+
'supplierCreditReceived'?: number;
|
|
5222
|
+
/**
|
|
5223
|
+
* supplierSku
|
|
5224
|
+
* @type {string}
|
|
5225
|
+
* @memberof OrderedItemModel
|
|
5226
|
+
*/
|
|
5227
|
+
'supplierSku'?: string;
|
|
5228
|
+
/**
|
|
5229
|
+
* returnedStock
|
|
5230
|
+
* @type {number}
|
|
5231
|
+
* @memberof OrderedItemModel
|
|
5232
|
+
*/
|
|
5233
|
+
'returnedStock'?: number;
|
|
5234
|
+
}
|
|
5235
|
+
/**
|
|
5236
|
+
*
|
|
5237
|
+
* @export
|
|
5238
|
+
* @interface PatchSetTcxWizardCnameRequest
|
|
5239
|
+
*/
|
|
5240
|
+
export interface PatchSetTcxWizardCnameRequest {
|
|
5241
|
+
/**
|
|
5242
|
+
* CNAME
|
|
5243
|
+
* @type {string}
|
|
5244
|
+
* @memberof PatchSetTcxWizardCnameRequest
|
|
5245
|
+
*/
|
|
5246
|
+
'cname'?: string;
|
|
5247
|
+
}
|
|
5248
|
+
/**
|
|
5249
|
+
*
|
|
5250
|
+
* @export
|
|
5251
|
+
* @interface PatchUpdateAccountContactPasswordRequest
|
|
5252
|
+
*/
|
|
5253
|
+
export interface PatchUpdateAccountContactPasswordRequest {
|
|
5254
|
+
/**
|
|
5255
|
+
* Password
|
|
5256
|
+
* @type {string}
|
|
5257
|
+
* @memberof PatchUpdateAccountContactPasswordRequest
|
|
5258
|
+
*/
|
|
5259
|
+
'password'?: string;
|
|
5260
|
+
}
|
|
5261
|
+
/**
|
|
5262
|
+
* Customer Account
|
|
5263
|
+
* @export
|
|
5264
|
+
* @interface PortalAccountModel
|
|
5265
|
+
*/
|
|
5266
|
+
export interface PortalAccountModel {
|
|
5267
|
+
/**
|
|
5268
|
+
* ID
|
|
5269
|
+
* @type {number}
|
|
5270
|
+
* @memberof PortalAccountModel
|
|
5271
|
+
*/
|
|
5272
|
+
'id'?: number;
|
|
5273
|
+
/**
|
|
5274
|
+
* Contact Name
|
|
5275
|
+
* @type {string}
|
|
5276
|
+
* @memberof PortalAccountModel
|
|
5277
|
+
*/
|
|
5278
|
+
'name'?: string;
|
|
5279
|
+
/**
|
|
5280
|
+
* Email
|
|
5281
|
+
* @type {string}
|
|
5282
|
+
* @memberof PortalAccountModel
|
|
5283
|
+
*/
|
|
5284
|
+
'email'?: string;
|
|
5285
|
+
/**
|
|
5286
|
+
* Phone Number
|
|
4589
5287
|
* @type {string}
|
|
4590
5288
|
* @memberof PortalAccountModel
|
|
4591
5289
|
*/
|
|
@@ -4760,6 +5458,19 @@ export interface PortalLoginModel {
|
|
|
4760
5458
|
*/
|
|
4761
5459
|
'redirect_uri'?: string;
|
|
4762
5460
|
}
|
|
5461
|
+
/**
|
|
5462
|
+
*
|
|
5463
|
+
* @export
|
|
5464
|
+
* @interface PostAddOrderNoteRequest
|
|
5465
|
+
*/
|
|
5466
|
+
export interface PostAddOrderNoteRequest {
|
|
5467
|
+
/**
|
|
5468
|
+
* Order Note
|
|
5469
|
+
* @type {string}
|
|
5470
|
+
* @memberof PostAddOrderNoteRequest
|
|
5471
|
+
*/
|
|
5472
|
+
'note'?: string;
|
|
5473
|
+
}
|
|
4763
5474
|
/**
|
|
4764
5475
|
*
|
|
4765
5476
|
* @export
|
|
@@ -4842,6 +5553,19 @@ export interface PostGetProductRequest {
|
|
|
4842
5553
|
*/
|
|
4843
5554
|
'hosting'?: boolean | null;
|
|
4844
5555
|
}
|
|
5556
|
+
/**
|
|
5557
|
+
*
|
|
5558
|
+
* @export
|
|
5559
|
+
* @interface PostSplitOrderRequest
|
|
5560
|
+
*/
|
|
5561
|
+
export interface PostSplitOrderRequest {
|
|
5562
|
+
/**
|
|
5563
|
+
* Item Ids
|
|
5564
|
+
* @type {Array<number>}
|
|
5565
|
+
* @memberof PostSplitOrderRequest
|
|
5566
|
+
*/
|
|
5567
|
+
'itemIds'?: Array<number>;
|
|
5568
|
+
}
|
|
4845
5569
|
/**
|
|
4846
5570
|
* Price & Stock List
|
|
4847
5571
|
* @export
|
|
@@ -4879,6 +5603,43 @@ export interface PriceListItemModel {
|
|
|
4879
5603
|
*/
|
|
4880
5604
|
'stock'?: number | null;
|
|
4881
5605
|
}
|
|
5606
|
+
/**
|
|
5607
|
+
* PrintersEntity
|
|
5608
|
+
* @export
|
|
5609
|
+
* @interface PrinterEntity
|
|
5610
|
+
*/
|
|
5611
|
+
export interface PrinterEntity {
|
|
5612
|
+
/**
|
|
5613
|
+
* id
|
|
5614
|
+
* @type {number}
|
|
5615
|
+
* @memberof PrinterEntity
|
|
5616
|
+
*/
|
|
5617
|
+
'id'?: number;
|
|
5618
|
+
/**
|
|
5619
|
+
* brand
|
|
5620
|
+
* @type {string}
|
|
5621
|
+
* @memberof PrinterEntity
|
|
5622
|
+
*/
|
|
5623
|
+
'brand'?: string;
|
|
5624
|
+
/**
|
|
5625
|
+
* model
|
|
5626
|
+
* @type {string}
|
|
5627
|
+
* @memberof PrinterEntity
|
|
5628
|
+
*/
|
|
5629
|
+
'model'?: string;
|
|
5630
|
+
/**
|
|
5631
|
+
* sn
|
|
5632
|
+
* @type {string}
|
|
5633
|
+
* @memberof PrinterEntity
|
|
5634
|
+
*/
|
|
5635
|
+
'sn'?: string;
|
|
5636
|
+
/**
|
|
5637
|
+
* location
|
|
5638
|
+
* @type {string}
|
|
5639
|
+
* @memberof PrinterEntity
|
|
5640
|
+
*/
|
|
5641
|
+
'location'?: string;
|
|
5642
|
+
}
|
|
4882
5643
|
/**
|
|
4883
5644
|
* PrizesEntity
|
|
4884
5645
|
* @export
|
|
@@ -5266,6 +6027,38 @@ export interface ProvisioningRequestEntity {
|
|
|
5266
6027
|
*/
|
|
5267
6028
|
'auth'?: string;
|
|
5268
6029
|
}
|
|
6030
|
+
/**
|
|
6031
|
+
*
|
|
6032
|
+
* @export
|
|
6033
|
+
* @interface PutAllocateItemsRequest
|
|
6034
|
+
*/
|
|
6035
|
+
export interface PutAllocateItemsRequest {
|
|
6036
|
+
/**
|
|
6037
|
+
* Items
|
|
6038
|
+
* @type {Array<PutAllocateItemsRequestItemsInner>}
|
|
6039
|
+
* @memberof PutAllocateItemsRequest
|
|
6040
|
+
*/
|
|
6041
|
+
'items'?: Array<PutAllocateItemsRequestItemsInner>;
|
|
6042
|
+
}
|
|
6043
|
+
/**
|
|
6044
|
+
*
|
|
6045
|
+
* @export
|
|
6046
|
+
* @interface PutAllocateItemsRequestItemsInner
|
|
6047
|
+
*/
|
|
6048
|
+
export interface PutAllocateItemsRequestItemsInner {
|
|
6049
|
+
/**
|
|
6050
|
+
* Item ID
|
|
6051
|
+
* @type {number}
|
|
6052
|
+
* @memberof PutAllocateItemsRequestItemsInner
|
|
6053
|
+
*/
|
|
6054
|
+
'itemId'?: number;
|
|
6055
|
+
/**
|
|
6056
|
+
* Quantity To Allocate
|
|
6057
|
+
* @type {number}
|
|
6058
|
+
* @memberof PutAllocateItemsRequestItemsInner
|
|
6059
|
+
*/
|
|
6060
|
+
'quantity'?: number;
|
|
6061
|
+
}
|
|
5269
6062
|
/**
|
|
5270
6063
|
* Azure Recordings Backup
|
|
5271
6064
|
* @export
|
|
@@ -5588,6 +6381,55 @@ export interface ShipmentAddressEntity {
|
|
|
5588
6381
|
*/
|
|
5589
6382
|
'shipPhoneNumber'?: string;
|
|
5590
6383
|
}
|
|
6384
|
+
/**
|
|
6385
|
+
* Shipment
|
|
6386
|
+
* @export
|
|
6387
|
+
* @interface ShipmentDTO
|
|
6388
|
+
*/
|
|
6389
|
+
export interface ShipmentDTO {
|
|
6390
|
+
/**
|
|
6391
|
+
* Courier
|
|
6392
|
+
* @type {string}
|
|
6393
|
+
* @memberof ShipmentDTO
|
|
6394
|
+
*/
|
|
6395
|
+
'courier'?: ShipmentDTOCourierEnum | null;
|
|
6396
|
+
/**
|
|
6397
|
+
* Courier Reference
|
|
6398
|
+
* @type {string}
|
|
6399
|
+
* @memberof ShipmentDTO
|
|
6400
|
+
*/
|
|
6401
|
+
'reference'?: string | null;
|
|
6402
|
+
/**
|
|
6403
|
+
* Date Time
|
|
6404
|
+
* @type {string}
|
|
6405
|
+
* @memberof ShipmentDTO
|
|
6406
|
+
*/
|
|
6407
|
+
'requestedDate'?: string;
|
|
6408
|
+
/**
|
|
6409
|
+
* Scanned Items
|
|
6410
|
+
* @type {Array<ScannedItemModel>}
|
|
6411
|
+
* @memberof ShipmentDTO
|
|
6412
|
+
*/
|
|
6413
|
+
'scannedItems'?: Array<ScannedItemModel>;
|
|
6414
|
+
/**
|
|
6415
|
+
* Items
|
|
6416
|
+
* @type {Array<ShipmentItemModel>}
|
|
6417
|
+
* @memberof ShipmentDTO
|
|
6418
|
+
*/
|
|
6419
|
+
'items'?: Array<ShipmentItemModel>;
|
|
6420
|
+
/**
|
|
6421
|
+
*
|
|
6422
|
+
* @type {AddressModel}
|
|
6423
|
+
* @memberof ShipmentDTO
|
|
6424
|
+
*/
|
|
6425
|
+
'address'?: AddressModel;
|
|
6426
|
+
}
|
|
6427
|
+
export declare const ShipmentDTOCourierEnum: {
|
|
6428
|
+
readonly Dpd: "DPD";
|
|
6429
|
+
readonly ChorltonPallet: "Chorlton Pallet";
|
|
6430
|
+
readonly Pops: "POPS";
|
|
6431
|
+
};
|
|
6432
|
+
export type ShipmentDTOCourierEnum = typeof ShipmentDTOCourierEnum[keyof typeof ShipmentDTOCourierEnum];
|
|
5591
6433
|
/**
|
|
5592
6434
|
* ShipmentsEntity
|
|
5593
6435
|
* @export
|
|
@@ -5667,6 +6509,25 @@ export interface ShipmentEntity {
|
|
|
5667
6509
|
*/
|
|
5668
6510
|
'provId'?: number;
|
|
5669
6511
|
}
|
|
6512
|
+
/**
|
|
6513
|
+
* Shipment Item
|
|
6514
|
+
* @export
|
|
6515
|
+
* @interface ShipmentItemDTO
|
|
6516
|
+
*/
|
|
6517
|
+
export interface ShipmentItemDTO {
|
|
6518
|
+
/**
|
|
6519
|
+
* Item ID
|
|
6520
|
+
* @type {number}
|
|
6521
|
+
* @memberof ShipmentItemDTO
|
|
6522
|
+
*/
|
|
6523
|
+
'itemId'?: number;
|
|
6524
|
+
/**
|
|
6525
|
+
* Quantity
|
|
6526
|
+
* @type {number}
|
|
6527
|
+
* @memberof ShipmentItemDTO
|
|
6528
|
+
*/
|
|
6529
|
+
'quantity'?: number;
|
|
6530
|
+
}
|
|
5670
6531
|
/**
|
|
5671
6532
|
* ShipmentItemsEntity
|
|
5672
6533
|
* @export
|
|
@@ -5705,61 +6566,257 @@ export interface ShipmentItemEntity {
|
|
|
5705
6566
|
'itemId'?: string;
|
|
5706
6567
|
}
|
|
5707
6568
|
/**
|
|
5708
|
-
*
|
|
6569
|
+
* Shipment Item
|
|
5709
6570
|
* @export
|
|
5710
|
-
* @interface
|
|
6571
|
+
* @interface ShipmentItemModel
|
|
5711
6572
|
*/
|
|
5712
|
-
export interface
|
|
6573
|
+
export interface ShipmentItemModel {
|
|
5713
6574
|
/**
|
|
5714
|
-
*
|
|
5715
|
-
* @type {
|
|
5716
|
-
* @memberof
|
|
6575
|
+
* id
|
|
6576
|
+
* @type {number}
|
|
6577
|
+
* @memberof ShipmentItemModel
|
|
5717
6578
|
*/
|
|
5718
|
-
'
|
|
6579
|
+
'id'?: number;
|
|
5719
6580
|
/**
|
|
5720
|
-
*
|
|
5721
|
-
* @type {
|
|
5722
|
-
* @memberof
|
|
6581
|
+
* shipmentId
|
|
6582
|
+
* @type {number}
|
|
6583
|
+
* @memberof ShipmentItemModel
|
|
5723
6584
|
*/
|
|
5724
|
-
'
|
|
6585
|
+
'shipmentId'?: number;
|
|
5725
6586
|
/**
|
|
5726
|
-
*
|
|
5727
|
-
* @type {
|
|
5728
|
-
* @memberof
|
|
6587
|
+
* batchId
|
|
6588
|
+
* @type {number}
|
|
6589
|
+
* @memberof ShipmentItemModel
|
|
5729
6590
|
*/
|
|
5730
|
-
'
|
|
6591
|
+
'batchId'?: number;
|
|
5731
6592
|
/**
|
|
5732
|
-
*
|
|
5733
|
-
* @type {
|
|
5734
|
-
* @memberof
|
|
6593
|
+
* quantity
|
|
6594
|
+
* @type {number}
|
|
6595
|
+
* @memberof ShipmentItemModel
|
|
5735
6596
|
*/
|
|
5736
|
-
'
|
|
6597
|
+
'quantity'?: number;
|
|
6598
|
+
/**
|
|
6599
|
+
* item
|
|
6600
|
+
* @type {string}
|
|
6601
|
+
* @memberof ShipmentItemModel
|
|
6602
|
+
*/
|
|
6603
|
+
'itemId'?: string;
|
|
5737
6604
|
}
|
|
5738
6605
|
/**
|
|
5739
|
-
*
|
|
6606
|
+
* Shipment
|
|
5740
6607
|
* @export
|
|
5741
|
-
* @interface
|
|
6608
|
+
* @interface ShipmentModel
|
|
5742
6609
|
*/
|
|
5743
|
-
export interface
|
|
6610
|
+
export interface ShipmentModel {
|
|
5744
6611
|
/**
|
|
5745
|
-
*
|
|
5746
|
-
* @type {
|
|
5747
|
-
* @memberof
|
|
6612
|
+
* id
|
|
6613
|
+
* @type {number}
|
|
6614
|
+
* @memberof ShipmentModel
|
|
5748
6615
|
*/
|
|
5749
|
-
'
|
|
6616
|
+
'id'?: number;
|
|
5750
6617
|
/**
|
|
5751
|
-
*
|
|
6618
|
+
* batchId
|
|
6619
|
+
* @type {number}
|
|
6620
|
+
* @memberof ShipmentModel
|
|
6621
|
+
*/
|
|
6622
|
+
'batchId'?: number;
|
|
6623
|
+
/**
|
|
6624
|
+
* courier
|
|
5752
6625
|
* @type {string}
|
|
5753
|
-
* @memberof
|
|
6626
|
+
* @memberof ShipmentModel
|
|
5754
6627
|
*/
|
|
5755
|
-
'
|
|
6628
|
+
'courier'?: string;
|
|
5756
6629
|
/**
|
|
5757
|
-
*
|
|
6630
|
+
* courierService
|
|
5758
6631
|
* @type {string}
|
|
5759
|
-
* @memberof
|
|
6632
|
+
* @memberof ShipmentModel
|
|
6633
|
+
*/
|
|
6634
|
+
'courierService'?: string;
|
|
6635
|
+
/**
|
|
6636
|
+
* courierServiceDesc
|
|
6637
|
+
* @type {string}
|
|
6638
|
+
* @memberof ShipmentModel
|
|
6639
|
+
*/
|
|
6640
|
+
'courierServiceDesc'?: string;
|
|
6641
|
+
/**
|
|
6642
|
+
* courierReference
|
|
6643
|
+
* @type {string}
|
|
6644
|
+
* @memberof ShipmentModel
|
|
6645
|
+
*/
|
|
6646
|
+
'courierReference'?: string;
|
|
6647
|
+
/**
|
|
6648
|
+
* courierTracking
|
|
6649
|
+
* @type {string}
|
|
6650
|
+
* @memberof ShipmentModel
|
|
6651
|
+
*/
|
|
6652
|
+
'courierTracking'?: string;
|
|
6653
|
+
/**
|
|
6654
|
+
* courierBoxes
|
|
6655
|
+
* @type {number}
|
|
6656
|
+
* @memberof ShipmentModel
|
|
6657
|
+
*/
|
|
6658
|
+
'courierBoxes'?: number;
|
|
6659
|
+
/**
|
|
6660
|
+
* mac
|
|
6661
|
+
* @type {string}
|
|
6662
|
+
* @memberof ShipmentModel
|
|
6663
|
+
*/
|
|
6664
|
+
'scannedData'?: string;
|
|
6665
|
+
/**
|
|
6666
|
+
* date
|
|
6667
|
+
* @type {string}
|
|
6668
|
+
* @memberof ShipmentModel
|
|
6669
|
+
*/
|
|
6670
|
+
'dateShipped'?: string;
|
|
6671
|
+
/**
|
|
6672
|
+
* requestDate
|
|
6673
|
+
* @type {string}
|
|
6674
|
+
* @memberof ShipmentModel
|
|
6675
|
+
*/
|
|
6676
|
+
'requestDate'?: string;
|
|
6677
|
+
/**
|
|
6678
|
+
* provId
|
|
6679
|
+
* @type {number}
|
|
6680
|
+
* @memberof ShipmentModel
|
|
6681
|
+
*/
|
|
6682
|
+
'provId'?: number;
|
|
6683
|
+
}
|
|
6684
|
+
/**
|
|
6685
|
+
* Shipment Request
|
|
6686
|
+
* @export
|
|
6687
|
+
* @interface ShipmentRequestDTO
|
|
6688
|
+
*/
|
|
6689
|
+
export interface ShipmentRequestDTO {
|
|
6690
|
+
/**
|
|
6691
|
+
* Courier
|
|
6692
|
+
* @type {string}
|
|
6693
|
+
* @memberof ShipmentRequestDTO
|
|
6694
|
+
*/
|
|
6695
|
+
'courier'?: ShipmentRequestDTOCourierEnum;
|
|
6696
|
+
/**
|
|
6697
|
+
*
|
|
6698
|
+
* @type {AddressModel}
|
|
6699
|
+
* @memberof ShipmentRequestDTO
|
|
6700
|
+
*/
|
|
6701
|
+
'address'?: AddressModel | null;
|
|
6702
|
+
/**
|
|
6703
|
+
* Scanned Lines
|
|
6704
|
+
* @type {Array<string>}
|
|
6705
|
+
* @memberof ShipmentRequestDTO
|
|
6706
|
+
*/
|
|
6707
|
+
'scannedLines'?: Array<string>;
|
|
6708
|
+
/**
|
|
6709
|
+
* Service
|
|
6710
|
+
* @type {string}
|
|
6711
|
+
* @memberof ShipmentRequestDTO
|
|
6712
|
+
*/
|
|
6713
|
+
'service'?: string;
|
|
6714
|
+
/**
|
|
6715
|
+
* Date Time
|
|
6716
|
+
* @type {string}
|
|
6717
|
+
* @memberof ShipmentRequestDTO
|
|
6718
|
+
*/
|
|
6719
|
+
'shipDate'?: string;
|
|
6720
|
+
/**
|
|
6721
|
+
* Items
|
|
6722
|
+
* @type {Array<ShipmentItemDTO>}
|
|
6723
|
+
* @memberof ShipmentRequestDTO
|
|
6724
|
+
*/
|
|
6725
|
+
'items'?: Array<ShipmentItemDTO>;
|
|
6726
|
+
}
|
|
6727
|
+
export declare const ShipmentRequestDTOCourierEnum: {
|
|
6728
|
+
readonly Dpd: "DPD";
|
|
6729
|
+
readonly ChorltonPallet: "Chorlton Pallet";
|
|
6730
|
+
readonly Pops: "POPS";
|
|
6731
|
+
};
|
|
6732
|
+
export type ShipmentRequestDTOCourierEnum = typeof ShipmentRequestDTOCourierEnum[keyof typeof ShipmentRequestDTOCourierEnum];
|
|
6733
|
+
/**
|
|
6734
|
+
*
|
|
6735
|
+
* @export
|
|
6736
|
+
* @interface ShippingConsignmentModel
|
|
6737
|
+
*/
|
|
6738
|
+
export interface ShippingConsignmentModel {
|
|
6739
|
+
/**
|
|
6740
|
+
*
|
|
6741
|
+
* @type {ShippingServiceModel}
|
|
6742
|
+
* @memberof ShippingConsignmentModel
|
|
6743
|
+
*/
|
|
6744
|
+
'service'?: ShippingServiceModel;
|
|
6745
|
+
/**
|
|
6746
|
+
* ID/Number
|
|
6747
|
+
* @type {string}
|
|
6748
|
+
* @memberof ShippingConsignmentModel
|
|
6749
|
+
*/
|
|
6750
|
+
'id'?: string;
|
|
6751
|
+
/**
|
|
6752
|
+
* Tracking Number
|
|
6753
|
+
* @type {string}
|
|
6754
|
+
* @memberof ShippingConsignmentModel
|
|
6755
|
+
*/
|
|
6756
|
+
'trackingNumber'?: string;
|
|
6757
|
+
/**
|
|
6758
|
+
* Parcels
|
|
6759
|
+
* @type {Array<string>}
|
|
6760
|
+
* @memberof ShippingConsignmentModel
|
|
6761
|
+
*/
|
|
6762
|
+
'parcelIds'?: Array<string>;
|
|
6763
|
+
}
|
|
6764
|
+
/**
|
|
6765
|
+
* Shipping Information
|
|
6766
|
+
* @export
|
|
6767
|
+
* @interface ShippingInformationDTO
|
|
6768
|
+
*/
|
|
6769
|
+
export interface ShippingInformationDTO {
|
|
6770
|
+
/**
|
|
6771
|
+
* Items
|
|
6772
|
+
* @type {Array<BasicItemDTO>}
|
|
6773
|
+
* @memberof ShippingInformationDTO
|
|
6774
|
+
*/
|
|
6775
|
+
'items'?: Array<BasicItemDTO>;
|
|
6776
|
+
/**
|
|
6777
|
+
* Destination Post Code
|
|
6778
|
+
* @type {string}
|
|
6779
|
+
* @memberof ShippingInformationDTO
|
|
6780
|
+
*/
|
|
6781
|
+
'postalCode'?: string;
|
|
6782
|
+
/**
|
|
6783
|
+
* Destination ISO
|
|
6784
|
+
* @type {string}
|
|
6785
|
+
* @memberof ShippingInformationDTO
|
|
5760
6786
|
*/
|
|
5761
6787
|
'iso'?: string;
|
|
5762
6788
|
}
|
|
6789
|
+
/**
|
|
6790
|
+
*
|
|
6791
|
+
* @export
|
|
6792
|
+
* @interface ShippingRequestDTO
|
|
6793
|
+
*/
|
|
6794
|
+
export interface ShippingRequestDTO {
|
|
6795
|
+
/**
|
|
6796
|
+
* Courier
|
|
6797
|
+
* @type {string}
|
|
6798
|
+
* @memberof ShippingRequestDTO
|
|
6799
|
+
*/
|
|
6800
|
+
'courier'?: ShippingRequestDTOCourierEnum;
|
|
6801
|
+
/**
|
|
6802
|
+
* Courier Service
|
|
6803
|
+
* @type {string}
|
|
6804
|
+
* @memberof ShippingRequestDTO
|
|
6805
|
+
*/
|
|
6806
|
+
'service'?: string;
|
|
6807
|
+
/**
|
|
6808
|
+
* Boxes
|
|
6809
|
+
* @type {number}
|
|
6810
|
+
* @memberof ShippingRequestDTO
|
|
6811
|
+
*/
|
|
6812
|
+
'boxes'?: number;
|
|
6813
|
+
}
|
|
6814
|
+
export declare const ShippingRequestDTOCourierEnum: {
|
|
6815
|
+
readonly Dpd: "DPD";
|
|
6816
|
+
readonly ChorltonPallet: "Chorlton Pallet";
|
|
6817
|
+
readonly Pops: "POPS";
|
|
6818
|
+
};
|
|
6819
|
+
export type ShippingRequestDTOCourierEnum = typeof ShippingRequestDTOCourierEnum[keyof typeof ShippingRequestDTOCourierEnum];
|
|
5763
6820
|
/**
|
|
5764
6821
|
* Shipping Service
|
|
5765
6822
|
* @export
|
|
@@ -7367,6 +8424,67 @@ export interface SupplierItemEntity {
|
|
|
7367
8424
|
*/
|
|
7368
8425
|
'supplierSku'?: string;
|
|
7369
8426
|
}
|
|
8427
|
+
/**
|
|
8428
|
+
* Supplier
|
|
8429
|
+
* @export
|
|
8430
|
+
* @interface SupplierModel
|
|
8431
|
+
*/
|
|
8432
|
+
export interface SupplierModel {
|
|
8433
|
+
/**
|
|
8434
|
+
* id
|
|
8435
|
+
* @type {number}
|
|
8436
|
+
* @memberof SupplierModel
|
|
8437
|
+
*/
|
|
8438
|
+
'id'?: number;
|
|
8439
|
+
/**
|
|
8440
|
+
* name
|
|
8441
|
+
* @type {string}
|
|
8442
|
+
* @memberof SupplierModel
|
|
8443
|
+
*/
|
|
8444
|
+
'name'?: string;
|
|
8445
|
+
/**
|
|
8446
|
+
* nameShort
|
|
8447
|
+
* @type {string}
|
|
8448
|
+
* @memberof SupplierModel
|
|
8449
|
+
*/
|
|
8450
|
+
'shortName'?: string;
|
|
8451
|
+
/**
|
|
8452
|
+
* email
|
|
8453
|
+
* @type {string}
|
|
8454
|
+
* @memberof SupplierModel
|
|
8455
|
+
*/
|
|
8456
|
+
'email'?: string;
|
|
8457
|
+
/**
|
|
8458
|
+
* phone
|
|
8459
|
+
* @type {string}
|
|
8460
|
+
* @memberof SupplierModel
|
|
8461
|
+
*/
|
|
8462
|
+
'phone'?: string;
|
|
8463
|
+
/**
|
|
8464
|
+
* defaultCourier
|
|
8465
|
+
* @type {string}
|
|
8466
|
+
* @memberof SupplierModel
|
|
8467
|
+
*/
|
|
8468
|
+
'defaultCourier'?: string;
|
|
8469
|
+
/**
|
|
8470
|
+
* defaultCarriage
|
|
8471
|
+
* @type {number}
|
|
8472
|
+
* @memberof SupplierModel
|
|
8473
|
+
*/
|
|
8474
|
+
'defaultCarriage'?: number;
|
|
8475
|
+
/**
|
|
8476
|
+
* account
|
|
8477
|
+
* @type {string}
|
|
8478
|
+
* @memberof SupplierModel
|
|
8479
|
+
*/
|
|
8480
|
+
'accountNumber'?: string;
|
|
8481
|
+
/**
|
|
8482
|
+
* internalAccount
|
|
8483
|
+
* @type {string}
|
|
8484
|
+
* @memberof SupplierModel
|
|
8485
|
+
*/
|
|
8486
|
+
'xeroAccountNumber'?: string;
|
|
8487
|
+
}
|
|
7370
8488
|
/**
|
|
7371
8489
|
* 3CX Wizard Restore From Backup
|
|
7372
8490
|
* @export
|
|
@@ -13353,6 +14471,24 @@ export type PostAuthoriseScopeEnum = typeof PostAuthoriseScopeEnum[keyof typeof
|
|
|
13353
14471
|
* @export
|
|
13354
14472
|
*/
|
|
13355
14473
|
export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14474
|
+
/**
|
|
14475
|
+
* Delete Shipment (Admin)
|
|
14476
|
+
* @summary Delete Shipment (Admin)
|
|
14477
|
+
* @param {number} id Order ID
|
|
14478
|
+
* @param {number} batchId Batch ID
|
|
14479
|
+
* @param {number} shipmentId Shipment ID
|
|
14480
|
+
* @param {*} [options] Override http request option.
|
|
14481
|
+
* @throws {RequiredError}
|
|
14482
|
+
*/
|
|
14483
|
+
deleteCreateShipment: (id: number, batchId: number, shipmentId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14484
|
+
/**
|
|
14485
|
+
* Delete Batch (Admin)
|
|
14486
|
+
* @param {number} id Order ID
|
|
14487
|
+
* @param {number} batchId Batch ID
|
|
14488
|
+
* @param {*} [options] Override http request option.
|
|
14489
|
+
* @throws {RequiredError}
|
|
14490
|
+
*/
|
|
14491
|
+
deleteDeleteBatch: (id: number, batchId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13356
14492
|
/**
|
|
13357
14493
|
* Delete Orders (Beta)
|
|
13358
14494
|
* @summary Delete Orders (Beta)
|
|
@@ -13369,6 +14505,14 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
13369
14505
|
* @throws {RequiredError}
|
|
13370
14506
|
*/
|
|
13371
14507
|
getGetAdminEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14508
|
+
/**
|
|
14509
|
+
* Get Order Details (Admin)
|
|
14510
|
+
* @summary Get Order Details (Admin)
|
|
14511
|
+
* @param {number} id Order ID
|
|
14512
|
+
* @param {*} [options] Override http request option.
|
|
14513
|
+
* @throws {RequiredError}
|
|
14514
|
+
*/
|
|
14515
|
+
getGetAdminOrderDetails: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13372
14516
|
/**
|
|
13373
14517
|
* Get Editable Order (Beta)
|
|
13374
14518
|
* @summary Get Editable Order (Beta)
|
|
@@ -13377,6 +14521,14 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
13377
14521
|
* @throws {RequiredError}
|
|
13378
14522
|
*/
|
|
13379
14523
|
getGetEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14524
|
+
/**
|
|
14525
|
+
* Download Order PDF
|
|
14526
|
+
* @summary Download Order PDF
|
|
14527
|
+
* @param {number} id Order ID
|
|
14528
|
+
* @param {*} [options] Override http request option.
|
|
14529
|
+
* @throws {RequiredError}
|
|
14530
|
+
*/
|
|
14531
|
+
getGetOrderPdf: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13380
14532
|
/**
|
|
13381
14533
|
* Get Orders (Beta)
|
|
13382
14534
|
* @summary Get Orders (Beta)
|
|
@@ -13391,6 +14543,15 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
13391
14543
|
* @throws {RequiredError}
|
|
13392
14544
|
*/
|
|
13393
14545
|
getGetOrders: (pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14546
|
+
/**
|
|
14547
|
+
* Add Order Note
|
|
14548
|
+
* @summary Add Order Note
|
|
14549
|
+
* @param {number} id Order ID
|
|
14550
|
+
* @param {PostAddOrderNoteRequest} [postAddOrderNoteRequest]
|
|
14551
|
+
* @param {*} [options] Override http request option.
|
|
14552
|
+
* @throws {RequiredError}
|
|
14553
|
+
*/
|
|
14554
|
+
postAddOrderNote: (id: number, postAddOrderNoteRequest?: PostAddOrderNoteRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13394
14555
|
/**
|
|
13395
14556
|
* Create An Order (Admin)
|
|
13396
14557
|
* @summary Create An Order (Admin)
|
|
@@ -13400,6 +14561,26 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
13400
14561
|
* @throws {RequiredError}
|
|
13401
14562
|
*/
|
|
13402
14563
|
postCreateAdminOrder: (readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14564
|
+
/**
|
|
14565
|
+
* Create Shipping Consignment
|
|
14566
|
+
* @summary Create Shipping Consignment
|
|
14567
|
+
* @param {number} id Order ID
|
|
14568
|
+
* @param {number} shipmentId Shipment ID
|
|
14569
|
+
* @param {ShippingRequestDTO} [shippingRequestDTO] Shipping Request
|
|
14570
|
+
* @param {*} [options] Override http request option.
|
|
14571
|
+
* @throws {RequiredError}
|
|
14572
|
+
*/
|
|
14573
|
+
postCreateConsignment: (id: number, shipmentId: number, shippingRequestDTO?: ShippingRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14574
|
+
/**
|
|
14575
|
+
* Create Shipment (Admin)
|
|
14576
|
+
* @summary Create Shipment (Admin)
|
|
14577
|
+
* @param {number} id Order ID
|
|
14578
|
+
* @param {number} batchId Batch ID
|
|
14579
|
+
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
14580
|
+
* @param {*} [options] Override http request option.
|
|
14581
|
+
* @throws {RequiredError}
|
|
14582
|
+
*/
|
|
14583
|
+
postCreateShipment: (id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13403
14584
|
/**
|
|
13404
14585
|
* Create An Order (Beta)
|
|
13405
14586
|
* @summary Create An Order (Beta)
|
|
@@ -13409,6 +14590,73 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
13409
14590
|
* @throws {RequiredError}
|
|
13410
14591
|
*/
|
|
13411
14592
|
postGetOrders: (readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14593
|
+
/**
|
|
14594
|
+
* Issue Credit (Admin)
|
|
14595
|
+
* @summary Issue Credit (Admin)
|
|
14596
|
+
* @param {number} id Order ID
|
|
14597
|
+
* @param {CreditNoteDTO} [creditNoteDTO] Credit Request
|
|
14598
|
+
* @param {*} [options] Override http request option.
|
|
14599
|
+
* @throws {RequiredError}
|
|
14600
|
+
*/
|
|
14601
|
+
postIssueCredit: (id: number, creditNoteDTO?: CreditNoteDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14602
|
+
/**
|
|
14603
|
+
* Print Shipment Label
|
|
14604
|
+
* @summary Print Shipment Label
|
|
14605
|
+
* @param {number} id Order ID
|
|
14606
|
+
* @param {number} shipmentId Shipment ID
|
|
14607
|
+
* @param {PostPrintShippingLabelPrinterEnum} printer Printer
|
|
14608
|
+
* @param {*} [options] Override http request option.
|
|
14609
|
+
* @throws {RequiredError}
|
|
14610
|
+
*/
|
|
14611
|
+
postPrintShippingLabel: (id: number, shipmentId: number, printer: PostPrintShippingLabelPrinterEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14612
|
+
/**
|
|
14613
|
+
* Send Order Email
|
|
14614
|
+
* @summary Send Order Email
|
|
14615
|
+
* @param {number} id Order ID
|
|
14616
|
+
* @param {string} email Email Address
|
|
14617
|
+
* @param {*} [options] Override http request option.
|
|
14618
|
+
* @throws {RequiredError}
|
|
14619
|
+
*/
|
|
14620
|
+
postSendOrderEmail: (id: number, email: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14621
|
+
/**
|
|
14622
|
+
* Send Supplier Email
|
|
14623
|
+
* @summary Send Supplier Email
|
|
14624
|
+
* @param {number} id Order ID
|
|
14625
|
+
* @param {number} batchId Batch ID
|
|
14626
|
+
* @param {*} [options] Override http request option.
|
|
14627
|
+
* @throws {RequiredError}
|
|
14628
|
+
*/
|
|
14629
|
+
postSendSupplierEmail: (id: number, batchId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14630
|
+
/**
|
|
14631
|
+
* Split Order
|
|
14632
|
+
* @summary Split Order
|
|
14633
|
+
* @param {number} id Order ID
|
|
14634
|
+
* @param {PostSplitOrderRequest} [postSplitOrderRequest]
|
|
14635
|
+
* @param {*} [options] Override http request option.
|
|
14636
|
+
* @throws {RequiredError}
|
|
14637
|
+
*/
|
|
14638
|
+
postSplitOrder: (id: number, postSplitOrderRequest?: PostSplitOrderRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14639
|
+
/**
|
|
14640
|
+
* Allocate Items To Supplier
|
|
14641
|
+
* @summary Allocate Items To Supplier
|
|
14642
|
+
* @param {number} id Order ID
|
|
14643
|
+
* @param {number} supplierId Supplier ID
|
|
14644
|
+
* @param {PutAllocateItemsRequest} [putAllocateItemsRequest]
|
|
14645
|
+
* @param {*} [options] Override http request option.
|
|
14646
|
+
* @throws {RequiredError}
|
|
14647
|
+
*/
|
|
14648
|
+
putAllocateItems: (id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14649
|
+
/**
|
|
14650
|
+
* Update Shipment (Admin)
|
|
14651
|
+
* @summary Update Shipment (Admin)
|
|
14652
|
+
* @param {number} id Order ID
|
|
14653
|
+
* @param {number} batchId Batch ID
|
|
14654
|
+
* @param {number} shipmentId Shipment ID
|
|
14655
|
+
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
14656
|
+
* @param {*} [options] Override http request option.
|
|
14657
|
+
* @throws {RequiredError}
|
|
14658
|
+
*/
|
|
14659
|
+
putCreateShipment: (id: number, batchId: number, shipmentId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13412
14660
|
/**
|
|
13413
14661
|
* Update An Order (Admin)
|
|
13414
14662
|
* @summary Update An Order (Admin)
|
|
@@ -13435,6 +14683,24 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
13435
14683
|
* @export
|
|
13436
14684
|
*/
|
|
13437
14685
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
14686
|
+
/**
|
|
14687
|
+
* Delete Shipment (Admin)
|
|
14688
|
+
* @summary Delete Shipment (Admin)
|
|
14689
|
+
* @param {number} id Order ID
|
|
14690
|
+
* @param {number} batchId Batch ID
|
|
14691
|
+
* @param {number} shipmentId Shipment ID
|
|
14692
|
+
* @param {*} [options] Override http request option.
|
|
14693
|
+
* @throws {RequiredError}
|
|
14694
|
+
*/
|
|
14695
|
+
deleteCreateShipment(id: number, batchId: number, shipmentId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14696
|
+
/**
|
|
14697
|
+
* Delete Batch (Admin)
|
|
14698
|
+
* @param {number} id Order ID
|
|
14699
|
+
* @param {number} batchId Batch ID
|
|
14700
|
+
* @param {*} [options] Override http request option.
|
|
14701
|
+
* @throws {RequiredError}
|
|
14702
|
+
*/
|
|
14703
|
+
deleteDeleteBatch(id: number, batchId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
13438
14704
|
/**
|
|
13439
14705
|
* Delete Orders (Beta)
|
|
13440
14706
|
* @summary Delete Orders (Beta)
|
|
@@ -13451,6 +14717,14 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
13451
14717
|
* @throws {RequiredError}
|
|
13452
14718
|
*/
|
|
13453
14719
|
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminOrderRequestDTO>>;
|
|
14720
|
+
/**
|
|
14721
|
+
* Get Order Details (Admin)
|
|
14722
|
+
* @summary Get Order Details (Admin)
|
|
14723
|
+
* @param {number} id Order ID
|
|
14724
|
+
* @param {*} [options] Override http request option.
|
|
14725
|
+
* @throws {RequiredError}
|
|
14726
|
+
*/
|
|
14727
|
+
getGetAdminOrderDetails(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrderDetailsDTO>>;
|
|
13454
14728
|
/**
|
|
13455
14729
|
* Get Editable Order (Beta)
|
|
13456
14730
|
* @summary Get Editable Order (Beta)
|
|
@@ -13459,6 +14733,14 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
13459
14733
|
* @throws {RequiredError}
|
|
13460
14734
|
*/
|
|
13461
14735
|
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DetailedOrderRequestDTO>>;
|
|
14736
|
+
/**
|
|
14737
|
+
* Download Order PDF
|
|
14738
|
+
* @summary Download Order PDF
|
|
14739
|
+
* @param {number} id Order ID
|
|
14740
|
+
* @param {*} [options] Override http request option.
|
|
14741
|
+
* @throws {RequiredError}
|
|
14742
|
+
*/
|
|
14743
|
+
getGetOrderPdf(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
13462
14744
|
/**
|
|
13463
14745
|
* Get Orders (Beta)
|
|
13464
14746
|
* @summary Get Orders (Beta)
|
|
@@ -13473,6 +14755,15 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
13473
14755
|
* @throws {RequiredError}
|
|
13474
14756
|
*/
|
|
13475
14757
|
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>>;
|
|
14758
|
+
/**
|
|
14759
|
+
* Add Order Note
|
|
14760
|
+
* @summary Add Order Note
|
|
14761
|
+
* @param {number} id Order ID
|
|
14762
|
+
* @param {PostAddOrderNoteRequest} [postAddOrderNoteRequest]
|
|
14763
|
+
* @param {*} [options] Override http request option.
|
|
14764
|
+
* @throws {RequiredError}
|
|
14765
|
+
*/
|
|
14766
|
+
postAddOrderNote(id: number, postAddOrderNoteRequest?: PostAddOrderNoteRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
13476
14767
|
/**
|
|
13477
14768
|
* Create An Order (Admin)
|
|
13478
14769
|
* @summary Create An Order (Admin)
|
|
@@ -13482,6 +14773,26 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
13482
14773
|
* @throws {RequiredError}
|
|
13483
14774
|
*/
|
|
13484
14775
|
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
14776
|
+
/**
|
|
14777
|
+
* Create Shipping Consignment
|
|
14778
|
+
* @summary Create Shipping Consignment
|
|
14779
|
+
* @param {number} id Order ID
|
|
14780
|
+
* @param {number} shipmentId Shipment ID
|
|
14781
|
+
* @param {ShippingRequestDTO} [shippingRequestDTO] Shipping Request
|
|
14782
|
+
* @param {*} [options] Override http request option.
|
|
14783
|
+
* @throws {RequiredError}
|
|
14784
|
+
*/
|
|
14785
|
+
postCreateConsignment(id: number, shipmentId: number, shippingRequestDTO?: ShippingRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShipmentModel>>;
|
|
14786
|
+
/**
|
|
14787
|
+
* Create Shipment (Admin)
|
|
14788
|
+
* @summary Create Shipment (Admin)
|
|
14789
|
+
* @param {number} id Order ID
|
|
14790
|
+
* @param {number} batchId Batch ID
|
|
14791
|
+
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
14792
|
+
* @param {*} [options] Override http request option.
|
|
14793
|
+
* @throws {RequiredError}
|
|
14794
|
+
*/
|
|
14795
|
+
postCreateShipment(id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShipmentModel>>;
|
|
13485
14796
|
/**
|
|
13486
14797
|
* Create An Order (Beta)
|
|
13487
14798
|
* @summary Create An Order (Beta)
|
|
@@ -13491,6 +14802,73 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
13491
14802
|
* @throws {RequiredError}
|
|
13492
14803
|
*/
|
|
13493
14804
|
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
14805
|
+
/**
|
|
14806
|
+
* Issue Credit (Admin)
|
|
14807
|
+
* @summary Issue Credit (Admin)
|
|
14808
|
+
* @param {number} id Order ID
|
|
14809
|
+
* @param {CreditNoteDTO} [creditNoteDTO] Credit Request
|
|
14810
|
+
* @param {*} [options] Override http request option.
|
|
14811
|
+
* @throws {RequiredError}
|
|
14812
|
+
*/
|
|
14813
|
+
postIssueCredit(id: number, creditNoteDTO?: CreditNoteDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreditNoteModel>>;
|
|
14814
|
+
/**
|
|
14815
|
+
* Print Shipment Label
|
|
14816
|
+
* @summary Print Shipment Label
|
|
14817
|
+
* @param {number} id Order ID
|
|
14818
|
+
* @param {number} shipmentId Shipment ID
|
|
14819
|
+
* @param {PostPrintShippingLabelPrinterEnum} printer Printer
|
|
14820
|
+
* @param {*} [options] Override http request option.
|
|
14821
|
+
* @throws {RequiredError}
|
|
14822
|
+
*/
|
|
14823
|
+
postPrintShippingLabel(id: number, shipmentId: number, printer: PostPrintShippingLabelPrinterEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
14824
|
+
/**
|
|
14825
|
+
* Send Order Email
|
|
14826
|
+
* @summary Send Order Email
|
|
14827
|
+
* @param {number} id Order ID
|
|
14828
|
+
* @param {string} email Email Address
|
|
14829
|
+
* @param {*} [options] Override http request option.
|
|
14830
|
+
* @throws {RequiredError}
|
|
14831
|
+
*/
|
|
14832
|
+
postSendOrderEmail(id: number, email: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14833
|
+
/**
|
|
14834
|
+
* Send Supplier Email
|
|
14835
|
+
* @summary Send Supplier Email
|
|
14836
|
+
* @param {number} id Order ID
|
|
14837
|
+
* @param {number} batchId Batch ID
|
|
14838
|
+
* @param {*} [options] Override http request option.
|
|
14839
|
+
* @throws {RequiredError}
|
|
14840
|
+
*/
|
|
14841
|
+
postSendSupplierEmail(id: number, batchId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14842
|
+
/**
|
|
14843
|
+
* Split Order
|
|
14844
|
+
* @summary Split Order
|
|
14845
|
+
* @param {number} id Order ID
|
|
14846
|
+
* @param {PostSplitOrderRequest} [postSplitOrderRequest]
|
|
14847
|
+
* @param {*} [options] Override http request option.
|
|
14848
|
+
* @throws {RequiredError}
|
|
14849
|
+
*/
|
|
14850
|
+
postSplitOrder(id: number, postSplitOrderRequest?: PostSplitOrderRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
14851
|
+
/**
|
|
14852
|
+
* Allocate Items To Supplier
|
|
14853
|
+
* @summary Allocate Items To Supplier
|
|
14854
|
+
* @param {number} id Order ID
|
|
14855
|
+
* @param {number} supplierId Supplier ID
|
|
14856
|
+
* @param {PutAllocateItemsRequest} [putAllocateItemsRequest]
|
|
14857
|
+
* @param {*} [options] Override http request option.
|
|
14858
|
+
* @throws {RequiredError}
|
|
14859
|
+
*/
|
|
14860
|
+
putAllocateItems(id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14861
|
+
/**
|
|
14862
|
+
* Update Shipment (Admin)
|
|
14863
|
+
* @summary Update Shipment (Admin)
|
|
14864
|
+
* @param {number} id Order ID
|
|
14865
|
+
* @param {number} batchId Batch ID
|
|
14866
|
+
* @param {number} shipmentId Shipment ID
|
|
14867
|
+
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
14868
|
+
* @param {*} [options] Override http request option.
|
|
14869
|
+
* @throws {RequiredError}
|
|
14870
|
+
*/
|
|
14871
|
+
putCreateShipment(id: number, batchId: number, shipmentId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShipmentModel>>;
|
|
13494
14872
|
/**
|
|
13495
14873
|
* Update An Order (Admin)
|
|
13496
14874
|
* @summary Update An Order (Admin)
|
|
@@ -13517,6 +14895,24 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
13517
14895
|
* @export
|
|
13518
14896
|
*/
|
|
13519
14897
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14898
|
+
/**
|
|
14899
|
+
* Delete Shipment (Admin)
|
|
14900
|
+
* @summary Delete Shipment (Admin)
|
|
14901
|
+
* @param {number} id Order ID
|
|
14902
|
+
* @param {number} batchId Batch ID
|
|
14903
|
+
* @param {number} shipmentId Shipment ID
|
|
14904
|
+
* @param {*} [options] Override http request option.
|
|
14905
|
+
* @throws {RequiredError}
|
|
14906
|
+
*/
|
|
14907
|
+
deleteCreateShipment(id: number, batchId: number, shipmentId: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
14908
|
+
/**
|
|
14909
|
+
* Delete Batch (Admin)
|
|
14910
|
+
* @param {number} id Order ID
|
|
14911
|
+
* @param {number} batchId Batch ID
|
|
14912
|
+
* @param {*} [options] Override http request option.
|
|
14913
|
+
* @throws {RequiredError}
|
|
14914
|
+
*/
|
|
14915
|
+
deleteDeleteBatch(id: number, batchId: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
13520
14916
|
/**
|
|
13521
14917
|
* Delete Orders (Beta)
|
|
13522
14918
|
* @summary Delete Orders (Beta)
|
|
@@ -13533,6 +14929,14 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
13533
14929
|
* @throws {RequiredError}
|
|
13534
14930
|
*/
|
|
13535
14931
|
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminOrderRequestDTO>;
|
|
14932
|
+
/**
|
|
14933
|
+
* Get Order Details (Admin)
|
|
14934
|
+
* @summary Get Order Details (Admin)
|
|
14935
|
+
* @param {number} id Order ID
|
|
14936
|
+
* @param {*} [options] Override http request option.
|
|
14937
|
+
* @throws {RequiredError}
|
|
14938
|
+
*/
|
|
14939
|
+
getGetAdminOrderDetails(id: number, options?: RawAxiosRequestConfig): AxiosPromise<OrderDetailsDTO>;
|
|
13536
14940
|
/**
|
|
13537
14941
|
* Get Editable Order (Beta)
|
|
13538
14942
|
* @summary Get Editable Order (Beta)
|
|
@@ -13541,6 +14945,14 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
13541
14945
|
* @throws {RequiredError}
|
|
13542
14946
|
*/
|
|
13543
14947
|
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<DetailedOrderRequestDTO>;
|
|
14948
|
+
/**
|
|
14949
|
+
* Download Order PDF
|
|
14950
|
+
* @summary Download Order PDF
|
|
14951
|
+
* @param {number} id Order ID
|
|
14952
|
+
* @param {*} [options] Override http request option.
|
|
14953
|
+
* @throws {RequiredError}
|
|
14954
|
+
*/
|
|
14955
|
+
getGetOrderPdf(id: number, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
13544
14956
|
/**
|
|
13545
14957
|
* Get Orders (Beta)
|
|
13546
14958
|
* @summary Get Orders (Beta)
|
|
@@ -13555,6 +14967,15 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
13555
14967
|
* @throws {RequiredError}
|
|
13556
14968
|
*/
|
|
13557
14969
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummariesModel>;
|
|
14970
|
+
/**
|
|
14971
|
+
* Add Order Note
|
|
14972
|
+
* @summary Add Order Note
|
|
14973
|
+
* @param {number} id Order ID
|
|
14974
|
+
* @param {PostAddOrderNoteRequest} [postAddOrderNoteRequest]
|
|
14975
|
+
* @param {*} [options] Override http request option.
|
|
14976
|
+
* @throws {RequiredError}
|
|
14977
|
+
*/
|
|
14978
|
+
postAddOrderNote(id: number, postAddOrderNoteRequest?: PostAddOrderNoteRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
13558
14979
|
/**
|
|
13559
14980
|
* Create An Order (Admin)
|
|
13560
14981
|
* @summary Create An Order (Admin)
|
|
@@ -13564,6 +14985,26 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
13564
14985
|
* @throws {RequiredError}
|
|
13565
14986
|
*/
|
|
13566
14987
|
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
14988
|
+
/**
|
|
14989
|
+
* Create Shipping Consignment
|
|
14990
|
+
* @summary Create Shipping Consignment
|
|
14991
|
+
* @param {number} id Order ID
|
|
14992
|
+
* @param {number} shipmentId Shipment ID
|
|
14993
|
+
* @param {ShippingRequestDTO} [shippingRequestDTO] Shipping Request
|
|
14994
|
+
* @param {*} [options] Override http request option.
|
|
14995
|
+
* @throws {RequiredError}
|
|
14996
|
+
*/
|
|
14997
|
+
postCreateConsignment(id: number, shipmentId: number, shippingRequestDTO?: ShippingRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShipmentModel>;
|
|
14998
|
+
/**
|
|
14999
|
+
* Create Shipment (Admin)
|
|
15000
|
+
* @summary Create Shipment (Admin)
|
|
15001
|
+
* @param {number} id Order ID
|
|
15002
|
+
* @param {number} batchId Batch ID
|
|
15003
|
+
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
15004
|
+
* @param {*} [options] Override http request option.
|
|
15005
|
+
* @throws {RequiredError}
|
|
15006
|
+
*/
|
|
15007
|
+
postCreateShipment(id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShipmentModel>;
|
|
13567
15008
|
/**
|
|
13568
15009
|
* Create An Order (Beta)
|
|
13569
15010
|
* @summary Create An Order (Beta)
|
|
@@ -13573,6 +15014,73 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
13573
15014
|
* @throws {RequiredError}
|
|
13574
15015
|
*/
|
|
13575
15016
|
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
15017
|
+
/**
|
|
15018
|
+
* Issue Credit (Admin)
|
|
15019
|
+
* @summary Issue Credit (Admin)
|
|
15020
|
+
* @param {number} id Order ID
|
|
15021
|
+
* @param {CreditNoteDTO} [creditNoteDTO] Credit Request
|
|
15022
|
+
* @param {*} [options] Override http request option.
|
|
15023
|
+
* @throws {RequiredError}
|
|
15024
|
+
*/
|
|
15025
|
+
postIssueCredit(id: number, creditNoteDTO?: CreditNoteDTO, options?: RawAxiosRequestConfig): AxiosPromise<CreditNoteModel>;
|
|
15026
|
+
/**
|
|
15027
|
+
* Print Shipment Label
|
|
15028
|
+
* @summary Print Shipment Label
|
|
15029
|
+
* @param {number} id Order ID
|
|
15030
|
+
* @param {number} shipmentId Shipment ID
|
|
15031
|
+
* @param {PostPrintShippingLabelPrinterEnum} printer Printer
|
|
15032
|
+
* @param {*} [options] Override http request option.
|
|
15033
|
+
* @throws {RequiredError}
|
|
15034
|
+
*/
|
|
15035
|
+
postPrintShippingLabel(id: number, shipmentId: number, printer: PostPrintShippingLabelPrinterEnum, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
15036
|
+
/**
|
|
15037
|
+
* Send Order Email
|
|
15038
|
+
* @summary Send Order Email
|
|
15039
|
+
* @param {number} id Order ID
|
|
15040
|
+
* @param {string} email Email Address
|
|
15041
|
+
* @param {*} [options] Override http request option.
|
|
15042
|
+
* @throws {RequiredError}
|
|
15043
|
+
*/
|
|
15044
|
+
postSendOrderEmail(id: number, email: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15045
|
+
/**
|
|
15046
|
+
* Send Supplier Email
|
|
15047
|
+
* @summary Send Supplier Email
|
|
15048
|
+
* @param {number} id Order ID
|
|
15049
|
+
* @param {number} batchId Batch ID
|
|
15050
|
+
* @param {*} [options] Override http request option.
|
|
15051
|
+
* @throws {RequiredError}
|
|
15052
|
+
*/
|
|
15053
|
+
postSendSupplierEmail(id: number, batchId: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15054
|
+
/**
|
|
15055
|
+
* Split Order
|
|
15056
|
+
* @summary Split Order
|
|
15057
|
+
* @param {number} id Order ID
|
|
15058
|
+
* @param {PostSplitOrderRequest} [postSplitOrderRequest]
|
|
15059
|
+
* @param {*} [options] Override http request option.
|
|
15060
|
+
* @throws {RequiredError}
|
|
15061
|
+
*/
|
|
15062
|
+
postSplitOrder(id: number, postSplitOrderRequest?: PostSplitOrderRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
15063
|
+
/**
|
|
15064
|
+
* Allocate Items To Supplier
|
|
15065
|
+
* @summary Allocate Items To Supplier
|
|
15066
|
+
* @param {number} id Order ID
|
|
15067
|
+
* @param {number} supplierId Supplier ID
|
|
15068
|
+
* @param {PutAllocateItemsRequest} [putAllocateItemsRequest]
|
|
15069
|
+
* @param {*} [options] Override http request option.
|
|
15070
|
+
* @throws {RequiredError}
|
|
15071
|
+
*/
|
|
15072
|
+
putAllocateItems(id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15073
|
+
/**
|
|
15074
|
+
* Update Shipment (Admin)
|
|
15075
|
+
* @summary Update Shipment (Admin)
|
|
15076
|
+
* @param {number} id Order ID
|
|
15077
|
+
* @param {number} batchId Batch ID
|
|
15078
|
+
* @param {number} shipmentId Shipment ID
|
|
15079
|
+
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
15080
|
+
* @param {*} [options] Override http request option.
|
|
15081
|
+
* @throws {RequiredError}
|
|
15082
|
+
*/
|
|
15083
|
+
putCreateShipment(id: number, batchId: number, shipmentId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShipmentModel>;
|
|
13576
15084
|
/**
|
|
13577
15085
|
* Update An Order (Admin)
|
|
13578
15086
|
* @summary Update An Order (Admin)
|
|
@@ -13601,6 +15109,26 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
13601
15109
|
* @extends {BaseAPI}
|
|
13602
15110
|
*/
|
|
13603
15111
|
export declare class OrdersApi extends BaseAPI {
|
|
15112
|
+
/**
|
|
15113
|
+
* Delete Shipment (Admin)
|
|
15114
|
+
* @summary Delete Shipment (Admin)
|
|
15115
|
+
* @param {number} id Order ID
|
|
15116
|
+
* @param {number} batchId Batch ID
|
|
15117
|
+
* @param {number} shipmentId Shipment ID
|
|
15118
|
+
* @param {*} [options] Override http request option.
|
|
15119
|
+
* @throws {RequiredError}
|
|
15120
|
+
* @memberof OrdersApi
|
|
15121
|
+
*/
|
|
15122
|
+
deleteCreateShipment(id: number, batchId: number, shipmentId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
15123
|
+
/**
|
|
15124
|
+
* Delete Batch (Admin)
|
|
15125
|
+
* @param {number} id Order ID
|
|
15126
|
+
* @param {number} batchId Batch ID
|
|
15127
|
+
* @param {*} [options] Override http request option.
|
|
15128
|
+
* @throws {RequiredError}
|
|
15129
|
+
* @memberof OrdersApi
|
|
15130
|
+
*/
|
|
15131
|
+
deleteDeleteBatch(id: number, batchId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
13604
15132
|
/**
|
|
13605
15133
|
* Delete Orders (Beta)
|
|
13606
15134
|
* @summary Delete Orders (Beta)
|
|
@@ -13619,6 +15147,15 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
13619
15147
|
* @memberof OrdersApi
|
|
13620
15148
|
*/
|
|
13621
15149
|
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminOrderRequestDTO, any, {}>>;
|
|
15150
|
+
/**
|
|
15151
|
+
* Get Order Details (Admin)
|
|
15152
|
+
* @summary Get Order Details (Admin)
|
|
15153
|
+
* @param {number} id Order ID
|
|
15154
|
+
* @param {*} [options] Override http request option.
|
|
15155
|
+
* @throws {RequiredError}
|
|
15156
|
+
* @memberof OrdersApi
|
|
15157
|
+
*/
|
|
15158
|
+
getGetAdminOrderDetails(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderDetailsDTO, any, {}>>;
|
|
13622
15159
|
/**
|
|
13623
15160
|
* Get Editable Order (Beta)
|
|
13624
15161
|
* @summary Get Editable Order (Beta)
|
|
@@ -13628,6 +15165,15 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
13628
15165
|
* @memberof OrdersApi
|
|
13629
15166
|
*/
|
|
13630
15167
|
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DetailedOrderRequestDTO, any, {}>>;
|
|
15168
|
+
/**
|
|
15169
|
+
* Download Order PDF
|
|
15170
|
+
* @summary Download Order PDF
|
|
15171
|
+
* @param {number} id Order ID
|
|
15172
|
+
* @param {*} [options] Override http request option.
|
|
15173
|
+
* @throws {RequiredError}
|
|
15174
|
+
* @memberof OrdersApi
|
|
15175
|
+
*/
|
|
15176
|
+
getGetOrderPdf(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
|
|
13631
15177
|
/**
|
|
13632
15178
|
* Get Orders (Beta)
|
|
13633
15179
|
* @summary Get Orders (Beta)
|
|
@@ -13643,6 +15189,16 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
13643
15189
|
* @memberof OrdersApi
|
|
13644
15190
|
*/
|
|
13645
15191
|
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, {}>>;
|
|
15192
|
+
/**
|
|
15193
|
+
* Add Order Note
|
|
15194
|
+
* @summary Add Order Note
|
|
15195
|
+
* @param {number} id Order ID
|
|
15196
|
+
* @param {PostAddOrderNoteRequest} [postAddOrderNoteRequest]
|
|
15197
|
+
* @param {*} [options] Override http request option.
|
|
15198
|
+
* @throws {RequiredError}
|
|
15199
|
+
* @memberof OrdersApi
|
|
15200
|
+
*/
|
|
15201
|
+
postAddOrderNote(id: number, postAddOrderNoteRequest?: PostAddOrderNoteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
13646
15202
|
/**
|
|
13647
15203
|
* Create An Order (Admin)
|
|
13648
15204
|
* @summary Create An Order (Admin)
|
|
@@ -13653,6 +15209,28 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
13653
15209
|
* @memberof OrdersApi
|
|
13654
15210
|
*/
|
|
13655
15211
|
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
15212
|
+
/**
|
|
15213
|
+
* Create Shipping Consignment
|
|
15214
|
+
* @summary Create Shipping Consignment
|
|
15215
|
+
* @param {number} id Order ID
|
|
15216
|
+
* @param {number} shipmentId Shipment ID
|
|
15217
|
+
* @param {ShippingRequestDTO} [shippingRequestDTO] Shipping Request
|
|
15218
|
+
* @param {*} [options] Override http request option.
|
|
15219
|
+
* @throws {RequiredError}
|
|
15220
|
+
* @memberof OrdersApi
|
|
15221
|
+
*/
|
|
15222
|
+
postCreateConsignment(id: number, shipmentId: number, shippingRequestDTO?: ShippingRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShipmentModel, any, {}>>;
|
|
15223
|
+
/**
|
|
15224
|
+
* Create Shipment (Admin)
|
|
15225
|
+
* @summary Create Shipment (Admin)
|
|
15226
|
+
* @param {number} id Order ID
|
|
15227
|
+
* @param {number} batchId Batch ID
|
|
15228
|
+
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
15229
|
+
* @param {*} [options] Override http request option.
|
|
15230
|
+
* @throws {RequiredError}
|
|
15231
|
+
* @memberof OrdersApi
|
|
15232
|
+
*/
|
|
15233
|
+
postCreateShipment(id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShipmentModel, any, {}>>;
|
|
13656
15234
|
/**
|
|
13657
15235
|
* Create An Order (Beta)
|
|
13658
15236
|
* @summary Create An Order (Beta)
|
|
@@ -13663,6 +15241,80 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
13663
15241
|
* @memberof OrdersApi
|
|
13664
15242
|
*/
|
|
13665
15243
|
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
15244
|
+
/**
|
|
15245
|
+
* Issue Credit (Admin)
|
|
15246
|
+
* @summary Issue Credit (Admin)
|
|
15247
|
+
* @param {number} id Order ID
|
|
15248
|
+
* @param {CreditNoteDTO} [creditNoteDTO] Credit Request
|
|
15249
|
+
* @param {*} [options] Override http request option.
|
|
15250
|
+
* @throws {RequiredError}
|
|
15251
|
+
* @memberof OrdersApi
|
|
15252
|
+
*/
|
|
15253
|
+
postIssueCredit(id: number, creditNoteDTO?: CreditNoteDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreditNoteModel, any, {}>>;
|
|
15254
|
+
/**
|
|
15255
|
+
* Print Shipment Label
|
|
15256
|
+
* @summary Print Shipment Label
|
|
15257
|
+
* @param {number} id Order ID
|
|
15258
|
+
* @param {number} shipmentId Shipment ID
|
|
15259
|
+
* @param {PostPrintShippingLabelPrinterEnum} printer Printer
|
|
15260
|
+
* @param {*} [options] Override http request option.
|
|
15261
|
+
* @throws {RequiredError}
|
|
15262
|
+
* @memberof OrdersApi
|
|
15263
|
+
*/
|
|
15264
|
+
postPrintShippingLabel(id: number, shipmentId: number, printer: PostPrintShippingLabelPrinterEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
|
|
15265
|
+
/**
|
|
15266
|
+
* Send Order Email
|
|
15267
|
+
* @summary Send Order Email
|
|
15268
|
+
* @param {number} id Order ID
|
|
15269
|
+
* @param {string} email Email Address
|
|
15270
|
+
* @param {*} [options] Override http request option.
|
|
15271
|
+
* @throws {RequiredError}
|
|
15272
|
+
* @memberof OrdersApi
|
|
15273
|
+
*/
|
|
15274
|
+
postSendOrderEmail(id: number, email: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
15275
|
+
/**
|
|
15276
|
+
* Send Supplier Email
|
|
15277
|
+
* @summary Send Supplier Email
|
|
15278
|
+
* @param {number} id Order ID
|
|
15279
|
+
* @param {number} batchId Batch ID
|
|
15280
|
+
* @param {*} [options] Override http request option.
|
|
15281
|
+
* @throws {RequiredError}
|
|
15282
|
+
* @memberof OrdersApi
|
|
15283
|
+
*/
|
|
15284
|
+
postSendSupplierEmail(id: number, batchId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
15285
|
+
/**
|
|
15286
|
+
* Split Order
|
|
15287
|
+
* @summary Split Order
|
|
15288
|
+
* @param {number} id Order ID
|
|
15289
|
+
* @param {PostSplitOrderRequest} [postSplitOrderRequest]
|
|
15290
|
+
* @param {*} [options] Override http request option.
|
|
15291
|
+
* @throws {RequiredError}
|
|
15292
|
+
* @memberof OrdersApi
|
|
15293
|
+
*/
|
|
15294
|
+
postSplitOrder(id: number, postSplitOrderRequest?: PostSplitOrderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
15295
|
+
/**
|
|
15296
|
+
* Allocate Items To Supplier
|
|
15297
|
+
* @summary Allocate Items To Supplier
|
|
15298
|
+
* @param {number} id Order ID
|
|
15299
|
+
* @param {number} supplierId Supplier ID
|
|
15300
|
+
* @param {PutAllocateItemsRequest} [putAllocateItemsRequest]
|
|
15301
|
+
* @param {*} [options] Override http request option.
|
|
15302
|
+
* @throws {RequiredError}
|
|
15303
|
+
* @memberof OrdersApi
|
|
15304
|
+
*/
|
|
15305
|
+
putAllocateItems(id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
15306
|
+
/**
|
|
15307
|
+
* Update Shipment (Admin)
|
|
15308
|
+
* @summary Update Shipment (Admin)
|
|
15309
|
+
* @param {number} id Order ID
|
|
15310
|
+
* @param {number} batchId Batch ID
|
|
15311
|
+
* @param {number} shipmentId Shipment ID
|
|
15312
|
+
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
15313
|
+
* @param {*} [options] Override http request option.
|
|
15314
|
+
* @throws {RequiredError}
|
|
15315
|
+
* @memberof OrdersApi
|
|
15316
|
+
*/
|
|
15317
|
+
putCreateShipment(id: number, batchId: number, shipmentId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShipmentModel, any, {}>>;
|
|
13666
15318
|
/**
|
|
13667
15319
|
* Update An Order (Admin)
|
|
13668
15320
|
* @summary Update An Order (Admin)
|
|
@@ -13706,6 +15358,15 @@ export declare const GetGetOrdersFilterEnum: {
|
|
|
13706
15358
|
readonly BackOrders: "BACK_ORDERS";
|
|
13707
15359
|
};
|
|
13708
15360
|
export type GetGetOrdersFilterEnum = typeof GetGetOrdersFilterEnum[keyof typeof GetGetOrdersFilterEnum];
|
|
15361
|
+
/**
|
|
15362
|
+
* @export
|
|
15363
|
+
*/
|
|
15364
|
+
export declare const PostPrintShippingLabelPrinterEnum: {
|
|
15365
|
+
readonly NUMBER_1: 1;
|
|
15366
|
+
readonly NUMBER_2: 2;
|
|
15367
|
+
readonly NUMBER_3: 3;
|
|
15368
|
+
};
|
|
15369
|
+
export type PostPrintShippingLabelPrinterEnum = typeof PostPrintShippingLabelPrinterEnum[keyof typeof PostPrintShippingLabelPrinterEnum];
|
|
13709
15370
|
/**
|
|
13710
15371
|
* PricingApi - axios parameter creator
|
|
13711
15372
|
* @export
|