@alfe.ai/agent-api-client 0.1.3 → 0.1.4

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.cjs CHANGED
@@ -116,41 +116,91 @@ var AgentApiClient = class {
116
116
  async getRegistry() {
117
117
  return this.request("/integrations/registry");
118
118
  }
119
+ /**
120
+ * Returns every connected Google account for the agent. Multi-account by
121
+ * design — the openclaw-google plugin requires the LLM to pass `email`
122
+ * explicitly to `google_run_command` so an account is always selected
123
+ * deliberately.
124
+ *
125
+ * 2026-05-14 (connections-redesign PR 1): the legacy flat shape (`email`,
126
+ * `refreshToken`, `accessToken`, etc., populated from the default account)
127
+ * is gone. Iterate over `accounts`.
128
+ */
119
129
  async getGoogleCredentials() {
120
- return this.request("/agent/google/credentials");
130
+ return { accounts: (await this.request("/agent/connect/google/accounts")).accounts.map((a) => ({
131
+ email: a.accountIdentifier,
132
+ refreshToken: a.refreshToken ?? "",
133
+ clientId: a.clientId ?? "",
134
+ clientSecret: a.clientSecret ?? "",
135
+ displayName: a.displayName ?? void 0,
136
+ connectedAt: a.connectedAt
137
+ })) };
121
138
  }
122
139
  async disconnectGoogleAccount(email) {
123
- return this.request(`/agent/google/accounts/${encodeURIComponent(email)}`, { method: "DELETE" });
124
- }
125
- async setDefaultGoogleAccount(email) {
126
- return this.request(`/agent/google/accounts/${encodeURIComponent(email)}/default`, { method: "PUT" });
140
+ return { accounts: (await this.request(`/agent/connect/google/accounts/${encodeURIComponent(email)}`, { method: "DELETE" })).accounts.map((a) => ({
141
+ email: a.accountIdentifier,
142
+ displayName: a.displayName ?? void 0,
143
+ connectedAt: a.connectedAt
144
+ })) };
127
145
  }
128
146
  async getGoogleChatCredentials() {
129
147
  return this.request("/agent/google-chat/credentials");
130
148
  }
131
149
  async getGithubCredentials() {
132
- return this.request("/agent/github/credentials");
150
+ const raw = await this.request("/agent/connect/github/credentials");
151
+ return {
152
+ login: raw.login,
153
+ accessToken: raw.accessToken
154
+ };
133
155
  }
134
156
  async getXeroCredentials() {
135
- return this.request("/agent/xero/credentials");
157
+ const raw = await this.request("/agent/connect/xero/credentials");
158
+ return {
159
+ accessToken: raw.accessToken,
160
+ accessTokenExpiresAt: raw.accessTokenExpiresAt ?? "",
161
+ xeroTenantId: raw.xeroTenantId ?? ""
162
+ };
136
163
  }
137
164
  async refreshXeroToken() {
138
- return this.request("/agent/xero/token", { method: "POST" });
165
+ return this.request("/agent/connect/xero/refresh", { method: "POST" });
139
166
  }
140
167
  async getNotionCredentials() {
141
- return this.request("/agent/notion/credentials");
168
+ const raw = await this.request("/agent/connect/notion/credentials");
169
+ return {
170
+ accessToken: raw.accessToken,
171
+ workspaceId: raw.workspaceId ?? "",
172
+ workspaceName: raw.workspaceName ?? ""
173
+ };
142
174
  }
143
175
  async getAtlassianCredentials() {
144
- return this.request("/agent/atlassian/credentials");
176
+ const raw = await this.request("/agent/connect/atlassian/credentials");
177
+ return {
178
+ accessToken: raw.accessToken,
179
+ refreshToken: "",
180
+ accessTokenExpiresAt: raw.accessTokenExpiresAt ?? "",
181
+ cloudId: raw.cloudId ?? "",
182
+ siteName: raw.siteName ?? "",
183
+ siteUrl: raw.siteUrl ?? "",
184
+ email: "",
185
+ enabledProducts: [],
186
+ clientId: raw.clientId,
187
+ clientSecret: raw.clientSecret
188
+ };
145
189
  }
146
190
  async refreshAtlassianToken() {
147
- return this.request("/agent/atlassian/token", { method: "POST" });
191
+ return this.request("/agent/connect/atlassian/refresh", { method: "POST" });
148
192
  }
149
193
  async getMYOBCredentials() {
150
- return this.request("/agent/myob/credentials");
194
+ const raw = await this.request("/agent/connect/myob/credentials");
195
+ return {
196
+ accessToken: raw.accessToken,
197
+ accessTokenExpiresAt: raw.accessTokenExpiresAt ?? "",
198
+ myobBusinessId: raw.myobBusinessId,
199
+ clientId: raw.clientId
200
+ };
151
201
  }
152
202
  async refreshMYOBToken() {
153
- return this.request("/agent/myob/token", { method: "POST" });
203
+ return this.request("/agent/connect/myob/refresh", { method: "POST" });
154
204
  }
155
205
  async getTeamsCredentials() {
156
206
  return this.request("/agent/microsoft/credentials");
package/dist/index.d.cts CHANGED
@@ -1,262 +1,7 @@
1
- //#region ../../packages-internal/types/dist/access.d.ts
1
+ import { ChangelogAction, ChangelogActor, ChangelogEntry, ChangelogEntry as ChangelogEntry$1, EncryptedEnvelopeV1, EncryptedEnvelopeV1 as EncryptedEnvelopeV1$1, Field, FieldEnvelope, FieldEnvelope as FieldEnvelope$1, FieldFormat, FieldFormat as FieldFormat$1, FieldSensitivity, FieldSensitivity as FieldSensitivity$1, FieldView, GeneratedDataKey, GeneratedDataKey as GeneratedDataKey$1, IntegrationConfigResult, IntegrationConfigResult as IntegrationConfigResult$1, IntegrationConfigSchemaField, IntegrationInstall, IntegrationInstall as IntegrationInstall$1, RegistryEntry, RegistryEntry as RegistryEntry$1, ScopeInfo, ScopeInfo as ScopeInfo$1, SecretAggregate, SecretAggregate as SecretAggregate$1, SecretCategory, SecretCategory as SecretCategory$1, SecretMetadata, SecretMetadata as SecretMetadata$1, SecretScope, SecretScope as SecretScope$1 } from "@alfe/types";
2
2
 
3
- /**
4
- * The four resource scopes at which a permission can apply.
5
- * Order is meaningful: broader scopes first (`org`) → narrower last (`agent`).
6
- *
7
- * `IntegrationScope` in integration.ts and `SecretScope` in secrets.ts are
8
- * intentional aliases of this same enum — there is only one concept of
9
- * "scope" in Alfe.
10
- */
11
- declare const ResourceScope: {
12
- readonly Org: "org";
13
- readonly Team: "team";
14
- readonly Project: "project";
15
- readonly Agent: "agent";
16
- };
17
- type ResourceScope = (typeof ResourceScope)[keyof typeof ResourceScope];
18
- /** Ordered tuple of resource scope string values (broad → narrow). */
19
- //#endregion
20
- //#region ../../packages-internal/types/dist/integration.d.ts
21
- /** Controls where an integration appears: public (everyone), hidden (nowhere) */
22
- declare const IntegrationVisibility: {
23
- readonly Public: "public";
24
- readonly Hidden: "hidden";
25
- };
26
- type IntegrationVisibility = (typeof IntegrationVisibility)[keyof typeof IntegrationVisibility];
27
- /** Scope at which an integration is installed */
28
- declare const IntegrationScope: {
29
- readonly Org: "org";
30
- readonly Team: "team";
31
- readonly Project: "project";
32
- readonly Agent: "agent";
33
- };
34
- type IntegrationScope = ResourceScope;
35
- declare const IntegrationDesiredStatus: {
36
- readonly Active: "active";
37
- readonly Removed: "removed";
38
- };
39
- type IntegrationDesiredStatus = (typeof IntegrationDesiredStatus)[keyof typeof IntegrationDesiredStatus];
40
- declare const IntegrationActualStatus: {
41
- readonly Installing: "installing";
42
- readonly Active: "active";
43
- readonly Error: "error";
44
- readonly Removing: "removing";
45
- readonly Inactive: "inactive";
46
- readonly Unknown: "unknown";
47
- };
48
- type IntegrationActualStatus = (typeof IntegrationActualStatus)[keyof typeof IntegrationActualStatus];
49
- interface IntegrationInstall {
50
- scope: IntegrationScope;
51
- scopeId: string;
52
- integrationId: string;
53
- tenantId: string;
54
- desiredStatus: IntegrationDesiredStatus;
55
- actualStatus: IntegrationActualStatus;
56
- version: string;
57
- config: Record<string, unknown>;
58
- errorMessage: string;
59
- installedAt: string;
60
- updatedAt: string;
61
- }
62
- /** @deprecated Use IntegrationInstall instead */
63
-
64
- interface IntegrationConfigSchemaField {
65
- key: string;
66
- label: string;
67
- type: string;
68
- description?: string;
69
- required?: boolean;
70
- default?: string | number | boolean;
71
- options?: string[];
72
- select_options?: {
73
- value: string;
74
- label: string;
75
- }[];
76
- oauth_provider?: string;
77
- oauth_scopes?: string[];
78
- oauth_integration_id?: string;
79
- editable?: string;
80
- hidden?: boolean;
81
- }
82
- interface IntegrationConfigResult {
83
- integrationId: string;
84
- config: Record<string, unknown>;
85
- configSchema: IntegrationConfigSchemaField[];
86
- }
87
- interface RegistryEntry {
88
- id: string;
89
- name: string;
90
- description: string;
91
- versions: string[];
92
- latest: string;
93
- repository: string;
94
- commit: string;
95
- icon?: string;
96
- author?: {
97
- name: string;
98
- url?: string;
99
- } | string;
100
- pricing?: {
101
- type: "free" | "paid" | "usage";
102
- price?: number;
103
- currency?: string;
104
- interval?: "month" | "year";
105
- description?: string;
106
- };
107
- features?: string[];
108
- preview_images?: string[];
109
- config_schema?: IntegrationConfigSchemaField[];
110
- supported_agents?: string[];
111
- /** Scopes where this integration can be installed */
112
- supported_scopes?: IntegrationScope[];
113
- /** Visibility status — controls where integration appears */
114
- visibility?: IntegrationVisibility;
115
- }
116
- //# sourceMappingURL=integration.d.ts.map
117
- //#endregion
118
- //#region ../../packages-internal/types/dist/secrets.d.ts
119
- /** Scope levels at which a secret can be owned. Aliased to ResourceScope. */
120
- type SecretScope = ResourceScope;
121
- /**
122
- * v1 encrypted envelope as persisted by services/secrets and exchanged with
123
- * agents. Values are AES-256-GCM ciphertext; iv/authTag/ciphertext/dataKeyCiphertext
124
- * are all base64-encoded.
125
- */
126
- interface EncryptedEnvelopeV1 {
127
- version: 1;
128
- iv: string;
129
- ciphertext: string;
130
- authTag: string;
131
- dataKeyCiphertext: string;
132
- }
133
- /**
134
- * Display/validation hint for a field's value. `"json"` signals that the
135
- * string is a JSON-stringified payload that consumers should `JSON.parse`.
136
- */
137
- declare const FIELD_FORMATS: readonly ["text", "email", "url", "phone", "date", "number", "json"];
138
- type FieldFormat = (typeof FIELD_FORMATS)[number];
139
- /**
140
- * Whether a field is stored in plaintext (visible to anyone with read access)
141
- * or encrypted (requires KMS + the right encryption context to read).
142
- */
143
- declare const FIELD_SENSITIVITIES: readonly ["plaintext", "encrypted"];
144
- type FieldSensitivity = (typeof FIELD_SENSITIVITIES)[number];
145
- /**
146
- * A field on a secret. `value` is always a string at the wire; for encrypted
147
- * fields it's the plaintext at the API edge (the service encrypts before
148
- * persistence). Reads from the dashboard omit `value` for encrypted fields;
149
- * agents get a `FieldEnvelope` instead and decrypt locally.
150
- */
151
- interface Field {
152
- key: string;
153
- format?: FieldFormat;
154
- sensitivity: FieldSensitivity;
155
- value: string;
156
- }
157
- /**
158
- * Secret category — drives icon/template/filter behaviour. Defaults to
159
- * `"other"` for migrated rows.
160
- */
161
- declare const SECRET_CATEGORIES: readonly ["login", "api_key", "database", "ssh_key", "certificate", "secure_note", "credit_card", "identity", "wifi", "other"];
162
- type SecretCategory = (typeof SECRET_CATEGORIES)[number];
163
- /**
164
- * One field as exposed to readers. Encrypted fields have no `value` on the
165
- * dashboard read path; the agent-side aggregate carries `envelope` instead.
166
- */
167
- interface FieldView {
168
- key: string;
169
- format?: FieldFormat;
170
- sensitivity: FieldSensitivity;
171
- /** Present for `sensitivity: "plaintext"` only. */
172
- value?: string;
173
- /** Present for `sensitivity: "encrypted"` on agent-side reads only. */
174
- envelope?: EncryptedEnvelopeV1;
175
- /** Plaintext fields that opt into `format: "json"` are pre-parsed for callers. */
176
- parsedValue?: unknown;
177
- rotatedAt?: string;
178
- createdAt: string;
179
- updatedAt: string;
180
- }
181
- /** A secret as assembled from its multi-row aggregate. */
182
- interface SecretAggregate {
183
- secretId: string;
184
- secretName: string;
185
- description?: string;
186
- tags: string[];
187
- category: SecretCategory;
188
- fields: FieldView[];
189
- changelogVersion: number;
190
- createdAt: string;
191
- updatedAt: string;
192
- }
193
- /** Metadata-only projection — used by list endpoints. */
194
- interface SecretMetadata {
195
- secretId: string;
196
- secretName: string;
197
- description?: string;
198
- tags: string[];
199
- category: SecretCategory;
200
- fieldKeys: string[];
201
- changelogVersion: number;
202
- createdAt: string;
203
- updatedAt: string;
204
- }
205
- /**
206
- * Per-field encrypted envelope returned to agents on the agent-side aggregate.
207
- * Agents decrypt locally using a data key fetched from `/decrypt-data-key`.
208
- */
209
- interface FieldEnvelope {
210
- key: string;
211
- format?: FieldFormat;
212
- envelope: EncryptedEnvelopeV1;
213
- rotatedAt?: string;
214
- createdAt: string;
215
- updatedAt: string;
216
- }
217
- /** A scope the caller can read or write secrets in. */
218
- interface ScopeInfo {
219
- scope: SecretScope;
220
- scopeId: string;
221
- name?: string;
222
- }
223
- /**
224
- * KMS-issued data key, returned by the secrets service's
225
- * `/secrets/generate-data-key` KMS proxy endpoint. The plaintext key is
226
- * returned base64-encoded; callers MUST decode it to a Buffer and zero the
227
- * Buffer after use — never keep the plaintext as a JS string.
228
- */
229
- interface GeneratedDataKey {
230
- plaintextKey: string;
231
- dataKeyCiphertext: string;
232
- }
233
- /**
234
- * Action types recorded in the secret changelog. Append-only.
235
- */
236
- declare const CHANGELOG_ACTIONS: readonly ["created", "deleted", "metadata_updated", "field_added", "field_rotated", "field_removed", "tag_added", "tag_removed"];
237
- type ChangelogAction = (typeof CHANGELOG_ACTIONS)[number];
238
- /** Who triggered a changelog entry. */
239
- interface ChangelogActor {
240
- kind: "user" | "agent" | "system";
241
- id: string;
242
- }
243
- /**
244
- * One audit row from the secret's changelog. Metadata only — never carries
245
- * field VALUES (old or new). Rolling back a rotated secret is intentionally
246
- * not supported.
247
- */
248
- interface ChangelogEntry {
249
- changelogVersion: number;
250
- action: ChangelogAction;
251
- fieldKey?: string;
252
- fieldSensitivity?: FieldSensitivity;
253
- changedBy: ChangelogActor;
254
- reason?: string;
255
- timestamp: string;
256
- }
257
- //# sourceMappingURL=secrets.d.ts.map
258
- //#endregion
259
3
  //#region src/index.d.ts
4
+
260
5
  interface AgentApiClientConfig {
261
6
  apiKey: string;
262
7
  apiUrl: string;
@@ -402,14 +147,14 @@ declare class AgentApiClient {
402
147
  downloadUrl: string;
403
148
  expiresIn: number;
404
149
  }>;
405
- listIntegrations(): Promise<IntegrationInstall[]>;
406
- getIntegrationConfig(integrationId: string): Promise<IntegrationConfigResult>;
150
+ listIntegrations(): Promise<IntegrationInstall$1[]>;
151
+ getIntegrationConfig(integrationId: string): Promise<IntegrationConfigResult$1>;
407
152
  updateIntegrationConfig(integrationId: string, config: Record<string, unknown>): Promise<void>;
408
153
  installIntegration(integrationId: string, options?: {
409
154
  version?: string;
410
155
  config?: Record<string, unknown>;
411
- }): Promise<IntegrationInstall>;
412
- removeIntegration(integrationId: string): Promise<IntegrationInstall>;
156
+ }): Promise<IntegrationInstall$1>;
157
+ removeIntegration(integrationId: string): Promise<IntegrationInstall$1>;
413
158
  getOAuthUrl(provider: string, scopes?: string[]): Promise<{
414
159
  url: string;
415
160
  provider: string;
@@ -421,37 +166,33 @@ declare class AgentApiClient {
421
166
  config?: Record<string, string>;
422
167
  }>;
423
168
  getRegistry(): Promise<{
424
- integrations: RegistryEntry[];
169
+ integrations: RegistryEntry$1[];
425
170
  }>;
171
+ /**
172
+ * Returns every connected Google account for the agent. Multi-account by
173
+ * design — the openclaw-google plugin requires the LLM to pass `email`
174
+ * explicitly to `google_run_command` so an account is always selected
175
+ * deliberately.
176
+ *
177
+ * 2026-05-14 (connections-redesign PR 1): the legacy flat shape (`email`,
178
+ * `refreshToken`, `accessToken`, etc., populated from the default account)
179
+ * is gone. Iterate over `accounts`.
180
+ */
426
181
  getGoogleCredentials(): Promise<{
427
- accounts?: {
182
+ accounts: {
428
183
  email: string;
429
184
  refreshToken: string;
430
185
  clientId: string;
431
186
  clientSecret: string;
432
- enabledServices?: string[];
433
- isDefault: boolean;
434
187
  displayName?: string;
188
+ connectedAt?: string;
435
189
  }[];
436
- email: string;
437
- refreshToken: string;
438
- clientId: string;
439
- clientSecret: string;
440
- projectId: string;
441
- enabledServices?: string[];
442
190
  }>;
443
191
  disconnectGoogleAccount(email: string): Promise<{
444
192
  accounts: {
445
193
  email: string;
446
194
  displayName?: string;
447
- isDefault: boolean;
448
- }[];
449
- }>;
450
- setDefaultGoogleAccount(email: string): Promise<{
451
- accounts: {
452
- email: string;
453
- displayName?: string;
454
- isDefault: boolean;
195
+ connectedAt?: string;
455
196
  }[];
456
197
  }>;
457
198
  getGoogleChatCredentials(): Promise<{
@@ -559,11 +300,11 @@ declare class AgentApiClient {
559
300
  * to reach them.
560
301
  */
561
302
  generateSecretDataKey(args: {
562
- scope: SecretScope;
303
+ scope: SecretScope$1;
563
304
  scopeId: string;
564
305
  secretId: string;
565
306
  fieldKey: string;
566
- }): Promise<GeneratedDataKey>;
307
+ }): Promise<GeneratedDataKey$1>;
567
308
  /**
568
309
  * Unwrap a wrapped data key so the agent can decrypt the envelope locally.
569
310
  * `fieldKey` MUST match the value supplied when the data key was generated
@@ -571,7 +312,7 @@ declare class AgentApiClient {
571
312
  * `InvalidCiphertextException`.
572
313
  */
573
314
  decryptSecretDataKey(args: {
574
- scope: SecretScope;
315
+ scope: SecretScope$1;
575
316
  scopeId: string;
576
317
  secretId: string;
577
318
  fieldKey: string;
@@ -586,57 +327,57 @@ declare class AgentApiClient {
586
327
  * Plaintext fields ship the value inline.
587
328
  */
588
329
  createSecret(args: {
589
- scope: SecretScope;
330
+ scope: SecretScope$1;
590
331
  scopeId: string;
591
332
  secretId: string;
592
333
  secretName: string;
593
- category?: SecretCategory;
334
+ category?: SecretCategory$1;
594
335
  description?: string;
595
336
  tags?: string[];
596
337
  fields: {
597
338
  key: string;
598
- format?: FieldFormat;
599
- sensitivity: FieldSensitivity;
339
+ format?: FieldFormat$1;
340
+ sensitivity: FieldSensitivity$1;
600
341
  value?: string;
601
- envelope?: EncryptedEnvelopeV1;
342
+ envelope?: EncryptedEnvelopeV1$1;
602
343
  }[];
603
344
  reason?: string;
604
- }): Promise<SecretAggregate>;
345
+ }): Promise<SecretAggregate$1>;
605
346
  /** Fetch the secret aggregate plus per-field encrypted envelopes. */
606
347
  getSecret(args: {
607
- scope: SecretScope;
348
+ scope: SecretScope$1;
608
349
  scopeId: string;
609
350
  secretId: string;
610
351
  }): Promise<{
611
- aggregate: SecretAggregate;
612
- envelopes: FieldEnvelope[];
352
+ aggregate: SecretAggregate$1;
353
+ envelopes: FieldEnvelope$1[];
613
354
  }>;
614
355
  /** Fetch one field. Plaintext: value inline. Encrypted: envelope. */
615
356
  getSecretField(args: {
616
- scope: SecretScope;
357
+ scope: SecretScope$1;
617
358
  scopeId: string;
618
359
  secretId: string;
619
360
  fieldKey: string;
620
361
  }): Promise<{
621
362
  key: string;
622
- sensitivity: FieldSensitivity;
623
- format?: FieldFormat;
363
+ sensitivity: FieldSensitivity$1;
364
+ format?: FieldFormat$1;
624
365
  value?: string;
625
- envelope?: EncryptedEnvelopeV1;
366
+ envelope?: EncryptedEnvelopeV1$1;
626
367
  rotatedAt?: string;
627
368
  createdAt: string;
628
369
  updatedAt: string;
629
370
  }>;
630
371
  /** Add OR rotate one field. */
631
372
  setSecretField(args: {
632
- scope: SecretScope;
373
+ scope: SecretScope$1;
633
374
  scopeId: string;
634
375
  secretId: string;
635
376
  fieldKey: string;
636
- sensitivity: FieldSensitivity;
637
- format?: FieldFormat;
377
+ sensitivity: FieldSensitivity$1;
378
+ format?: FieldFormat$1;
638
379
  value?: string;
639
- envelope?: EncryptedEnvelopeV1;
380
+ envelope?: EncryptedEnvelopeV1$1;
640
381
  reason?: string;
641
382
  }): Promise<{
642
383
  fieldKey: string;
@@ -644,49 +385,49 @@ declare class AgentApiClient {
644
385
  }>;
645
386
  /** Remove one field. */
646
387
  removeSecretField(args: {
647
- scope: SecretScope;
388
+ scope: SecretScope$1;
648
389
  scopeId: string;
649
390
  secretId: string;
650
391
  fieldKey: string;
651
392
  }): Promise<void>;
652
393
  /** Update secret-level metadata (name/description/tags/category). */
653
394
  updateSecretMetadata(args: {
654
- scope: SecretScope;
395
+ scope: SecretScope$1;
655
396
  scopeId: string;
656
397
  secretId: string;
657
398
  secretName?: string;
658
399
  description?: string;
659
400
  tags?: string[];
660
- category?: SecretCategory;
401
+ category?: SecretCategory$1;
661
402
  reason?: string;
662
- }): Promise<SecretAggregate>;
403
+ }): Promise<SecretAggregate$1>;
663
404
  /** List metadata for secrets in a scope. Optional filters route through the byFacet GSI. */
664
405
  listSecrets(args: {
665
- scope: SecretScope;
406
+ scope: SecretScope$1;
666
407
  scopeId: string;
667
- category?: SecretCategory;
408
+ category?: SecretCategory$1;
668
409
  tag?: string;
669
410
  fieldKey?: string;
670
- }): Promise<SecretMetadata[]>;
411
+ }): Promise<SecretMetadata$1[]>;
671
412
  /** Bounded changelog read — metadata-only audit entries. */
672
413
  getSecretHistory(args: {
673
- scope: SecretScope;
414
+ scope: SecretScope$1;
674
415
  scopeId: string;
675
416
  secretId: string;
676
417
  limit?: number;
677
418
  cursor?: string;
678
419
  }): Promise<{
679
- entries: ChangelogEntry[];
420
+ entries: ChangelogEntry$1[];
680
421
  nextCursor?: string;
681
422
  }>;
682
423
  /** Delete a secret (and all its field rows + tag rows + changelog rows). */
683
424
  deleteSecret(args: {
684
- scope: SecretScope;
425
+ scope: SecretScope$1;
685
426
  scopeId: string;
686
427
  secretId: string;
687
428
  }): Promise<void>;
688
429
  /** Enumerate scopes (org/team/project/agent) this agent can access. */
689
- listSecretScopes(): Promise<ScopeInfo[]>;
430
+ listSecretScopes(): Promise<ScopeInfo$1[]>;
690
431
  /**
691
432
  * Returns the calling agent's own identity context — `{ agentId, tenantId }`
692
433
  * decoded server-side from the agent API token. Used by the
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.cts","names":["PERMISSION_CATALOG","Record","TENANT_ALLOWED_SUBJECTS","TenantAllowedSubject","ResourceScope","RESOURCE_SCOPES","AccessLevel","ScopedAccess","AllScopedAccess","ResourceScope","DEFAULT_INTEGRATIONS","IntegrationVisibility","INTEGRATION_VISIBILITIES","IntegrationScope","INTEGRATION_SCOPES","IntegrationDesiredStatus","INTEGRATION_DESIRED_STATUSES","IntegrationActualStatus","INTEGRATION_ACTUAL_STATUSES","IntegrationInstall","Record","AgentIntegration","OrgIntegration","IntegrationConfigSchemaField","IntegrationConfigResult","RegistryEntry","ResourceScope","SecretScope","SECRET_SCOPES","EncryptedEnvelopeV1","FIELD_FORMATS","FieldFormat","FIELD_SENSITIVITIES","FieldSensitivity","Field","SECRET_CATEGORIES","SecretCategory","FieldView","SecretAggregate","SecretMetadata","FieldEnvelope","ScopeInfo","GeneratedDataKey","CHANGELOG_ACTIONS","ChangelogAction","ChangelogActor","ChangelogEntry"],"sources":["../../../packages-internal/types/dist/access.d.ts","../../../packages-internal/types/dist/integration.d.ts","../../../packages-internal/types/dist/secrets.d.ts","../src/index.ts"],"sourcesContent":["/**\n * Runtime catalog of declared permission subjects + allowed actions.\n *\n * Mirrors the compile-time `PermissionDefinitions` augmentation in\n * `@alfe/api-core/auriclabs-roles.ts`. Kept here so browser code\n * (dashboard) can consume it without pulling in server-only deps\n * (`@middy/core`, `aws-lambda`, etc.).\n */\nexport declare const PERMISSION_CATALOG: Record<string, readonly string[]>;\n/**\n * Subjects a tenant may grant via a custom role.\n *\n * Excludes `all` (platform-admin escape hatch) and `admin_*` subjects.\n */\nexport declare const TENANT_ALLOWED_SUBJECTS: readonly [\"agent\", \"sync\", \"integration\", \"secret\", \"database\", \"template\", \"org_file\", \"team\", \"project\", \"model_policy\", \"role_management\", \"billing\", \"identity\", \"token\", \"user\", \"gateway\", \"voice\"];\nexport type TenantAllowedSubject = (typeof TENANT_ALLOWED_SUBJECTS)[number];\n/**\n * The four resource scopes at which a permission can apply.\n * Order is meaningful: broader scopes first (`org`) → narrower last (`agent`).\n *\n * `IntegrationScope` in integration.ts and `SecretScope` in secrets.ts are\n * intentional aliases of this same enum — there is only one concept of\n * \"scope\" in Alfe.\n */\nexport declare const ResourceScope: {\n readonly Org: \"org\";\n readonly Team: \"team\";\n readonly Project: \"project\";\n readonly Agent: \"agent\";\n};\nexport type ResourceScope = (typeof ResourceScope)[keyof typeof ResourceScope];\n/** Ordered tuple of resource scope string values (broad → narrow). */\nexport declare const RESOURCE_SCOPES: readonly [\"agent\" | \"team\" | \"project\" | \"org\", ...(\"agent\" | \"team\" | \"project\" | \"org\")[]];\nexport declare const AccessLevel: {\n readonly None: \"none\";\n readonly Read: \"read\";\n readonly Write: \"write\";\n readonly Manage: \"manage\";\n};\nexport type AccessLevel = (typeof AccessLevel)[keyof typeof AccessLevel];\nexport interface ScopedAccess {\n scope: ResourceScope;\n scopeId: string;\n accessLevel: AccessLevel;\n /** Resolved role label (e.g. \"org_admin\", \"team_member\") */\n role: string;\n}\nexport interface AllScopedAccess {\n orgAccess: ScopedAccess;\n teamAccess: ScopedAccess[];\n projectAccess: ScopedAccess[];\n}\n//# sourceMappingURL=access.d.ts.map","import { ResourceScope } from \"./access.js\";\n/** Integrations auto-installed for ALL agents regardless of hosting type. Cannot be removed. */\nexport declare const DEFAULT_INTEGRATIONS: readonly string[];\n/** Controls where an integration appears: public (everyone), hidden (nowhere) */\nexport declare const IntegrationVisibility: {\n readonly Public: \"public\";\n readonly Hidden: \"hidden\";\n};\nexport type IntegrationVisibility = (typeof IntegrationVisibility)[keyof typeof IntegrationVisibility];\nexport declare const INTEGRATION_VISIBILITIES: readonly [\"public\" | \"hidden\", ...(\"public\" | \"hidden\")[]];\n/** Scope at which an integration is installed */\nexport declare const IntegrationScope: {\n readonly Org: \"org\";\n readonly Team: \"team\";\n readonly Project: \"project\";\n readonly Agent: \"agent\";\n};\nexport type IntegrationScope = ResourceScope;\nexport declare const INTEGRATION_SCOPES: readonly [\"agent\" | \"team\" | \"project\" | \"org\", ...(\"agent\" | \"team\" | \"project\" | \"org\")[]];\nexport declare const IntegrationDesiredStatus: {\n readonly Active: \"active\";\n readonly Removed: \"removed\";\n};\nexport type IntegrationDesiredStatus = (typeof IntegrationDesiredStatus)[keyof typeof IntegrationDesiredStatus];\nexport declare const INTEGRATION_DESIRED_STATUSES: readonly [\"active\" | \"removed\", ...(\"active\" | \"removed\")[]];\nexport declare const IntegrationActualStatus: {\n readonly Installing: \"installing\";\n readonly Active: \"active\";\n readonly Error: \"error\";\n readonly Removing: \"removing\";\n readonly Inactive: \"inactive\";\n readonly Unknown: \"unknown\";\n};\nexport type IntegrationActualStatus = (typeof IntegrationActualStatus)[keyof typeof IntegrationActualStatus];\nexport declare const INTEGRATION_ACTUAL_STATUSES: readonly [\"active\" | \"error\" | \"installing\" | \"removing\" | \"inactive\" | \"unknown\", ...(\"active\" | \"error\" | \"installing\" | \"removing\" | \"inactive\" | \"unknown\")[]];\nexport interface IntegrationInstall {\n scope: IntegrationScope;\n scopeId: string;\n integrationId: string;\n tenantId: string;\n desiredStatus: IntegrationDesiredStatus;\n actualStatus: IntegrationActualStatus;\n version: string;\n config: Record<string, unknown>;\n errorMessage: string;\n installedAt: string;\n updatedAt: string;\n}\n/** @deprecated Use IntegrationInstall instead */\nexport type AgentIntegration = IntegrationInstall;\n/** Org-scoped integration install */\nexport type OrgIntegration = IntegrationInstall;\nexport interface IntegrationConfigSchemaField {\n key: string;\n label: string;\n type: string;\n description?: string;\n required?: boolean;\n default?: string | number | boolean;\n options?: string[];\n select_options?: {\n value: string;\n label: string;\n }[];\n oauth_provider?: string;\n oauth_scopes?: string[];\n oauth_integration_id?: string;\n editable?: string;\n hidden?: boolean;\n}\nexport interface IntegrationConfigResult {\n integrationId: string;\n config: Record<string, unknown>;\n configSchema: IntegrationConfigSchemaField[];\n}\nexport interface RegistryEntry {\n id: string;\n name: string;\n description: string;\n versions: string[];\n latest: string;\n repository: string;\n commit: string;\n icon?: string;\n author?: {\n name: string;\n url?: string;\n } | string;\n pricing?: {\n type: \"free\" | \"paid\" | \"usage\";\n price?: number;\n currency?: string;\n interval?: \"month\" | \"year\";\n description?: string;\n };\n features?: string[];\n preview_images?: string[];\n config_schema?: IntegrationConfigSchemaField[];\n supported_agents?: string[];\n /** Scopes where this integration can be installed */\n supported_scopes?: IntegrationScope[];\n /** Visibility status — controls where integration appears */\n visibility?: IntegrationVisibility;\n}\n//# sourceMappingURL=integration.d.ts.map","/**\n * Secrets types — shared between services/secrets, @alfe.ai/agent-api-client,\n * the openclaw-secrets plugin, and dashboard clients.\n *\n * Server-side crypto and KMS glue live in @alfe/secret-store (Node/AWS-only);\n * this module is a pure, dependency-free shape contract safe for every\n * environment the agent-api-client ships to.\n */\nimport type { ResourceScope } from \"./access.js\";\n/** Scope levels at which a secret can be owned. Aliased to ResourceScope. */\nexport type SecretScope = ResourceScope;\nexport declare const SECRET_SCOPES: readonly [\"agent\" | \"team\" | \"project\" | \"org\", ...(\"agent\" | \"team\" | \"project\" | \"org\")[]];\n/**\n * v1 encrypted envelope as persisted by services/secrets and exchanged with\n * agents. Values are AES-256-GCM ciphertext; iv/authTag/ciphertext/dataKeyCiphertext\n * are all base64-encoded.\n */\nexport interface EncryptedEnvelopeV1 {\n version: 1;\n iv: string;\n ciphertext: string;\n authTag: string;\n dataKeyCiphertext: string;\n}\n/**\n * Display/validation hint for a field's value. `\"json\"` signals that the\n * string is a JSON-stringified payload that consumers should `JSON.parse`.\n */\nexport declare const FIELD_FORMATS: readonly [\"text\", \"email\", \"url\", \"phone\", \"date\", \"number\", \"json\"];\nexport type FieldFormat = (typeof FIELD_FORMATS)[number];\n/**\n * Whether a field is stored in plaintext (visible to anyone with read access)\n * or encrypted (requires KMS + the right encryption context to read).\n */\nexport declare const FIELD_SENSITIVITIES: readonly [\"plaintext\", \"encrypted\"];\nexport type FieldSensitivity = (typeof FIELD_SENSITIVITIES)[number];\n/**\n * A field on a secret. `value` is always a string at the wire; for encrypted\n * fields it's the plaintext at the API edge (the service encrypts before\n * persistence). Reads from the dashboard omit `value` for encrypted fields;\n * agents get a `FieldEnvelope` instead and decrypt locally.\n */\nexport interface Field {\n key: string;\n format?: FieldFormat;\n sensitivity: FieldSensitivity;\n value: string;\n}\n/**\n * Secret category — drives icon/template/filter behaviour. Defaults to\n * `\"other\"` for migrated rows.\n */\nexport declare const SECRET_CATEGORIES: readonly [\"login\", \"api_key\", \"database\", \"ssh_key\", \"certificate\", \"secure_note\", \"credit_card\", \"identity\", \"wifi\", \"other\"];\nexport type SecretCategory = (typeof SECRET_CATEGORIES)[number];\n/**\n * One field as exposed to readers. Encrypted fields have no `value` on the\n * dashboard read path; the agent-side aggregate carries `envelope` instead.\n */\nexport interface FieldView {\n key: string;\n format?: FieldFormat;\n sensitivity: FieldSensitivity;\n /** Present for `sensitivity: \"plaintext\"` only. */\n value?: string;\n /** Present for `sensitivity: \"encrypted\"` on agent-side reads only. */\n envelope?: EncryptedEnvelopeV1;\n /** Plaintext fields that opt into `format: \"json\"` are pre-parsed for callers. */\n parsedValue?: unknown;\n rotatedAt?: string;\n createdAt: string;\n updatedAt: string;\n}\n/** A secret as assembled from its multi-row aggregate. */\nexport interface SecretAggregate {\n secretId: string;\n secretName: string;\n description?: string;\n tags: string[];\n category: SecretCategory;\n fields: FieldView[];\n changelogVersion: number;\n createdAt: string;\n updatedAt: string;\n}\n/** Metadata-only projection — used by list endpoints. */\nexport interface SecretMetadata {\n secretId: string;\n secretName: string;\n description?: string;\n tags: string[];\n category: SecretCategory;\n fieldKeys: string[];\n changelogVersion: number;\n createdAt: string;\n updatedAt: string;\n}\n/**\n * Per-field encrypted envelope returned to agents on the agent-side aggregate.\n * Agents decrypt locally using a data key fetched from `/decrypt-data-key`.\n */\nexport interface FieldEnvelope {\n key: string;\n format?: FieldFormat;\n envelope: EncryptedEnvelopeV1;\n rotatedAt?: string;\n createdAt: string;\n updatedAt: string;\n}\n/** A scope the caller can read or write secrets in. */\nexport interface ScopeInfo {\n scope: SecretScope;\n scopeId: string;\n name?: string;\n}\n/**\n * KMS-issued data key, returned by the secrets service's\n * `/secrets/generate-data-key` KMS proxy endpoint. The plaintext key is\n * returned base64-encoded; callers MUST decode it to a Buffer and zero the\n * Buffer after use — never keep the plaintext as a JS string.\n */\nexport interface GeneratedDataKey {\n plaintextKey: string;\n dataKeyCiphertext: string;\n}\n/**\n * Action types recorded in the secret changelog. Append-only.\n */\nexport declare const CHANGELOG_ACTIONS: readonly [\"created\", \"deleted\", \"metadata_updated\", \"field_added\", \"field_rotated\", \"field_removed\", \"tag_added\", \"tag_removed\"];\nexport type ChangelogAction = (typeof CHANGELOG_ACTIONS)[number];\n/** Who triggered a changelog entry. */\nexport interface ChangelogActor {\n kind: \"user\" | \"agent\" | \"system\";\n id: string;\n}\n/**\n * One audit row from the secret's changelog. Metadata only — never carries\n * field VALUES (old or new). Rolling back a rotated secret is intentionally\n * not supported.\n */\nexport interface ChangelogEntry {\n changelogVersion: number;\n action: ChangelogAction;\n fieldKey?: string;\n fieldSensitivity?: FieldSensitivity;\n changedBy: ChangelogActor;\n reason?: string;\n timestamp: string;\n}\n//# sourceMappingURL=secrets.d.ts.map"],"mappings":"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"}
1
+ {"version":3,"file":"index.d.cts","names":[],"sources":["../src/index.ts"],"mappings":"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"}