yellowgrid-api-ts 3.2.170-dev.0 → 3.2.172-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 +25 -3
- package/README.md +54 -3
- package/api.ts +3357 -512
- package/dist/api.d.ts +1958 -214
- package/dist/api.js +2693 -273
- package/docs/AbstractItemDiscountModel.md +21 -0
- package/docs/AccountAddressesDTO.md +25 -0
- package/docs/AccountFinanceDTO.md +37 -0
- package/docs/AccountsApi.md +1427 -53
- package/docs/AddressDTO.md +31 -0
- package/docs/AdminUserModel.md +2 -0
- package/docs/CRMApi.md +120 -0
- package/docs/Class3CXApi.md +48 -0
- package/docs/Class3CXInstallationsApi.md +55 -0
- package/docs/CreateCrmNoteBody.md +20 -0
- package/docs/CreditAccountEntity.md +4 -0
- package/docs/CrmActivitiesResponseDTO.md +23 -0
- package/docs/CrmActivityDTO.md +33 -0
- package/docs/CrmDateActivitiesDTO.md +23 -0
- package/docs/CrmNoteEntity.md +39 -0
- package/docs/CrmNoteModel.md +39 -0
- package/docs/CustomerListAccountDTO.md +45 -0
- package/docs/DetailedItemRequestDTO.md +2 -0
- package/docs/NumberPortAdminNoteBody.md +20 -0
- package/docs/NumberPortingApi.md +5 -5
- package/docs/OAuth20Api.md +48 -0
- package/docs/PartnerDTO.md +39 -0
- package/docs/PatchUpdateAccountCnameRequest.md +20 -0
- package/docs/PatchUpdateAccountCompanyNumberRequest.md +20 -0
- package/docs/PatchUpdateAccountPhoneRequest.md +20 -0
- package/docs/PatchUpdateAccountVatNumberRequest.md +20 -0
- package/docs/PatchUpdateCreditLimitRequest.md +20 -0
- package/docs/PatchUpdatePriceListRequest.md +20 -0
- package/docs/PatchUpdateSipChannelCostRequest.md +20 -0
- package/docs/PatchUpdateTcxHostingPriceListRequest.md +20 -0
- package/docs/PatchUpdateTcxPartnerIdRequest.md +20 -0
- package/docs/PortalAccountModel.md +4 -2
- package/docs/PostSendWelcomeEmailRequest.md +20 -0
- package/docs/ProductSearchDTO.md +37 -0
- package/docs/ProductSummaryDTO.md +2 -0
- package/docs/ProductsApi.md +10 -10
- package/docs/ProspectDTO.md +2 -0
- package/docs/RecordingBackupAzureModel.md +2 -0
- package/docs/TableHistoryEntity.md +35 -0
- package/package.json +1 -1
package/dist/api.d.ts
CHANGED
|
@@ -13,6 +13,19 @@ import type { Configuration } from './configuration';
|
|
|
13
13
|
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
14
14
|
import type { RequestArgs } from './base';
|
|
15
15
|
import { BaseAPI } from './base';
|
|
16
|
+
/**
|
|
17
|
+
* Item Discount
|
|
18
|
+
* @export
|
|
19
|
+
* @interface AbstractItemDiscountModel
|
|
20
|
+
*/
|
|
21
|
+
export interface AbstractItemDiscountModel {
|
|
22
|
+
/**
|
|
23
|
+
* Description
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof AbstractItemDiscountModel
|
|
26
|
+
*/
|
|
27
|
+
'description'?: string;
|
|
28
|
+
}
|
|
16
29
|
/**
|
|
17
30
|
* Order Request
|
|
18
31
|
* @export
|
|
@@ -62,6 +75,31 @@ export interface AbstractOrderRequestDTO {
|
|
|
62
75
|
*/
|
|
63
76
|
'quote'?: boolean;
|
|
64
77
|
}
|
|
78
|
+
/**
|
|
79
|
+
* Account Addresses
|
|
80
|
+
* @export
|
|
81
|
+
* @interface AccountAddressesDTO
|
|
82
|
+
*/
|
|
83
|
+
export interface AccountAddressesDTO {
|
|
84
|
+
/**
|
|
85
|
+
*
|
|
86
|
+
* @type {AddressDTO}
|
|
87
|
+
* @memberof AccountAddressesDTO
|
|
88
|
+
*/
|
|
89
|
+
'billingAddress'?: AddressDTO;
|
|
90
|
+
/**
|
|
91
|
+
*
|
|
92
|
+
* @type {AddressDTO}
|
|
93
|
+
* @memberof AccountAddressesDTO
|
|
94
|
+
*/
|
|
95
|
+
'shippingAddress'?: AddressDTO;
|
|
96
|
+
/**
|
|
97
|
+
* Addresses
|
|
98
|
+
* @type {Array<AddressDTO>}
|
|
99
|
+
* @memberof AccountAddressesDTO
|
|
100
|
+
*/
|
|
101
|
+
'previousShippingAddreses'?: Array<AddressDTO>;
|
|
102
|
+
}
|
|
65
103
|
/**
|
|
66
104
|
* AccountContactsEntity
|
|
67
105
|
* @export
|
|
@@ -360,6 +398,67 @@ export interface AccountDetailedSummaryDTO {
|
|
|
360
398
|
*/
|
|
361
399
|
'balance'?: number | null;
|
|
362
400
|
}
|
|
401
|
+
/**
|
|
402
|
+
* Account Finance DTO
|
|
403
|
+
* @export
|
|
404
|
+
* @interface AccountFinanceDTO
|
|
405
|
+
*/
|
|
406
|
+
export interface AccountFinanceDTO {
|
|
407
|
+
/**
|
|
408
|
+
* Account ID
|
|
409
|
+
* @type {number}
|
|
410
|
+
* @memberof AccountFinanceDTO
|
|
411
|
+
*/
|
|
412
|
+
'id'?: number;
|
|
413
|
+
/**
|
|
414
|
+
* Account Xero ID
|
|
415
|
+
* @type {string}
|
|
416
|
+
* @memberof AccountFinanceDTO
|
|
417
|
+
*/
|
|
418
|
+
'xeroId'?: string;
|
|
419
|
+
/**
|
|
420
|
+
* Account Number
|
|
421
|
+
* @type {string}
|
|
422
|
+
* @memberof AccountFinanceDTO
|
|
423
|
+
*/
|
|
424
|
+
'accountNumber'?: string;
|
|
425
|
+
/**
|
|
426
|
+
* Credit Limit
|
|
427
|
+
* @type {number}
|
|
428
|
+
* @memberof AccountFinanceDTO
|
|
429
|
+
*/
|
|
430
|
+
'creditLimit'?: number;
|
|
431
|
+
/**
|
|
432
|
+
* Balance Used
|
|
433
|
+
* @type {number}
|
|
434
|
+
* @memberof AccountFinanceDTO
|
|
435
|
+
*/
|
|
436
|
+
'balance'?: number;
|
|
437
|
+
/**
|
|
438
|
+
* Overdue Amount
|
|
439
|
+
* @type {number}
|
|
440
|
+
* @memberof AccountFinanceDTO
|
|
441
|
+
*/
|
|
442
|
+
'overdue'?: number;
|
|
443
|
+
/**
|
|
444
|
+
*
|
|
445
|
+
* @type {CustomerPriceListEnum}
|
|
446
|
+
* @memberof AccountFinanceDTO
|
|
447
|
+
*/
|
|
448
|
+
'priceList'?: CustomerPriceListEnum;
|
|
449
|
+
/**
|
|
450
|
+
* SIP Trunk Channel Cost
|
|
451
|
+
* @type {number}
|
|
452
|
+
* @memberof AccountFinanceDTO
|
|
453
|
+
*/
|
|
454
|
+
'sipChannelCost'?: number;
|
|
455
|
+
/**
|
|
456
|
+
* Xero Contact URL
|
|
457
|
+
* @type {string}
|
|
458
|
+
* @memberof AccountFinanceDTO
|
|
459
|
+
*/
|
|
460
|
+
'xeroUrl'?: string;
|
|
461
|
+
}
|
|
363
462
|
/**
|
|
364
463
|
* New Account Request
|
|
365
464
|
* @export
|
|
@@ -525,6 +624,49 @@ export interface AccountsResponseModel {
|
|
|
525
624
|
*/
|
|
526
625
|
'totalResults'?: number;
|
|
527
626
|
}
|
|
627
|
+
/**
|
|
628
|
+
* Address
|
|
629
|
+
* @export
|
|
630
|
+
* @interface AddressDTO
|
|
631
|
+
*/
|
|
632
|
+
export interface AddressDTO {
|
|
633
|
+
/**
|
|
634
|
+
* Address Line 1
|
|
635
|
+
* @type {string}
|
|
636
|
+
* @memberof AddressDTO
|
|
637
|
+
*/
|
|
638
|
+
'addressLine1'?: string;
|
|
639
|
+
/**
|
|
640
|
+
* Address Line 2
|
|
641
|
+
* @type {string}
|
|
642
|
+
* @memberof AddressDTO
|
|
643
|
+
*/
|
|
644
|
+
'addressLine2'?: string;
|
|
645
|
+
/**
|
|
646
|
+
* City
|
|
647
|
+
* @type {string}
|
|
648
|
+
* @memberof AddressDTO
|
|
649
|
+
*/
|
|
650
|
+
'city'?: string;
|
|
651
|
+
/**
|
|
652
|
+
* Region
|
|
653
|
+
* @type {string}
|
|
654
|
+
* @memberof AddressDTO
|
|
655
|
+
*/
|
|
656
|
+
'region'?: string;
|
|
657
|
+
/**
|
|
658
|
+
* Postal Code
|
|
659
|
+
* @type {string}
|
|
660
|
+
* @memberof AddressDTO
|
|
661
|
+
*/
|
|
662
|
+
'postalCode'?: string;
|
|
663
|
+
/**
|
|
664
|
+
* Country
|
|
665
|
+
* @type {string}
|
|
666
|
+
* @memberof AddressDTO
|
|
667
|
+
*/
|
|
668
|
+
'iso'?: string;
|
|
669
|
+
}
|
|
528
670
|
/**
|
|
529
671
|
* Order Address
|
|
530
672
|
* @export
|
|
@@ -888,6 +1030,12 @@ export type AdminOrderRequestDTOPaymentMethodEnum = typeof AdminOrderRequestDTOP
|
|
|
888
1030
|
* @interface AdminUserModel
|
|
889
1031
|
*/
|
|
890
1032
|
export interface AdminUserModel {
|
|
1033
|
+
/**
|
|
1034
|
+
* ID
|
|
1035
|
+
* @type {number}
|
|
1036
|
+
* @memberof AdminUserModel
|
|
1037
|
+
*/
|
|
1038
|
+
'id'?: number;
|
|
891
1039
|
/**
|
|
892
1040
|
* First Name
|
|
893
1041
|
* @type {string}
|
|
@@ -957,6 +1105,7 @@ export declare const AdminUserModelPermissionsEnum: {
|
|
|
957
1105
|
readonly Technical: "Technical";
|
|
958
1106
|
readonly Privileged: "Privileged";
|
|
959
1107
|
readonly Development: "Development";
|
|
1108
|
+
readonly Finance: "Finance";
|
|
960
1109
|
};
|
|
961
1110
|
export type AdminUserModelPermissionsEnum = typeof AdminUserModelPermissionsEnum[keyof typeof AdminUserModelPermissionsEnum];
|
|
962
1111
|
/**
|
|
@@ -1238,6 +1387,7 @@ export declare const AuditLogEntityTypeEnum: {
|
|
|
1238
1387
|
readonly ApiLog: "api_log";
|
|
1239
1388
|
readonly PopsBatches: "pops_batches";
|
|
1240
1389
|
readonly PopsCourierPrices: "pops_courier_prices";
|
|
1390
|
+
readonly PopsCrmNotes: "pops_crm_notes";
|
|
1241
1391
|
readonly PopsCreditAccounts: "pops_credit_accounts";
|
|
1242
1392
|
readonly PopsCreditNotes: "pops_credit_notes";
|
|
1243
1393
|
readonly PopsCreditNotesItems: "pops_credit_notes_items";
|
|
@@ -1290,6 +1440,7 @@ export declare const AuditLogEntityTypeEnum: {
|
|
|
1290
1440
|
readonly PopsStockTransactions: "pops_stock_transactions";
|
|
1291
1441
|
readonly PopsSuppliers: "pops_suppliers";
|
|
1292
1442
|
readonly PopsSupplierItems: "pops_supplier_items";
|
|
1443
|
+
readonly PopsTableAttribs: "pops_table_attribs";
|
|
1293
1444
|
readonly Pops3cxBackup: "pops_3cx_backup";
|
|
1294
1445
|
readonly Pops3cxBilling: "pops_3cx_billing";
|
|
1295
1446
|
readonly PopsDeadLicences: "pops_dead_licences";
|
|
@@ -1923,6 +2074,19 @@ export interface CourierPriceEntity {
|
|
|
1923
2074
|
*/
|
|
1924
2075
|
'maxKg'?: number;
|
|
1925
2076
|
}
|
|
2077
|
+
/**
|
|
2078
|
+
*
|
|
2079
|
+
* @export
|
|
2080
|
+
* @interface CreateCrmNoteBody
|
|
2081
|
+
*/
|
|
2082
|
+
export interface CreateCrmNoteBody {
|
|
2083
|
+
/**
|
|
2084
|
+
* Note
|
|
2085
|
+
* @type {string}
|
|
2086
|
+
* @memberof CreateCrmNoteBody
|
|
2087
|
+
*/
|
|
2088
|
+
'note'?: string;
|
|
2089
|
+
}
|
|
1926
2090
|
/**
|
|
1927
2091
|
* Credit Account
|
|
1928
2092
|
* @export
|
|
@@ -2055,6 +2219,18 @@ export interface CreditAccountEntity {
|
|
|
2055
2219
|
* @memberof CreditAccountEntity
|
|
2056
2220
|
*/
|
|
2057
2221
|
'prizePromo'?: boolean;
|
|
2222
|
+
/**
|
|
2223
|
+
* Portal Access
|
|
2224
|
+
* @type {boolean}
|
|
2225
|
+
* @memberof CreditAccountEntity
|
|
2226
|
+
*/
|
|
2227
|
+
'portalAccess'?: boolean;
|
|
2228
|
+
/**
|
|
2229
|
+
* CNAME
|
|
2230
|
+
* @type {string}
|
|
2231
|
+
* @memberof CreditAccountEntity
|
|
2232
|
+
*/
|
|
2233
|
+
'cname'?: string;
|
|
2058
2234
|
}
|
|
2059
2235
|
/**
|
|
2060
2236
|
* Credit Note
|
|
@@ -2248,6 +2424,74 @@ export interface CreditNoteModel {
|
|
|
2248
2424
|
*/
|
|
2249
2425
|
'items'?: Array<CreditNoteItemModel>;
|
|
2250
2426
|
}
|
|
2427
|
+
/**
|
|
2428
|
+
* CRM Activities Response
|
|
2429
|
+
* @export
|
|
2430
|
+
* @interface CrmActivitiesResponseDTO
|
|
2431
|
+
*/
|
|
2432
|
+
export interface CrmActivitiesResponseDTO {
|
|
2433
|
+
/**
|
|
2434
|
+
* Dates
|
|
2435
|
+
* @type {Array<CrmDateActivitiesDTO>}
|
|
2436
|
+
* @memberof CrmActivitiesResponseDTO
|
|
2437
|
+
*/
|
|
2438
|
+
'dates'?: Array<CrmDateActivitiesDTO>;
|
|
2439
|
+
/**
|
|
2440
|
+
* Agents
|
|
2441
|
+
* @type {Array<AdminUserModel>}
|
|
2442
|
+
* @memberof CrmActivitiesResponseDTO
|
|
2443
|
+
*/
|
|
2444
|
+
'agents'?: Array<AdminUserModel>;
|
|
2445
|
+
}
|
|
2446
|
+
/**
|
|
2447
|
+
* CRM Activity
|
|
2448
|
+
* @export
|
|
2449
|
+
* @interface CrmActivityDTO
|
|
2450
|
+
*/
|
|
2451
|
+
export interface CrmActivityDTO {
|
|
2452
|
+
/**
|
|
2453
|
+
* Activity Type
|
|
2454
|
+
* @type {string}
|
|
2455
|
+
* @memberof CrmActivityDTO
|
|
2456
|
+
*/
|
|
2457
|
+
'type'?: string;
|
|
2458
|
+
/**
|
|
2459
|
+
* Date Time
|
|
2460
|
+
* @type {string}
|
|
2461
|
+
* @memberof CrmActivityDTO
|
|
2462
|
+
*/
|
|
2463
|
+
'timestamp'?: string;
|
|
2464
|
+
/**
|
|
2465
|
+
* Activity Title
|
|
2466
|
+
* @type {string}
|
|
2467
|
+
* @memberof CrmActivityDTO
|
|
2468
|
+
*/
|
|
2469
|
+
'title'?: string;
|
|
2470
|
+
/**
|
|
2471
|
+
* Activity Description
|
|
2472
|
+
* @type {string}
|
|
2473
|
+
* @memberof CrmActivityDTO
|
|
2474
|
+
*/
|
|
2475
|
+
'description'?: string;
|
|
2476
|
+
/**
|
|
2477
|
+
* Activity URL
|
|
2478
|
+
* @type {string}
|
|
2479
|
+
* @memberof CrmActivityDTO
|
|
2480
|
+
*/
|
|
2481
|
+
'url'?: string | null;
|
|
2482
|
+
/**
|
|
2483
|
+
* Activity User Name
|
|
2484
|
+
* @type {string}
|
|
2485
|
+
* @memberof CrmActivityDTO
|
|
2486
|
+
*/
|
|
2487
|
+
'user'?: string | null;
|
|
2488
|
+
/**
|
|
2489
|
+
* Activity Contact Name
|
|
2490
|
+
* @type {string}
|
|
2491
|
+
* @memberof CrmActivityDTO
|
|
2492
|
+
*/
|
|
2493
|
+
'contact'?: string | null;
|
|
2494
|
+
}
|
|
2251
2495
|
/**
|
|
2252
2496
|
* CRM Contact
|
|
2253
2497
|
* @export
|
|
@@ -2298,110 +2542,263 @@ export interface CrmContactDTO {
|
|
|
2298
2542
|
'url'?: string;
|
|
2299
2543
|
}
|
|
2300
2544
|
/**
|
|
2301
|
-
*
|
|
2545
|
+
* CRM Date Activities
|
|
2302
2546
|
* @export
|
|
2303
|
-
* @interface
|
|
2547
|
+
* @interface CrmDateActivitiesDTO
|
|
2304
2548
|
*/
|
|
2305
|
-
export interface
|
|
2549
|
+
export interface CrmDateActivitiesDTO {
|
|
2306
2550
|
/**
|
|
2307
|
-
*
|
|
2551
|
+
* Date Time
|
|
2308
2552
|
* @type {string}
|
|
2309
|
-
* @memberof
|
|
2553
|
+
* @memberof CrmDateActivitiesDTO
|
|
2310
2554
|
*/
|
|
2311
|
-
'
|
|
2555
|
+
'date'?: string;
|
|
2312
2556
|
/**
|
|
2313
|
-
*
|
|
2557
|
+
* Activities
|
|
2558
|
+
* @type {Array<CrmActivityDTO>}
|
|
2559
|
+
* @memberof CrmDateActivitiesDTO
|
|
2560
|
+
*/
|
|
2561
|
+
'activities'?: Array<CrmActivityDTO>;
|
|
2562
|
+
}
|
|
2563
|
+
/**
|
|
2564
|
+
* CrmNotesEntity
|
|
2565
|
+
* @export
|
|
2566
|
+
* @interface CrmNoteEntity
|
|
2567
|
+
*/
|
|
2568
|
+
export interface CrmNoteEntity {
|
|
2569
|
+
/**
|
|
2570
|
+
* id
|
|
2571
|
+
* @type {number}
|
|
2572
|
+
* @memberof CrmNoteEntity
|
|
2573
|
+
*/
|
|
2574
|
+
'id'?: number;
|
|
2575
|
+
/**
|
|
2576
|
+
* customerId
|
|
2314
2577
|
* @type {string}
|
|
2315
|
-
* @memberof
|
|
2578
|
+
* @memberof CrmNoteEntity
|
|
2316
2579
|
*/
|
|
2317
|
-
'
|
|
2580
|
+
'customerId'?: string;
|
|
2318
2581
|
/**
|
|
2319
|
-
*
|
|
2582
|
+
* userId
|
|
2583
|
+
* @type {number}
|
|
2584
|
+
* @memberof CrmNoteEntity
|
|
2585
|
+
*/
|
|
2586
|
+
'userId'?: number;
|
|
2587
|
+
/**
|
|
2588
|
+
* type
|
|
2320
2589
|
* @type {string}
|
|
2321
|
-
* @memberof
|
|
2590
|
+
* @memberof CrmNoteEntity
|
|
2322
2591
|
*/
|
|
2323
|
-
'
|
|
2592
|
+
'type'?: string;
|
|
2324
2593
|
/**
|
|
2325
|
-
*
|
|
2594
|
+
* note
|
|
2326
2595
|
* @type {string}
|
|
2327
|
-
* @memberof
|
|
2596
|
+
* @memberof CrmNoteEntity
|
|
2328
2597
|
*/
|
|
2329
|
-
'
|
|
2598
|
+
'note'?: string;
|
|
2330
2599
|
/**
|
|
2331
|
-
*
|
|
2600
|
+
* timestamp
|
|
2332
2601
|
* @type {string}
|
|
2333
|
-
* @memberof
|
|
2602
|
+
* @memberof CrmNoteEntity
|
|
2334
2603
|
*/
|
|
2335
|
-
'
|
|
2604
|
+
'timestamp'?: string;
|
|
2336
2605
|
/**
|
|
2337
|
-
*
|
|
2606
|
+
* journalTime
|
|
2338
2607
|
* @type {string}
|
|
2339
|
-
* @memberof
|
|
2608
|
+
* @memberof CrmNoteEntity
|
|
2340
2609
|
*/
|
|
2341
|
-
'
|
|
2610
|
+
'journalTime'?: string;
|
|
2342
2611
|
/**
|
|
2343
|
-
*
|
|
2612
|
+
* duration
|
|
2344
2613
|
* @type {string}
|
|
2345
|
-
* @memberof
|
|
2614
|
+
* @memberof CrmNoteEntity
|
|
2346
2615
|
*/
|
|
2347
|
-
'
|
|
2348
|
-
}
|
|
2349
|
-
/**
|
|
2350
|
-
* Order Item Request
|
|
2351
|
-
* @export
|
|
2352
|
-
* @interface CustomerItemRequestDTO
|
|
2353
|
-
*/
|
|
2354
|
-
export interface CustomerItemRequestDTO {
|
|
2616
|
+
'duration'?: string;
|
|
2355
2617
|
/**
|
|
2356
|
-
*
|
|
2618
|
+
* callType
|
|
2357
2619
|
* @type {string}
|
|
2358
|
-
* @memberof
|
|
2620
|
+
* @memberof CrmNoteEntity
|
|
2359
2621
|
*/
|
|
2360
|
-
'
|
|
2622
|
+
'callType'?: string;
|
|
2361
2623
|
/**
|
|
2362
|
-
*
|
|
2624
|
+
* callId
|
|
2363
2625
|
* @type {number}
|
|
2364
|
-
* @memberof
|
|
2626
|
+
* @memberof CrmNoteEntity
|
|
2365
2627
|
*/
|
|
2366
|
-
'
|
|
2628
|
+
'callId'?: number;
|
|
2629
|
+
}
|
|
2630
|
+
/**
|
|
2631
|
+
* CrmNotesEntity
|
|
2632
|
+
* @export
|
|
2633
|
+
* @interface CrmNoteModel
|
|
2634
|
+
*/
|
|
2635
|
+
export interface CrmNoteModel {
|
|
2367
2636
|
/**
|
|
2368
|
-
*
|
|
2637
|
+
* id
|
|
2369
2638
|
* @type {number}
|
|
2370
|
-
* @memberof
|
|
2639
|
+
* @memberof CrmNoteModel
|
|
2371
2640
|
*/
|
|
2372
|
-
'id'?: number
|
|
2641
|
+
'id'?: number;
|
|
2373
2642
|
/**
|
|
2374
|
-
*
|
|
2643
|
+
* customerId
|
|
2375
2644
|
* @type {string}
|
|
2376
|
-
* @memberof
|
|
2377
|
-
*/
|
|
2378
|
-
'licenceKey'?: string | null;
|
|
2379
|
-
/**
|
|
2380
|
-
* 3CX Hosting
|
|
2381
|
-
* @type {boolean}
|
|
2382
|
-
* @memberof CustomerItemRequestDTO
|
|
2645
|
+
* @memberof CrmNoteModel
|
|
2383
2646
|
*/
|
|
2384
|
-
'
|
|
2647
|
+
'customerId'?: string;
|
|
2385
2648
|
/**
|
|
2386
|
-
*
|
|
2649
|
+
* userId
|
|
2387
2650
|
* @type {number}
|
|
2388
|
-
* @memberof
|
|
2651
|
+
* @memberof CrmNoteModel
|
|
2389
2652
|
*/
|
|
2390
|
-
'
|
|
2653
|
+
'userId'?: number;
|
|
2391
2654
|
/**
|
|
2392
|
-
*
|
|
2655
|
+
* type
|
|
2393
2656
|
* @type {string}
|
|
2394
|
-
* @memberof
|
|
2657
|
+
* @memberof CrmNoteModel
|
|
2395
2658
|
*/
|
|
2396
|
-
'
|
|
2659
|
+
'type'?: string;
|
|
2397
2660
|
/**
|
|
2398
|
-
*
|
|
2661
|
+
* note
|
|
2399
2662
|
* @type {string}
|
|
2400
|
-
* @memberof
|
|
2663
|
+
* @memberof CrmNoteModel
|
|
2401
2664
|
*/
|
|
2402
|
-
'
|
|
2665
|
+
'note'?: string;
|
|
2403
2666
|
/**
|
|
2404
|
-
*
|
|
2667
|
+
* timestamp
|
|
2668
|
+
* @type {string}
|
|
2669
|
+
* @memberof CrmNoteModel
|
|
2670
|
+
*/
|
|
2671
|
+
'timestamp'?: string;
|
|
2672
|
+
/**
|
|
2673
|
+
* journalTime
|
|
2674
|
+
* @type {string}
|
|
2675
|
+
* @memberof CrmNoteModel
|
|
2676
|
+
*/
|
|
2677
|
+
'journalTime'?: string;
|
|
2678
|
+
/**
|
|
2679
|
+
* duration
|
|
2680
|
+
* @type {string}
|
|
2681
|
+
* @memberof CrmNoteModel
|
|
2682
|
+
*/
|
|
2683
|
+
'duration'?: string;
|
|
2684
|
+
/**
|
|
2685
|
+
* callType
|
|
2686
|
+
* @type {string}
|
|
2687
|
+
* @memberof CrmNoteModel
|
|
2688
|
+
*/
|
|
2689
|
+
'callType'?: string;
|
|
2690
|
+
/**
|
|
2691
|
+
* callId
|
|
2692
|
+
* @type {number}
|
|
2693
|
+
* @memberof CrmNoteModel
|
|
2694
|
+
*/
|
|
2695
|
+
'callId'?: number;
|
|
2696
|
+
}
|
|
2697
|
+
/**
|
|
2698
|
+
* SIP Trunk Customer
|
|
2699
|
+
* @export
|
|
2700
|
+
* @interface CustomerInformationModel
|
|
2701
|
+
*/
|
|
2702
|
+
export interface CustomerInformationModel {
|
|
2703
|
+
/**
|
|
2704
|
+
* End User Address Line 1
|
|
2705
|
+
* @type {string}
|
|
2706
|
+
* @memberof CustomerInformationModel
|
|
2707
|
+
*/
|
|
2708
|
+
'addressLine1'?: string;
|
|
2709
|
+
/**
|
|
2710
|
+
* End User Address Line 2
|
|
2711
|
+
* @type {string}
|
|
2712
|
+
* @memberof CustomerInformationModel
|
|
2713
|
+
*/
|
|
2714
|
+
'addressLine2'?: string;
|
|
2715
|
+
/**
|
|
2716
|
+
* End User Town/City
|
|
2717
|
+
* @type {string}
|
|
2718
|
+
* @memberof CustomerInformationModel
|
|
2719
|
+
*/
|
|
2720
|
+
'addressCity'?: string;
|
|
2721
|
+
/**
|
|
2722
|
+
* End User Postal Code
|
|
2723
|
+
* @type {string}
|
|
2724
|
+
* @memberof CustomerInformationModel
|
|
2725
|
+
*/
|
|
2726
|
+
'addressPostcode'?: string;
|
|
2727
|
+
/**
|
|
2728
|
+
* End User Company Name
|
|
2729
|
+
* @type {string}
|
|
2730
|
+
* @memberof CustomerInformationModel
|
|
2731
|
+
*/
|
|
2732
|
+
'companyName'?: string;
|
|
2733
|
+
/**
|
|
2734
|
+
* End User Contact First Name
|
|
2735
|
+
* @type {string}
|
|
2736
|
+
* @memberof CustomerInformationModel
|
|
2737
|
+
*/
|
|
2738
|
+
'contactFirstName'?: string;
|
|
2739
|
+
/**
|
|
2740
|
+
* End User Contact Surname
|
|
2741
|
+
* @type {string}
|
|
2742
|
+
* @memberof CustomerInformationModel
|
|
2743
|
+
*/
|
|
2744
|
+
'contactLastName'?: string;
|
|
2745
|
+
}
|
|
2746
|
+
/**
|
|
2747
|
+
* Order Item Request
|
|
2748
|
+
* @export
|
|
2749
|
+
* @interface CustomerItemRequestDTO
|
|
2750
|
+
*/
|
|
2751
|
+
export interface CustomerItemRequestDTO {
|
|
2752
|
+
/**
|
|
2753
|
+
* SKU
|
|
2754
|
+
* @type {string}
|
|
2755
|
+
* @memberof CustomerItemRequestDTO
|
|
2756
|
+
*/
|
|
2757
|
+
'sku'?: string;
|
|
2758
|
+
/**
|
|
2759
|
+
* Quantity
|
|
2760
|
+
* @type {number}
|
|
2761
|
+
* @memberof CustomerItemRequestDTO
|
|
2762
|
+
*/
|
|
2763
|
+
'quantity'?: number;
|
|
2764
|
+
/**
|
|
2765
|
+
* ID
|
|
2766
|
+
* @type {number}
|
|
2767
|
+
* @memberof CustomerItemRequestDTO
|
|
2768
|
+
*/
|
|
2769
|
+
'id'?: number | null;
|
|
2770
|
+
/**
|
|
2771
|
+
* 3CX Licence Key
|
|
2772
|
+
* @type {string}
|
|
2773
|
+
* @memberof CustomerItemRequestDTO
|
|
2774
|
+
*/
|
|
2775
|
+
'licenceKey'?: string | null;
|
|
2776
|
+
/**
|
|
2777
|
+
* 3CX Hosting
|
|
2778
|
+
* @type {boolean}
|
|
2779
|
+
* @memberof CustomerItemRequestDTO
|
|
2780
|
+
*/
|
|
2781
|
+
'hosting'?: boolean | null;
|
|
2782
|
+
/**
|
|
2783
|
+
* 3CX Renewal Years (Upgrade only)
|
|
2784
|
+
* @type {number}
|
|
2785
|
+
* @memberof CustomerItemRequestDTO
|
|
2786
|
+
*/
|
|
2787
|
+
'renewalYears'?: number | null;
|
|
2788
|
+
/**
|
|
2789
|
+
* Date Time
|
|
2790
|
+
* @type {string}
|
|
2791
|
+
* @memberof CustomerItemRequestDTO
|
|
2792
|
+
*/
|
|
2793
|
+
'processDate'?: string;
|
|
2794
|
+
/**
|
|
2795
|
+
* 3CX Sales Code
|
|
2796
|
+
* @type {string}
|
|
2797
|
+
* @memberof CustomerItemRequestDTO
|
|
2798
|
+
*/
|
|
2799
|
+
'tcxSalesCode'?: string | null;
|
|
2800
|
+
/**
|
|
2801
|
+
* SBCS
|
|
2405
2802
|
* @type {Array<TcxSbcDTO>}
|
|
2406
2803
|
* @memberof CustomerItemRequestDTO
|
|
2407
2804
|
*/
|
|
@@ -2413,6 +2810,91 @@ export interface CustomerItemRequestDTO {
|
|
|
2413
2810
|
*/
|
|
2414
2811
|
'readOnly'?: boolean;
|
|
2415
2812
|
}
|
|
2813
|
+
/**
|
|
2814
|
+
* Customer List Account
|
|
2815
|
+
* @export
|
|
2816
|
+
* @interface CustomerListAccountDTO
|
|
2817
|
+
*/
|
|
2818
|
+
export interface CustomerListAccountDTO {
|
|
2819
|
+
/**
|
|
2820
|
+
* ID
|
|
2821
|
+
* @type {number}
|
|
2822
|
+
* @memberof CustomerListAccountDTO
|
|
2823
|
+
*/
|
|
2824
|
+
'id'?: number;
|
|
2825
|
+
/**
|
|
2826
|
+
* Xero ID
|
|
2827
|
+
* @type {string}
|
|
2828
|
+
* @memberof CustomerListAccountDTO
|
|
2829
|
+
*/
|
|
2830
|
+
'xeroId'?: string;
|
|
2831
|
+
/**
|
|
2832
|
+
* Account Number
|
|
2833
|
+
* @type {string}
|
|
2834
|
+
* @memberof CustomerListAccountDTO
|
|
2835
|
+
*/
|
|
2836
|
+
'accountNumber'?: string;
|
|
2837
|
+
/**
|
|
2838
|
+
* Company Name
|
|
2839
|
+
* @type {string}
|
|
2840
|
+
* @memberof CustomerListAccountDTO
|
|
2841
|
+
*/
|
|
2842
|
+
'company'?: string;
|
|
2843
|
+
/**
|
|
2844
|
+
* Associated Email Domains
|
|
2845
|
+
* @type {Array<string>}
|
|
2846
|
+
* @memberof CustomerListAccountDTO
|
|
2847
|
+
*/
|
|
2848
|
+
'domains'?: Array<string>;
|
|
2849
|
+
/**
|
|
2850
|
+
* Telephone
|
|
2851
|
+
* @type {string}
|
|
2852
|
+
* @memberof CustomerListAccountDTO
|
|
2853
|
+
*/
|
|
2854
|
+
'telephone'?: string;
|
|
2855
|
+
/**
|
|
2856
|
+
* VAT Number
|
|
2857
|
+
* @type {string}
|
|
2858
|
+
* @memberof CustomerListAccountDTO
|
|
2859
|
+
*/
|
|
2860
|
+
'vatNumber'?: string;
|
|
2861
|
+
/**
|
|
2862
|
+
* Company Number
|
|
2863
|
+
* @type {string}
|
|
2864
|
+
* @memberof CustomerListAccountDTO
|
|
2865
|
+
*/
|
|
2866
|
+
'companyNumber'?: string;
|
|
2867
|
+
/**
|
|
2868
|
+
* Wizard CNAME
|
|
2869
|
+
* @type {string}
|
|
2870
|
+
* @memberof CustomerListAccountDTO
|
|
2871
|
+
*/
|
|
2872
|
+
'cname'?: string;
|
|
2873
|
+
/**
|
|
2874
|
+
* 3CX Reseller ID
|
|
2875
|
+
* @type {string}
|
|
2876
|
+
* @memberof CustomerListAccountDTO
|
|
2877
|
+
*/
|
|
2878
|
+
'partnerId'?: string;
|
|
2879
|
+
/**
|
|
2880
|
+
* Account Status
|
|
2881
|
+
* @type {boolean}
|
|
2882
|
+
* @memberof CustomerListAccountDTO
|
|
2883
|
+
*/
|
|
2884
|
+
'status'?: boolean;
|
|
2885
|
+
/**
|
|
2886
|
+
* Portal Access
|
|
2887
|
+
* @type {boolean}
|
|
2888
|
+
* @memberof CustomerListAccountDTO
|
|
2889
|
+
*/
|
|
2890
|
+
'portalAccess'?: boolean;
|
|
2891
|
+
/**
|
|
2892
|
+
* Prize Promo
|
|
2893
|
+
* @type {boolean}
|
|
2894
|
+
* @memberof CustomerListAccountDTO
|
|
2895
|
+
*/
|
|
2896
|
+
'prizePromo'?: boolean;
|
|
2897
|
+
}
|
|
2416
2898
|
/**
|
|
2417
2899
|
* Order Request
|
|
2418
2900
|
* @export
|
|
@@ -2640,6 +3122,12 @@ export interface DetailedItemRequestDTO {
|
|
|
2640
3122
|
* @memberof DetailedItemRequestDTO
|
|
2641
3123
|
*/
|
|
2642
3124
|
'itemPrice'?: number | null;
|
|
3125
|
+
/**
|
|
3126
|
+
* Custom Price (£)
|
|
3127
|
+
* @type {number}
|
|
3128
|
+
* @memberof DetailedItemRequestDTO
|
|
3129
|
+
*/
|
|
3130
|
+
'customPrice'?: number | null;
|
|
2643
3131
|
/**
|
|
2644
3132
|
* Additional Discount
|
|
2645
3133
|
* @type {number}
|
|
@@ -4388,6 +4876,19 @@ export interface NavigationModel {
|
|
|
4388
4876
|
*/
|
|
4389
4877
|
'openNewPage'?: boolean;
|
|
4390
4878
|
}
|
|
4879
|
+
/**
|
|
4880
|
+
*
|
|
4881
|
+
* @export
|
|
4882
|
+
* @interface NumberPortAdminNoteBody
|
|
4883
|
+
*/
|
|
4884
|
+
export interface NumberPortAdminNoteBody {
|
|
4885
|
+
/**
|
|
4886
|
+
* Note
|
|
4887
|
+
* @type {string}
|
|
4888
|
+
* @memberof NumberPortAdminNoteBody
|
|
4889
|
+
*/
|
|
4890
|
+
'note'?: string;
|
|
4891
|
+
}
|
|
4391
4892
|
/**
|
|
4392
4893
|
* Number Port Response
|
|
4393
4894
|
* @export
|
|
@@ -5860,93 +6361,282 @@ export interface OrderedItemModel {
|
|
|
5860
6361
|
'returnedStock'?: number;
|
|
5861
6362
|
}
|
|
5862
6363
|
/**
|
|
5863
|
-
*
|
|
6364
|
+
* 3CX Partner Details
|
|
5864
6365
|
* @export
|
|
5865
|
-
* @interface
|
|
6366
|
+
* @interface PartnerDTO
|
|
5866
6367
|
*/
|
|
5867
|
-
export interface
|
|
6368
|
+
export interface PartnerDTO {
|
|
5868
6369
|
/**
|
|
5869
|
-
*
|
|
6370
|
+
* 3CX Partner ID
|
|
5870
6371
|
* @type {string}
|
|
5871
|
-
* @memberof
|
|
6372
|
+
* @memberof PartnerDTO
|
|
5872
6373
|
*/
|
|
5873
|
-
'
|
|
5874
|
-
}
|
|
5875
|
-
/**
|
|
5876
|
-
*
|
|
5877
|
-
* @export
|
|
5878
|
-
* @interface PatchUpdateAccountContactPasswordRequest
|
|
5879
|
-
*/
|
|
5880
|
-
export interface PatchUpdateAccountContactPasswordRequest {
|
|
6374
|
+
'partnerId'?: string | null;
|
|
5881
6375
|
/**
|
|
5882
|
-
*
|
|
6376
|
+
* 3CX Partner Company Name
|
|
5883
6377
|
* @type {string}
|
|
5884
|
-
* @memberof
|
|
6378
|
+
* @memberof PartnerDTO
|
|
5885
6379
|
*/
|
|
5886
|
-
'
|
|
5887
|
-
}
|
|
5888
|
-
/**
|
|
5889
|
-
* Customer Account
|
|
5890
|
-
* @export
|
|
5891
|
-
* @interface PortalAccountModel
|
|
5892
|
-
*/
|
|
5893
|
-
export interface PortalAccountModel {
|
|
5894
|
-
/**
|
|
5895
|
-
* ID
|
|
5896
|
-
* @type {number}
|
|
5897
|
-
* @memberof PortalAccountModel
|
|
5898
|
-
*/
|
|
5899
|
-
'id'?: number;
|
|
6380
|
+
'companyName'?: string;
|
|
5900
6381
|
/**
|
|
5901
|
-
* Contact Name
|
|
6382
|
+
* 3CX Partner Contact Name
|
|
5902
6383
|
* @type {string}
|
|
5903
|
-
* @memberof
|
|
6384
|
+
* @memberof PartnerDTO
|
|
5904
6385
|
*/
|
|
5905
|
-
'
|
|
6386
|
+
'contactName'?: string;
|
|
5906
6387
|
/**
|
|
5907
|
-
*
|
|
6388
|
+
* 3CX Partner Contact Phone
|
|
5908
6389
|
* @type {string}
|
|
5909
|
-
* @memberof
|
|
6390
|
+
* @memberof PartnerDTO
|
|
5910
6391
|
*/
|
|
5911
|
-
'
|
|
6392
|
+
'contactPhone'?: string;
|
|
5912
6393
|
/**
|
|
5913
|
-
*
|
|
6394
|
+
* 3CX Partner Contact Email
|
|
5914
6395
|
* @type {string}
|
|
5915
|
-
* @memberof
|
|
6396
|
+
* @memberof PartnerDTO
|
|
5916
6397
|
*/
|
|
5917
|
-
'
|
|
6398
|
+
'contactEmail'?: string;
|
|
5918
6399
|
/**
|
|
5919
|
-
*
|
|
6400
|
+
* 3CX Partner Level
|
|
5920
6401
|
* @type {string}
|
|
5921
|
-
* @memberof
|
|
6402
|
+
* @memberof PartnerDTO
|
|
5922
6403
|
*/
|
|
5923
|
-
'
|
|
6404
|
+
'partnerLevel'?: string;
|
|
5924
6405
|
/**
|
|
5925
|
-
*
|
|
5926
|
-
* @type {
|
|
5927
|
-
* @memberof
|
|
6406
|
+
* 3CX Partner Licence Discount Percent
|
|
6407
|
+
* @type {number}
|
|
6408
|
+
* @memberof PartnerDTO
|
|
5928
6409
|
*/
|
|
5929
|
-
'
|
|
6410
|
+
'licenceDiscountPercent'?: number;
|
|
5930
6411
|
/**
|
|
5931
|
-
*
|
|
5932
|
-
* @type {
|
|
5933
|
-
* @memberof
|
|
6412
|
+
* 3CX Partner Hosting Discount Percent
|
|
6413
|
+
* @type {number}
|
|
6414
|
+
* @memberof PartnerDTO
|
|
5934
6415
|
*/
|
|
5935
|
-
'
|
|
6416
|
+
'hostingDisountPercent'?: number;
|
|
5936
6417
|
/**
|
|
5937
|
-
*
|
|
5938
|
-
* @type {
|
|
5939
|
-
* @memberof
|
|
6418
|
+
* 3CX Hosting Price List ID
|
|
6419
|
+
* @type {number}
|
|
6420
|
+
* @memberof PartnerDTO
|
|
5940
6421
|
*/
|
|
5941
|
-
'
|
|
6422
|
+
'hostingPriceListId'?: number;
|
|
5942
6423
|
/**
|
|
5943
|
-
*
|
|
6424
|
+
* 3CX Installation URL
|
|
5944
6425
|
* @type {string}
|
|
5945
|
-
* @memberof
|
|
6426
|
+
* @memberof PartnerDTO
|
|
5946
6427
|
*/
|
|
5947
|
-
'
|
|
5948
|
-
|
|
5949
|
-
|
|
6428
|
+
'installationUrl'?: string;
|
|
6429
|
+
}
|
|
6430
|
+
/**
|
|
6431
|
+
*
|
|
6432
|
+
* @export
|
|
6433
|
+
* @interface PatchUpdateAccountCnameRequest
|
|
6434
|
+
*/
|
|
6435
|
+
export interface PatchUpdateAccountCnameRequest {
|
|
6436
|
+
/**
|
|
6437
|
+
* CNAME
|
|
6438
|
+
* @type {string}
|
|
6439
|
+
* @memberof PatchUpdateAccountCnameRequest
|
|
6440
|
+
*/
|
|
6441
|
+
'cname'?: string;
|
|
6442
|
+
}
|
|
6443
|
+
/**
|
|
6444
|
+
*
|
|
6445
|
+
* @export
|
|
6446
|
+
* @interface PatchUpdateAccountCompanyNumberRequest
|
|
6447
|
+
*/
|
|
6448
|
+
export interface PatchUpdateAccountCompanyNumberRequest {
|
|
6449
|
+
/**
|
|
6450
|
+
* Company Number
|
|
6451
|
+
* @type {string}
|
|
6452
|
+
* @memberof PatchUpdateAccountCompanyNumberRequest
|
|
6453
|
+
*/
|
|
6454
|
+
'companyNumber'?: string;
|
|
6455
|
+
}
|
|
6456
|
+
/**
|
|
6457
|
+
*
|
|
6458
|
+
* @export
|
|
6459
|
+
* @interface PatchUpdateAccountContactPasswordRequest
|
|
6460
|
+
*/
|
|
6461
|
+
export interface PatchUpdateAccountContactPasswordRequest {
|
|
6462
|
+
/**
|
|
6463
|
+
* Password
|
|
6464
|
+
* @type {string}
|
|
6465
|
+
* @memberof PatchUpdateAccountContactPasswordRequest
|
|
6466
|
+
*/
|
|
6467
|
+
'password'?: string;
|
|
6468
|
+
}
|
|
6469
|
+
/**
|
|
6470
|
+
*
|
|
6471
|
+
* @export
|
|
6472
|
+
* @interface PatchUpdateAccountPhoneRequest
|
|
6473
|
+
*/
|
|
6474
|
+
export interface PatchUpdateAccountPhoneRequest {
|
|
6475
|
+
/**
|
|
6476
|
+
* Phone
|
|
6477
|
+
* @type {string}
|
|
6478
|
+
* @memberof PatchUpdateAccountPhoneRequest
|
|
6479
|
+
*/
|
|
6480
|
+
'phone'?: string;
|
|
6481
|
+
}
|
|
6482
|
+
/**
|
|
6483
|
+
*
|
|
6484
|
+
* @export
|
|
6485
|
+
* @interface PatchUpdateAccountVatNumberRequest
|
|
6486
|
+
*/
|
|
6487
|
+
export interface PatchUpdateAccountVatNumberRequest {
|
|
6488
|
+
/**
|
|
6489
|
+
* VAT Number
|
|
6490
|
+
* @type {string}
|
|
6491
|
+
* @memberof PatchUpdateAccountVatNumberRequest
|
|
6492
|
+
*/
|
|
6493
|
+
'vatNumber'?: string;
|
|
6494
|
+
}
|
|
6495
|
+
/**
|
|
6496
|
+
*
|
|
6497
|
+
* @export
|
|
6498
|
+
* @interface PatchUpdateCreditLimitRequest
|
|
6499
|
+
*/
|
|
6500
|
+
export interface PatchUpdateCreditLimitRequest {
|
|
6501
|
+
/**
|
|
6502
|
+
* Credit Limit
|
|
6503
|
+
* @type {number}
|
|
6504
|
+
* @memberof PatchUpdateCreditLimitRequest
|
|
6505
|
+
*/
|
|
6506
|
+
'creditLimit'?: number;
|
|
6507
|
+
}
|
|
6508
|
+
/**
|
|
6509
|
+
*
|
|
6510
|
+
* @export
|
|
6511
|
+
* @interface PatchUpdatePriceListRequest
|
|
6512
|
+
*/
|
|
6513
|
+
export interface PatchUpdatePriceListRequest {
|
|
6514
|
+
/**
|
|
6515
|
+
* Price List
|
|
6516
|
+
* @type {string}
|
|
6517
|
+
* @memberof PatchUpdatePriceListRequest
|
|
6518
|
+
*/
|
|
6519
|
+
'priceList'?: PatchUpdatePriceListRequestPriceListEnum;
|
|
6520
|
+
}
|
|
6521
|
+
export declare const PatchUpdatePriceListRequestPriceListEnum: {
|
|
6522
|
+
readonly Rrp: "RRP";
|
|
6523
|
+
readonly Trade: "Trade";
|
|
6524
|
+
readonly Wholesale: "Wholesale";
|
|
6525
|
+
readonly Itsp: "ITSP";
|
|
6526
|
+
readonly SubDisti: "Sub Disti";
|
|
6527
|
+
readonly Distributor: "Distributor";
|
|
6528
|
+
readonly HotelDisti: "Hotel Disti";
|
|
6529
|
+
};
|
|
6530
|
+
export type PatchUpdatePriceListRequestPriceListEnum = typeof PatchUpdatePriceListRequestPriceListEnum[keyof typeof PatchUpdatePriceListRequestPriceListEnum];
|
|
6531
|
+
/**
|
|
6532
|
+
*
|
|
6533
|
+
* @export
|
|
6534
|
+
* @interface PatchUpdateSipChannelCostRequest
|
|
6535
|
+
*/
|
|
6536
|
+
export interface PatchUpdateSipChannelCostRequest {
|
|
6537
|
+
/**
|
|
6538
|
+
* SIP Channel Cost
|
|
6539
|
+
* @type {number}
|
|
6540
|
+
* @memberof PatchUpdateSipChannelCostRequest
|
|
6541
|
+
*/
|
|
6542
|
+
'channelCost'?: number;
|
|
6543
|
+
}
|
|
6544
|
+
/**
|
|
6545
|
+
*
|
|
6546
|
+
* @export
|
|
6547
|
+
* @interface PatchUpdateTcxHostingPriceListRequest
|
|
6548
|
+
*/
|
|
6549
|
+
export interface PatchUpdateTcxHostingPriceListRequest {
|
|
6550
|
+
/**
|
|
6551
|
+
* Price List
|
|
6552
|
+
* @type {string}
|
|
6553
|
+
* @memberof PatchUpdateTcxHostingPriceListRequest
|
|
6554
|
+
*/
|
|
6555
|
+
'priceList'?: PatchUpdateTcxHostingPriceListRequestPriceListEnum;
|
|
6556
|
+
}
|
|
6557
|
+
export declare const PatchUpdateTcxHostingPriceListRequestPriceListEnum: {
|
|
6558
|
+
readonly _1: "1";
|
|
6559
|
+
readonly _2: "2";
|
|
6560
|
+
readonly _3: "3";
|
|
6561
|
+
readonly _4: "4";
|
|
6562
|
+
readonly _5: "5";
|
|
6563
|
+
};
|
|
6564
|
+
export type PatchUpdateTcxHostingPriceListRequestPriceListEnum = typeof PatchUpdateTcxHostingPriceListRequestPriceListEnum[keyof typeof PatchUpdateTcxHostingPriceListRequestPriceListEnum];
|
|
6565
|
+
/**
|
|
6566
|
+
*
|
|
6567
|
+
* @export
|
|
6568
|
+
* @interface PatchUpdateTcxPartnerIdRequest
|
|
6569
|
+
*/
|
|
6570
|
+
export interface PatchUpdateTcxPartnerIdRequest {
|
|
6571
|
+
/**
|
|
6572
|
+
* Set Account 3CX Partner ID
|
|
6573
|
+
* @type {string}
|
|
6574
|
+
* @memberof PatchUpdateTcxPartnerIdRequest
|
|
6575
|
+
*/
|
|
6576
|
+
'partnerId'?: string | null;
|
|
6577
|
+
}
|
|
6578
|
+
/**
|
|
6579
|
+
* Customer Account
|
|
6580
|
+
* @export
|
|
6581
|
+
* @interface PortalAccountModel
|
|
6582
|
+
*/
|
|
6583
|
+
export interface PortalAccountModel {
|
|
6584
|
+
/**
|
|
6585
|
+
* ID
|
|
6586
|
+
* @type {number}
|
|
6587
|
+
* @memberof PortalAccountModel
|
|
6588
|
+
*/
|
|
6589
|
+
'id'?: number;
|
|
6590
|
+
/**
|
|
6591
|
+
* Contact Name
|
|
6592
|
+
* @type {string}
|
|
6593
|
+
* @memberof PortalAccountModel
|
|
6594
|
+
*/
|
|
6595
|
+
'name'?: string;
|
|
6596
|
+
/**
|
|
6597
|
+
* Email
|
|
6598
|
+
* @type {string}
|
|
6599
|
+
* @memberof PortalAccountModel
|
|
6600
|
+
*/
|
|
6601
|
+
'email'?: string;
|
|
6602
|
+
/**
|
|
6603
|
+
* Phone Number
|
|
6604
|
+
* @type {string}
|
|
6605
|
+
* @memberof PortalAccountModel
|
|
6606
|
+
*/
|
|
6607
|
+
'phone'?: string;
|
|
6608
|
+
/**
|
|
6609
|
+
* Company Name
|
|
6610
|
+
* @type {string}
|
|
6611
|
+
* @memberof PortalAccountModel
|
|
6612
|
+
*/
|
|
6613
|
+
'company'?: string;
|
|
6614
|
+
/**
|
|
6615
|
+
* Company Registration Number
|
|
6616
|
+
* @type {string}
|
|
6617
|
+
* @memberof PortalAccountModel
|
|
6618
|
+
*/
|
|
6619
|
+
'companyNumber'?: string;
|
|
6620
|
+
/**
|
|
6621
|
+
* VAT Number
|
|
6622
|
+
* @type {string}
|
|
6623
|
+
* @memberof PortalAccountModel
|
|
6624
|
+
*/
|
|
6625
|
+
'vatNumber'?: string;
|
|
6626
|
+
/**
|
|
6627
|
+
* Address Line 1
|
|
6628
|
+
* @type {string}
|
|
6629
|
+
* @memberof PortalAccountModel
|
|
6630
|
+
*/
|
|
6631
|
+
'addressLine1'?: string;
|
|
6632
|
+
/**
|
|
6633
|
+
* Address Line 2
|
|
6634
|
+
* @type {string}
|
|
6635
|
+
* @memberof PortalAccountModel
|
|
6636
|
+
*/
|
|
6637
|
+
'addressLine2'?: string;
|
|
6638
|
+
/**
|
|
6639
|
+
* City
|
|
5950
6640
|
* @type {string}
|
|
5951
6641
|
* @memberof PortalAccountModel
|
|
5952
6642
|
*/
|
|
@@ -6017,6 +6707,18 @@ export interface PortalAccountModel {
|
|
|
6017
6707
|
* @memberof PortalAccountModel
|
|
6018
6708
|
*/
|
|
6019
6709
|
'prizePromo'?: boolean;
|
|
6710
|
+
/**
|
|
6711
|
+
* Portal Access
|
|
6712
|
+
* @type {boolean}
|
|
6713
|
+
* @memberof PortalAccountModel
|
|
6714
|
+
*/
|
|
6715
|
+
'portalAccess'?: boolean;
|
|
6716
|
+
/**
|
|
6717
|
+
* Wizard CNAME
|
|
6718
|
+
* @type {string}
|
|
6719
|
+
* @memberof PortalAccountModel
|
|
6720
|
+
*/
|
|
6721
|
+
'cname'?: string;
|
|
6020
6722
|
/**
|
|
6021
6723
|
* Active Direct Debit Mandate
|
|
6022
6724
|
* @type {boolean}
|
|
@@ -6029,12 +6731,6 @@ export interface PortalAccountModel {
|
|
|
6029
6731
|
* @memberof PortalAccountModel
|
|
6030
6732
|
*/
|
|
6031
6733
|
'navigation'?: Array<NavigationModel>;
|
|
6032
|
-
/**
|
|
6033
|
-
* Wizard CNAME
|
|
6034
|
-
* @type {string}
|
|
6035
|
-
* @memberof PortalAccountModel
|
|
6036
|
-
*/
|
|
6037
|
-
'cname'?: string;
|
|
6038
6734
|
}
|
|
6039
6735
|
/**
|
|
6040
6736
|
* Portal Login
|
|
@@ -6085,19 +6781,6 @@ export interface PortalLoginModel {
|
|
|
6085
6781
|
*/
|
|
6086
6782
|
'redirect_uri'?: string;
|
|
6087
6783
|
}
|
|
6088
|
-
/**
|
|
6089
|
-
*
|
|
6090
|
-
* @export
|
|
6091
|
-
* @interface PostAddAdminNoteRequest
|
|
6092
|
-
*/
|
|
6093
|
-
export interface PostAddAdminNoteRequest {
|
|
6094
|
-
/**
|
|
6095
|
-
* Note
|
|
6096
|
-
* @type {string}
|
|
6097
|
-
* @memberof PostAddAdminNoteRequest
|
|
6098
|
-
*/
|
|
6099
|
-
'note'?: string;
|
|
6100
|
-
}
|
|
6101
6784
|
/**
|
|
6102
6785
|
*
|
|
6103
6786
|
* @export
|
|
@@ -6140,39 +6823,15 @@ export interface PostGetClientCredentialsRequest {
|
|
|
6140
6823
|
/**
|
|
6141
6824
|
*
|
|
6142
6825
|
* @export
|
|
6143
|
-
* @interface
|
|
6826
|
+
* @interface PostSendWelcomeEmailRequest
|
|
6144
6827
|
*/
|
|
6145
|
-
export interface
|
|
6146
|
-
/**
|
|
6147
|
-
* Quantity
|
|
6148
|
-
* @type {number}
|
|
6149
|
-
* @memberof PostGetProductForCustomerRequest
|
|
6150
|
-
*/
|
|
6151
|
-
'quantity'?: number | null;
|
|
6152
|
-
/**
|
|
6153
|
-
* 3CX Licence Key
|
|
6154
|
-
* @type {string}
|
|
6155
|
-
* @memberof PostGetProductForCustomerRequest
|
|
6156
|
-
*/
|
|
6157
|
-
'licenceKey'?: string | null;
|
|
6158
|
-
/**
|
|
6159
|
-
* 3CX Hosting
|
|
6160
|
-
* @type {boolean}
|
|
6161
|
-
* @memberof PostGetProductForCustomerRequest
|
|
6162
|
-
*/
|
|
6163
|
-
'hosting'?: boolean | null;
|
|
6828
|
+
export interface PostSendWelcomeEmailRequest {
|
|
6164
6829
|
/**
|
|
6165
|
-
*
|
|
6830
|
+
* email
|
|
6166
6831
|
* @type {string}
|
|
6167
|
-
* @memberof
|
|
6168
|
-
*/
|
|
6169
|
-
'tcxSalesCode'?: string | null;
|
|
6170
|
-
/**
|
|
6171
|
-
* 3CX Renewal Years (Upgrade Only)
|
|
6172
|
-
* @type {number}
|
|
6173
|
-
* @memberof PostGetProductForCustomerRequest
|
|
6832
|
+
* @memberof PostSendWelcomeEmailRequest
|
|
6174
6833
|
*/
|
|
6175
|
-
'
|
|
6834
|
+
'email'?: string;
|
|
6176
6835
|
}
|
|
6177
6836
|
/**
|
|
6178
6837
|
*
|
|
@@ -6347,6 +7006,67 @@ export interface ProductPriceListItemModel {
|
|
|
6347
7006
|
*/
|
|
6348
7007
|
'brand'?: string | null;
|
|
6349
7008
|
}
|
|
7009
|
+
/**
|
|
7010
|
+
* Product Search
|
|
7011
|
+
* @export
|
|
7012
|
+
* @interface ProductSearchDTO
|
|
7013
|
+
*/
|
|
7014
|
+
export interface ProductSearchDTO {
|
|
7015
|
+
/**
|
|
7016
|
+
* SKU
|
|
7017
|
+
* @type {string}
|
|
7018
|
+
* @memberof ProductSearchDTO
|
|
7019
|
+
*/
|
|
7020
|
+
'sku'?: string | null;
|
|
7021
|
+
/**
|
|
7022
|
+
* Quantity
|
|
7023
|
+
* @type {number}
|
|
7024
|
+
* @memberof ProductSearchDTO
|
|
7025
|
+
*/
|
|
7026
|
+
'quantity'?: number | null;
|
|
7027
|
+
/**
|
|
7028
|
+
* Licence Key
|
|
7029
|
+
* @type {string}
|
|
7030
|
+
* @memberof ProductSearchDTO
|
|
7031
|
+
*/
|
|
7032
|
+
'licenceKey'?: string | null;
|
|
7033
|
+
/**
|
|
7034
|
+
* Hosting
|
|
7035
|
+
* @type {boolean}
|
|
7036
|
+
* @memberof ProductSearchDTO
|
|
7037
|
+
*/
|
|
7038
|
+
'hosting'?: boolean | null;
|
|
7039
|
+
/**
|
|
7040
|
+
* 3CX Sales Code
|
|
7041
|
+
* @type {string}
|
|
7042
|
+
* @memberof ProductSearchDTO
|
|
7043
|
+
*/
|
|
7044
|
+
'tcxSalesCode'?: string | null;
|
|
7045
|
+
/**
|
|
7046
|
+
* 3CX Renewal Years
|
|
7047
|
+
* @type {number}
|
|
7048
|
+
* @memberof ProductSearchDTO
|
|
7049
|
+
*/
|
|
7050
|
+
'renewalYears'?: number | null;
|
|
7051
|
+
/**
|
|
7052
|
+
* Order ID
|
|
7053
|
+
* @type {number}
|
|
7054
|
+
* @memberof ProductSearchDTO
|
|
7055
|
+
*/
|
|
7056
|
+
'orderId'?: number | null;
|
|
7057
|
+
/**
|
|
7058
|
+
* Items
|
|
7059
|
+
* @type {Array<CustomerItemRequestDTO>}
|
|
7060
|
+
* @memberof ProductSearchDTO
|
|
7061
|
+
*/
|
|
7062
|
+
'items'?: Array<CustomerItemRequestDTO> | null;
|
|
7063
|
+
/**
|
|
7064
|
+
* Discount
|
|
7065
|
+
* @type {number}
|
|
7066
|
+
* @memberof ProductSearchDTO
|
|
7067
|
+
*/
|
|
7068
|
+
'discount'?: number | null;
|
|
7069
|
+
}
|
|
6350
7070
|
/**
|
|
6351
7071
|
* Product Search Results
|
|
6352
7072
|
* @export
|
|
@@ -6457,6 +7177,12 @@ export interface ProductSummaryDTO {
|
|
|
6457
7177
|
* @memberof ProductSummaryDTO
|
|
6458
7178
|
*/
|
|
6459
7179
|
'hosting'?: boolean | null;
|
|
7180
|
+
/**
|
|
7181
|
+
* Applied Discounts
|
|
7182
|
+
* @type {Array<AbstractItemDiscountModel>}
|
|
7183
|
+
* @memberof ProductSummaryDTO
|
|
7184
|
+
*/
|
|
7185
|
+
'discounts'?: Array<AbstractItemDiscountModel>;
|
|
6460
7186
|
}
|
|
6461
7187
|
/**
|
|
6462
7188
|
* PromoCodesEntity
|
|
@@ -6640,6 +7366,12 @@ export interface ProspectDTO {
|
|
|
6640
7366
|
* @memberof ProspectDTO
|
|
6641
7367
|
*/
|
|
6642
7368
|
'status'?: ProspectDTOStatusEnum;
|
|
7369
|
+
/**
|
|
7370
|
+
* Order Count
|
|
7371
|
+
* @type {number}
|
|
7372
|
+
* @memberof ProspectDTO
|
|
7373
|
+
*/
|
|
7374
|
+
'orderCount'?: number;
|
|
6643
7375
|
}
|
|
6644
7376
|
export declare const ProspectDTOStatusEnum: {
|
|
6645
7377
|
readonly NoCallBackSet: "No Call Back Set";
|
|
@@ -6647,6 +7379,7 @@ export declare const ProspectDTOStatusEnum: {
|
|
|
6647
7379
|
readonly NoOrdersPlaced: "No Orders Placed";
|
|
6648
7380
|
readonly NoOrdersInTheLast4Months: "No Orders In The Last 4 Months";
|
|
6649
7381
|
readonly NoActionRequired: "No Action Required";
|
|
7382
|
+
readonly DoNotCall: "Do Not Call";
|
|
6650
7383
|
};
|
|
6651
7384
|
export type ProspectDTOStatusEnum = typeof ProspectDTOStatusEnum[keyof typeof ProspectDTOStatusEnum];
|
|
6652
7385
|
/**
|
|
@@ -6840,6 +7573,12 @@ export interface RecordingBackupAzureModel {
|
|
|
6840
7573
|
* @memberof RecordingBackupAzureModel
|
|
6841
7574
|
*/
|
|
6842
7575
|
'connection_string'?: string;
|
|
7576
|
+
/**
|
|
7577
|
+
* SAS Url
|
|
7578
|
+
* @type {string}
|
|
7579
|
+
* @memberof RecordingBackupAzureModel
|
|
7580
|
+
*/
|
|
7581
|
+
'sasUrl'?: string;
|
|
6843
7582
|
/**
|
|
6844
7583
|
* Recordings Path
|
|
6845
7584
|
* @type {string}
|
|
@@ -9651,6 +10390,61 @@ export interface SupportTicketModel {
|
|
|
9651
10390
|
*/
|
|
9652
10391
|
'conversations'?: Array<ConversationModel>;
|
|
9653
10392
|
}
|
|
10393
|
+
/**
|
|
10394
|
+
* TableAttribsEntity
|
|
10395
|
+
* @export
|
|
10396
|
+
* @interface TableHistoryEntity
|
|
10397
|
+
*/
|
|
10398
|
+
export interface TableHistoryEntity {
|
|
10399
|
+
/**
|
|
10400
|
+
* ownerId
|
|
10401
|
+
* @type {string}
|
|
10402
|
+
* @memberof TableHistoryEntity
|
|
10403
|
+
*/
|
|
10404
|
+
'ownerId'?: string;
|
|
10405
|
+
/**
|
|
10406
|
+
* table
|
|
10407
|
+
* @type {string}
|
|
10408
|
+
* @memberof TableHistoryEntity
|
|
10409
|
+
*/
|
|
10410
|
+
'dbTable'?: string;
|
|
10411
|
+
/**
|
|
10412
|
+
* orderingField
|
|
10413
|
+
* @type {string}
|
|
10414
|
+
* @memberof TableHistoryEntity
|
|
10415
|
+
*/
|
|
10416
|
+
'orderingField'?: string;
|
|
10417
|
+
/**
|
|
10418
|
+
* asc
|
|
10419
|
+
* @type {number}
|
|
10420
|
+
* @memberof TableHistoryEntity
|
|
10421
|
+
*/
|
|
10422
|
+
'asc'?: number;
|
|
10423
|
+
/**
|
|
10424
|
+
* perPage
|
|
10425
|
+
* @type {number}
|
|
10426
|
+
* @memberof TableHistoryEntity
|
|
10427
|
+
*/
|
|
10428
|
+
'perPage'?: number;
|
|
10429
|
+
/**
|
|
10430
|
+
* currPage
|
|
10431
|
+
* @type {number}
|
|
10432
|
+
* @memberof TableHistoryEntity
|
|
10433
|
+
*/
|
|
10434
|
+
'currPage'?: number;
|
|
10435
|
+
/**
|
|
10436
|
+
* filter
|
|
10437
|
+
* @type {string}
|
|
10438
|
+
* @memberof TableHistoryEntity
|
|
10439
|
+
*/
|
|
10440
|
+
'filter'?: string;
|
|
10441
|
+
/**
|
|
10442
|
+
* page
|
|
10443
|
+
* @type {number}
|
|
10444
|
+
* @memberof TableHistoryEntity
|
|
10445
|
+
*/
|
|
10446
|
+
'page'?: number;
|
|
10447
|
+
}
|
|
9654
10448
|
/**
|
|
9655
10449
|
* 3CX Wizard Restore From Backup
|
|
9656
10450
|
* @export
|
|
@@ -12035,6 +12829,21 @@ export interface XeroLogEntity {
|
|
|
12035
12829
|
* @export
|
|
12036
12830
|
*/
|
|
12037
12831
|
export declare const AccountsApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
12832
|
+
/**
|
|
12833
|
+
* Delete Account Contact
|
|
12834
|
+
* @param {string} id Account Xero ID
|
|
12835
|
+
* @param {number} contactId Contact ID
|
|
12836
|
+
* @param {*} [options] Override http request option.
|
|
12837
|
+
* @throws {RequiredError}
|
|
12838
|
+
*/
|
|
12839
|
+
deleteAdminUpdateAccountContact: (id: string, contactId: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12840
|
+
/**
|
|
12841
|
+
* Delete Account
|
|
12842
|
+
* @param {string} id Account Xero ID
|
|
12843
|
+
* @param {*} [options] Override http request option.
|
|
12844
|
+
* @throws {RequiredError}
|
|
12845
|
+
*/
|
|
12846
|
+
deleteArchiveAccount: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12038
12847
|
/**
|
|
12039
12848
|
* Delete client credentials
|
|
12040
12849
|
* @summary Delete client credentials
|
|
@@ -12051,6 +12860,13 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12051
12860
|
* @throws {RequiredError}
|
|
12052
12861
|
*/
|
|
12053
12862
|
deleteUpdateAccountContact: (email: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12863
|
+
/**
|
|
12864
|
+
* Get Account Contacts
|
|
12865
|
+
* @param {string} id Account Xero ID
|
|
12866
|
+
* @param {*} [options] Override http request option.
|
|
12867
|
+
* @throws {RequiredError}
|
|
12868
|
+
*/
|
|
12869
|
+
getAdminCreateAccountContact: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12054
12870
|
/**
|
|
12055
12871
|
* Get Account
|
|
12056
12872
|
* @summary Get Account
|
|
@@ -12058,6 +12874,13 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12058
12874
|
* @throws {RequiredError}
|
|
12059
12875
|
*/
|
|
12060
12876
|
getGetAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12877
|
+
/**
|
|
12878
|
+
* Get Account Addresses
|
|
12879
|
+
* @param {string} id Xero ID
|
|
12880
|
+
* @param {*} [options] Override http request option.
|
|
12881
|
+
* @throws {RequiredError}
|
|
12882
|
+
*/
|
|
12883
|
+
getGetAccountAddresses: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12061
12884
|
/**
|
|
12062
12885
|
* Get Account Contacts
|
|
12063
12886
|
* @summary Get Account Contacts
|
|
@@ -12092,6 +12915,12 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12092
12915
|
* @throws {RequiredError}
|
|
12093
12916
|
*/
|
|
12094
12917
|
getGetClientCredentials: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12918
|
+
/**
|
|
12919
|
+
* Get Customer Accounts List
|
|
12920
|
+
* @param {*} [options] Override http request option.
|
|
12921
|
+
* @throws {RequiredError}
|
|
12922
|
+
*/
|
|
12923
|
+
getGetCustomerAccountsList: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12095
12924
|
/**
|
|
12096
12925
|
* Get 3CX Keys
|
|
12097
12926
|
* @summary Get 3CX Keys
|
|
@@ -12099,6 +12928,27 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12099
12928
|
* @throws {RequiredError}
|
|
12100
12929
|
*/
|
|
12101
12930
|
getGetCustomerKeys: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12931
|
+
/**
|
|
12932
|
+
* Get Account Finance
|
|
12933
|
+
* @param {string} id Account Xero ID
|
|
12934
|
+
* @param {*} [options] Override http request option.
|
|
12935
|
+
* @throws {RequiredError}
|
|
12936
|
+
*/
|
|
12937
|
+
getGetFinanceSettings: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12938
|
+
/**
|
|
12939
|
+
* Get Last Account
|
|
12940
|
+
* @summary Get Last Account
|
|
12941
|
+
* @param {*} [options] Override http request option.
|
|
12942
|
+
* @throws {RequiredError}
|
|
12943
|
+
*/
|
|
12944
|
+
getGetLastAccount: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12945
|
+
/**
|
|
12946
|
+
* Get Account 3CX Details
|
|
12947
|
+
* @param {string} id Xero ID
|
|
12948
|
+
* @param {*} [options] Override http request option.
|
|
12949
|
+
* @throws {RequiredError}
|
|
12950
|
+
*/
|
|
12951
|
+
getGetTcxPartnerDetails: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12102
12952
|
/**
|
|
12103
12953
|
* Verify account email address
|
|
12104
12954
|
* @summary Verify account email address
|
|
@@ -12107,13 +12957,45 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12107
12957
|
* @throws {RequiredError}
|
|
12108
12958
|
*/
|
|
12109
12959
|
getVerifyEmailAddress: (token: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12960
|
+
/**
|
|
12961
|
+
* Set Account Portal Access
|
|
12962
|
+
* @param {string} id Xero ID
|
|
12963
|
+
* @param {PatchSetPortalAccessStateEnum} state Portal Access State
|
|
12964
|
+
* @param {*} [options] Override http request option.
|
|
12965
|
+
* @throws {RequiredError}
|
|
12966
|
+
*/
|
|
12967
|
+
patchSetPortalAccess: (id: string, state: PatchSetPortalAccessStateEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12968
|
+
/**
|
|
12969
|
+
* Set Account Prize Promo
|
|
12970
|
+
* @param {string} id Xero ID
|
|
12971
|
+
* @param {PatchSetPrizePromoStateEnum} state Prize Promo State
|
|
12972
|
+
* @param {*} [options] Override http request option.
|
|
12973
|
+
* @throws {RequiredError}
|
|
12974
|
+
*/
|
|
12975
|
+
patchSetPrizePromo: (id: string, state: PatchSetPrizePromoStateEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12110
12976
|
/**
|
|
12111
12977
|
* Set 3CX Wizard CNAME
|
|
12112
|
-
* @param {
|
|
12978
|
+
* @param {PatchUpdateAccountCnameRequest} [patchUpdateAccountCnameRequest] CNAME Request
|
|
12979
|
+
* @param {*} [options] Override http request option.
|
|
12980
|
+
* @throws {RequiredError}
|
|
12981
|
+
*/
|
|
12982
|
+
patchSetTcxWizardCname: (patchUpdateAccountCnameRequest?: PatchUpdateAccountCnameRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12983
|
+
/**
|
|
12984
|
+
* Set Account CNAME
|
|
12985
|
+
* @param {string} id Xero ID
|
|
12986
|
+
* @param {PatchUpdateAccountCnameRequest} [patchUpdateAccountCnameRequest] CNAME Request
|
|
12113
12987
|
* @param {*} [options] Override http request option.
|
|
12114
12988
|
* @throws {RequiredError}
|
|
12115
12989
|
*/
|
|
12116
|
-
|
|
12990
|
+
patchUpdateAccountCname: (id: string, patchUpdateAccountCnameRequest?: PatchUpdateAccountCnameRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12991
|
+
/**
|
|
12992
|
+
* Set Account Company Number
|
|
12993
|
+
* @param {string} id Xero ID
|
|
12994
|
+
* @param {PatchUpdateAccountCompanyNumberRequest} [patchUpdateAccountCompanyNumberRequest] Account Company Number Request
|
|
12995
|
+
* @param {*} [options] Override http request option.
|
|
12996
|
+
* @throws {RequiredError}
|
|
12997
|
+
*/
|
|
12998
|
+
patchUpdateAccountCompanyNumber: (id: string, patchUpdateAccountCompanyNumberRequest?: PatchUpdateAccountCompanyNumberRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12117
12999
|
/**
|
|
12118
13000
|
* Update Account Password
|
|
12119
13001
|
* @summary Update Account Password
|
|
@@ -12123,6 +13005,70 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12123
13005
|
* @throws {RequiredError}
|
|
12124
13006
|
*/
|
|
12125
13007
|
patchUpdateAccountContactPassword: (token: string, patchUpdateAccountContactPasswordRequest?: PatchUpdateAccountContactPasswordRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13008
|
+
/**
|
|
13009
|
+
* Set Account Phone
|
|
13010
|
+
* @param {string} id Xero ID
|
|
13011
|
+
* @param {PatchUpdateAccountPhoneRequest} [patchUpdateAccountPhoneRequest] Telephone Request
|
|
13012
|
+
* @param {*} [options] Override http request option.
|
|
13013
|
+
* @throws {RequiredError}
|
|
13014
|
+
*/
|
|
13015
|
+
patchUpdateAccountPhone: (id: string, patchUpdateAccountPhoneRequest?: PatchUpdateAccountPhoneRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13016
|
+
/**
|
|
13017
|
+
* Set Account VAT Number
|
|
13018
|
+
* @param {string} id Xero ID
|
|
13019
|
+
* @param {PatchUpdateAccountVatNumberRequest} [patchUpdateAccountVatNumberRequest] VAT Number Request
|
|
13020
|
+
* @param {*} [options] Override http request option.
|
|
13021
|
+
* @throws {RequiredError}
|
|
13022
|
+
*/
|
|
13023
|
+
patchUpdateAccountVatNumber: (id: string, patchUpdateAccountVatNumberRequest?: PatchUpdateAccountVatNumberRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13024
|
+
/**
|
|
13025
|
+
* Set Account Credit Limit
|
|
13026
|
+
* @param {string} id Xero ID
|
|
13027
|
+
* @param {PatchUpdateCreditLimitRequest} [patchUpdateCreditLimitRequest] Credit Limit Request
|
|
13028
|
+
* @param {*} [options] Override http request option.
|
|
13029
|
+
* @throws {RequiredError}
|
|
13030
|
+
*/
|
|
13031
|
+
patchUpdateCreditLimit: (id: string, patchUpdateCreditLimitRequest?: PatchUpdateCreditLimitRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13032
|
+
/**
|
|
13033
|
+
* Set Account Price List
|
|
13034
|
+
* @param {string} id Xero ID
|
|
13035
|
+
* @param {PatchUpdatePriceListRequest} [patchUpdatePriceListRequest] Price List Request
|
|
13036
|
+
* @param {*} [options] Override http request option.
|
|
13037
|
+
* @throws {RequiredError}
|
|
13038
|
+
*/
|
|
13039
|
+
patchUpdatePriceList: (id: string, patchUpdatePriceListRequest?: PatchUpdatePriceListRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13040
|
+
/**
|
|
13041
|
+
* Set Account SIP Channel Cost
|
|
13042
|
+
* @param {string} id Xero ID
|
|
13043
|
+
* @param {PatchUpdateSipChannelCostRequest} [patchUpdateSipChannelCostRequest] SIP Channel Cost Request
|
|
13044
|
+
* @param {*} [options] Override http request option.
|
|
13045
|
+
* @throws {RequiredError}
|
|
13046
|
+
*/
|
|
13047
|
+
patchUpdateSipChannelCost: (id: string, patchUpdateSipChannelCostRequest?: PatchUpdateSipChannelCostRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13048
|
+
/**
|
|
13049
|
+
* Set Account 3CX Hosting Price List
|
|
13050
|
+
* @param {string} id Xero ID
|
|
13051
|
+
* @param {PatchUpdateTcxHostingPriceListRequest} [patchUpdateTcxHostingPriceListRequest] 3CX Hosting Price List Request
|
|
13052
|
+
* @param {*} [options] Override http request option.
|
|
13053
|
+
* @throws {RequiredError}
|
|
13054
|
+
*/
|
|
13055
|
+
patchUpdateTcxHostingPriceList: (id: string, patchUpdateTcxHostingPriceListRequest?: PatchUpdateTcxHostingPriceListRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13056
|
+
/**
|
|
13057
|
+
* Set Account 3CX Partner ID
|
|
13058
|
+
* @param {string} id Xero ID
|
|
13059
|
+
* @param {PatchUpdateTcxPartnerIdRequest} [patchUpdateTcxPartnerIdRequest] Set Account 3CX Partner ID
|
|
13060
|
+
* @param {*} [options] Override http request option.
|
|
13061
|
+
* @throws {RequiredError}
|
|
13062
|
+
*/
|
|
13063
|
+
patchUpdateTcxPartnerId: (id: string, patchUpdateTcxPartnerIdRequest?: PatchUpdateTcxPartnerIdRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13064
|
+
/**
|
|
13065
|
+
* Create Account Contact
|
|
13066
|
+
* @param {string} id Account Xero ID
|
|
13067
|
+
* @param {AccountContactRequestModel} [accountContactRequestModel] Create Account Contact Request
|
|
13068
|
+
* @param {*} [options] Override http request option.
|
|
13069
|
+
* @throws {RequiredError}
|
|
13070
|
+
*/
|
|
13071
|
+
postAdminCreateAccountContact: (id: string, accountContactRequestModel?: AccountContactRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12126
13072
|
/**
|
|
12127
13073
|
* Add Account Contacts
|
|
12128
13074
|
* @summary Add Account Contact
|
|
@@ -12170,6 +13116,14 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12170
13116
|
* @throws {RequiredError}
|
|
12171
13117
|
*/
|
|
12172
13118
|
postSendPasswordReset: (email: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13119
|
+
/**
|
|
13120
|
+
* Send Account Welcome Email
|
|
13121
|
+
* @param {string} id Xero ID
|
|
13122
|
+
* @param {PostSendWelcomeEmailRequest} [postSendWelcomeEmailRequest] Email Request
|
|
13123
|
+
* @param {*} [options] Override http request option.
|
|
13124
|
+
* @throws {RequiredError}
|
|
13125
|
+
*/
|
|
13126
|
+
postSendWelcomeEmail: (id: string, postSendWelcomeEmailRequest?: PostSendWelcomeEmailRequest, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12173
13127
|
/**
|
|
12174
13128
|
* Submit reseller application
|
|
12175
13129
|
* @summary Submit reseller application
|
|
@@ -12180,6 +13134,15 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12180
13134
|
* @throws {RequiredError}
|
|
12181
13135
|
*/
|
|
12182
13136
|
postSubmitResellerApplication: (creditRequired?: number, companyNumber?: string, vatNumber?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13137
|
+
/**
|
|
13138
|
+
* Update Account Contact
|
|
13139
|
+
* @param {string} id Account Xero ID
|
|
13140
|
+
* @param {number} contactId Contact ID
|
|
13141
|
+
* @param {AccountContactRequestModel} [accountContactRequestModel] Update Account Contact Request
|
|
13142
|
+
* @param {*} [options] Override http request option.
|
|
13143
|
+
* @throws {RequiredError}
|
|
13144
|
+
*/
|
|
13145
|
+
putAdminUpdateAccountContact: (id: string, contactId: number, accountContactRequestModel?: AccountContactRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12183
13146
|
/**
|
|
12184
13147
|
* Update Account Contacts
|
|
12185
13148
|
* @summary Update Account Contact
|
|
@@ -12189,12 +13152,43 @@ export declare const AccountsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12189
13152
|
* @throws {RequiredError}
|
|
12190
13153
|
*/
|
|
12191
13154
|
putUpdateAccountContact: (email: string, accountContactRequestModel?: AccountContactRequestModel, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13155
|
+
/**
|
|
13156
|
+
* Update Account Billing Address
|
|
13157
|
+
* @param {string} id Xero ID
|
|
13158
|
+
* @param {AddressDTO} [addressDTO] Updated Billing Address
|
|
13159
|
+
* @param {*} [options] Override http request option.
|
|
13160
|
+
* @throws {RequiredError}
|
|
13161
|
+
*/
|
|
13162
|
+
putUpdateBillingAddress: (id: string, addressDTO?: AddressDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
13163
|
+
/**
|
|
13164
|
+
* Update Account Shipping Address
|
|
13165
|
+
* @param {string} id Xero ID
|
|
13166
|
+
* @param {AddressDTO} [addressDTO] Updated Shipping Address
|
|
13167
|
+
* @param {*} [options] Override http request option.
|
|
13168
|
+
* @throws {RequiredError}
|
|
13169
|
+
*/
|
|
13170
|
+
putUpdateShippingAddress: (id: string, addressDTO?: AddressDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12192
13171
|
};
|
|
12193
13172
|
/**
|
|
12194
13173
|
* AccountsApi - functional programming interface
|
|
12195
13174
|
* @export
|
|
12196
13175
|
*/
|
|
12197
13176
|
export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
13177
|
+
/**
|
|
13178
|
+
* Delete Account Contact
|
|
13179
|
+
* @param {string} id Account Xero ID
|
|
13180
|
+
* @param {number} contactId Contact ID
|
|
13181
|
+
* @param {*} [options] Override http request option.
|
|
13182
|
+
* @throws {RequiredError}
|
|
13183
|
+
*/
|
|
13184
|
+
deleteAdminUpdateAccountContact(id: string, contactId: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
13185
|
+
/**
|
|
13186
|
+
* Delete Account
|
|
13187
|
+
* @param {string} id Account Xero ID
|
|
13188
|
+
* @param {*} [options] Override http request option.
|
|
13189
|
+
* @throws {RequiredError}
|
|
13190
|
+
*/
|
|
13191
|
+
deleteArchiveAccount(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12198
13192
|
/**
|
|
12199
13193
|
* Delete client credentials
|
|
12200
13194
|
* @summary Delete client credentials
|
|
@@ -12211,6 +13205,13 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
12211
13205
|
* @throws {RequiredError}
|
|
12212
13206
|
*/
|
|
12213
13207
|
deleteUpdateAccountContact(email: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
13208
|
+
/**
|
|
13209
|
+
* Get Account Contacts
|
|
13210
|
+
* @param {string} id Account Xero ID
|
|
13211
|
+
* @param {*} [options] Override http request option.
|
|
13212
|
+
* @throws {RequiredError}
|
|
13213
|
+
*/
|
|
13214
|
+
getAdminCreateAccountContact(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<AccountContactModel>>>;
|
|
12214
13215
|
/**
|
|
12215
13216
|
* Get Account
|
|
12216
13217
|
* @summary Get Account
|
|
@@ -12218,6 +13219,13 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
12218
13219
|
* @throws {RequiredError}
|
|
12219
13220
|
*/
|
|
12220
13221
|
getGetAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PortalAccountModel>>;
|
|
13222
|
+
/**
|
|
13223
|
+
* Get Account Addresses
|
|
13224
|
+
* @param {string} id Xero ID
|
|
13225
|
+
* @param {*} [options] Override http request option.
|
|
13226
|
+
* @throws {RequiredError}
|
|
13227
|
+
*/
|
|
13228
|
+
getGetAccountAddresses(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountAddressesDTO>>;
|
|
12221
13229
|
/**
|
|
12222
13230
|
* Get Account Contacts
|
|
12223
13231
|
* @summary Get Account Contacts
|
|
@@ -12252,6 +13260,12 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
12252
13260
|
* @throws {RequiredError}
|
|
12253
13261
|
*/
|
|
12254
13262
|
getGetClientCredentials(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ClientModel>>>;
|
|
13263
|
+
/**
|
|
13264
|
+
* Get Customer Accounts List
|
|
13265
|
+
* @param {*} [options] Override http request option.
|
|
13266
|
+
* @throws {RequiredError}
|
|
13267
|
+
*/
|
|
13268
|
+
getGetCustomerAccountsList(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<CustomerListAccountDTO>>>;
|
|
12255
13269
|
/**
|
|
12256
13270
|
* Get 3CX Keys
|
|
12257
13271
|
* @summary Get 3CX Keys
|
|
@@ -12259,6 +13273,27 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
12259
13273
|
* @throws {RequiredError}
|
|
12260
13274
|
*/
|
|
12261
13275
|
getGetCustomerKeys(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<TcxKeySummaryDTO>>>;
|
|
13276
|
+
/**
|
|
13277
|
+
* Get Account Finance
|
|
13278
|
+
* @param {string} id Account Xero ID
|
|
13279
|
+
* @param {*} [options] Override http request option.
|
|
13280
|
+
* @throws {RequiredError}
|
|
13281
|
+
*/
|
|
13282
|
+
getGetFinanceSettings(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountFinanceDTO>>;
|
|
13283
|
+
/**
|
|
13284
|
+
* Get Last Account
|
|
13285
|
+
* @summary Get Last Account
|
|
13286
|
+
* @param {*} [options] Override http request option.
|
|
13287
|
+
* @throws {RequiredError}
|
|
13288
|
+
*/
|
|
13289
|
+
getGetLastAccount(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountSummaryDTO>>;
|
|
13290
|
+
/**
|
|
13291
|
+
* Get Account 3CX Details
|
|
13292
|
+
* @param {string} id Xero ID
|
|
13293
|
+
* @param {*} [options] Override http request option.
|
|
13294
|
+
* @throws {RequiredError}
|
|
13295
|
+
*/
|
|
13296
|
+
getGetTcxPartnerDetails(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PartnerDTO>>;
|
|
12262
13297
|
/**
|
|
12263
13298
|
* Verify account email address
|
|
12264
13299
|
* @summary Verify account email address
|
|
@@ -12267,13 +13302,45 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
12267
13302
|
* @throws {RequiredError}
|
|
12268
13303
|
*/
|
|
12269
13304
|
getVerifyEmailAddress(token: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
13305
|
+
/**
|
|
13306
|
+
* Set Account Portal Access
|
|
13307
|
+
* @param {string} id Xero ID
|
|
13308
|
+
* @param {PatchSetPortalAccessStateEnum} state Portal Access State
|
|
13309
|
+
* @param {*} [options] Override http request option.
|
|
13310
|
+
* @throws {RequiredError}
|
|
13311
|
+
*/
|
|
13312
|
+
patchSetPortalAccess(id: string, state: PatchSetPortalAccessStateEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
13313
|
+
/**
|
|
13314
|
+
* Set Account Prize Promo
|
|
13315
|
+
* @param {string} id Xero ID
|
|
13316
|
+
* @param {PatchSetPrizePromoStateEnum} state Prize Promo State
|
|
13317
|
+
* @param {*} [options] Override http request option.
|
|
13318
|
+
* @throws {RequiredError}
|
|
13319
|
+
*/
|
|
13320
|
+
patchSetPrizePromo(id: string, state: PatchSetPrizePromoStateEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12270
13321
|
/**
|
|
12271
13322
|
* Set 3CX Wizard CNAME
|
|
12272
|
-
* @param {
|
|
13323
|
+
* @param {PatchUpdateAccountCnameRequest} [patchUpdateAccountCnameRequest] CNAME Request
|
|
12273
13324
|
* @param {*} [options] Override http request option.
|
|
12274
13325
|
* @throws {RequiredError}
|
|
12275
13326
|
*/
|
|
12276
|
-
patchSetTcxWizardCname(
|
|
13327
|
+
patchSetTcxWizardCname(patchUpdateAccountCnameRequest?: PatchUpdateAccountCnameRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
13328
|
+
/**
|
|
13329
|
+
* Set Account CNAME
|
|
13330
|
+
* @param {string} id Xero ID
|
|
13331
|
+
* @param {PatchUpdateAccountCnameRequest} [patchUpdateAccountCnameRequest] CNAME Request
|
|
13332
|
+
* @param {*} [options] Override http request option.
|
|
13333
|
+
* @throws {RequiredError}
|
|
13334
|
+
*/
|
|
13335
|
+
patchUpdateAccountCname(id: string, patchUpdateAccountCnameRequest?: PatchUpdateAccountCnameRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
13336
|
+
/**
|
|
13337
|
+
* Set Account Company Number
|
|
13338
|
+
* @param {string} id Xero ID
|
|
13339
|
+
* @param {PatchUpdateAccountCompanyNumberRequest} [patchUpdateAccountCompanyNumberRequest] Account Company Number Request
|
|
13340
|
+
* @param {*} [options] Override http request option.
|
|
13341
|
+
* @throws {RequiredError}
|
|
13342
|
+
*/
|
|
13343
|
+
patchUpdateAccountCompanyNumber(id: string, patchUpdateAccountCompanyNumberRequest?: PatchUpdateAccountCompanyNumberRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12277
13344
|
/**
|
|
12278
13345
|
* Update Account Password
|
|
12279
13346
|
* @summary Update Account Password
|
|
@@ -12283,6 +13350,70 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
12283
13350
|
* @throws {RequiredError}
|
|
12284
13351
|
*/
|
|
12285
13352
|
patchUpdateAccountContactPassword(token: string, patchUpdateAccountContactPasswordRequest?: PatchUpdateAccountContactPasswordRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
13353
|
+
/**
|
|
13354
|
+
* Set Account Phone
|
|
13355
|
+
* @param {string} id Xero ID
|
|
13356
|
+
* @param {PatchUpdateAccountPhoneRequest} [patchUpdateAccountPhoneRequest] Telephone Request
|
|
13357
|
+
* @param {*} [options] Override http request option.
|
|
13358
|
+
* @throws {RequiredError}
|
|
13359
|
+
*/
|
|
13360
|
+
patchUpdateAccountPhone(id: string, patchUpdateAccountPhoneRequest?: PatchUpdateAccountPhoneRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
13361
|
+
/**
|
|
13362
|
+
* Set Account VAT Number
|
|
13363
|
+
* @param {string} id Xero ID
|
|
13364
|
+
* @param {PatchUpdateAccountVatNumberRequest} [patchUpdateAccountVatNumberRequest] VAT Number Request
|
|
13365
|
+
* @param {*} [options] Override http request option.
|
|
13366
|
+
* @throws {RequiredError}
|
|
13367
|
+
*/
|
|
13368
|
+
patchUpdateAccountVatNumber(id: string, patchUpdateAccountVatNumberRequest?: PatchUpdateAccountVatNumberRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
13369
|
+
/**
|
|
13370
|
+
* Set Account Credit Limit
|
|
13371
|
+
* @param {string} id Xero ID
|
|
13372
|
+
* @param {PatchUpdateCreditLimitRequest} [patchUpdateCreditLimitRequest] Credit Limit Request
|
|
13373
|
+
* @param {*} [options] Override http request option.
|
|
13374
|
+
* @throws {RequiredError}
|
|
13375
|
+
*/
|
|
13376
|
+
patchUpdateCreditLimit(id: string, patchUpdateCreditLimitRequest?: PatchUpdateCreditLimitRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountFinanceDTO>>;
|
|
13377
|
+
/**
|
|
13378
|
+
* Set Account Price List
|
|
13379
|
+
* @param {string} id Xero ID
|
|
13380
|
+
* @param {PatchUpdatePriceListRequest} [patchUpdatePriceListRequest] Price List Request
|
|
13381
|
+
* @param {*} [options] Override http request option.
|
|
13382
|
+
* @throws {RequiredError}
|
|
13383
|
+
*/
|
|
13384
|
+
patchUpdatePriceList(id: string, patchUpdatePriceListRequest?: PatchUpdatePriceListRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountFinanceDTO>>;
|
|
13385
|
+
/**
|
|
13386
|
+
* Set Account SIP Channel Cost
|
|
13387
|
+
* @param {string} id Xero ID
|
|
13388
|
+
* @param {PatchUpdateSipChannelCostRequest} [patchUpdateSipChannelCostRequest] SIP Channel Cost Request
|
|
13389
|
+
* @param {*} [options] Override http request option.
|
|
13390
|
+
* @throws {RequiredError}
|
|
13391
|
+
*/
|
|
13392
|
+
patchUpdateSipChannelCost(id: string, patchUpdateSipChannelCostRequest?: PatchUpdateSipChannelCostRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AccountFinanceDTO>>;
|
|
13393
|
+
/**
|
|
13394
|
+
* Set Account 3CX Hosting Price List
|
|
13395
|
+
* @param {string} id Xero ID
|
|
13396
|
+
* @param {PatchUpdateTcxHostingPriceListRequest} [patchUpdateTcxHostingPriceListRequest] 3CX Hosting Price List Request
|
|
13397
|
+
* @param {*} [options] Override http request option.
|
|
13398
|
+
* @throws {RequiredError}
|
|
13399
|
+
*/
|
|
13400
|
+
patchUpdateTcxHostingPriceList(id: string, patchUpdateTcxHostingPriceListRequest?: PatchUpdateTcxHostingPriceListRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PartnerDTO>>;
|
|
13401
|
+
/**
|
|
13402
|
+
* Set Account 3CX Partner ID
|
|
13403
|
+
* @param {string} id Xero ID
|
|
13404
|
+
* @param {PatchUpdateTcxPartnerIdRequest} [patchUpdateTcxPartnerIdRequest] Set Account 3CX Partner ID
|
|
13405
|
+
* @param {*} [options] Override http request option.
|
|
13406
|
+
* @throws {RequiredError}
|
|
13407
|
+
*/
|
|
13408
|
+
patchUpdateTcxPartnerId(id: string, patchUpdateTcxPartnerIdRequest?: PatchUpdateTcxPartnerIdRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<PartnerDTO>>;
|
|
13409
|
+
/**
|
|
13410
|
+
* Create Account Contact
|
|
13411
|
+
* @param {string} id Account Xero ID
|
|
13412
|
+
* @param {AccountContactRequestModel} [accountContactRequestModel] Create Account Contact Request
|
|
13413
|
+
* @param {*} [options] Override http request option.
|
|
13414
|
+
* @throws {RequiredError}
|
|
13415
|
+
*/
|
|
13416
|
+
postAdminCreateAccountContact(id: string, accountContactRequestModel?: AccountContactRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12286
13417
|
/**
|
|
12287
13418
|
* Add Account Contacts
|
|
12288
13419
|
* @summary Add Account Contact
|
|
@@ -12330,6 +13461,14 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
12330
13461
|
* @throws {RequiredError}
|
|
12331
13462
|
*/
|
|
12332
13463
|
postSendPasswordReset(email: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
13464
|
+
/**
|
|
13465
|
+
* Send Account Welcome Email
|
|
13466
|
+
* @param {string} id Xero ID
|
|
13467
|
+
* @param {PostSendWelcomeEmailRequest} [postSendWelcomeEmailRequest] Email Request
|
|
13468
|
+
* @param {*} [options] Override http request option.
|
|
13469
|
+
* @throws {RequiredError}
|
|
13470
|
+
*/
|
|
13471
|
+
postSendWelcomeEmail(id: string, postSendWelcomeEmailRequest?: PostSendWelcomeEmailRequest, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12333
13472
|
/**
|
|
12334
13473
|
* Submit reseller application
|
|
12335
13474
|
* @summary Submit reseller application
|
|
@@ -12340,6 +13479,15 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
12340
13479
|
* @throws {RequiredError}
|
|
12341
13480
|
*/
|
|
12342
13481
|
postSubmitResellerApplication(creditRequired?: number, companyNumber?: string, vatNumber?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
13482
|
+
/**
|
|
13483
|
+
* Update Account Contact
|
|
13484
|
+
* @param {string} id Account Xero ID
|
|
13485
|
+
* @param {number} contactId Contact ID
|
|
13486
|
+
* @param {AccountContactRequestModel} [accountContactRequestModel] Update Account Contact Request
|
|
13487
|
+
* @param {*} [options] Override http request option.
|
|
13488
|
+
* @throws {RequiredError}
|
|
13489
|
+
*/
|
|
13490
|
+
putAdminUpdateAccountContact(id: string, contactId: number, accountContactRequestModel?: AccountContactRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12343
13491
|
/**
|
|
12344
13492
|
* Update Account Contacts
|
|
12345
13493
|
* @summary Update Account Contact
|
|
@@ -12349,12 +13497,43 @@ export declare const AccountsApiFp: (configuration?: Configuration) => {
|
|
|
12349
13497
|
* @throws {RequiredError}
|
|
12350
13498
|
*/
|
|
12351
13499
|
putUpdateAccountContact(email: string, accountContactRequestModel?: AccountContactRequestModel, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
13500
|
+
/**
|
|
13501
|
+
* Update Account Billing Address
|
|
13502
|
+
* @param {string} id Xero ID
|
|
13503
|
+
* @param {AddressDTO} [addressDTO] Updated Billing Address
|
|
13504
|
+
* @param {*} [options] Override http request option.
|
|
13505
|
+
* @throws {RequiredError}
|
|
13506
|
+
*/
|
|
13507
|
+
putUpdateBillingAddress(id: string, addressDTO?: AddressDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
13508
|
+
/**
|
|
13509
|
+
* Update Account Shipping Address
|
|
13510
|
+
* @param {string} id Xero ID
|
|
13511
|
+
* @param {AddressDTO} [addressDTO] Updated Shipping Address
|
|
13512
|
+
* @param {*} [options] Override http request option.
|
|
13513
|
+
* @throws {RequiredError}
|
|
13514
|
+
*/
|
|
13515
|
+
putUpdateShippingAddress(id: string, addressDTO?: AddressDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
12352
13516
|
};
|
|
12353
13517
|
/**
|
|
12354
13518
|
* AccountsApi - factory interface
|
|
12355
13519
|
* @export
|
|
12356
13520
|
*/
|
|
12357
13521
|
export declare const AccountsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
13522
|
+
/**
|
|
13523
|
+
* Delete Account Contact
|
|
13524
|
+
* @param {string} id Account Xero ID
|
|
13525
|
+
* @param {number} contactId Contact ID
|
|
13526
|
+
* @param {*} [options] Override http request option.
|
|
13527
|
+
* @throws {RequiredError}
|
|
13528
|
+
*/
|
|
13529
|
+
deleteAdminUpdateAccountContact(id: string, contactId: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
13530
|
+
/**
|
|
13531
|
+
* Delete Account
|
|
13532
|
+
* @param {string} id Account Xero ID
|
|
13533
|
+
* @param {*} [options] Override http request option.
|
|
13534
|
+
* @throws {RequiredError}
|
|
13535
|
+
*/
|
|
13536
|
+
deleteArchiveAccount(id: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12358
13537
|
/**
|
|
12359
13538
|
* Delete client credentials
|
|
12360
13539
|
* @summary Delete client credentials
|
|
@@ -12371,6 +13550,13 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
12371
13550
|
* @throws {RequiredError}
|
|
12372
13551
|
*/
|
|
12373
13552
|
deleteUpdateAccountContact(email: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
13553
|
+
/**
|
|
13554
|
+
* Get Account Contacts
|
|
13555
|
+
* @param {string} id Account Xero ID
|
|
13556
|
+
* @param {*} [options] Override http request option.
|
|
13557
|
+
* @throws {RequiredError}
|
|
13558
|
+
*/
|
|
13559
|
+
getAdminCreateAccountContact(id: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<AccountContactModel>>;
|
|
12374
13560
|
/**
|
|
12375
13561
|
* Get Account
|
|
12376
13562
|
* @summary Get Account
|
|
@@ -12378,6 +13564,13 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
12378
13564
|
* @throws {RequiredError}
|
|
12379
13565
|
*/
|
|
12380
13566
|
getGetAccount(options?: RawAxiosRequestConfig): AxiosPromise<PortalAccountModel>;
|
|
13567
|
+
/**
|
|
13568
|
+
* Get Account Addresses
|
|
13569
|
+
* @param {string} id Xero ID
|
|
13570
|
+
* @param {*} [options] Override http request option.
|
|
13571
|
+
* @throws {RequiredError}
|
|
13572
|
+
*/
|
|
13573
|
+
getGetAccountAddresses(id: string, options?: RawAxiosRequestConfig): AxiosPromise<AccountAddressesDTO>;
|
|
12381
13574
|
/**
|
|
12382
13575
|
* Get Account Contacts
|
|
12383
13576
|
* @summary Get Account Contacts
|
|
@@ -12404,45 +13597,168 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
12404
13597
|
* @param {*} [options] Override http request option.
|
|
12405
13598
|
* @throws {RequiredError}
|
|
12406
13599
|
*/
|
|
12407
|
-
getGetAccounts(pageSize?: number, page?: number, search?: string, active?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<AccountsResponseModel>;
|
|
13600
|
+
getGetAccounts(pageSize?: number, page?: number, search?: string, active?: boolean, options?: RawAxiosRequestConfig): AxiosPromise<AccountsResponseModel>;
|
|
13601
|
+
/**
|
|
13602
|
+
* Get user\'s client credentials
|
|
13603
|
+
* @summary Get user\'s client credentials
|
|
13604
|
+
* @param {*} [options] Override http request option.
|
|
13605
|
+
* @throws {RequiredError}
|
|
13606
|
+
*/
|
|
13607
|
+
getGetClientCredentials(options?: RawAxiosRequestConfig): AxiosPromise<Array<ClientModel>>;
|
|
13608
|
+
/**
|
|
13609
|
+
* Get Customer Accounts List
|
|
13610
|
+
* @param {*} [options] Override http request option.
|
|
13611
|
+
* @throws {RequiredError}
|
|
13612
|
+
*/
|
|
13613
|
+
getGetCustomerAccountsList(options?: RawAxiosRequestConfig): AxiosPromise<Array<CustomerListAccountDTO>>;
|
|
13614
|
+
/**
|
|
13615
|
+
* Get 3CX Keys
|
|
13616
|
+
* @summary Get 3CX Keys
|
|
13617
|
+
* @param {*} [options] Override http request option.
|
|
13618
|
+
* @throws {RequiredError}
|
|
13619
|
+
*/
|
|
13620
|
+
getGetCustomerKeys(options?: RawAxiosRequestConfig): AxiosPromise<Array<TcxKeySummaryDTO>>;
|
|
13621
|
+
/**
|
|
13622
|
+
* Get Account Finance
|
|
13623
|
+
* @param {string} id Account Xero ID
|
|
13624
|
+
* @param {*} [options] Override http request option.
|
|
13625
|
+
* @throws {RequiredError}
|
|
13626
|
+
*/
|
|
13627
|
+
getGetFinanceSettings(id: string, options?: RawAxiosRequestConfig): AxiosPromise<AccountFinanceDTO>;
|
|
13628
|
+
/**
|
|
13629
|
+
* Get Last Account
|
|
13630
|
+
* @summary Get Last Account
|
|
13631
|
+
* @param {*} [options] Override http request option.
|
|
13632
|
+
* @throws {RequiredError}
|
|
13633
|
+
*/
|
|
13634
|
+
getGetLastAccount(options?: RawAxiosRequestConfig): AxiosPromise<AccountSummaryDTO>;
|
|
13635
|
+
/**
|
|
13636
|
+
* Get Account 3CX Details
|
|
13637
|
+
* @param {string} id Xero ID
|
|
13638
|
+
* @param {*} [options] Override http request option.
|
|
13639
|
+
* @throws {RequiredError}
|
|
13640
|
+
*/
|
|
13641
|
+
getGetTcxPartnerDetails(id: string, options?: RawAxiosRequestConfig): AxiosPromise<PartnerDTO>;
|
|
13642
|
+
/**
|
|
13643
|
+
* Verify account email address
|
|
13644
|
+
* @summary Verify account email address
|
|
13645
|
+
* @param {string} token Verification Token
|
|
13646
|
+
* @param {*} [options] Override http request option.
|
|
13647
|
+
* @throws {RequiredError}
|
|
13648
|
+
*/
|
|
13649
|
+
getVerifyEmailAddress(token: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
13650
|
+
/**
|
|
13651
|
+
* Set Account Portal Access
|
|
13652
|
+
* @param {string} id Xero ID
|
|
13653
|
+
* @param {PatchSetPortalAccessStateEnum} state Portal Access State
|
|
13654
|
+
* @param {*} [options] Override http request option.
|
|
13655
|
+
* @throws {RequiredError}
|
|
13656
|
+
*/
|
|
13657
|
+
patchSetPortalAccess(id: string, state: PatchSetPortalAccessStateEnum, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
13658
|
+
/**
|
|
13659
|
+
* Set Account Prize Promo
|
|
13660
|
+
* @param {string} id Xero ID
|
|
13661
|
+
* @param {PatchSetPrizePromoStateEnum} state Prize Promo State
|
|
13662
|
+
* @param {*} [options] Override http request option.
|
|
13663
|
+
* @throws {RequiredError}
|
|
13664
|
+
*/
|
|
13665
|
+
patchSetPrizePromo(id: string, state: PatchSetPrizePromoStateEnum, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
13666
|
+
/**
|
|
13667
|
+
* Set 3CX Wizard CNAME
|
|
13668
|
+
* @param {PatchUpdateAccountCnameRequest} [patchUpdateAccountCnameRequest] CNAME Request
|
|
13669
|
+
* @param {*} [options] Override http request option.
|
|
13670
|
+
* @throws {RequiredError}
|
|
13671
|
+
*/
|
|
13672
|
+
patchSetTcxWizardCname(patchUpdateAccountCnameRequest?: PatchUpdateAccountCnameRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
13673
|
+
/**
|
|
13674
|
+
* Set Account CNAME
|
|
13675
|
+
* @param {string} id Xero ID
|
|
13676
|
+
* @param {PatchUpdateAccountCnameRequest} [patchUpdateAccountCnameRequest] CNAME Request
|
|
13677
|
+
* @param {*} [options] Override http request option.
|
|
13678
|
+
* @throws {RequiredError}
|
|
13679
|
+
*/
|
|
13680
|
+
patchUpdateAccountCname(id: string, patchUpdateAccountCnameRequest?: PatchUpdateAccountCnameRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
13681
|
+
/**
|
|
13682
|
+
* Set Account Company Number
|
|
13683
|
+
* @param {string} id Xero ID
|
|
13684
|
+
* @param {PatchUpdateAccountCompanyNumberRequest} [patchUpdateAccountCompanyNumberRequest] Account Company Number Request
|
|
13685
|
+
* @param {*} [options] Override http request option.
|
|
13686
|
+
* @throws {RequiredError}
|
|
13687
|
+
*/
|
|
13688
|
+
patchUpdateAccountCompanyNumber(id: string, patchUpdateAccountCompanyNumberRequest?: PatchUpdateAccountCompanyNumberRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
13689
|
+
/**
|
|
13690
|
+
* Update Account Password
|
|
13691
|
+
* @summary Update Account Password
|
|
13692
|
+
* @param {string} token Verification Token
|
|
13693
|
+
* @param {PatchUpdateAccountContactPasswordRequest} [patchUpdateAccountContactPasswordRequest] New account request
|
|
13694
|
+
* @param {*} [options] Override http request option.
|
|
13695
|
+
* @throws {RequiredError}
|
|
13696
|
+
*/
|
|
13697
|
+
patchUpdateAccountContactPassword(token: string, patchUpdateAccountContactPasswordRequest?: PatchUpdateAccountContactPasswordRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
13698
|
+
/**
|
|
13699
|
+
* Set Account Phone
|
|
13700
|
+
* @param {string} id Xero ID
|
|
13701
|
+
* @param {PatchUpdateAccountPhoneRequest} [patchUpdateAccountPhoneRequest] Telephone Request
|
|
13702
|
+
* @param {*} [options] Override http request option.
|
|
13703
|
+
* @throws {RequiredError}
|
|
13704
|
+
*/
|
|
13705
|
+
patchUpdateAccountPhone(id: string, patchUpdateAccountPhoneRequest?: PatchUpdateAccountPhoneRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
13706
|
+
/**
|
|
13707
|
+
* Set Account VAT Number
|
|
13708
|
+
* @param {string} id Xero ID
|
|
13709
|
+
* @param {PatchUpdateAccountVatNumberRequest} [patchUpdateAccountVatNumberRequest] VAT Number Request
|
|
13710
|
+
* @param {*} [options] Override http request option.
|
|
13711
|
+
* @throws {RequiredError}
|
|
13712
|
+
*/
|
|
13713
|
+
patchUpdateAccountVatNumber(id: string, patchUpdateAccountVatNumberRequest?: PatchUpdateAccountVatNumberRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
13714
|
+
/**
|
|
13715
|
+
* Set Account Credit Limit
|
|
13716
|
+
* @param {string} id Xero ID
|
|
13717
|
+
* @param {PatchUpdateCreditLimitRequest} [patchUpdateCreditLimitRequest] Credit Limit Request
|
|
13718
|
+
* @param {*} [options] Override http request option.
|
|
13719
|
+
* @throws {RequiredError}
|
|
13720
|
+
*/
|
|
13721
|
+
patchUpdateCreditLimit(id: string, patchUpdateCreditLimitRequest?: PatchUpdateCreditLimitRequest, options?: RawAxiosRequestConfig): AxiosPromise<AccountFinanceDTO>;
|
|
12408
13722
|
/**
|
|
12409
|
-
*
|
|
12410
|
-
* @
|
|
13723
|
+
* Set Account Price List
|
|
13724
|
+
* @param {string} id Xero ID
|
|
13725
|
+
* @param {PatchUpdatePriceListRequest} [patchUpdatePriceListRequest] Price List Request
|
|
12411
13726
|
* @param {*} [options] Override http request option.
|
|
12412
13727
|
* @throws {RequiredError}
|
|
12413
13728
|
*/
|
|
12414
|
-
|
|
13729
|
+
patchUpdatePriceList(id: string, patchUpdatePriceListRequest?: PatchUpdatePriceListRequest, options?: RawAxiosRequestConfig): AxiosPromise<AccountFinanceDTO>;
|
|
12415
13730
|
/**
|
|
12416
|
-
*
|
|
12417
|
-
* @
|
|
13731
|
+
* Set Account SIP Channel Cost
|
|
13732
|
+
* @param {string} id Xero ID
|
|
13733
|
+
* @param {PatchUpdateSipChannelCostRequest} [patchUpdateSipChannelCostRequest] SIP Channel Cost Request
|
|
12418
13734
|
* @param {*} [options] Override http request option.
|
|
12419
13735
|
* @throws {RequiredError}
|
|
12420
13736
|
*/
|
|
12421
|
-
|
|
13737
|
+
patchUpdateSipChannelCost(id: string, patchUpdateSipChannelCostRequest?: PatchUpdateSipChannelCostRequest, options?: RawAxiosRequestConfig): AxiosPromise<AccountFinanceDTO>;
|
|
12422
13738
|
/**
|
|
12423
|
-
*
|
|
12424
|
-
* @
|
|
12425
|
-
* @param {
|
|
13739
|
+
* Set Account 3CX Hosting Price List
|
|
13740
|
+
* @param {string} id Xero ID
|
|
13741
|
+
* @param {PatchUpdateTcxHostingPriceListRequest} [patchUpdateTcxHostingPriceListRequest] 3CX Hosting Price List Request
|
|
12426
13742
|
* @param {*} [options] Override http request option.
|
|
12427
13743
|
* @throws {RequiredError}
|
|
12428
13744
|
*/
|
|
12429
|
-
|
|
13745
|
+
patchUpdateTcxHostingPriceList(id: string, patchUpdateTcxHostingPriceListRequest?: PatchUpdateTcxHostingPriceListRequest, options?: RawAxiosRequestConfig): AxiosPromise<PartnerDTO>;
|
|
12430
13746
|
/**
|
|
12431
|
-
* Set 3CX
|
|
12432
|
-
* @param {
|
|
13747
|
+
* Set Account 3CX Partner ID
|
|
13748
|
+
* @param {string} id Xero ID
|
|
13749
|
+
* @param {PatchUpdateTcxPartnerIdRequest} [patchUpdateTcxPartnerIdRequest] Set Account 3CX Partner ID
|
|
12433
13750
|
* @param {*} [options] Override http request option.
|
|
12434
13751
|
* @throws {RequiredError}
|
|
12435
13752
|
*/
|
|
12436
|
-
|
|
13753
|
+
patchUpdateTcxPartnerId(id: string, patchUpdateTcxPartnerIdRequest?: PatchUpdateTcxPartnerIdRequest, options?: RawAxiosRequestConfig): AxiosPromise<PartnerDTO>;
|
|
12437
13754
|
/**
|
|
12438
|
-
*
|
|
12439
|
-
* @
|
|
12440
|
-
* @param {
|
|
12441
|
-
* @param {PatchUpdateAccountContactPasswordRequest} [patchUpdateAccountContactPasswordRequest] New account request
|
|
13755
|
+
* Create Account Contact
|
|
13756
|
+
* @param {string} id Account Xero ID
|
|
13757
|
+
* @param {AccountContactRequestModel} [accountContactRequestModel] Create Account Contact Request
|
|
12442
13758
|
* @param {*} [options] Override http request option.
|
|
12443
13759
|
* @throws {RequiredError}
|
|
12444
13760
|
*/
|
|
12445
|
-
|
|
13761
|
+
postAdminCreateAccountContact(id: string, accountContactRequestModel?: AccountContactRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12446
13762
|
/**
|
|
12447
13763
|
* Add Account Contacts
|
|
12448
13764
|
* @summary Add Account Contact
|
|
@@ -12490,6 +13806,14 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
12490
13806
|
* @throws {RequiredError}
|
|
12491
13807
|
*/
|
|
12492
13808
|
postSendPasswordReset(email: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
13809
|
+
/**
|
|
13810
|
+
* Send Account Welcome Email
|
|
13811
|
+
* @param {string} id Xero ID
|
|
13812
|
+
* @param {PostSendWelcomeEmailRequest} [postSendWelcomeEmailRequest] Email Request
|
|
13813
|
+
* @param {*} [options] Override http request option.
|
|
13814
|
+
* @throws {RequiredError}
|
|
13815
|
+
*/
|
|
13816
|
+
postSendWelcomeEmail(id: string, postSendWelcomeEmailRequest?: PostSendWelcomeEmailRequest, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12493
13817
|
/**
|
|
12494
13818
|
* Submit reseller application
|
|
12495
13819
|
* @summary Submit reseller application
|
|
@@ -12500,6 +13824,15 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
12500
13824
|
* @throws {RequiredError}
|
|
12501
13825
|
*/
|
|
12502
13826
|
postSubmitResellerApplication(creditRequired?: number, companyNumber?: string, vatNumber?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
13827
|
+
/**
|
|
13828
|
+
* Update Account Contact
|
|
13829
|
+
* @param {string} id Account Xero ID
|
|
13830
|
+
* @param {number} contactId Contact ID
|
|
13831
|
+
* @param {AccountContactRequestModel} [accountContactRequestModel] Update Account Contact Request
|
|
13832
|
+
* @param {*} [options] Override http request option.
|
|
13833
|
+
* @throws {RequiredError}
|
|
13834
|
+
*/
|
|
13835
|
+
putAdminUpdateAccountContact(id: string, contactId: number, accountContactRequestModel?: AccountContactRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12503
13836
|
/**
|
|
12504
13837
|
* Update Account Contacts
|
|
12505
13838
|
* @summary Update Account Contact
|
|
@@ -12509,6 +13842,22 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
12509
13842
|
* @throws {RequiredError}
|
|
12510
13843
|
*/
|
|
12511
13844
|
putUpdateAccountContact(email: string, accountContactRequestModel?: AccountContactRequestModel, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
13845
|
+
/**
|
|
13846
|
+
* Update Account Billing Address
|
|
13847
|
+
* @param {string} id Xero ID
|
|
13848
|
+
* @param {AddressDTO} [addressDTO] Updated Billing Address
|
|
13849
|
+
* @param {*} [options] Override http request option.
|
|
13850
|
+
* @throws {RequiredError}
|
|
13851
|
+
*/
|
|
13852
|
+
putUpdateBillingAddress(id: string, addressDTO?: AddressDTO, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
13853
|
+
/**
|
|
13854
|
+
* Update Account Shipping Address
|
|
13855
|
+
* @param {string} id Xero ID
|
|
13856
|
+
* @param {AddressDTO} [addressDTO] Updated Shipping Address
|
|
13857
|
+
* @param {*} [options] Override http request option.
|
|
13858
|
+
* @throws {RequiredError}
|
|
13859
|
+
*/
|
|
13860
|
+
putUpdateShippingAddress(id: string, addressDTO?: AddressDTO, options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
12512
13861
|
};
|
|
12513
13862
|
/**
|
|
12514
13863
|
* AccountsApi - object-oriented interface
|
|
@@ -12517,6 +13866,23 @@ export declare const AccountsApiFactory: (configuration?: Configuration, basePat
|
|
|
12517
13866
|
* @extends {BaseAPI}
|
|
12518
13867
|
*/
|
|
12519
13868
|
export declare class AccountsApi extends BaseAPI {
|
|
13869
|
+
/**
|
|
13870
|
+
* Delete Account Contact
|
|
13871
|
+
* @param {string} id Account Xero ID
|
|
13872
|
+
* @param {number} contactId Contact ID
|
|
13873
|
+
* @param {*} [options] Override http request option.
|
|
13874
|
+
* @throws {RequiredError}
|
|
13875
|
+
* @memberof AccountsApi
|
|
13876
|
+
*/
|
|
13877
|
+
deleteAdminUpdateAccountContact(id: string, contactId: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
13878
|
+
/**
|
|
13879
|
+
* Delete Account
|
|
13880
|
+
* @param {string} id Account Xero ID
|
|
13881
|
+
* @param {*} [options] Override http request option.
|
|
13882
|
+
* @throws {RequiredError}
|
|
13883
|
+
* @memberof AccountsApi
|
|
13884
|
+
*/
|
|
13885
|
+
deleteArchiveAccount(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12520
13886
|
/**
|
|
12521
13887
|
* Delete client credentials
|
|
12522
13888
|
* @summary Delete client credentials
|
|
@@ -12535,6 +13901,14 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
12535
13901
|
* @memberof AccountsApi
|
|
12536
13902
|
*/
|
|
12537
13903
|
deleteUpdateAccountContact(email: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
13904
|
+
/**
|
|
13905
|
+
* Get Account Contacts
|
|
13906
|
+
* @param {string} id Account Xero ID
|
|
13907
|
+
* @param {*} [options] Override http request option.
|
|
13908
|
+
* @throws {RequiredError}
|
|
13909
|
+
* @memberof AccountsApi
|
|
13910
|
+
*/
|
|
13911
|
+
getAdminCreateAccountContact(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountContactModel[], any, {}>>;
|
|
12538
13912
|
/**
|
|
12539
13913
|
* Get Account
|
|
12540
13914
|
* @summary Get Account
|
|
@@ -12543,6 +13917,14 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
12543
13917
|
* @memberof AccountsApi
|
|
12544
13918
|
*/
|
|
12545
13919
|
getGetAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PortalAccountModel, any, {}>>;
|
|
13920
|
+
/**
|
|
13921
|
+
* Get Account Addresses
|
|
13922
|
+
* @param {string} id Xero ID
|
|
13923
|
+
* @param {*} [options] Override http request option.
|
|
13924
|
+
* @throws {RequiredError}
|
|
13925
|
+
* @memberof AccountsApi
|
|
13926
|
+
*/
|
|
13927
|
+
getGetAccountAddresses(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountAddressesDTO, any, {}>>;
|
|
12546
13928
|
/**
|
|
12547
13929
|
* Get Account Contacts
|
|
12548
13930
|
* @summary Get Account Contacts
|
|
@@ -12581,6 +13963,13 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
12581
13963
|
* @memberof AccountsApi
|
|
12582
13964
|
*/
|
|
12583
13965
|
getGetClientCredentials(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClientModel[], any, {}>>;
|
|
13966
|
+
/**
|
|
13967
|
+
* Get Customer Accounts List
|
|
13968
|
+
* @param {*} [options] Override http request option.
|
|
13969
|
+
* @throws {RequiredError}
|
|
13970
|
+
* @memberof AccountsApi
|
|
13971
|
+
*/
|
|
13972
|
+
getGetCustomerAccountsList(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CustomerListAccountDTO[], any, {}>>;
|
|
12584
13973
|
/**
|
|
12585
13974
|
* Get 3CX Keys
|
|
12586
13975
|
* @summary Get 3CX Keys
|
|
@@ -12589,6 +13978,30 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
12589
13978
|
* @memberof AccountsApi
|
|
12590
13979
|
*/
|
|
12591
13980
|
getGetCustomerKeys(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxKeySummaryDTO[], any, {}>>;
|
|
13981
|
+
/**
|
|
13982
|
+
* Get Account Finance
|
|
13983
|
+
* @param {string} id Account Xero ID
|
|
13984
|
+
* @param {*} [options] Override http request option.
|
|
13985
|
+
* @throws {RequiredError}
|
|
13986
|
+
* @memberof AccountsApi
|
|
13987
|
+
*/
|
|
13988
|
+
getGetFinanceSettings(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountFinanceDTO, any, {}>>;
|
|
13989
|
+
/**
|
|
13990
|
+
* Get Last Account
|
|
13991
|
+
* @summary Get Last Account
|
|
13992
|
+
* @param {*} [options] Override http request option.
|
|
13993
|
+
* @throws {RequiredError}
|
|
13994
|
+
* @memberof AccountsApi
|
|
13995
|
+
*/
|
|
13996
|
+
getGetLastAccount(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountSummaryDTO, any, {}>>;
|
|
13997
|
+
/**
|
|
13998
|
+
* Get Account 3CX Details
|
|
13999
|
+
* @param {string} id Xero ID
|
|
14000
|
+
* @param {*} [options] Override http request option.
|
|
14001
|
+
* @throws {RequiredError}
|
|
14002
|
+
* @memberof AccountsApi
|
|
14003
|
+
*/
|
|
14004
|
+
getGetTcxPartnerDetails(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PartnerDTO, any, {}>>;
|
|
12592
14005
|
/**
|
|
12593
14006
|
* Verify account email address
|
|
12594
14007
|
* @summary Verify account email address
|
|
@@ -12598,14 +14011,50 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
12598
14011
|
* @memberof AccountsApi
|
|
12599
14012
|
*/
|
|
12600
14013
|
getVerifyEmailAddress(token: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
14014
|
+
/**
|
|
14015
|
+
* Set Account Portal Access
|
|
14016
|
+
* @param {string} id Xero ID
|
|
14017
|
+
* @param {PatchSetPortalAccessStateEnum} state Portal Access State
|
|
14018
|
+
* @param {*} [options] Override http request option.
|
|
14019
|
+
* @throws {RequiredError}
|
|
14020
|
+
* @memberof AccountsApi
|
|
14021
|
+
*/
|
|
14022
|
+
patchSetPortalAccess(id: string, state: PatchSetPortalAccessStateEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
14023
|
+
/**
|
|
14024
|
+
* Set Account Prize Promo
|
|
14025
|
+
* @param {string} id Xero ID
|
|
14026
|
+
* @param {PatchSetPrizePromoStateEnum} state Prize Promo State
|
|
14027
|
+
* @param {*} [options] Override http request option.
|
|
14028
|
+
* @throws {RequiredError}
|
|
14029
|
+
* @memberof AccountsApi
|
|
14030
|
+
*/
|
|
14031
|
+
patchSetPrizePromo(id: string, state: PatchSetPrizePromoStateEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12601
14032
|
/**
|
|
12602
14033
|
* Set 3CX Wizard CNAME
|
|
12603
|
-
* @param {
|
|
14034
|
+
* @param {PatchUpdateAccountCnameRequest} [patchUpdateAccountCnameRequest] CNAME Request
|
|
14035
|
+
* @param {*} [options] Override http request option.
|
|
14036
|
+
* @throws {RequiredError}
|
|
14037
|
+
* @memberof AccountsApi
|
|
14038
|
+
*/
|
|
14039
|
+
patchSetTcxWizardCname(patchUpdateAccountCnameRequest?: PatchUpdateAccountCnameRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
14040
|
+
/**
|
|
14041
|
+
* Set Account CNAME
|
|
14042
|
+
* @param {string} id Xero ID
|
|
14043
|
+
* @param {PatchUpdateAccountCnameRequest} [patchUpdateAccountCnameRequest] CNAME Request
|
|
14044
|
+
* @param {*} [options] Override http request option.
|
|
14045
|
+
* @throws {RequiredError}
|
|
14046
|
+
* @memberof AccountsApi
|
|
14047
|
+
*/
|
|
14048
|
+
patchUpdateAccountCname(id: string, patchUpdateAccountCnameRequest?: PatchUpdateAccountCnameRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
14049
|
+
/**
|
|
14050
|
+
* Set Account Company Number
|
|
14051
|
+
* @param {string} id Xero ID
|
|
14052
|
+
* @param {PatchUpdateAccountCompanyNumberRequest} [patchUpdateAccountCompanyNumberRequest] Account Company Number Request
|
|
12604
14053
|
* @param {*} [options] Override http request option.
|
|
12605
14054
|
* @throws {RequiredError}
|
|
12606
14055
|
* @memberof AccountsApi
|
|
12607
14056
|
*/
|
|
12608
|
-
|
|
14057
|
+
patchUpdateAccountCompanyNumber(id: string, patchUpdateAccountCompanyNumberRequest?: PatchUpdateAccountCompanyNumberRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12609
14058
|
/**
|
|
12610
14059
|
* Update Account Password
|
|
12611
14060
|
* @summary Update Account Password
|
|
@@ -12616,6 +14065,78 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
12616
14065
|
* @memberof AccountsApi
|
|
12617
14066
|
*/
|
|
12618
14067
|
patchUpdateAccountContactPassword(token: string, patchUpdateAccountContactPasswordRequest?: PatchUpdateAccountContactPasswordRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
14068
|
+
/**
|
|
14069
|
+
* Set Account Phone
|
|
14070
|
+
* @param {string} id Xero ID
|
|
14071
|
+
* @param {PatchUpdateAccountPhoneRequest} [patchUpdateAccountPhoneRequest] Telephone Request
|
|
14072
|
+
* @param {*} [options] Override http request option.
|
|
14073
|
+
* @throws {RequiredError}
|
|
14074
|
+
* @memberof AccountsApi
|
|
14075
|
+
*/
|
|
14076
|
+
patchUpdateAccountPhone(id: string, patchUpdateAccountPhoneRequest?: PatchUpdateAccountPhoneRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
14077
|
+
/**
|
|
14078
|
+
* Set Account VAT Number
|
|
14079
|
+
* @param {string} id Xero ID
|
|
14080
|
+
* @param {PatchUpdateAccountVatNumberRequest} [patchUpdateAccountVatNumberRequest] VAT Number Request
|
|
14081
|
+
* @param {*} [options] Override http request option.
|
|
14082
|
+
* @throws {RequiredError}
|
|
14083
|
+
* @memberof AccountsApi
|
|
14084
|
+
*/
|
|
14085
|
+
patchUpdateAccountVatNumber(id: string, patchUpdateAccountVatNumberRequest?: PatchUpdateAccountVatNumberRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
14086
|
+
/**
|
|
14087
|
+
* Set Account Credit Limit
|
|
14088
|
+
* @param {string} id Xero ID
|
|
14089
|
+
* @param {PatchUpdateCreditLimitRequest} [patchUpdateCreditLimitRequest] Credit Limit Request
|
|
14090
|
+
* @param {*} [options] Override http request option.
|
|
14091
|
+
* @throws {RequiredError}
|
|
14092
|
+
* @memberof AccountsApi
|
|
14093
|
+
*/
|
|
14094
|
+
patchUpdateCreditLimit(id: string, patchUpdateCreditLimitRequest?: PatchUpdateCreditLimitRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountFinanceDTO, any, {}>>;
|
|
14095
|
+
/**
|
|
14096
|
+
* Set Account Price List
|
|
14097
|
+
* @param {string} id Xero ID
|
|
14098
|
+
* @param {PatchUpdatePriceListRequest} [patchUpdatePriceListRequest] Price List Request
|
|
14099
|
+
* @param {*} [options] Override http request option.
|
|
14100
|
+
* @throws {RequiredError}
|
|
14101
|
+
* @memberof AccountsApi
|
|
14102
|
+
*/
|
|
14103
|
+
patchUpdatePriceList(id: string, patchUpdatePriceListRequest?: PatchUpdatePriceListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountFinanceDTO, any, {}>>;
|
|
14104
|
+
/**
|
|
14105
|
+
* Set Account SIP Channel Cost
|
|
14106
|
+
* @param {string} id Xero ID
|
|
14107
|
+
* @param {PatchUpdateSipChannelCostRequest} [patchUpdateSipChannelCostRequest] SIP Channel Cost Request
|
|
14108
|
+
* @param {*} [options] Override http request option.
|
|
14109
|
+
* @throws {RequiredError}
|
|
14110
|
+
* @memberof AccountsApi
|
|
14111
|
+
*/
|
|
14112
|
+
patchUpdateSipChannelCost(id: string, patchUpdateSipChannelCostRequest?: PatchUpdateSipChannelCostRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AccountFinanceDTO, any, {}>>;
|
|
14113
|
+
/**
|
|
14114
|
+
* Set Account 3CX Hosting Price List
|
|
14115
|
+
* @param {string} id Xero ID
|
|
14116
|
+
* @param {PatchUpdateTcxHostingPriceListRequest} [patchUpdateTcxHostingPriceListRequest] 3CX Hosting Price List Request
|
|
14117
|
+
* @param {*} [options] Override http request option.
|
|
14118
|
+
* @throws {RequiredError}
|
|
14119
|
+
* @memberof AccountsApi
|
|
14120
|
+
*/
|
|
14121
|
+
patchUpdateTcxHostingPriceList(id: string, patchUpdateTcxHostingPriceListRequest?: PatchUpdateTcxHostingPriceListRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PartnerDTO, any, {}>>;
|
|
14122
|
+
/**
|
|
14123
|
+
* Set Account 3CX Partner ID
|
|
14124
|
+
* @param {string} id Xero ID
|
|
14125
|
+
* @param {PatchUpdateTcxPartnerIdRequest} [patchUpdateTcxPartnerIdRequest] Set Account 3CX Partner ID
|
|
14126
|
+
* @param {*} [options] Override http request option.
|
|
14127
|
+
* @throws {RequiredError}
|
|
14128
|
+
* @memberof AccountsApi
|
|
14129
|
+
*/
|
|
14130
|
+
patchUpdateTcxPartnerId(id: string, patchUpdateTcxPartnerIdRequest?: PatchUpdateTcxPartnerIdRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<PartnerDTO, any, {}>>;
|
|
14131
|
+
/**
|
|
14132
|
+
* Create Account Contact
|
|
14133
|
+
* @param {string} id Account Xero ID
|
|
14134
|
+
* @param {AccountContactRequestModel} [accountContactRequestModel] Create Account Contact Request
|
|
14135
|
+
* @param {*} [options] Override http request option.
|
|
14136
|
+
* @throws {RequiredError}
|
|
14137
|
+
* @memberof AccountsApi
|
|
14138
|
+
*/
|
|
14139
|
+
postAdminCreateAccountContact(id: string, accountContactRequestModel?: AccountContactRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12619
14140
|
/**
|
|
12620
14141
|
* Add Account Contacts
|
|
12621
14142
|
* @summary Add Account Contact
|
|
@@ -12669,6 +14190,15 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
12669
14190
|
* @memberof AccountsApi
|
|
12670
14191
|
*/
|
|
12671
14192
|
postSendPasswordReset(email: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
14193
|
+
/**
|
|
14194
|
+
* Send Account Welcome Email
|
|
14195
|
+
* @param {string} id Xero ID
|
|
14196
|
+
* @param {PostSendWelcomeEmailRequest} [postSendWelcomeEmailRequest] Email Request
|
|
14197
|
+
* @param {*} [options] Override http request option.
|
|
14198
|
+
* @throws {RequiredError}
|
|
14199
|
+
* @memberof AccountsApi
|
|
14200
|
+
*/
|
|
14201
|
+
postSendWelcomeEmail(id: string, postSendWelcomeEmailRequest?: PostSendWelcomeEmailRequest, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12672
14202
|
/**
|
|
12673
14203
|
* Submit reseller application
|
|
12674
14204
|
* @summary Submit reseller application
|
|
@@ -12680,6 +14210,16 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
12680
14210
|
* @memberof AccountsApi
|
|
12681
14211
|
*/
|
|
12682
14212
|
postSubmitResellerApplication(creditRequired?: number, companyNumber?: string, vatNumber?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
14213
|
+
/**
|
|
14214
|
+
* Update Account Contact
|
|
14215
|
+
* @param {string} id Account Xero ID
|
|
14216
|
+
* @param {number} contactId Contact ID
|
|
14217
|
+
* @param {AccountContactRequestModel} [accountContactRequestModel] Update Account Contact Request
|
|
14218
|
+
* @param {*} [options] Override http request option.
|
|
14219
|
+
* @throws {RequiredError}
|
|
14220
|
+
* @memberof AccountsApi
|
|
14221
|
+
*/
|
|
14222
|
+
putAdminUpdateAccountContact(id: string, contactId: number, accountContactRequestModel?: AccountContactRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12683
14223
|
/**
|
|
12684
14224
|
* Update Account Contacts
|
|
12685
14225
|
* @summary Update Account Contact
|
|
@@ -12690,7 +14230,41 @@ export declare class AccountsApi extends BaseAPI {
|
|
|
12690
14230
|
* @memberof AccountsApi
|
|
12691
14231
|
*/
|
|
12692
14232
|
putUpdateAccountContact(email: string, accountContactRequestModel?: AccountContactRequestModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
14233
|
+
/**
|
|
14234
|
+
* Update Account Billing Address
|
|
14235
|
+
* @param {string} id Xero ID
|
|
14236
|
+
* @param {AddressDTO} [addressDTO] Updated Billing Address
|
|
14237
|
+
* @param {*} [options] Override http request option.
|
|
14238
|
+
* @throws {RequiredError}
|
|
14239
|
+
* @memberof AccountsApi
|
|
14240
|
+
*/
|
|
14241
|
+
putUpdateBillingAddress(id: string, addressDTO?: AddressDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
14242
|
+
/**
|
|
14243
|
+
* Update Account Shipping Address
|
|
14244
|
+
* @param {string} id Xero ID
|
|
14245
|
+
* @param {AddressDTO} [addressDTO] Updated Shipping Address
|
|
14246
|
+
* @param {*} [options] Override http request option.
|
|
14247
|
+
* @throws {RequiredError}
|
|
14248
|
+
* @memberof AccountsApi
|
|
14249
|
+
*/
|
|
14250
|
+
putUpdateShippingAddress(id: string, addressDTO?: AddressDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
12693
14251
|
}
|
|
14252
|
+
/**
|
|
14253
|
+
* @export
|
|
14254
|
+
*/
|
|
14255
|
+
export declare const PatchSetPortalAccessStateEnum: {
|
|
14256
|
+
readonly Enable: "enable";
|
|
14257
|
+
readonly Disable: "disable";
|
|
14258
|
+
};
|
|
14259
|
+
export type PatchSetPortalAccessStateEnum = typeof PatchSetPortalAccessStateEnum[keyof typeof PatchSetPortalAccessStateEnum];
|
|
14260
|
+
/**
|
|
14261
|
+
* @export
|
|
14262
|
+
*/
|
|
14263
|
+
export declare const PatchSetPrizePromoStateEnum: {
|
|
14264
|
+
readonly Enable: "enable";
|
|
14265
|
+
readonly Disable: "disable";
|
|
14266
|
+
};
|
|
14267
|
+
export type PatchSetPrizePromoStateEnum = typeof PatchSetPrizePromoStateEnum[keyof typeof PatchSetPrizePromoStateEnum];
|
|
12694
14268
|
/**
|
|
12695
14269
|
* BillingApi - axios parameter creator
|
|
12696
14270
|
* @export
|
|
@@ -12763,36 +14337,87 @@ export declare class BillingApi extends BaseAPI {
|
|
|
12763
14337
|
* @export
|
|
12764
14338
|
*/
|
|
12765
14339
|
export declare const CRMApiAxiosParamCreator: (configuration?: Configuration) => {
|
|
14340
|
+
/**
|
|
14341
|
+
* Get Customer CRM Activities
|
|
14342
|
+
* @param {number} id Account ID
|
|
14343
|
+
* @param {GetGetCrmActivitiesTypeEnum} [type] Activity Type
|
|
14344
|
+
* @param {number} [userId] Activity Created By
|
|
14345
|
+
* @param {*} [options] Override http request option.
|
|
14346
|
+
* @throws {RequiredError}
|
|
14347
|
+
*/
|
|
14348
|
+
getGetCrmActivities: (id: number, type?: GetGetCrmActivitiesTypeEnum, userId?: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12766
14349
|
/**
|
|
12767
14350
|
* Search for contacts by phone number
|
|
12768
14351
|
* @param {*} [options] Override http request option.
|
|
12769
14352
|
* @throws {RequiredError}
|
|
12770
14353
|
*/
|
|
12771
14354
|
getSearchByPhone: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14355
|
+
/**
|
|
14356
|
+
* Create CRM Note
|
|
14357
|
+
* @param {number} id Account ID
|
|
14358
|
+
* @param {CreateCrmNoteBody} [createCrmNoteBody] CRM Note Request
|
|
14359
|
+
* @param {*} [options] Override http request option.
|
|
14360
|
+
* @throws {RequiredError}
|
|
14361
|
+
*/
|
|
14362
|
+
postCreateCrmNote: (id: number, createCrmNoteBody?: CreateCrmNoteBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12772
14363
|
};
|
|
12773
14364
|
/**
|
|
12774
14365
|
* CRMApi - functional programming interface
|
|
12775
14366
|
* @export
|
|
12776
14367
|
*/
|
|
12777
14368
|
export declare const CRMApiFp: (configuration?: Configuration) => {
|
|
14369
|
+
/**
|
|
14370
|
+
* Get Customer CRM Activities
|
|
14371
|
+
* @param {number} id Account ID
|
|
14372
|
+
* @param {GetGetCrmActivitiesTypeEnum} [type] Activity Type
|
|
14373
|
+
* @param {number} [userId] Activity Created By
|
|
14374
|
+
* @param {*} [options] Override http request option.
|
|
14375
|
+
* @throws {RequiredError}
|
|
14376
|
+
*/
|
|
14377
|
+
getGetCrmActivities(id: number, type?: GetGetCrmActivitiesTypeEnum, userId?: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CrmActivitiesResponseDTO>>;
|
|
12778
14378
|
/**
|
|
12779
14379
|
* Search for contacts by phone number
|
|
12780
14380
|
* @param {*} [options] Override http request option.
|
|
12781
14381
|
* @throws {RequiredError}
|
|
12782
14382
|
*/
|
|
12783
14383
|
getSearchByPhone(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CrmContactDTO>>;
|
|
14384
|
+
/**
|
|
14385
|
+
* Create CRM Note
|
|
14386
|
+
* @param {number} id Account ID
|
|
14387
|
+
* @param {CreateCrmNoteBody} [createCrmNoteBody] CRM Note Request
|
|
14388
|
+
* @param {*} [options] Override http request option.
|
|
14389
|
+
* @throws {RequiredError}
|
|
14390
|
+
*/
|
|
14391
|
+
postCreateCrmNote(id: number, createCrmNoteBody?: CreateCrmNoteBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<CrmActivityDTO>>;
|
|
12784
14392
|
};
|
|
12785
14393
|
/**
|
|
12786
14394
|
* CRMApi - factory interface
|
|
12787
14395
|
* @export
|
|
12788
14396
|
*/
|
|
12789
14397
|
export declare const CRMApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
|
|
14398
|
+
/**
|
|
14399
|
+
* Get Customer CRM Activities
|
|
14400
|
+
* @param {number} id Account ID
|
|
14401
|
+
* @param {GetGetCrmActivitiesTypeEnum} [type] Activity Type
|
|
14402
|
+
* @param {number} [userId] Activity Created By
|
|
14403
|
+
* @param {*} [options] Override http request option.
|
|
14404
|
+
* @throws {RequiredError}
|
|
14405
|
+
*/
|
|
14406
|
+
getGetCrmActivities(id: number, type?: GetGetCrmActivitiesTypeEnum, userId?: number, options?: RawAxiosRequestConfig): AxiosPromise<CrmActivitiesResponseDTO>;
|
|
12790
14407
|
/**
|
|
12791
14408
|
* Search for contacts by phone number
|
|
12792
14409
|
* @param {*} [options] Override http request option.
|
|
12793
14410
|
* @throws {RequiredError}
|
|
12794
14411
|
*/
|
|
12795
14412
|
getSearchByPhone(options?: RawAxiosRequestConfig): AxiosPromise<CrmContactDTO>;
|
|
14413
|
+
/**
|
|
14414
|
+
* Create CRM Note
|
|
14415
|
+
* @param {number} id Account ID
|
|
14416
|
+
* @param {CreateCrmNoteBody} [createCrmNoteBody] CRM Note Request
|
|
14417
|
+
* @param {*} [options] Override http request option.
|
|
14418
|
+
* @throws {RequiredError}
|
|
14419
|
+
*/
|
|
14420
|
+
postCreateCrmNote(id: number, createCrmNoteBody?: CreateCrmNoteBody, options?: RawAxiosRequestConfig): AxiosPromise<CrmActivityDTO>;
|
|
12796
14421
|
};
|
|
12797
14422
|
/**
|
|
12798
14423
|
* CRMApi - object-oriented interface
|
|
@@ -12801,6 +14426,16 @@ export declare const CRMApiFactory: (configuration?: Configuration, basePath?: s
|
|
|
12801
14426
|
* @extends {BaseAPI}
|
|
12802
14427
|
*/
|
|
12803
14428
|
export declare class CRMApi extends BaseAPI {
|
|
14429
|
+
/**
|
|
14430
|
+
* Get Customer CRM Activities
|
|
14431
|
+
* @param {number} id Account ID
|
|
14432
|
+
* @param {GetGetCrmActivitiesTypeEnum} [type] Activity Type
|
|
14433
|
+
* @param {number} [userId] Activity Created By
|
|
14434
|
+
* @param {*} [options] Override http request option.
|
|
14435
|
+
* @throws {RequiredError}
|
|
14436
|
+
* @memberof CRMApi
|
|
14437
|
+
*/
|
|
14438
|
+
getGetCrmActivities(id: number, type?: GetGetCrmActivitiesTypeEnum, userId?: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CrmActivitiesResponseDTO, any, {}>>;
|
|
12804
14439
|
/**
|
|
12805
14440
|
* Search for contacts by phone number
|
|
12806
14441
|
* @param {*} [options] Override http request option.
|
|
@@ -12808,7 +14443,29 @@ export declare class CRMApi extends BaseAPI {
|
|
|
12808
14443
|
* @memberof CRMApi
|
|
12809
14444
|
*/
|
|
12810
14445
|
getSearchByPhone(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CrmContactDTO, any, {}>>;
|
|
14446
|
+
/**
|
|
14447
|
+
* Create CRM Note
|
|
14448
|
+
* @param {number} id Account ID
|
|
14449
|
+
* @param {CreateCrmNoteBody} [createCrmNoteBody] CRM Note Request
|
|
14450
|
+
* @param {*} [options] Override http request option.
|
|
14451
|
+
* @throws {RequiredError}
|
|
14452
|
+
* @memberof CRMApi
|
|
14453
|
+
*/
|
|
14454
|
+
postCreateCrmNote(id: number, createCrmNoteBody?: CreateCrmNoteBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<CrmActivityDTO, any, {}>>;
|
|
12811
14455
|
}
|
|
14456
|
+
/**
|
|
14457
|
+
* @export
|
|
14458
|
+
*/
|
|
14459
|
+
export declare const GetGetCrmActivitiesTypeEnum: {
|
|
14460
|
+
readonly Alert: "alert";
|
|
14461
|
+
readonly Call: "call";
|
|
14462
|
+
readonly Email: "email";
|
|
14463
|
+
readonly Note: "note";
|
|
14464
|
+
readonly Order: "order";
|
|
14465
|
+
readonly Quote: "quote";
|
|
14466
|
+
readonly TcxOrder: "tcx_order";
|
|
14467
|
+
};
|
|
14468
|
+
export type GetGetCrmActivitiesTypeEnum = typeof GetGetCrmActivitiesTypeEnum[keyof typeof GetGetCrmActivitiesTypeEnum];
|
|
12812
14469
|
/**
|
|
12813
14470
|
* Class3CXApi - axios parameter creator
|
|
12814
14471
|
* @export
|
|
@@ -12822,6 +14479,13 @@ export declare const Class3CXApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
12822
14479
|
* @throws {RequiredError}
|
|
12823
14480
|
*/
|
|
12824
14481
|
getGetLicenceDetails: (key: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14482
|
+
/**
|
|
14483
|
+
* Get 3CX Expiring Keys
|
|
14484
|
+
* @summary Get 3CX Expiring Keys
|
|
14485
|
+
* @param {*} [options] Override http request option.
|
|
14486
|
+
* @throws {RequiredError}
|
|
14487
|
+
*/
|
|
14488
|
+
getGetTcxExpiringKeys: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
12825
14489
|
/**
|
|
12826
14490
|
* Get Bulk 3CX Licence Details
|
|
12827
14491
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -12844,6 +14508,13 @@ export declare const Class3CXApiFp: (configuration?: Configuration) => {
|
|
|
12844
14508
|
* @throws {RequiredError}
|
|
12845
14509
|
*/
|
|
12846
14510
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxLicenceDetailsModel>>;
|
|
14511
|
+
/**
|
|
14512
|
+
* Get 3CX Expiring Keys
|
|
14513
|
+
* @summary Get 3CX Expiring Keys
|
|
14514
|
+
* @param {*} [options] Override http request option.
|
|
14515
|
+
* @throws {RequiredError}
|
|
14516
|
+
*/
|
|
14517
|
+
getGetTcxExpiringKeys(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>>;
|
|
12847
14518
|
/**
|
|
12848
14519
|
* Get Bulk 3CX Licence Details
|
|
12849
14520
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -12866,6 +14537,13 @@ export declare const Class3CXApiFactory: (configuration?: Configuration, basePat
|
|
|
12866
14537
|
* @throws {RequiredError}
|
|
12867
14538
|
*/
|
|
12868
14539
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): AxiosPromise<TcxLicenceDetailsModel>;
|
|
14540
|
+
/**
|
|
14541
|
+
* Get 3CX Expiring Keys
|
|
14542
|
+
* @summary Get 3CX Expiring Keys
|
|
14543
|
+
* @param {*} [options] Override http request option.
|
|
14544
|
+
* @throws {RequiredError}
|
|
14545
|
+
*/
|
|
14546
|
+
getGetTcxExpiringKeys(options?: RawAxiosRequestConfig): AxiosPromise<string>;
|
|
12869
14547
|
/**
|
|
12870
14548
|
* Get Bulk 3CX Licence Details
|
|
12871
14549
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -12891,6 +14569,14 @@ export declare class Class3CXApi extends BaseAPI {
|
|
|
12891
14569
|
* @memberof Class3CXApi
|
|
12892
14570
|
*/
|
|
12893
14571
|
getGetLicenceDetails(key: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxLicenceDetailsModel, any, {}>>;
|
|
14572
|
+
/**
|
|
14573
|
+
* Get 3CX Expiring Keys
|
|
14574
|
+
* @summary Get 3CX Expiring Keys
|
|
14575
|
+
* @param {*} [options] Override http request option.
|
|
14576
|
+
* @throws {RequiredError}
|
|
14577
|
+
* @memberof Class3CXApi
|
|
14578
|
+
*/
|
|
14579
|
+
getGetTcxExpiringKeys(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string, any, {}>>;
|
|
12894
14580
|
/**
|
|
12895
14581
|
* Get Bulk 3CX Licence Details
|
|
12896
14582
|
* @summary Get bulk 3CX Licence Details
|
|
@@ -14092,6 +15778,14 @@ export declare const Class3CXInstallationsApiAxiosParamCreator: (configuration?:
|
|
|
14092
15778
|
* @throws {RequiredError}
|
|
14093
15779
|
*/
|
|
14094
15780
|
getGetInstallations: (pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, installType?: GetGetInstallationsInstallTypeEnum, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15781
|
+
/**
|
|
15782
|
+
* Get Recording Backup Storage
|
|
15783
|
+
* @summary Get Recording Backup Storage
|
|
15784
|
+
* @param {string} instanceId Instance ID
|
|
15785
|
+
* @param {*} [options] Override http request option.
|
|
15786
|
+
* @throws {RequiredError}
|
|
15787
|
+
*/
|
|
15788
|
+
getGetRecordingBackupStorage: (instanceId: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
14095
15789
|
/**
|
|
14096
15790
|
* Change instance owner
|
|
14097
15791
|
* @summary Change instance owner
|
|
@@ -14271,6 +15965,14 @@ export declare const Class3CXInstallationsApiFp: (configuration?: Configuration)
|
|
|
14271
15965
|
* @throws {RequiredError}
|
|
14272
15966
|
*/
|
|
14273
15967
|
getGetInstallations(pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, installType?: GetGetInstallationsInstallTypeEnum, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TcxInstallationsModel>>;
|
|
15968
|
+
/**
|
|
15969
|
+
* Get Recording Backup Storage
|
|
15970
|
+
* @summary Get Recording Backup Storage
|
|
15971
|
+
* @param {string} instanceId Instance ID
|
|
15972
|
+
* @param {*} [options] Override http request option.
|
|
15973
|
+
* @throws {RequiredError}
|
|
15974
|
+
*/
|
|
15975
|
+
getGetRecordingBackupStorage(instanceId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<RecordingBackupAzureModel>>;
|
|
14274
15976
|
/**
|
|
14275
15977
|
* Change instance owner
|
|
14276
15978
|
* @summary Change instance owner
|
|
@@ -14450,6 +16152,14 @@ export declare const Class3CXInstallationsApiFactory: (configuration?: Configura
|
|
|
14450
16152
|
* @throws {RequiredError}
|
|
14451
16153
|
*/
|
|
14452
16154
|
getGetInstallations(pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, installType?: GetGetInstallationsInstallTypeEnum, options?: RawAxiosRequestConfig): AxiosPromise<TcxInstallationsModel>;
|
|
16155
|
+
/**
|
|
16156
|
+
* Get Recording Backup Storage
|
|
16157
|
+
* @summary Get Recording Backup Storage
|
|
16158
|
+
* @param {string} instanceId Instance ID
|
|
16159
|
+
* @param {*} [options] Override http request option.
|
|
16160
|
+
* @throws {RequiredError}
|
|
16161
|
+
*/
|
|
16162
|
+
getGetRecordingBackupStorage(instanceId: string, options?: RawAxiosRequestConfig): AxiosPromise<RecordingBackupAzureModel>;
|
|
14453
16163
|
/**
|
|
14454
16164
|
* Change instance owner
|
|
14455
16165
|
* @summary Change instance owner
|
|
@@ -14633,6 +16343,15 @@ export declare class Class3CXInstallationsApi extends BaseAPI {
|
|
|
14633
16343
|
* @memberof Class3CXInstallationsApi
|
|
14634
16344
|
*/
|
|
14635
16345
|
getGetInstallations(pageSize?: number, page?: number, customerId?: string, search?: string, status?: GetGetInstallationsStatusEnum, hosting?: GetGetInstallationsHostingEnum, installType?: GetGetInstallationsInstallTypeEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxInstallationsModel, any, {}>>;
|
|
16346
|
+
/**
|
|
16347
|
+
* Get Recording Backup Storage
|
|
16348
|
+
* @summary Get Recording Backup Storage
|
|
16349
|
+
* @param {string} instanceId Instance ID
|
|
16350
|
+
* @param {*} [options] Override http request option.
|
|
16351
|
+
* @throws {RequiredError}
|
|
16352
|
+
* @memberof Class3CXInstallationsApi
|
|
16353
|
+
*/
|
|
16354
|
+
getGetRecordingBackupStorage(instanceId: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<RecordingBackupAzureModel, any, {}>>;
|
|
14636
16355
|
/**
|
|
14637
16356
|
* Change instance owner
|
|
14638
16357
|
* @summary Change instance owner
|
|
@@ -15519,11 +17238,11 @@ export declare const NumberPortingApiAxiosParamCreator: (configuration?: Configu
|
|
|
15519
17238
|
/**
|
|
15520
17239
|
*
|
|
15521
17240
|
* @param {number} id Number Port ID
|
|
15522
|
-
* @param {
|
|
17241
|
+
* @param {NumberPortAdminNoteBody} numberPortAdminNoteBody Number Port Note Request
|
|
15523
17242
|
* @param {*} [options] Override http request option.
|
|
15524
17243
|
* @throws {RequiredError}
|
|
15525
17244
|
*/
|
|
15526
|
-
postAddAdminNote: (id: number,
|
|
17245
|
+
postAddAdminNote: (id: number, numberPortAdminNoteBody: NumberPortAdminNoteBody, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
15527
17246
|
/**
|
|
15528
17247
|
*
|
|
15529
17248
|
* @param {string | null} [companyName] Company Name
|
|
@@ -15650,11 +17369,11 @@ export declare const NumberPortingApiFp: (configuration?: Configuration) => {
|
|
|
15650
17369
|
/**
|
|
15651
17370
|
*
|
|
15652
17371
|
* @param {number} id Number Port ID
|
|
15653
|
-
* @param {
|
|
17372
|
+
* @param {NumberPortAdminNoteBody} numberPortAdminNoteBody Number Port Note Request
|
|
15654
17373
|
* @param {*} [options] Override http request option.
|
|
15655
17374
|
* @throws {RequiredError}
|
|
15656
17375
|
*/
|
|
15657
|
-
postAddAdminNote(id: number,
|
|
17376
|
+
postAddAdminNote(id: number, numberPortAdminNoteBody: NumberPortAdminNoteBody, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AdminNumberPortDTO>>;
|
|
15658
17377
|
/**
|
|
15659
17378
|
*
|
|
15660
17379
|
* @param {string | null} [companyName] Company Name
|
|
@@ -15781,11 +17500,11 @@ export declare const NumberPortingApiFactory: (configuration?: Configuration, ba
|
|
|
15781
17500
|
/**
|
|
15782
17501
|
*
|
|
15783
17502
|
* @param {number} id Number Port ID
|
|
15784
|
-
* @param {
|
|
17503
|
+
* @param {NumberPortAdminNoteBody} numberPortAdminNoteBody Number Port Note Request
|
|
15785
17504
|
* @param {*} [options] Override http request option.
|
|
15786
17505
|
* @throws {RequiredError}
|
|
15787
17506
|
*/
|
|
15788
|
-
postAddAdminNote(id: number,
|
|
17507
|
+
postAddAdminNote(id: number, numberPortAdminNoteBody: NumberPortAdminNoteBody, options?: RawAxiosRequestConfig): AxiosPromise<AdminNumberPortDTO>;
|
|
15789
17508
|
/**
|
|
15790
17509
|
*
|
|
15791
17510
|
* @param {string | null} [companyName] Company Name
|
|
@@ -15921,12 +17640,12 @@ export declare class NumberPortingApi extends BaseAPI {
|
|
|
15921
17640
|
/**
|
|
15922
17641
|
*
|
|
15923
17642
|
* @param {number} id Number Port ID
|
|
15924
|
-
* @param {
|
|
17643
|
+
* @param {NumberPortAdminNoteBody} numberPortAdminNoteBody Number Port Note Request
|
|
15925
17644
|
* @param {*} [options] Override http request option.
|
|
15926
17645
|
* @throws {RequiredError}
|
|
15927
17646
|
* @memberof NumberPortingApi
|
|
15928
17647
|
*/
|
|
15929
|
-
postAddAdminNote(id: number,
|
|
17648
|
+
postAddAdminNote(id: number, numberPortAdminNoteBody: NumberPortAdminNoteBody, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<AdminNumberPortDTO, any, {}>>;
|
|
15930
17649
|
/**
|
|
15931
17650
|
*
|
|
15932
17651
|
* @param {string | null} [companyName] Company Name
|
|
@@ -16055,6 +17774,12 @@ export declare const OAuth20ApiAxiosParamCreator: (configuration?: Configuration
|
|
|
16055
17774
|
* @throws {RequiredError}
|
|
16056
17775
|
*/
|
|
16057
17776
|
postGetIdentity: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17777
|
+
/**
|
|
17778
|
+
* Remove Oauth 2.0 Cookies
|
|
17779
|
+
* @param {*} [options] Override http request option.
|
|
17780
|
+
* @throws {RequiredError}
|
|
17781
|
+
*/
|
|
17782
|
+
postLogout: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
16058
17783
|
/**
|
|
16059
17784
|
* Portal Login
|
|
16060
17785
|
* @summary Portal Login
|
|
@@ -16123,6 +17848,12 @@ export declare const OAuth20ApiFp: (configuration?: Configuration) => {
|
|
|
16123
17848
|
* @throws {RequiredError}
|
|
16124
17849
|
*/
|
|
16125
17850
|
postGetIdentity(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ClientDetailsModel>>;
|
|
17851
|
+
/**
|
|
17852
|
+
* Remove Oauth 2.0 Cookies
|
|
17853
|
+
* @param {*} [options] Override http request option.
|
|
17854
|
+
* @throws {RequiredError}
|
|
17855
|
+
*/
|
|
17856
|
+
postLogout(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
|
|
16126
17857
|
/**
|
|
16127
17858
|
* Portal Login
|
|
16128
17859
|
* @summary Portal Login
|
|
@@ -16191,6 +17922,12 @@ export declare const OAuth20ApiFactory: (configuration?: Configuration, basePath
|
|
|
16191
17922
|
* @throws {RequiredError}
|
|
16192
17923
|
*/
|
|
16193
17924
|
postGetIdentity(options?: RawAxiosRequestConfig): AxiosPromise<ClientDetailsModel>;
|
|
17925
|
+
/**
|
|
17926
|
+
* Remove Oauth 2.0 Cookies
|
|
17927
|
+
* @param {*} [options] Override http request option.
|
|
17928
|
+
* @throws {RequiredError}
|
|
17929
|
+
*/
|
|
17930
|
+
postLogout(options?: RawAxiosRequestConfig): AxiosPromise<void>;
|
|
16194
17931
|
/**
|
|
16195
17932
|
* Portal Login
|
|
16196
17933
|
* @summary Portal Login
|
|
@@ -16266,6 +18003,13 @@ export declare class OAuth20Api extends BaseAPI {
|
|
|
16266
18003
|
* @memberof OAuth20Api
|
|
16267
18004
|
*/
|
|
16268
18005
|
postGetIdentity(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ClientDetailsModel, any, {}>>;
|
|
18006
|
+
/**
|
|
18007
|
+
* Remove Oauth 2.0 Cookies
|
|
18008
|
+
* @param {*} [options] Override http request option.
|
|
18009
|
+
* @throws {RequiredError}
|
|
18010
|
+
* @memberof OAuth20Api
|
|
18011
|
+
*/
|
|
18012
|
+
postLogout(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
|
|
16269
18013
|
/**
|
|
16270
18014
|
* Portal Login
|
|
16271
18015
|
* @summary Portal Login
|
|
@@ -17903,21 +19647,21 @@ export declare const ProductsApiAxiosParamCreator: (configuration?: Configuratio
|
|
|
17903
19647
|
* Get Product
|
|
17904
19648
|
* @summary Get Product
|
|
17905
19649
|
* @param {string} sku Product SKU
|
|
17906
|
-
* @param {
|
|
19650
|
+
* @param {ProductSearchDTO} [productSearchDTO] Product Search Info
|
|
17907
19651
|
* @param {*} [options] Override http request option.
|
|
17908
19652
|
* @throws {RequiredError}
|
|
17909
19653
|
*/
|
|
17910
|
-
postGetProduct: (sku: string,
|
|
19654
|
+
postGetProduct: (sku: string, productSearchDTO?: ProductSearchDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17911
19655
|
/**
|
|
17912
19656
|
* Get Product For Customer
|
|
17913
19657
|
* @summary Get Product For Customer
|
|
17914
19658
|
* @param {number} customerId Customer ID
|
|
17915
19659
|
* @param {string} sku Product SKU
|
|
17916
|
-
* @param {
|
|
19660
|
+
* @param {ProductSearchDTO} [productSearchDTO] Product Search Info
|
|
17917
19661
|
* @param {*} [options] Override http request option.
|
|
17918
19662
|
* @throws {RequiredError}
|
|
17919
19663
|
*/
|
|
17920
|
-
postGetProductForCustomer: (customerId: number, sku: string,
|
|
19664
|
+
postGetProductForCustomer: (customerId: number, sku: string, productSearchDTO?: ProductSearchDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
|
|
17921
19665
|
};
|
|
17922
19666
|
/**
|
|
17923
19667
|
* ProductsApi - functional programming interface
|
|
@@ -17991,21 +19735,21 @@ export declare const ProductsApiFp: (configuration?: Configuration) => {
|
|
|
17991
19735
|
* Get Product
|
|
17992
19736
|
* @summary Get Product
|
|
17993
19737
|
* @param {string} sku Product SKU
|
|
17994
|
-
* @param {
|
|
19738
|
+
* @param {ProductSearchDTO} [productSearchDTO] Product Search Info
|
|
17995
19739
|
* @param {*} [options] Override http request option.
|
|
17996
19740
|
* @throws {RequiredError}
|
|
17997
19741
|
*/
|
|
17998
|
-
postGetProduct(sku: string,
|
|
19742
|
+
postGetProduct(sku: string, productSearchDTO?: ProductSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
17999
19743
|
/**
|
|
18000
19744
|
* Get Product For Customer
|
|
18001
19745
|
* @summary Get Product For Customer
|
|
18002
19746
|
* @param {number} customerId Customer ID
|
|
18003
19747
|
* @param {string} sku Product SKU
|
|
18004
|
-
* @param {
|
|
19748
|
+
* @param {ProductSearchDTO} [productSearchDTO] Product Search Info
|
|
18005
19749
|
* @param {*} [options] Override http request option.
|
|
18006
19750
|
* @throws {RequiredError}
|
|
18007
19751
|
*/
|
|
18008
|
-
postGetProductForCustomer(customerId: number, sku: string,
|
|
19752
|
+
postGetProductForCustomer(customerId: number, sku: string, productSearchDTO?: ProductSearchDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ProductSummaryDTO>>;
|
|
18009
19753
|
};
|
|
18010
19754
|
/**
|
|
18011
19755
|
* ProductsApi - factory interface
|
|
@@ -18079,21 +19823,21 @@ export declare const ProductsApiFactory: (configuration?: Configuration, basePat
|
|
|
18079
19823
|
* Get Product
|
|
18080
19824
|
* @summary Get Product
|
|
18081
19825
|
* @param {string} sku Product SKU
|
|
18082
|
-
* @param {
|
|
19826
|
+
* @param {ProductSearchDTO} [productSearchDTO] Product Search Info
|
|
18083
19827
|
* @param {*} [options] Override http request option.
|
|
18084
19828
|
* @throws {RequiredError}
|
|
18085
19829
|
*/
|
|
18086
|
-
postGetProduct(sku: string,
|
|
19830
|
+
postGetProduct(sku: string, productSearchDTO?: ProductSearchDTO, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
18087
19831
|
/**
|
|
18088
19832
|
* Get Product For Customer
|
|
18089
19833
|
* @summary Get Product For Customer
|
|
18090
19834
|
* @param {number} customerId Customer ID
|
|
18091
19835
|
* @param {string} sku Product SKU
|
|
18092
|
-
* @param {
|
|
19836
|
+
* @param {ProductSearchDTO} [productSearchDTO] Product Search Info
|
|
18093
19837
|
* @param {*} [options] Override http request option.
|
|
18094
19838
|
* @throws {RequiredError}
|
|
18095
19839
|
*/
|
|
18096
|
-
postGetProductForCustomer(customerId: number, sku: string,
|
|
19840
|
+
postGetProductForCustomer(customerId: number, sku: string, productSearchDTO?: ProductSearchDTO, options?: RawAxiosRequestConfig): AxiosPromise<ProductSummaryDTO>;
|
|
18097
19841
|
};
|
|
18098
19842
|
/**
|
|
18099
19843
|
* ProductsApi - object-oriented interface
|
|
@@ -18177,23 +19921,23 @@ export declare class ProductsApi extends BaseAPI {
|
|
|
18177
19921
|
* Get Product
|
|
18178
19922
|
* @summary Get Product
|
|
18179
19923
|
* @param {string} sku Product SKU
|
|
18180
|
-
* @param {
|
|
19924
|
+
* @param {ProductSearchDTO} [productSearchDTO] Product Search Info
|
|
18181
19925
|
* @param {*} [options] Override http request option.
|
|
18182
19926
|
* @throws {RequiredError}
|
|
18183
19927
|
* @memberof ProductsApi
|
|
18184
19928
|
*/
|
|
18185
|
-
postGetProduct(sku: string,
|
|
19929
|
+
postGetProduct(sku: string, productSearchDTO?: ProductSearchDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
18186
19930
|
/**
|
|
18187
19931
|
* Get Product For Customer
|
|
18188
19932
|
* @summary Get Product For Customer
|
|
18189
19933
|
* @param {number} customerId Customer ID
|
|
18190
19934
|
* @param {string} sku Product SKU
|
|
18191
|
-
* @param {
|
|
19935
|
+
* @param {ProductSearchDTO} [productSearchDTO] Product Search Info
|
|
18192
19936
|
* @param {*} [options] Override http request option.
|
|
18193
19937
|
* @throws {RequiredError}
|
|
18194
19938
|
* @memberof ProductsApi
|
|
18195
19939
|
*/
|
|
18196
|
-
postGetProductForCustomer(customerId: number, sku: string,
|
|
19940
|
+
postGetProductForCustomer(customerId: number, sku: string, productSearchDTO?: ProductSearchDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ProductSummaryDTO, any, {}>>;
|
|
18197
19941
|
}
|
|
18198
19942
|
/**
|
|
18199
19943
|
* @export
|