@wix/auto_sdk_domains_connected-domain-setup-info 1.0.1 → 1.0.2
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/build/cjs/src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.d.ts +36 -8
- package/build/cjs/src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.js.map +1 -1
- package/build/cjs/src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.d.ts +36 -8
- package/build/cjs/src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js.map +1 -1
- package/build/es/src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.d.ts +36 -8
- package/build/es/src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.js.map +1 -1
- package/build/es/src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.d.ts +36 -8
- package/build/es/src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js.map +1 -1
- package/build/internal/cjs/src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.d.ts +36 -8
- package/build/internal/cjs/src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.js.map +1 -1
- package/build/internal/cjs/src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.d.ts +36 -8
- package/build/internal/cjs/src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js.map +1 -1
- package/build/internal/es/src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.d.ts +36 -8
- package/build/internal/es/src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.js.map +1 -1
- package/build/internal/es/src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.d.ts +36 -8
- package/build/internal/es/src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js.map +1 -1
- package/package.json +2 -2
|
@@ -20,7 +20,10 @@ export interface ConnectedDomainSetupInfo extends ConnectedDomainSetupInfoDnsRec
|
|
|
20
20
|
* @readonly
|
|
21
21
|
*/
|
|
22
22
|
subdomainRecords?: SubdomainRecords;
|
|
23
|
-
/**
|
|
23
|
+
/**
|
|
24
|
+
* ID of the connected domain. Identical to the domain name including TLD.
|
|
25
|
+
* @format HOSTNAME
|
|
26
|
+
*/
|
|
24
27
|
connectedDomainId?: string;
|
|
25
28
|
/**
|
|
26
29
|
* Information about the external domain registrar including current name
|
|
@@ -74,11 +77,18 @@ export interface NameserverRecord {
|
|
|
74
77
|
nsRecord?: NsRecord;
|
|
75
78
|
}
|
|
76
79
|
export interface NsRecord {
|
|
77
|
-
/**
|
|
80
|
+
/**
|
|
81
|
+
* Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.
|
|
82
|
+
* @format HOSTNAME
|
|
83
|
+
*/
|
|
78
84
|
hostName?: string;
|
|
79
85
|
/** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */
|
|
80
86
|
ttl?: number;
|
|
81
|
-
/**
|
|
87
|
+
/**
|
|
88
|
+
* DNS record values.
|
|
89
|
+
* @minSize 1
|
|
90
|
+
* @maxSize 10
|
|
91
|
+
*/
|
|
82
92
|
values?: string[];
|
|
83
93
|
}
|
|
84
94
|
/** Information about domains connected by pointing. */
|
|
@@ -95,15 +105,25 @@ export interface PointingRecords {
|
|
|
95
105
|
cnameRecord?: CnameRecord;
|
|
96
106
|
}
|
|
97
107
|
export interface ARecord {
|
|
98
|
-
/**
|
|
108
|
+
/**
|
|
109
|
+
* Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.
|
|
110
|
+
* @format HOSTNAME
|
|
111
|
+
*/
|
|
99
112
|
hostName?: string;
|
|
100
113
|
/** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */
|
|
101
114
|
ttl?: number;
|
|
102
|
-
/**
|
|
115
|
+
/**
|
|
116
|
+
* DNS record values.
|
|
117
|
+
* @minSize 1
|
|
118
|
+
* @maxSize 10
|
|
119
|
+
*/
|
|
103
120
|
values?: string[];
|
|
104
121
|
}
|
|
105
122
|
export interface CnameRecord {
|
|
106
|
-
/**
|
|
123
|
+
/**
|
|
124
|
+
* Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.
|
|
125
|
+
* @format HOSTNAME
|
|
126
|
+
*/
|
|
107
127
|
hostName?: string;
|
|
108
128
|
/** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */
|
|
109
129
|
ttl?: number;
|
|
@@ -115,11 +135,15 @@ export interface SubdomainRecords {
|
|
|
115
135
|
/**
|
|
116
136
|
* [Canonical Name records](https://en.wikipedia.org/wiki/CNAME_record).
|
|
117
137
|
* @readonly
|
|
138
|
+
* @maxSize 2
|
|
118
139
|
*/
|
|
119
140
|
cnameRecords?: CnameRecord[];
|
|
120
141
|
}
|
|
121
142
|
export interface GetSetupInfoRequest {
|
|
122
|
-
/**
|
|
143
|
+
/**
|
|
144
|
+
* Domain name including TLD
|
|
145
|
+
* @format HOSTNAME
|
|
146
|
+
*/
|
|
123
147
|
domain?: string;
|
|
124
148
|
/**
|
|
125
149
|
* How the domain should be to connected the Wix site.
|
|
@@ -148,7 +172,10 @@ export interface GetSetupInfoResponse {
|
|
|
148
172
|
domainSetupInfo?: ConnectedDomainSetupInfo;
|
|
149
173
|
}
|
|
150
174
|
export interface PreCreateConnectedDomainRequest {
|
|
151
|
-
/**
|
|
175
|
+
/**
|
|
176
|
+
* Domain name including TLD
|
|
177
|
+
* @format HOSTNAME
|
|
178
|
+
*/
|
|
152
179
|
domain?: string;
|
|
153
180
|
}
|
|
154
181
|
export interface PreCreateConnectedDomainResponse {
|
|
@@ -157,6 +184,7 @@ export interface GetConnectedDomainSetupInfoRequest {
|
|
|
157
184
|
/**
|
|
158
185
|
* ID of the connected domain to retrieve setup information for.
|
|
159
186
|
* Identical to the domain name including TLD.
|
|
187
|
+
* @format HOSTNAME
|
|
160
188
|
*/
|
|
161
189
|
connectedDomainId: string;
|
|
162
190
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.js","sourceRoot":"","sources":["../../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.js","sourceRoot":"","sources":["../../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.ts"],"names":[],"mappings":";;;AA0KA,IAAY,cASX;AATD,WAAY,cAAc;IACxB,yDAAyD;IACzD,qEAAmD,CAAA;IACnD,+EAA+E;IAC/E,uCAAqB,CAAA;IACrB,2EAA2E;IAC3E,6CAA2B,CAAA;IAC3B,iDAAiD;IACjD,mCAAiB,CAAA;AACnB,CAAC,EATW,cAAc,8BAAd,cAAc,QASzB"}
|
|
@@ -20,7 +20,10 @@ export interface ConnectedDomainSetupInfo extends ConnectedDomainSetupInfoDnsRec
|
|
|
20
20
|
* @readonly
|
|
21
21
|
*/
|
|
22
22
|
subdomainRecords?: SubdomainRecords;
|
|
23
|
-
/**
|
|
23
|
+
/**
|
|
24
|
+
* ID of the connected domain. Identical to the domain name including TLD.
|
|
25
|
+
* @format HOSTNAME
|
|
26
|
+
*/
|
|
24
27
|
connectedDomainId?: string;
|
|
25
28
|
/**
|
|
26
29
|
* Information about the external domain registrar including current name
|
|
@@ -74,11 +77,18 @@ export interface NameserverRecord {
|
|
|
74
77
|
nsRecord?: NsRecord;
|
|
75
78
|
}
|
|
76
79
|
export interface NsRecord {
|
|
77
|
-
/**
|
|
80
|
+
/**
|
|
81
|
+
* Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.
|
|
82
|
+
* @format HOSTNAME
|
|
83
|
+
*/
|
|
78
84
|
hostName?: string;
|
|
79
85
|
/** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */
|
|
80
86
|
ttl?: number;
|
|
81
|
-
/**
|
|
87
|
+
/**
|
|
88
|
+
* DNS record values.
|
|
89
|
+
* @minSize 1
|
|
90
|
+
* @maxSize 10
|
|
91
|
+
*/
|
|
82
92
|
values?: string[];
|
|
83
93
|
}
|
|
84
94
|
/** Information about domains connected by pointing. */
|
|
@@ -95,15 +105,25 @@ export interface PointingRecords {
|
|
|
95
105
|
cnameRecord?: CnameRecord;
|
|
96
106
|
}
|
|
97
107
|
export interface ARecord {
|
|
98
|
-
/**
|
|
108
|
+
/**
|
|
109
|
+
* Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.
|
|
110
|
+
* @format HOSTNAME
|
|
111
|
+
*/
|
|
99
112
|
hostName?: string;
|
|
100
113
|
/** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */
|
|
101
114
|
ttl?: number;
|
|
102
|
-
/**
|
|
115
|
+
/**
|
|
116
|
+
* DNS record values.
|
|
117
|
+
* @minSize 1
|
|
118
|
+
* @maxSize 10
|
|
119
|
+
*/
|
|
103
120
|
values?: string[];
|
|
104
121
|
}
|
|
105
122
|
export interface CnameRecord {
|
|
106
|
-
/**
|
|
123
|
+
/**
|
|
124
|
+
* Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.
|
|
125
|
+
* @format HOSTNAME
|
|
126
|
+
*/
|
|
107
127
|
hostName?: string;
|
|
108
128
|
/** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */
|
|
109
129
|
ttl?: number;
|
|
@@ -115,11 +135,15 @@ export interface SubdomainRecords {
|
|
|
115
135
|
/**
|
|
116
136
|
* [Canonical Name records](https://en.wikipedia.org/wiki/CNAME_record).
|
|
117
137
|
* @readonly
|
|
138
|
+
* @maxSize 2
|
|
118
139
|
*/
|
|
119
140
|
cnameRecords?: CnameRecord[];
|
|
120
141
|
}
|
|
121
142
|
export interface GetSetupInfoRequest {
|
|
122
|
-
/**
|
|
143
|
+
/**
|
|
144
|
+
* Domain name including TLD
|
|
145
|
+
* @format HOSTNAME
|
|
146
|
+
*/
|
|
123
147
|
domain?: string;
|
|
124
148
|
/**
|
|
125
149
|
* How the domain should be to connected the Wix site.
|
|
@@ -148,7 +172,10 @@ export interface GetSetupInfoResponse {
|
|
|
148
172
|
domainSetupInfo?: ConnectedDomainSetupInfo;
|
|
149
173
|
}
|
|
150
174
|
export interface PreCreateConnectedDomainRequest {
|
|
151
|
-
/**
|
|
175
|
+
/**
|
|
176
|
+
* Domain name including TLD
|
|
177
|
+
* @format HOSTNAME
|
|
178
|
+
*/
|
|
152
179
|
domain?: string;
|
|
153
180
|
}
|
|
154
181
|
export interface PreCreateConnectedDomainResponse {
|
|
@@ -157,6 +184,7 @@ export interface GetConnectedDomainSetupInfoRequest {
|
|
|
157
184
|
/**
|
|
158
185
|
* ID of the connected domain to retrieve setup information for.
|
|
159
186
|
* Identical to the domain name including TLD.
|
|
187
|
+
* @format HOSTNAME
|
|
160
188
|
*/
|
|
161
189
|
connectedDomainId: string;
|
|
162
190
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js","sourceRoot":"","sources":["../../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,sEAAuF;AACvF,oFAGiD;AAEjD,4KAA8J;
|
|
1
|
+
{"version":3,"file":"premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js","sourceRoot":"","sources":["../../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,sEAAuF;AACvF,oFAGiD;AAEjD,4KAA8J;AA4K9J,IAAY,cASX;AATD,WAAY,cAAc;IACxB,yDAAyD;IACzD,qEAAmD,CAAA;IACnD,+EAA+E;IAC/E,uCAAqB,CAAA;IACrB,2EAA2E;IAC3E,6CAA2B,CAAA;IAC3B,iDAAiD;IACjD,mCAAiB,CAAA;AACnB,CAAC,EATW,cAAc,8BAAd,cAAc,QASzB;AA8ED;;;;;;;;;;;;;;GAcG;AACI,KAAK,UAAU,2BAA2B,CAC/C,iBAAyB;IAIzB,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,MAAM,OAAO,GAAG,IAAA,8DAAqC,EAAC;QACpD,iBAAiB,EAAE,iBAAiB;KACrC,CAAC,CAAC;IAEH,MAAM,OAAO,GACX,qDAAqD,CAAC,2BAA2B,CAC/E,OAAO,CACR,CAAC;IAEJ,WAAW,EAAE,UAAU,EAAE,EAAE,CAAC;IAC5B,IAAI,CAAC;QACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QACjD,WAAW,EAAE,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;QAEjC,OAAO,IAAA,gEAAuC,EAAC,MAAM,CAAC,IAAI,CAAC;YACzD,EAAE,wBAAyB,CAAC;IAChC,CAAC;IAAC,OAAO,GAAQ,EAAE,CAAC;QAClB,MAAM,gBAAgB,GAAG,IAAA,gCAAiB,EACxC,GAAG,EACH;YACE,sBAAsB,EAAE,EAAE;YAC1B,wBAAwB,EAAE,EAAE,iBAAiB,EAAE,MAAM,EAAE;YACvD,uBAAuB,EAAE,KAAK;SAC/B,EACD,CAAC,mBAAmB,CAAC,CACtB,CAAC;QACF,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;QAE5B,MAAM,gBAAgB,CAAC;IACzB,CAAC;AACH,CAAC;AAzCD,kEAyCC"}
|
|
@@ -20,7 +20,10 @@ export interface ConnectedDomainSetupInfo extends ConnectedDomainSetupInfoDnsRec
|
|
|
20
20
|
* @readonly
|
|
21
21
|
*/
|
|
22
22
|
subdomainRecords?: SubdomainRecords;
|
|
23
|
-
/**
|
|
23
|
+
/**
|
|
24
|
+
* ID of the connected domain. Identical to the domain name including TLD.
|
|
25
|
+
* @format HOSTNAME
|
|
26
|
+
*/
|
|
24
27
|
connectedDomainId?: string;
|
|
25
28
|
/**
|
|
26
29
|
* Information about the external domain registrar including current name
|
|
@@ -74,11 +77,18 @@ export interface NameserverRecord {
|
|
|
74
77
|
nsRecord?: NsRecord;
|
|
75
78
|
}
|
|
76
79
|
export interface NsRecord {
|
|
77
|
-
/**
|
|
80
|
+
/**
|
|
81
|
+
* Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.
|
|
82
|
+
* @format HOSTNAME
|
|
83
|
+
*/
|
|
78
84
|
hostName?: string;
|
|
79
85
|
/** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */
|
|
80
86
|
ttl?: number;
|
|
81
|
-
/**
|
|
87
|
+
/**
|
|
88
|
+
* DNS record values.
|
|
89
|
+
* @minSize 1
|
|
90
|
+
* @maxSize 10
|
|
91
|
+
*/
|
|
82
92
|
values?: string[];
|
|
83
93
|
}
|
|
84
94
|
/** Information about domains connected by pointing. */
|
|
@@ -95,15 +105,25 @@ export interface PointingRecords {
|
|
|
95
105
|
cnameRecord?: CnameRecord;
|
|
96
106
|
}
|
|
97
107
|
export interface ARecord {
|
|
98
|
-
/**
|
|
108
|
+
/**
|
|
109
|
+
* Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.
|
|
110
|
+
* @format HOSTNAME
|
|
111
|
+
*/
|
|
99
112
|
hostName?: string;
|
|
100
113
|
/** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */
|
|
101
114
|
ttl?: number;
|
|
102
|
-
/**
|
|
115
|
+
/**
|
|
116
|
+
* DNS record values.
|
|
117
|
+
* @minSize 1
|
|
118
|
+
* @maxSize 10
|
|
119
|
+
*/
|
|
103
120
|
values?: string[];
|
|
104
121
|
}
|
|
105
122
|
export interface CnameRecord {
|
|
106
|
-
/**
|
|
123
|
+
/**
|
|
124
|
+
* Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.
|
|
125
|
+
* @format HOSTNAME
|
|
126
|
+
*/
|
|
107
127
|
hostName?: string;
|
|
108
128
|
/** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */
|
|
109
129
|
ttl?: number;
|
|
@@ -115,11 +135,15 @@ export interface SubdomainRecords {
|
|
|
115
135
|
/**
|
|
116
136
|
* [Canonical Name records](https://en.wikipedia.org/wiki/CNAME_record).
|
|
117
137
|
* @readonly
|
|
138
|
+
* @maxSize 2
|
|
118
139
|
*/
|
|
119
140
|
cnameRecords?: CnameRecord[];
|
|
120
141
|
}
|
|
121
142
|
export interface GetSetupInfoRequest {
|
|
122
|
-
/**
|
|
143
|
+
/**
|
|
144
|
+
* Domain name including TLD
|
|
145
|
+
* @format HOSTNAME
|
|
146
|
+
*/
|
|
123
147
|
domain?: string;
|
|
124
148
|
/**
|
|
125
149
|
* How the domain should be to connected the Wix site.
|
|
@@ -148,7 +172,10 @@ export interface GetSetupInfoResponse {
|
|
|
148
172
|
domainSetupInfo?: ConnectedDomainSetupInfo;
|
|
149
173
|
}
|
|
150
174
|
export interface PreCreateConnectedDomainRequest {
|
|
151
|
-
/**
|
|
175
|
+
/**
|
|
176
|
+
* Domain name including TLD
|
|
177
|
+
* @format HOSTNAME
|
|
178
|
+
*/
|
|
152
179
|
domain?: string;
|
|
153
180
|
}
|
|
154
181
|
export interface PreCreateConnectedDomainResponse {
|
|
@@ -157,6 +184,7 @@ export interface GetConnectedDomainSetupInfoRequest {
|
|
|
157
184
|
/**
|
|
158
185
|
* ID of the connected domain to retrieve setup information for.
|
|
159
186
|
* Identical to the domain name including TLD.
|
|
187
|
+
* @format HOSTNAME
|
|
160
188
|
*/
|
|
161
189
|
connectedDomainId: string;
|
|
162
190
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.js","sourceRoot":"","sources":["../../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.js","sourceRoot":"","sources":["../../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.ts"],"names":[],"mappings":"AA0KA,MAAM,CAAN,IAAY,cASX;AATD,WAAY,cAAc;IACxB,yDAAyD;IACzD,qEAAmD,CAAA;IACnD,+EAA+E;IAC/E,uCAAqB,CAAA;IACrB,2EAA2E;IAC3E,6CAA2B,CAAA;IAC3B,iDAAiD;IACjD,mCAAiB,CAAA;AACnB,CAAC,EATW,cAAc,KAAd,cAAc,QASzB"}
|
|
@@ -20,7 +20,10 @@ export interface ConnectedDomainSetupInfo extends ConnectedDomainSetupInfoDnsRec
|
|
|
20
20
|
* @readonly
|
|
21
21
|
*/
|
|
22
22
|
subdomainRecords?: SubdomainRecords;
|
|
23
|
-
/**
|
|
23
|
+
/**
|
|
24
|
+
* ID of the connected domain. Identical to the domain name including TLD.
|
|
25
|
+
* @format HOSTNAME
|
|
26
|
+
*/
|
|
24
27
|
connectedDomainId?: string;
|
|
25
28
|
/**
|
|
26
29
|
* Information about the external domain registrar including current name
|
|
@@ -74,11 +77,18 @@ export interface NameserverRecord {
|
|
|
74
77
|
nsRecord?: NsRecord;
|
|
75
78
|
}
|
|
76
79
|
export interface NsRecord {
|
|
77
|
-
/**
|
|
80
|
+
/**
|
|
81
|
+
* Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.
|
|
82
|
+
* @format HOSTNAME
|
|
83
|
+
*/
|
|
78
84
|
hostName?: string;
|
|
79
85
|
/** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */
|
|
80
86
|
ttl?: number;
|
|
81
|
-
/**
|
|
87
|
+
/**
|
|
88
|
+
* DNS record values.
|
|
89
|
+
* @minSize 1
|
|
90
|
+
* @maxSize 10
|
|
91
|
+
*/
|
|
82
92
|
values?: string[];
|
|
83
93
|
}
|
|
84
94
|
/** Information about domains connected by pointing. */
|
|
@@ -95,15 +105,25 @@ export interface PointingRecords {
|
|
|
95
105
|
cnameRecord?: CnameRecord;
|
|
96
106
|
}
|
|
97
107
|
export interface ARecord {
|
|
98
|
-
/**
|
|
108
|
+
/**
|
|
109
|
+
* Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.
|
|
110
|
+
* @format HOSTNAME
|
|
111
|
+
*/
|
|
99
112
|
hostName?: string;
|
|
100
113
|
/** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */
|
|
101
114
|
ttl?: number;
|
|
102
|
-
/**
|
|
115
|
+
/**
|
|
116
|
+
* DNS record values.
|
|
117
|
+
* @minSize 1
|
|
118
|
+
* @maxSize 10
|
|
119
|
+
*/
|
|
103
120
|
values?: string[];
|
|
104
121
|
}
|
|
105
122
|
export interface CnameRecord {
|
|
106
|
-
/**
|
|
123
|
+
/**
|
|
124
|
+
* Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.
|
|
125
|
+
* @format HOSTNAME
|
|
126
|
+
*/
|
|
107
127
|
hostName?: string;
|
|
108
128
|
/** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */
|
|
109
129
|
ttl?: number;
|
|
@@ -115,11 +135,15 @@ export interface SubdomainRecords {
|
|
|
115
135
|
/**
|
|
116
136
|
* [Canonical Name records](https://en.wikipedia.org/wiki/CNAME_record).
|
|
117
137
|
* @readonly
|
|
138
|
+
* @maxSize 2
|
|
118
139
|
*/
|
|
119
140
|
cnameRecords?: CnameRecord[];
|
|
120
141
|
}
|
|
121
142
|
export interface GetSetupInfoRequest {
|
|
122
|
-
/**
|
|
143
|
+
/**
|
|
144
|
+
* Domain name including TLD
|
|
145
|
+
* @format HOSTNAME
|
|
146
|
+
*/
|
|
123
147
|
domain?: string;
|
|
124
148
|
/**
|
|
125
149
|
* How the domain should be to connected the Wix site.
|
|
@@ -148,7 +172,10 @@ export interface GetSetupInfoResponse {
|
|
|
148
172
|
domainSetupInfo?: ConnectedDomainSetupInfo;
|
|
149
173
|
}
|
|
150
174
|
export interface PreCreateConnectedDomainRequest {
|
|
151
|
-
/**
|
|
175
|
+
/**
|
|
176
|
+
* Domain name including TLD
|
|
177
|
+
* @format HOSTNAME
|
|
178
|
+
*/
|
|
152
179
|
domain?: string;
|
|
153
180
|
}
|
|
154
181
|
export interface PreCreateConnectedDomainResponse {
|
|
@@ -157,6 +184,7 @@ export interface GetConnectedDomainSetupInfoRequest {
|
|
|
157
184
|
/**
|
|
158
185
|
* ID of the connected domain to retrieve setup information for.
|
|
159
186
|
* Identical to the domain name including TLD.
|
|
187
|
+
* @format HOSTNAME
|
|
160
188
|
*/
|
|
161
189
|
connectedDomainId: string;
|
|
162
190
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js","sourceRoot":"","sources":["../../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,IAAI,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AACvF,OAAO,EACL,qCAAqC,EACrC,uCAAuC,GACxC,MAAM,yCAAyC,CAAC;AAEjD,OAAO,KAAK,qDAAqD,MAAM,sFAAsF,CAAC;
|
|
1
|
+
{"version":3,"file":"premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js","sourceRoot":"","sources":["../../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,IAAI,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AACvF,OAAO,EACL,qCAAqC,EACrC,uCAAuC,GACxC,MAAM,yCAAyC,CAAC;AAEjD,OAAO,KAAK,qDAAqD,MAAM,sFAAsF,CAAC;AA4K9J,MAAM,CAAN,IAAY,cASX;AATD,WAAY,cAAc;IACxB,yDAAyD;IACzD,qEAAmD,CAAA;IACnD,+EAA+E;IAC/E,uCAAqB,CAAA;IACrB,2EAA2E;IAC3E,6CAA2B,CAAA;IAC3B,iDAAiD;IACjD,mCAAiB,CAAA;AACnB,CAAC,EATW,cAAc,KAAd,cAAc,QASzB;AA8ED;;;;;;;;;;;;;;GAcG;AACH,MAAM,CAAC,KAAK,UAAU,2BAA2B,CAC/C,iBAAyB;IAIzB,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,MAAM,OAAO,GAAG,qCAAqC,CAAC;QACpD,iBAAiB,EAAE,iBAAiB;KACrC,CAAC,CAAC;IAEH,MAAM,OAAO,GACX,qDAAqD,CAAC,2BAA2B,CAC/E,OAAO,CACR,CAAC;IAEJ,WAAW,EAAE,UAAU,EAAE,EAAE,CAAC;IAC5B,IAAI,CAAC;QACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QACjD,WAAW,EAAE,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;QAEjC,OAAO,uCAAuC,CAAC,MAAM,CAAC,IAAI,CAAC;YACzD,EAAE,wBAAyB,CAAC;IAChC,CAAC;IAAC,OAAO,GAAQ,EAAE,CAAC;QAClB,MAAM,gBAAgB,GAAG,iBAAiB,CACxC,GAAG,EACH;YACE,sBAAsB,EAAE,EAAE;YAC1B,wBAAwB,EAAE,EAAE,iBAAiB,EAAE,MAAM,EAAE;YACvD,uBAAuB,EAAE,KAAK;SAC/B,EACD,CAAC,mBAAmB,CAAC,CACtB,CAAC;QACF,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;QAE5B,MAAM,gBAAgB,CAAC;IACzB,CAAC;AACH,CAAC"}
|
|
@@ -20,7 +20,10 @@ export interface ConnectedDomainSetupInfo extends ConnectedDomainSetupInfoDnsRec
|
|
|
20
20
|
* @readonly
|
|
21
21
|
*/
|
|
22
22
|
subdomainRecords?: SubdomainRecords;
|
|
23
|
-
/**
|
|
23
|
+
/**
|
|
24
|
+
* ID of the connected domain. Identical to the domain name including TLD.
|
|
25
|
+
* @format HOSTNAME
|
|
26
|
+
*/
|
|
24
27
|
connectedDomainId?: string;
|
|
25
28
|
/**
|
|
26
29
|
* Information about the external domain registrar including current name
|
|
@@ -74,11 +77,18 @@ export interface NameserverRecord {
|
|
|
74
77
|
nsRecord?: NsRecord;
|
|
75
78
|
}
|
|
76
79
|
export interface NsRecord {
|
|
77
|
-
/**
|
|
80
|
+
/**
|
|
81
|
+
* Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.
|
|
82
|
+
* @format HOSTNAME
|
|
83
|
+
*/
|
|
78
84
|
hostName?: string;
|
|
79
85
|
/** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */
|
|
80
86
|
ttl?: number;
|
|
81
|
-
/**
|
|
87
|
+
/**
|
|
88
|
+
* DNS record values.
|
|
89
|
+
* @minSize 1
|
|
90
|
+
* @maxSize 10
|
|
91
|
+
*/
|
|
82
92
|
values?: string[];
|
|
83
93
|
}
|
|
84
94
|
/** Information about domains connected by pointing. */
|
|
@@ -95,15 +105,25 @@ export interface PointingRecords {
|
|
|
95
105
|
cnameRecord?: CnameRecord;
|
|
96
106
|
}
|
|
97
107
|
export interface ARecord {
|
|
98
|
-
/**
|
|
108
|
+
/**
|
|
109
|
+
* Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.
|
|
110
|
+
* @format HOSTNAME
|
|
111
|
+
*/
|
|
99
112
|
hostName?: string;
|
|
100
113
|
/** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */
|
|
101
114
|
ttl?: number;
|
|
102
|
-
/**
|
|
115
|
+
/**
|
|
116
|
+
* DNS record values.
|
|
117
|
+
* @minSize 1
|
|
118
|
+
* @maxSize 10
|
|
119
|
+
*/
|
|
103
120
|
values?: string[];
|
|
104
121
|
}
|
|
105
122
|
export interface CnameRecord {
|
|
106
|
-
/**
|
|
123
|
+
/**
|
|
124
|
+
* Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.
|
|
125
|
+
* @format HOSTNAME
|
|
126
|
+
*/
|
|
107
127
|
hostName?: string;
|
|
108
128
|
/** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */
|
|
109
129
|
ttl?: number;
|
|
@@ -115,11 +135,15 @@ export interface SubdomainRecords {
|
|
|
115
135
|
/**
|
|
116
136
|
* [Canonical Name records](https://en.wikipedia.org/wiki/CNAME_record).
|
|
117
137
|
* @readonly
|
|
138
|
+
* @maxSize 2
|
|
118
139
|
*/
|
|
119
140
|
cnameRecords?: CnameRecord[];
|
|
120
141
|
}
|
|
121
142
|
export interface GetSetupInfoRequest {
|
|
122
|
-
/**
|
|
143
|
+
/**
|
|
144
|
+
* Domain name including TLD
|
|
145
|
+
* @format HOSTNAME
|
|
146
|
+
*/
|
|
123
147
|
domain?: string;
|
|
124
148
|
/**
|
|
125
149
|
* How the domain should be to connected the Wix site.
|
|
@@ -148,7 +172,10 @@ export interface GetSetupInfoResponse {
|
|
|
148
172
|
domainSetupInfo?: ConnectedDomainSetupInfo;
|
|
149
173
|
}
|
|
150
174
|
export interface PreCreateConnectedDomainRequest {
|
|
151
|
-
/**
|
|
175
|
+
/**
|
|
176
|
+
* Domain name including TLD
|
|
177
|
+
* @format HOSTNAME
|
|
178
|
+
*/
|
|
152
179
|
domain?: string;
|
|
153
180
|
}
|
|
154
181
|
export interface PreCreateConnectedDomainResponse {
|
|
@@ -157,6 +184,7 @@ export interface GetConnectedDomainSetupInfoRequest {
|
|
|
157
184
|
/**
|
|
158
185
|
* ID of the connected domain to retrieve setup information for.
|
|
159
186
|
* Identical to the domain name including TLD.
|
|
187
|
+
* @format HOSTNAME
|
|
160
188
|
*/
|
|
161
189
|
connectedDomainId: string;
|
|
162
190
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.js","sourceRoot":"","sources":["../../../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"file":"premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.js","sourceRoot":"","sources":["../../../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.ts"],"names":[],"mappings":";;;AA0KA,IAAY,cASX;AATD,WAAY,cAAc;IACxB,yDAAyD;IACzD,qEAAmD,CAAA;IACnD,+EAA+E;IAC/E,uCAAqB,CAAA;IACrB,2EAA2E;IAC3E,6CAA2B,CAAA;IAC3B,iDAAiD;IACjD,mCAAiB,CAAA;AACnB,CAAC,EATW,cAAc,8BAAd,cAAc,QASzB"}
|
|
@@ -20,7 +20,10 @@ export interface ConnectedDomainSetupInfo extends ConnectedDomainSetupInfoDnsRec
|
|
|
20
20
|
* @readonly
|
|
21
21
|
*/
|
|
22
22
|
subdomainRecords?: SubdomainRecords;
|
|
23
|
-
/**
|
|
23
|
+
/**
|
|
24
|
+
* ID of the connected domain. Identical to the domain name including TLD.
|
|
25
|
+
* @format HOSTNAME
|
|
26
|
+
*/
|
|
24
27
|
connectedDomainId?: string;
|
|
25
28
|
/**
|
|
26
29
|
* Information about the external domain registrar including current name
|
|
@@ -74,11 +77,18 @@ export interface NameserverRecord {
|
|
|
74
77
|
nsRecord?: NsRecord;
|
|
75
78
|
}
|
|
76
79
|
export interface NsRecord {
|
|
77
|
-
/**
|
|
80
|
+
/**
|
|
81
|
+
* Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.
|
|
82
|
+
* @format HOSTNAME
|
|
83
|
+
*/
|
|
78
84
|
hostName?: string;
|
|
79
85
|
/** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */
|
|
80
86
|
ttl?: number;
|
|
81
|
-
/**
|
|
87
|
+
/**
|
|
88
|
+
* DNS record values.
|
|
89
|
+
* @minSize 1
|
|
90
|
+
* @maxSize 10
|
|
91
|
+
*/
|
|
82
92
|
values?: string[];
|
|
83
93
|
}
|
|
84
94
|
/** Information about domains connected by pointing. */
|
|
@@ -95,15 +105,25 @@ export interface PointingRecords {
|
|
|
95
105
|
cnameRecord?: CnameRecord;
|
|
96
106
|
}
|
|
97
107
|
export interface ARecord {
|
|
98
|
-
/**
|
|
108
|
+
/**
|
|
109
|
+
* Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.
|
|
110
|
+
* @format HOSTNAME
|
|
111
|
+
*/
|
|
99
112
|
hostName?: string;
|
|
100
113
|
/** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */
|
|
101
114
|
ttl?: number;
|
|
102
|
-
/**
|
|
115
|
+
/**
|
|
116
|
+
* DNS record values.
|
|
117
|
+
* @minSize 1
|
|
118
|
+
* @maxSize 10
|
|
119
|
+
*/
|
|
103
120
|
values?: string[];
|
|
104
121
|
}
|
|
105
122
|
export interface CnameRecord {
|
|
106
|
-
/**
|
|
123
|
+
/**
|
|
124
|
+
* Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.
|
|
125
|
+
* @format HOSTNAME
|
|
126
|
+
*/
|
|
107
127
|
hostName?: string;
|
|
108
128
|
/** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */
|
|
109
129
|
ttl?: number;
|
|
@@ -115,11 +135,15 @@ export interface SubdomainRecords {
|
|
|
115
135
|
/**
|
|
116
136
|
* [Canonical Name records](https://en.wikipedia.org/wiki/CNAME_record).
|
|
117
137
|
* @readonly
|
|
138
|
+
* @maxSize 2
|
|
118
139
|
*/
|
|
119
140
|
cnameRecords?: CnameRecord[];
|
|
120
141
|
}
|
|
121
142
|
export interface GetSetupInfoRequest {
|
|
122
|
-
/**
|
|
143
|
+
/**
|
|
144
|
+
* Domain name including TLD
|
|
145
|
+
* @format HOSTNAME
|
|
146
|
+
*/
|
|
123
147
|
domain?: string;
|
|
124
148
|
/**
|
|
125
149
|
* How the domain should be to connected the Wix site.
|
|
@@ -148,7 +172,10 @@ export interface GetSetupInfoResponse {
|
|
|
148
172
|
domainSetupInfo?: ConnectedDomainSetupInfo;
|
|
149
173
|
}
|
|
150
174
|
export interface PreCreateConnectedDomainRequest {
|
|
151
|
-
/**
|
|
175
|
+
/**
|
|
176
|
+
* Domain name including TLD
|
|
177
|
+
* @format HOSTNAME
|
|
178
|
+
*/
|
|
152
179
|
domain?: string;
|
|
153
180
|
}
|
|
154
181
|
export interface PreCreateConnectedDomainResponse {
|
|
@@ -157,6 +184,7 @@ export interface GetConnectedDomainSetupInfoRequest {
|
|
|
157
184
|
/**
|
|
158
185
|
* ID of the connected domain to retrieve setup information for.
|
|
159
186
|
* Identical to the domain name including TLD.
|
|
187
|
+
* @format HOSTNAME
|
|
160
188
|
*/
|
|
161
189
|
connectedDomainId: string;
|
|
162
190
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js","sourceRoot":"","sources":["../../../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,sEAAuF;AACvF,oFAGiD;AAEjD,4KAA8J;
|
|
1
|
+
{"version":3,"file":"premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js","sourceRoot":"","sources":["../../../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,sEAAuF;AACvF,oFAGiD;AAEjD,4KAA8J;AA4K9J,IAAY,cASX;AATD,WAAY,cAAc;IACxB,yDAAyD;IACzD,qEAAmD,CAAA;IACnD,+EAA+E;IAC/E,uCAAqB,CAAA;IACrB,2EAA2E;IAC3E,6CAA2B,CAAA;IAC3B,iDAAiD;IACjD,mCAAiB,CAAA;AACnB,CAAC,EATW,cAAc,8BAAd,cAAc,QASzB;AA8ED;;;;;;;;;;;;;;GAcG;AACI,KAAK,UAAU,2BAA2B,CAC/C,iBAAyB;IAIzB,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,MAAM,OAAO,GAAG,IAAA,8DAAqC,EAAC;QACpD,iBAAiB,EAAE,iBAAiB;KACrC,CAAC,CAAC;IAEH,MAAM,OAAO,GACX,qDAAqD,CAAC,2BAA2B,CAC/E,OAAO,CACR,CAAC;IAEJ,WAAW,EAAE,UAAU,EAAE,EAAE,CAAC;IAC5B,IAAI,CAAC;QACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QACjD,WAAW,EAAE,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;QAEjC,OAAO,IAAA,gEAAuC,EAAC,MAAM,CAAC,IAAI,CAAC;YACzD,EAAE,wBAAyB,CAAC;IAChC,CAAC;IAAC,OAAO,GAAQ,EAAE,CAAC;QAClB,MAAM,gBAAgB,GAAG,IAAA,gCAAiB,EACxC,GAAG,EACH;YACE,sBAAsB,EAAE,EAAE;YAC1B,wBAAwB,EAAE,EAAE,iBAAiB,EAAE,MAAM,EAAE;YACvD,uBAAuB,EAAE,KAAK;SAC/B,EACD,CAAC,mBAAmB,CAAC,CACtB,CAAC;QACF,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;QAE5B,MAAM,gBAAgB,CAAC;IACzB,CAAC;AACH,CAAC;AAzCD,kEAyCC"}
|
|
@@ -20,7 +20,10 @@ export interface ConnectedDomainSetupInfo extends ConnectedDomainSetupInfoDnsRec
|
|
|
20
20
|
* @readonly
|
|
21
21
|
*/
|
|
22
22
|
subdomainRecords?: SubdomainRecords;
|
|
23
|
-
/**
|
|
23
|
+
/**
|
|
24
|
+
* ID of the connected domain. Identical to the domain name including TLD.
|
|
25
|
+
* @format HOSTNAME
|
|
26
|
+
*/
|
|
24
27
|
connectedDomainId?: string;
|
|
25
28
|
/**
|
|
26
29
|
* Information about the external domain registrar including current name
|
|
@@ -74,11 +77,18 @@ export interface NameserverRecord {
|
|
|
74
77
|
nsRecord?: NsRecord;
|
|
75
78
|
}
|
|
76
79
|
export interface NsRecord {
|
|
77
|
-
/**
|
|
80
|
+
/**
|
|
81
|
+
* Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.
|
|
82
|
+
* @format HOSTNAME
|
|
83
|
+
*/
|
|
78
84
|
hostName?: string;
|
|
79
85
|
/** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */
|
|
80
86
|
ttl?: number;
|
|
81
|
-
/**
|
|
87
|
+
/**
|
|
88
|
+
* DNS record values.
|
|
89
|
+
* @minSize 1
|
|
90
|
+
* @maxSize 10
|
|
91
|
+
*/
|
|
82
92
|
values?: string[];
|
|
83
93
|
}
|
|
84
94
|
/** Information about domains connected by pointing. */
|
|
@@ -95,15 +105,25 @@ export interface PointingRecords {
|
|
|
95
105
|
cnameRecord?: CnameRecord;
|
|
96
106
|
}
|
|
97
107
|
export interface ARecord {
|
|
98
|
-
/**
|
|
108
|
+
/**
|
|
109
|
+
* Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.
|
|
110
|
+
* @format HOSTNAME
|
|
111
|
+
*/
|
|
99
112
|
hostName?: string;
|
|
100
113
|
/** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */
|
|
101
114
|
ttl?: number;
|
|
102
|
-
/**
|
|
115
|
+
/**
|
|
116
|
+
* DNS record values.
|
|
117
|
+
* @minSize 1
|
|
118
|
+
* @maxSize 10
|
|
119
|
+
*/
|
|
103
120
|
values?: string[];
|
|
104
121
|
}
|
|
105
122
|
export interface CnameRecord {
|
|
106
|
-
/**
|
|
123
|
+
/**
|
|
124
|
+
* Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.
|
|
125
|
+
* @format HOSTNAME
|
|
126
|
+
*/
|
|
107
127
|
hostName?: string;
|
|
108
128
|
/** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */
|
|
109
129
|
ttl?: number;
|
|
@@ -115,11 +135,15 @@ export interface SubdomainRecords {
|
|
|
115
135
|
/**
|
|
116
136
|
* [Canonical Name records](https://en.wikipedia.org/wiki/CNAME_record).
|
|
117
137
|
* @readonly
|
|
138
|
+
* @maxSize 2
|
|
118
139
|
*/
|
|
119
140
|
cnameRecords?: CnameRecord[];
|
|
120
141
|
}
|
|
121
142
|
export interface GetSetupInfoRequest {
|
|
122
|
-
/**
|
|
143
|
+
/**
|
|
144
|
+
* Domain name including TLD
|
|
145
|
+
* @format HOSTNAME
|
|
146
|
+
*/
|
|
123
147
|
domain?: string;
|
|
124
148
|
/**
|
|
125
149
|
* How the domain should be to connected the Wix site.
|
|
@@ -148,7 +172,10 @@ export interface GetSetupInfoResponse {
|
|
|
148
172
|
domainSetupInfo?: ConnectedDomainSetupInfo;
|
|
149
173
|
}
|
|
150
174
|
export interface PreCreateConnectedDomainRequest {
|
|
151
|
-
/**
|
|
175
|
+
/**
|
|
176
|
+
* Domain name including TLD
|
|
177
|
+
* @format HOSTNAME
|
|
178
|
+
*/
|
|
152
179
|
domain?: string;
|
|
153
180
|
}
|
|
154
181
|
export interface PreCreateConnectedDomainResponse {
|
|
@@ -157,6 +184,7 @@ export interface GetConnectedDomainSetupInfoRequest {
|
|
|
157
184
|
/**
|
|
158
185
|
* ID of the connected domain to retrieve setup information for.
|
|
159
186
|
* Identical to the domain name including TLD.
|
|
187
|
+
* @format HOSTNAME
|
|
160
188
|
*/
|
|
161
189
|
connectedDomainId: string;
|
|
162
190
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.js","sourceRoot":"","sources":["../../../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.js","sourceRoot":"","sources":["../../../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.types.ts"],"names":[],"mappings":"AA0KA,MAAM,CAAN,IAAY,cASX;AATD,WAAY,cAAc;IACxB,yDAAyD;IACzD,qEAAmD,CAAA;IACnD,+EAA+E;IAC/E,uCAAqB,CAAA;IACrB,2EAA2E;IAC3E,6CAA2B,CAAA;IAC3B,iDAAiD;IACjD,mCAAiB,CAAA;AACnB,CAAC,EATW,cAAc,KAAd,cAAc,QASzB"}
|
|
@@ -20,7 +20,10 @@ export interface ConnectedDomainSetupInfo extends ConnectedDomainSetupInfoDnsRec
|
|
|
20
20
|
* @readonly
|
|
21
21
|
*/
|
|
22
22
|
subdomainRecords?: SubdomainRecords;
|
|
23
|
-
/**
|
|
23
|
+
/**
|
|
24
|
+
* ID of the connected domain. Identical to the domain name including TLD.
|
|
25
|
+
* @format HOSTNAME
|
|
26
|
+
*/
|
|
24
27
|
connectedDomainId?: string;
|
|
25
28
|
/**
|
|
26
29
|
* Information about the external domain registrar including current name
|
|
@@ -74,11 +77,18 @@ export interface NameserverRecord {
|
|
|
74
77
|
nsRecord?: NsRecord;
|
|
75
78
|
}
|
|
76
79
|
export interface NsRecord {
|
|
77
|
-
/**
|
|
80
|
+
/**
|
|
81
|
+
* Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.
|
|
82
|
+
* @format HOSTNAME
|
|
83
|
+
*/
|
|
78
84
|
hostName?: string;
|
|
79
85
|
/** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */
|
|
80
86
|
ttl?: number;
|
|
81
|
-
/**
|
|
87
|
+
/**
|
|
88
|
+
* DNS record values.
|
|
89
|
+
* @minSize 1
|
|
90
|
+
* @maxSize 10
|
|
91
|
+
*/
|
|
82
92
|
values?: string[];
|
|
83
93
|
}
|
|
84
94
|
/** Information about domains connected by pointing. */
|
|
@@ -95,15 +105,25 @@ export interface PointingRecords {
|
|
|
95
105
|
cnameRecord?: CnameRecord;
|
|
96
106
|
}
|
|
97
107
|
export interface ARecord {
|
|
98
|
-
/**
|
|
108
|
+
/**
|
|
109
|
+
* Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.
|
|
110
|
+
* @format HOSTNAME
|
|
111
|
+
*/
|
|
99
112
|
hostName?: string;
|
|
100
113
|
/** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */
|
|
101
114
|
ttl?: number;
|
|
102
|
-
/**
|
|
115
|
+
/**
|
|
116
|
+
* DNS record values.
|
|
117
|
+
* @minSize 1
|
|
118
|
+
* @maxSize 10
|
|
119
|
+
*/
|
|
103
120
|
values?: string[];
|
|
104
121
|
}
|
|
105
122
|
export interface CnameRecord {
|
|
106
|
-
/**
|
|
123
|
+
/**
|
|
124
|
+
* Domain host name. For example `domain.com` or `mail.domain.com`. Can be a subdomain.
|
|
125
|
+
* @format HOSTNAME
|
|
126
|
+
*/
|
|
107
127
|
hostName?: string;
|
|
108
128
|
/** [Time to live](https://en.wikipedia.org/wiki/Time_to_live) in seconds. */
|
|
109
129
|
ttl?: number;
|
|
@@ -115,11 +135,15 @@ export interface SubdomainRecords {
|
|
|
115
135
|
/**
|
|
116
136
|
* [Canonical Name records](https://en.wikipedia.org/wiki/CNAME_record).
|
|
117
137
|
* @readonly
|
|
138
|
+
* @maxSize 2
|
|
118
139
|
*/
|
|
119
140
|
cnameRecords?: CnameRecord[];
|
|
120
141
|
}
|
|
121
142
|
export interface GetSetupInfoRequest {
|
|
122
|
-
/**
|
|
143
|
+
/**
|
|
144
|
+
* Domain name including TLD
|
|
145
|
+
* @format HOSTNAME
|
|
146
|
+
*/
|
|
123
147
|
domain?: string;
|
|
124
148
|
/**
|
|
125
149
|
* How the domain should be to connected the Wix site.
|
|
@@ -148,7 +172,10 @@ export interface GetSetupInfoResponse {
|
|
|
148
172
|
domainSetupInfo?: ConnectedDomainSetupInfo;
|
|
149
173
|
}
|
|
150
174
|
export interface PreCreateConnectedDomainRequest {
|
|
151
|
-
/**
|
|
175
|
+
/**
|
|
176
|
+
* Domain name including TLD
|
|
177
|
+
* @format HOSTNAME
|
|
178
|
+
*/
|
|
152
179
|
domain?: string;
|
|
153
180
|
}
|
|
154
181
|
export interface PreCreateConnectedDomainResponse {
|
|
@@ -157,6 +184,7 @@ export interface GetConnectedDomainSetupInfoRequest {
|
|
|
157
184
|
/**
|
|
158
185
|
* ID of the connected domain to retrieve setup information for.
|
|
159
186
|
* Identical to the domain name including TLD.
|
|
187
|
+
* @format HOSTNAME
|
|
160
188
|
*/
|
|
161
189
|
connectedDomainId: string;
|
|
162
190
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js","sourceRoot":"","sources":["../../../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,IAAI,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AACvF,OAAO,EACL,qCAAqC,EACrC,uCAAuC,GACxC,MAAM,yCAAyC,CAAC;AAEjD,OAAO,KAAK,qDAAqD,MAAM,sFAAsF,CAAC;
|
|
1
|
+
{"version":3,"file":"premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.js","sourceRoot":"","sources":["../../../../src/premium-domains-v1-connected-domain-setup-info-connected-domain-setup-info.universal.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,IAAI,iBAAiB,EAAE,MAAM,kCAAkC,CAAC;AACvF,OAAO,EACL,qCAAqC,EACrC,uCAAuC,GACxC,MAAM,yCAAyC,CAAC;AAEjD,OAAO,KAAK,qDAAqD,MAAM,sFAAsF,CAAC;AA4K9J,MAAM,CAAN,IAAY,cASX;AATD,WAAY,cAAc;IACxB,yDAAyD;IACzD,qEAAmD,CAAA;IACnD,+EAA+E;IAC/E,uCAAqB,CAAA;IACrB,2EAA2E;IAC3E,6CAA2B,CAAA;IAC3B,iDAAiD;IACjD,mCAAiB,CAAA;AACnB,CAAC,EATW,cAAc,KAAd,cAAc,QASzB;AA8ED;;;;;;;;;;;;;;GAcG;AACH,MAAM,CAAC,KAAK,UAAU,2BAA2B,CAC/C,iBAAyB;IAIzB,aAAa;IACb,MAAM,EAAE,UAAU,EAAE,WAAW,EAAE,GAAG,SAAS,CAAC,CAAC,CAG9C,CAAC;IAEF,MAAM,OAAO,GAAG,qCAAqC,CAAC;QACpD,iBAAiB,EAAE,iBAAiB;KACrC,CAAC,CAAC;IAEH,MAAM,OAAO,GACX,qDAAqD,CAAC,2BAA2B,CAC/E,OAAO,CACR,CAAC;IAEJ,WAAW,EAAE,UAAU,EAAE,EAAE,CAAC;IAC5B,IAAI,CAAC;QACH,MAAM,MAAM,GAAG,MAAM,UAAU,CAAC,OAAO,CAAC,OAAO,CAAC,CAAC;QACjD,WAAW,EAAE,SAAS,EAAE,CAAC,MAAM,CAAC,CAAC;QAEjC,OAAO,uCAAuC,CAAC,MAAM,CAAC,IAAI,CAAC;YACzD,EAAE,wBAAyB,CAAC;IAChC,CAAC;IAAC,OAAO,GAAQ,EAAE,CAAC;QAClB,MAAM,gBAAgB,GAAG,iBAAiB,CACxC,GAAG,EACH;YACE,sBAAsB,EAAE,EAAE;YAC1B,wBAAwB,EAAE,EAAE,iBAAiB,EAAE,MAAM,EAAE;YACvD,uBAAuB,EAAE,KAAK;SAC/B,EACD,CAAC,mBAAmB,CAAC,CACtB,CAAC;QACF,WAAW,EAAE,OAAO,EAAE,CAAC,GAAG,CAAC,CAAC;QAE5B,MAAM,gBAAgB,CAAC;IACzB,CAAC;AACH,CAAC"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wix/auto_sdk_domains_connected-domain-setup-info",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"registry": "https://registry.npmjs.org/",
|
|
6
6
|
"access": "public"
|
|
@@ -48,5 +48,5 @@
|
|
|
48
48
|
"fqdn": "wix.premium.domains.v1.connected_domain_setup_info"
|
|
49
49
|
}
|
|
50
50
|
},
|
|
51
|
-
"falconPackageHash": "
|
|
51
|
+
"falconPackageHash": "e14c49118d9fe64b7d515acdc8190610af5fb83c7692eeac5b329364"
|
|
52
52
|
}
|