newo 3.2.0 → 3.3.0

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/src/sync.ts CHANGED
@@ -9,6 +9,7 @@ export { status } from './sync/status.js';
9
9
  export { pullSingleProject, pullAll } from './sync/projects.js';
10
10
  export { pushChanged } from './sync/push.js';
11
11
  export { generateFlowsYaml } from './sync/metadata.js';
12
+ export { migrateAccount } from './sync/migrate.js';
12
13
 
13
14
  // Re-export type guards for backward compatibility
14
15
  export { isProjectMap, isLegacyProjectMap } from './sync/projects.js';
package/src/types.ts CHANGED
@@ -79,6 +79,13 @@ export interface ProjectMeta {
79
79
  readonly idn: string;
80
80
  readonly title: string;
81
81
  readonly description?: string;
82
+ readonly version?: string | null;
83
+ readonly is_synchronized?: boolean;
84
+ readonly preferred_update_time?: string | null;
85
+ readonly is_auto_update_enabled?: boolean;
86
+ readonly registry_idn?: string;
87
+ readonly registry_item_idn?: string | null;
88
+ readonly registry_item_version?: string | null;
82
89
  readonly created_at?: string;
83
90
  readonly updated_at?: string;
84
91
  }
@@ -87,8 +94,15 @@ export interface Agent {
87
94
  readonly id: string;
88
95
  readonly idn: string;
89
96
  readonly title?: string;
90
- readonly description?: string;
97
+ readonly description?: string | null;
91
98
  readonly flows?: readonly Flow[];
99
+ readonly persona?: {
100
+ readonly id: string;
101
+ readonly name: string;
102
+ readonly title: string;
103
+ } | null;
104
+ readonly created_at?: string;
105
+ readonly updated_at?: string;
92
106
  }
93
107
 
94
108
  export interface Flow {