@shipstatic/types 2.11.0-beta.1 → 2.12.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.ts CHANGED
@@ -627,20 +627,6 @@ export interface AccountKeyResponse {
627
627
  /** The raw API key (shown once at mint, then never again) */
628
628
  readonly secret: string;
629
629
  }
630
- /**
631
- * What `GET /account/claim` answers — the render half of the claim door: the
632
- * deployment a claim code names, and whether it is still there for THIS
633
- * caller to take. Claimability is a fact of code-plus-caller only the API can
634
- * compute; consumers must never infer it from `expires`, an entitlement
635
- * detail that is free to diverge. (The POST — the intent half — answers the
636
- * bare {@link Deployment} it moved.)
637
- */
638
- export interface ClaimResolveResponse {
639
- /** The deployment the code names, as the caller may see it. */
640
- readonly deployment: Deployment;
641
- /** Still the public account's to take — false once it is the caller's own. */
642
- readonly claimable: boolean;
643
- }
644
630
  /**
645
631
  * Account-specific configuration overrides
646
632
  * Allows per-account customization of limits without changing plan
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipstatic/types",
3
- "version": "2.11.0-beta.1",
3
+ "version": "2.12.0-beta.1",
4
4
  "description": "Shared types for ShipStatic platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/src/index.ts CHANGED
@@ -706,21 +706,6 @@ export interface AccountKeyResponse {
706
706
  readonly secret: string;
707
707
  }
708
708
 
709
- /**
710
- * What `GET /account/claim` answers — the render half of the claim door: the
711
- * deployment a claim code names, and whether it is still there for THIS
712
- * caller to take. Claimability is a fact of code-plus-caller only the API can
713
- * compute; consumers must never infer it from `expires`, an entitlement
714
- * detail that is free to diverge. (The POST — the intent half — answers the
715
- * bare {@link Deployment} it moved.)
716
- */
717
- export interface ClaimResolveResponse {
718
- /** The deployment the code names, as the caller may see it. */
719
- readonly deployment: Deployment;
720
- /** Still the public account's to take — false once it is the caller's own. */
721
- readonly claimable: boolean;
722
- }
723
-
724
709
  /**
725
710
  * Account-specific configuration overrides
726
711
  * Allows per-account customization of limits without changing plan