@wix/domains 1.0.30 → 1.0.31

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wix/domains",
3
- "version": "1.0.30",
3
+ "version": "1.0.31",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/",
6
6
  "access": "public"
@@ -20,9 +20,9 @@
20
20
  "dependencies": {
21
21
  "@wix/domains_connected-domain-setup-info": "1.0.12",
22
22
  "@wix/domains_connected-domains": "1.0.12",
23
- "@wix/domains_domain-availability": "1.0.8",
23
+ "@wix/domains_domain-availability": "1.0.9",
24
24
  "@wix/domains_domain-dns": "1.0.7",
25
- "@wix/domains_domain-suggestions": "1.0.15",
25
+ "@wix/domains_domain-suggestions": "1.0.16",
26
26
  "@wix/domains_registered-domains": "1.0.10"
27
27
  },
28
28
  "devDependencies": {
@@ -48,5 +48,5 @@
48
48
  "fqdn": ""
49
49
  }
50
50
  },
51
- "falconPackageHash": "a027074b53b8e50d9e87dd02759cb897b15b466b2be39bff48a5a862"
51
+ "falconPackageHash": "ea04a064a71661badd9040ff13336104149874cab146c70d305b0eba"
52
52
  }
@@ -1925,11 +1925,7 @@ interface DomainAvailability {
1925
1925
  * when `false` is returned.
1926
1926
  */
1927
1927
  available?: boolean;
1928
- /**
1929
- * Indicates whether the domain is a premium domain. Premium domains often
1930
- * have higher prices due to their perceived value or demand. A value of
1931
- * `true` means the domain is classified as premium.
1932
- */
1928
+ /** Whether the domain has a higher price due to its perceived value or demand. */
1933
1929
  premium?: boolean;
1934
1930
  }
