@shipstatic/ship 2.6.2-beta.1 → 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/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` the domain plus the salted
341
- * hash that lets someone else complete its DNS setup without an account.
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 salted setup hash that authorizes the share */
353
- readonly hash: string;
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` the domain plus the salted
341
- * hash that lets someone else complete its DNS setup without an account.
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 salted setup hash that authorizes the share */
353
- readonly hash: string;
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