@shipstatic/types 0.8.9 → 0.8.10

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
@@ -26,8 +26,10 @@ export interface Deployment {
26
26
  readonly size: number;
27
27
  /** Current deployment status */
28
28
  status: DeploymentStatusType;
29
- /** Whether deployment has configuration */
29
+ /** Whether deployment has a ship.json config */
30
30
  readonly config: boolean;
31
+ /** Whether deployment has a password set */
32
+ readonly password: boolean;
31
33
  /** Labels for categorization and filtering (lowercase, alphanumeric with separators). Always present, empty array when none. */
32
34
  labels: string[];
33
35
  /** The client/tool used to create this deployment (e.g., 'web', 'sdk', 'cli'), null if unknown */
@@ -737,8 +739,10 @@ export interface ActivityMeta {
737
739
  files?: number;
738
740
  /** Total size in bytes */
739
741
  size?: number;
740
- /** Whether deployment has config */
742
+ /** Whether deployment has a ship.json config */
741
743
  hasConfig?: boolean;
744
+ /** Whether deployment has a password set */
745
+ hasPassword?: boolean;
742
746
  /** Whether this was an update (vs create) */
743
747
  isUpdate?: boolean;
744
748
  /** Whether domain was already verified */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shipstatic/types",
3
- "version": "0.8.9",
3
+ "version": "0.8.10",
4
4
  "description": "Shared types for ShipStatic platform",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
package/src/index.ts CHANGED
@@ -33,8 +33,10 @@ export interface Deployment {
33
33
  readonly size: number;
34
34
  /** Current deployment status */
35
35
  status: DeploymentStatusType; // Mutable - can be updated
36
- /** Whether deployment has configuration */
36
+ /** Whether deployment has a ship.json config */
37
37
  readonly config: boolean;
38
+ /** Whether deployment has a password set */
39
+ readonly password: boolean;
38
40
  /** Labels for categorization and filtering (lowercase, alphanumeric with separators). Always present, empty array when none. */
39
41
  labels: string[];
40
42
  /** The client/tool used to create this deployment (e.g., 'web', 'sdk', 'cli'), null if unknown */
@@ -1112,8 +1114,10 @@ export interface ActivityMeta {
1112
1114
  files?: number;
1113
1115
  /** Total size in bytes */
1114
1116
  size?: number;
1115
- /** Whether deployment has config */
1117
+ /** Whether deployment has a ship.json config */
1116
1118
  hasConfig?: boolean;
1119
+ /** Whether deployment has a password set */
1120
+ hasPassword?: boolean;
1117
1121
 
1118
1122
  // Domain events
1119
1123
  /** Whether this was an update (vs create) */