@parall/sdk 1.55.4 → 1.55.5
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/attachment-client.d.ts +14 -0
- package/dist/attachment-client.d.ts.map +1 -0
- package/dist/attachment-client.js +38 -0
- package/dist/attachment-endpoints.d.ts +7 -0
- package/dist/attachment-endpoints.d.ts.map +1 -0
- package/dist/attachment-endpoints.js +8 -0
- package/dist/attachment-types.d.ts +33 -0
- package/dist/attachment-types.d.ts.map +1 -0
- package/dist/attachment-types.js +1 -0
- package/dist/client.d.ts +59 -11
- package/dist/client.d.ts.map +1 -1
- package/dist/client.js +120 -14
- package/dist/constants.d.ts +73 -54
- package/dist/constants.d.ts.map +1 -1
- package/dist/constants.js +21 -3
- package/dist/index.d.ts +1 -0
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +1 -0
- package/dist/types.d.ts +361 -23
- package/dist/types.d.ts.map +1 -1
- package/dist/types.js +12 -0
- package/package.json +1 -1
- package/src/attachment-client.ts +56 -0
- package/src/attachment-endpoints.ts +8 -0
- package/src/attachment-types.ts +36 -0
- package/src/client.ts +267 -27
- package/src/constants.ts +36 -3
- package/src/index.ts +1 -0
- package/src/types.ts +429 -25
package/dist/client.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { browserViewerRequestOptions } from './browser-viewer.js';
|
|
2
2
|
import { API_BASE, ENDPOINTS, WIKI_BASE } from './constants.js';
|
|
3
|
-
import {
|
|
4
|
-
export class ParallClient extends
|
|
3
|
+
import { AttachmentClient } from './attachment-client.js';
|
|
4
|
+
export class ParallClient extends AttachmentClient {
|
|
5
5
|
baseUrl;
|
|
6
6
|
wikiBaseUrl;
|
|
7
7
|
token;
|
|
@@ -674,16 +674,6 @@ export class ParallClient extends WechatClient {
|
|
|
674
674
|
const res = await this.request('GET', ENDPOINTS.MESSAGE_REACTIONS(messageId));
|
|
675
675
|
return res.reactions;
|
|
676
676
|
}
|
|
677
|
-
// ---- File Upload ----
|
|
678
|
-
async getUploadPresignUrl(orgId, req) {
|
|
679
|
-
return this.request('POST', ENDPOINTS.UPLOAD_PRESIGN(orgId), req);
|
|
680
|
-
}
|
|
681
|
-
async completeUpload(orgId, attachmentId) {
|
|
682
|
-
return this.request('POST', ENDPOINTS.UPLOAD_COMPLETE(orgId), { attachment_id: attachmentId });
|
|
683
|
-
}
|
|
684
|
-
async getFileUrl(id, opts) {
|
|
685
|
-
return this.request('GET', ENDPOINTS.FILE(id), undefined, opts?.download ? { download: true } : undefined);
|
|
686
|
-
}
|
|
687
677
|
// ---- Approvals ----
|
|
688
678
|
async getApproval(id) {
|
|
689
679
|
return this.request('GET', ENDPOINTS.APPROVAL(id));
|
|
@@ -691,8 +681,14 @@ export class ParallClient extends WechatClient {
|
|
|
691
681
|
async requestApproval(orgId, req) {
|
|
692
682
|
return this.request('POST', ENDPOINTS.APPROVAL_REQUESTS(orgId), req);
|
|
693
683
|
}
|
|
694
|
-
async decideApproval(id, decision) {
|
|
695
|
-
|
|
684
|
+
async decideApproval(id, decision, reason) {
|
|
685
|
+
if (decision === 'approve' && reason?.trim()) {
|
|
686
|
+
throw new ApiError(400, 'Approval reason is only allowed for rejection decisions', 'INVALID_DECISION_REASON');
|
|
687
|
+
}
|
|
688
|
+
return this.request('POST', ENDPOINTS.APPROVAL_DECIDE(id), {
|
|
689
|
+
decision,
|
|
690
|
+
...(decision === 'reject' && reason !== undefined ? { reason } : {}),
|
|
691
|
+
});
|
|
696
692
|
}
|
|
697
693
|
async cancelApproval(id) {
|
|
698
694
|
return this.request('POST', ENDPOINTS.APPROVAL_CANCEL(id));
|
|
@@ -1532,6 +1528,17 @@ export class ParallClient extends WechatClient {
|
|
|
1532
1528
|
const res = await this.request('GET', ENDPOINTS.WIKI_CHANGESETS(orgId, wikiId));
|
|
1533
1529
|
return res.data.map(normalizeWikiChangeset);
|
|
1534
1530
|
}
|
|
1531
|
+
/** Org-wide changeset listing across every wiki the caller can read.
|
|
1532
|
+
* Server default (no `status`) is the pending set: proposed,
|
|
1533
|
+
* approval_pending, approved. */
|
|
1534
|
+
async getOrgWikiChangesets(orgId, opts) {
|
|
1535
|
+
const params = new URLSearchParams();
|
|
1536
|
+
for (const s of opts?.status ?? [])
|
|
1537
|
+
params.append('status', s);
|
|
1538
|
+
const qs = params.toString();
|
|
1539
|
+
const res = await this.request('GET', `${ENDPOINTS.WIKI_ORG_CHANGESETS(orgId)}${qs ? `?${qs}` : ''}`);
|
|
1540
|
+
return (res.data ?? []).map(normalizeWikiChangeset);
|
|
1541
|
+
}
|
|
1535
1542
|
async getWikiChangeset(orgId, wikiId, changesetId) {
|
|
1536
1543
|
return normalizeWikiChangeset(await this.request('GET', ENDPOINTS.WIKI_CHANGESET(orgId, wikiId, changesetId)));
|
|
1537
1544
|
}
|
|
@@ -1624,6 +1631,35 @@ export class ParallClient extends WechatClient {
|
|
|
1624
1631
|
async getWikiAccessStatus(orgId, wikiId, path) {
|
|
1625
1632
|
return this.request('GET', ENDPOINTS.WIKI_ACCESS_STATUS(orgId, wikiId), undefined, path ? { path } : undefined);
|
|
1626
1633
|
}
|
|
1634
|
+
// ---- Wiki membership projection (who-can-access, invites, join/leave) ----
|
|
1635
|
+
async getWikiAccessPolicy(orgId, wikiId, path = '') {
|
|
1636
|
+
return this.request('GET', ENDPOINTS.WIKI_ACCESS_POLICY(orgId, wikiId), undefined, path ? { path } : undefined);
|
|
1637
|
+
}
|
|
1638
|
+
async putWikiAccessPolicy(orgId, wikiId, policy) {
|
|
1639
|
+
return this.request('PUT', ENDPOINTS.WIKI_ACCESS_POLICY(orgId, wikiId), policy);
|
|
1640
|
+
}
|
|
1641
|
+
/** Add-only invite (viewer/editor); allowed for managers, and for editors
|
|
1642
|
+
* when the library enables editors_can_invite. */
|
|
1643
|
+
async addWikiMember(orgId, wikiId, subject, role) {
|
|
1644
|
+
await this.request('POST', ENDPOINTS.WIKI_ACCESS_POLICY_MEMBERS(orgId, wikiId), {
|
|
1645
|
+
subject,
|
|
1646
|
+
role,
|
|
1647
|
+
});
|
|
1648
|
+
}
|
|
1649
|
+
/** Join a PUBLIC library as an explicit member (lands at the library's
|
|
1650
|
+
* default role). Restricted libraries answer 409 JOIN_REQUIRES_REQUEST —
|
|
1651
|
+
* go through createWikiAccessRequest instead. */
|
|
1652
|
+
async joinWiki(orgId, wikiId) {
|
|
1653
|
+
await this.request('POST', ENDPOINTS.WIKI_MEMBERSHIP_SELF(orgId, wikiId));
|
|
1654
|
+
}
|
|
1655
|
+
/** Remove the caller's explicit membership (team-granted membership stays). */
|
|
1656
|
+
async leaveWiki(orgId, wikiId) {
|
|
1657
|
+
await this.request('DELETE', ENDPOINTS.WIKI_MEMBERSHIP_SELF(orgId, wikiId));
|
|
1658
|
+
}
|
|
1659
|
+
async getWikiMembers(orgId, wikiId) {
|
|
1660
|
+
const res = await this.request('GET', ENDPOINTS.WIKI_MEMBERS(orgId, wikiId));
|
|
1661
|
+
return res.data ?? [];
|
|
1662
|
+
}
|
|
1627
1663
|
async createWikiAccessRequest(orgId, wikiId, data) {
|
|
1628
1664
|
await this.request('POST', ENDPOINTS.WIKI_ACCESS_REQUESTS(orgId, wikiId), data);
|
|
1629
1665
|
}
|
|
@@ -2103,6 +2139,76 @@ export class ParallClient extends WechatClient {
|
|
|
2103
2139
|
async listEdgeProfiles(orgId, edgeId) {
|
|
2104
2140
|
return this.request('GET', ENDPOINTS.ORG_EDGE_PROFILES(orgId, edgeId));
|
|
2105
2141
|
}
|
|
2142
|
+
/** Start one durable Local BYOC Profile operation. Network-unknown callers
|
|
2143
|
+
* must retry with the same key or recover by operation id; a different body
|
|
2144
|
+
* under the same key is rejected. */
|
|
2145
|
+
async createEdgeProfileOperation(orgId, edgeId, request, idempotencyKey) {
|
|
2146
|
+
return this.request('POST', ENDPOINTS.ORG_EDGE_PROFILE_OPERATIONS(orgId, edgeId), request, undefined, false, { headers: { 'Idempotency-Key': idempotencyKey } });
|
|
2147
|
+
}
|
|
2148
|
+
/** Strong-confirm the exact durable Delete impact. A changed impact returns
|
|
2149
|
+
* PROFILE_DELETE_IMPACT_CHANGED with a replacement receipt in
|
|
2150
|
+
* `ApiError.extras.details.operation`. */
|
|
2151
|
+
async confirmEdgeProfileOperation(orgId, edgeId, operationId, request) {
|
|
2152
|
+
return this.request('POST', ENDPOINTS.ORG_EDGE_PROFILE_OPERATION_CONFIRM(orgId, edgeId, operationId), request);
|
|
2153
|
+
}
|
|
2154
|
+
/** Sole read/recovery surface. The server may reconcile an already durable
|
|
2155
|
+
* dispatch/finalization while returning this receipt. */
|
|
2156
|
+
async getEdgeProfileOperation(orgId, edgeId, operationId) {
|
|
2157
|
+
return this.request('GET', ENDPOINTS.ORG_EDGE_PROFILE_OPERATION(orgId, edgeId, operationId));
|
|
2158
|
+
}
|
|
2159
|
+
/** Create and atomically materialize one Local BYOC Browser Alias. A replay
|
|
2160
|
+
* with the same idempotency key and body returns the original stable ccn_. */
|
|
2161
|
+
async createBrowserAlias(orgId, request) {
|
|
2162
|
+
return this.request('POST', ENDPOINTS.ORG_BROWSER_ALIASES(orgId), request);
|
|
2163
|
+
}
|
|
2164
|
+
async listBrowserAliases(orgId) {
|
|
2165
|
+
return this.request('GET', ENDPOINTS.ORG_BROWSER_ALIASES(orgId));
|
|
2166
|
+
}
|
|
2167
|
+
async getBrowserAlias(orgId, aliasId) {
|
|
2168
|
+
return this.request('GET', ENDPOINTS.ORG_BROWSER_ALIAS(orgId, aliasId));
|
|
2169
|
+
}
|
|
2170
|
+
async renameBrowserAlias(orgId, aliasId, request) {
|
|
2171
|
+
return this.request('PATCH', ENDPOINTS.ORG_BROWSER_ALIAS(orgId, aliasId), request);
|
|
2172
|
+
}
|
|
2173
|
+
async deleteBrowserAlias(orgId, aliasId, request) {
|
|
2174
|
+
return this.request('DELETE', ENDPOINTS.ORG_BROWSER_ALIAS(orgId, aliasId), request);
|
|
2175
|
+
}
|
|
2176
|
+
/** Start one durable readiness check. The key is carried as the standard
|
|
2177
|
+
* Idempotency-Key header; the request body is intentionally empty. */
|
|
2178
|
+
async createBrowserAliasReadinessCheck(orgId, aliasId, request) {
|
|
2179
|
+
return this.request('POST', ENDPOINTS.ORG_BROWSER_ALIAS_READINESS_CHECKS(orgId, aliasId), undefined, undefined, false, { headers: { 'Idempotency-Key': request.idempotency_key } });
|
|
2180
|
+
}
|
|
2181
|
+
/** Sole durable recovery surface for one readiness request. */
|
|
2182
|
+
async getBrowserAliasReadinessCheck(orgId, aliasId, checkId) {
|
|
2183
|
+
return this.request('GET', ENDPOINTS.ORG_BROWSER_ALIAS_READINESS_CHECK(orgId, aliasId, checkId));
|
|
2184
|
+
}
|
|
2185
|
+
/** Organization Owner view. Hashes, reviewed snapshots and deltas are
|
|
2186
|
+
* intentionally available only on this human-JWT management surface. */
|
|
2187
|
+
async listBrowserAliasGrants(orgId, keyId) {
|
|
2188
|
+
return this.request('GET', ENDPOINTS.ORG_API_KEY_BROWSER_ALIAS_GRANTS(orgId, keyId));
|
|
2189
|
+
}
|
|
2190
|
+
async getBrowserAliasGrant(orgId, keyId, aliasId) {
|
|
2191
|
+
return this.request('GET', ENDPOINTS.ORG_API_KEY_BROWSER_ALIAS_GRANT(orgId, keyId, aliasId));
|
|
2192
|
+
}
|
|
2193
|
+
async replaceBrowserAliasGrant(orgId, keyId, aliasId, request) {
|
|
2194
|
+
return this.request('PUT', ENDPOINTS.ORG_API_KEY_BROWSER_ALIAS_GRANT(orgId, keyId, aliasId), request);
|
|
2195
|
+
}
|
|
2196
|
+
/** Managed-key discovery. The response is already grant-filtered and never
|
|
2197
|
+
* carries contract hashes, review snapshots, Edge IDs or Profile IDs. */
|
|
2198
|
+
async listManagedBrowserAliases(orgId) {
|
|
2199
|
+
return this.request('GET', ENDPOINTS.ORG_MANAGED_ALIASES(orgId));
|
|
2200
|
+
}
|
|
2201
|
+
async getManagedBrowserAlias(orgId, aliasName) {
|
|
2202
|
+
return this.request('GET', ENDPOINTS.ORG_MANAGED_ALIAS(orgId, aliasName));
|
|
2203
|
+
}
|
|
2204
|
+
/** Accept and dispatch one @alias command. request_id is generated by the
|
|
2205
|
+
* caller before local validation and is also the sole durable recovery key. */
|
|
2206
|
+
async createBrowserAliasExecution(orgId, request) {
|
|
2207
|
+
return this.request('POST', ENDPOINTS.ORG_BROWSER_ALIAS_EXECUTIONS(orgId), request);
|
|
2208
|
+
}
|
|
2209
|
+
async getBrowserAliasExecution(orgId, requestId) {
|
|
2210
|
+
return this.request('GET', ENDPOINTS.ORG_BROWSER_ALIAS_EXECUTION(orgId, requestId));
|
|
2211
|
+
}
|
|
2106
2212
|
/**
|
|
2107
2213
|
* Read a hosted Cloud Profile's egress-proxy status (manager-only: hosted
|
|
2108
2214
|
* human maintainer or org admin). Sanitized — the password never comes back.
|
package/dist/constants.d.ts
CHANGED
|
@@ -339,60 +339,6 @@ export declare function isPlatformModelSelectableForRuntime(model: {
|
|
|
339
339
|
}, runtime: string | null | undefined): boolean;
|
|
340
340
|
export declare function platformDefaultModelForRuntime(runtime: string | null | undefined): string | null;
|
|
341
341
|
export declare const ENDPOINTS: {
|
|
342
|
-
readonly AUTH_REGISTER: "/api/v1/auth/register";
|
|
343
|
-
readonly AUTH_LOGIN: "/api/v1/auth/login";
|
|
344
|
-
readonly AUTH_REFRESH: "/api/v1/auth/refresh";
|
|
345
|
-
readonly AUTH_LOGOUT: "/api/v1/auth/logout";
|
|
346
|
-
readonly AUTH_CHANGE_PASSWORD: "/api/v1/auth/change-password";
|
|
347
|
-
readonly AUTH_CHECK_EMAIL: "/api/v1/auth/check-email";
|
|
348
|
-
readonly AUTH_VERIFY_EMAIL: "/api/v1/auth/verify-email";
|
|
349
|
-
readonly AUTH_RESEND_CODE: "/api/v1/auth/resend-code";
|
|
350
|
-
readonly AUTH_FORGOT_PASSWORD: "/api/v1/auth/forgot-password";
|
|
351
|
-
readonly AUTH_RESET_PASSWORD: "/api/v1/auth/reset-password";
|
|
352
|
-
readonly AUTH_OAUTH_EXCHANGE: "/api/v1/auth/oauth/exchange";
|
|
353
|
-
readonly USERS_ME: "/api/v1/users/me";
|
|
354
|
-
readonly USER_AVATAR: "/api/v1/users/me/avatar";
|
|
355
|
-
readonly USER: (id: string) => string;
|
|
356
|
-
readonly WS_TICKET: "/api/v1/ws/ticket";
|
|
357
|
-
readonly ORGS: "/api/v1/orgs";
|
|
358
|
-
readonly ORG: (orgId: string) => string;
|
|
359
|
-
readonly ORG_MEMBERS: (orgId: string) => string;
|
|
360
|
-
readonly ORG_MEMBERS_FORMER: (orgId: string) => string;
|
|
361
|
-
readonly TEAMS: (orgId: string) => string;
|
|
362
|
-
readonly TEAM: (orgId: string, teamId: string) => string;
|
|
363
|
-
readonly TEAM_MEMBERS: (orgId: string, teamId: string) => string;
|
|
364
|
-
readonly TEAM_MEMBER: (orgId: string, teamId: string, userId: string) => string;
|
|
365
|
-
readonly ORG_MEMBERS_ONLINE: (orgId: string) => string;
|
|
366
|
-
readonly ORG_MEMBER: (orgId: string, userId: string) => string;
|
|
367
|
-
readonly ORG_MEMBER_CHATS: (orgId: string, memberId: string) => string;
|
|
368
|
-
readonly ORG_MEMBER_TASKS: (orgId: string, memberId: string) => string;
|
|
369
|
-
readonly ORG_MEMBER_PROFILE: (orgId: string, userId: string) => string;
|
|
370
|
-
readonly AGENT_INSTRUCTIONS: (orgId: string, agentId: string) => string;
|
|
371
|
-
readonly AGENT_MANAGER: (orgId: string, agentId: string) => string;
|
|
372
|
-
readonly REF_SEARCH: (orgId: string) => string;
|
|
373
|
-
readonly DM: (orgId: string) => string;
|
|
374
|
-
readonly SEED_ONBOARDING_DM: (orgId: string) => string;
|
|
375
|
-
readonly DISMISS_ONBOARDING: (orgId: string) => string;
|
|
376
|
-
readonly CHATS: (orgId: string) => string;
|
|
377
|
-
readonly CHATS_DISCOVERABLE: (orgId: string) => string;
|
|
378
|
-
readonly CHAT: (orgId: string, chatId: string) => string;
|
|
379
|
-
readonly CHAT_JOIN: (orgId: string, chatId: string) => string;
|
|
380
|
-
readonly CHAT_ARCHIVE: (orgId: string, chatId: string) => string;
|
|
381
|
-
readonly CHAT_RESTORE: (orgId: string, chatId: string) => string;
|
|
382
|
-
readonly CHAT_MEMBERS: (orgId: string, chatId: string) => string;
|
|
383
|
-
readonly CHAT_MEMBER: (orgId: string, chatId: string, userId: string) => string;
|
|
384
|
-
readonly CHAT_TRANSFER_OWNERSHIP: (orgId: string, chatId: string) => string;
|
|
385
|
-
readonly CHAT_MESSAGES: (orgId: string, chatId: string) => string;
|
|
386
|
-
readonly MESSAGE: (id: string) => string;
|
|
387
|
-
readonly MESSAGE_REPLIES: (id: string) => string;
|
|
388
|
-
readonly MESSAGE_WATCH: (id: string) => string;
|
|
389
|
-
readonly MESSAGE_WATCHERS: (id: string) => string;
|
|
390
|
-
readonly MESSAGE_WATCHING: (id: string) => string;
|
|
391
|
-
readonly MESSAGE_REACTIONS: (id: string) => string;
|
|
392
|
-
readonly MESSAGE_REACTION: (id: string, emoji: string) => string;
|
|
393
|
-
readonly UPLOAD_PRESIGN: (orgId: string) => string;
|
|
394
|
-
readonly UPLOAD_COMPLETE: (orgId: string) => string;
|
|
395
|
-
readonly FILE: (id: string) => string;
|
|
396
342
|
readonly APPROVAL_REQUESTS: (orgId: string) => string;
|
|
397
343
|
readonly APPROVAL: (id: string) => string;
|
|
398
344
|
readonly APPROVAL_DECIDE: (id: string) => string;
|
|
@@ -541,6 +487,7 @@ export declare const ENDPOINTS: {
|
|
|
541
487
|
readonly INVITE_LINK_JOIN: "/api/v1/invite-link/join";
|
|
542
488
|
readonly WIKIS: (orgId: string) => string;
|
|
543
489
|
readonly WIKIS_DELETED: (orgId: string) => string;
|
|
490
|
+
readonly WIKI_ORG_CHANGESETS: (orgId: string) => string;
|
|
544
491
|
readonly WIKI: (orgId: string, wikiId: string) => string;
|
|
545
492
|
readonly WIKI_RESTORE: (orgId: string, wikiId: string) => string;
|
|
546
493
|
readonly WIKI_TREE: (orgId: string, wikiId: string) => string;
|
|
@@ -566,6 +513,10 @@ export declare const ENDPOINTS: {
|
|
|
566
513
|
readonly WIKI_PATH_SCOPE: (orgId: string, wikiId: string, scopeId: string) => string;
|
|
567
514
|
readonly WIKI_RESTRICTIONS: (orgId: string, wikiId: string) => string;
|
|
568
515
|
readonly WIKI_RESTRICTION: (orgId: string, wikiId: string, restrictionId: string) => string;
|
|
516
|
+
readonly WIKI_ACCESS_POLICY: (orgId: string, wikiId: string) => string;
|
|
517
|
+
readonly WIKI_ACCESS_POLICY_MEMBERS: (orgId: string, wikiId: string) => string;
|
|
518
|
+
readonly WIKI_MEMBERSHIP_SELF: (orgId: string, wikiId: string) => string;
|
|
519
|
+
readonly WIKI_MEMBERS: (orgId: string, wikiId: string) => string;
|
|
569
520
|
readonly WIKI_ACCESS_STATUS: (orgId: string, wikiId: string) => string;
|
|
570
521
|
readonly WIKI_ACCESS_REQUESTS: (orgId: string, wikiId: string) => string;
|
|
571
522
|
readonly WIKI_COMMITS: (orgId: string, wikiId: string) => string;
|
|
@@ -655,6 +606,19 @@ export declare const ENDPOINTS: {
|
|
|
655
606
|
readonly ORG_EDGE_DEVICE_UNREGISTER: (orgId: string, edgeId: string) => string;
|
|
656
607
|
readonly ORG_EDGE_ONBOARDING: (orgId: string) => string;
|
|
657
608
|
readonly ORG_EDGE_PROFILES: (orgId: string, edgeId: string) => string;
|
|
609
|
+
readonly ORG_EDGE_PROFILE_OPERATIONS: (orgId: string, edgeId: string) => string;
|
|
610
|
+
readonly ORG_EDGE_PROFILE_OPERATION: (orgId: string, edgeId: string, operationId: string) => string;
|
|
611
|
+
readonly ORG_EDGE_PROFILE_OPERATION_CONFIRM: (orgId: string, edgeId: string, operationId: string) => string;
|
|
612
|
+
readonly ORG_BROWSER_ALIASES: (orgId: string) => string;
|
|
613
|
+
readonly ORG_BROWSER_ALIAS: (orgId: string, aliasId: string) => string;
|
|
614
|
+
readonly ORG_BROWSER_ALIAS_READINESS_CHECKS: (orgId: string, aliasId: string) => string;
|
|
615
|
+
readonly ORG_BROWSER_ALIAS_READINESS_CHECK: (orgId: string, aliasId: string, checkId: string) => string;
|
|
616
|
+
readonly ORG_API_KEY_BROWSER_ALIAS_GRANTS: (orgId: string, keyId: string) => string;
|
|
617
|
+
readonly ORG_API_KEY_BROWSER_ALIAS_GRANT: (orgId: string, keyId: string, aliasId: string) => string;
|
|
618
|
+
readonly ORG_MANAGED_ALIASES: (orgId: string) => string;
|
|
619
|
+
readonly ORG_MANAGED_ALIAS: (orgId: string, aliasName: string) => string;
|
|
620
|
+
readonly ORG_BROWSER_ALIAS_EXECUTIONS: (orgId: string) => string;
|
|
621
|
+
readonly ORG_BROWSER_ALIAS_EXECUTION: (orgId: string, requestId: string) => string;
|
|
658
622
|
readonly ORG_EDGE_PROFILE_PROXY: (orgId: string, edgeId: string, profileName: string) => string;
|
|
659
623
|
readonly ORG_EDGE_PROFILE_COOKIES: (orgId: string, edgeId: string, profileName: string) => string;
|
|
660
624
|
readonly ORG_EDGE_EXEC: (orgId: string) => string;
|
|
@@ -676,6 +640,61 @@ export declare const ENDPOINTS: {
|
|
|
676
640
|
readonly ORG_CLIP_MCP_CONFIG_BY_ID: (orgId: string, clipId: string, configId: string) => string;
|
|
677
641
|
readonly ORG_CLIP_MCP_TOOLS_REFRESH_BY_ID: (orgId: string, clipId: string, configId: string) => string;
|
|
678
642
|
readonly ORG_CLIP_MCP_OAUTH_DISCONNECT_BY_ID: (orgId: string, clipId: string, configId: string) => string;
|
|
643
|
+
readonly UPLOAD_PRESIGN: (orgId: string) => string;
|
|
644
|
+
readonly UPLOAD_COMPLETE: (orgId: string) => string;
|
|
645
|
+
readonly UPLOAD_ABORT: (orgId: string) => string;
|
|
646
|
+
readonly FILE: (id: string) => string;
|
|
647
|
+
readonly AUTH_REGISTER: "/api/v1/auth/register";
|
|
648
|
+
readonly AUTH_LOGIN: "/api/v1/auth/login";
|
|
649
|
+
readonly AUTH_REFRESH: "/api/v1/auth/refresh";
|
|
650
|
+
readonly AUTH_LOGOUT: "/api/v1/auth/logout";
|
|
651
|
+
readonly AUTH_CHANGE_PASSWORD: "/api/v1/auth/change-password";
|
|
652
|
+
readonly AUTH_CHECK_EMAIL: "/api/v1/auth/check-email";
|
|
653
|
+
readonly AUTH_VERIFY_EMAIL: "/api/v1/auth/verify-email";
|
|
654
|
+
readonly AUTH_RESEND_CODE: "/api/v1/auth/resend-code";
|
|
655
|
+
readonly AUTH_FORGOT_PASSWORD: "/api/v1/auth/forgot-password";
|
|
656
|
+
readonly AUTH_RESET_PASSWORD: "/api/v1/auth/reset-password";
|
|
657
|
+
readonly AUTH_OAUTH_EXCHANGE: "/api/v1/auth/oauth/exchange";
|
|
658
|
+
readonly USERS_ME: "/api/v1/users/me";
|
|
659
|
+
readonly USER_AVATAR: "/api/v1/users/me/avatar";
|
|
660
|
+
readonly USER: (id: string) => string;
|
|
661
|
+
readonly WS_TICKET: "/api/v1/ws/ticket";
|
|
662
|
+
readonly ORGS: "/api/v1/orgs";
|
|
663
|
+
readonly ORG: (orgId: string) => string;
|
|
664
|
+
readonly ORG_MEMBERS: (orgId: string) => string;
|
|
665
|
+
readonly ORG_MEMBERS_FORMER: (orgId: string) => string;
|
|
666
|
+
readonly TEAMS: (orgId: string) => string;
|
|
667
|
+
readonly TEAM: (orgId: string, teamId: string) => string;
|
|
668
|
+
readonly TEAM_MEMBERS: (orgId: string, teamId: string) => string;
|
|
669
|
+
readonly TEAM_MEMBER: (orgId: string, teamId: string, userId: string) => string;
|
|
670
|
+
readonly ORG_MEMBERS_ONLINE: (orgId: string) => string;
|
|
671
|
+
readonly ORG_MEMBER: (orgId: string, userId: string) => string;
|
|
672
|
+
readonly ORG_MEMBER_CHATS: (orgId: string, memberId: string) => string;
|
|
673
|
+
readonly ORG_MEMBER_TASKS: (orgId: string, memberId: string) => string;
|
|
674
|
+
readonly ORG_MEMBER_PROFILE: (orgId: string, userId: string) => string;
|
|
675
|
+
readonly AGENT_INSTRUCTIONS: (orgId: string, agentId: string) => string;
|
|
676
|
+
readonly AGENT_MANAGER: (orgId: string, agentId: string) => string;
|
|
677
|
+
readonly REF_SEARCH: (orgId: string) => string;
|
|
678
|
+
readonly DM: (orgId: string) => string;
|
|
679
|
+
readonly SEED_ONBOARDING_DM: (orgId: string) => string;
|
|
680
|
+
readonly DISMISS_ONBOARDING: (orgId: string) => string;
|
|
681
|
+
readonly CHATS: (orgId: string) => string;
|
|
682
|
+
readonly CHATS_DISCOVERABLE: (orgId: string) => string;
|
|
683
|
+
readonly CHAT: (orgId: string, chatId: string) => string;
|
|
684
|
+
readonly CHAT_JOIN: (orgId: string, chatId: string) => string;
|
|
685
|
+
readonly CHAT_ARCHIVE: (orgId: string, chatId: string) => string;
|
|
686
|
+
readonly CHAT_RESTORE: (orgId: string, chatId: string) => string;
|
|
687
|
+
readonly CHAT_MEMBERS: (orgId: string, chatId: string) => string;
|
|
688
|
+
readonly CHAT_MEMBER: (orgId: string, chatId: string, userId: string) => string;
|
|
689
|
+
readonly CHAT_TRANSFER_OWNERSHIP: (orgId: string, chatId: string) => string;
|
|
690
|
+
readonly CHAT_MESSAGES: (orgId: string, chatId: string) => string;
|
|
691
|
+
readonly MESSAGE: (id: string) => string;
|
|
692
|
+
readonly MESSAGE_REPLIES: (id: string) => string;
|
|
693
|
+
readonly MESSAGE_WATCH: (id: string) => string;
|
|
694
|
+
readonly MESSAGE_WATCHERS: (id: string) => string;
|
|
695
|
+
readonly MESSAGE_WATCHING: (id: string) => string;
|
|
696
|
+
readonly MESSAGE_REACTIONS: (id: string) => string;
|
|
697
|
+
readonly MESSAGE_REACTION: (id: string, emoji: string) => string;
|
|
679
698
|
};
|
|
680
699
|
/**
|
|
681
700
|
* Wiki personal-namespace prefix — the path subtree a member owns for
|
package/dist/constants.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"constants.d.ts","sourceRoot":"","sources":["../src/constants.ts"],"names":[],"mappings":"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"}
|
package/dist/constants.js
CHANGED
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import { attachmentEndpoints } from './attachment-endpoints.js';
|
|
1
2
|
// API base path
|
|
2
3
|
export const API_BASE = '/api/v1';
|
|
3
4
|
// Wiki-service base path (served by wiki-service, routed via LB path rules)
|
|
@@ -400,9 +401,7 @@ export const ENDPOINTS = {
|
|
|
400
401
|
MESSAGE_REACTIONS: (id) => `${API_BASE}/messages/${id}/reactions`,
|
|
401
402
|
MESSAGE_REACTION: (id, emoji) => `${API_BASE}/messages/${id}/reactions/${encodeURIComponent(emoji)}`,
|
|
402
403
|
// Upload (org-scoped)
|
|
403
|
-
|
|
404
|
-
UPLOAD_COMPLETE: (orgId) => `${API_BASE}/orgs/${orgId}/upload/complete`,
|
|
405
|
-
FILE: (id) => `${API_BASE}/files/${id}`,
|
|
404
|
+
...attachmentEndpoints(API_BASE),
|
|
406
405
|
// Approval requests (org-scoped)
|
|
407
406
|
APPROVAL_REQUESTS: (orgId) => `${API_BASE}/orgs/${orgId}/approval-requests`,
|
|
408
407
|
// Approvals (global)
|
|
@@ -583,6 +582,8 @@ export const ENDPOINTS = {
|
|
|
583
582
|
// backend router so `deleted` isn't captured as a {wikiId}; the SDK builder
|
|
584
583
|
// is just a string.
|
|
585
584
|
WIKIS_DELETED: (orgId) => `${WIKI_BASE}/orgs/${orgId}/wikis/deleted`,
|
|
585
|
+
// Org-wide changeset listing across readable wikis (Working on tab).
|
|
586
|
+
WIKI_ORG_CHANGESETS: (orgId) => `${WIKI_BASE}/orgs/${orgId}/wiki-changesets`,
|
|
586
587
|
// Detail URL — also reused for DELETE (soft-delete) and `${WIKI}/restore`.
|
|
587
588
|
WIKI: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}`,
|
|
588
589
|
WIKI_RESTORE: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/restore`,
|
|
@@ -612,6 +613,10 @@ export const ENDPOINTS = {
|
|
|
612
613
|
// Wiki Path Restrictions (AFCS narrowing ACL — private subtrees)
|
|
613
614
|
WIKI_RESTRICTIONS: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/restrictions`,
|
|
614
615
|
WIKI_RESTRICTION: (orgId, wikiId, restrictionId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/restrictions/${restrictionId}`,
|
|
616
|
+
WIKI_ACCESS_POLICY: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/access-policy`,
|
|
617
|
+
WIKI_ACCESS_POLICY_MEMBERS: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/access-policy/members`,
|
|
618
|
+
WIKI_MEMBERSHIP_SELF: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/membership/self`,
|
|
619
|
+
WIKI_MEMBERS: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/members`,
|
|
615
620
|
WIKI_ACCESS_STATUS: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/access-status`,
|
|
616
621
|
WIKI_ACCESS_REQUESTS: (orgId, wikiId) => `${WIKI_BASE}/orgs/${orgId}/wikis/${wikiId}/access-requests`,
|
|
617
622
|
// Wiki History (commits, file commits, blame)
|
|
@@ -734,6 +739,19 @@ export const ENDPOINTS = {
|
|
|
734
739
|
ORG_EDGE_DEVICE_UNREGISTER: (orgId, edgeId) => `/api/v1/orgs/${orgId}/edge/${edgeId}/unregister`,
|
|
735
740
|
ORG_EDGE_ONBOARDING: (orgId) => `/api/v1/orgs/${orgId}/edge/onboarding`,
|
|
736
741
|
ORG_EDGE_PROFILES: (orgId, edgeId) => `/api/v1/orgs/${orgId}/edge/${edgeId}/profiles`,
|
|
742
|
+
ORG_EDGE_PROFILE_OPERATIONS: (orgId, edgeId) => `/api/v1/orgs/${orgId}/edge/${edgeId}/profile-operations`,
|
|
743
|
+
ORG_EDGE_PROFILE_OPERATION: (orgId, edgeId, operationId) => `/api/v1/orgs/${orgId}/edge/${edgeId}/profile-operations/${operationId}`,
|
|
744
|
+
ORG_EDGE_PROFILE_OPERATION_CONFIRM: (orgId, edgeId, operationId) => `/api/v1/orgs/${orgId}/edge/${edgeId}/profile-operations/${operationId}/confirm`,
|
|
745
|
+
ORG_BROWSER_ALIASES: (orgId) => `/api/v1/orgs/${orgId}/browser-aliases`,
|
|
746
|
+
ORG_BROWSER_ALIAS: (orgId, aliasId) => `/api/v1/orgs/${orgId}/browser-aliases/${aliasId}`,
|
|
747
|
+
ORG_BROWSER_ALIAS_READINESS_CHECKS: (orgId, aliasId) => `/api/v1/orgs/${orgId}/browser-aliases/${aliasId}/readiness-checks`,
|
|
748
|
+
ORG_BROWSER_ALIAS_READINESS_CHECK: (orgId, aliasId, checkId) => `/api/v1/orgs/${orgId}/browser-aliases/${aliasId}/readiness-checks/${checkId}`,
|
|
749
|
+
ORG_API_KEY_BROWSER_ALIAS_GRANTS: (orgId, keyId) => `/api/v1/orgs/${orgId}/api-keys/${keyId}/browser-alias-grants`,
|
|
750
|
+
ORG_API_KEY_BROWSER_ALIAS_GRANT: (orgId, keyId, aliasId) => `/api/v1/orgs/${orgId}/api-keys/${keyId}/browser-alias-grants/${aliasId}`,
|
|
751
|
+
ORG_MANAGED_ALIASES: (orgId) => `/api/v1/orgs/${orgId}/aliases`,
|
|
752
|
+
ORG_MANAGED_ALIAS: (orgId, aliasName) => `/api/v1/orgs/${orgId}/aliases/${encodeURIComponent(aliasName)}`,
|
|
753
|
+
ORG_BROWSER_ALIAS_EXECUTIONS: (orgId) => `/api/v1/orgs/${orgId}/executions`,
|
|
754
|
+
ORG_BROWSER_ALIAS_EXECUTION: (orgId, requestId) => `/api/v1/orgs/${orgId}/executions/${encodeURIComponent(requestId)}`,
|
|
737
755
|
// Per-profile egress proxy (hosted Cloud Profiles; manager-only, human-only).
|
|
738
756
|
ORG_EDGE_PROFILE_PROXY: (orgId, edgeId, profileName) => `/api/v1/orgs/${orgId}/edge/${edgeId}/profiles/${encodeURIComponent(profileName)}/proxy`,
|
|
739
757
|
// Per-profile one-shot cookie seed (hosted Cloud Profiles; manager-only,
|
package/dist/index.d.ts
CHANGED
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,YAAY,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;AACvD,OAAO,EAAE,QAAQ,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AACrD,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,uBAAuB,CAAC;AACtC,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,YAAY,EACV,eAAe,EACf,gBAAgB,EAChB,iBAAiB,EACjB,cAAc,EACd,WAAW,GACZ,MAAM,SAAS,CAAC;AACjB,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,cAAc,qBAAqB,CAAC;AACpC,cAAc,uBAAuB,CAAC;AACtC,YAAY,EAAE,mBAAmB,EAAE,MAAM,aAAa,CAAC;AACvD,OAAO,EAAE,QAAQ,EAAE,YAAY,EAAE,MAAM,aAAa,CAAC;AACrD,cAAc,gBAAgB,CAAC;AAC/B,cAAc,cAAc,CAAC;AAC7B,cAAc,uBAAuB,CAAC;AACtC,cAAc,YAAY,CAAC;AAC3B,cAAc,mBAAmB,CAAC;AAClC,YAAY,EACV,eAAe,EACf,gBAAgB,EAChB,iBAAiB,EACjB,cAAc,EACd,WAAW,GACZ,MAAM,SAAS,CAAC;AACjB,OAAO,EAAE,QAAQ,EAAE,MAAM,SAAS,CAAC"}
|