@syfthub/sdk 0.1.0 → 0.2.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/dist/index.js CHANGED
@@ -124,11 +124,21 @@ var init_errors = __esm({
124
124
  init_errors();
125
125
 
126
126
  // src/utils.ts
127
+ var snakeToCamelCache = /* @__PURE__ */ new Map();
128
+ var camelToSnakeCache = /* @__PURE__ */ new Map();
127
129
  function snakeToCamel(str) {
128
- return str.replace(/_([a-z])/g, (_, letter) => letter.toUpperCase());
130
+ const cached = snakeToCamelCache.get(str);
131
+ if (cached !== void 0) return cached;
132
+ const result = str.replace(/_([a-z])/g, (_, letter) => letter.toUpperCase());
133
+ snakeToCamelCache.set(str, result);
134
+ return result;
129
135
  }
130
136
  function camelToSnake(str) {
131
- return str.replace(/[A-Z]/g, (letter) => `_${letter.toLowerCase()}`);
137
+ const cached = camelToSnakeCache.get(str);
138
+ if (cached !== void 0) return cached;
139
+ const result = str.replace(/[A-Z]/g, (letter) => `_${letter.toLowerCase()}`);
140
+ camelToSnakeCache.set(str, result);
141
+ return result;
132
142
  }
133
143
  var ISO_DATE_REGEX = /^\d{4}-\d{2}-\d{2}T\d{2}:\d{2}:\d{2}/;
134
144
  function isISODateString(value) {
@@ -141,6 +151,9 @@ function transformKeys(obj, keyTransformer, parseDates = true) {
141
151
  if (Array.isArray(obj)) {
142
152
  return obj.map((item) => transformKeys(item, keyTransformer, parseDates));
143
153
  }
154
+ if (obj instanceof Date) {
155
+ return obj.toISOString();
156
+ }
144
157
  if (parseDates && isISODateString(obj)) {
145
158
  return new Date(obj);
146
159
  }
@@ -168,9 +181,61 @@ function buildSearchParams(params) {
168
181
  }
169
182
  return searchParams;
170
183
  }
184
+ async function* readSSEEvents(response) {
185
+ if (!response.body) return;
186
+ const reader = response.body.getReader();
187
+ const decoder = new TextDecoder();
188
+ let buffer = "";
189
+ let currentEvent = null;
190
+ let currentData = "";
191
+ const flush = function* () {
192
+ if (currentData) {
193
+ yield { event: currentEvent ?? "message", data: currentData };
194
+ }
195
+ currentEvent = null;
196
+ currentData = "";
197
+ };
198
+ try {
199
+ while (true) {
200
+ const { done, value } = await reader.read();
201
+ if (done) break;
202
+ buffer += decoder.decode(value, { stream: true });
203
+ const lines = buffer.split("\n");
204
+ buffer = lines.pop() ?? "";
205
+ for (const line of lines) {
206
+ const trimmed = line.trim();
207
+ if (!trimmed) {
208
+ yield* flush();
209
+ continue;
210
+ }
211
+ if (trimmed.startsWith("event:")) {
212
+ currentEvent = trimmed.slice(6).trim();
213
+ } else if (trimmed.startsWith("data:")) {
214
+ if (currentData && currentEvent === null) {
215
+ yield* flush();
216
+ }
217
+ currentData = trimmed.slice(5).trim();
218
+ }
219
+ }
220
+ }
221
+ const trailing = buffer.trim();
222
+ if (trailing) {
223
+ if (trailing.startsWith("event:")) {
224
+ currentEvent = trailing.slice(6).trim();
225
+ } else if (trailing.startsWith("data:")) {
226
+ if (currentData && currentEvent === null) {
227
+ yield* flush();
228
+ }
229
+ currentData = trailing.slice(5).trim();
230
+ }
231
+ }
232
+ yield* flush();
233
+ } finally {
234
+ reader.releaseLock();
235
+ }
236
+ }
171
237
 
172
238
  // src/http.ts
173
- init_errors();
174
239
  var HTTPClient = class {
175
240
  /**
176
241
  * Create a new HTTP client.
@@ -184,17 +249,32 @@ var HTTPClient = class {
184
249
  }
185
250
  accessToken = null;
186
251
  refreshToken = null;
252
+ apiToken = null;
187
253
  isRefreshing = false;
188
254
  refreshPromise = null;
189
255
  /**
190
- * Set authentication tokens.
256
+ * Set JWT authentication tokens.
257
+ * Clears any API token if set.
191
258
  */
192
259
  setTokens(access, refresh) {
193
260
  this.accessToken = access;
194
261
  this.refreshToken = refresh;
262
+ this.apiToken = null;
195
263
  }
196
264
  /**
197
- * Get current authentication tokens.
265
+ * Set API token for authentication.
266
+ * Clears any JWT tokens if set.
267
+ *
268
+ * @param token - The API token (starts with "syft_")
269
+ */
270
+ setApiToken(token) {
271
+ this.apiToken = token;
272
+ this.accessToken = null;
273
+ this.refreshToken = null;
274
+ }
275
+ /**
276
+ * Get current JWT authentication tokens.
277
+ * Returns null if using API token authentication.
198
278
  */
199
279
  getTokens() {
200
280
  if (!this.accessToken || !this.refreshToken) {
@@ -207,17 +287,30 @@ var HTTPClient = class {
207
287
  };
208
288
  }
209
289
  /**
210
- * Clear authentication tokens.
290
+ * Check if using API token authentication.
291
+ */
292
+ isUsingApiToken() {
293
+ return this.apiToken !== null;
294
+ }
295
+ /**
296
+ * Clear all authentication (JWT and API tokens).
211
297
  */
212
298
  clearTokens() {
213
299
  this.accessToken = null;
214
300
  this.refreshToken = null;
301
+ this.apiToken = null;
215
302
  }
216
303
  /**
217
- * Check if the client has valid tokens.
304
+ * Check if the client has valid authentication (JWT or API token).
218
305
  */
219
306
  hasTokens() {
220
- return this.accessToken !== null;
307
+ return this.accessToken !== null || this.apiToken !== null;
308
+ }
309
+ /**
310
+ * Get the current bearer token (API token or JWT access token).
311
+ */
312
+ getBearerToken() {
313
+ return this.apiToken ?? this.accessToken;
221
314
  }
222
315
  /**
223
316
  * Make a GET request.
@@ -263,8 +356,9 @@ var HTTPClient = class {
263
356
  }
264
357
  }
265
358
  const headers = {};
266
- if (includeAuth && this.accessToken) {
267
- headers["Authorization"] = `Bearer ${this.accessToken}`;
359
+ const bearerToken = this.getBearerToken();
360
+ if (includeAuth && bearerToken) {
361
+ headers["Authorization"] = `Bearer ${bearerToken}`;
268
362
  }
269
363
  let requestBody;
270
364
  if (body !== void 0) {
@@ -292,7 +386,7 @@ var HTTPClient = class {
292
386
  signal: controller.signal
293
387
  });
294
388
  clearTimeout(timeoutId);
295
- if (response.status === 401 && includeAuth && this.refreshToken) {
389
+ if (response.status === 401 && includeAuth && this.refreshToken && !this.apiToken) {
296
390
  await this.attemptTokenRefresh();
297
391
  return this.request(method, path, {
298
392
  ...options,
@@ -479,6 +573,110 @@ var HTTPClient = class {
479
573
  // src/client.ts
480
574
  init_errors();
481
575
 
576
+ // src/resources/api-tokens.ts
577
+ var APITokensResource = class {
578
+ constructor(http) {
579
+ this.http = http;
580
+ }
581
+ /**
582
+ * Create a new API token.
583
+ *
584
+ * IMPORTANT: The returned token is only shown ONCE!
585
+ * Make sure to save it immediately - it cannot be retrieved later.
586
+ *
587
+ * @param input - Token creation options
588
+ * @returns The created token with the full token value
589
+ *
590
+ * @example
591
+ * const result = await client.apiTokens.create({
592
+ * name: 'CI/CD Pipeline',
593
+ * scopes: ['write'],
594
+ * expiresAt: new Date('2025-12-31'),
595
+ * });
596
+ *
597
+ * // SAVE THIS TOKEN - it will not be shown again!
598
+ * console.log(result.token);
599
+ */
600
+ async create(input) {
601
+ return this.http.post("/api/v1/auth/tokens", input);
602
+ }
603
+ /**
604
+ * List all API tokens for the current user.
605
+ *
606
+ * By default, only active tokens are returned.
607
+ * Note: The full token value is never returned - only the prefix.
608
+ *
609
+ * @param options - List options
610
+ * @returns List of tokens and total count
611
+ *
612
+ * @example
613
+ * // List active tokens
614
+ * const { tokens, total } = await client.apiTokens.list();
615
+ *
616
+ * // Include revoked tokens
617
+ * const all = await client.apiTokens.list({ includeInactive: true });
618
+ */
619
+ async list(options = {}) {
620
+ const params = {};
621
+ if (options.includeInactive !== void 0) {
622
+ params.include_inactive = options.includeInactive;
623
+ }
624
+ if (options.skip !== void 0) {
625
+ params.skip = options.skip;
626
+ }
627
+ if (options.limit !== void 0) {
628
+ params.limit = options.limit;
629
+ }
630
+ return this.http.get("/api/v1/auth/tokens", params);
631
+ }
632
+ /**
633
+ * Get a single API token by ID.
634
+ *
635
+ * Note: The full token value is never returned - only the prefix.
636
+ *
637
+ * @param tokenId - The token ID
638
+ * @returns The token details
639
+ *
640
+ * @example
641
+ * const token = await client.apiTokens.get(123);
642
+ * console.log(token.name, token.lastUsedAt);
643
+ */
644
+ async get(tokenId) {
645
+ return this.http.get(`/api/v1/auth/tokens/${tokenId}`);
646
+ }
647
+ /**
648
+ * Update an API token's name.
649
+ *
650
+ * Only the name can be updated. Scopes and expiration cannot be
651
+ * changed after creation.
652
+ *
653
+ * @param tokenId - The token ID
654
+ * @param input - Update options
655
+ * @returns The updated token
656
+ *
657
+ * @example
658
+ * const updated = await client.apiTokens.update(123, {
659
+ * name: 'New Name',
660
+ * });
661
+ */
662
+ async update(tokenId, input) {
663
+ return this.http.patch(`/api/v1/auth/tokens/${tokenId}`, input);
664
+ }
665
+ /**
666
+ * Revoke an API token.
667
+ *
668
+ * The token becomes immediately unusable. This action cannot be undone.
669
+ *
670
+ * @param tokenId - The token ID to revoke
671
+ *
672
+ * @example
673
+ * await client.apiTokens.revoke(123);
674
+ */
675
+ async revoke(tokenId) {
676
+ await this.http.delete(`/api/v1/auth/tokens/${tokenId}`);
677
+ }
678
+ };
679
+
482
680
  // src/resources/auth.ts
483
681
  init_errors();
484
682
  var AuthResource = class {
@@ -546,8 +744,13 @@ var AuthResource = class {
546
744
  const response = await this.http.post("/api/v1/auth/register", input, {
547
745
  includeAuth: false
548
746
  });
549
- this.http.setTokens(response.accessToken, response.refreshToken);
550
- return response.user;
747
+ if (response.accessToken && response.refreshToken) {
748
+ this.http.setTokens(response.accessToken, response.refreshToken);
749
+ }
750
+ return {
751
+ user: response.user,
752
+ requiresEmailVerification: response.requiresEmailVerification
753
+ };
551
754
  }
552
755
  /**
553
756
  * Login with username/email and password.
@@ -604,11 +807,7 @@ var AuthResource = class {
604
807
  if (!tokens) {
605
808
  throw new AuthenticationError("No refresh token available");
606
809
  }
607
- const response = await this.http.post(
608
- "/api/v1/auth/refresh",
609
- { refreshToken: tokens.refreshToken },
610
- { includeAuth: false }
611
- );
810
+ const response = await this.http.post("/api/v1/auth/refresh", { refreshToken: tokens.refreshToken }, { includeAuth: false });
612
811
  this.http.setTokens(response.accessToken, response.refreshToken);
613
812
  }
614
813
  /**
@@ -625,6 +824,115 @@ var AuthResource = class {
625
824
  newPassword
626
825
  });
627
826
  }
827
+ /**
828
+ * Get the platform's authentication configuration.
829
+ *
830
+ * No authentication required. Use this to determine whether email
831
+ * verification or password reset is available.
832
+ *
833
+ * @returns AuthConfig with feature flags
834
+ */
835
+ async getAuthConfig() {
836
+ return this.http.get("/api/v1/auth/config", void 0, { includeAuth: false });
837
+ }
838
+ /**
839
+ * Verify a registration OTP and receive auth tokens.
840
+ *
841
+ * After registering when email verification is required, call this with
842
+ * the 6-digit code sent to the user's email.
843
+ *
844
+ * Idempotent: if the user is already verified, tokens are issued immediately.
845
+ *
846
+ * @param input - Email and 6-digit code
847
+ * @returns The authenticated User
848
+ * @throws {APIError} If the code is invalid or max attempts exceeded
849
+ */
850
+ async verifyOtp(input) {
851
+ const response = await this.http.post("/api/v1/auth/register/verify-otp", input, {
852
+ includeAuth: false
853
+ });
854
+ this.http.setTokens(response.accessToken, response.refreshToken);
855
+ return response.user;
856
+ }
857
+ /**
858
+ * Resend the registration OTP code.
859
+ *
860
+ * Rate-limited. Always returns successfully to prevent email enumeration.
861
+ *
862
+ * @param email - Email address to resend the OTP to
863
+ */
864
+ async resendOtp(email) {
865
+ await this.http.post(
866
+ "/api/v1/auth/register/resend-otp",
867
+ { email },
868
+ {
869
+ includeAuth: false
870
+ }
871
+ );
872
+ }
873
+ /**
874
+ * Request a password reset OTP.
875
+ *
876
+ * Always returns successfully to prevent email enumeration.
877
+ * If SMTP is not configured on the server, this is a no-op.
878
+ *
879
+ * @param input - Email address for password reset
880
+ */
881
+ async requestPasswordReset(input) {
882
+ await this.http.post("/api/v1/auth/password-reset/request", input, {
883
+ includeAuth: false
884
+ });
885
+ }
886
+ /**
887
+ * Confirm a password reset with OTP and set a new password.
888
+ *
889
+ * @param input - Email, 6-digit code, and new password
890
+ * @throws {APIError} If the code is invalid or max attempts exceeded
891
+ */
892
+ async confirmPasswordReset(input) {
893
+ await this.http.post("/api/v1/auth/password-reset/confirm", input, {
894
+ includeAuth: false
895
+ });
896
+ }
897
+ /**
898
+ * Get a peer token for NATS communication with tunneling spaces.
899
+ *
900
+ * Peer tokens are short-lived credentials that allow the aggregator to
901
+ * communicate with tunneling SyftAI Spaces via NATS pub/sub.
902
+ *
903
+ * @param targetUsernames - Usernames of the tunneling spaces to communicate with
904
+ * @returns PeerTokenResponse with token, channel, expiry, and NATS URL
905
+ * @throws {AuthenticationError} If not authenticated
906
+ *
907
+ * @example
908
+ * const peer = await client.auth.getPeerToken(['alice', 'bob']);
909
+ * console.log(`Peer channel: ${peer.peerChannel}, expires in ${peer.expiresIn}s`);
910
+ */
911
+ async getPeerToken(targetUsernames) {
912
+ return this.http.post("/api/v1/peer-token", {
913
+ target_usernames: targetUsernames
914
+ });
915
+ }
916
+ /**
917
+ * Get a guest peer token for NATS communication without authentication.
918
+ *
919
+ * Guest peer tokens are rate-limited by IP address. They use the same
920
+ * response format as authenticated peer tokens.
921
+ *
922
+ * @param targetUsernames - Usernames of the tunneling spaces to communicate with
923
+ * @returns PeerTokenResponse with token, channel, expiry, and NATS URL
924
+ *
925
+ * @example
926
+ * const peer = await client.auth.getGuestPeerToken(['alice']);
927
+ * console.log(`Guest peer channel: ${peer.peerChannel}`);
928
+ */
929
+ async getGuestPeerToken(targetUsernames) {
930
+ return this.http.post(
931
+ "/api/v1/nats/guest-peer-token",
932
+ { target_usernames: targetUsernames },
933
+ { includeAuth: false }
934
+ );
935
+ }
628
936
  /**
629
937
  * Get a satellite token for a specific audience (target service).
630
938
  *
@@ -669,6 +977,59 @@ var AuthResource = class {
669
977
  return { audience: aud, token: response.targetToken };
670
978
  })
671
979
  );
980
+ for (const [i, result] of results.entries()) {
981
+ if (result.status === "fulfilled") {
982
+ tokenMap.set(result.value.audience, result.value.token);
983
+ } else {
984
+ console.warn(
985
+ `[SyftHub] Failed to fetch satellite token for "${uniqueAudiences[i]}":`,
986
+ result.reason
987
+ );
988
+ }
989
+ }
990
+ return tokenMap;
991
+ }
992
+ /**
993
+ * Get a guest satellite token for a specific audience (target service).
994
+ *
995
+ * Guest tokens allow unauthenticated users to access policy-free endpoints.
996
+ * No authentication is required to call this method.
997
+ *
998
+ * @param audience - Target service identifier (username of the service owner)
999
+ * @returns Satellite token response with token and expiry
1000
+ * @throws {ValidationError} If audience is invalid or inactive
1001
+ *
1002
+ * @example
1003
+ * // Get a guest token for querying alice's policy-free endpoints
1004
+ * const tokenResponse = await client.auth.getGuestSatelliteToken('alice');
1005
+ */
1006
+ async getGuestSatelliteToken(audience) {
1007
+ return this.http.get(
1008
+ "/api/v1/token/guest",
1009
+ { aud: audience },
1010
+ { includeAuth: false }
1011
+ );
1012
+ }
1013
+ /**
1014
+ * Get guest satellite tokens for multiple audiences in parallel.
1015
+ *
1016
+ * No authentication is required to call this method.
1017
+ *
1018
+ * @param audiences - Array of unique audience identifiers (usernames)
1019
+ * @returns Map of audience to satellite token
1020
+ *
1021
+ * @example
1022
+ * const tokens = await client.auth.getGuestSatelliteTokens(['alice', 'bob']);
1023
+ */
1024
+ async getGuestSatelliteTokens(audiences) {
1025
+ const uniqueAudiences = [...new Set(audiences)];
1026
+ const tokenMap = /* @__PURE__ */ new Map();
1027
+ const results = await Promise.allSettled(
1028
+ uniqueAudiences.map(async (aud) => {
1029
+ const response = await this.getGuestSatelliteToken(aud);
1030
+ return { audience: aud, token: response.targetToken };
1031
+ })
1032
+ );
672
1033
  for (const result of results) {
673
1034
  if (result.status === "fulfilled") {
674
1035
  tokenMap.set(result.value.audience, result.value.token);
@@ -679,38 +1040,137 @@ var AuthResource = class {
679
1040
  /**
680
1041
  * Get transaction tokens for multiple endpoint owners.
681
1042
  *
682
- * Transaction tokens are short-lived JWTs that pre-authorize the endpoint owner
683
- * (recipient) to charge the current user (sender) for usage. These tokens are
684
- * created via the accounting service and passed to the aggregator.
1043
+ * @deprecated Transaction tokens are no longer needed. Payments are handled
1044
+ * via the MPP 402 flow. This method is kept for backward compatibility and
1045
+ * always returns empty tokens/errors.
1046
+ *
1047
+ * @param ownerUsernames - Array of endpoint owner usernames (ignored)
1048
+ * @returns TransactionTokensResponse with empty tokens and errors
1049
+ */
1050
+ async getTransactionTokens(ownerUsernames) {
1051
+ return { tokens: {}, errors: {} };
1052
+ }
1053
+ /**
1054
+ * Get the current access token (JWT or API token).
1055
+ *
1056
+ * This is used by the chat flow to pass the user's Hub token to the
1057
+ * aggregator for the MPP payment callback.
685
1058
  *
686
- * This is used by the chat flow to enable billing for endpoint usage.
1059
+ * @returns The current access token, or null if not authenticated
1060
+ */
1061
+ getAccessToken() {
1062
+ const tokens = this.http.getTokens();
1063
+ return tokens?.accessToken ?? null;
1064
+ }
1065
+ };
1066
+
1067
+ // src/resources/aggregators.ts
1068
+ var AggregatorsResource = class {
1069
+ constructor(http) {
1070
+ this.http = http;
1071
+ }
1072
+ /**
1073
+ * List all aggregator configurations for the current user.
687
1074
  *
688
- * @param ownerUsernames - Array of endpoint owner usernames
689
- * @returns TransactionTokensResponse with tokens map and any errors
1075
+ * @returns Array of UserAggregator objects
690
1076
  * @throws {AuthenticationError} If not authenticated
691
1077
  *
692
1078
  * @example
693
- * // Get transaction tokens for endpoint owners
694
- * const response = await client.auth.getTransactionTokens(['alice', 'bob']);
695
- * console.log(`Got ${Object.keys(response.tokens).length} tokens`);
696
- * if (Object.keys(response.errors).length > 0) {
697
- * console.log('Some tokens failed:', response.errors);
1079
+ * const aggregators = await client.users.aggregators.list();
1080
+ * for (const agg of aggregators) {
1081
+ * if (agg.isDefault) {
1082
+ * console.log(`Default: ${agg.name}`);
1083
+ * }
698
1084
  * }
699
1085
  */
700
- async getTransactionTokens(ownerUsernames) {
701
- const uniqueOwners = [...new Set(ownerUsernames)];
702
- if (uniqueOwners.length === 0) {
703
- return { tokens: {}, errors: {} };
704
- }
705
- try {
706
- return await this.http.post(
707
- "/api/v1/accounting/transaction-tokens",
708
- { owner_usernames: uniqueOwners }
709
- );
710
- } catch (error) {
711
- console.warn("Failed to get transaction tokens:", error);
712
- return { tokens: {}, errors: {} };
713
- }
1086
+ async list() {
1087
+ return this.http.get("/api/v1/users/me/aggregators");
1088
+ }
1089
+ /**
1090
+ * Get a specific aggregator configuration by ID.
1091
+ *
1092
+ * @param aggregatorId - The aggregator ID
1093
+ * @returns The UserAggregator object
1094
+ * @throws {AuthenticationError} If not authenticated
1095
+ * @throws {NotFoundError} If aggregator not found
1096
+ *
1097
+ * @example
1098
+ * const agg = await client.users.aggregators.get(1);
1099
+ * console.log(`${agg.name}: ${agg.url}`);
1100
+ */
1101
+ async get(aggregatorId) {
1102
+ return this.http.get(`/api/v1/users/me/aggregators/${aggregatorId}`);
1103
+ }
1104
+ /**
1105
+ * Create a new aggregator configuration.
1106
+ *
1107
+ * The first aggregator created is automatically set as the default.
1108
+ *
1109
+ * @param input - Aggregator creation input
1110
+ * @returns The created UserAggregator object
1111
+ * @throws {AuthenticationError} If not authenticated
1112
+ * @throws {ValidationError} If input is invalid
1113
+ *
1114
+ * @example
1115
+ * const agg = await client.users.aggregators.create({
1116
+ * name: 'My Custom Aggregator',
1117
+ * url: 'https://my-aggregator.example.com'
1118
+ * });
1119
+ * console.log(`Created: ${agg.id}`);
1120
+ */
1121
+ async create(input) {
1122
+ return this.http.post("/api/v1/users/me/aggregators", input);
1123
+ }
1124
+ /**
1125
+ * Update an aggregator configuration.
1126
+ *
1127
+ * Only provided fields will be updated.
1128
+ *
1129
+ * @param aggregatorId - The aggregator ID to update
1130
+ * @param input - Fields to update
1131
+ * @returns The updated UserAggregator object
1132
+ * @throws {AuthenticationError} If not authenticated
1133
+ * @throws {NotFoundError} If aggregator not found
1134
+ * @throws {ValidationError} If input is invalid
1135
+ *
1136
+ * @example
1137
+ * const agg = await client.users.aggregators.update(1, {
1138
+ * name: 'Updated Name'
1139
+ * });
1140
+ */
1141
+ async update(aggregatorId, input) {
1142
+ return this.http.put(`/api/v1/users/me/aggregators/${aggregatorId}`, input);
1143
+ }
1144
+ /**
1145
+ * Delete an aggregator configuration.
1146
+ *
1147
+ * @param aggregatorId - The aggregator ID to delete
1148
+ * @throws {AuthenticationError} If not authenticated
1149
+ * @throws {NotFoundError} If aggregator not found
1150
+ *
1151
+ * @example
1152
+ * await client.users.aggregators.delete(1);
1153
+ */
1154
+ async delete(aggregatorId) {
1155
+ await this.http.delete(`/api/v1/users/me/aggregators/${aggregatorId}`);
1156
+ }
1157
+ /**
1158
+ * Set an aggregator as the default.
1159
+ *
1160
+ * Only one aggregator can be the default at a time. Setting a new default
1161
+ * automatically unsets the previous one.
1162
+ *
1163
+ * @param aggregatorId - The aggregator ID to set as default
1164
+ * @returns The updated UserAggregator object with isDefault=true
1165
+ * @throws {AuthenticationError} If not authenticated
1166
+ * @throws {NotFoundError} If aggregator not found
1167
+ *
1168
+ * @example
1169
+ * const agg = await client.users.aggregators.setDefault(2);
1170
+ * console.log(`${agg.name} is now the default`);
1171
+ */
1172
+ async setDefault(aggregatorId) {
1173
+ return this.http.patch(`/api/v1/users/me/aggregators/${aggregatorId}/default`);
714
1174
  }
715
1175
  };
716
1176
 
@@ -719,6 +1179,34 @@ var UsersResource = class {
719
1179
  constructor(http) {
720
1180
  this.http = http;
721
1181
  }
1182
+ _aggregators;
1183
+ /**
1184
+ * Access aggregator management operations.
1185
+ *
1186
+ * @returns AggregatorsResource for managing user's aggregator configurations
1187
+ *
1188
+ * @example
1189
+ * // List aggregators
1190
+ * const aggregators = await client.users.aggregators.list();
1191
+ * for (const agg of aggregators) {
1192
+ * console.log(`${agg.name}: ${agg.url}`);
1193
+ * }
1194
+ *
1195
+ * // Create aggregator
1196
+ * const agg = await client.users.aggregators.create({
1197
+ * name: 'My Aggregator',
1198
+ * url: 'https://my-aggregator.example.com'
1199
+ * });
1200
+ *
1201
+ * // Set as default
1202
+ * await client.users.aggregators.setDefault(agg.id);
1203
+ */
1204
+ get aggregators() {
1205
+ if (!this._aggregators) {
1206
+ this._aggregators = new AggregatorsResource(this.http);
1207
+ }
1208
+ return this._aggregators;
1209
+ }
722
1210
  /**
723
1211
  * Update the current user's profile.
724
1212
  *
@@ -778,15 +1266,59 @@ var UsersResource = class {
778
1266
  async getAccountingCredentials() {
779
1267
  return this.http.get("/api/v1/users/me/accounting");
780
1268
  }
781
- };
782
-
783
- // src/pagination.ts
784
- var PageIterator = class {
785
1269
  /**
786
- * Create a new PageIterator.
1270
+ * Send a heartbeat to indicate this SyftAI Space is alive.
787
1271
  *
788
- * @param fetcher - Function that fetches a page of items given skip and limit
789
- * @param pageSize - Number of items to fetch per page (default: 20)
1272
+ * The heartbeat mechanism allows SyftAI Spaces to signal their availability
1273
+ * to SyftHub. This should be called periodically (before the TTL expires)
1274
+ * to maintain the "active" status.
1275
+ *
1276
+ * @param input - Heartbeat parameters
1277
+ * @param input.url - Full URL of this space (e.g., "https://myspace.example.com").
1278
+ * The server extracts the domain from this URL.
1279
+ * @param input.ttlSeconds - Time-to-live in seconds (1-3600). The server caps this
1280
+ * at a maximum of 600 seconds (10 minutes). Default is 300
1281
+ * seconds (5 minutes).
1282
+ * @returns HeartbeatResponse containing status, expiry time, domain, and effective TTL
1283
+ * @throws {AuthenticationError} If not authenticated
1284
+ * @throws {ValidationError} If URL or TTL is invalid
1285
+ *
1286
+ * @example
1287
+ * // Send heartbeat with default TTL (300 seconds)
1288
+ * const response = await client.users.sendHeartbeat({
1289
+ * url: 'https://myspace.example.com'
1290
+ * });
1291
+ * console.log(`Next heartbeat before: ${response.expiresAt}`);
1292
+ *
1293
+ * @example
1294
+ * // Send heartbeat with custom TTL
1295
+ * const response = await client.users.sendHeartbeat({
1296
+ * url: 'https://myspace.example.com',
1297
+ * ttlSeconds: 600 // Maximum allowed
1298
+ * });
1299
+ */
1300
+ async sendHeartbeat(input) {
1301
+ const response = await this.http.post("/api/v1/users/me/heartbeat", {
1302
+ url: input.url,
1303
+ ttl_seconds: input.ttlSeconds ?? 300
1304
+ });
1305
+ return {
1306
+ status: response.status,
1307
+ receivedAt: new Date(response.received_at),
1308
+ expiresAt: new Date(response.expires_at),
1309
+ domain: response.domain,
1310
+ ttlSeconds: response.ttl_seconds
1311
+ };
1312
+ }
1313
+ };
1314
+
1315
+ // src/pagination.ts
1316
+ var PageIterator = class {
1317
+ /**
1318
+ * Create a new PageIterator.
1319
+ *
1320
+ * @param fetcher - Function that fetches a page of items given skip and limit
1321
+ * @param pageSize - Number of items to fetch per page (default: 20)
790
1322
  */
791
1323
  constructor(fetcher, pageSize = 20) {
792
1324
  this.fetcher = fetcher;
@@ -885,22 +1417,6 @@ var MyEndpointsResource = class {
885
1417
  }
886
1418
  return [parts[0], parts[1]];
887
1419
  }
888
- /**
889
- * Resolve an endpoint path to its ID.
890
- *
891
- * @param path - Endpoint path in "owner/slug" format
892
- * @returns The endpoint ID
893
- */
894
- async resolveEndpointId(path) {
895
- const [owner, slug] = this.parsePath(path);
896
- const response = await this.http.get(`/${owner}/${slug}`);
897
- if (response.id === void 0) {
898
- throw new Error(
899
- `Could not resolve endpoint ID for '${path}'. Make sure you own this endpoint.`
900
- );
901
- }
902
- return response.id;
903
- }
904
1420
  /**
905
1421
  * List the current user's endpoints.
906
1422
  *
@@ -922,14 +1438,12 @@ var MyEndpointsResource = class {
922
1438
  * Create a new endpoint.
923
1439
  *
924
1440
  * @param input - Endpoint creation details
925
- * @param organizationId - Optional organization ID (for org-owned endpoints)
926
1441
  * @returns The created Endpoint
927
1442
  * @throws {AuthenticationError} If not authenticated
928
1443
  * @throws {ValidationError} If input validation fails
929
1444
  */
930
- async create(input, organizationId) {
931
- const body = organizationId !== void 0 ? { ...input, organizationId } : input;
932
- return this.http.post("/api/v1/endpoints", body);
1445
+ async create(input) {
1446
+ return this.http.post("/api/v1/endpoints", input);
933
1447
  }
934
1448
  /**
935
1449
  * Get a specific endpoint by path.
@@ -941,8 +1455,17 @@ var MyEndpointsResource = class {
941
1455
  * @throws {AuthorizationError} If not authorized to view
942
1456
  */
943
1457
  async get(path) {
944
- const [owner, slug] = this.parsePath(path);
945
- return this.http.get(`/${owner}/${slug}`);
1458
+ const [, slug] = this.parsePath(path);
1459
+ const endpoints = await this.http.get("/api/v1/endpoints", { limit: 100 });
1460
+ for (const ep of endpoints) {
1461
+ if (ep.slug === slug) {
1462
+ return ep;
1463
+ }
1464
+ }
1465
+ const { NotFoundError: NotFoundError2 } = await Promise.resolve().then(() => (init_errors(), errors_exports));
1466
+ throw new NotFoundError2(
1467
+ `Endpoint not found: '${path}'. No endpoint found with slug '${slug}' in your endpoints.`
1468
+ );
946
1469
  }
947
1470
  /**
948
1471
  * Update an endpoint.
@@ -957,8 +1480,8 @@ var MyEndpointsResource = class {
957
1480
  * @throws {AuthorizationError} If not owner/admin
958
1481
  */
959
1482
  async update(path, input) {
960
- const endpointId = await this.resolveEndpointId(path);
961
- return this.http.patch(`/api/v1/endpoints/${endpointId}`, input);
1483
+ const [, slug] = this.parsePath(path);
1484
+ return this.http.patch(`/api/v1/endpoints/slug/${slug}`, input);
962
1485
  }
963
1486
  /**
964
1487
  * Delete an endpoint.
@@ -969,8 +1492,43 @@ var MyEndpointsResource = class {
969
1492
  * @throws {AuthorizationError} If not owner/admin
970
1493
  */
971
1494
  async delete(path) {
972
- const endpointId = await this.resolveEndpointId(path);
973
- await this.http.delete(`/api/v1/endpoints/${endpointId}`);
1495
+ const [, slug] = this.parsePath(path);
1496
+ await this.http.delete(`/api/v1/endpoints/slug/${slug}`);
1497
+ }
1498
+ /**
1499
+ * Synchronize user's endpoints with provided list.
1500
+ *
1501
+ * This is a DESTRUCTIVE operation that:
1502
+ * 1. Deletes ALL existing endpoints owned by the current user
1503
+ * 2. Creates ALL endpoints from the provided list
1504
+ * 3. Is ATOMIC: either all endpoints sync successfully, or none do
1505
+ *
1506
+ * Important Notes:
1507
+ * - Stars on existing endpoints will be lost (reset to 0)
1508
+ * - Endpoint IDs will change (new IDs assigned)
1509
+ * - Maximum 100 endpoints per sync request
1510
+ *
1511
+ * @param endpoints - List of endpoint specifications to sync.
1512
+ * Pass an empty array to delete ALL user endpoints.
1513
+ * @returns SyncEndpointsResponse with synced count, deleted count, and created endpoints
1514
+ * @throws {AuthenticationError} If not authenticated
1515
+ * @throws {ValidationError} If any endpoint fails validation (entire batch rejected)
1516
+ *
1517
+ * @example
1518
+ * // Sync with new endpoints
1519
+ * const result = await client.myEndpoints.sync([
1520
+ * { name: 'Model A', type: 'model', visibility: 'public' },
1521
+ * { name: 'Data Source B', type: 'data_source', visibility: 'private' },
1522
+ * ]);
1523
+ * console.log(`Deleted ${result.deleted}, created ${result.synced} endpoints`);
1524
+ *
1525
+ * @example
1526
+ * // Clear all endpoints
1527
+ * const result = await client.myEndpoints.sync([]);
1528
+ * console.log(`Deleted ${result.deleted} endpoints`);
1529
+ */
1530
+ async sync(endpoints = []) {
1531
+ return this.http.post("/api/v1/endpoints/sync", { endpoints });
974
1532
  }
975
1533
  };
976
1534
 
@@ -1019,17 +1577,23 @@ var HubResource = class {
1019
1577
  /**
1020
1578
  * Browse all public endpoints.
1021
1579
  *
1022
- * @param options - Pagination options
1580
+ * @param options - Filter and pagination options
1023
1581
  * @returns PageIterator that lazily fetches endpoints
1582
+ *
1583
+ * @example
1584
+ * // Browse only model endpoints
1585
+ * const models = await client.hub.browse({ endpointType: 'model' }).firstPage();
1024
1586
  */
1025
1587
  browse(options) {
1026
1588
  const pageSize = options?.pageSize ?? 20;
1027
1589
  return new PageIterator(async (skip, limit) => {
1028
- return this.http.get(
1029
- "/api/v1/endpoints/public",
1030
- { skip, limit },
1031
- { includeAuth: false }
1032
- );
1590
+ const params = { skip, limit };
1591
+ if (options?.endpointType !== void 0) {
1592
+ params["endpoint_type"] = options.endpointType;
1593
+ }
1594
+ return this.http.get("/api/v1/endpoints/public", params, {
1595
+ includeAuth: false
1596
+ });
1033
1597
  }, pageSize);
1034
1598
  }
1035
1599
  /**
@@ -1037,20 +1601,107 @@ var HubResource = class {
1037
1601
  *
1038
1602
  * @param options - Filter and pagination options
1039
1603
  * @returns PageIterator that lazily fetches endpoints
1604
+ *
1605
+ * @example
1606
+ * // Get trending models only
1607
+ * const models = await client.hub.trending({ endpointType: 'model' }).firstPage();
1040
1608
  */
1041
1609
  trending(options) {
1042
1610
  const pageSize = options?.pageSize ?? 20;
1043
1611
  return new PageIterator(async (skip, limit) => {
1044
1612
  const params = { skip, limit };
1613
+ if (options?.endpointType !== void 0) {
1614
+ params["endpoint_type"] = options.endpointType;
1615
+ }
1045
1616
  if (options?.minStars !== void 0) {
1046
- params["minStars"] = options.minStars;
1617
+ params["min_stars"] = options.minStars;
1047
1618
  }
1048
- return this.http.get(
1049
- "/api/v1/endpoints/trending",
1050
- params,
1619
+ return this.http.get("/api/v1/endpoints/trending", params, {
1620
+ includeAuth: false
1621
+ });
1622
+ }, pageSize);
1623
+ }
1624
+ /**
1625
+ * List endpoints accessible to unauthenticated (guest) users.
1626
+ *
1627
+ * Guest-accessible endpoints are public, active, and have no policies attached.
1628
+ * No authentication is required to call this method.
1629
+ *
1630
+ * @param options - Filter and pagination options
1631
+ * @returns PageIterator that lazily fetches guest-accessible endpoints
1632
+ *
1633
+ * @example
1634
+ * // List all guest-accessible endpoints
1635
+ * for await (const endpoint of client.hub.guestAccessible()) {
1636
+ * console.log(`${endpoint.ownerUsername}/${endpoint.slug}: ${endpoint.name}`);
1637
+ * }
1638
+ *
1639
+ * @example
1640
+ * // List only guest-accessible models
1641
+ * const models = await client.hub.guestAccessible({ endpointType: 'model' }).firstPage();
1642
+ */
1643
+ guestAccessible(options) {
1644
+ const pageSize = options?.pageSize ?? 20;
1645
+ return new PageIterator(async (skip, limit) => {
1646
+ const params = { skip, limit };
1647
+ if (options?.endpointType !== void 0) {
1648
+ params["endpoint_type"] = options.endpointType;
1649
+ }
1650
+ return this.http.get("/api/v1/endpoints/guest-accessible", params, {
1651
+ includeAuth: false
1652
+ });
1653
+ }, pageSize);
1654
+ }
1655
+ /**
1656
+ * Search for endpoints using semantic search.
1657
+ *
1658
+ * Uses RAG-powered semantic search to find endpoints that match the
1659
+ * natural language query. Returns results sorted by relevance score.
1660
+ *
1661
+ * Note: If RAG is not configured on the server (no OpenAI API key),
1662
+ * this method returns an empty array.
1663
+ *
1664
+ * @param query - Natural language search query (e.g., "machine learning models for image classification")
1665
+ * @param options - Search options (topK, type filter, minScore)
1666
+ * @returns Promise resolving to array of EndpointSearchResult with relevance scores.
1667
+ * Returns empty array if query is too short (<3 chars) or no matches found.
1668
+ *
1669
+ * @example
1670
+ * // Search for machine learning models
1671
+ * const results = await client.hub.search('image classification models');
1672
+ * for (const result of results) {
1673
+ * console.log(`${result.ownerUsername}/${result.slug}: ${result.relevanceScore.toFixed(2)}`);
1674
+ * }
1675
+ *
1676
+ * @example
1677
+ * // Filter by type and minimum score
1678
+ * const dataSources = await client.hub.search('customer data', {
1679
+ * type: EndpointType.DATA_SOURCE,
1680
+ * minScore: 0.5,
1681
+ * });
1682
+ */
1683
+ async search(query, options = {}) {
1684
+ const { topK = 10, type, minScore = 0 } = options;
1685
+ if (!query || query.trim().length < 3) {
1686
+ return [];
1687
+ }
1688
+ const body = {
1689
+ query: query.trim(),
1690
+ top_k: topK
1691
+ };
1692
+ if (type !== void 0) {
1693
+ body["type"] = type;
1694
+ }
1695
+ try {
1696
+ const response = await this.http.post(
1697
+ "/api/v1/endpoints/search",
1698
+ body,
1051
1699
  { includeAuth: false }
1052
1700
  );
1053
- }, pageSize);
1701
+ return (response.results ?? []).filter((result) => result.relevanceScore >= minScore);
1702
+ } catch {
1703
+ return [];
1704
+ }
1054
1705
  }
1055
1706
  /**
1056
1707
  * Get an endpoint by its path.
@@ -1083,7 +1734,7 @@ var HubResource = class {
1083
1734
  */
1084
1735
  async star(path) {
1085
1736
  const endpointId = await this.resolveEndpointId(path);
1086
- await this.http.patch(`/api/v1/endpoints/${endpointId}/star`);
1737
+ await this.http.post(`/api/v1/endpoints/${endpointId}/star`);
1087
1738
  }
1088
1739
  /**
1089
1740
  * Unstar an endpoint.
@@ -1094,7 +1745,27 @@ var HubResource = class {
1094
1745
  */
1095
1746
  async unstar(path) {
1096
1747
  const endpointId = await this.resolveEndpointId(path);
1097
- await this.http.patch(`/api/v1/endpoints/${endpointId}/unstar`);
1748
+ await this.http.delete(`/api/v1/endpoints/${endpointId}/star`);
1749
+ }
1750
+ /**
1751
+ * Get the owner/slug paths of a collective's approved member endpoints,
1752
+ * optionally narrowed to a single shared-endpoint subset.
1753
+ *
1754
+ * Used by the chat resource to expand both `collective/<slug>` and
1755
+ * `collective/<slug>/<shared-slug>` data-source references into the
1756
+ * individual endpoint paths before building the aggregator request.
1757
+ *
1758
+ * @param slug - The collective slug (e.g. "genomics-research")
1759
+ * @param sharedSlug - Optional curated-subset slug. When provided, only the
1760
+ * intersection of the subset's configured endpoints with the collective's
1761
+ * currently approved members is returned. Omit for "all approved members".
1762
+ * @returns Array of "owner/slug" path strings
1763
+ * @throws {NotFoundError} If the collective (or shared endpoint) does not exist
1764
+ */
1765
+ async getCollectiveEndpointPaths(slug, sharedSlug) {
1766
+ const base = `/api/v1/collectives/by-slug/${encodeURIComponent(slug)}`;
1767
+ const path = sharedSlug ? `${base}/shared-endpoints/${encodeURIComponent(sharedSlug)}/endpoint-paths` : `${base}/endpoint-paths`;
1768
+ return this.http.get(path, {}, { includeAuth: false });
1098
1769
  }
1099
1770
  /**
1100
1771
  * Check if you have starred an endpoint.
@@ -1113,486 +1784,408 @@ var HubResource = class {
1113
1784
  }
1114
1785
  };
1115
1786
 
1116
- // src/models/common.ts
1117
- var Visibility = {
1118
- /** Visible to everyone, no authentication required */
1119
- PUBLIC: "public",
1120
- /** Only visible to the owner and collaborators */
1121
- PRIVATE: "private",
1122
- /** Visible to authenticated users within the organization */
1123
- INTERNAL: "internal"
1124
- };
1125
- var EndpointType = {
1126
- /** Machine learning model endpoint */
1127
- MODEL: "model",
1128
- /** Data source endpoint */
1129
- DATA_SOURCE: "data_source"
1130
- };
1131
- var UserRole = {
1132
- /** Administrator with full access */
1133
- ADMIN: "admin",
1134
- /** Regular user */
1135
- USER: "user",
1136
- /** Guest user with limited access */
1137
- GUEST: "guest"
1138
- };
1139
- var OrganizationRole = {
1140
- /** Organization owner with full control */
1141
- OWNER: "owner",
1142
- /** Administrator with management privileges */
1143
- ADMIN: "admin",
1144
- /** Regular member */
1145
- MEMBER: "member"
1146
- };
1147
-
1148
- // src/models/endpoint.ts
1149
- function getEndpointOwnerType(endpoint) {
1150
- return endpoint.organizationId !== null ? "organization" : "user";
1151
- }
1152
- function getEndpointPublicPath(endpoint) {
1153
- return `${endpoint.ownerUsername}/${endpoint.slug}`;
1154
- }
1155
-
1156
- // src/models/accounting.ts
1157
- var TransactionStatus = {
1158
- /** Transaction created, awaiting confirmation */
1159
- PENDING: "pending",
1160
- /** Transaction confirmed, funds transferred */
1161
- COMPLETED: "completed",
1162
- /** Transaction cancelled, no funds transferred */
1163
- CANCELLED: "cancelled"
1164
- };
1165
- var CreatorType = {
1166
- /** System-initiated transaction */
1167
- SYSTEM: "system",
1168
- /** Sender-initiated transaction */
1169
- SENDER: "sender",
1170
- /** Recipient-initiated transaction (delegated) */
1171
- RECIPIENT: "recipient"
1172
- };
1173
- function parseTransaction(response) {
1174
- return {
1175
- ...response,
1176
- createdAt: new Date(response.createdAt),
1177
- resolvedAt: response.resolvedAt ? new Date(response.resolvedAt) : null
1178
- };
1179
- }
1180
- function isTransactionPending(tx) {
1181
- return tx.status === TransactionStatus.PENDING;
1182
- }
1183
- function isTransactionCompleted(tx) {
1184
- return tx.status === TransactionStatus.COMPLETED;
1185
- }
1186
- function isTransactionCancelled(tx) {
1187
- return tx.status === TransactionStatus.CANCELLED;
1188
- }
1189
-
1190
1787
  // src/resources/accounting.ts
1191
- init_errors();
1192
- async function handleResponseError(response) {
1193
- if (response.ok) return;
1194
- let detail;
1195
- try {
1196
- const body = await response.json();
1197
- detail = body.detail ?? body.message ?? JSON.stringify(body);
1198
- } catch {
1199
- detail = await response.text() || `HTTP ${response.status}`;
1200
- }
1201
- switch (response.status) {
1202
- case 401:
1203
- throw new AuthenticationError(`Authentication failed: ${detail}`);
1204
- case 403:
1205
- throw new AuthorizationError(`Permission denied: ${detail}`);
1206
- case 404:
1207
- throw new NotFoundError(`Not found: ${detail}`);
1208
- case 422:
1209
- throw new ValidationError(`Validation error: ${detail}`);
1210
- default:
1211
- throw new APIError(`Accounting API error: ${detail}`, response.status);
1212
- }
1213
- }
1214
- function createBasicAuth(email, password) {
1215
- const credentials = `${email}:${password}`;
1216
- const encoded = typeof btoa !== "undefined" ? btoa(credentials) : Buffer.from(credentials).toString("base64");
1217
- return `Basic ${encoded}`;
1218
- }
1219
1788
  var AccountingResource = class {
1220
- baseUrl;
1221
- email;
1222
- password;
1223
- timeout;
1224
- authHeader;
1225
- constructor(options) {
1226
- this.baseUrl = options.url.replace(/\/$/, "");
1227
- this.email = options.email;
1228
- this.password = options.password;
1229
- this.timeout = options.timeout ?? 3e4;
1230
- this.authHeader = createBasicAuth(this.email, this.password);
1231
- }
1232
- // ===========================================================================
1233
- // Private HTTP Methods
1234
- // ===========================================================================
1235
- /**
1236
- * Make an authenticated request to the accounting service.
1237
- */
1238
- async request(method, path, options) {
1239
- const url = new URL(path, this.baseUrl);
1240
- if (options?.params) {
1241
- for (const [key, value] of Object.entries(options.params)) {
1242
- url.searchParams.set(key, String(value));
1243
- }
1244
- }
1245
- const controller = new AbortController();
1246
- const timeoutId = setTimeout(() => controller.abort(), this.timeout);
1247
- try {
1248
- const response = await fetch(url.toString(), {
1249
- method,
1250
- headers: {
1251
- "Authorization": this.authHeader,
1252
- "Content-Type": "application/json",
1253
- "Accept": "application/json"
1254
- },
1255
- body: options?.body ? JSON.stringify(options.body) : void 0,
1256
- signal: controller.signal
1257
- });
1258
- await handleResponseError(response);
1259
- if (response.status === 204) {
1260
- return {};
1261
- }
1262
- return await response.json();
1263
- } catch (error) {
1264
- if (error instanceof SyftHubError) {
1265
- throw error;
1266
- }
1267
- if (error instanceof Error && error.name === "AbortError") {
1268
- throw new APIError("Request timeout", 408);
1269
- }
1270
- throw new APIError(`Accounting request failed: ${error instanceof Error ? error.message : "Unknown error"}`, 0);
1271
- } finally {
1272
- clearTimeout(timeoutId);
1273
- }
1274
- }
1275
- /**
1276
- * Make a request using Bearer token auth (for delegated transactions).
1277
- */
1278
- async requestWithToken(method, path, token, options) {
1279
- const url = new URL(path, this.baseUrl);
1280
- const controller = new AbortController();
1281
- const timeoutId = setTimeout(() => controller.abort(), this.timeout);
1282
- try {
1283
- const response = await fetch(url.toString(), {
1284
- method,
1285
- headers: {
1286
- "Authorization": `Bearer ${token}`,
1287
- "Content-Type": "application/json",
1288
- "Accept": "application/json"
1289
- },
1290
- body: options?.body ? JSON.stringify(options.body) : void 0,
1291
- signal: controller.signal
1292
- });
1293
- await handleResponseError(response);
1294
- if (response.status === 204) {
1295
- return {};
1296
- }
1297
- return await response.json();
1298
- } catch (error) {
1299
- if (error instanceof SyftHubError) {
1300
- throw error;
1301
- }
1302
- if (error instanceof Error && error.name === "AbortError") {
1303
- throw new APIError("Request timeout", 408);
1304
- }
1305
- throw new APIError(`Accounting request failed: ${error instanceof Error ? error.message : "Unknown error"}`, 0);
1306
- } finally {
1307
- clearTimeout(timeoutId);
1308
- }
1789
+ constructor(http) {
1790
+ this.http = http;
1309
1791
  }
1310
1792
  // ===========================================================================
1311
- // User Operations
1793
+ // Wallet Operations
1312
1794
  // ===========================================================================
1313
1795
  /**
1314
- * Get the current user's account information including balance.
1796
+ * Get the current user's wallet information.
1315
1797
  *
1316
- * @returns AccountingUser with id, email, balance, and organization
1317
- * @throws {AuthenticationError} If authentication fails
1318
- * @throws {APIError} On other errors
1798
+ * @returns WalletInfo with address and existence status
1799
+ * @throws {AuthenticationError} If not authenticated
1319
1800
  *
1320
1801
  * @example
1321
1802
  * ```typescript
1322
- * const user = await accounting.getUser();
1323
- * console.log(`Balance: ${user.balance}`);
1324
- * console.log(`Organization: ${user.organization}`);
1803
+ * const wallet = await client.accounting.getWallet();
1804
+ * if (wallet.exists) {
1805
+ * console.log(`Wallet address: ${wallet.address}`);
1806
+ * } else {
1807
+ * console.log('No wallet configured');
1808
+ * }
1325
1809
  * ```
1326
1810
  */
1327
- async getUser() {
1328
- return this.request("GET", "/user");
1811
+ async getWallet() {
1812
+ return this.http.get("/api/v1/wallet/");
1329
1813
  }
1330
1814
  /**
1331
- * Update the user's password.
1815
+ * Get the current user's wallet balance and recent transactions.
1332
1816
  *
1333
- * @param currentPassword - Current password for verification
1334
- * @param newPassword - New password to set
1335
- * @throws {AuthenticationError} If current password is wrong
1336
- * @throws {ValidationError} If new password doesn't meet requirements
1817
+ * @returns WalletBalance with balance, currency, and recent transactions
1818
+ * @throws {AuthenticationError} If not authenticated
1337
1819
  *
1338
1820
  * @example
1339
1821
  * ```typescript
1340
- * await accounting.updatePassword('old_secret', 'new_secret');
1822
+ * const balance = await client.accounting.getBalance();
1823
+ * console.log(`Balance: ${balance.balance} ${balance.currency}`);
1824
+ * console.log(`Wallet configured: ${balance.wallet_configured}`);
1341
1825
  * ```
1342
1826
  */
1343
- async updatePassword(currentPassword, newPassword) {
1344
- await this.request("PUT", "/user/password", {
1345
- body: {
1346
- oldPassword: currentPassword,
1347
- newPassword
1348
- }
1349
- });
1827
+ async getBalance() {
1828
+ return this.http.get("/api/v1/wallet/balance");
1350
1829
  }
1351
1830
  /**
1352
- * Update the user's organization.
1831
+ * Get the current user's wallet transactions.
1353
1832
  *
1354
- * @param organization - New organization name
1355
- * @throws {AuthenticationError} If authentication fails
1833
+ * @returns Array of WalletTransaction objects
1834
+ * @throws {AuthenticationError} If not authenticated
1356
1835
  *
1357
1836
  * @example
1358
1837
  * ```typescript
1359
- * await accounting.updateOrganization('OpenMined');
1838
+ * const transactions = await client.accounting.getTransactions();
1839
+ * for (const tx of transactions) {
1840
+ * console.log(`${tx.created_at}: ${tx.amount} ${tx.status}`);
1841
+ * }
1360
1842
  * ```
1361
1843
  */
1362
- async updateOrganization(organization) {
1363
- await this.request("PUT", "/user/organization", {
1364
- body: { organization }
1365
- });
1844
+ async getTransactions() {
1845
+ return this.http.get("/api/v1/wallet/transactions");
1366
1846
  }
1367
- // ===========================================================================
1368
- // Transaction Listing
1369
- // ===========================================================================
1370
1847
  /**
1371
- * List account transactions with pagination.
1848
+ * Create a new wallet for the current user.
1372
1849
  *
1373
- * Returns a lazy iterator that fetches pages on demand.
1850
+ * Generates a new wallet with a fresh keypair. The wallet address
1851
+ * is returned and stored on the server.
1374
1852
  *
1375
- * @param options - Pagination options
1376
- * @returns PageIterator that yields Transaction objects
1853
+ * @returns Object with the new wallet address
1854
+ * @throws {AuthenticationError} If not authenticated
1855
+ * @throws {ValidationError} If user already has a wallet
1377
1856
  *
1378
1857
  * @example
1379
1858
  * ```typescript
1380
- * // Iterate through all transactions
1381
- * for await (const tx of accounting.getTransactions()) {
1382
- * console.log(`${tx.createdAt}: ${tx.amount} from ${tx.senderEmail}`);
1383
- * }
1384
- *
1385
- * // Get first page only
1386
- * const firstPage = await accounting.getTransactions().firstPage();
1387
- *
1388
- * // Get all transactions
1389
- * const allTxs = await accounting.getTransactions().all();
1859
+ * const result = await client.accounting.createWallet();
1860
+ * console.log(`New wallet address: ${result.address}`);
1390
1861
  * ```
1391
1862
  */
1392
- getTransactions(options) {
1393
- const pageSize = options?.pageSize ?? 20;
1394
- return new PageIterator(
1395
- async (skip, limit) => {
1396
- const response = await this.request("GET", "/transactions", {
1397
- params: { skip, limit }
1398
- });
1399
- return response.map(parseTransaction);
1400
- },
1401
- pageSize
1402
- );
1863
+ async createWallet() {
1864
+ return this.http.post("/api/v1/wallet/create", {});
1403
1865
  }
1404
1866
  /**
1405
- * Get a specific transaction by ID.
1867
+ * Import an existing wallet using a private key.
1406
1868
  *
1407
- * @param transactionId - The transaction ID
1408
- * @returns Transaction object
1409
- * @throws {NotFoundError} If transaction not found
1869
+ * @param privateKey - The private key to import
1870
+ * @returns Object with the imported wallet address
1871
+ * @throws {AuthenticationError} If not authenticated
1872
+ * @throws {ValidationError} If the private key is invalid
1410
1873
  *
1411
1874
  * @example
1412
1875
  * ```typescript
1413
- * const tx = await accounting.getTransaction('tx_123');
1414
- * console.log(`Status: ${tx.status}`);
1876
+ * const result = await client.accounting.importWallet('0x...');
1877
+ * console.log(`Imported wallet address: ${result.address}`);
1415
1878
  * ```
1416
1879
  */
1417
- async getTransaction(transactionId) {
1418
- const response = await this.request(
1419
- "GET",
1420
- `/transactions/${transactionId}`
1421
- );
1422
- return parseTransaction(response);
1880
+ async importWallet(privateKey) {
1881
+ return this.http.post("/api/v1/wallet/import", {
1882
+ private_key: privateKey
1883
+ });
1884
+ }
1885
+ };
1886
+ function createAccountingResource(options) {
1887
+ throw new Error(
1888
+ "createAccountingResource() is deprecated. The wallet API is now accessed through the SyftHubClient. Use client.initAccounting() after login instead."
1889
+ );
1890
+ }
1891
+
1892
+ // src/resources/agent.ts
1893
+ init_errors();
1894
+ var AgentSessionError = class extends SyftHubError {
1895
+ constructor(message, code) {
1896
+ super(message);
1897
+ this.code = code;
1898
+ this.name = "AgentSessionError";
1899
+ }
1900
+ };
1901
+ var AgentResource = class {
1902
+ constructor(auth, aggregatorUrl) {
1903
+ this.auth = auth;
1904
+ this.aggregatorUrl = aggregatorUrl;
1423
1905
  }
1424
- // ===========================================================================
1425
- // Direct Transaction Operations
1426
- // ===========================================================================
1427
1906
  /**
1428
- * Create a new transaction (direct transfer).
1429
- *
1430
- * Creates a PENDING transaction that must be confirmed or cancelled.
1431
- * The transaction is created by the sender (current user).
1432
- *
1433
- * @param input - Transaction details
1434
- * @returns Transaction in PENDING status
1435
- * @throws {ValidationError} If amount <= 0 or insufficient balance
1907
+ * Start a new agent session.
1436
1908
  *
1437
- * @example
1438
- * ```typescript
1439
- * const tx = await accounting.createTransaction({
1440
- * recipientEmail: 'bob@example.com',
1441
- * amount: 10.0,
1442
- * appName: 'syftai-space',
1443
- * appEpPath: 'alice/my-model'
1444
- * });
1445
- * console.log(`Created transaction ${tx.id}: ${tx.status}`);
1446
- *
1447
- * // Later, confirm or cancel
1448
- * await accounting.confirmTransaction(tx.id);
1449
- * ```
1909
+ * @param options - Session options including prompt, endpoint, and config
1910
+ * @returns An AgentSessionClient for interacting with the session
1450
1911
  */
1451
- async createTransaction(input) {
1452
- if (input.amount <= 0) {
1453
- throw new ValidationError("Amount must be greater than 0");
1454
- }
1455
- const response = await this.request("POST", "/transactions", {
1456
- body: {
1457
- recipientEmail: input.recipientEmail,
1458
- amount: input.amount,
1459
- ...input.appName && { appName: input.appName },
1460
- ...input.appEpPath && { appEpPath: input.appEpPath }
1912
+ async startSession(options) {
1913
+ let owner;
1914
+ let slug;
1915
+ if (typeof options.endpoint === "string") {
1916
+ const parts = options.endpoint.split("/");
1917
+ if (parts.length !== 2) {
1918
+ throw new AgentSessionError(
1919
+ `Endpoint must be in 'owner/slug' format, got: ${options.endpoint}`
1920
+ );
1921
+ }
1922
+ owner = parts[0];
1923
+ slug = parts[1];
1924
+ } else {
1925
+ owner = options.endpoint.owner;
1926
+ slug = options.endpoint.slug;
1927
+ }
1928
+ const satResponse = await this.auth.getSatelliteToken(owner);
1929
+ const peerResponse = await this.auth.getPeerToken([owner]);
1930
+ const wsUrl = this.aggregatorUrl.replace(/^http/, "ws") + "/agent/session";
1931
+ const ws = new WebSocket(wsUrl);
1932
+ await new Promise((resolve, reject) => {
1933
+ const onOpen = () => {
1934
+ ws.removeEventListener("error", onError);
1935
+ resolve();
1936
+ };
1937
+ const onError = (_e) => {
1938
+ ws.removeEventListener("open", onOpen);
1939
+ reject(new AgentSessionError("Failed to connect to agent WebSocket"));
1940
+ };
1941
+ ws.addEventListener("open", onOpen, { once: true });
1942
+ ws.addEventListener("error", onError, { once: true });
1943
+ if (options.signal) {
1944
+ options.signal.addEventListener(
1945
+ "abort",
1946
+ () => {
1947
+ ws.close();
1948
+ reject(new AgentSessionError("Session start aborted"));
1949
+ },
1950
+ { once: true }
1951
+ );
1461
1952
  }
1462
1953
  });
1463
- return parseTransaction(response);
1464
- }
1465
- /**
1466
- * Confirm a pending transaction.
1467
- *
1468
- * Confirms the transaction, transferring funds from sender to recipient.
1469
- * Can be called by either the sender or recipient.
1470
- *
1471
- * @param transactionId - The transaction ID to confirm
1472
- * @returns Transaction in COMPLETED status
1473
- * @throws {NotFoundError} If transaction not found
1474
- * @throws {ValidationError} If transaction is not in PENDING status
1475
- *
1476
- * @example
1477
- * ```typescript
1478
- * const tx = await accounting.confirmTransaction('tx_123');
1479
- * console.log(`Confirmed: ${tx.status}`); // "completed"
1480
- * ```
1481
- */
1482
- async confirmTransaction(transactionId) {
1483
- const response = await this.request(
1484
- "POST",
1485
- `/transactions/${transactionId}/confirm`
1954
+ const startPayload = {
1955
+ prompt: options.prompt,
1956
+ endpoint: { owner, slug },
1957
+ satellite_token: satResponse.targetToken,
1958
+ peer_token: peerResponse.peerToken,
1959
+ peer_channel: peerResponse.peerChannel
1960
+ };
1961
+ if (options.config) {
1962
+ startPayload.config = options.config;
1963
+ }
1964
+ if (options.messages) {
1965
+ startPayload.messages = options.messages;
1966
+ }
1967
+ ws.send(
1968
+ JSON.stringify({
1969
+ type: "session.start",
1970
+ payload: startPayload
1971
+ })
1486
1972
  );
1487
- return parseTransaction(response);
1973
+ const response = await new Promise((resolve, reject) => {
1974
+ const onMessage = (event) => {
1975
+ try {
1976
+ const data = JSON.parse(event.data);
1977
+ if (data.type === "session.created") {
1978
+ ws.removeEventListener("message", onMessage);
1979
+ resolve({
1980
+ session_id: data.session_id || data.payload?.session_id
1981
+ });
1982
+ } else if (data.type === "agent.error") {
1983
+ ws.removeEventListener("message", onMessage);
1984
+ reject(
1985
+ new AgentSessionError(
1986
+ data.payload?.message || "Session start failed",
1987
+ data.payload?.code
1988
+ )
1989
+ );
1990
+ }
1991
+ } catch {
1992
+ reject(new AgentSessionError("Failed to parse session response"));
1993
+ }
1994
+ };
1995
+ ws.addEventListener("message", onMessage);
1996
+ });
1997
+ return new AgentSessionClient(ws, response.session_id);
1998
+ }
1999
+ };
2000
+ var AgentSessionClient = class {
2001
+ constructor(ws, sessionId) {
2002
+ this.ws = ws;
2003
+ this.sessionId = sessionId;
2004
+ this.ws.addEventListener("message", (event) => {
2005
+ this._handleMessage(event);
2006
+ });
2007
+ this.ws.addEventListener("close", () => {
2008
+ this._handleClose();
2009
+ });
2010
+ this.ws.addEventListener("error", () => {
2011
+ this._state = "error";
2012
+ this._handleClose();
2013
+ });
2014
+ }
2015
+ _state = "running";
2016
+ _sequenceCounter = 0;
2017
+ _messageQueue = [];
2018
+ _messageResolvers = [];
2019
+ _closed = false;
2020
+ /** Current session state */
2021
+ get state() {
2022
+ return this._state;
1488
2023
  }
1489
2024
  /**
1490
- * Cancel a pending transaction.
1491
- *
1492
- * Cancels the transaction without transferring funds.
1493
- * Can be called by either the sender or recipient.
1494
- *
1495
- * @param transactionId - The transaction ID to cancel
1496
- * @returns Transaction in CANCELLED status
1497
- * @throws {NotFoundError} If transaction not found
1498
- * @throws {ValidationError} If transaction is not in PENDING status
2025
+ * Async generator yielding agent events.
1499
2026
  *
1500
2027
  * @example
1501
- * ```typescript
1502
- * const tx = await accounting.cancelTransaction('tx_123');
1503
- * console.log(`Cancelled: ${tx.status}`); // "cancelled"
1504
- * ```
2028
+ * for await (const event of session.events()) {
2029
+ * console.log(event.type, event.payload);
2030
+ * }
1505
2031
  */
1506
- async cancelTransaction(transactionId) {
1507
- const response = await this.request(
1508
- "POST",
1509
- `/transactions/${transactionId}/cancel`
1510
- );
1511
- return parseTransaction(response);
2032
+ async *events() {
2033
+ while (!this._closed) {
2034
+ const event = await this._nextEvent();
2035
+ if (event === null) break;
2036
+ yield event;
2037
+ }
1512
2038
  }
1513
- // ===========================================================================
1514
- // Delegated Transaction Operations
1515
- // ===========================================================================
1516
2039
  /**
1517
- * Create a transaction token for delegated transfers.
1518
- *
1519
- * Creates a JWT token that authorizes the recipient to create a
1520
- * transaction on behalf of the sender (current user). The token
1521
- * is short-lived (typically ~5 minutes).
1522
- *
1523
- * Use this when you want to pre-authorize a payment that will be
1524
- * initiated by the recipient (e.g., a service charging for usage).
1525
- *
1526
- * @param recipientEmail - Email of the authorized recipient
1527
- * @returns JWT token string to share with recipient
2040
+ * Register an event handler.
1528
2041
  *
1529
- * @example
1530
- * ```typescript
1531
- * // Sender creates token
1532
- * const token = await accounting.createTransactionToken('service@example.com');
1533
- *
1534
- * // Share token with recipient out-of-band
1535
- * // Recipient uses token to create delegated transaction
1536
- * ```
2042
+ * @param eventType - The event type to listen for, or '*' for all events
2043
+ * @param handler - Callback function
1537
2044
  */
1538
- async createTransactionToken(recipientEmail) {
1539
- const response = await this.request("POST", "/token/create", {
1540
- body: { recipientEmail }
2045
+ on(eventType, handler) {
2046
+ this.ws.addEventListener("message", (msgEvent) => {
2047
+ try {
2048
+ const data = JSON.parse(msgEvent.data);
2049
+ if (eventType === "*" || data.type === eventType) {
2050
+ handler(data);
2051
+ }
2052
+ } catch {
2053
+ }
2054
+ });
2055
+ }
2056
+ /** Send a user message to the agent */
2057
+ sendMessage(content) {
2058
+ this._send({
2059
+ type: "user.message",
2060
+ payload: { content }
1541
2061
  });
1542
- return response.token;
1543
2062
  }
1544
- /**
1545
- * Create a delegated transaction using a pre-authorized token.
1546
- *
1547
- * Creates a transaction on behalf of the sender using their token.
1548
- * This is typically used by services to charge users for usage.
1549
- *
1550
- * The token authenticates the request instead of Basic auth.
1551
- *
1552
- * @param senderEmail - Email of the sender who created the token
1553
- * @param amount - Amount to transfer (must be > 0)
1554
- * @param token - JWT token from sender's createTransactionToken()
1555
- * @returns Transaction in PENDING status (createdBy=RECIPIENT)
1556
- * @throws {AuthenticationError} If token is invalid or expired
1557
- * @throws {ValidationError} If amount <= 0
1558
- *
1559
- * @example
1560
- * ```typescript
1561
- * // Recipient creates transaction using sender's token
1562
- * const tx = await accounting.createDelegatedTransaction(
1563
- * 'alice@example.com',
1564
- * 5.0,
1565
- * aliceToken
1566
- * );
1567
- *
1568
- * // Recipient confirms the transaction
1569
- * await accounting.confirmTransaction(tx.id);
1570
- * ```
1571
- */
1572
- async createDelegatedTransaction(senderEmail, amount, token) {
1573
- if (amount <= 0) {
1574
- throw new ValidationError("Amount must be greater than 0");
2063
+ /** Confirm a tool call */
2064
+ confirm(toolCallId) {
2065
+ this._send({
2066
+ type: "user.confirm",
2067
+ payload: { tool_call_id: toolCallId }
2068
+ });
2069
+ }
2070
+ /** Deny a tool call */
2071
+ deny(toolCallId, reason) {
2072
+ this._send({
2073
+ type: "user.deny",
2074
+ payload: { tool_call_id: toolCallId, reason }
2075
+ });
2076
+ }
2077
+ /** Cancel the session */
2078
+ cancel() {
2079
+ this._state = "cancelled";
2080
+ this._send({ type: "user.cancel" });
2081
+ }
2082
+ /** Close the session and WebSocket */
2083
+ close() {
2084
+ if (this._closed) return;
2085
+ this._send({ type: "session.close" });
2086
+ this.ws.close();
2087
+ this._handleClose();
2088
+ }
2089
+ // ---- Internal ----
2090
+ _send(msg) {
2091
+ if (this.ws.readyState === WebSocket.OPEN) {
2092
+ this.ws.send(JSON.stringify(msg));
1575
2093
  }
1576
- const response = await this.requestWithToken(
1577
- "POST",
1578
- "/transactions",
1579
- token,
1580
- {
1581
- body: {
1582
- senderEmail,
1583
- amount
1584
- }
2094
+ }
2095
+ _handleMessage(event) {
2096
+ try {
2097
+ const data = JSON.parse(event.data);
2098
+ this._sequenceCounter++;
2099
+ switch (data.type) {
2100
+ case "agent.request_input":
2101
+ this._state = "awaiting_input";
2102
+ break;
2103
+ case "session.completed":
2104
+ this._state = "completed";
2105
+ break;
2106
+ case "session.failed":
2107
+ this._state = "failed";
2108
+ break;
2109
+ case "agent.error":
2110
+ if (!data.payload.recoverable) {
2111
+ this._state = "error";
2112
+ }
2113
+ break;
2114
+ default:
2115
+ if (this._state === "awaiting_input" || this._state === "connecting") {
2116
+ this._state = "running";
2117
+ }
1585
2118
  }
1586
- );
1587
- return parseTransaction(response);
2119
+ if (this._messageResolvers.length > 0) {
2120
+ const resolve = this._messageResolvers.shift();
2121
+ resolve(data);
2122
+ } else {
2123
+ this._messageQueue.push(data);
2124
+ }
2125
+ if (data.type === "session.completed" || data.type === "session.failed") {
2126
+ this._handleClose();
2127
+ }
2128
+ } catch {
2129
+ }
2130
+ }
2131
+ _handleClose() {
2132
+ if (this._closed) return;
2133
+ this._closed = true;
2134
+ for (const resolve of this._messageResolvers) {
2135
+ resolve(null);
2136
+ }
2137
+ this._messageResolvers = [];
2138
+ }
2139
+ _nextEvent() {
2140
+ if (this._messageQueue.length > 0) {
2141
+ return Promise.resolve(this._messageQueue.shift());
2142
+ }
2143
+ if (this._closed) {
2144
+ return Promise.resolve(null);
2145
+ }
2146
+ return new Promise((resolve) => {
2147
+ this._messageResolvers.push(resolve);
2148
+ });
1588
2149
  }
1589
2150
  };
1590
- function createAccountingResource(options) {
1591
- return new AccountingResource(options);
1592
- }
1593
2151
 
1594
2152
  // src/resources/chat.ts
1595
2153
  init_errors();
2154
+
2155
+ // src/models/common.ts
2156
+ var Visibility = {
2157
+ /** Visible to everyone, no authentication required */
2158
+ PUBLIC: "public",
2159
+ /** Only visible to the owner and collaborators */
2160
+ PRIVATE: "private",
2161
+ /** Behaves like private — only visible to the owner */
2162
+ INTERNAL: "internal"
2163
+ };
2164
+ var EndpointType = {
2165
+ /** Machine learning model endpoint */
2166
+ MODEL: "model",
2167
+ /** Data source endpoint */
2168
+ DATA_SOURCE: "data_source",
2169
+ /** Both model and data source endpoint */
2170
+ MODEL_DATA_SOURCE: "model_data_source",
2171
+ /** Agent endpoint with session-based interaction */
2172
+ AGENT: "agent"
2173
+ };
2174
+ var UserRole = {
2175
+ /** Administrator with full access */
2176
+ ADMIN: "admin",
2177
+ /** Regular user */
2178
+ USER: "user",
2179
+ /** Guest user with limited access */
2180
+ GUEST: "guest"
2181
+ };
2182
+
2183
+ // src/models/endpoint.ts
2184
+ function getEndpointPublicPath(endpoint) {
2185
+ return `${endpoint.ownerUsername}/${endpoint.slug}`;
2186
+ }
2187
+
2188
+ // src/resources/chat.ts
1596
2189
  var AggregatorError = class extends SyftHubError {
1597
2190
  constructor(message, status, detail) {
1598
2191
  super(message);
@@ -1608,12 +2201,26 @@ var EndpointResolutionError = class extends SyftHubError {
1608
2201
  this.name = "EndpointResolutionError";
1609
2202
  }
1610
2203
  };
1611
- var ChatResource = class {
2204
+ var ChatResource = class _ChatResource {
1612
2205
  constructor(hub, auth, aggregatorUrl) {
1613
2206
  this.hub = hub;
1614
2207
  this.auth = auth;
1615
2208
  this.aggregatorUrl = aggregatorUrl;
1616
2209
  }
2210
+ /**
2211
+ * Check if an endpoint type matches the expected type.
2212
+ * A model_data_source endpoint matches both 'model' and 'data_source'.
2213
+ */
2214
+ static typeMatches(actualType, expectedType) {
2215
+ if (actualType === expectedType) return true;
2216
+ if (actualType === EndpointType.MODEL_DATA_SOURCE) {
2217
+ return expectedType === EndpointType.MODEL || expectedType === EndpointType.DATA_SOURCE;
2218
+ }
2219
+ if (actualType === EndpointType.AGENT && expectedType === EndpointType.MODEL) {
2220
+ return true;
2221
+ }
2222
+ return false;
2223
+ }
1617
2224
  /**
1618
2225
  * Convert any endpoint format to EndpointRef with URL and owner info.
1619
2226
  * The ownerUsername is critical for satellite token authentication.
@@ -1623,7 +2230,7 @@ var ChatResource = class {
1623
2230
  return endpoint;
1624
2231
  }
1625
2232
  if (this.isEndpointPublic(endpoint)) {
1626
- if (expectedType && endpoint.type !== expectedType) {
2233
+ if (expectedType && !_ChatResource.typeMatches(endpoint.type, expectedType)) {
1627
2234
  throw new Error(
1628
2235
  `Expected endpoint type '${expectedType}', got '${endpoint.type}' for '${endpoint.slug}'`
1629
2236
  );
@@ -1678,12 +2285,15 @@ var ChatResource = class {
1678
2285
  /**
1679
2286
  * Get satellite tokens for all unique endpoint owners.
1680
2287
  * Returns a map of owner username to satellite token.
2288
+ *
2289
+ * @param owners - Array of unique owner usernames
2290
+ * @param guestMode - If true, fetch guest tokens (no auth required)
1681
2291
  */
1682
- async getSatelliteTokensForOwners(owners) {
2292
+ async getSatelliteTokensForOwners(owners, guestMode = false) {
1683
2293
  if (owners.length === 0) {
1684
2294
  return {};
1685
2295
  }
1686
- const tokenMap = await this.auth.getSatelliteTokens(owners);
2296
+ const tokenMap = guestMode ? await this.auth.getGuestSatelliteTokens(owners) : await this.auth.getSatelliteTokens(owners);
1687
2297
  const result = {};
1688
2298
  for (const [owner, token] of tokenMap) {
1689
2299
  result[owner] = token;
@@ -1691,18 +2301,11 @@ var ChatResource = class {
1691
2301
  return result;
1692
2302
  }
1693
2303
  /**
1694
- * Get transaction tokens for all unique endpoint owners.
1695
- * Returns a map of owner username to transaction token.
1696
- *
1697
- * Transaction tokens are used for billing - they authorize the endpoint
1698
- * owner to charge the current user for usage.
2304
+ * Get the user's Hub access token for MPP payment flow.
2305
+ * Returns null if in guest mode or not authenticated.
1699
2306
  */
1700
- async getTransactionTokensForOwners(owners) {
1701
- if (owners.length === 0) {
1702
- return {};
1703
- }
1704
- const response = await this.auth.getTransactionTokens(owners);
1705
- return response.tokens;
2307
+ getUserToken() {
2308
+ return this.auth.getAccessToken();
1706
2309
  }
1707
2310
  /**
1708
2311
  * Type guard for EndpointRef.
@@ -1716,14 +2319,147 @@ var ChatResource = class {
1716
2319
  isEndpointPublic(value) {
1717
2320
  return typeof value === "object" && value !== null && "connect" in value && "ownerUsername" in value && Array.isArray(value.connect);
1718
2321
  }
2322
+ static COLLECTIVE_PREFIX = "collective/";
2323
+ static TUNNELING_PREFIX = "tunneling:";
2324
+ /**
2325
+ * Expand any `collective/<slug>` (or `collective/<slug>/<shared-slug>`)
2326
+ * entries in the data-sources list into the individual `owner/slug` paths
2327
+ * of the collective's approved members.
2328
+ *
2329
+ * Path forms recognised:
2330
+ * - `collective/<slug>` → every approved member (backward-compatible)
2331
+ * - `collective/<slug>/all` → equivalent alias of the above
2332
+ * - `collective/<slug>/<shared-slug>` → the named subset, intersected with
2333
+ * the collective's currently approved members
2334
+ *
2335
+ * Non-collective entries pass through unchanged. String paths are
2336
+ * deduplicated so a regular endpoint that also belongs to a selected
2337
+ * collective is not queried twice.
2338
+ */
2339
+ async expandCollectivePaths(dataSources) {
2340
+ const expanded = [];
2341
+ const seenPaths = /* @__PURE__ */ new Set();
2342
+ for (const ds of dataSources) {
2343
+ if (typeof ds === "string" && ds.startsWith(_ChatResource.COLLECTIVE_PREFIX)) {
2344
+ const rest = ds.slice(_ChatResource.COLLECTIVE_PREFIX.length);
2345
+ const slashAt = rest.indexOf("/");
2346
+ const collectiveSlug = slashAt < 0 ? rest : rest.slice(0, slashAt);
2347
+ const rawShared = slashAt < 0 ? void 0 : rest.slice(slashAt + 1);
2348
+ const sharedSlug = rawShared && rawShared !== "all" ? rawShared : void 0;
2349
+ if (!collectiveSlug) {
2350
+ throw new EndpointResolutionError(`Malformed collective path: ${ds}`, ds);
2351
+ }
2352
+ let memberPaths;
2353
+ try {
2354
+ memberPaths = await this.hub.getCollectiveEndpointPaths(collectiveSlug, sharedSlug);
2355
+ } catch (error) {
2356
+ const target = sharedSlug ? `${collectiveSlug}/${sharedSlug}` : collectiveSlug;
2357
+ throw new EndpointResolutionError(
2358
+ `Failed to resolve collective '${target}': ${error instanceof Error ? error.message : String(error)}`,
2359
+ ds
2360
+ );
2361
+ }
2362
+ for (const path of memberPaths) {
2363
+ if (!seenPaths.has(path)) {
2364
+ seenPaths.add(path);
2365
+ expanded.push(path);
2366
+ }
2367
+ }
2368
+ } else if (typeof ds === "string") {
2369
+ if (!seenPaths.has(ds)) {
2370
+ seenPaths.add(ds);
2371
+ expanded.push(ds);
2372
+ }
2373
+ } else {
2374
+ expanded.push(ds);
2375
+ }
2376
+ }
2377
+ return expanded;
2378
+ }
2379
+ /**
2380
+ * Check if any endpoints use tunneling URLs and extract target usernames.
2381
+ */
2382
+ collectTunnelingUsernames(modelRef, dataSourceRefs) {
2383
+ const usernames = /* @__PURE__ */ new Set();
2384
+ if (modelRef.url.startsWith(_ChatResource.TUNNELING_PREFIX)) {
2385
+ usernames.add(modelRef.url.slice(_ChatResource.TUNNELING_PREFIX.length));
2386
+ }
2387
+ for (const ds of dataSourceRefs) {
2388
+ if (ds.url.startsWith(_ChatResource.TUNNELING_PREFIX)) {
2389
+ usernames.add(ds.url.slice(_ChatResource.TUNNELING_PREFIX.length));
2390
+ }
2391
+ }
2392
+ return [...usernames];
2393
+ }
2394
+ /**
2395
+ * Shared request preparation for complete() and stream().
2396
+ * Resolves endpoints, fetches tokens, and builds the aggregator request body.
2397
+ * Returns the request body and the resolved aggregator URL.
2398
+ */
2399
+ async prepareRequest(options, stream) {
2400
+ const modelRef = await this.resolveEndpointRef(options.model, "model");
2401
+ const expandedDataSources = await this.expandCollectivePaths(options.dataSources ?? []);
2402
+ const dsRefs = [];
2403
+ for (const ds of expandedDataSources) {
2404
+ dsRefs.push(await this.resolveEndpointRef(ds, "data_source"));
2405
+ }
2406
+ const uniqueOwners = this.collectUniqueOwners(modelRef, dsRefs);
2407
+ const guestMode = options.guestMode ?? false;
2408
+ const endpointTokens = await this.getSatelliteTokensForOwners(uniqueOwners, guestMode);
2409
+ const userToken = guestMode ? null : this.getUserToken();
2410
+ let peerToken = options.peerToken;
2411
+ let peerChannel = options.peerChannel;
2412
+ if (!peerToken) {
2413
+ const tunnelingUsernames = this.collectTunnelingUsernames(modelRef, dsRefs);
2414
+ if (tunnelingUsernames.length > 0) {
2415
+ const peerResponse = guestMode ? await this.auth.getGuestPeerToken(tunnelingUsernames) : await this.auth.getPeerToken(tunnelingUsernames);
2416
+ peerToken = peerResponse.peerToken;
2417
+ peerChannel = peerResponse.peerChannel;
2418
+ }
2419
+ }
2420
+ const requestBody = this.buildRequestBody(
2421
+ options.prompt,
2422
+ modelRef,
2423
+ dsRefs,
2424
+ endpointTokens,
2425
+ userToken,
2426
+ {
2427
+ topK: options.topK,
2428
+ maxTokens: options.maxTokens,
2429
+ temperature: options.temperature,
2430
+ similarityThreshold: options.similarityThreshold,
2431
+ stream,
2432
+ messages: options.messages,
2433
+ peerToken,
2434
+ peerChannel
2435
+ }
2436
+ );
2437
+ const effectiveAggregatorUrl = (options.aggregatorUrl ?? this.aggregatorUrl).replace(
2438
+ /\/+$/,
2439
+ ""
2440
+ );
2441
+ return { requestBody, effectiveAggregatorUrl };
2442
+ }
2443
+ /**
2444
+ * Parse an error response from the aggregator into an AggregatorError.
2445
+ */
2446
+ async handleAggregatorErrorResponse(response) {
2447
+ let message = `HTTP ${response.status}`;
2448
+ try {
2449
+ const data = await response.json();
2450
+ message = String(data["message"] ?? data["error"] ?? message);
2451
+ } catch {
2452
+ }
2453
+ throw new AggregatorError(`Aggregator error: ${message}`, response.status);
2454
+ }
1719
2455
  /**
1720
2456
  * Build the request body for the aggregator.
1721
2457
  * Includes endpoint_tokens mapping for satellite token authentication.
1722
- * Includes transaction_tokens mapping for billing authorization.
2458
+ * Includes user_token for MPP payment callback authorization.
1723
2459
  * User identity is derived from satellite tokens, not passed in request body.
1724
2460
  */
1725
- buildRequestBody(prompt, modelRef, dataSourceRefs, endpointTokens, transactionTokens, options) {
1726
- return {
2461
+ buildRequestBody(prompt, modelRef, dataSourceRefs, endpointTokens, userToken, options) {
2462
+ const body = {
1727
2463
  prompt,
1728
2464
  model: {
1729
2465
  url: modelRef.url,
@@ -1740,13 +2476,25 @@ var ChatResource = class {
1740
2476
  owner_username: ds.ownerUsername ?? null
1741
2477
  })),
1742
2478
  endpoint_tokens: endpointTokens,
1743
- transaction_tokens: transactionTokens,
1744
2479
  top_k: options.topK ?? 5,
1745
2480
  max_tokens: options.maxTokens ?? 1024,
1746
2481
  temperature: options.temperature ?? 0.7,
1747
2482
  similarity_threshold: options.similarityThreshold ?? 0.5,
1748
2483
  stream: options.stream ?? false
1749
2484
  };
2485
+ if (userToken) {
2486
+ body["user_token"] = userToken;
2487
+ }
2488
+ if (options.messages && options.messages.length > 0) {
2489
+ body.messages = options.messages.map((m) => ({ role: m.role, content: m.content }));
2490
+ }
2491
+ if (options.peerToken) {
2492
+ body["peer_token"] = options.peerToken;
2493
+ }
2494
+ if (options.peerChannel) {
2495
+ body["peer_channel"] = options.peerChannel;
2496
+ }
2497
+ return body;
1750
2498
  }
1751
2499
  /**
1752
2500
  * Parse a SourceInfo from raw data.
@@ -1818,7 +2566,7 @@ var ChatResource = class {
1818
2566
  * This method automatically:
1819
2567
  * 1. Resolves endpoints and extracts owner information
1820
2568
  * 2. Exchanges Hub tokens for satellite tokens (one per unique owner)
1821
- * 3. Fetches transaction tokens for billing authorization
2569
+ * 3. Passes the user's Hub access token for MPP payment authorization
1822
2570
  * 4. Sends tokens to the aggregator for forwarding to SyftAI-Space
1823
2571
  *
1824
2572
  * @param options - Chat completion options
@@ -1827,44 +2575,14 @@ var ChatResource = class {
1827
2575
  * @throws {AggregatorError} If aggregator service fails
1828
2576
  */
1829
2577
  async complete(options) {
1830
- const modelRef = await this.resolveEndpointRef(options.model, "model");
1831
- const dsRefs = [];
1832
- for (const ds of options.dataSources ?? []) {
1833
- dsRefs.push(await this.resolveEndpointRef(ds, "data_source"));
1834
- }
1835
- const uniqueOwners = this.collectUniqueOwners(modelRef, dsRefs);
1836
- const endpointTokens = await this.getSatelliteTokensForOwners(uniqueOwners);
1837
- const transactionTokens = await this.getTransactionTokensForOwners(uniqueOwners);
1838
- const requestBody = this.buildRequestBody(
1839
- options.prompt,
1840
- modelRef,
1841
- dsRefs,
1842
- endpointTokens,
1843
- transactionTokens,
1844
- {
1845
- topK: options.topK,
1846
- maxTokens: options.maxTokens,
1847
- temperature: options.temperature,
1848
- similarityThreshold: options.similarityThreshold,
1849
- stream: false
1850
- }
1851
- );
1852
- const url = `${this.aggregatorUrl}/chat`;
1853
- const response = await fetch(url, {
2578
+ const { requestBody, effectiveAggregatorUrl } = await this.prepareRequest(options, false);
2579
+ const response = await fetch(`${effectiveAggregatorUrl}/chat`, {
1854
2580
  method: "POST",
1855
- headers: {
1856
- "Content-Type": "application/json"
1857
- },
2581
+ headers: { "Content-Type": "application/json" },
1858
2582
  body: JSON.stringify(requestBody)
1859
2583
  });
1860
2584
  if (!response.ok) {
1861
- let message = `HTTP ${response.status}`;
1862
- try {
1863
- const data2 = await response.json();
1864
- message = String(data2["message"] ?? data2["error"] ?? message);
1865
- } catch {
1866
- }
1867
- throw new AggregatorError(`Aggregator error: ${message}`, response.status);
2585
+ return this.handleAggregatorErrorResponse(response);
1868
2586
  }
1869
2587
  const data = await response.json();
1870
2588
  const sourcesData = data["sources"];
@@ -1875,12 +2593,14 @@ var ChatResource = class {
1875
2593
  const metadata = this.parseMetadata(metadataData ?? {});
1876
2594
  const usageData = data["usage"];
1877
2595
  const usage = usageData ? this.parseUsage(usageData) : void 0;
2596
+ const profitShare = data["profit_share"];
1878
2597
  return {
1879
2598
  response: String(data["response"] ?? ""),
1880
2599
  sources,
1881
2600
  retrievalInfo,
1882
2601
  metadata,
1883
- usage
2602
+ usage,
2603
+ profitShare
1884
2604
  };
1885
2605
  }
1886
2606
  /**
@@ -1889,37 +2609,15 @@ var ChatResource = class {
1889
2609
  * This method automatically:
1890
2610
  * 1. Resolves endpoints and extracts owner information
1891
2611
  * 2. Exchanges Hub tokens for satellite tokens (one per unique owner)
1892
- * 3. Fetches transaction tokens for billing authorization
2612
+ * 3. Passes the user's Hub access token for MPP payment authorization
1893
2613
  * 4. Sends tokens to the aggregator for forwarding to SyftAI-Space
1894
2614
  *
1895
2615
  * @param options - Chat completion options
1896
2616
  * @yields ChatStreamEvent objects as they arrive
1897
2617
  */
1898
2618
  async *stream(options) {
1899
- const modelRef = await this.resolveEndpointRef(options.model, "model");
1900
- const dsRefs = [];
1901
- for (const ds of options.dataSources ?? []) {
1902
- dsRefs.push(await this.resolveEndpointRef(ds, "data_source"));
1903
- }
1904
- const uniqueOwners = this.collectUniqueOwners(modelRef, dsRefs);
1905
- const endpointTokens = await this.getSatelliteTokensForOwners(uniqueOwners);
1906
- const transactionTokens = await this.getTransactionTokensForOwners(uniqueOwners);
1907
- const requestBody = this.buildRequestBody(
1908
- options.prompt,
1909
- modelRef,
1910
- dsRefs,
1911
- endpointTokens,
1912
- transactionTokens,
1913
- {
1914
- topK: options.topK,
1915
- maxTokens: options.maxTokens,
1916
- temperature: options.temperature,
1917
- similarityThreshold: options.similarityThreshold,
1918
- stream: true
1919
- }
1920
- );
1921
- const url = `${this.aggregatorUrl}/chat/stream`;
1922
- const response = await fetch(url, {
2619
+ const { requestBody, effectiveAggregatorUrl } = await this.prepareRequest(options, true);
2620
+ const response = await fetch(`${effectiveAggregatorUrl}/chat/stream`, {
1923
2621
  method: "POST",
1924
2622
  headers: {
1925
2623
  "Content-Type": "application/json",
@@ -1929,55 +2627,22 @@ var ChatResource = class {
1929
2627
  signal: options.signal
1930
2628
  });
1931
2629
  if (!response.ok) {
1932
- let message = `HTTP ${response.status}`;
1933
- try {
1934
- const data = await response.json();
1935
- message = String(data["message"] ?? data["error"] ?? message);
1936
- } catch {
1937
- }
1938
- throw new AggregatorError(`Aggregator error: ${message}`, response.status);
2630
+ return this.handleAggregatorErrorResponse(response);
1939
2631
  }
1940
2632
  if (!response.body) {
1941
2633
  throw new AggregatorError("No response body from aggregator");
1942
2634
  }
1943
- const reader = response.body.getReader();
1944
- const decoder = new TextDecoder();
1945
- let buffer = "";
1946
- let currentEvent = null;
1947
- let currentData = "";
1948
- try {
1949
- while (true) {
1950
- const { done, value } = await reader.read();
1951
- if (done) break;
1952
- buffer += decoder.decode(value, { stream: true });
1953
- const lines = buffer.split("\n");
1954
- buffer = lines.pop() ?? "";
1955
- for (const line of lines) {
1956
- const trimmedLine = line.trim();
1957
- if (!trimmedLine) {
1958
- if (currentEvent && currentData) {
1959
- try {
1960
- const data = JSON.parse(currentData);
1961
- const event = this.parseSSEEvent(currentEvent, data);
1962
- if (event) {
1963
- yield event;
1964
- }
1965
- } catch {
1966
- }
1967
- }
1968
- currentEvent = null;
1969
- currentData = "";
1970
- continue;
1971
- }
1972
- if (trimmedLine.startsWith("event:")) {
1973
- currentEvent = trimmedLine.slice(6).trim();
1974
- } else if (trimmedLine.startsWith("data:")) {
1975
- currentData = trimmedLine.slice(5).trim();
1976
- }
2635
+ for await (const { event: eventName, data: dataStr } of readSSEEvents(response)) {
2636
+ if (eventName === "message") continue;
2637
+ try {
2638
+ const data = JSON.parse(dataStr);
2639
+ const event = this.parseSSEEvent(eventName, data);
2640
+ if (event) {
2641
+ yield event;
1977
2642
  }
2643
+ } catch {
2644
+ yield { type: "error", message: `Failed to parse SSE data: ${dataStr}` };
1978
2645
  }
1979
- } finally {
1980
- reader.releaseLock();
1981
2646
  }
1982
2647
  }
1983
2648
  /**
@@ -2003,8 +2668,24 @@ var ChatResource = class {
2003
2668
  totalDocuments: Number(data["total_documents"] ?? 0),
2004
2669
  timeMs: Number(data["time_ms"] ?? 0)
2005
2670
  };
2671
+ case "reranking_start":
2672
+ return {
2673
+ type: "reranking_start",
2674
+ documents: Number(data["documents"] ?? 0)
2675
+ };
2676
+ case "reranking_complete":
2677
+ return {
2678
+ type: "reranking_complete",
2679
+ documents: Number(data["documents"] ?? 0),
2680
+ timeMs: Number(data["time_ms"] ?? 0)
2681
+ };
2006
2682
  case "generation_start":
2007
2683
  return { type: "generation_start" };
2684
+ case "generation_heartbeat":
2685
+ return {
2686
+ type: "generation_heartbeat",
2687
+ elapsedMs: Number(data["elapsed_ms"] ?? 0)
2688
+ };
2008
2689
  case "token":
2009
2690
  return {
2010
2691
  type: "token",
@@ -2019,7 +2700,9 @@ var ChatResource = class {
2019
2700
  const metadata = this.parseMetadata(metadataData ?? {});
2020
2701
  const usageData = data["usage"];
2021
2702
  const usage = usageData ? this.parseUsage(usageData) : void 0;
2022
- return { type: "done", sources, retrievalInfo, metadata, usage };
2703
+ const profitShare = data["profit_share"];
2704
+ const response = data["response"];
2705
+ return { type: "done", sources, retrievalInfo, metadata, usage, profitShare, response };
2023
2706
  }
2024
2707
  case "error":
2025
2708
  return {
@@ -2027,32 +2710,33 @@ var ChatResource = class {
2027
2710
  message: String(data["message"] ?? "Unknown error")
2028
2711
  };
2029
2712
  default:
2713
+ console.warn(`[SyftHub] Unknown SSE event type received from aggregator: ${eventType}`);
2030
2714
  return {
2031
2715
  type: "error",
2032
2716
  message: `Unknown event type: ${eventType}`
2033
2717
  };
2034
2718
  }
2035
2719
  }
2036
- /**
2037
- * Get model endpoints that have connection URLs configured.
2038
- *
2039
- * @param limit - Maximum number of results (default: 20)
2040
- * @returns Array of EndpointPublic objects for models with URLs
2041
- */
2042
- async getAvailableModels(limit = 20) {
2720
+ async getAvailableEndpoints(endpointType, limit) {
2043
2721
  const results = [];
2044
2722
  for await (const endpoint of this.hub.browse()) {
2045
2723
  if (results.length >= limit) break;
2046
- if (endpoint.type !== EndpointType.MODEL) continue;
2047
- const hasUrl = endpoint.connect.some(
2048
- (conn) => conn.enabled && conn.config["url"]
2049
- );
2050
- if (hasUrl) {
2724
+ if (endpoint.type !== endpointType) continue;
2725
+ if (endpoint.connect.some((conn) => conn.enabled && conn.config["url"])) {
2051
2726
  results.push(endpoint);
2052
2727
  }
2053
2728
  }
2054
2729
  return results;
2055
2730
  }
2731
+ /**
2732
+ * Get model endpoints that have connection URLs configured.
2733
+ *
2734
+ * @param limit - Maximum number of results (default: 20)
2735
+ * @returns Array of EndpointPublic objects for models with URLs
2736
+ */
2737
+ async getAvailableModels(limit = 20) {
2738
+ return this.getAvailableEndpoints(EndpointType.MODEL, limit);
2739
+ }
2056
2740
  /**
2057
2741
  * Get data source endpoints that have connection URLs configured.
2058
2742
  *
@@ -2060,18 +2744,7 @@ var ChatResource = class {
2060
2744
  * @returns Array of EndpointPublic objects for data sources with URLs
2061
2745
  */
2062
2746
  async getAvailableDataSources(limit = 20) {
2063
- const results = [];
2064
- for await (const endpoint of this.hub.browse()) {
2065
- if (results.length >= limit) break;
2066
- if (endpoint.type !== EndpointType.DATA_SOURCE) continue;
2067
- const hasUrl = endpoint.connect.some(
2068
- (conn) => conn.enabled && conn.config["url"]
2069
- );
2070
- if (hasUrl) {
2071
- results.push(endpoint);
2072
- }
2073
- }
2074
- return results;
2747
+ return this.getAvailableEndpoints(EndpointType.DATA_SOURCE, limit);
2075
2748
  }
2076
2749
  };
2077
2750
 
@@ -2257,45 +2930,22 @@ var SyftAIResource = class {
2257
2930
  if (!response.body) {
2258
2931
  throw new GenerationError("No response body from model", endpoint.slug);
2259
2932
  }
2260
- const reader = response.body.getReader();
2261
- const decoder = new TextDecoder();
2262
- let buffer = "";
2263
- try {
2264
- while (true) {
2265
- const { done, value } = await reader.read();
2266
- if (done) break;
2267
- buffer += decoder.decode(value, { stream: true });
2268
- const lines = buffer.split("\n");
2269
- buffer = lines.pop() ?? "";
2270
- for (const line of lines) {
2271
- const trimmedLine = line.trim();
2272
- if (!trimmedLine || trimmedLine.startsWith("event:")) {
2273
- continue;
2274
- }
2275
- if (trimmedLine.startsWith("data:")) {
2276
- const dataStr = trimmedLine.slice(5).trim();
2277
- if (dataStr === "[DONE]") {
2278
- return;
2279
- }
2280
- try {
2281
- const data = JSON.parse(dataStr);
2282
- if (typeof data["content"] === "string") {
2283
- yield data["content"];
2284
- } else if (Array.isArray(data["choices"])) {
2285
- for (const choice of data["choices"]) {
2286
- const delta = choice["delta"];
2287
- if (delta && typeof delta["content"] === "string") {
2288
- yield delta["content"];
2289
- }
2290
- }
2291
- }
2292
- } catch {
2933
+ for await (const { data: dataStr } of readSSEEvents(response)) {
2934
+ if (dataStr === "[DONE]") return;
2935
+ try {
2936
+ const data = JSON.parse(dataStr);
2937
+ if (typeof data["content"] === "string") {
2938
+ yield data["content"];
2939
+ } else if (Array.isArray(data["choices"])) {
2940
+ for (const choice of data["choices"]) {
2941
+ const delta = choice["delta"];
2942
+ if (delta && typeof delta["content"] === "string") {
2943
+ yield delta["content"];
2293
2944
  }
2294
2945
  }
2295
2946
  }
2947
+ } catch {
2296
2948
  }
2297
- } finally {
2298
- reader.releaseLock();
2299
2949
  }
2300
2950
  }
2301
2951
  };
@@ -2312,7 +2962,6 @@ function isBrowser() {
2312
2962
  }
2313
2963
  var SyftHubClient = class {
2314
2964
  http;
2315
- options;
2316
2965
  aggregatorUrl;
2317
2966
  // Lazy-initialized resources
2318
2967
  _auth;
@@ -2320,8 +2969,10 @@ var SyftHubClient = class {
2320
2969
  _myEndpoints;
2321
2970
  _hub;
2322
2971
  _accounting;
2972
+ _agent;
2323
2973
  _chat;
2324
2974
  _syftai;
2975
+ _apiTokens;
2325
2976
  /**
2326
2977
  * Create a new SyftHub client.
2327
2978
  *
@@ -2329,7 +2980,6 @@ var SyftHubClient = class {
2329
2980
  * @throws {SyftHubError} If baseUrl is not provided and SYFTHUB_URL is not set (in non-browser environments)
2330
2981
  */
2331
2982
  constructor(options = {}) {
2332
- this.options = options;
2333
2983
  let baseUrl = options.baseUrl ?? getEnv("SYFTHUB_URL");
2334
2984
  if (!baseUrl && !isBrowser()) {
2335
2985
  throw new SyftHubError(
@@ -2340,6 +2990,10 @@ var SyftHubClient = class {
2340
2990
  const normalizedUrl = baseUrl ? baseUrl.replace(/\/+$/, "") : "";
2341
2991
  this.http = new HTTPClient(normalizedUrl, options.timeout ?? 3e4);
2342
2992
  this.aggregatorUrl = options.aggregatorUrl ?? getEnv("SYFTHUB_AGGREGATOR_URL") ?? `${normalizedUrl}/aggregator/api/v1`;
2993
+ const apiToken = options.apiToken ?? getEnv("SYFTHUB_API_TOKEN");
2994
+ if (apiToken) {
2995
+ this.http.setApiToken(apiToken);
2996
+ }
2343
2997
  }
2344
2998
  /**
2345
2999
  * Authentication resource for login, register, and session management.
@@ -2395,48 +3049,81 @@ var SyftHubClient = class {
2395
3049
  return this._hub;
2396
3050
  }
2397
3051
  /**
2398
- * Accounting resource for billing and transactions.
3052
+ * Agent resource for bidirectional agent sessions via WebSocket.
3053
+ *
3054
+ * @example
3055
+ * const session = await client.agent.startSession({
3056
+ * prompt: 'Help me refactor this code',
3057
+ * endpoint: 'alice/code-assistant',
3058
+ * });
3059
+ *
3060
+ * for await (const event of session.events()) {
3061
+ * console.log(event.type, event.payload);
3062
+ * }
3063
+ */
3064
+ get agent() {
3065
+ if (!this._agent) {
3066
+ this._agent = new AgentResource(this.auth, this.aggregatorUrl);
3067
+ }
3068
+ return this._agent;
3069
+ }
3070
+ /**
3071
+ * Accounting resource for wallet and payment operations.
2399
3072
  *
2400
- * The accounting service is external and uses separate credentials
2401
- * (email/password Basic auth) from SyftHub's JWT authentication.
3073
+ * Provides access to MPP wallet management (balance, transactions,
3074
+ * wallet creation/import). Uses the same SyftHub JWT authentication
3075
+ * as other resources.
2402
3076
  *
2403
- * Credentials can be provided via:
2404
- * - Constructor options: accountingUrl, accountingEmail, accountingPassword
2405
- * - Environment variables: SYFTHUB_ACCOUNTING_URL, SYFTHUB_ACCOUNTING_EMAIL, SYFTHUB_ACCOUNTING_PASSWORD
3077
+ * You must call `initAccounting()` after login to initialize this resource,
3078
+ * or access it directly if already initialized.
2406
3079
  *
2407
- * @throws {SyftHubError} If accounting credentials are not configured
3080
+ * @throws {AuthenticationError} If not initialized
2408
3081
  *
2409
3082
  * @example
2410
- * const user = await client.accounting.getUser();
2411
- * console.log(`Balance: ${user.balance}`);
3083
+ * // Login first, then initialize accounting
3084
+ * await client.auth.login('alice', 'password');
3085
+ * await client.initAccounting();
2412
3086
  *
2413
- * // Create a transaction
2414
- * const tx = await client.accounting.createTransaction({
2415
- * recipientEmail: 'bob@example.com',
2416
- * amount: 10.0
2417
- * });
3087
+ * // Now accounting is available
3088
+ * const wallet = await client.accounting.getWallet();
3089
+ * const balance = await client.accounting.getBalance();
2418
3090
  */
2419
3091
  get accounting() {
2420
- if (!this._accounting) {
2421
- const url = this.options.accountingUrl ?? getEnv("SYFTHUB_ACCOUNTING_URL");
2422
- const email = this.options.accountingEmail ?? getEnv("SYFTHUB_ACCOUNTING_EMAIL");
2423
- const password = this.options.accountingPassword ?? getEnv("SYFTHUB_ACCOUNTING_PASSWORD");
2424
- if (!url || !email || !password) {
2425
- const missing = [];
2426
- if (!url) missing.push("SYFTHUB_ACCOUNTING_URL");
2427
- if (!email) missing.push("SYFTHUB_ACCOUNTING_EMAIL");
2428
- if (!password) missing.push("SYFTHUB_ACCOUNTING_PASSWORD");
2429
- throw new ConfigurationError(
2430
- `Accounting not configured. Missing: ${missing.join(", ")}. Set environment variables or pass credentials to SyftHubClient.`
2431
- );
2432
- }
2433
- this._accounting = new AccountingResource({
2434
- url,
2435
- email,
2436
- password,
2437
- timeout: this.options.timeout
2438
- });
3092
+ if (this._accounting) {
3093
+ return this._accounting;
3094
+ }
3095
+ throw new AuthenticationError(
3096
+ "Accounting not initialized. Call `await client.initAccounting()` after login."
3097
+ );
3098
+ }
3099
+ /**
3100
+ * Initialize the accounting (wallet) resource.
3101
+ *
3102
+ * The wallet API uses the same SyftHub authentication as other resources.
3103
+ * This method simply verifies authentication and creates the resource.
3104
+ *
3105
+ * @returns The initialized AccountingResource
3106
+ * @throws {AuthenticationError} If not authenticated
3107
+ *
3108
+ * @example
3109
+ * // Login first, then initialize accounting
3110
+ * await client.auth.login('alice', 'password');
3111
+ * await client.initAccounting();
3112
+ *
3113
+ * // Now accounting is available
3114
+ * const wallet = await client.accounting.getWallet();
3115
+ * const balance = await client.accounting.getBalance();
3116
+ */
3117
+ async initAccounting() {
3118
+ if (this._accounting) {
3119
+ return this._accounting;
3120
+ }
3121
+ if (!this.isAuthenticated) {
3122
+ throw new AuthenticationError(
3123
+ "Must be logged in to use accounting. Call client.auth.login() first."
3124
+ );
2439
3125
  }
3126
+ this._accounting = new AccountingResource(this.http);
2440
3127
  return this._accounting;
2441
3128
  }
2442
3129
  /**
@@ -2467,11 +3154,7 @@ var SyftHubClient = class {
2467
3154
  */
2468
3155
  get chat() {
2469
3156
  if (!this._chat) {
2470
- this._chat = new ChatResource(
2471
- this.hub,
2472
- this.auth,
2473
- this.aggregatorUrl
2474
- );
3157
+ this._chat = new ChatResource(this.hub, this.auth, this.aggregatorUrl);
2475
3158
  }
2476
3159
  return this._chat;
2477
3160
  }
@@ -2505,6 +3188,40 @@ var SyftHubClient = class {
2505
3188
  }
2506
3189
  return this._syftai;
2507
3190
  }
3191
+ /**
3192
+ * API Tokens resource for managing personal access tokens.
3193
+ *
3194
+ * API tokens provide an alternative to username/password authentication.
3195
+ * They are ideal for CI/CD pipelines, scripts, and programmatic access.
3196
+ *
3197
+ * @example
3198
+ * // Create a new token
3199
+ * const result = await client.apiTokens.create({
3200
+ * name: 'CI/CD Pipeline',
3201
+ * scopes: ['write'],
3202
+ * });
3203
+ * console.log('Save this token:', result.token);
3204
+ *
3205
+ * // List all tokens
3206
+ * const { tokens } = await client.apiTokens.list();
3207
+ *
3208
+ * // Revoke a token
3209
+ * await client.apiTokens.revoke(tokenId);
3210
+ */
3211
+ get apiTokens() {
3212
+ if (!this._apiTokens) {
3213
+ this._apiTokens = new APITokensResource(this.http);
3214
+ }
3215
+ return this._apiTokens;
3216
+ }
3217
+ /**
3218
+ * Check if the client is using API token authentication.
3219
+ *
3220
+ * @returns True if authenticated with an API token (vs JWT)
3221
+ */
3222
+ get isUsingApiToken() {
3223
+ return this.http.isUsingApiToken();
3224
+ }
2508
3225
  /**
2509
3226
  * Get current authentication tokens.
2510
3227
  *
@@ -2546,23 +3263,20 @@ var SyftHubClient = class {
2546
3263
  return this.http.hasTokens();
2547
3264
  }
2548
3265
  /**
2549
- * Check if accounting service is configured.
3266
+ * Check if the accounting (wallet) resource has been initialized.
2550
3267
  *
2551
- * Use this to check if accounting credentials are available before
2552
- * accessing the `accounting` property, which will throw if not configured.
3268
+ * Use this to check if accounting is available before accessing
3269
+ * the `accounting` property, which will throw if not initialized.
2553
3270
  *
2554
- * @returns True if accounting url, email, and password are all configured
3271
+ * @returns True if accounting has been initialized via `initAccounting()`
2555
3272
  *
2556
3273
  * @example
2557
- * if (client.isAccountingConfigured) {
2558
- * const user = await client.accounting.getUser();
3274
+ * if (client.isAccountingInitialized) {
3275
+ * const wallet = await client.accounting.getWallet();
2559
3276
  * }
2560
3277
  */
2561
- get isAccountingConfigured() {
2562
- const url = this.options.accountingUrl ?? getEnv("SYFTHUB_ACCOUNTING_URL");
2563
- const email = this.options.accountingEmail ?? getEnv("SYFTHUB_ACCOUNTING_EMAIL");
2564
- const password = this.options.accountingPassword ?? getEnv("SYFTHUB_ACCOUNTING_PASSWORD");
2565
- return Boolean(url && email && password);
3278
+ get isAccountingInitialized() {
3279
+ return this._accounting !== void 0 && this._accounting !== null;
2566
3280
  }
2567
3281
  /**
2568
3282
  * Close the client and clean up resources.
@@ -2576,6 +3290,6 @@ var SyftHubClient = class {
2576
3290
  // src/index.ts
2577
3291
  init_errors();
2578
3292
 
2579
- export { APIError, AccountingAccountExistsError, AccountingResource, AccountingServiceUnavailableError, AggregatorError, AuthenticationError, AuthorizationError, ChatResource, ConfigurationError, CreatorType, EndpointResolutionError, EndpointType, GenerationError, InvalidAccountingPasswordError, NetworkError, NotFoundError, OrganizationRole, PageIterator, RetrievalError, SyftAIResource, SyftHubClient, SyftHubError, TransactionStatus, UserAlreadyExistsError, UserRole, ValidationError, Visibility, createAccountingResource, getEndpointOwnerType, getEndpointPublicPath, isTransactionCancelled, isTransactionCompleted, isTransactionPending, parseTransaction };
3293
+ export { APIError, APITokensResource, AccountingAccountExistsError, AccountingResource, AccountingServiceUnavailableError, AgentResource, AgentSessionClient, AgentSessionError, AggregatorError, AggregatorsResource, AuthenticationError, AuthorizationError, ChatResource, ConfigurationError, EndpointResolutionError, EndpointType, GenerationError, InvalidAccountingPasswordError, NetworkError, NotFoundError, PageIterator, RetrievalError, SyftAIResource, SyftHubClient, SyftHubError, UserAlreadyExistsError, UserRole, ValidationError, Visibility, createAccountingResource, getEndpointPublicPath };
2580
3294
  //# sourceMappingURL=index.js.map
2581
3295
  //# sourceMappingURL=index.js.map