1935
1931
  interface CheckDomainAvailabilityRequest {
@@ -1991,11 +1987,7 @@ declare namespace context$1 {
1991
1987
  interface DomainSuggestion {
1992
1988
  /** Suggested domain name including TLD. */
1993
1989
  domain?: string;
1994
- /**
1995
- * Indicates whether the domain is a premium domain. Premium domains often
1996
- * have higher prices due to their perceived value or demand. A value of
1997
- * `true` means the domain is classified as premium.
1998
- */
1990
+ /** Whether the domain has a higher price due to its perceived value or demand. */
1999
1991
  premium?: boolean;
2000
1992
  }
2001
1993
  interface SuggestDomainsRequest {
@@ -2018,18 +2010,18 @@ interface SuggestDomainsRequest {
2018
2010
  */
2019
2011
  tlds?: string[];
2020
2012
  /**
2021
- * Number of domain suggestions to return.
2013
+ * Number of domain suggestions to return. __Deprecated__: This field will be
2014
+ * removed on March 1, 2025. Use `paging.limit` instead.
2022
2015
  *
2023
2016
  * Min: `1`
2024
2017
  * Max: `20`
2025
2018
  * Default: `10`
2026
- * Note: limit field is deprecated from Aug 1, 2024, use `paging.limit` instead.
2027
- * @deprecated Number of domain suggestions to return.
2019
+ * @deprecated Number of domain suggestions to return. __Deprecated__: This field will be
2020
+ * removed on March 1, 2025. Use `paging.limit` instead.
2028
2021
  *
2029
2022
  * Min: `1`
2030
2023
  * Max: `20`
2031
2024
  * Default: `10`
2032
- * Note: limit field is deprecated from Aug 1, 2024, use `paging.limit` instead.
2033
2025
  * @replacedBy paging.limit
2034
2026
  * @targetRemovalDate 2025-03-01
2035
2027
  */
@@ -2037,18 +2029,17 @@ interface SuggestDomainsRequest {
2037
2029
  /** Cursor paging options. */
2038
2030
  paging?: CursorPaging;
2039
2031
  /**
2040
- * Maximum length of domain name in suggestions.
2032
+ * Maximum number of characters for the domain name, excluding the TLD.
2041
2033
  *
2042
2034
  * Min: `3`
2043
2035
  * Max: `63`
2044
- * Default: `No max`
2045
- * Note: max length is only for the SLD (not including TLD).
2036
+ * Default: `63`
2046
2037
  */
2047
2038
  maxLength?: number | null;
2048
2039
  }
2049
2040
  interface CursorPaging {
2050
2041
  /**
2051
- * Number of domains to load.
2042
+ * Maximum number of domains to return in the results.
2052
2043
  *
2053
2044
  * Min: `0`
2054
2045
  * Max: `20`
@@ -2106,18 +2097,18 @@ interface SuggestDomainsOptions {
2106
2097
  */
2107
2098
  tlds?: string[];
2108
2099
  /**
2109
- * Number of domain suggestions to return.
2100
+ * Number of domain suggestions to return. __Deprecated__: This field will be
2101
+ * removed on March 1, 2025. Use `paging.limit` instead.
2110
2102
  *
2111
2103
  * Min: `1`
2112
2104
  * Max: `20`
2113
2105
  * Default: `10`
2114
- * Note: limit field is deprecated from Aug 1, 2024, use `paging.limit` instead.
2115
- * @deprecated Number of domain suggestions to return.
2106
+ * @deprecated Number of domain suggestions to return. __Deprecated__: This field will be
2107
+ * removed on March 1, 2025. Use `paging.limit` instead.
2116
2108
  *
2117
2109
  * Min: `1`
2118
2110
  * Max: `20`
2119
2111
  * Default: `10`
2120
- * Note: limit field is deprecated from Aug 1, 2024, use `paging.limit` instead.
2121
2112
  * @replacedBy paging.limit
2122
2113
  * @targetRemovalDate 2025-03-01
2123
2114
  */
@@ -2125,12 +2116,11 @@ interface SuggestDomainsOptions {
2125
2116
  /** Cursor paging options. */
2126
2117
  paging?: CursorPaging;
2127
2118
  /**
2128
- * Maximum length of domain name in suggestions.
2119
+ * Maximum number of characters for the domain name, excluding the TLD.
2129
2120
  *
2130
2121
  * Min: `3`
2131
2122
  * Max: `63`
2132
- * Default: `No max`
2133
- * Note: max length is only for the SLD (not including TLD).
2123
+ * Default: `63`
2134
2124
  */
2135
2125
  maxLength?: number | null;
2136
2126
  }
@@ -1925,11 +1925,7 @@ interface DomainAvailability {
1925
1925
  * when `false` is returned.
1926
1926
  */
1927
1927
  available?: boolean;
1928
- /**
1929
- * Indicates whether the domain is a premium domain. Premium domains often
1930
- * have higher prices due to their perceived value or demand. A value of
1931
- * `true` means the domain is classified as premium.
1932
- */
1928
+ /** Whether the domain has a higher price due to its perceived value or demand. */
1933
1929
  premium?: boolean;
1934
1930
  }
1935
1931
  interface CheckDomainAvailabilityRequest {
@@ -1991,11 +1987,7 @@ declare namespace index_d$1 {
1991
1987
  interface DomainSuggestion {
1992
1988
  /** Suggested domain name including TLD. */
1993
1989
  domain?: string;
1994
- /**
1995
- * Indicates whether the domain is a premium domain. Premium domains often
1996
- * have higher prices due to their perceived value or demand. A value of
1997
- * `true` means the domain is classified as premium.
1998
- */
1990
+ /** Whether the domain has a higher price due to its perceived value or demand. */
1999
1991
  premium?: boolean;
2000
1992
  }
2001
1993
  interface SuggestDomainsRequest {
@@ -2018,18 +2010,18 @@ interface SuggestDomainsRequest {
2018
2010
  */
2019
2011
  tlds?: string[];
2020
2012
  /**
2021
- * Number of domain suggestions to return.
2013
+ * Number of domain suggestions to return. __Deprecated__: This field will be
2014
+ * removed on March 1, 2025. Use `paging.limit` instead.
2022
2015
  *
2023
2016
  * Min: `1`
2024
2017
  * Max: `20`
2025
2018
  * Default: `10`
2026
- * Note: limit field is deprecated from Aug 1, 2024, use `paging.limit` instead.
2027
- * @deprecated Number of domain suggestions to return.
2019
+ * @deprecated Number of domain suggestions to return. __Deprecated__: This field will be
2020
+ * removed on March 1, 2025. Use `paging.limit` instead.
2028
2021
  *
2029
2022
  * Min: `1`
2030
2023
  * Max: `20`
2031
2024
  * Default: `10`
2032
- * Note: limit field is deprecated from Aug 1, 2024, use `paging.limit` instead.
2033
2025
  * @replacedBy paging.limit
2034
2026
  * @targetRemovalDate 2025-03-01
2035
2027
  */
@@ -2037,18 +2029,17 @@ interface SuggestDomainsRequest {
2037
2029
  /** Cursor paging options. */
2038
2030
  paging?: CursorPaging;
2039
2031
  /**
2040
- * Maximum length of domain name in suggestions.
2032
+ * Maximum number of characters for the domain name, excluding the TLD.
2041
2033
  *
2042
2034
  * Min: `3`
2043
2035
  * Max: `63`
2044
- * Default: `No max`
2045
- * Note: max length is only for the SLD (not including TLD).
2036
+ * Default: `63`
2046
2037
  */
2047
2038
  maxLength?: number | null;
2048
2039
  }
2049
2040
  interface CursorPaging {
2050
2041
  /**
2051
- * Number of domains to load.
2042
+ * Maximum number of domains to return in the results.
2052
2043
  *
2053
2044
  * Min: `0`
2054
2045
  * Max: `20`
@@ -2106,18 +2097,18 @@ interface SuggestDomainsOptions {
2106
2097
  */
2107
2098
  tlds?: string[];
2108
2099
  /**
2109
- * Number of domain suggestions to return.
2100
+ * Number of domain suggestions to return. __Deprecated__: This field will be
2101
+ * removed on March 1, 2025. Use `paging.limit` instead.
2110
2102
  *
2111
2103
  * Min: `1`
2112
2104
  * Max: `20`
2113
2105
  * Default: `10`
2114
- * Note: limit field is deprecated from Aug 1, 2024, use `paging.limit` instead.
2115
- * @deprecated Number of domain suggestions to return.
2106
+ * @deprecated Number of domain suggestions to return. __Deprecated__: This field will be
2107
+ * removed on March 1, 2025. Use `paging.limit` instead.
2116
2108
  *
2117
2109
  * Min: `1`
2118
2110
  * Max: `20`
2119
2111
  * Default: `10`
2120
- * Note: limit field is deprecated from Aug 1, 2024, use `paging.limit` instead.
2121
2112
  * @replacedBy paging.limit
2122
2113
  * @targetRemovalDate 2025-03-01
2123
2114
  */
@@ -2125,12 +2116,11 @@ interface SuggestDomainsOptions {
2125
2116
  /** Cursor paging options. */
2126
2117
  paging?: CursorPaging;
2127
2118
  /**
2128
- * Maximum length of domain name in suggestions.
2119
+ * Maximum number of characters for the domain name, excluding the TLD.
2129
2120
  *
2130
2121
  * Min: `3`
2131
2122
  * Max: `63`
2132
- * Default: `No max`
2133
- * Note: max length is only for the SLD (not including TLD).
2123
+ * Default: `63`
2134
2124
  */
2135
2125
  maxLength?: number | null;
2136
2126
  }
@@ -2261,11 +2261,7 @@ interface DomainAvailability$1 {
2261
2261
  * when `false` is returned.
2262
2262
  */
2263
2263
  available?: boolean;
2264
- /**
2265
- * Indicates whether the domain is a premium domain. Premium domains often
2266
- * have higher prices due to their perceived value or demand. A value of
2267
- * `true` means the domain is classified as premium.
2268
- */
2264
+ /** Whether the domain has a higher price due to its perceived value or demand. */
2269
2265
  premium?: boolean;
2270
2266
  }
2271
2267
  interface CheckDomainAvailabilityRequest$1 {
@@ -2300,11 +2296,7 @@ interface DomainAvailability {
2300
2296
  * when `false` is returned.
2301
2297
  */
2302
2298
  available?: boolean;
2303
- /**
2304
- * Indicates whether the domain is a premium domain. Premium domains often
2305
- * have higher prices due to their perceived value or demand. A value of
2306
- * `true` means the domain is classified as premium.
2307
- */
2299
+ /** Whether the domain has a higher price due to its perceived value or demand. */
2308
2300
  premium?: boolean;
2309
2301
  }
2310
2302
  interface CheckDomainAvailabilityRequest {
@@ -2350,11 +2342,7 @@ declare namespace meta$1 {
2350
2342
  interface DomainSuggestion$1 {
2351
2343
  /** Suggested domain name including TLD. */
2352
2344
  domain?: string;
2353
- /**
2354
- * Indicates whether the domain is a premium domain. Premium domains often
2355
- * have higher prices due to their perceived value or demand. A value of
2356
- * `true` means the domain is classified as premium.
2357
- */
2345
+ /** Whether the domain has a higher price due to its perceived value or demand. */
2358
2346
  premium?: boolean;
2359
2347
  }
2360
2348
  interface SuggestDomainsRequest$1 {
@@ -2377,18 +2365,18 @@ interface SuggestDomainsRequest$1 {
2377
2365
  */
2378
2366
  tlds?: string[];
2379
2367
  /**
2380
- * Number of domain suggestions to return.
2368
+ * Number of domain suggestions to return. __Deprecated__: This field will be
2369
+ * removed on March 1, 2025. Use `paging.limit` instead.
2381
2370
  *
2382
2371
  * Min: `1`
2383
2372
  * Max: `20`
2384
2373
  * Default: `10`
2385
- * Note: limit field is deprecated from Aug 1, 2024, use `paging.limit` instead.
2386
- * @deprecated Number of domain suggestions to return.
2374
+ * @deprecated Number of domain suggestions to return. __Deprecated__: This field will be
2375
+ * removed on March 1, 2025. Use `paging.limit` instead.
2387
2376
  *
2388
2377
  * Min: `1`
2389
2378
  * Max: `20`
2390
2379
  * Default: `10`
2391
- * Note: limit field is deprecated from Aug 1, 2024, use `paging.limit` instead.
2392
2380
  * @replacedBy paging.limit
2393
2381
  * @targetRemovalDate 2025-03-01
2394
2382
  */
@@ -2396,18 +2384,17 @@ interface SuggestDomainsRequest$1 {
2396
2384
  /** Cursor paging options. */
2397
2385
  paging?: CursorPaging$1;
2398
2386
  /**
2399
- * Maximum length of domain name in suggestions.
2387
+ * Maximum number of characters for the domain name, excluding the TLD.
2400
2388
  *
2401
2389
  * Min: `3`
2402
2390
  * Max: `63`
2403
- * Default: `No max`
2404
- * Note: max length is only for the SLD (not including TLD).
2391
+ * Default: `63`
2405
2392
  */
2406
2393
  maxLength?: number | null;
2407
2394
  }
2408
2395
  interface CursorPaging$1 {
2409
2396
  /**
2410
- * Number of domains to load.
2397
+ * Maximum number of domains to return in the results.
2411
2398
  *
2412
2399
  * Min: `0`
2413
2400
  * Max: `20`
@@ -2457,11 +2444,7 @@ interface SuggestDomainsResponseNonNullableFields$1 {
2457
2444
  interface DomainSuggestion {
2458
2445
  /** Suggested domain name including TLD. */
2459
2446
  domain?: string;
2460
- /**
2461
- * Indicates whether the domain is a premium domain. Premium domains often
2462
- * have higher prices due to their perceived value or demand. A value of
2463
- * `true` means the domain is classified as premium.
2464
- */
2447
+ /** Whether the domain has a higher price due to its perceived value or demand. */
2465
2448
  premium?: boolean;
2466
2449
  }
2467
2450
  interface SuggestDomainsRequest {
@@ -2484,18 +2467,18 @@ interface SuggestDomainsRequest {
2484
2467
  */
2485
2468
  tlds?: string[];
2486
2469
  /**
2487
- * Number of domain suggestions to return.
2470
+ * Number of domain suggestions to return. __Deprecated__: This field will be
2471
+ * removed on March 1, 2025. Use `paging.limit` instead.
2488
2472
  *
2489
2473
  * Min: `1`
2490
2474
  * Max: `20`
2491
2475
  * Default: `10`
2492
- * Note: limit field is deprecated from Aug 1, 2024, use `paging.limit` instead.
2493
- * @deprecated Number of domain suggestions to return.
2476
+ * @deprecated Number of domain suggestions to return. __Deprecated__: This field will be
2477
+ * removed on March 1, 2025. Use `paging.limit` instead.
2494
2478
  *
2495
2479
  * Min: `1`
2496
2480
  * Max: `20`
2497
2481
  * Default: `10`
2498
- * Note: limit field is deprecated from Aug 1, 2024, use `paging.limit` instead.
2499
2482
  * @replacedBy paging.limit
2500
2483
  * @targetRemovalDate 2025-03-01
2501
2484
  */
@@ -2503,18 +2486,17 @@ interface SuggestDomainsRequest {
2503
2486
  /** Cursor paging options. */
2504
2487
  paging?: CursorPaging;
2505
2488
  /**
2506
- * Maximum length of domain name in suggestions.
2489
+ * Maximum number of characters for the domain name, excluding the TLD.
2507
2490
  *
2508
2491
  * Min: `3`
2509
2492
  * Max: `63`
2510
- * Default: `No max`
2511
- * Note: max length is only for the SLD (not including TLD).
2493
+ * Default: `63`
2512
2494
  */
2513
2495
  maxLength?: number | null;
2514
2496
  }
2515
2497
  interface CursorPaging {
2516
2498
  /**
2517
- * Number of domains to load.
2499
+ * Maximum number of domains to return in the results.
2518
2500
  *
2519
2501
  * Min: `0`
2520
2502
  * Max: `20`