yellowgrid-api-ts 3.2.24-dev.0 → 3.2.25-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/dist/api.d.ts CHANGED
@@ -1741,6 +1741,156 @@ export declare const HostingRegionDTOCodeEnum: {
1741
1741
  readonly UsWestOr1: "US-WEST-OR-1";
1742
1742
  };
1743
1743
  export type HostingRegionDTOCodeEnum = typeof HostingRegionDTOCodeEnum[keyof typeof HostingRegionDTOCodeEnum];
1744
+ /**
1745
+ * Incident DTO
1746
+ */
1747
+ export interface IncidentDTO {
1748
+ /**
1749
+ * Incident Title
1750
+ */
1751
+ 'title'?: string;
1752
+ /**
1753
+ * Incident Type
1754
+ */
1755
+ 'type'?: IncidentDTOTypeEnum;
1756
+ /**
1757
+ * Service Impacted
1758
+ */
1759
+ 'service'?: IncidentDTOServiceEnum;
1760
+ /**
1761
+ * Incident ID
1762
+ */
1763
+ 'id'?: number;
1764
+ /**
1765
+ * Incident Status
1766
+ */
1767
+ 'status'?: IncidentDTOStatusEnum;
1768
+ /**
1769
+ * Incident Updates
1770
+ */
1771
+ 'updates'?: Array<IncidentUpdateDTO>;
1772
+ }
1773
+ export declare const IncidentDTOTypeEnum: {
1774
+ readonly NUMBER_0: 0;
1775
+ readonly NUMBER_1: 1;
1776
+ };
1777
+ export type IncidentDTOTypeEnum = typeof IncidentDTOTypeEnum[keyof typeof IncidentDTOTypeEnum];
1778
+ export declare const IncidentDTOServiceEnum: {
1779
+ readonly NUMBER_0: 0;
1780
+ };
1781
+ export type IncidentDTOServiceEnum = typeof IncidentDTOServiceEnum[keyof typeof IncidentDTOServiceEnum];
1782
+ export declare const IncidentDTOStatusEnum: {
1783
+ readonly NUMBER_0: 0;
1784
+ readonly NUMBER_1: 1;
1785
+ readonly NUMBER_2: 2;
1786
+ };
1787
+ export type IncidentDTOStatusEnum = typeof IncidentDTOStatusEnum[keyof typeof IncidentDTOStatusEnum];
1788
+ /**
1789
+ * Incident Request DTO
1790
+ */
1791
+ export interface IncidentRequestDTO {
1792
+ /**
1793
+ * Incident Title
1794
+ */
1795
+ 'title'?: string;
1796
+ /**
1797
+ * Incident Type
1798
+ */
1799
+ 'type'?: IncidentRequestDTOTypeEnum;
1800
+ /**
1801
+ * Service Impacted
1802
+ */
1803
+ 'service'?: IncidentRequestDTOServiceEnum;
1804
+ }
1805
+ export declare const IncidentRequestDTOTypeEnum: {
1806
+ readonly NUMBER_0: 0;
1807
+ readonly NUMBER_1: 1;
1808
+ };
1809
+ export type IncidentRequestDTOTypeEnum = typeof IncidentRequestDTOTypeEnum[keyof typeof IncidentRequestDTOTypeEnum];
1810
+ export declare const IncidentRequestDTOServiceEnum: {
1811
+ readonly NUMBER_0: 0;
1812
+ };
1813
+ export type IncidentRequestDTOServiceEnum = typeof IncidentRequestDTOServiceEnum[keyof typeof IncidentRequestDTOServiceEnum];
1814
+ /**
1815
+ * Incident Subscribption Model
1816
+ */
1817
+ export interface IncidentSubscriptionModel {
1818
+ /**
1819
+ * id
1820
+ */
1821
+ 'id'?: string;
1822
+ /**
1823
+ * email
1824
+ */
1825
+ 'email'?: string;
1826
+ }
1827
+ /**
1828
+ * Incident Update DTO
1829
+ */
1830
+ export interface IncidentUpdateDTO {
1831
+ /**
1832
+ * Incident Update Message
1833
+ */
1834
+ 'message'?: string;
1835
+ /**
1836
+ * Incident Update Type
1837
+ */
1838
+ 'type'?: IncidentUpdateDTOTypeEnum;
1839
+ /**
1840
+ * Date Time
1841
+ */
1842
+ 'createdAt'?: string;
1843
+ }
1844
+ export declare const IncidentUpdateDTOTypeEnum: {
1845
+ readonly NUMBER_0: 0;
1846
+ readonly NUMBER_1: 1;
1847
+ readonly NUMBER_2: 2;
1848
+ };
1849
+ export type IncidentUpdateDTOTypeEnum = typeof IncidentUpdateDTOTypeEnum[keyof typeof IncidentUpdateDTOTypeEnum];
1850
+ /**
1851
+ * IncidentUpdatesEntity
1852
+ */
1853
+ export interface IncidentUpdateEntity {
1854
+ /**
1855
+ * id
1856
+ */
1857
+ 'id'?: number;
1858
+ /**
1859
+ * incidentId
1860
+ */
1861
+ 'incidentId'?: number;
1862
+ /**
1863
+ * message
1864
+ */
1865
+ 'message'?: string;
1866
+ /**
1867
+ * type
1868
+ */
1869
+ 'type'?: number;
1870
+ /**
1871
+ * createdAt
1872
+ */
1873
+ 'createdAt'?: string;
1874
+ }
1875
+ /**
1876
+ * Incident Update Request DTO
1877
+ */
1878
+ export interface IncidentUpdateRequestDTO {
1879
+ /**
1880
+ * Incident Update Message
1881
+ */
1882
+ 'message'?: string;
1883
+ /**
1884
+ * Incident Update Type
1885
+ */
1886
+ 'type'?: IncidentUpdateRequestDTOTypeEnum;
1887
+ }
1888
+ export declare const IncidentUpdateRequestDTOTypeEnum: {
1889
+ readonly NUMBER_0: 0;
1890
+ readonly NUMBER_1: 1;
1891
+ readonly NUMBER_2: 2;
1892
+ };
1893
+ export type IncidentUpdateRequestDTOTypeEnum = typeof IncidentUpdateRequestDTOTypeEnum[keyof typeof IncidentUpdateRequestDTOTypeEnum];
1744
1894
  /**
1745
1895
  * InstanceFailoverIpsEntity
1746
1896
  */
@@ -2361,219 +2511,6 @@ export interface NavigationModel {
2361
2511
  */
2362
2512
  'openNewPage'?: boolean;
2363
2513
  }
