@wix/domains 1.0.27 → 1.0.29
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.
|
|
3
|
+
"version": "1.0.29",
|
|
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.
|
|
23
|
+
"@wix/domains_domain-availability": "1.0.8",
|
|
24
24
|
"@wix/domains_domain-dns": "1.0.7",
|
|
25
|
-
"@wix/domains_domain-suggestions": "1.0.
|
|
25
|
+
"@wix/domains_domain-suggestions": "1.0.14",
|
|
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": "
|
|
51
|
+
"falconPackageHash": "047bb8b8cae34b6e7e22c24175ea8196abf2f0e9dfa269a0413b1726"
|
|
52
52
|
}
|
|
@@ -1925,6 +1925,12 @@ 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
|
+
*/
|
|
1933
|
+
premium?: boolean;
|
|
1928
1934
|
}
|
|
1929
1935
|
interface CheckDomainAvailabilityRequest {
|
|
1930
1936
|
/**
|
|
@@ -1943,6 +1949,7 @@ interface CheckDomainAvailabilityResponse {
|
|
|
1943
1949
|
interface DomainAvailabilityNonNullableFields {
|
|
1944
1950
|
domain: string;
|
|
1945
1951
|
available: boolean;
|
|
1952
|
+
premium: boolean;
|
|
1946
1953
|
}
|
|
1947
1954
|
interface CheckDomainAvailabilityResponseNonNullableFields {
|
|
1948
1955
|
availability?: DomainAvailabilityNonNullableFields;
|
|
@@ -1984,6 +1991,12 @@ declare namespace context$1 {
|
|
|
1984
1991
|
interface DomainSuggestion {
|
|
1985
1992
|
/** Suggested domain name including TLD. */
|
|
1986
1993
|
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
|
+
*/
|
|
1999
|
+
premium?: boolean;
|
|
1987
2000
|
}
|
|
1988
2001
|
interface SuggestDomainsRequest {
|
|
1989
2002
|
/**
|
|
@@ -2023,6 +2036,15 @@ interface SuggestDomainsRequest {
|
|
|
2023
2036
|
limit?: number | null;
|
|
2024
2037
|
/** Cursor paging options. */
|
|
2025
2038
|
paging?: CursorPaging;
|
|
2039
|
+
/**
|
|
2040
|
+
* Maximum length of domain name in suggestions.
|
|
2041
|
+
*
|
|
2042
|
+
* Min: `3`
|
|
2043
|
+
* Max: `30`
|
|
2044
|
+
* Default: `No max`
|
|
2045
|
+
* Note: max length is only for the SLD (not including TLD).
|
|
2046
|
+
*/
|
|
2047
|
+
maxLength?: number | null;
|
|
2026
2048
|
}
|
|
2027
2049
|
interface CursorPaging {
|
|
2028
2050
|
/**
|
|
@@ -2067,6 +2089,7 @@ interface Cursors {
|
|
|
2067
2089
|
}
|
|
2068
2090
|
interface DomainSuggestionNonNullableFields {
|
|
2069
2091
|
domain: string;
|
|
2092
|
+
premium: boolean;
|
|
2070
2093
|
}
|
|
2071
2094
|
interface SuggestDomainsResponseNonNullableFields {
|
|
2072
2095
|
suggestions: DomainSuggestionNonNullableFields[];
|
|
@@ -2101,6 +2124,15 @@ interface SuggestDomainsOptions {
|
|
|
2101
2124
|
limit?: number | null;
|
|
2102
2125
|
/** Cursor paging options. */
|
|
2103
2126
|
paging?: CursorPaging;
|
|
2127
|
+
/**
|
|
2128
|
+
* Maximum length of domain name in suggestions.
|
|
2129
|
+
*
|
|
2130
|
+
* Min: `3`
|
|
2131
|
+
* Max: `30`
|
|
2132
|
+
* Default: `No max`
|
|
2133
|
+
* Note: max length is only for the SLD (not including TLD).
|
|
2134
|
+
*/
|
|
2135
|
+
maxLength?: number | null;
|
|
2104
2136
|
}
|
|
2105
2137
|
|
|
2106
2138
|
declare function suggestDomains$1(httpClient: HttpClient): SuggestDomainsSignature;
|
|
@@ -1925,6 +1925,12 @@ 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
|
+
*/
|
|
1933
|
+
premium?: boolean;
|
|
1928
1934
|
}
|
|
1929
1935
|
interface CheckDomainAvailabilityRequest {
|
|
1930
1936
|
/**
|
|
@@ -1943,6 +1949,7 @@ interface CheckDomainAvailabilityResponse {
|
|
|
1943
1949
|
interface DomainAvailabilityNonNullableFields {
|
|
1944
1950
|
domain: string;
|
|
1945
1951
|
available: boolean;
|
|
1952
|
+
premium: boolean;
|
|
1946
1953
|
}
|
|
1947
1954
|
interface CheckDomainAvailabilityResponseNonNullableFields {
|
|
1948
1955
|
availability?: DomainAvailabilityNonNullableFields;
|
|
@@ -1984,6 +1991,12 @@ declare namespace index_d$1 {
|
|
|
1984
1991
|
interface DomainSuggestion {
|
|
1985
1992
|
/** Suggested domain name including TLD. */
|
|
1986
1993
|
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
|
+
*/
|
|
1999
|
+
premium?: boolean;
|
|
1987
2000
|
}
|
|
1988
2001
|
interface SuggestDomainsRequest {
|
|
1989
2002
|
/**
|
|
@@ -2023,6 +2036,15 @@ interface SuggestDomainsRequest {
|
|
|
2023
2036
|
limit?: number | null;
|
|
2024
2037
|
/** Cursor paging options. */
|
|
2025
2038
|
paging?: CursorPaging;
|
|
2039
|
+
/**
|
|
2040
|
+
* Maximum length of domain name in suggestions.
|
|
2041
|
+
*
|
|
2042
|
+
* Min: `3`
|
|
2043
|
+
* Max: `30`
|
|
2044
|
+
* Default: `No max`
|
|
2045
|
+
* Note: max length is only for the SLD (not including TLD).
|
|
2046
|
+
*/
|
|
2047
|
+
maxLength?: number | null;
|
|
2026
2048
|
}
|
|
2027
2049
|
interface CursorPaging {
|
|
2028
2050
|
/**
|
|
@@ -2067,6 +2089,7 @@ interface Cursors {
|
|
|
2067
2089
|
}
|
|
2068
2090
|
interface DomainSuggestionNonNullableFields {
|
|
2069
2091
|
domain: string;
|
|
2092
|
+
premium: boolean;
|
|
2070
2093
|
}
|
|
2071
2094
|
interface SuggestDomainsResponseNonNullableFields {
|
|
2072
2095
|
suggestions: DomainSuggestionNonNullableFields[];
|
|
@@ -2101,6 +2124,15 @@ interface SuggestDomainsOptions {
|
|
|
2101
2124
|
limit?: number | null;
|
|
2102
2125
|
/** Cursor paging options. */
|
|
2103
2126
|
paging?: CursorPaging;
|
|
2127
|
+
/**
|
|
2128
|
+
* Maximum length of domain name in suggestions.
|
|
2129
|
+
*
|
|
2130
|
+
* Min: `3`
|
|
2131
|
+
* Max: `30`
|
|
2132
|
+
* Default: `No max`
|
|
2133
|
+
* Note: max length is only for the SLD (not including TLD).
|
|
2134
|
+
*/
|
|
2135
|
+
maxLength?: number | null;
|
|
2104
2136
|
}
|
|
2105
2137
|
|
|
2106
2138
|
declare function suggestDomains$1(httpClient: HttpClient): SuggestDomainsSignature;
|
|
@@ -2261,6 +2261,12 @@ 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
|
+
*/
|
|
2269
|
+
premium?: boolean;
|
|
2264
2270
|
}
|
|
2265
2271
|
interface CheckDomainAvailabilityRequest$1 {
|
|
2266
2272
|
/**
|
|
@@ -2279,6 +2285,7 @@ interface CheckDomainAvailabilityResponse$1 {
|
|
|
2279
2285
|
interface DomainAvailabilityNonNullableFields$1 {
|
|
2280
2286
|
domain: string;
|
|
2281
2287
|
available: boolean;
|
|
2288
|
+
premium: boolean;
|
|
2282
2289
|
}
|
|
2283
2290
|
interface CheckDomainAvailabilityResponseNonNullableFields$1 {
|
|
2284
2291
|
availability?: DomainAvailabilityNonNullableFields$1;
|
|
@@ -2293,6 +2300,12 @@ interface DomainAvailability {
|
|
|
2293
2300
|
* when `false` is returned.
|
|
2294
2301
|
*/
|
|
2295
2302
|
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
|
+
*/
|
|
2308
|
+
premium?: boolean;
|
|
2296
2309
|
}
|
|
2297
2310
|
interface CheckDomainAvailabilityRequest {
|
|
2298
2311
|
/**
|
|
@@ -2311,6 +2324,7 @@ interface CheckDomainAvailabilityResponse {
|
|
|
2311
2324
|
interface DomainAvailabilityNonNullableFields {
|
|
2312
2325
|
domain: string;
|
|
2313
2326
|
available: boolean;
|
|
2327
|
+
premium: boolean;
|
|
2314
2328
|
}
|
|
2315
2329
|
interface CheckDomainAvailabilityResponseNonNullableFields {
|
|
2316
2330
|
availability?: DomainAvailabilityNonNullableFields;
|
|
@@ -2336,6 +2350,12 @@ declare namespace meta$1 {
|
|
|
2336
2350
|
interface DomainSuggestion$1 {
|
|
2337
2351
|
/** Suggested domain name including TLD. */
|
|
2338
2352
|
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
|
+
*/
|
|
2358
|
+
premium?: boolean;
|
|
2339
2359
|
}
|
|
2340
2360
|
interface SuggestDomainsRequest$1 {
|
|
2341
2361
|
/**
|
|
@@ -2375,6 +2395,15 @@ interface SuggestDomainsRequest$1 {
|
|
|
2375
2395
|
limit?: number | null;
|
|
2376
2396
|
/** Cursor paging options. */
|
|
2377
2397
|
paging?: CursorPaging$1;
|
|
2398
|
+
/**
|
|
2399
|
+
* Maximum length of domain name in suggestions.
|
|
2400
|
+
*
|
|
2401
|
+
* Min: `3`
|
|
2402
|
+
* Max: `30`
|
|
2403
|
+
* Default: `No max`
|
|
2404
|
+
* Note: max length is only for the SLD (not including TLD).
|
|
2405
|
+
*/
|
|
2406
|
+
maxLength?: number | null;
|
|
2378
2407
|
}
|
|
2379
2408
|
interface CursorPaging$1 {
|
|
2380
2409
|
/**
|
|
@@ -2419,6 +2448,7 @@ interface Cursors$1 {
|
|
|
2419
2448
|
}
|
|
2420
2449
|
interface DomainSuggestionNonNullableFields$1 {
|
|
2421
2450
|
domain: string;
|
|
2451
|
+
premium: boolean;
|
|
2422
2452
|
}
|
|
2423
2453
|
interface SuggestDomainsResponseNonNullableFields$1 {
|
|
2424
2454
|
suggestions: DomainSuggestionNonNullableFields$1[];
|
|
@@ -2427,6 +2457,12 @@ interface SuggestDomainsResponseNonNullableFields$1 {
|
|
|
2427
2457
|
interface DomainSuggestion {
|
|
2428
2458
|
/** Suggested domain name including TLD. */
|
|
2429
2459
|
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
|
+
*/
|
|
2465
|
+
premium?: boolean;
|
|
2430
2466
|
}
|
|
2431
2467
|
interface SuggestDomainsRequest {
|
|
2432
2468
|
/**
|
|
@@ -2466,6 +2502,15 @@ interface SuggestDomainsRequest {
|
|
|
2466
2502
|
limit?: number | null;
|
|
2467
2503
|
/** Cursor paging options. */
|
|
2468
2504
|
paging?: CursorPaging;
|
|
2505
|
+
/**
|
|
2506
|
+
* Maximum length of domain name in suggestions.
|
|
2507
|
+
*
|
|
2508
|
+
* Min: `3`
|
|
2509
|
+
* Max: `30`
|
|
2510
|
+
* Default: `No max`
|
|
2511
|
+
* Note: max length is only for the SLD (not including TLD).
|
|
2512
|
+
*/
|
|
2513
|
+
maxLength?: number | null;
|
|
2469
2514
|
}
|
|
2470
2515
|
interface CursorPaging {
|
|
2471
2516
|
/**
|
|
@@ -2510,6 +2555,7 @@ interface Cursors {
|
|
|
2510
2555
|
}
|
|
2511
2556
|
interface DomainSuggestionNonNullableFields {
|
|
2512
2557
|
domain: string;
|
|
2558
|
+
premium: boolean;
|
|
2513
2559
|
}
|
|
2514
2560
|
interface SuggestDomainsResponseNonNullableFields {
|
|
2515
2561
|
suggestions: DomainSuggestionNonNullableFields[];
|