yellowgrid-api-ts 3.2.60 → 3.2.61-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 +2464 -213
- 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 +1771 -106
- package/dist/api.js +1492 -106
- 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 +861 -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,25 @@ 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 {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
14489
|
+
* @param {*} [options] Override http request option.
|
|
14490
|
+
* @throws {RequiredError}
|
|
14491
|
+
*/
|
|
14492
|
+
deleteDeleteBatch: (id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13356
14493
|
/**
|
|
13357
14494
|
* Delete Orders (Beta)
|
|
13358
14495
|
* @summary Delete Orders (Beta)
|
|
@@ -13369,6 +14506,14 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
13369
14506
|
* @throws {RequiredError}
|
|
13370
14507
|
*/
|
|
13371
14508
|
getGetAdminEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14509
|
+
/**
|
|
14510
|
+
* Get Order Details (Admin)
|
|
14511
|
+
* @summary Get Order Details (Admin)
|
|
14512
|
+
* @param {number} id Order ID
|
|
14513
|
+
* @param {*} [options] Override http request option.
|
|
14514
|
+
* @throws {RequiredError}
|
|
14515
|
+
*/
|
|
14516
|
+
getGetAdminOrderDetails: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13372
14517
|
/**
|
|
13373
14518
|
* Get Editable Order (Beta)
|
|
13374
14519
|
* @summary Get Editable Order (Beta)
|
|
@@ -13377,6 +14522,14 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
13377
14522
|
* @throws {RequiredError}
|
|
13378
14523
|
*/
|
|
13379
14524
|
getGetEditableOrder: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14525
|
+
/**
|
|
14526
|
+
* Download Order PDF
|
|
14527
|
+
* @summary Download Order PDF
|
|
14528
|
+
* @param {number} id Order ID
|
|
14529
|
+
* @param {*} [options] Override http request option.
|
|
14530
|
+
* @throws {RequiredError}
|
|
14531
|
+
*/
|
|
14532
|
+
getGetOrderPdf: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13380
14533
|
/**
|
|
13381
14534
|
* Get Orders (Beta)
|
|
13382
14535
|
* @summary Get Orders (Beta)
|
|
@@ -13391,6 +14544,15 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
13391
14544
|
* @throws {RequiredError}
|
|
13392
14545
|
*/
|
|
13393
14546
|
getGetOrders: (pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14547
|
+
/**
|
|
14548
|
+
* Add Order Note
|
|
14549
|
+
* @summary Add Order Note
|
|
14550
|
+
* @param {number} id Order ID
|
|
14551
|
+
* @param {PostAddOrderNoteRequest} [postAddOrderNoteRequest]
|
|
14552
|
+
* @param {*} [options] Override http request option.
|
|
14553
|
+
* @throws {RequiredError}
|
|
14554
|
+
*/
|
|
14555
|
+
postAddOrderNote: (id: number, postAddOrderNoteRequest?: PostAddOrderNoteRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13394
14556
|
/**
|
|
13395
14557
|
* Create An Order (Admin)
|
|
13396
14558
|
* @summary Create An Order (Admin)
|
|
@@ -13400,6 +14562,26 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
13400
14562
|
* @throws {RequiredError}
|
|
13401
14563
|
*/
|
|
13402
14564
|
postCreateAdminOrder: (readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14565
|
+
/**
|
|
14566
|
+
* Create Shipping Consignment
|
|
14567
|
+
* @summary Create Shipping Consignment
|
|
14568
|
+
* @param {number} id Order ID
|
|
14569
|
+
* @param {number} shipmentId Shipment ID
|
|
14570
|
+
* @param {ShippingRequestDTO} [shippingRequestDTO] Shipping Request
|
|
14571
|
+
* @param {*} [options] Override http request option.
|
|
14572
|
+
* @throws {RequiredError}
|
|
14573
|
+
*/
|
|
14574
|
+
postCreateConsignment: (id: number, shipmentId: number, shippingRequestDTO?: ShippingRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14575
|
+
/**
|
|
14576
|
+
* Create Shipment (Admin)
|
|
14577
|
+
* @summary Create Shipment (Admin)
|
|
14578
|
+
* @param {number} id Order ID
|
|
14579
|
+
* @param {number} batchId Batch ID
|
|
14580
|
+
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
14581
|
+
* @param {*} [options] Override http request option.
|
|
14582
|
+
* @throws {RequiredError}
|
|
14583
|
+
*/
|
|
14584
|
+
postCreateShipment: (id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13403
14585
|
/**
|
|
13404
14586
|
* Create An Order (Beta)
|
|
13405
14587
|
* @summary Create An Order (Beta)
|
|
@@ -13409,6 +14591,73 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
13409
14591
|
* @throws {RequiredError}
|
|
13410
14592
|
*/
|
|
13411
14593
|
postGetOrders: (readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14594
|
+
/**
|
|
14595
|
+
* Issue Credit (Admin)
|
|
14596
|
+
* @summary Issue Credit (Admin)
|
|
14597
|
+
* @param {number} id Order ID
|
|
14598
|
+
* @param {CreditNoteDTO} [creditNoteDTO] Credit Request
|
|
14599
|
+
* @param {*} [options] Override http request option.
|
|
14600
|
+
* @throws {RequiredError}
|
|
14601
|
+
*/
|
|
14602
|
+
postIssueCredit: (id: number, creditNoteDTO?: CreditNoteDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14603
|
+
/**
|
|
14604
|
+
* Print Shipment Label
|
|
14605
|
+
* @summary Print Shipment Label
|
|
14606
|
+
* @param {number} id Order ID
|
|
14607
|
+
* @param {number} shipmentId Shipment ID
|
|
14608
|
+
* @param {PostPrintShippingLabelPrinterEnum} printer Printer
|
|
14609
|
+
* @param {*} [options] Override http request option.
|
|
14610
|
+
* @throws {RequiredError}
|
|
14611
|
+
*/
|
|
14612
|
+
postPrintShippingLabel: (id: number, shipmentId: number, printer: PostPrintShippingLabelPrinterEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14613
|
+
/**
|
|
14614
|
+
* Send Order Email
|
|
14615
|
+
* @summary Send Order Email
|
|
14616
|
+
* @param {number} id Order ID
|
|
14617
|
+
* @param {string} email Email Address
|
|
14618
|
+
* @param {*} [options] Override http request option.
|
|
14619
|
+
* @throws {RequiredError}
|
|
14620
|
+
*/
|
|
14621
|
+
postSendOrderEmail: (id: number, email: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14622
|
+
/**
|
|
14623
|
+
* Send Supplier Email
|
|
14624
|
+
* @summary Send Supplier Email
|
|
14625
|
+
* @param {number} id Order ID
|
|
14626
|
+
* @param {number} batchId Batch ID
|
|
14627
|
+
* @param {*} [options] Override http request option.
|
|
14628
|
+
* @throws {RequiredError}
|
|
14629
|
+
*/
|
|
14630
|
+
postSendSupplierEmail: (id: number, batchId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14631
|
+
/**
|
|
14632
|
+
* Split Order
|
|
14633
|
+
* @summary Split Order
|
|
14634
|
+
* @param {number} id Order ID
|
|
14635
|
+
* @param {PostSplitOrderRequest} [postSplitOrderRequest]
|
|
14636
|
+
* @param {*} [options] Override http request option.
|
|
14637
|
+
* @throws {RequiredError}
|
|
14638
|
+
*/
|
|
14639
|
+
postSplitOrder: (id: number, postSplitOrderRequest?: PostSplitOrderRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14640
|
+
/**
|
|
14641
|
+
* Allocate Items To Supplier
|
|
14642
|
+
* @summary Allocate Items To Supplier
|
|
14643
|
+
* @param {number} id Order ID
|
|
14644
|
+
* @param {number} supplierId Supplier ID
|
|
14645
|
+
* @param {PutAllocateItemsRequest} [putAllocateItemsRequest]
|
|
14646
|
+
* @param {*} [options] Override http request option.
|
|
14647
|
+
* @throws {RequiredError}
|
|
14648
|
+
*/
|
|
14649
|
+
putAllocateItems: (id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14650
|
+
/**
|
|
14651
|
+
* Update Shipment (Admin)
|
|
14652
|
+
* @summary Update Shipment (Admin)
|
|
14653
|
+
* @param {number} id Order ID
|
|
14654
|
+
* @param {number} batchId Batch ID
|
|
14655
|
+
* @param {number} shipmentId Shipment ID
|
|
14656
|
+
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
14657
|
+
* @param {*} [options] Override http request option.
|
|
14658
|
+
* @throws {RequiredError}
|
|
14659
|
+
*/
|
|
14660
|
+
putCreateShipment: (id: number, batchId: number, shipmentId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13412
14661
|
/**
|
|
13413
14662
|
* Update An Order (Admin)
|
|
13414
14663
|
* @summary Update An Order (Admin)
|
|
@@ -13435,6 +14684,25 @@ export declare const OrdersApiAxiosParamCreator: (configuration?: Configuration)
|
|
|
13435
14684
|
* @export
|
|
13436
14685
|
*/
|
|
13437
14686
|
export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
14687
|
+
/**
|
|
14688
|
+
* Delete Shipment (Admin)
|
|
14689
|
+
* @summary Delete Shipment (Admin)
|
|
14690
|
+
* @param {number} id Order ID
|
|
14691
|
+
* @param {number} batchId Batch ID
|
|
14692
|
+
* @param {number} shipmentId Shipment ID
|
|
14693
|
+
* @param {*} [options] Override http request option.
|
|
14694
|
+
* @throws {RequiredError}
|
|
14695
|
+
*/
|
|
14696
|
+
deleteCreateShipment(id: number, batchId: number, shipmentId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14697
|
+
/**
|
|
14698
|
+
* Delete Batch (Admin)
|
|
14699
|
+
* @param {number} id Order ID
|
|
14700
|
+
* @param {number} batchId Batch ID
|
|
14701
|
+
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
14702
|
+
* @param {*} [options] Override http request option.
|
|
14703
|
+
* @throws {RequiredError}
|
|
14704
|
+
*/
|
|
14705
|
+
deleteDeleteBatch(id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
13438
14706
|
/**
|
|
13439
14707
|
* Delete Orders (Beta)
|
|
13440
14708
|
* @summary Delete Orders (Beta)
|
|
@@ -13451,6 +14719,14 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
13451
14719
|
* @throws {RequiredError}
|
|
13452
14720
|
*/
|
|
13453
14721
|
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminOrderRequestDTO>>;
|
|
14722
|
+
/**
|
|
14723
|
+
* Get Order Details (Admin)
|
|
14724
|
+
* @summary Get Order Details (Admin)
|
|
14725
|
+
* @param {number} id Order ID
|
|
14726
|
+
* @param {*} [options] Override http request option.
|
|
14727
|
+
* @throws {RequiredError}
|
|
14728
|
+
*/
|
|
14729
|
+
getGetAdminOrderDetails(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<OrderDetailsDTO>>;
|
|
13454
14730
|
/**
|
|
13455
14731
|
* Get Editable Order (Beta)
|
|
13456
14732
|
* @summary Get Editable Order (Beta)
|
|
@@ -13459,6 +14735,14 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
13459
14735
|
* @throws {RequiredError}
|
|
13460
14736
|
*/
|
|
13461
14737
|
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<DetailedOrderRequestDTO>>;
|
|
14738
|
+
/**
|
|
14739
|
+
* Download Order PDF
|
|
14740
|
+
* @summary Download Order PDF
|
|
14741
|
+
* @param {number} id Order ID
|
|
14742
|
+
* @param {*} [options] Override http request option.
|
|
14743
|
+
* @throws {RequiredError}
|
|
14744
|
+
*/
|
|
14745
|
+
getGetOrderPdf(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
13462
14746
|
/**
|
|
13463
14747
|
* Get Orders (Beta)
|
|
13464
14748
|
* @summary Get Orders (Beta)
|
|
@@ -13473,6 +14757,15 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
13473
14757
|
* @throws {RequiredError}
|
|
13474
14758
|
*/
|
|
13475
14759
|
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>>;
|
|
14760
|
+
/**
|
|
14761
|
+
* Add Order Note
|
|
14762
|
+
* @summary Add Order Note
|
|
14763
|
+
* @param {number} id Order ID
|
|
14764
|
+
* @param {PostAddOrderNoteRequest} [postAddOrderNoteRequest]
|
|
14765
|
+
* @param {*} [options] Override http request option.
|
|
14766
|
+
* @throws {RequiredError}
|
|
14767
|
+
*/
|
|
14768
|
+
postAddOrderNote(id: number, postAddOrderNoteRequest?: PostAddOrderNoteRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
13476
14769
|
/**
|
|
13477
14770
|
* Create An Order (Admin)
|
|
13478
14771
|
* @summary Create An Order (Admin)
|
|
@@ -13482,6 +14775,26 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
13482
14775
|
* @throws {RequiredError}
|
|
13483
14776
|
*/
|
|
13484
14777
|
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
14778
|
+
/**
|
|
14779
|
+
* Create Shipping Consignment
|
|
14780
|
+
* @summary Create Shipping Consignment
|
|
14781
|
+
* @param {number} id Order ID
|
|
14782
|
+
* @param {number} shipmentId Shipment ID
|
|
14783
|
+
* @param {ShippingRequestDTO} [shippingRequestDTO] Shipping Request
|
|
14784
|
+
* @param {*} [options] Override http request option.
|
|
14785
|
+
* @throws {RequiredError}
|
|
14786
|
+
*/
|
|
14787
|
+
postCreateConsignment(id: number, shipmentId: number, shippingRequestDTO?: ShippingRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShipmentModel>>;
|
|
14788
|
+
/**
|
|
14789
|
+
* Create Shipment (Admin)
|
|
14790
|
+
* @summary Create Shipment (Admin)
|
|
14791
|
+
* @param {number} id Order ID
|
|
14792
|
+
* @param {number} batchId Batch ID
|
|
14793
|
+
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
14794
|
+
* @param {*} [options] Override http request option.
|
|
14795
|
+
* @throws {RequiredError}
|
|
14796
|
+
*/
|
|
14797
|
+
postCreateShipment(id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShipmentModel>>;
|
|
13485
14798
|
/**
|
|
13486
14799
|
* Create An Order (Beta)
|
|
13487
14800
|
* @summary Create An Order (Beta)
|
|
@@ -13491,6 +14804,73 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
13491
14804
|
* @throws {RequiredError}
|
|
13492
14805
|
*/
|
|
13493
14806
|
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
14807
|
+
/**
|
|
14808
|
+
* Issue Credit (Admin)
|
|
14809
|
+
* @summary Issue Credit (Admin)
|
|
14810
|
+
* @param {number} id Order ID
|
|
14811
|
+
* @param {CreditNoteDTO} [creditNoteDTO] Credit Request
|
|
14812
|
+
* @param {*} [options] Override http request option.
|
|
14813
|
+
* @throws {RequiredError}
|
|
14814
|
+
*/
|
|
14815
|
+
postIssueCredit(id: number, creditNoteDTO?: CreditNoteDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CreditNoteModel>>;
|
|
14816
|
+
/**
|
|
14817
|
+
* Print Shipment Label
|
|
14818
|
+
* @summary Print Shipment Label
|
|
14819
|
+
* @param {number} id Order ID
|
|
14820
|
+
* @param {number} shipmentId Shipment ID
|
|
14821
|
+
* @param {PostPrintShippingLabelPrinterEnum} printer Printer
|
|
14822
|
+
* @param {*} [options] Override http request option.
|
|
14823
|
+
* @throws {RequiredError}
|
|
14824
|
+
*/
|
|
14825
|
+
postPrintShippingLabel(id: number, shipmentId: number, printer: PostPrintShippingLabelPrinterEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<File>>;
|
|
14826
|
+
/**
|
|
14827
|
+
* Send Order Email
|
|
14828
|
+
* @summary Send Order Email
|
|
14829
|
+
* @param {number} id Order ID
|
|
14830
|
+
* @param {string} email Email Address
|
|
14831
|
+
* @param {*} [options] Override http request option.
|
|
14832
|
+
* @throws {RequiredError}
|
|
14833
|
+
*/
|
|
14834
|
+
postSendOrderEmail(id: number, email: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14835
|
+
/**
|
|
14836
|
+
* Send Supplier Email
|
|
14837
|
+
* @summary Send Supplier Email
|
|
14838
|
+
* @param {number} id Order ID
|
|
14839
|
+
* @param {number} batchId Batch ID
|
|
14840
|
+
* @param {*} [options] Override http request option.
|
|
14841
|
+
* @throws {RequiredError}
|
|
14842
|
+
*/
|
|
14843
|
+
postSendSupplierEmail(id: number, batchId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14844
|
+
/**
|
|
14845
|
+
* Split Order
|
|
14846
|
+
* @summary Split Order
|
|
14847
|
+
* @param {number} id Order ID
|
|
14848
|
+
* @param {PostSplitOrderRequest} [postSplitOrderRequest]
|
|
14849
|
+
* @param {*} [options] Override http request option.
|
|
14850
|
+
* @throws {RequiredError}
|
|
14851
|
+
*/
|
|
14852
|
+
postSplitOrder(id: number, postSplitOrderRequest?: PostSplitOrderRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<OrderSummaryDTO>>>;
|
|
14853
|
+
/**
|
|
14854
|
+
* Allocate Items To Supplier
|
|
14855
|
+
* @summary Allocate Items To Supplier
|
|
14856
|
+
* @param {number} id Order ID
|
|
14857
|
+
* @param {number} supplierId Supplier ID
|
|
14858
|
+
* @param {PutAllocateItemsRequest} [putAllocateItemsRequest]
|
|
14859
|
+
* @param {*} [options] Override http request option.
|
|
14860
|
+
* @throws {RequiredError}
|
|
14861
|
+
*/
|
|
14862
|
+
putAllocateItems(id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
14863
|
+
/**
|
|
14864
|
+
* Update Shipment (Admin)
|
|
14865
|
+
* @summary Update Shipment (Admin)
|
|
14866
|
+
* @param {number} id Order ID
|
|
14867
|
+
* @param {number} batchId Batch ID
|
|
14868
|
+
* @param {number} shipmentId Shipment ID
|
|
14869
|
+
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
14870
|
+
* @param {*} [options] Override http request option.
|
|
14871
|
+
* @throws {RequiredError}
|
|
14872
|
+
*/
|
|
14873
|
+
putCreateShipment(id: number, batchId: number, shipmentId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ShipmentModel>>;
|
|
13494
14874
|
/**
|
|
13495
14875
|
* Update An Order (Admin)
|
|
13496
14876
|
* @summary Update An Order (Admin)
|
|
@@ -13517,6 +14897,25 @@ export declare const OrdersApiFp: (configuration?: Configuration) => {
|
|
|
13517
14897
|
* @export
|
|
13518
14898
|
*/
|
|
13519
14899
|
export declare const OrdersApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14900
|
+
/**
|
|
14901
|
+
* Delete Shipment (Admin)
|
|
14902
|
+
* @summary Delete Shipment (Admin)
|
|
14903
|
+
* @param {number} id Order ID
|
|
14904
|
+
* @param {number} batchId Batch ID
|
|
14905
|
+
* @param {number} shipmentId Shipment ID
|
|
14906
|
+
* @param {*} [options] Override http request option.
|
|
14907
|
+
* @throws {RequiredError}
|
|
14908
|
+
*/
|
|
14909
|
+
deleteCreateShipment(id: number, batchId: number, shipmentId: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
14910
|
+
/**
|
|
14911
|
+
* Delete Batch (Admin)
|
|
14912
|
+
* @param {number} id Order ID
|
|
14913
|
+
* @param {number} batchId Batch ID
|
|
14914
|
+
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
14915
|
+
* @param {*} [options] Override http request option.
|
|
14916
|
+
* @throws {RequiredError}
|
|
14917
|
+
*/
|
|
14918
|
+
deleteDeleteBatch(id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
13520
14919
|
/**
|
|
13521
14920
|
* Delete Orders (Beta)
|
|
13522
14921
|
* @summary Delete Orders (Beta)
|
|
@@ -13533,6 +14932,14 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
13533
14932
|
* @throws {RequiredError}
|
|
13534
14933
|
*/
|
|
13535
14934
|
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<AdminOrderRequestDTO>;
|
|
14935
|
+
/**
|
|
14936
|
+
* Get Order Details (Admin)
|
|
14937
|
+
* @summary Get Order Details (Admin)
|
|
14938
|
+
* @param {number} id Order ID
|
|
14939
|
+
* @param {*} [options] Override http request option.
|
|
14940
|
+
* @throws {RequiredError}
|
|
14941
|
+
*/
|
|
14942
|
+
getGetAdminOrderDetails(id: number, options?: RawAxiosRequestConfig): AxiosPromise<OrderDetailsDTO>;
|
|
13536
14943
|
/**
|
|
13537
14944
|
* Get Editable Order (Beta)
|
|
13538
14945
|
* @summary Get Editable Order (Beta)
|
|
@@ -13541,6 +14948,14 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
13541
14948
|
* @throws {RequiredError}
|
|
13542
14949
|
*/
|
|
13543
14950
|
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): AxiosPromise<DetailedOrderRequestDTO>;
|
|
14951
|
+
/**
|
|
14952
|
+
* Download Order PDF
|
|
14953
|
+
* @summary Download Order PDF
|
|
14954
|
+
* @param {number} id Order ID
|
|
14955
|
+
* @param {*} [options] Override http request option.
|
|
14956
|
+
* @throws {RequiredError}
|
|
14957
|
+
*/
|
|
14958
|
+
getGetOrderPdf(id: number, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
13544
14959
|
/**
|
|
13545
14960
|
* Get Orders (Beta)
|
|
13546
14961
|
* @summary Get Orders (Beta)
|
|
@@ -13555,6 +14970,15 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
13555
14970
|
* @throws {RequiredError}
|
|
13556
14971
|
*/
|
|
13557
14972
|
getGetOrders(pageSize?: number, page?: number, search?: string, fulfillable?: boolean | null, status?: GetGetOrdersStatusEnum, filter?: GetGetOrdersFilterEnum, customerId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<OrderSummariesModel>;
|
|
14973
|
+
/**
|
|
14974
|
+
* Add Order Note
|
|
14975
|
+
* @summary Add Order Note
|
|
14976
|
+
* @param {number} id Order ID
|
|
14977
|
+
* @param {PostAddOrderNoteRequest} [postAddOrderNoteRequest]
|
|
14978
|
+
* @param {*} [options] Override http request option.
|
|
14979
|
+
* @throws {RequiredError}
|
|
14980
|
+
*/
|
|
14981
|
+
postAddOrderNote(id: number, postAddOrderNoteRequest?: PostAddOrderNoteRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
13558
14982
|
/**
|
|
13559
14983
|
* Create An Order (Admin)
|
|
13560
14984
|
* @summary Create An Order (Admin)
|
|
@@ -13564,6 +14988,26 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
13564
14988
|
* @throws {RequiredError}
|
|
13565
14989
|
*/
|
|
13566
14990
|
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
14991
|
+
/**
|
|
14992
|
+
* Create Shipping Consignment
|
|
14993
|
+
* @summary Create Shipping Consignment
|
|
14994
|
+
* @param {number} id Order ID
|
|
14995
|
+
* @param {number} shipmentId Shipment ID
|
|
14996
|
+
* @param {ShippingRequestDTO} [shippingRequestDTO] Shipping Request
|
|
14997
|
+
* @param {*} [options] Override http request option.
|
|
14998
|
+
* @throws {RequiredError}
|
|
14999
|
+
*/
|
|
15000
|
+
postCreateConsignment(id: number, shipmentId: number, shippingRequestDTO?: ShippingRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShipmentModel>;
|
|
15001
|
+
/**
|
|
15002
|
+
* Create Shipment (Admin)
|
|
15003
|
+
* @summary Create Shipment (Admin)
|
|
15004
|
+
* @param {number} id Order ID
|
|
15005
|
+
* @param {number} batchId Batch ID
|
|
15006
|
+
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
15007
|
+
* @param {*} [options] Override http request option.
|
|
15008
|
+
* @throws {RequiredError}
|
|
15009
|
+
*/
|
|
15010
|
+
postCreateShipment(id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShipmentModel>;
|
|
13567
15011
|
/**
|
|
13568
15012
|
* Create An Order (Beta)
|
|
13569
15013
|
* @summary Create An Order (Beta)
|
|
@@ -13573,6 +15017,73 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
13573
15017
|
* @throws {RequiredError}
|
|
13574
15018
|
*/
|
|
13575
15019
|
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
15020
|
+
/**
|
|
15021
|
+
* Issue Credit (Admin)
|
|
15022
|
+
* @summary Issue Credit (Admin)
|
|
15023
|
+
* @param {number} id Order ID
|
|
15024
|
+
* @param {CreditNoteDTO} [creditNoteDTO] Credit Request
|
|
15025
|
+
* @param {*} [options] Override http request option.
|
|
15026
|
+
* @throws {RequiredError}
|
|
15027
|
+
*/
|
|
15028
|
+
postIssueCredit(id: number, creditNoteDTO?: CreditNoteDTO, options?: RawAxiosRequestConfig): AxiosPromise<CreditNoteModel>;
|
|
15029
|
+
/**
|
|
15030
|
+
* Print Shipment Label
|
|
15031
|
+
* @summary Print Shipment Label
|
|
15032
|
+
* @param {number} id Order ID
|
|
15033
|
+
* @param {number} shipmentId Shipment ID
|
|
15034
|
+
* @param {PostPrintShippingLabelPrinterEnum} printer Printer
|
|
15035
|
+
* @param {*} [options] Override http request option.
|
|
15036
|
+
* @throws {RequiredError}
|
|
15037
|
+
*/
|
|
15038
|
+
postPrintShippingLabel(id: number, shipmentId: number, printer: PostPrintShippingLabelPrinterEnum, options?: RawAxiosRequestConfig): AxiosPromise<File>;
|
|
15039
|
+
/**
|
|
15040
|
+
* Send Order Email
|
|
15041
|
+
* @summary Send Order Email
|
|
15042
|
+
* @param {number} id Order ID
|
|
15043
|
+
* @param {string} email Email Address
|
|
15044
|
+
* @param {*} [options] Override http request option.
|
|
15045
|
+
* @throws {RequiredError}
|
|
15046
|
+
*/
|
|
15047
|
+
postSendOrderEmail(id: number, email: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15048
|
+
/**
|
|
15049
|
+
* Send Supplier Email
|
|
15050
|
+
* @summary Send Supplier Email
|
|
15051
|
+
* @param {number} id Order ID
|
|
15052
|
+
* @param {number} batchId Batch ID
|
|
15053
|
+
* @param {*} [options] Override http request option.
|
|
15054
|
+
* @throws {RequiredError}
|
|
15055
|
+
*/
|
|
15056
|
+
postSendSupplierEmail(id: number, batchId: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15057
|
+
/**
|
|
15058
|
+
* Split Order
|
|
15059
|
+
* @summary Split Order
|
|
15060
|
+
* @param {number} id Order ID
|
|
15061
|
+
* @param {PostSplitOrderRequest} [postSplitOrderRequest]
|
|
15062
|
+
* @param {*} [options] Override http request option.
|
|
15063
|
+
* @throws {RequiredError}
|
|
15064
|
+
*/
|
|
15065
|
+
postSplitOrder(id: number, postSplitOrderRequest?: PostSplitOrderRequest, options?: RawAxiosRequestConfig): AxiosPromise<Array<OrderSummaryDTO>>;
|
|
15066
|
+
/**
|
|
15067
|
+
* Allocate Items To Supplier
|
|
15068
|
+
* @summary Allocate Items To Supplier
|
|
15069
|
+
* @param {number} id Order ID
|
|
15070
|
+
* @param {number} supplierId Supplier ID
|
|
15071
|
+
* @param {PutAllocateItemsRequest} [putAllocateItemsRequest]
|
|
15072
|
+
* @param {*} [options] Override http request option.
|
|
15073
|
+
* @throws {RequiredError}
|
|
15074
|
+
*/
|
|
15075
|
+
putAllocateItems(id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
15076
|
+
/**
|
|
15077
|
+
* Update Shipment (Admin)
|
|
15078
|
+
* @summary Update Shipment (Admin)
|
|
15079
|
+
* @param {number} id Order ID
|
|
15080
|
+
* @param {number} batchId Batch ID
|
|
15081
|
+
* @param {number} shipmentId Shipment ID
|
|
15082
|
+
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
15083
|
+
* @param {*} [options] Override http request option.
|
|
15084
|
+
* @throws {RequiredError}
|
|
15085
|
+
*/
|
|
15086
|
+
putCreateShipment(id: number, batchId: number, shipmentId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<ShipmentModel>;
|
|
13576
15087
|
/**
|
|
13577
15088
|
* Update An Order (Admin)
|
|
13578
15089
|
* @summary Update An Order (Admin)
|
|
@@ -13601,6 +15112,27 @@ export declare const OrdersApiFactory: (configuration?: Configuration, basePath?
|
|
|
13601
15112
|
* @extends {BaseAPI}
|
|
13602
15113
|
*/
|
|
13603
15114
|
export declare class OrdersApi extends BaseAPI {
|
|
15115
|
+
/**
|
|
15116
|
+
* Delete Shipment (Admin)
|
|
15117
|
+
* @summary Delete Shipment (Admin)
|
|
15118
|
+
* @param {number} id Order ID
|
|
15119
|
+
* @param {number} batchId Batch ID
|
|
15120
|
+
* @param {number} shipmentId Shipment ID
|
|
15121
|
+
* @param {*} [options] Override http request option.
|
|
15122
|
+
* @throws {RequiredError}
|
|
15123
|
+
* @memberof OrdersApi
|
|
15124
|
+
*/
|
|
15125
|
+
deleteCreateShipment(id: number, batchId: number, shipmentId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
15126
|
+
/**
|
|
15127
|
+
* Delete Batch (Admin)
|
|
15128
|
+
* @param {number} id Order ID
|
|
15129
|
+
* @param {number} batchId Batch ID
|
|
15130
|
+
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
15131
|
+
* @param {*} [options] Override http request option.
|
|
15132
|
+
* @throws {RequiredError}
|
|
15133
|
+
* @memberof OrdersApi
|
|
15134
|
+
*/
|
|
15135
|
+
deleteDeleteBatch(id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
13604
15136
|
/**
|
|
13605
15137
|
* Delete Orders (Beta)
|
|
13606
15138
|
* @summary Delete Orders (Beta)
|
|
@@ -13619,6 +15151,15 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
13619
15151
|
* @memberof OrdersApi
|
|
13620
15152
|
*/
|
|
13621
15153
|
getGetAdminEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminOrderRequestDTO, any, {}>>;
|
|
15154
|
+
/**
|
|
15155
|
+
* Get Order Details (Admin)
|
|
15156
|
+
* @summary Get Order Details (Admin)
|
|
15157
|
+
* @param {number} id Order ID
|
|
15158
|
+
* @param {*} [options] Override http request option.
|
|
15159
|
+
* @throws {RequiredError}
|
|
15160
|
+
* @memberof OrdersApi
|
|
15161
|
+
*/
|
|
15162
|
+
getGetAdminOrderDetails(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderDetailsDTO, any, {}>>;
|
|
13622
15163
|
/**
|
|
13623
15164
|
* Get Editable Order (Beta)
|
|
13624
15165
|
* @summary Get Editable Order (Beta)
|
|
@@ -13628,6 +15169,15 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
13628
15169
|
* @memberof OrdersApi
|
|
13629
15170
|
*/
|
|
13630
15171
|
getGetEditableOrder(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<DetailedOrderRequestDTO, any, {}>>;
|
|
15172
|
+
/**
|
|
15173
|
+
* Download Order PDF
|
|
15174
|
+
* @summary Download Order PDF
|
|
15175
|
+
* @param {number} id Order ID
|
|
15176
|
+
* @param {*} [options] Override http request option.
|
|
15177
|
+
* @throws {RequiredError}
|
|
15178
|
+
* @memberof OrdersApi
|
|
15179
|
+
*/
|
|
15180
|
+
getGetOrderPdf(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
|
|
13631
15181
|
/**
|
|
13632
15182
|
* Get Orders (Beta)
|
|
13633
15183
|
* @summary Get Orders (Beta)
|
|
@@ -13643,6 +15193,16 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
13643
15193
|
* @memberof OrdersApi
|
|
13644
15194
|
*/
|
|
13645
15195
|
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, {}>>;
|
|
15196
|
+
/**
|
|
15197
|
+
* Add Order Note
|
|
15198
|
+
* @summary Add Order Note
|
|
15199
|
+
* @param {number} id Order ID
|
|
15200
|
+
* @param {PostAddOrderNoteRequest} [postAddOrderNoteRequest]
|
|
15201
|
+
* @param {*} [options] Override http request option.
|
|
15202
|
+
* @throws {RequiredError}
|
|
15203
|
+
* @memberof OrdersApi
|
|
15204
|
+
*/
|
|
15205
|
+
postAddOrderNote(id: number, postAddOrderNoteRequest?: PostAddOrderNoteRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
13646
15206
|
/**
|
|
13647
15207
|
* Create An Order (Admin)
|
|
13648
15208
|
* @summary Create An Order (Admin)
|
|
@@ -13653,6 +15213,28 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
13653
15213
|
* @memberof OrdersApi
|
|
13654
15214
|
*/
|
|
13655
15215
|
postCreateAdminOrder(readonly?: boolean, adminOrderRequestDTO?: AdminOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
15216
|
+
/**
|
|
15217
|
+
* Create Shipping Consignment
|
|
15218
|
+
* @summary Create Shipping Consignment
|
|
15219
|
+
* @param {number} id Order ID
|
|
15220
|
+
* @param {number} shipmentId Shipment ID
|
|
15221
|
+
* @param {ShippingRequestDTO} [shippingRequestDTO] Shipping Request
|
|
15222
|
+
* @param {*} [options] Override http request option.
|
|
15223
|
+
* @throws {RequiredError}
|
|
15224
|
+
* @memberof OrdersApi
|
|
15225
|
+
*/
|
|
15226
|
+
postCreateConsignment(id: number, shipmentId: number, shippingRequestDTO?: ShippingRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShipmentModel, any, {}>>;
|
|
15227
|
+
/**
|
|
15228
|
+
* Create Shipment (Admin)
|
|
15229
|
+
* @summary Create Shipment (Admin)
|
|
15230
|
+
* @param {number} id Order ID
|
|
15231
|
+
* @param {number} batchId Batch ID
|
|
15232
|
+
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
15233
|
+
* @param {*} [options] Override http request option.
|
|
15234
|
+
* @throws {RequiredError}
|
|
15235
|
+
* @memberof OrdersApi
|
|
15236
|
+
*/
|
|
15237
|
+
postCreateShipment(id: number, batchId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShipmentModel, any, {}>>;
|
|
13656
15238
|
/**
|
|
13657
15239
|
* Create An Order (Beta)
|
|
13658
15240
|
* @summary Create An Order (Beta)
|
|
@@ -13663,6 +15245,80 @@ export declare class OrdersApi extends BaseAPI {
|
|
|
13663
15245
|
* @memberof OrdersApi
|
|
13664
15246
|
*/
|
|
13665
15247
|
postGetOrders(readonly?: boolean, customerOrderRequestDTO?: CustomerOrderRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
15248
|
+
/**
|
|
15249
|
+
* Issue Credit (Admin)
|
|
15250
|
+
* @summary Issue Credit (Admin)
|
|
15251
|
+
* @param {number} id Order ID
|
|
15252
|
+
* @param {CreditNoteDTO} [creditNoteDTO] Credit Request
|
|
15253
|
+
* @param {*} [options] Override http request option.
|
|
15254
|
+
* @throws {RequiredError}
|
|
15255
|
+
* @memberof OrdersApi
|
|
15256
|
+
*/
|
|
15257
|
+
postIssueCredit(id: number, creditNoteDTO?: CreditNoteDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CreditNoteModel, any, {}>>;
|
|
15258
|
+
/**
|
|
15259
|
+
* Print Shipment Label
|
|
15260
|
+
* @summary Print Shipment Label
|
|
15261
|
+
* @param {number} id Order ID
|
|
15262
|
+
* @param {number} shipmentId Shipment ID
|
|
15263
|
+
* @param {PostPrintShippingLabelPrinterEnum} printer Printer
|
|
15264
|
+
* @param {*} [options] Override http request option.
|
|
15265
|
+
* @throws {RequiredError}
|
|
15266
|
+
* @memberof OrdersApi
|
|
15267
|
+
*/
|
|
15268
|
+
postPrintShippingLabel(id: number, shipmentId: number, printer: PostPrintShippingLabelPrinterEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<File, any, {}>>;
|
|
15269
|
+
/**
|
|
15270
|
+
* Send Order Email
|
|
15271
|
+
* @summary Send Order Email
|
|
15272
|
+
* @param {number} id Order ID
|
|
15273
|
+
* @param {string} email Email Address
|
|
15274
|
+
* @param {*} [options] Override http request option.
|
|
15275
|
+
* @throws {RequiredError}
|
|
15276
|
+
* @memberof OrdersApi
|
|
15277
|
+
*/
|
|
15278
|
+
postSendOrderEmail(id: number, email: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
15279
|
+
/**
|
|
15280
|
+
* Send Supplier Email
|
|
15281
|
+
* @summary Send Supplier Email
|
|
15282
|
+
* @param {number} id Order ID
|
|
15283
|
+
* @param {number} batchId Batch ID
|
|
15284
|
+
* @param {*} [options] Override http request option.
|
|
15285
|
+
* @throws {RequiredError}
|
|
15286
|
+
* @memberof OrdersApi
|
|
15287
|
+
*/
|
|
15288
|
+
postSendSupplierEmail(id: number, batchId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
15289
|
+
/**
|
|
15290
|
+
* Split Order
|
|
15291
|
+
* @summary Split Order
|
|
15292
|
+
* @param {number} id Order ID
|
|
15293
|
+
* @param {PostSplitOrderRequest} [postSplitOrderRequest]
|
|
15294
|
+
* @param {*} [options] Override http request option.
|
|
15295
|
+
* @throws {RequiredError}
|
|
15296
|
+
* @memberof OrdersApi
|
|
15297
|
+
*/
|
|
15298
|
+
postSplitOrder(id: number, postSplitOrderRequest?: PostSplitOrderRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<OrderSummaryDTO[], any, {}>>;
|
|
15299
|
+
/**
|
|
15300
|
+
* Allocate Items To Supplier
|
|
15301
|
+
* @summary Allocate Items To Supplier
|
|
15302
|
+
* @param {number} id Order ID
|
|
15303
|
+
* @param {number} supplierId Supplier ID
|
|
15304
|
+
* @param {PutAllocateItemsRequest} [putAllocateItemsRequest]
|
|
15305
|
+
* @param {*} [options] Override http request option.
|
|
15306
|
+
* @throws {RequiredError}
|
|
15307
|
+
* @memberof OrdersApi
|
|
15308
|
+
*/
|
|
15309
|
+
putAllocateItems(id: number, supplierId: number, putAllocateItemsRequest?: PutAllocateItemsRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
15310
|
+
/**
|
|
15311
|
+
* Update Shipment (Admin)
|
|
15312
|
+
* @summary Update Shipment (Admin)
|
|
15313
|
+
* @param {number} id Order ID
|
|
15314
|
+
* @param {number} batchId Batch ID
|
|
15315
|
+
* @param {number} shipmentId Shipment ID
|
|
15316
|
+
* @param {ShipmentRequestDTO} [shipmentRequestDTO] Shipment Request
|
|
15317
|
+
* @param {*} [options] Override http request option.
|
|
15318
|
+
* @throws {RequiredError}
|
|
15319
|
+
* @memberof OrdersApi
|
|
15320
|
+
*/
|
|
15321
|
+
putCreateShipment(id: number, batchId: number, shipmentId: number, shipmentRequestDTO?: ShipmentRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ShipmentModel, any, {}>>;
|
|
13666
15322
|
/**
|
|
13667
15323
|
* Update An Order (Admin)
|
|
13668
15324
|
* @summary Update An Order (Admin)
|
|
@@ -13706,6 +15362,15 @@ export declare const GetGetOrdersFilterEnum: {
|
|
|
13706
15362
|
readonly BackOrders: "BACK_ORDERS";
|
|
13707
15363
|
};
|
|
13708
15364
|
export type GetGetOrdersFilterEnum = typeof GetGetOrdersFilterEnum[keyof typeof GetGetOrdersFilterEnum];
|
|
15365
|
+
/**
|
|
15366
|
+
* @export
|
|
15367
|
+
*/
|
|
15368
|
+
export declare const PostPrintShippingLabelPrinterEnum: {
|
|
15369
|
+
readonly NUMBER_1: 1;
|
|
15370
|
+
readonly NUMBER_2: 2;
|
|
15371
|
+
readonly NUMBER_3: 3;
|
|
15372
|
+
};
|
|
15373
|
+
export type PostPrintShippingLabelPrinterEnum = typeof PostPrintShippingLabelPrinterEnum[keyof typeof PostPrintShippingLabelPrinterEnum];
|
|
13709
15374
|
/**
|
|
13710
15375
|
* PricingApi - axios parameter creator
|
|
13711
15376
|
* @export
|