2364
- /**
2365
- * Number Port Response
2366
- */
2367
- export interface NumberPortDTO {
2368
- /**
2369
- * Company Name
2370
- */
2371
- 'companyName'?: string | null;
2372
- /**
2373
- * Address Line 1
2374
- */
2375
- 'addressLine1'?: string | null;
2376
- /**
2377
- * Address Line 2
2378
- */
2379
- 'addressLine2'?: string | null;
2380
- /**
2381
- * City
2382
- */
2383
- 'city'?: string | null;
2384
- /**
2385
- * Post Code
2386
- */
2387
- 'postCode'?: string | null;
2388
- /**
2389
- * Trunk ID
2390
- */
2391
- 'trunkId'?: number | null;
2392
- /**
2393
- * Starter Bundle ID
2394
- */
2395
- 'tenantId'?: string | null;
2396
- /**
2397
- * Requested Port Date
2398
- */
2399
- 'requestedPortDate'?: string | null;
2400
- /**
2401
- * Port Date ASAP
2402
- */
2403
- 'asap'?: boolean | null;
2404
- /**
2405
- * Comment
2406
- */
2407
- 'comment'?: string | null;
2408
- /**
2409
- * Number Port ID
2410
- */
2411
- 'id'?: number;
2412
- /**
2413
- * Customer Name
2414
- */
2415
- 'customerName'?: string;
2416
- /**
2417
- * Porting Date
2418
- */
2419
- 'portDate'?: string;
2420
- /**
2421
- * Number Ranges
2422
- */
2423
- 'numberRanges'?: Array<NumberPortRangeDTO>;
2424
- /**
2425
- * Status
2426
- */
2427
- 'status'?: number;
2428
- /**
2429
- * Ticket ID
2430
- */
2431
- 'ticketId'?: number | null;
2432
- }
2433
- /**
2434
- * Number Port Model
2435
- */
2436
- export interface NumberPortModel {
2437
- /**
2438
- * Number Port ID
2439
- */
2440
- 'id'?: number;
2441
- /**
2442
- * Customer ID
2443
- */
2444
- 'customerId'?: number;
2445
- /**
2446
- * End User
2447
- */
2448
- 'endUser'?: string | null;
2449
- /**
2450
- * Address Line 1
2451
- */
2452
- 'addressLine1'?: string | null;
2453
- /**
2454
- * Address Line 2
2455
- */
2456
- 'addressLine2'?: string | null;
2457
- /**
2458
- * City
2459
- */
2460
- 'city'?: string | null;
2461
- /**
2462
- * Post Code
2463
- */
2464
- 'postCode'?: string | null;
2465
- /**
2466
- * Trunk ID
2467
- */
2468
- 'trunkId'?: number | null;
2469
- /**
2470
- * Tenant ID
2471
- */
2472
- 'tenantId'?: string | null;
2473
- /**
2474
- * Requested Port Date
2475
- */
2476
- 'requestedPortDate'?: string | null;
2477
- /**
2478
- * Port Date
2479
- */
2480
- 'portDate'?: string | null;
2481
- /**
2482
- * Comment
2483
- */
2484
- 'comment'?: string | null;
2485
- /**
2486
- * Status
2487
- */
2488
- 'status'?: number | null;
2489
- /**
2490
- * Ticket ID
2491
- */
2492
- 'ticketId'?: number | null;
2493
- /**
2494
- * Number Port Ranges
2495
- */
2496
- 'ranges'?: Array<any>;
2497
- /**
2498
- * Customer Company Name
2499
- */
2500
- 'customerName'?: string;
2501
- }
2502
- /**
2503
- * Number Port Range Response
2504
- */
2505
- export interface NumberPortRangeDTO {
2506
- /**
2507
- * Range Start Number
2508
- */
2509
- 'rangeStart'?: string | null;
2510
- /**
2511
- * Range End Number
2512
- */
2513
- 'rangeEnd'?: string | null;
2514
- /**
2515
- * Losing Communications Provider
2516
- */
2517
- 'lcp'?: string | null;
2518
- /**
2519
- * Range Post Code
2520
- */
2521
- 'postCode'?: string | null;
2522
- /**
2523
- * Number Port Range ID
2524
- */
2525
- 'id'?: number;
2526
- /**
2527
- * Number Port ID
2528
- */
2529
- 'portId'?: number;
2530
- /**
2531
- * Range Holder
2532
- */
2533
- 'rangeHolder'?: string | null;
2534
- }
2535
- /**
2536
- * NumberPortRangeDTO
2537
- */
2538
- export interface NumberPortRangeRequestDTO {
2539
- /**
2540
- * Range Start Number
2541
- */
2542
- 'rangeStart'?: string | null;
2543
- /**
2544
- * Range End Number
2545
- */
2546
- 'rangeEnd'?: string | null;
2547
- /**
2548
- * Losing Communications Provider
2549
- */
2550
- 'lcp'?: string | null;
2551
- /**
2552
- * Range Post Code
2553
- */
2554
- 'postCode'?: string | null;
2555
- }
2556
- /**
2557
- * Number Ports
2558
- */
2559
- export interface NumberPortsModel {
2560
- /**
2561
- * Results
2562
- */
2563
- 'results'?: Array<NumberPortDTO>;
2564
- /**
2565
- * Page
2566
- */
2567
- 'page'?: number;
2568
- /**
2569
- * Per Page
2570
- */
2571
- 'perPage'?: number;
2572
- /**
2573
- * Total Results
2574
- */
2575
- 'totalResults'?: number;
2576
- }
2577
2514
  /**
2578
2515
  * OfflineInstancesEntity
2579
2516
  */
@@ -3704,15 +3641,51 @@ export interface ScopeModel {
3704
3641
  'description'?: string;
3705
3642
  }
3706
3643
  /**
3707
- * ShipmentAddressEntity
3644
+ * Service Health DTO
3708
3645
  */
