@wix/domains 1.0.27 → 1.0.28
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.28",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@wix/domains_connected-domains": "1.0.12",
|
|
23
23
|
"@wix/domains_domain-availability": "1.0.7",
|
|
24
24
|
"@wix/domains_domain-dns": "1.0.7",
|
|
25
|
-
"@wix/domains_domain-suggestions": "1.0.
|
|
25
|
+
"@wix/domains_domain-suggestions": "1.0.13",
|
|
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": "26ef314dd0db9375569281cc2857742175fd35da32ff78540ebb8128"
|
|
52
52
|
}
|
|
@@ -2023,6 +2023,15 @@ interface SuggestDomainsRequest {
|
|
|
2023
2023
|
limit?: number | null;
|
|
2024
2024
|
/** Cursor paging options. */
|
|
2025
2025
|
paging?: CursorPaging;
|
|
2026
|
+
/**
|
|
2027
|
+
* Maximum length of domain name in suggestions.
|
|
2028
|
+
*
|
|
2029
|
+
* Min: `3`
|
|
2030
|
+
* Max: `30`
|
|
2031
|
+
* Default: `No max`
|
|
2032
|
+
* Note: max length is only for the SLD (not including TLD).
|
|
2033
|
+
*/
|
|
2034
|
+
maxLength?: number | null;
|
|
2026
2035
|
}
|
|
2027
2036
|
interface CursorPaging {
|
|
2028
2037
|
/**
|
|
@@ -2101,6 +2110,15 @@ interface SuggestDomainsOptions {
|
|
|
2101
2110
|
limit?: number | null;
|
|
2102
2111
|
/** Cursor paging options. */
|
|
2103
2112
|
paging?: CursorPaging;
|
|
2113
|
+
/**
|
|
2114
|
+
* Maximum length of domain name in suggestions.
|
|
2115
|
+
*
|
|
2116
|
+
* Min: `3`
|
|
2117
|
+
* Max: `30`
|
|
2118
|
+
* Default: `No max`
|
|
2119
|
+
* Note: max length is only for the SLD (not including TLD).
|
|
2120
|
+
*/
|
|
2121
|
+
maxLength?: number | null;
|
|
2104
2122
|
}
|
|
2105
2123
|
|
|
2106
2124
|
declare function suggestDomains$1(httpClient: HttpClient): SuggestDomainsSignature;
|
|
@@ -2023,6 +2023,15 @@ interface SuggestDomainsRequest {
|
|
|
2023
2023
|
limit?: number | null;
|
|
2024
2024
|
/** Cursor paging options. */
|
|
2025
2025
|
paging?: CursorPaging;
|
|
2026
|
+
/**
|
|
2027
|
+
* Maximum length of domain name in suggestions.
|
|
2028
|
+
*
|
|
2029
|
+
* Min: `3`
|
|
2030
|
+
* Max: `30`
|
|
2031
|
+
* Default: `No max`
|
|
2032
|
+
* Note: max length is only for the SLD (not including TLD).
|
|
2033
|
+
*/
|
|
2034
|
+
maxLength?: number | null;
|
|
2026
2035
|
}
|
|
2027
2036
|
interface CursorPaging {
|
|
2028
2037
|
/**
|
|
@@ -2101,6 +2110,15 @@ interface SuggestDomainsOptions {
|
|
|
2101
2110
|
limit?: number | null;
|
|
2102
2111
|
/** Cursor paging options. */
|
|
2103
2112
|
paging?: CursorPaging;
|
|
2113
|
+
/**
|
|
2114
|
+
* Maximum length of domain name in suggestions.
|
|
2115
|
+
*
|
|
2116
|
+
* Min: `3`
|
|
2117
|
+
* Max: `30`
|
|
2118
|
+
* Default: `No max`
|
|
2119
|
+
* Note: max length is only for the SLD (not including TLD).
|
|
2120
|
+
*/
|
|
2121
|
+
maxLength?: number | null;
|
|
2104
2122
|
}
|
|
2105
2123
|
|
|
2106
2124
|
declare function suggestDomains$1(httpClient: HttpClient): SuggestDomainsSignature;
|
|
@@ -2375,6 +2375,15 @@ interface SuggestDomainsRequest$1 {
|
|
|
2375
2375
|
limit?: number | null;
|
|
2376
2376
|
/** Cursor paging options. */
|
|
2377
2377
|
paging?: CursorPaging$1;
|
|
2378
|
+
/**
|
|
2379
|
+
* Maximum length of domain name in suggestions.
|
|
2380
|
+
*
|
|
2381
|
+
* Min: `3`
|
|
2382
|
+
* Max: `30`
|
|
2383
|
+
* Default: `No max`
|
|
2384
|
+
* Note: max length is only for the SLD (not including TLD).
|
|
2385
|
+
*/
|
|
2386
|
+
maxLength?: number | null;
|
|
2378
2387
|
}
|
|
2379
2388
|
interface CursorPaging$1 {
|
|
2380
2389
|
/**
|
|
@@ -2466,6 +2475,15 @@ interface SuggestDomainsRequest {
|
|
|
2466
2475
|
limit?: number | null;
|
|
2467
2476
|
/** Cursor paging options. */
|
|
2468
2477
|
paging?: CursorPaging;
|
|
2478
|
+
/**
|
|
2479
|
+
* Maximum length of domain name in suggestions.
|
|
2480
|
+
*
|
|
2481
|
+
* Min: `3`
|
|
2482
|
+
* Max: `30`
|
|
2483
|
+
* Default: `No max`
|
|
2484
|
+
* Note: max length is only for the SLD (not including TLD).
|
|
2485
|
+
*/
|
|
2486
|
+
maxLength?: number | null;
|
|
2469
2487
|
}
|
|
2470
2488
|
interface CursorPaging {
|
|
2471
2489
|
/**
|