@wix/domains 1.0.28 → 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
|
/**
|
|
@@ -2076,6 +2089,7 @@ interface Cursors {
|
|
|
2076
2089
|
}
|
|
2077
2090
|
interface DomainSuggestionNonNullableFields {
|
|
2078
2091
|
domain: string;
|
|
2092
|
+
premium: boolean;
|
|
2079
2093
|
}
|
|
2080
2094
|
interface SuggestDomainsResponseNonNullableFields {
|
|
2081
2095
|
suggestions: DomainSuggestionNonNullableFields[];
|
|
@@ -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
|
/**
|
|
@@ -2076,6 +2089,7 @@ interface Cursors {
|
|
|
2076
2089
|
}
|
|
2077
2090
|
interface DomainSuggestionNonNullableFields {
|
|
2078
2091
|
domain: string;
|
|
2092
|
+
premium: boolean;
|
|
2079
2093
|
}
|
|
2080
2094
|
interface SuggestDomainsResponseNonNullableFields {
|
|
2081
2095
|
suggestions: DomainSuggestionNonNullableFields[];
|
|
@@ -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
|
/**
|
|
@@ -2428,6 +2448,7 @@ interface Cursors$1 {
|
|
|
2428
2448
|
}
|
|
2429
2449
|
interface DomainSuggestionNonNullableFields$1 {
|
|
2430
2450
|
domain: string;
|
|
2451
|
+
premium: boolean;
|
|
2431
2452
|
}
|
|
2432
2453
|
interface SuggestDomainsResponseNonNullableFields$1 {
|
|
2433
2454
|
suggestions: DomainSuggestionNonNullableFields$1[];
|
|
@@ -2436,6 +2457,12 @@ interface SuggestDomainsResponseNonNullableFields$1 {
|
|
|
2436
2457
|
interface DomainSuggestion {
|
|
2437
2458
|
/** Suggested domain name including TLD. */
|
|
2438
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;
|
|
2439
2466
|
}
|
|
2440
2467
|
interface SuggestDomainsRequest {
|
|
2441
2468
|
/**
|
|
@@ -2528,6 +2555,7 @@ interface Cursors {
|
|
|
2528
2555
|
}
|
|
2529
2556
|
interface DomainSuggestionNonNullableFields {
|
|
2530
2557
|
domain: string;
|
|
2558
|
+
premium: boolean;
|
|
2531
2559
|
}
|
|
2532
2560
|
interface SuggestDomainsResponseNonNullableFields {
|
|
2533
2561
|
suggestions: DomainSuggestionNonNullableFields[];
|