3709
- export interface ShipmentAddressEntity {
3646
+ export interface ServiceHealthDTO {
3647
+ 'services'?: Array<ServiceStatusDTO>;
3648
+ 'globalStatus'?: ServiceHealthDTOGlobalStatusEnum;
3649
+ }
3650
+ export declare const ServiceHealthDTOGlobalStatusEnum: {
3651
+ readonly NUMBER_0: 0;
3652
+ readonly NUMBER_1: 1;
3653
+ readonly NUMBER_2: 2;
3654
+ };
3655
+ export type ServiceHealthDTOGlobalStatusEnum = typeof ServiceHealthDTOGlobalStatusEnum[keyof typeof ServiceHealthDTOGlobalStatusEnum];
3656
+ /**
3657
+ * Service Status DTO
3658
+ */
3659
+ export interface ServiceStatusDTO {
3710
3660
  /**
3711
- * id
3661
+ * Service Name
3712
3662
  */
3713
- 'id'?: number;
3663
+ 'serviceName'?: string;
3714
3664
  /**
3715
- * shipmentId
3665
+ * Service Status
3666
+ */
3667
+ 'status'?: ServiceStatusDTOStatusEnum;
3668
+ /**
3669
+ * Service Incidents
3670
+ */
3671
+ 'incidents'?: Array<IncidentDTO>;
3672
+ }
3673
+ export declare const ServiceStatusDTOStatusEnum: {
3674
+ readonly NUMBER_0: 0;
3675
+ readonly NUMBER_1: 1;
3676
+ readonly NUMBER_2: 2;
3677
+ };
3678
+ export type ServiceStatusDTOStatusEnum = typeof ServiceStatusDTOStatusEnum[keyof typeof ServiceStatusDTOStatusEnum];
3679
+ /**
3680
+ * ShipmentAddressEntity
3681
+ */
3682
+ export interface ShipmentAddressEntity {
3683
+ /**
3684
+ * id
3685
+ */
3686
+ 'id'?: number;
3687
+ /**
3688
+ * shipmentId
3716
3689
  */
3717
3690
  'shipmentId'?: number;
3718
3691
  /**
@@ -4905,55 +4878,6 @@ export interface SupplierItemEntity {
4905
4878
  */
4906
4879
  'supplierSku'?: string;
4907
4880
  }
4908
- /**
4909
- * Telephony Support Ticket
4910
- */
4911
- export interface SupportTicketModel {
4912
- /**
4913
- * Ticket ID
4914
- */
4915
- 'id'?: number;
4916
- /**
4917
- * Ticket status
4918
- */
4919
- 'status'?: string;
4920
- /**
4921
- * Ticket status ID
4922
- */
4923
- 'statusId'?: number;
4924
- /**
4925
- * Ticket subject
4926
- */
4927
- 'subject'?: string;
4928
- /**
4929
- * Support email address
4930
- */
4931
- 'supportEmail'?: string | null;
4932
- /**
4933
- * Recipient emails
4934
- */
4935
- 'toEmails'?: Array<string>;
4936
- /**
4937
- * Ticket description (HTML)
4938
- */
4939
- 'description'?: string;
4940
- /**
4941
- * Ticket description (plain text)
4942
- */
4943
- 'descriptionText'?: string;
4944
- /**
4945
- * Creation timestamp
4946
- */
4947
- 'createdAt'?: string;
4948
- /**
4949
- * Attachments
4950
- */
4951
- 'attachments'?: Array<AttachmentModel>;
4952
- /**
4953
- * Conversations
4954
- */
4955
- 'conversations'?: Array<ConversationModel>;
4956
- }
4957
4881
  /**
4958
4882
  * 3CX Wizard Restore From Backup
4959
4883
  */
@@ -6323,6 +6247,55 @@ export interface TechSupportCompanySummaryDTO {
6323
6247
  */
6324
6248
  'monthlyReportEmailAddress'?: string;
6325
6249
  }
6250
+ /**
6251
+ * Telephony Support Ticket
6252
+ */
6253
+ export interface TelephonySupportTicketModel {
6254
+ /**
6255
+ * Ticket ID
6256
+ */
6257
+ 'id'?: number;
6258
+ /**
6259
+ * Ticket status
6260
+ */
6261
+ 'status'?: string;
6262
+ /**
6263
+ * Ticket status ID
6264
+ */
6265
+ 'statusId'?: number;
6266
+ /**
6267
+ * Ticket subject
6268
+ */
6269
+ 'subject'?: string;
6270
+ /**
6271
+ * Support email address
6272
+ */
6273
+ 'supportEmail'?: string | null;
6274
+ /**
6275
+ * Recipient emails
6276
+ */
6277
+ 'toEmails'?: Array<string>;
6278
+ /**
6279
+ * Ticket description (HTML)
6280
+ */
6281
+ 'description'?: string;
6282
+ /**
6283
+ * Ticket description (plain text)
6284
+ */
6285
+ 'descriptionText'?: string;
6286
+ /**
6287
+ * Creation timestamp
6288
+ */
6289
+ 'createdAt'?: string;
6290
+ /**
6291
+ * Attachments
6292
+ */
6293
+ 'attachments'?: Array<AttachmentModel>;
6294
+ /**
6295
+ * Conversations
6296
+ */
6297
+ 'conversations'?: Array<ConversationModel>;
6298
+ }
6326
6299
  /**
6327
6300
  * Ticket Summary Model
6328
6301
  */
@@ -9253,654 +9226,162 @@ export declare const Class3CXMultiTenantApiFactory: (configuration?: Configurati
9253
9226
  /**
9254
9227
  * Add 3CX MT DDI
9255
9228
  * @summary Add 3CX MT DDI
9256
- * @param {string} areacode Area Code
9257
- * @param {*} [options] Override http request option.
9258
- * @throws {RequiredError}
9259
- */
9260
- postAddMtDdi(areacode: string, options?: RawAxiosRequestConfig): AxiosPromise<MultiTenantChangeResponseModel>;
9261
- /**
9262
- * Get 3CX MT New DDIs
9263
- * @summary Get 3CX MT New DDIs
9264
- * @param {MultiTenantChangeResponseModel} [multiTenantChangeResponseModel] Multi-Tenant Change Request
9265
- * @param {*} [options] Override http request option.
9266
- * @throws {RequiredError}
9267
- */
9268
- postGetMtNewDdis(multiTenantChangeResponseModel?: MultiTenantChangeResponseModel, options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
9269
- /**
9270
- * Add 3CX Starter Bundle Tenant
9271
- * @summary Add 3CX MT Tenant
9272
- * @param {TcxMultiTenantModel} [tcxMultiTenantModel] New 3CX Starter Bundle Request
9273
- * @param {*} [options] Override http request option.
9274
- * @throws {RequiredError}
9275
- */
9276
- postGetTenants(tcxMultiTenantModel?: TcxMultiTenantModel, options?: RawAxiosRequestConfig): AxiosPromise<TcxMultiTenantModel>;
9277
- /**
9278
- * Track 3CX MT Change
9279
- * @summary Track 3CX MT Change
9280
- * @param {MultiTenantChangeResponseModel} [multiTenantChangeResponseModel] Multi-Tenant Change Request
9281
- * @param {*} [options] Override http request option.
9282
- * @throws {RequiredError}
9283
- */
9284
- postTrackMtChange(multiTenantChangeResponseModel?: MultiTenantChangeResponseModel, options?: RawAxiosRequestConfig): AxiosPromise<MultiTenantChangeResponseModel>;
9285
- };
9286
- /**
9287
- * Class3CXMultiTenantApi - object-oriented interface
9288
- */
9289
- export declare class Class3CXMultiTenantApi extends BaseAPI {
9290
- /**
9291
- * Delete 3CX Starter Bundle Tenant
9292
- * @summary Delete 3CX MT Tenant
9293
- * @param {string} reference Tenant Reference
9294
- * @param {*} [options] Override http request option.
9295
- * @throws {RequiredError}
9296
- */
9297
- deleteGetTenant(reference: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
9298
- /**
9299
- * Get 3CX Starter Bundle Tenant
9300
- * @summary Get 3CX MT Tenant
9301
- * @param {string} reference Tenant Reference
9302
- * @param {*} [options] Override http request option.
9303
- * @throws {RequiredError}
9304
- */
9305
- getGetTenant(reference: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxMultiTenantModel, any, {}>>;
9306
- /**
9307
- * Get 3CX Starter Bundle Tenants
9308
- * @summary Get 3CX MT Tenants
9309
- * @param {number} [pageSize] Number Of Results
9310
- * @param {number} [page] Page Number
9311
- * @param {string} [search] Search
9312
- * @param {GetGetTenantsStatusEnum} [status] Status
9313
- * @param {*} [options] Override http request option.
9314
- * @throws {RequiredError}
9315
- */
9316
- getGetTenants(pageSize?: number, page?: number, search?: string, status?: GetGetTenantsStatusEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxMultiTenantsModel, any, {}>>;
9317
- /**
9318
- * Add 3CX MT DDI
9319
- * @summary Add 3CX MT DDI
9320
- * @param {string} areacode Area Code
9321
- * @param {*} [options] Override http request option.
9322
- * @throws {RequiredError}
9323
- */
9324
- postAddMtDdi(areacode: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MultiTenantChangeResponseModel, any, {}>>;
9325
- /**
9326
- * Get 3CX MT New DDIs
9327
- * @summary Get 3CX MT New DDIs
9328
- * @param {MultiTenantChangeResponseModel} [multiTenantChangeResponseModel] Multi-Tenant Change Request
9329
- * @param {*} [options] Override http request option.
9330
- * @throws {RequiredError}
9331
- */
9332
- postGetMtNewDdis(multiTenantChangeResponseModel?: MultiTenantChangeResponseModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[], any, {}>>;
9333
- /**
9334
- * Add 3CX Starter Bundle Tenant
9335
- * @summary Add 3CX MT Tenant
9336
- * @param {TcxMultiTenantModel} [tcxMultiTenantModel] New 3CX Starter Bundle Request
9337
- * @param {*} [options] Override http request option.
9338
- * @throws {RequiredError}
9339
- */
9340
- postGetTenants(tcxMultiTenantModel?: TcxMultiTenantModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxMultiTenantModel, any, {}>>;
9341
- /**
9342
- * Track 3CX MT Change
9343
- * @summary Track 3CX MT Change
9344
- * @param {MultiTenantChangeResponseModel} [multiTenantChangeResponseModel] Multi-Tenant Change Request
9345
- * @param {*} [options] Override http request option.
9346
- * @throws {RequiredError}
9347
- */
9348
- postTrackMtChange(multiTenantChangeResponseModel?: MultiTenantChangeResponseModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MultiTenantChangeResponseModel, any, {}>>;
9349
- }
9350
- export declare const GetGetTenantsStatusEnum: {
9351
- readonly Completed: "Completed";
9352
- readonly Outstanding: "Outstanding";
9353
- readonly Offline: "Offline";
9354
- readonly FailedOver: "Failed Over";
9355
- };
9356
- export type GetGetTenantsStatusEnum = typeof GetGetTenantsStatusEnum[keyof typeof GetGetTenantsStatusEnum];
9357
- /**
9358
- * MyPBXToolsApi - axios parameter creator
9359
- */
9360
- export declare const MyPBXToolsApiAxiosParamCreator: (configuration?: Configuration) => {
9361
- /**
9362
- * Get 3CX Installation Details
9363
- * @summary Fetch recording from a 3CX instance
9364
- * @param {string} licenceKey Licence Key
9365
- * @param {string} fileName File Name
9366
- * @param {*} [options] Override http request option.
9367
- * @throws {RequiredError}
9368
- */
9369
- getGetRecording: (licenceKey: string, fileName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9370
- };
9371
- /**
9372
- * MyPBXToolsApi - functional programming interface
9373
- */
9374
- export declare const MyPBXToolsApiFp: (configuration?: Configuration) => {
9375
- /**
9376
- * Get 3CX Installation Details
9377
- * @summary Fetch recording from a 3CX instance
9378
- * @param {string} licenceKey Licence Key
9379
- * @param {string} fileName File Name
9380
- * @param {*} [options] Override http request option.
9381
- * @throws {RequiredError}
9382
- */
9383
- getGetRecording(licenceKey: string, fileName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetGetRecording200Response>>;
9384
- };
9385
- /**
9386
- * MyPBXToolsApi - factory interface
9387
- */
9388
- export declare const MyPBXToolsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
9389
- /**
9390
- * Get 3CX Installation Details
9391
- * @summary Fetch recording from a 3CX instance
9392
- * @param {string} licenceKey Licence Key
9393
- * @param {string} fileName File Name
9394
- * @param {*} [options] Override http request option.
9395
- * @throws {RequiredError}
9396
- */
9397
- getGetRecording(licenceKey: string, fileName: string, options?: RawAxiosRequestConfig): AxiosPromise<GetGetRecording200Response>;
9398
- };
9399
- /**
9400
- * MyPBXToolsApi - object-oriented interface
9401
- */
9402
- export declare class MyPBXToolsApi extends BaseAPI {
9403
- /**
9404
- * Get 3CX Installation Details
9405
- * @summary Fetch recording from a 3CX instance
9406
- * @param {string} licenceKey Licence Key
9407
- * @param {string} fileName File Name
9408
- * @param {*} [options] Override http request option.
9409
- * @throws {RequiredError}
9410
- */
9411
- getGetRecording(licenceKey: string, fileName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetGetRecording200Response, any, {}>>;
9412
- }
9413
- /**
9414
- * NumberPortingApi - axios parameter creator
9415
- */
9416
- export declare const NumberPortingApiAxiosParamCreator: (configuration?: Configuration) => {
9417
- /**
9418
- *
9419
- * @param {number} id Number Port ID
9420
- * @param {*} [options] Override http request option.
9421
- * @throws {RequiredError}
9422
- */
9423
- deleteGetAdminNumberPort: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9424
- /**
9425
- *
9426
- * @param {number} [pageSize] Number Of Results
9427
- * @param {number} [page] Page Number
9428
- * @param {string} [search] Search
9429
- * @param {*} [options] Override http request option.
9430
- * @throws {RequiredError}
9431
- */
9432
- getCreateNumberPort: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9433
- /**
9434
- *
9435
- * @param {number} id Number Port ID
9436
- * @param {*} [options] Override http request option.
9437
- * @throws {RequiredError}
9438
- */
9439
- getGetAdminNumberPort: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9440
- /**
9441
- *
9442
- * @param {number} [pageSize] Number Of Results
9443
- * @param {number} [page] Page Number
9444
- * @param {string} [search] Search
9445
- * @param {*} [options] Override http request option.
9446
- * @throws {RequiredError}
9447
- */
9448
- getGetAdminNumberPorts: (pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9449
- /**
9450
- *
9451
- * @param {number} id Number Port ID
9452
- * @param {*} [options] Override http request option.
9453
- * @throws {RequiredError}
9454
- */
9455
- getUpdateNumberPort: (id: number, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9456
- /**
9457
- *
9458
- * @param {string | null} [companyName] Company Name
9459
- * @param {string | null} [addressLine1] Address Line 1
9460
- * @param {string | null} [addressLine2] Address Line 2
9461
- * @param {string | null} [city] City
9462
- * @param {string | null} [postCode] Post Code
9463
- * @param {number | null} [trunkId] Trunk ID
9464
- * @param {string | null} [tenantId] Starter Bundle ID
9465
- * @param {string | null} [requestedPortDate] Requested Port Date
9466
- * @param {boolean | null} [asap] Port Date ASAP
9467
- * @param {string | null} [comment] Comment
9468
- * @param {Array<NumberPortRangeRequestDTO>} [numberRanges] Number Ranges
9469
- * @param {File} [cloa] CLOA (only provide on submission)
9470
- * @param {*} [options] Override http request option.
9471
- * @throws {RequiredError}
9472
- */
9473
- postCreateNumberPort: (companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9474
- /**
9475
- *
9476
- * @param {number} id Number Port ID
9477
- * @param {string | null} [companyName] Company Name
9478
- * @param {string | null} [addressLine1] Address Line 1
9479
- * @param {string | null} [addressLine2] Address Line 2
9480
- * @param {string | null} [city] City
9481
- * @param {string | null} [postCode] Post Code
9482
- * @param {number | null} [trunkId] Trunk ID
9483
- * @param {string | null} [tenantId] Starter Bundle ID
9484
- * @param {string | null} [requestedPortDate] Requested Port Date
9485
- * @param {boolean | null} [asap] Port Date ASAP
9486
- * @param {string | null} [comment] Comment
9487
- * @param {Array<NumberPortRangeRequestDTO>} [numberRanges] Number Ranges
9488
- * @param {File} [cloa] CLOA (only provide on submission)
9489
- * @param {*} [options] Override http request option.
9490
- * @throws {RequiredError}
9491
- */
9492
- postSubmitNumberPort: (id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9493
- /**
9494
- *
9495
- * @param {number} id Number Port ID
9496
- * @param {string | null} [companyName] Company Name
9497
- * @param {string | null} [addressLine1] Address Line 1
9498
- * @param {string | null} [addressLine2] Address Line 2
9499
- * @param {string | null} [city] City
9500
- * @param {string | null} [postCode] Post Code
9501
- * @param {number | null} [trunkId] Trunk ID
9502
- * @param {string | null} [tenantId] Starter Bundle ID
9503
- * @param {string | null} [requestedPortDate] Requested Port Date
9504
- * @param {boolean | null} [asap] Port Date ASAP
9505
- * @param {string | null} [comment] Comment
9506
- * @param {Array<NumberPortRangeRequestDTO>} [numberRanges] Number Ranges
9507
- * @param {File} [cloa] CLOA (only provide on submission)
9508
- * @param {*} [options] Override http request option.
9509
- * @throws {RequiredError}
9510
- */
9511
- postUpdateNumberPort: (id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9512
- /**
9513
- *
9514
- * @param {number} id Number Port ID
9515
- * @param {string | null} [companyName] Company Name
9516
- * @param {string | null} [addressLine1] Address Line 1
9517
- * @param {string | null} [addressLine2] Address Line 2
9518
- * @param {string | null} [city] City
9519
- * @param {string | null} [postCode] Post Code
9520
- * @param {number | null} [trunkId] Trunk ID
9521
- * @param {string | null} [tenantId] Starter Bundle ID
9522
- * @param {string | null} [requestedPortDate] Requested Port Date
9523
- * @param {boolean | null} [asap] Port Date ASAP
9524
- * @param {string | null} [comment] Comment
9525
- * @param {number} [id2] Number Port ID
9526
- * @param {string} [customerName] Customer Name
9527
- * @param {string} [portDate] Porting Date
9528
- * @param {Array<NumberPortRangeDTO>} [numberRanges] Number Ranges
9529
- * @param {number} [status] Status
9530
- * @param {number | null} [ticketId] Ticket ID
9531
- * @param {*} [options] Override http request option.
9532
- * @throws {RequiredError}
9533
- */
9534
- putGetAdminNumberPort: (id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, id2?: number, customerName?: string, portDate?: string, numberRanges?: Array<NumberPortRangeDTO>, status?: number, ticketId?: number | null, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9535
- };
9536
- /**
9537
- * NumberPortingApi - functional programming interface
9538
- */
9539
- export declare const NumberPortingApiFp: (configuration?: Configuration) => {
9540
- /**
9541
- *
9542
- * @param {number} id Number Port ID
9543
- * @param {*} [options] Override http request option.
9544
- * @throws {RequiredError}
9545
- */
9546
- deleteGetAdminNumberPort(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
9547
- /**
9548
- *
9549
- * @param {number} [pageSize] Number Of Results
9550
- * @param {number} [page] Page Number
9551
- * @param {string} [search] Search
9552
- * @param {*} [options] Override http request option.
9553
- * @throws {RequiredError}
9554
- */
9555
- getCreateNumberPort(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortsModel>>;
9556
- /**
9557
- *
9558
- * @param {number} id Number Port ID
9559
- * @param {*} [options] Override http request option.
9560
- * @throws {RequiredError}
9561
- */
9562
- getGetAdminNumberPort(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>>;
9563
- /**
9564
- *
9565
- * @param {number} [pageSize] Number Of Results
9566
- * @param {number} [page] Page Number
9567
- * @param {string} [search] Search
9568
- * @param {*} [options] Override http request option.
9569
- * @throws {RequiredError}
9570
- */
9571
- getGetAdminNumberPorts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortsModel>>;
9572
- /**
9573
- *
9574
- * @param {number} id Number Port ID
9575
- * @param {*} [options] Override http request option.
9576
- * @throws {RequiredError}
9577
- */
9578
- getUpdateNumberPort(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>>;
9579
- /**
9580
- *
9581
- * @param {string | null} [companyName] Company Name
9582
- * @param {string | null} [addressLine1] Address Line 1
9583
- * @param {string | null} [addressLine2] Address Line 2
9584
- * @param {string | null} [city] City
9585
- * @param {string | null} [postCode] Post Code
9586
- * @param {number | null} [trunkId] Trunk ID
9587
- * @param {string | null} [tenantId] Starter Bundle ID
9588
- * @param {string | null} [requestedPortDate] Requested Port Date
9589
- * @param {boolean | null} [asap] Port Date ASAP
9590
- * @param {string | null} [comment] Comment
9591
- * @param {Array<NumberPortRangeRequestDTO>} [numberRanges] Number Ranges
9592
- * @param {File} [cloa] CLOA (only provide on submission)
9593
- * @param {*} [options] Override http request option.
9594
- * @throws {RequiredError}
9595
- */
9596
- postCreateNumberPort(companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>>;
9597
- /**
9598
- *
9599
- * @param {number} id Number Port ID
9600
- * @param {string | null} [companyName] Company Name
9601
- * @param {string | null} [addressLine1] Address Line 1
9602
- * @param {string | null} [addressLine2] Address Line 2
9603
- * @param {string | null} [city] City
9604
- * @param {string | null} [postCode] Post Code
9605
- * @param {number | null} [trunkId] Trunk ID
9606
- * @param {string | null} [tenantId] Starter Bundle ID
9607
- * @param {string | null} [requestedPortDate] Requested Port Date
9608
- * @param {boolean | null} [asap] Port Date ASAP
9609
- * @param {string | null} [comment] Comment
9610
- * @param {Array<NumberPortRangeRequestDTO>} [numberRanges] Number Ranges
9611
- * @param {File} [cloa] CLOA (only provide on submission)
9612
- * @param {*} [options] Override http request option.
9613
- * @throws {RequiredError}
9614
- */
9615
- postSubmitNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>>;
9616
- /**
9617
- *
9618
- * @param {number} id Number Port ID
9619
- * @param {string | null} [companyName] Company Name
9620
- * @param {string | null} [addressLine1] Address Line 1
9621
- * @param {string | null} [addressLine2] Address Line 2
9622
- * @param {string | null} [city] City
9623
- * @param {string | null} [postCode] Post Code
9624
- * @param {number | null} [trunkId] Trunk ID
9625
- * @param {string | null} [tenantId] Starter Bundle ID
9626
- * @param {string | null} [requestedPortDate] Requested Port Date
9627
- * @param {boolean | null} [asap] Port Date ASAP
9628
- * @param {string | null} [comment] Comment
9629
- * @param {Array<NumberPortRangeRequestDTO>} [numberRanges] Number Ranges
9630
- * @param {File} [cloa] CLOA (only provide on submission)
9631
- * @param {*} [options] Override http request option.
9632
- * @throws {RequiredError}
9633
- */
9634
- postUpdateNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>>;
9635
- /**
9636
- *
9637
- * @param {number} id Number Port ID
9638
- * @param {string | null} [companyName] Company Name
9639
- * @param {string | null} [addressLine1] Address Line 1
9640
- * @param {string | null} [addressLine2] Address Line 2
9641
- * @param {string | null} [city] City
9642
- * @param {string | null} [postCode] Post Code
9643
- * @param {number | null} [trunkId] Trunk ID
9644
- * @param {string | null} [tenantId] Starter Bundle ID
9645
- * @param {string | null} [requestedPortDate] Requested Port Date
9646
- * @param {boolean | null} [asap] Port Date ASAP
9647
- * @param {string | null} [comment] Comment
9648
- * @param {number} [id2] Number Port ID
9649
- * @param {string} [customerName] Customer Name
9650
- * @param {string} [portDate] Porting Date
9651
- * @param {Array<NumberPortRangeDTO>} [numberRanges] Number Ranges
9652
- * @param {number} [status] Status
9653
- * @param {number | null} [ticketId] Ticket ID
9654
- * @param {*} [options] Override http request option.
9655
- * @throws {RequiredError}
9656
- */
9657
- putGetAdminNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, id2?: number, customerName?: string, portDate?: string, numberRanges?: Array<NumberPortRangeDTO>, status?: number, ticketId?: number | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<NumberPortDTO>>;
9658
- };
9659
- /**
9660
- * NumberPortingApi - factory interface
9661
- */
9662
- export declare const NumberPortingApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
9663
- /**
9664
- *
9665
- * @param {number} id Number Port ID
9666
- * @param {*} [options] Override http request option.
9667
- * @throws {RequiredError}
9668
- */
9669
- deleteGetAdminNumberPort(id: number, options?: RawAxiosRequestConfig): AxiosPromise<void>;
9670
- /**
9671
- *
9672
- * @param {number} [pageSize] Number Of Results
9673
- * @param {number} [page] Page Number
9674
- * @param {string} [search] Search
9675
- * @param {*} [options] Override http request option.
9676
- * @throws {RequiredError}
9677
- */
9678
- getCreateNumberPort(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortsModel>;
9679
- /**
9680
- *
9681
- * @param {number} id Number Port ID
9682
- * @param {*} [options] Override http request option.
9683
- * @throws {RequiredError}
9684
- */
9685
- getGetAdminNumberPort(id: number, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO>;
9686
- /**
9687
- *
9688
- * @param {number} [pageSize] Number Of Results
9689
- * @param {number} [page] Page Number
9690
- * @param {string} [search] Search
9691
- * @param {*} [options] Override http request option.
9692
- * @throws {RequiredError}
9693
- */
9694
- getGetAdminNumberPorts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortsModel>;
9695
- /**
9696
- *
9697
- * @param {number} id Number Port ID
9229
+ * @param {string} areacode Area Code
9698
9230
  * @param {*} [options] Override http request option.
9699
9231
  * @throws {RequiredError}
9700
9232
  */
9701
- getUpdateNumberPort(id: number, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO>;
9233
+ postAddMtDdi(areacode: string, options?: RawAxiosRequestConfig): AxiosPromise<MultiTenantChangeResponseModel>;
9702
9234
  /**
9703
- *
9704
- * @param {string | null} [companyName] Company Name
9705
- * @param {string | null} [addressLine1] Address Line 1
9706
- * @param {string | null} [addressLine2] Address Line 2
9707
- * @param {string | null} [city] City
9708
- * @param {string | null} [postCode] Post Code
9709
- * @param {number | null} [trunkId] Trunk ID
9710
- * @param {string | null} [tenantId] Starter Bundle ID
9711
- * @param {string | null} [requestedPortDate] Requested Port Date
9712
- * @param {boolean | null} [asap] Port Date ASAP
9713
- * @param {string | null} [comment] Comment
9714
- * @param {Array<NumberPortRangeRequestDTO>} [numberRanges] Number Ranges
9715
- * @param {File} [cloa] CLOA (only provide on submission)
9235
+ * Get 3CX MT New DDIs
9236
+ * @summary Get 3CX MT New DDIs
9237
+ * @param {MultiTenantChangeResponseModel} [multiTenantChangeResponseModel] Multi-Tenant Change Request
9716
9238
  * @param {*} [options] Override http request option.
9717
9239
  * @throws {RequiredError}
9718
9240
  */
9719
- postCreateNumberPort(companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO>;
9241
+ postGetMtNewDdis(multiTenantChangeResponseModel?: MultiTenantChangeResponseModel, options?: RawAxiosRequestConfig): AxiosPromise<Array<string>>;
9720
9242
  /**
9721
- *
9722
- * @param {number} id Number Port ID
9723
- * @param {string | null} [companyName] Company Name
9724
- * @param {string | null} [addressLine1] Address Line 1
9725
- * @param {string | null} [addressLine2] Address Line 2
9726
- * @param {string | null} [city] City
9727
- * @param {string | null} [postCode] Post Code
9728
- * @param {number | null} [trunkId] Trunk ID
9729
- * @param {string | null} [tenantId] Starter Bundle ID
9730
- * @param {string | null} [requestedPortDate] Requested Port Date
9731
- * @param {boolean | null} [asap] Port Date ASAP
9732
- * @param {string | null} [comment] Comment
9733
- * @param {Array<NumberPortRangeRequestDTO>} [numberRanges] Number Ranges
9734
- * @param {File} [cloa] CLOA (only provide on submission)
9243
+ * Add 3CX Starter Bundle Tenant
9244
+ * @summary Add 3CX MT Tenant
9245
+ * @param {TcxMultiTenantModel} [tcxMultiTenantModel] New 3CX Starter Bundle Request
9735
9246
  * @param {*} [options] Override http request option.
9736
9247
  * @throws {RequiredError}
9737
9248
  */
9738
- postSubmitNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO>;
9249
+ postGetTenants(tcxMultiTenantModel?: TcxMultiTenantModel, options?: RawAxiosRequestConfig): AxiosPromise<TcxMultiTenantModel>;
9739
9250
  /**
9740
- *
9741
- * @param {number} id Number Port ID
9742
- * @param {string | null} [companyName] Company Name
9743
- * @param {string | null} [addressLine1] Address Line 1
9744
- * @param {string | null} [addressLine2] Address Line 2
9745
- * @param {string | null} [city] City
9746
- * @param {string | null} [postCode] Post Code
9747
- * @param {number | null} [trunkId] Trunk ID
9748
- * @param {string | null} [tenantId] Starter Bundle ID
9749
- * @param {string | null} [requestedPortDate] Requested Port Date
9750
- * @param {boolean | null} [asap] Port Date ASAP
9751
- * @param {string | null} [comment] Comment
9752
- * @param {Array<NumberPortRangeRequestDTO>} [numberRanges] Number Ranges
9753
- * @param {File} [cloa] CLOA (only provide on submission)
9251
+ * Track 3CX MT Change
9252
+ * @summary Track 3CX MT Change
9253
+ * @param {MultiTenantChangeResponseModel} [multiTenantChangeResponseModel] Multi-Tenant Change Request
9754
9254
  * @param {*} [options] Override http request option.
9755
9255
  * @throws {RequiredError}
9756
9256
  */
9757
- postUpdateNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO>;
9758
- /**
9759
- *
9760
- * @param {number} id Number Port ID
9761
- * @param {string | null} [companyName] Company Name
9762
- * @param {string | null} [addressLine1] Address Line 1
9763
- * @param {string | null} [addressLine2] Address Line 2
9764
- * @param {string | null} [city] City
9765
- * @param {string | null} [postCode] Post Code
9766
- * @param {number | null} [trunkId] Trunk ID
9767
- * @param {string | null} [tenantId] Starter Bundle ID
9768
- * @param {string | null} [requestedPortDate] Requested Port Date
9769
- * @param {boolean | null} [asap] Port Date ASAP
9770
- * @param {string | null} [comment] Comment
9771
- * @param {number} [id2] Number Port ID
9772
- * @param {string} [customerName] Customer Name
9773
- * @param {string} [portDate] Porting Date
9774
- * @param {Array<NumberPortRangeDTO>} [numberRanges] Number Ranges
9775
- * @param {number} [status] Status
9776
- * @param {number | null} [ticketId] Ticket ID
9777
- * @param {*} [options] Override http request option.
9778
- * @throws {RequiredError}
9779
- */
9780
- putGetAdminNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, id2?: number, customerName?: string, portDate?: string, numberRanges?: Array<NumberPortRangeDTO>, status?: number, ticketId?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<NumberPortDTO>;
9257
+ postTrackMtChange(multiTenantChangeResponseModel?: MultiTenantChangeResponseModel, options?: RawAxiosRequestConfig): AxiosPromise<MultiTenantChangeResponseModel>;
9781
9258
  };
9782
9259
  /**
9783
- * NumberPortingApi - object-oriented interface
9260
+ * Class3CXMultiTenantApi - object-oriented interface
9784
9261
  */
9785
- export declare class NumberPortingApi extends BaseAPI {
9262
+ export declare class Class3CXMultiTenantApi extends BaseAPI {
9786
9263
  /**
9787
- *
9788
- * @param {number} id Number Port ID
9264
+ * Delete 3CX Starter Bundle Tenant
9265
+ * @summary Delete 3CX MT Tenant
9266
+ * @param {string} reference Tenant Reference
9789
9267
  * @param {*} [options] Override http request option.
9790
9268
  * @throws {RequiredError}
9791
9269
  */
9792
- deleteGetAdminNumberPort(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
9270
+ deleteGetTenant(reference: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
9793
9271
  /**
9794
- *
9272
+ * Get 3CX Starter Bundle Tenant
9273
+ * @summary Get 3CX MT Tenant
9274
+ * @param {string} reference Tenant Reference
9275
+ * @param {*} [options] Override http request option.
9276
+ * @throws {RequiredError}
9277
+ */
9278
+ getGetTenant(reference: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxMultiTenantModel, any, {}>>;
9279
+ /**
9280
+ * Get 3CX Starter Bundle Tenants
9281
+ * @summary Get 3CX MT Tenants
9795
9282
  * @param {number} [pageSize] Number Of Results
9796
9283
  * @param {number} [page] Page Number
9797
9284
  * @param {string} [search] Search
9285
+ * @param {GetGetTenantsStatusEnum} [status] Status
9798
9286
  * @param {*} [options] Override http request option.
9799
9287
  * @throws {RequiredError}
9800
9288
  */
9801
- getCreateNumberPort(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortsModel, any, {}>>;
9289
+ getGetTenants(pageSize?: number, page?: number, search?: string, status?: GetGetTenantsStatusEnum, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxMultiTenantsModel, any, {}>>;
9802
9290
  /**
9803
- *
9804
- * @param {number} id Number Port ID
9291
+ * Add 3CX MT DDI
9292
+ * @summary Add 3CX MT DDI
9293
+ * @param {string} areacode Area Code
9805
9294
  * @param {*} [options] Override http request option.
9806
9295
  * @throws {RequiredError}
9807
9296
  */
9808
- getGetAdminNumberPort(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortDTO, any, {}>>;
9297
+ postAddMtDdi(areacode: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MultiTenantChangeResponseModel, any, {}>>;
9809
9298
  /**
9810
- *
9811
- * @param {number} [pageSize] Number Of Results
9812
- * @param {number} [page] Page Number
9813
- * @param {string} [search] Search
9299
+ * Get 3CX MT New DDIs
9300
+ * @summary Get 3CX MT New DDIs
9301
+ * @param {MultiTenantChangeResponseModel} [multiTenantChangeResponseModel] Multi-Tenant Change Request
9814
9302
  * @param {*} [options] Override http request option.
9815
9303
  * @throws {RequiredError}
9816
9304
  */
9817
- getGetAdminNumberPorts(pageSize?: number, page?: number, search?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortsModel, any, {}>>;
9305
+ postGetMtNewDdis(multiTenantChangeResponseModel?: MultiTenantChangeResponseModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<string[], any, {}>>;
9818
9306
  /**
9819
- *
9820
- * @param {number} id Number Port ID
9307
+ * Add 3CX Starter Bundle Tenant
9308
+ * @summary Add 3CX MT Tenant
9309
+ * @param {TcxMultiTenantModel} [tcxMultiTenantModel] New 3CX Starter Bundle Request
9821
9310
  * @param {*} [options] Override http request option.
9822
9311
  * @throws {RequiredError}
9823
9312
  */
9824
- getUpdateNumberPort(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortDTO, any, {}>>;
9313
+ postGetTenants(tcxMultiTenantModel?: TcxMultiTenantModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TcxMultiTenantModel, any, {}>>;
9825
9314
  /**
9826
- *
9827
- * @param {string | null} [companyName] Company Name
9828
- * @param {string | null} [addressLine1] Address Line 1
9829
- * @param {string | null} [addressLine2] Address Line 2
9830
- * @param {string | null} [city] City
9831
- * @param {string | null} [postCode] Post Code
9832
- * @param {number | null} [trunkId] Trunk ID
9833
- * @param {string | null} [tenantId] Starter Bundle ID
9834
- * @param {string | null} [requestedPortDate] Requested Port Date
9835
- * @param {boolean | null} [asap] Port Date ASAP
9836
- * @param {string | null} [comment] Comment
9837
- * @param {Array<NumberPortRangeRequestDTO>} [numberRanges] Number Ranges
9838
- * @param {File} [cloa] CLOA (only provide on submission)
9315
+ * Track 3CX MT Change
9316
+ * @summary Track 3CX MT Change
9317
+ * @param {MultiTenantChangeResponseModel} [multiTenantChangeResponseModel] Multi-Tenant Change Request
9318
+ * @param {*} [options] Override http request option.
9319
+ * @throws {RequiredError}
9320
+ */
9321
+ postTrackMtChange(multiTenantChangeResponseModel?: MultiTenantChangeResponseModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<MultiTenantChangeResponseModel, any, {}>>;
9322
+ }
9323
+ export declare const GetGetTenantsStatusEnum: {
9324
+ readonly Completed: "Completed";
9325
+ readonly Outstanding: "Outstanding";
9326
+ readonly Offline: "Offline";
9327
+ readonly FailedOver: "Failed Over";
9328
+ };
9329
+ export type GetGetTenantsStatusEnum = typeof GetGetTenantsStatusEnum[keyof typeof GetGetTenantsStatusEnum];
9330
+ /**
9331
+ * MyPBXToolsApi - axios parameter creator
9332
+ */
9333
+ export declare const MyPBXToolsApiAxiosParamCreator: (configuration?: Configuration) => {
9334
+ /**
9335
+ * Get 3CX Installation Details
9336
+ * @summary Fetch recording from a 3CX instance
9337
+ * @param {string} licenceKey Licence Key
9338
+ * @param {string} fileName File Name
9839
9339
  * @param {*} [options] Override http request option.
9840
9340
  * @throws {RequiredError}
9841
9341
  */
9842
- postCreateNumberPort(companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortDTO, any, {}>>;
9342
+ getGetRecording: (licenceKey: string, fileName: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
9343
+ };
9344
+ /**
9345
+ * MyPBXToolsApi - functional programming interface
9346
+ */
9347
+ export declare const MyPBXToolsApiFp: (configuration?: Configuration) => {
9843
9348
  /**
9844
- *
9845
- * @param {number} id Number Port ID
9846
- * @param {string | null} [companyName] Company Name
9847
- * @param {string | null} [addressLine1] Address Line 1
9848
- * @param {string | null} [addressLine2] Address Line 2
9849
- * @param {string | null} [city] City
9850
- * @param {string | null} [postCode] Post Code
9851
- * @param {number | null} [trunkId] Trunk ID
9852
- * @param {string | null} [tenantId] Starter Bundle ID
9853
- * @param {string | null} [requestedPortDate] Requested Port Date
9854
- * @param {boolean | null} [asap] Port Date ASAP
9855
- * @param {string | null} [comment] Comment
9856
- * @param {Array<NumberPortRangeRequestDTO>} [numberRanges] Number Ranges
9857
- * @param {File} [cloa] CLOA (only provide on submission)
9349
+ * Get 3CX Installation Details
9350
+ * @summary Fetch recording from a 3CX instance
9351
+ * @param {string} licenceKey Licence Key
9352
+ * @param {string} fileName File Name
9858
9353
  * @param {*} [options] Override http request option.
9859
9354
  * @throws {RequiredError}
9860
9355
  */
9861
- postSubmitNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortDTO, any, {}>>;
9356
+ getGetRecording(licenceKey: string, fileName: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GetGetRecording200Response>>;
9357
+ };
9358
+ /**
9359
+ * MyPBXToolsApi - factory interface
9360
+ */
9361
+ export declare const MyPBXToolsApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
9862
9362
  /**
9863
- *
9864
- * @param {number} id Number Port ID
9865
- * @param {string | null} [companyName] Company Name
9866
- * @param {string | null} [addressLine1] Address Line 1
9867
- * @param {string | null} [addressLine2] Address Line 2
9868
- * @param {string | null} [city] City
9869
- * @param {string | null} [postCode] Post Code
9870
- * @param {number | null} [trunkId] Trunk ID
9871
- * @param {string | null} [tenantId] Starter Bundle ID
9872
- * @param {string | null} [requestedPortDate] Requested Port Date
9873
- * @param {boolean | null} [asap] Port Date ASAP
9874
- * @param {string | null} [comment] Comment
9875
- * @param {Array<NumberPortRangeRequestDTO>} [numberRanges] Number Ranges
9876
- * @param {File} [cloa] CLOA (only provide on submission)
9363
+ * Get 3CX Installation Details
9364
+ * @summary Fetch recording from a 3CX instance
9365
+ * @param {string} licenceKey Licence Key
9366
+ * @param {string} fileName File Name
9877
9367
  * @param {*} [options] Override http request option.
9878
9368
  * @throws {RequiredError}
9879
9369
  */
9880
- postUpdateNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, numberRanges?: Array<NumberPortRangeRequestDTO>, cloa?: File, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortDTO, any, {}>>;
9370
+ getGetRecording(licenceKey: string, fileName: string, options?: RawAxiosRequestConfig): AxiosPromise<GetGetRecording200Response>;
9371
+ };
9372
+ /**
9373
+ * MyPBXToolsApi - object-oriented interface
9374
+ */
9375
+ export declare class MyPBXToolsApi extends BaseAPI {
9881
9376
  /**
9882
- *
9883
- * @param {number} id Number Port ID
9884
- * @param {string | null} [companyName] Company Name
9885
- * @param {string | null} [addressLine1] Address Line 1
9886
- * @param {string | null} [addressLine2] Address Line 2
9887
- * @param {string | null} [city] City
9888
- * @param {string | null} [postCode] Post Code
9889
- * @param {number | null} [trunkId] Trunk ID
9890
- * @param {string | null} [tenantId] Starter Bundle ID
9891
- * @param {string | null} [requestedPortDate] Requested Port Date
9892
- * @param {boolean | null} [asap] Port Date ASAP
9893
- * @param {string | null} [comment] Comment
9894
- * @param {number} [id2] Number Port ID
9895
- * @param {string} [customerName] Customer Name
9896
- * @param {string} [portDate] Porting Date
9897
- * @param {Array<NumberPortRangeDTO>} [numberRanges] Number Ranges
9898
- * @param {number} [status] Status
9899
- * @param {number | null} [ticketId] Ticket ID
9377
+ * Get 3CX Installation Details
9378
+ * @summary Fetch recording from a 3CX instance
9379
+ * @param {string} licenceKey Licence Key
9380
+ * @param {string} fileName File Name
9900
9381
  * @param {*} [options] Override http request option.
9901
9382
  * @throws {RequiredError}
9902
9383
  */
9903
- putGetAdminNumberPort(id: number, companyName?: string | null, addressLine1?: string | null, addressLine2?: string | null, city?: string | null, postCode?: string | null, trunkId?: number | null, tenantId?: string | null, requestedPortDate?: string | null, asap?: boolean | null, comment?: string | null, id2?: number, customerName?: string, portDate?: string, numberRanges?: Array<NumberPortRangeDTO>, status?: number, ticketId?: number | null, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<NumberPortDTO, any, {}>>;
9384
+ getGetRecording(licenceKey: string, fileName: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<GetGetRecording200Response, any, {}>>;
9904
9385
  }
9905
9386
  /**
9906
9387
  * OAuth20Api - axios parameter creator
@@ -10188,8 +9669,6 @@ export declare const PostAccessTokenScopeEnum: {
10188
9669
  readonly TcxWizard: "tcx_wizard";
10189
9670
  readonly AccountsRead: "accounts.read";
10190
9671
  readonly AccountsWrite: "accounts.write";
10191
- readonly NumberPortingRead: "number_porting.read";
10192
- readonly NumberPortingWrite: "number_porting.write";
10193
9672
  readonly PricingRead: "pricing.read";
10194
9673
  readonly OrdersRead: "orders.read";
10195
9674
  readonly OrdersWrite: "orders.write";
@@ -10222,8 +9701,6 @@ export declare const PostAuthoriseScopeEnum: {
10222
9701
  readonly TcxWizard: "tcx_wizard";
10223
9702
  readonly AccountsRead: "accounts.read";
10224
9703
  readonly AccountsWrite: "accounts.write";
10225
- readonly NumberPortingRead: "number_porting.read";
10226
- readonly NumberPortingWrite: "number_porting.write";
10227
9704
  readonly PricingRead: "pricing.read";
10228
9705
  readonly OrdersRead: "orders.read";
10229
9706
  readonly OrdersWrite: "orders.write";
@@ -12178,6 +11655,198 @@ export declare class SMSApi extends BaseAPI {
12178
11655
  */
12179
11656
  postSendSms(authorization: string, smsMessageModel?: SmsMessageModel, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SmsDataModel, any, {}>>;
12180
11657
  }
11658
+ /**
11659
+ * ServicesApi - axios parameter creator
11660
+ */
11661
+ export declare const ServicesApiAxiosParamCreator: (configuration?: Configuration) => {
11662
+ /**
11663
+ *
11664
+ * @param {string} [id] Unsubscribe Email ID
11665
+ * @param {string} [email] Unsubscribe Email Address
11666
+ * @param {*} [options] Override http request option.
11667
+ * @throws {RequiredError}
11668
+ */
11669
+ deleteUnsubscribe: (id?: string, email?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11670
+ /**
11671
+ *
11672
+ * @param {*} [options] Override http request option.
11673
+ * @throws {RequiredError}
11674
+ */
11675
+ getGetServiceHealth: (options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11676
+ /**
11677
+ *
11678
+ * @param {string} id Group ID
11679
+ * @param {*} [options] Override http request option.
11680
+ * @throws {RequiredError}
11681
+ */
11682
+ patchArchiveIncident: (id: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11683
+ /**
11684
+ *
11685
+ * @param {IncidentRequestDTO} [incidentRequestDTO]
11686
+ * @param {*} [options] Override http request option.
11687
+ * @throws {RequiredError}
11688
+ */
11689
+ postCreateIncident: (incidentRequestDTO?: IncidentRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11690
+ /**
11691
+ *
11692
+ * @param {string} id Group ID
11693
+ * @param {IncidentUpdateRequestDTO} [incidentUpdateRequestDTO]
11694
+ * @param {*} [options] Override http request option.
11695
+ * @throws {RequiredError}
11696
+ */
11697
+ postCreateIncidentUpdate: (id: string, incidentUpdateRequestDTO?: IncidentUpdateRequestDTO, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11698
+ /**
11699
+ *
11700
+ * @param {string} [email] Subscription Email Address
11701
+ * @param {*} [options] Override http request option.
11702
+ * @throws {RequiredError}
11703
+ */
11704
+ postSubscribe: (email?: string, options?: RawAxiosRequestConfig) => Promise<RequestArgs>;
11705
+ };
11706
+ /**
11707
+ * ServicesApi - functional programming interface
11708
+ */
11709
+ export declare const ServicesApiFp: (configuration?: Configuration) => {
11710
+ /**
11711
+ *
11712
+ * @param {string} [id] Unsubscribe Email ID
11713
+ * @param {string} [email] Unsubscribe Email Address
11714
+ * @param {*} [options] Override http request option.
11715
+ * @throws {RequiredError}
11716
+ */
11717
+ deleteUnsubscribe(id?: string, email?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
11718
+ /**
11719
+ *
11720
+ * @param {*} [options] Override http request option.
11721
+ * @throws {RequiredError}
11722
+ */
11723
+ getGetServiceHealth(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ServiceHealthDTO>>;
11724
+ /**
11725
+ *
11726
+ * @param {string} id Group ID
11727
+ * @param {*} [options] Override http request option.
11728
+ * @throws {RequiredError}
11729
+ */
11730
+ patchArchiveIncident(id: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IncidentDTO>>;
11731
+ /**
11732
+ *
11733
+ * @param {IncidentRequestDTO} [incidentRequestDTO]
11734
+ * @param {*} [options] Override http request option.
11735
+ * @throws {RequiredError}
11736
+ */
11737
+ postCreateIncident(incidentRequestDTO?: IncidentRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IncidentDTO>>;
11738
+ /**
11739
+ *
11740
+ * @param {string} id Group ID
11741
+ * @param {IncidentUpdateRequestDTO} [incidentUpdateRequestDTO]
11742
+ * @param {*} [options] Override http request option.
11743
+ * @throws {RequiredError}
11744
+ */
11745
+ postCreateIncidentUpdate(id: string, incidentUpdateRequestDTO?: IncidentUpdateRequestDTO, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<IncidentDTO>>;
11746
+ /**
11747
+ *
11748
+ * @param {string} [email] Subscription Email Address
11749
+ * @param {*} [options] Override http request option.
11750
+ * @throws {RequiredError}
11751
+ */
11752
+ postSubscribe(email?: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<void>>;
11753
+ };
11754
+ /**
11755
+ * ServicesApi - factory interface
11756
+ */
11757
+ export declare const ServicesApiFactory: (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) => {
11758
+ /**
11759
+ *
11760
+ * @param {string} [id] Unsubscribe Email ID
11761
+ * @param {string} [email] Unsubscribe Email Address
11762
+ * @param {*} [options] Override http request option.
11763
+ * @throws {RequiredError}
11764
+ */
11765
+ deleteUnsubscribe(id?: string, email?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
11766
+ /**
11767
+ *
11768
+ * @param {*} [options] Override http request option.
11769
+ * @throws {RequiredError}
11770
+ */
11771
+ getGetServiceHealth(options?: RawAxiosRequestConfig): AxiosPromise<ServiceHealthDTO>;
11772
+ /**
11773
+ *
11774
+ * @param {string} id Group ID
11775
+ * @param {*} [options] Override http request option.
11776
+ * @throws {RequiredError}
11777
+ */
11778
+ patchArchiveIncident(id: string, options?: RawAxiosRequestConfig): AxiosPromise<IncidentDTO>;
11779
+ /**
11780
+ *
11781
+ * @param {IncidentRequestDTO} [incidentRequestDTO]
11782
+ * @param {*} [options] Override http request option.
11783
+ * @throws {RequiredError}
11784
+ */
11785
+ postCreateIncident(incidentRequestDTO?: IncidentRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<IncidentDTO>;
11786
+ /**
11787
+ *
11788
+ * @param {string} id Group ID
11789
+ * @param {IncidentUpdateRequestDTO} [incidentUpdateRequestDTO]
11790
+ * @param {*} [options] Override http request option.
11791
+ * @throws {RequiredError}
11792
+ */
11793
+ postCreateIncidentUpdate(id: string, incidentUpdateRequestDTO?: IncidentUpdateRequestDTO, options?: RawAxiosRequestConfig): AxiosPromise<IncidentDTO>;
11794
+ /**
11795
+ *
11796
+ * @param {string} [email] Subscription Email Address
11797
+ * @param {*} [options] Override http request option.
11798
+ * @throws {RequiredError}
11799
+ */
11800
+ postSubscribe(email?: string, options?: RawAxiosRequestConfig): AxiosPromise<void>;
11801
+ };
11802
+ /**
11803
+ * ServicesApi - object-oriented interface
11804
+ */
11805
+ export declare class ServicesApi extends BaseAPI {
11806
+ /**
11807
+ *
11808
+ * @param {string} [id] Unsubscribe Email ID
11809
+ * @param {string} [email] Unsubscribe Email Address
11810
+ * @param {*} [options] Override http request option.
11811
+ * @throws {RequiredError}
11812
+ */
11813
+ deleteUnsubscribe(id?: string, email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
11814
+ /**
11815
+ *
11816
+ * @param {*} [options] Override http request option.
11817
+ * @throws {RequiredError}
11818
+ */
11819
+ getGetServiceHealth(options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<ServiceHealthDTO, any, {}>>;
11820
+ /**
11821
+ *
11822
+ * @param {string} id Group ID
11823
+ * @param {*} [options] Override http request option.
11824
+ * @throws {RequiredError}
11825
+ */
11826
+ patchArchiveIncident(id: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IncidentDTO, any, {}>>;
11827
+ /**
11828
+ *
11829
+ * @param {IncidentRequestDTO} [incidentRequestDTO]
11830
+ * @param {*} [options] Override http request option.
11831
+ * @throws {RequiredError}
11832
+ */
11833
+ postCreateIncident(incidentRequestDTO?: IncidentRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IncidentDTO, any, {}>>;
11834
+ /**
11835
+ *
11836
+ * @param {string} id Group ID
11837
+ * @param {IncidentUpdateRequestDTO} [incidentUpdateRequestDTO]
11838
+ * @param {*} [options] Override http request option.
11839
+ * @throws {RequiredError}
11840
+ */
11841
+ postCreateIncidentUpdate(id: string, incidentUpdateRequestDTO?: IncidentUpdateRequestDTO, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<IncidentDTO, any, {}>>;
11842
+ /**
11843
+ *
11844
+ * @param {string} [email] Subscription Email Address
11845
+ * @param {*} [options] Override http request option.
11846
+ * @throws {RequiredError}
11847
+ */
11848
+ postSubscribe(email?: string, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<void, any, {}>>;
11849
+ }
12181
11850
  /**
12182
11851
  * ShippingApi - axios parameter creator
12183
11852
  */
@@ -13263,14 +12932,14 @@ export declare const TicketsApiFp: (configuration?: Configuration) => {
13263
12932
  * @param {*} [options] Override http request option.
13264
12933
  * @throws {RequiredError}
13265
12934
  */
13266
- getGetTicket(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SupportTicketModel>>;
12935
+ getGetTicket(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TelephonySupportTicketModel>>;
13267
12936
  /**
13268
12937
  * Close a telephony support ticket
13269
12938
  * @param {number} id Ticket ID
13270
12939
  * @param {*} [options] Override http request option.
13271
12940
  * @throws {RequiredError}
13272
12941
  */
13273
- patchCloseTicket(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SupportTicketModel>>;
12942
+ patchCloseTicket(id: number, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TelephonySupportTicketModel>>;
13274
12943
  /**
13275
12944
  * Create a new telephony support ticket
13276
12945
  * @param {string} [subject] Ticket Subject
@@ -13279,7 +12948,7 @@ export declare const TicketsApiFp: (configuration?: Configuration) => {
13279
12948
  * @param {*} [options] Override http request option.
13280
12949
  * @throws {RequiredError}
13281
12950
  */
13282
- postCreateTicket(subject?: string, message?: string, attachments?: Array<File>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SupportTicketModel>>;
12951
+ postCreateTicket(subject?: string, message?: string, attachments?: Array<File>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TelephonySupportTicketModel>>;
13283
12952
  /**
13284
12953
  * Reply to a telephony support ticket
13285
12954
  * @param {number} id Ticket ID
@@ -13288,7 +12957,7 @@ export declare const TicketsApiFp: (configuration?: Configuration) => {
13288
12957
  * @param {*} [options] Override http request option.
13289
12958
  * @throws {RequiredError}
13290
12959
  */
13291
- postTicketReply(id: number, body?: string, attachments?: Array<File>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<SupportTicketModel>>;
12960
+ postTicketReply(id: number, body?: string, attachments?: Array<File>, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TelephonySupportTicketModel>>;
13292
12961
  };
13293
12962
  /**
13294
12963
  * TicketsApi - factory interface
@@ -13309,14 +12978,14 @@ export declare const TicketsApiFactory: (configuration?: Configuration, basePath
13309
12978
  * @param {*} [options] Override http request option.
13310
12979
  * @throws {RequiredError}
13311
12980
  */
13312
- getGetTicket(id: number, options?: RawAxiosRequestConfig): AxiosPromise<SupportTicketModel>;
12981
+ getGetTicket(id: number, options?: RawAxiosRequestConfig): AxiosPromise<TelephonySupportTicketModel>;
13313
12982
  /**
13314
12983
  * Close a telephony support ticket
13315
12984
  * @param {number} id Ticket ID
13316
12985
  * @param {*} [options] Override http request option.
13317
12986
  * @throws {RequiredError}
13318
12987
  */
13319
- patchCloseTicket(id: number, options?: RawAxiosRequestConfig): AxiosPromise<SupportTicketModel>;
12988
+ patchCloseTicket(id: number, options?: RawAxiosRequestConfig): AxiosPromise<TelephonySupportTicketModel>;
13320
12989
  /**
13321
12990
  * Create a new telephony support ticket
13322
12991
  * @param {string} [subject] Ticket Subject
@@ -13325,7 +12994,7 @@ export declare const TicketsApiFactory: (configuration?: Configuration, basePath
13325
12994
  * @param {*} [options] Override http request option.
13326
12995
  * @throws {RequiredError}
13327
12996
  */
13328
- postCreateTicket(subject?: string, message?: string, attachments?: Array<File>, options?: RawAxiosRequestConfig): AxiosPromise<SupportTicketModel>;
12997
+ postCreateTicket(subject?: string, message?: string, attachments?: Array<File>, options?: RawAxiosRequestConfig): AxiosPromise<TelephonySupportTicketModel>;
13329
12998
  /**
13330
12999
  * Reply to a telephony support ticket
13331
13000
  * @param {number} id Ticket ID
@@ -13334,7 +13003,7 @@ export declare const TicketsApiFactory: (configuration?: Configuration, basePath
13334
13003
  * @param {*} [options] Override http request option.
13335
13004
  * @throws {RequiredError}
13336
13005
  */
13337
- postTicketReply(id: number, body?: string, attachments?: Array<File>, options?: RawAxiosRequestConfig): AxiosPromise<SupportTicketModel>;
13006
+ postTicketReply(id: number, body?: string, attachments?: Array<File>, options?: RawAxiosRequestConfig): AxiosPromise<TelephonySupportTicketModel>;
13338
13007
  };
13339
13008
  /**
13340
13009
  * TicketsApi - object-oriented interface
@@ -13355,14 +13024,14 @@ export declare class TicketsApi extends BaseAPI {
13355
13024
  * @param {*} [options] Override http request option.
13356
13025
  * @throws {RequiredError}
13357
13026
  */
13358
- getGetTicket(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SupportTicketModel, any, {}>>;
13027
+ getGetTicket(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TelephonySupportTicketModel, any, {}>>;
13359
13028
  /**
13360
13029
  * Close a telephony support ticket
13361
13030
  * @param {number} id Ticket ID
13362
13031
  * @param {*} [options] Override http request option.
13363
13032
  * @throws {RequiredError}
13364
13033
  */
13365
- patchCloseTicket(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SupportTicketModel, any, {}>>;
13034
+ patchCloseTicket(id: number, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TelephonySupportTicketModel, any, {}>>;
13366
13035
  /**
13367
13036
  * Create a new telephony support ticket
13368
13037
  * @param {string} [subject] Ticket Subject
@@ -13371,7 +13040,7 @@ export declare class TicketsApi extends BaseAPI {
13371
13040
  * @param {*} [options] Override http request option.
13372
13041
  * @throws {RequiredError}
13373
13042
  */
13374
- postCreateTicket(subject?: string, message?: string, attachments?: Array<File>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SupportTicketModel, any, {}>>;
13043
+ postCreateTicket(subject?: string, message?: string, attachments?: Array<File>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TelephonySupportTicketModel, any, {}>>;
13375
13044
  /**
13376
13045
  * Reply to a telephony support ticket
13377
13046
  * @param {number} id Ticket ID
@@ -13380,7 +13049,7 @@ export declare class TicketsApi extends BaseAPI {
13380
13049
  * @param {*} [options] Override http request option.
13381
13050
  * @throws {RequiredError}
13382
13051
  */
13383
- postTicketReply(id: number, body?: string, attachments?: Array<File>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<SupportTicketModel, any, {}>>;
13052
+ postTicketReply(id: number, body?: string, attachments?: Array<File>, options?: RawAxiosRequestConfig): Promise<import("axios").AxiosResponse<TelephonySupportTicketModel, any, {}>>;
13384
13053
  }
13385
13054
  /**
13386
13055
  * WebhooksApi - axios parameter creator