@shipstatic/ship 2.6.2 → 2.7.0-beta.1
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/THIRD-PARTY-LICENSES.md +1 -1
- package/dist/browser.d.ts +9 -4
- package/dist/browser.js.map +1 -1
- package/dist/cli.cjs +40 -40
- package/dist/cli.cjs.map +1 -1
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +9 -4
- package/dist/index.d.ts +9 -4
- package/dist/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.d.cts
CHANGED
|
@@ -337,8 +337,13 @@ interface DomainDnsResponse {
|
|
|
337
337
|
dns: DnsLookup | null;
|
|
338
338
|
}
|
|
339
339
|
/**
|
|
340
|
-
* Response for `GET /domains/:domain/share
|
|
341
|
-
*
|
|
340
|
+
* Response for `GET /domains/:domain/share`: the domain plus the link that
|
|
341
|
+
* lets someone else complete its DNS setup without an account.
|
|
342
|
+
*
|
|
343
|
+
* The link is FINISHED, on the deployment claim's grammar: the API composes
|
|
344
|
+
* it from the salted setup hash and the one environment dimension it owns,
|
|
345
|
+
* and no client ever parses or assembles one. What a client receives is the
|
|
346
|
+
* setup URL, ready to hand off.
|
|
342
347
|
*
|
|
343
348
|
* `/admin/domains/:domain/share` answers the same shape, which is the admin
|
|
344
349
|
* law working: the operator surface is the public grammar with a prefix.
|
|
@@ -349,8 +354,8 @@ interface DomainDnsResponse {
|
|
|
349
354
|
interface DomainShareResponse {
|
|
350
355
|
/** The domain the setup link is for */
|
|
351
356
|
readonly domain: string;
|
|
352
|
-
/** The
|
|
353
|
-
readonly
|
|
357
|
+
/** The shareable setup link, carrying the salted hash that authorizes the share */
|
|
358
|
+
readonly url: string;
|
|
354
359
|
}
|
|
355
360
|
/**
|
|
356
361
|
* Response for domain DNS records
|
package/dist/index.d.ts
CHANGED
|
@@ -337,8 +337,13 @@ interface DomainDnsResponse {
|
|
|
337
337
|
dns: DnsLookup | null;
|
|
338
338
|
}
|
|
339
339
|
/**
|
|
340
|
-
* Response for `GET /domains/:domain/share
|
|
341
|
-
*
|
|
340
|
+
* Response for `GET /domains/:domain/share`: the domain plus the link that
|
|
341
|
+
* lets someone else complete its DNS setup without an account.
|
|
342
|
+
*
|
|
343
|
+
* The link is FINISHED, on the deployment claim's grammar: the API composes
|
|
344
|
+
* it from the salted setup hash and the one environment dimension it owns,
|
|
345
|
+
* and no client ever parses or assembles one. What a client receives is the
|
|
346
|
+
* setup URL, ready to hand off.
|
|
342
347
|
*
|
|
343
348
|
* `/admin/domains/:domain/share` answers the same shape, which is the admin
|
|
344
349
|
* law working: the operator surface is the public grammar with a prefix.
|
|
@@ -349,8 +354,8 @@ interface DomainDnsResponse {
|
|
|
349
354
|
interface DomainShareResponse {
|
|
350
355
|
/** The domain the setup link is for */
|
|
351
356
|
readonly domain: string;
|
|
352
|
-
/** The
|
|
353
|
-
readonly
|
|
357
|
+
/** The shareable setup link, carrying the salted hash that authorizes the share */
|
|
358
|
+
readonly url: string;
|
|
354
359
|
}
|
|
355
360
|
/**
|
|
356
361
|
* Response for domain DNS records
|