@newfold/huapi-js 2.1466.0 → 2.1470.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.
@@ -3,7 +3,7 @@
3
3
  * Do not edit manually.
4
4
  * Hosting UAPI
5
5
  * Hosting UAPI is an API to expose Hosting, Addons, and Site functionality to a customer-facing Front End such as (Account Manager).
6
- * OpenAPI spec version: 1.1466.0
6
+ * OpenAPI spec version: 1.1470.0
7
7
  */
8
8
  export declare type SshKeyListV4200RowsItem = {
9
9
  authorize?: boolean;
@@ -267,6 +267,17 @@ export declare type SitesDomainsV2200 = {
267
267
  export declare type SitesDomainsV2Params = {
268
268
  scan?: boolean;
269
269
  };
270
+ export declare type SitesListV2200 = {
271
+ items?: SitesListV2200ItemsItem[];
272
+ /** page size */
273
+ limit?: number;
274
+ /** current page number */
275
+ page?: number;
276
+ /** total number of pages */
277
+ pages?: number;
278
+ /** total number of sites returned */
279
+ total?: number;
280
+ };
270
281
  /**
271
282
  * @nullable
272
283
  */
@@ -294,6 +305,63 @@ export declare type SitesListV2200ItemsItemStaging = {
294
305
  /** A list of staging sites of the current site */
295
306
  sites?: number[];
296
307
  } | null;
308
+ export declare type SitesListV2200ItemsItemResourcesStorage = {
309
+ /** @nullable */
310
+ available?: number | null;
311
+ /** @nullable */
312
+ total?: number | null;
313
+ unit?: string;
314
+ /** @nullable */
315
+ used?: number | null;
316
+ };
317
+ export declare type SitesListV2200ItemsItemResources = {
318
+ storage?: SitesListV2200ItemsItemResourcesStorage;
319
+ /** @nullable */
320
+ workers?: number | null;
321
+ };
322
+ /**
323
+ * @nullable
324
+ */
325
+ export declare type SitesListV2200ItemsItemPendingUrlData = {
326
+ /**
327
+ * The root domain name
328
+ * @nullable
329
+ */
330
+ base_domain?: string | null;
331
+ /**
332
+ * The Fully Qualified Domain Name (FQDN)
333
+ * @nullable
334
+ */
335
+ domain?: string | null;
336
+ /**
337
+ * The current pending_url's HAL Domain ID
338
+ * @nullable
339
+ */
340
+ domain_id?: number | null;
341
+ /** @nullable */
342
+ error?: string | null;
343
+ /** Flag indicating whether the pending_url is temporary or not */
344
+ is_temp?: boolean;
345
+ /**
346
+ * Flag indicating whether the url_sync job has run out of attempts
347
+ * @nullable
348
+ */
349
+ job_failed?: boolean | null;
350
+ /** @nullable */
351
+ stage?: string | null;
352
+ /**
353
+ * Timestamp for when we will update the WP url, regardless of active sessions
354
+ * @nullable
355
+ */
356
+ wp_session?: string | null;
357
+ } | null;
358
+ /**
359
+ * Job ids for the site
360
+ * @nullable
361
+ */
362
+ export declare type SitesListV2200ItemsItemJobs = {
363
+ [key: string]: unknown;
364
+ } | null;
297
365
  export declare type SitesListV2200ItemsItem = {
298
366
  /** @nullable */
299
367
  account_back_ref?: string | null;
@@ -372,74 +440,6 @@ export declare type SitesListV2200ItemsItem = {
372
440
  */
373
441
  version_ptr?: string | null;
374
442
  };
375
- export declare type SitesListV2200 = {
376
- items?: SitesListV2200ItemsItem[];
377
- /** page size */
378
- limit?: number;
379
- /** current page number */
380
- page?: number;
381
- /** total number of pages */
382
- pages?: number;
383
- /** total number of sites returned */
384
- total?: number;
385
- };
386
- export declare type SitesListV2200ItemsItemResourcesStorage = {
387
- /** @nullable */
388
- available?: number | null;
389
- /** @nullable */
390
- total?: number | null;
391
- unit?: string;
392
- /** @nullable */
393
- used?: number | null;
394
- };
395
- export declare type SitesListV2200ItemsItemResources = {
396
- storage?: SitesListV2200ItemsItemResourcesStorage;
397
- /** @nullable */
398
- workers?: number | null;
399
- };
400
- /**
401
- * @nullable
402
- */
403
- export declare type SitesListV2200ItemsItemPendingUrlData = {
404
- /**
405
- * The root domain name
406
- * @nullable
407
- */
408
- base_domain?: string | null;
409
- /**
410
- * The Fully Qualified Domain Name (FQDN)
411
- * @nullable
412
- */
413
- domain?: string | null;
414
- /**
415
- * The current pending_url's HAL Domain ID
416
- * @nullable
417
- */
418
- domain_id?: number | null;
419
- /** @nullable */
420
- error?: string | null;
421
- /** Flag indicating whether the pending_url is temporary or not */
422
- is_temp?: boolean;
423
- /**
424
- * Flag indicating whether the url_sync job has run out of attempts
425
- * @nullable
426
- */
427
- job_failed?: boolean | null;
428
- /** @nullable */
429
- stage?: string | null;
430
- /**
431
- * Timestamp for when we will update the WP url, regardless of active sessions
432
- * @nullable
433
- */
434
- wp_session?: string | null;
435
- } | null;
436
- /**
437
- * Job ids for the site
438
- * @nullable
439
- */
440
- export declare type SitesListV2200ItemsItemJobs = {
441
- [key: string]: unknown;
442
- } | null;
443
443
  export declare type SshKeyV2200 = {
444
444
  deleted?: number;
445
445
  key_name?: string;
@@ -778,6 +778,132 @@ export declare type HostingDomainsUnassignV2Body = {
778
778
  /** The site id to be unassigned */
779
779
  site_id: number;
780
780
  };
781
+ /**
782
+ * @nullable
783
+ */
784
+ export declare type HostingDomainsV2200DomainsItemSetupProgress = {
785
+ /**
786
+ * Result of domain cdn validation (null=not started,0=started,1=succeeded,2=skipped)
787
+ * @nullable
788
+ */
789
+ validate_cdn?: number | null;
790
+ /**
791
+ * Most recent error logged during domain cdn validation. Remains set if validation tries run out. Gets reset by new validation job.
792
+ * @nullable
793
+ */
794
+ validate_cdn_error?: string | null;
795
+ /**
796
+ * Result of domain dns validation (null=not started,0=started,1=succeeded,2=skipped)
797
+ * @nullable
798
+ */
799
+ validate_dns?: number | null;
800
+ /**
801
+ * Whether dns_auto_repair was run on this domain (1=true)
802
+ * @nullable
803
+ */
804
+ validate_dns_auto_repair?: number | null;
805
+ /**
806
+ * Most recent error logged during domain dns validation. Remains set if validation tries run out. Gets reset by new validation job.
807
+ * @nullable
808
+ */
809
+ validate_dns_error?: string | null;
810
+ /**
811
+ * Most recent error logged during domain validation. Remains set if validation tries run out. Gets reset by new validation job.
812
+ * @nullable
813
+ */
814
+ validate_error?: string | null;
815
+ /**
816
+ * Result of domain ssl validation (null=not started,0=started,1=succeeded,2=skipped)
817
+ * @nullable
818
+ */
819
+ validate_ssl?: number | null;
820
+ /**
821
+ * Most recent error logged during domain ssl validation. Remains set if validation tries run out. Gets reset by new validation job.
822
+ * @nullable
823
+ */
824
+ validate_ssl_error?: string | null;
825
+ } | null;
826
+ export declare type HostingDomainsV2200DomainsItem = {
827
+ /** @nullable */
828
+ account_back_ref?: string | null;
829
+ /** @nullable */
830
+ authoritative?: boolean | null;
831
+ /** @nullable */
832
+ autogen_id?: number | null;
833
+ /** @nullable */
834
+ back_reference?: string | null;
835
+ base_domain?: string;
836
+ /** @nullable */
837
+ billing_account_id?: string | null;
838
+ /** @nullable */
839
+ billing_status?: string | null;
840
+ date_added?: string;
841
+ date_modified?: string;
842
+ /** @nullable */
843
+ date_ssl_exp?: string | null;
844
+ dns_status?: string;
845
+ /** @nullable */
846
+ docroot: string | null;
847
+ domain: string;
848
+ /** @nullable */
849
+ homedir?: string | null;
850
+ /** @nullable */
851
+ hosting_id?: number | null;
852
+ id: number;
853
+ /**
854
+ * Whether the domain is internal to us, external, or cannot be determined
855
+ * @nullable
856
+ */
857
+ is_internal?: boolean | null;
858
+ /** @nullable */
859
+ nameservers?: string[] | null;
860
+ /** @nullable */
861
+ platform?: string | null;
862
+ /** @nullable */
863
+ platform_type?: string | null;
864
+ /** @nullable */
865
+ setup_progress?: HostingDomainsV2200DomainsItemSetupProgress;
866
+ /** @nullable */
867
+ ssl_issuer?: string | null;
868
+ /** @nullable */
869
+ ssl_prod_inst_id?: string | null;
870
+ /** @nullable */
871
+ ssl_status?: string | null;
872
+ /** @nullable */
873
+ ssl_tier?: string | null;
874
+ /** @nullable */
875
+ ssl_type?: string | null;
876
+ /**
877
+ * Whether the domain is eligible for an SSL upgrade
878
+ * @nullable
879
+ */
880
+ ssl_upgradeable?: boolean | null;
881
+ status?: string;
882
+ type: string;
883
+ };
884
+ export declare type HostingDomainsV2200 = {
885
+ domains: HostingDomainsV2200DomainsItem[];
886
+ limit?: number;
887
+ page?: number;
888
+ total?: number;
889
+ };
890
+ export declare type HostingDomainsV2TypesItem = typeof HostingDomainsV2TypesItem[keyof typeof HostingDomainsV2TypesItem];
891
+ export declare const HostingDomainsV2TypesItem: {
892
+ readonly addon: "addon";
893
+ readonly main: "main";
894
+ readonly parked: "parked";
895
+ readonly sub: "sub";
896
+ readonly unassigned: "unassigned";
897
+ };
898
+ export declare type HostingDomainsV2Params = {
899
+ types?: HostingDomainsV2TypesItem[];
900
+ domains?: string[];
901
+ statuses?: string[];
902
+ docroots?: string[];
903
+ page?: number;
904
+ limit?: number;
905
+ scan?: boolean;
906
+ };
781
907
  export declare type DbListV2200DatabasesItemUserlistItem = {
782
908
  db?: string;
783
909
  user?: string;
@@ -1388,18 +1514,6 @@ export declare type SitesMetricDimensions200DimensionsPageIsCachedItem = {
1388
1514
  dimension?: SitesMetricDimensions200DimensionsPageIsCachedItemDimension;
1389
1515
  timestamp?: number;
1390
1516
  };
1391
- export declare type SitesMetricDimensions200Dimensions = {
1392
- http_host?: SitesMetricDimensions200DimensionsHttpHostItem[];
1393
- http_status?: SitesMetricDimensions200DimensionsHttpStatusItem[];
1394
- http_verb?: SitesMetricDimensions200DimensionsHttpVerbItem[];
1395
- http_version?: SitesMetricDimensions200DimensionsHttpVersionItem[];
1396
- page_is_cached?: SitesMetricDimensions200DimensionsPageIsCachedItem[];
1397
- page_renderer?: SitesMetricDimensions200DimensionsPageRendererItem[];
1398
- visitor_asn?: SitesMetricDimensions200DimensionsVisitorAsnItem[];
1399
- visitor_country_code?: SitesMetricDimensions200DimensionsVisitorCountryCodeItem[];
1400
- visitor_is_crawler?: SitesMetricDimensions200DimensionsVisitorIsCrawlerItem[];
1401
- wp_admin_ajax_action?: SitesMetricDimensions200DimensionsWpAdminAjaxActionItem[];
1402
- };
1403
1517
  export declare type SitesMetricDimensions200DimensionsHttpVersionItemDimension = {
1404
1518
  [key: string]: number;
1405
1519
  };
@@ -1428,6 +1542,18 @@ export declare type SitesMetricDimensions200DimensionsHttpHostItem = {
1428
1542
  dimension?: SitesMetricDimensions200DimensionsHttpHostItemDimension;
1429
1543
  timestamp?: number;
1430
1544
  };
1545
+ export declare type SitesMetricDimensions200Dimensions = {
1546
+ http_host?: SitesMetricDimensions200DimensionsHttpHostItem[];
1547
+ http_status?: SitesMetricDimensions200DimensionsHttpStatusItem[];
1548
+ http_verb?: SitesMetricDimensions200DimensionsHttpVerbItem[];
1549
+ http_version?: SitesMetricDimensions200DimensionsHttpVersionItem[];
1550
+ page_is_cached?: SitesMetricDimensions200DimensionsPageIsCachedItem[];
1551
+ page_renderer?: SitesMetricDimensions200DimensionsPageRendererItem[];
1552
+ visitor_asn?: SitesMetricDimensions200DimensionsVisitorAsnItem[];
1553
+ visitor_country_code?: SitesMetricDimensions200DimensionsVisitorCountryCodeItem[];
1554
+ visitor_is_crawler?: SitesMetricDimensions200DimensionsVisitorIsCrawlerItem[];
1555
+ wp_admin_ajax_action?: SitesMetricDimensions200DimensionsWpAdminAjaxActionItem[];
1556
+ };
1431
1557
  export declare type SitesMetricDimensionsParams = {
1432
1558
  start?: string;
1433
1559
  end?: string;
@@ -1836,10 +1962,15 @@ export declare type SitesAtomicMetrics200 = {
1836
1962
  raw?: SitesAtomicMetrics200Raw;
1837
1963
  views?: SitesAtomicMetrics200Views;
1838
1964
  };
1965
+ export declare type SitesAtomicMetrics200RawPeriodsItemDimension = {
1966
+ [key: string]: string | number | number;
1967
+ };
1839
1968
  export declare type SitesAtomicMetrics200RawPeriodsItem = {
1840
1969
  dimension: SitesAtomicMetrics200RawPeriodsItemDimension;
1841
1970
  timestamp: number;
1842
1971
  };
1972
+ export declare type SitesAtomicMetrics200RawMetric = string | string[];
1973
+ export declare type SitesAtomicMetrics200RawDimension = string | string[];
1843
1974
  export declare type SitesAtomicMetrics200Raw = {
1844
1975
  date_end?: string;
1845
1976
  date_start?: string;
@@ -1848,11 +1979,6 @@ export declare type SitesAtomicMetrics200Raw = {
1848
1979
  periods?: SitesAtomicMetrics200RawPeriodsItem[];
1849
1980
  resolution?: number;
1850
1981
  };
1851
- export declare type SitesAtomicMetrics200RawPeriodsItemDimension = {
1852
- [key: string]: string | number | number;
1853
- };
1854
- export declare type SitesAtomicMetrics200RawMetric = string | string[];
1855
- export declare type SitesAtomicMetrics200RawDimension = string | string[];
1856
1982
  export declare type SitesAtomicMetricsParams = {
1857
1983
  metric?: string[];
1858
1984
  dimension?: string[];
@@ -2415,6 +2541,9 @@ export declare type HostingRedirects200Item = {
2415
2541
  url?: string;
2416
2542
  wildcard?: boolean;
2417
2543
  };
2544
+ export declare type ProductLicenseDetails200 = {
2545
+ wpsolution?: ProductLicenseDetails200Wpsolution;
2546
+ };
2418
2547
  export declare type ProductLicenseDetails200WpsolutionCreatorItem = {
2419
2548
  expirationDate?: string;
2420
2549
  prodInstId?: string;
@@ -2428,9 +2557,6 @@ export declare type ProductLicenseDetails200Wpsolution = {
2428
2557
  creator?: ProductLicenseDetails200WpsolutionCreatorItem[];
2429
2558
  total?: number;
2430
2559
  };
2431
- export declare type ProductLicenseDetails200 = {
2432
- wpsolution?: ProductLicenseDetails200Wpsolution;
2433
- };
2434
2560
  export declare type ProductLicenseDetailsProductName = typeof ProductLicenseDetailsProductName[keyof typeof ProductLicenseDetailsProductName];
2435
2561
  export declare const ProductLicenseDetailsProductName: {
2436
2562
  readonly wpsolution: "wpsolution";
@@ -2528,10 +2654,6 @@ export declare type HostingMigrationStatus200 = {
2528
2654
  export declare type HostingLead400 = {
2529
2655
  [key: string]: unknown;
2530
2656
  };
2531
- export declare type HostingLead200ResponseItemData = {
2532
- leadId?: string;
2533
- message?: string;
2534
- };
2535
2657
  export declare type HostingLead200ResponseItem = {
2536
2658
  clientRequestId?: string;
2537
2659
  data?: HostingLead200ResponseItemData;
@@ -2546,6 +2668,10 @@ export declare type HostingLead200ResponseItem = {
2546
2668
  export declare type HostingLead200 = {
2547
2669
  response?: HostingLead200ResponseItem[];
2548
2670
  } | null;
2671
+ export declare type HostingLead200ResponseItemData = {
2672
+ leadId?: string;
2673
+ message?: string;
2674
+ };
2549
2675
  export declare type HostingLeadParams = {
2550
2676
  phone?: string;
2551
2677
  };
@@ -3130,6 +3256,310 @@ export declare type HostingEmailFiltersListParams = {
3130
3256
  */
3131
3257
  address?: string;
3132
3258
  };
3259
+ export declare type HostingEmailAutoresponderList200AutorespondersItem = {
3260
+ /**
3261
+ * The email address that sends auto-responses
3262
+ * @nullable
3263
+ */
3264
+ email?: string | null;
3265
+ /**
3266
+ * The subject line of the autoresponder email
3267
+ * @nullable
3268
+ */
3269
+ subject?: string | null;
3270
+ };
3271
+ export declare type HostingEmailAutoresponderList200 = {
3272
+ /** List of autoresponders */
3273
+ autoresponders?: HostingEmailAutoresponderList200AutorespondersItem[];
3274
+ };
3275
+ export declare type HostingEmailAutoresponderListParams = {
3276
+ /**
3277
+ * The domain of the email
3278
+ */
3279
+ domain?: string;
3280
+ };
3281
+ export declare type HostingEmailAutoresponderDelete404 = {
3282
+ /** Error message */
3283
+ error?: string;
3284
+ };
3285
+ export declare type HostingEmailAutoresponderDelete400 = {
3286
+ /** Error message */
3287
+ error?: string;
3288
+ };
3289
+ export declare type HostingEmailAutoresponderDelete200 = {
3290
+ success?: boolean;
3291
+ };
3292
+ export declare type HostingEmailAutoresponderDeleteParams = {
3293
+ /**
3294
+ * Email address that sends auto-responses
3295
+ */
3296
+ email?: string;
3297
+ };
3298
+ export declare type HostingEmailAutoresponder200 = {
3299
+ success?: boolean;
3300
+ };
3301
+ /**
3302
+ * Which character set to use for the autorespond email content
3303
+ */
3304
+ export declare type HostingEmailAutoresponderBodyCharset = typeof HostingEmailAutoresponderBodyCharset[keyof typeof HostingEmailAutoresponderBodyCharset];
3305
+ export declare const HostingEmailAutoresponderBodyCharset: {
3306
+ readonly 'ansi_x3110-1983': "ansi_x3.110-1983";
3307
+ readonly 'ansi_x34-1968': "ansi_x3.4-1968";
3308
+ readonly 'armscii-8': "armscii-8";
3309
+ readonly asmo_449: "asmo_449";
3310
+ readonly big5: "big5";
3311
+ readonly 'big5-hkscs': "big5-hkscs";
3312
+ readonly brf: "brf";
3313
+ readonly bs_4730: "bs_4730";
3314
+ readonly cp10007: "cp10007";
3315
+ readonly cp1125: "cp1125";
3316
+ readonly cp1250: "cp1250";
3317
+ readonly cp1253: "cp1253";
3318
+ readonly cp1254: "cp1254";
3319
+ readonly cp1255: "cp1255";
3320
+ readonly cp1256: "cp1256";
3321
+ readonly cp1257: "cp1257";
3322
+ readonly cp1258: "cp1258";
3323
+ readonly cp737: "cp737";
3324
+ readonly cp770: "cp770";
3325
+ readonly cp771: "cp771";
3326
+ readonly cp772: "cp772";
3327
+ readonly cp773: "cp773";
3328
+ readonly cp774: "cp774";
3329
+ readonly cp775: "cp775";
3330
+ readonly 'csa_z2434-1985-1': "csa_z243.4-1985-1";
3331
+ readonly 'csa_z2434-1985-2': "csa_z243.4-1985-2";
3332
+ readonly csn_369103: "csn_369103";
3333
+ readonly cwi: "cwi";
3334
+ readonly 'dec-mcs': "dec-mcs";
3335
+ readonly din_66003: "din_66003";
3336
+ readonly ds_2089: "ds_2089";
3337
+ readonly 'ebcdic-at-de': "ebcdic-at-de";
3338
+ readonly 'ebcdic-at-de-a': "ebcdic-at-de-a";
3339
+ readonly 'ebcdic-ca-fr': "ebcdic-ca-fr";
3340
+ readonly 'ebcdic-dk-no': "ebcdic-dk-no";
3341
+ readonly 'ebcdic-dk-no-a': "ebcdic-dk-no-a";
3342
+ readonly 'ebcdic-es': "ebcdic-es";
3343
+ readonly 'ebcdic-es-a': "ebcdic-es-a";
3344
+ readonly 'ebcdic-es-s': "ebcdic-es-s";
3345
+ readonly 'ebcdic-fi-se': "ebcdic-fi-se";
3346
+ readonly 'ebcdic-fi-se-a': "ebcdic-fi-se-a";
3347
+ readonly 'ebcdic-fr': "ebcdic-fr";
3348
+ readonly 'ebcdic-is-friss': "ebcdic-is-friss";
3349
+ readonly 'ebcdic-it': "ebcdic-it";
3350
+ readonly 'ebcdic-pt': "ebcdic-pt";
3351
+ readonly 'ebcdic-uk': "ebcdic-uk";
3352
+ readonly 'ebcdic-us': "ebcdic-us";
3353
+ readonly 'ecma-cyrillic': "ecma-cyrillic";
3354
+ readonly es: "es";
3355
+ readonly es2: "es2";
3356
+ readonly 'euc-jisx0213': "euc-jisx0213";
3357
+ readonly 'euc-jp': "euc-jp";
3358
+ readonly 'euc-jp-ms': "euc-jp-ms";
3359
+ readonly 'euc-kr': "euc-kr";
3360
+ readonly 'euc-tw': "euc-tw";
3361
+ readonly gb18030: "gb18030";
3362
+ readonly gb2312: "gb2312";
3363
+ readonly 'gb_1988-80': "gb_1988-80";
3364
+ readonly gbk: "gbk";
3365
+ readonly 'georgian-academy': "georgian-academy";
3366
+ readonly 'georgian-ps': "georgian-ps";
3367
+ readonly 'gost_19768-74': "gost_19768-74";
3368
+ readonly 'greek-ccitt': "greek-ccitt";
3369
+ readonly greek7: "greek7";
3370
+ readonly 'greek7-old': "greek7-old";
3371
+ readonly 'hp-greek8': "hp-greek8";
3372
+ readonly 'hp-roman8': "hp-roman8";
3373
+ readonly 'hp-roman9': "hp-roman9";
3374
+ readonly 'hp-thai8': "hp-thai8";
3375
+ readonly 'hp-turkish8': "hp-turkish8";
3376
+ readonly ibm037: "ibm037";
3377
+ readonly ibm038: "ibm038";
3378
+ readonly ibm1004: "ibm1004";
3379
+ readonly ibm1026: "ibm1026";
3380
+ readonly ibm1047: "ibm1047";
3381
+ readonly ibm1124: "ibm1124";
3382
+ readonly ibm1129: "ibm1129";
3383
+ readonly ibm1132: "ibm1132";
3384
+ readonly ibm1133: "ibm1133";
3385
+ readonly ibm1160: "ibm1160";
3386
+ readonly ibm1161: "ibm1161";
3387
+ readonly ibm1162: "ibm1162";
3388
+ readonly ibm1163: "ibm1163";
3389
+ readonly ibm1164: "ibm1164";
3390
+ readonly ibm256: "ibm256";
3391
+ readonly ibm273: "ibm273";
3392
+ readonly ibm274: "ibm274";
3393
+ readonly ibm275: "ibm275";
3394
+ readonly ibm277: "ibm277";
3395
+ readonly ibm278: "ibm278";
3396
+ readonly ibm280: "ibm280";
3397
+ readonly ibm281: "ibm281";
3398
+ readonly ibm284: "ibm284";
3399
+ readonly ibm285: "ibm285";
3400
+ readonly ibm290: "ibm290";
3401
+ readonly ibm297: "ibm297";
3402
+ readonly ibm420: "ibm420";
3403
+ readonly ibm423: "ibm423";
3404
+ readonly ibm424: "ibm424";
3405
+ readonly ibm437: "ibm437";
3406
+ readonly ibm500: "ibm500";
3407
+ readonly ibm850: "ibm850";
3408
+ readonly ibm851: "ibm851";
3409
+ readonly ibm852: "ibm852";
3410
+ readonly ibm855: "ibm855";
3411
+ readonly ibm856: "ibm856";
3412
+ readonly ibm857: "ibm857";
3413
+ readonly ibm858: "ibm858";
3414
+ readonly ibm860: "ibm860";
3415
+ readonly ibm861: "ibm861";
3416
+ readonly ibm862: "ibm862";
3417
+ readonly ibm863: "ibm863";
3418
+ readonly ibm864: "ibm864";
3419
+ readonly ibm865: "ibm865";
3420
+ readonly ibm866: "ibm866";
3421
+ readonly ibm866nav: "ibm866nav";
3422
+ readonly ibm868: "ibm868";
3423
+ readonly ibm869: "ibm869";
3424
+ readonly ibm870: "ibm870";
3425
+ readonly ibm871: "ibm871";
3426
+ readonly ibm874: "ibm874";
3427
+ readonly ibm875: "ibm875";
3428
+ readonly ibm880: "ibm880";
3429
+ readonly ibm891: "ibm891";
3430
+ readonly ibm903: "ibm903";
3431
+ readonly ibm904: "ibm904";
3432
+ readonly ibm905: "ibm905";
3433
+ readonly ibm918: "ibm918";
3434
+ readonly ibm922: "ibm922";
3435
+ readonly 'iec_p27-1': "iec_p27-1";
3436
+ readonly inis: "inis";
3437
+ readonly 'inis-8': "inis-8";
3438
+ readonly 'inis-cyrillic': "inis-cyrillic";
3439
+ readonly 'isiri-3342': "isiri-3342";
3440
+ readonly 'iso-8859-1': "iso-8859-1";
3441
+ readonly 'iso-8859-10': "iso-8859-10";
3442
+ readonly 'iso-8859-11': "iso-8859-11";
3443
+ readonly 'iso-8859-13': "iso-8859-13";
3444
+ readonly 'iso-8859-14': "iso-8859-14";
3445
+ readonly 'iso-8859-15': "iso-8859-15";
3446
+ readonly 'iso-8859-16': "iso-8859-16";
3447
+ readonly 'iso-8859-2': "iso-8859-2";
3448
+ readonly 'iso-8859-3': "iso-8859-3";
3449
+ readonly 'iso-8859-4': "iso-8859-4";
3450
+ readonly 'iso-8859-5': "iso-8859-5";
3451
+ readonly 'iso-8859-6': "iso-8859-6";
3452
+ readonly 'iso-8859-7': "iso-8859-7";
3453
+ readonly 'iso-8859-8': "iso-8859-8";
3454
+ readonly 'iso-8859-9': "iso-8859-9";
3455
+ readonly 'iso-8859-9e': "iso-8859-9e";
3456
+ readonly 'iso-ir-197': "iso-ir-197";
3457
+ readonly 'iso-ir-209': "iso-ir-209";
3458
+ readonly 'iso-ir-90': "iso-ir-90";
3459
+ readonly 'iso_10367-box': "iso_10367-box";
3460
+ readonly 'iso_11548-1': "iso_11548-1";
3461
+ readonly 'iso_2033-1983': "iso_2033-1983";
3462
+ readonly iso_5427: "iso_5427";
3463
+ readonly 'iso_5427-ext': "iso_5427-ext";
3464
+ readonly iso_5428: "iso_5428";
3465
+ readonly iso_6937: "iso_6937";
3466
+ readonly it: "it";
3467
+ readonly 'jis_c6220-1969-ro': "jis_c6220-1969-ro";
3468
+ readonly 'jis_c6229-1984-b': "jis_c6229-1984-b";
3469
+ readonly johab: "johab";
3470
+ readonly jus_ib1002: "jus_i.b1.002";
3471
+ readonly 'koi-8': "koi-8";
3472
+ readonly 'koi8-r': "koi8-r";
3473
+ readonly 'koi8-ru': "koi8-ru";
3474
+ readonly 'koi8-t': "koi8-t";
3475
+ readonly 'koi8-u': "koi8-u";
3476
+ readonly ksc5636: "ksc5636";
3477
+ readonly 'latin-greek': "latin-greek";
3478
+ readonly 'latin-greek-1': "latin-greek-1";
3479
+ readonly 'mac-centraleurope': "mac-centraleurope";
3480
+ readonly 'mac-cyrillic': "mac-cyrillic";
3481
+ readonly 'mac-is': "mac-is";
3482
+ readonly 'mac-sami': "mac-sami";
3483
+ readonly 'mac-uk': "mac-uk";
3484
+ readonly macintosh: "macintosh";
3485
+ readonly mik: "mik";
3486
+ readonly msz_77953: "msz_7795.3";
3487
+ readonly 'nats-dano': "nats-dano";
3488
+ readonly 'nats-sefi': "nats-sefi";
3489
+ readonly 'nc_nc00-10': "nc_nc00-10";
3490
+ readonly 'nf_z_62-010': "nf_z_62-010";
3491
+ readonly 'nf_z_62-010_1973': "nf_z_62-010_1973";
3492
+ readonly 'ns_4551-1': "ns_4551-1";
3493
+ readonly 'ns_4551-2': "ns_4551-2";
3494
+ readonly pt: "pt";
3495
+ readonly pt154: "pt154";
3496
+ readonly pt2: "pt2";
3497
+ readonly rk1048: "rk1048";
3498
+ readonly sen_850200_b: "sen_850200_b";
3499
+ readonly sen_850200_c: "sen_850200_c";
3500
+ readonly shift_jis: "shift_jis";
3501
+ readonly shift_jisx0213: "shift_jisx0213";
3502
+ readonly 't61-8bit': "t.61-8bit";
3503
+ readonly 'tcvn5712-1': "tcvn5712-1";
3504
+ readonly 'tis-620': "tis-620";
3505
+ readonly tscii: "tscii";
3506
+ readonly 'us-ascii': "us-ascii";
3507
+ readonly 'utf-7': "utf-7";
3508
+ readonly 'utf-8': "utf-8";
3509
+ readonly viscii: "viscii";
3510
+ readonly 'windows-1251': "windows-1251";
3511
+ readonly 'windows-1252': "windows-1252";
3512
+ readonly 'windows-31j': "windows-31j";
3513
+ };
3514
+ export declare type HostingEmailAutoresponderBody = {
3515
+ /** The message body of the autoresponse */
3516
+ body?: string;
3517
+ /** Which character set to use for the autorespond email content */
3518
+ charset?: HostingEmailAutoresponderBodyCharset;
3519
+ /** The domain of email address */
3520
+ domain?: string;
3521
+ /** The email address that sends auto-responses */
3522
+ email?: string;
3523
+ /** Username to appear in the response */
3524
+ from?: string;
3525
+ /** The number of hours to wait between responses to the same email address, or zero to always respond */
3526
+ interval?: number;
3527
+ /** When to enable the autoresponder format in UNIX timestamp */
3528
+ start?: string;
3529
+ /** When to disable the autoresponder format in UNIX timestamp */
3530
+ stop?: string;
3531
+ /** The subject line of the autoresponse email */
3532
+ subject?: string;
3533
+ };
3534
+ /**
3535
+ * Info of autoresponder
3536
+ */
3537
+ export declare type HostingEmailAutoresponderInfo200Autoresponder = {
3538
+ /** The message body of the autoresponse */
3539
+ body?: string;
3540
+ /** Which character set to use for the autorespond email content */
3541
+ charset?: string;
3542
+ /** Username to appear in the response */
3543
+ from?: string;
3544
+ /** The number of hours to wait between responses to the same email address, or zero to always respond */
3545
+ interval?: number;
3546
+ /** When to enable the autoresponder format in UNIX timestamp */
3547
+ start?: number;
3548
+ /** When to disable the autoresponder format in UNIX timestamp */
3549
+ stop?: number;
3550
+ /** The subject line of the autoresponse email */
3551
+ subject?: string;
3552
+ };
3553
+ export declare type HostingEmailAutoresponderInfo200 = {
3554
+ /** Info of autoresponder */
3555
+ autoresponder?: HostingEmailAutoresponderInfo200Autoresponder;
3556
+ };
3557
+ export declare type HostingEmailAutoresponderInfoParams = {
3558
+ /**
3559
+ * The email of the autoresponder
3560
+ */
3561
+ email?: string;
3562
+ };
3133
3563
  export declare type HostingEmailUpdate512 = {
3134
3564
  /** Customer error code */
3135
3565
  error?: string;
@@ -3942,23 +4372,6 @@ export declare type ActivityLog200 = {
3942
4372
  export declare type ActivityLogParams = {
3943
4373
  days?: number;
3944
4374
  };
3945
- export declare type HostingAccount200 = {
3946
- account_id?: string;
3947
- advanced?: boolean;
3948
- billing?: HostingAccount200Billing;
3949
- brand?: string;
3950
- id?: string;
3951
- panel?: string;
3952
- plan_key?: string;
3953
- platform?: string;
3954
- /** @nullable */
3955
- resources?: HostingAccount200Resources;
3956
- /** @nullable */
3957
- ssh_hostname?: string | null;
3958
- status?: string;
3959
- type?: string;
3960
- username?: string;
3961
- };
3962
4375
  export declare type HostingAccount200ResourcesWorkers = {
3963
4376
  /** @nullable */
3964
4377
  available?: number | null;
@@ -3976,6 +4389,31 @@ export declare type HostingAccount200ResourcesStorage = {
3976
4389
  /** @nullable */
3977
4390
  used?: number | null;
3978
4391
  };
4392
+ /**
4393
+ * @nullable
4394
+ */
4395
+ export declare type HostingAccount200Resources = {
4396
+ staging?: HostingAccount200ResourcesStaging;
4397
+ storage?: HostingAccount200ResourcesStorage;
4398
+ workers?: HostingAccount200ResourcesWorkers;
4399
+ } | null;
4400
+ export declare type HostingAccount200 = {
4401
+ account_id?: string;
4402
+ advanced?: boolean;
4403
+ billing?: HostingAccount200Billing;
4404
+ brand?: string;
4405
+ id?: string;
4406
+ panel?: string;
4407
+ plan_key?: string;
4408
+ platform?: string;
4409
+ /** @nullable */
4410
+ resources?: HostingAccount200Resources;
4411
+ /** @nullable */
4412
+ ssh_hostname?: string | null;
4413
+ status?: string;
4414
+ type?: string;
4415
+ username?: string;
4416
+ };
3979
4417
  export declare type HostingAccount200ResourcesStagingWorkers = {
3980
4418
  /** @nullable */
3981
4419
  available?: number | null;
@@ -3997,14 +4435,6 @@ export declare type HostingAccount200ResourcesStaging = {
3997
4435
  storage?: HostingAccount200ResourcesStagingStorage;
3998
4436
  workers?: HostingAccount200ResourcesStagingWorkers;
3999
4437
  };
4000
- /**
4001
- * @nullable
4002
- */
4003
- export declare type HostingAccount200Resources = {
4004
- staging?: HostingAccount200ResourcesStaging;
4005
- storage?: HostingAccount200ResourcesStorage;
4006
- workers?: HostingAccount200ResourcesWorkers;
4007
- } | null;
4008
4438
  export declare type HostingAccount200Billing = {
4009
4439
  prod_code?: string;
4010
4440
  product_name?: string;