@vibes.diy/api-types 2.5.11 → 2.5.13
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/cf-env.d.ts +0 -1
- package/package.json +4 -4
- package/vibes-diy-api.d.ts +2 -1
package/cf-env.d.ts
CHANGED
|
@@ -29,7 +29,6 @@ export interface CFEnv {
|
|
|
29
29
|
CHAT_SESSIONS: DurableObjectNamespace;
|
|
30
30
|
APP_SESSIONS: DurableObjectNamespace;
|
|
31
31
|
USER_NOTIFY: DurableObjectNamespace;
|
|
32
|
-
ACCESS_FN_DO: DurableObjectNamespace;
|
|
33
32
|
VIBES_SERVICE: Queue;
|
|
34
33
|
BROWSER: Fetcher;
|
|
35
34
|
META_CAPI_TOKEN?: string;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vibes.diy/api-types",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.13",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -14,9 +14,9 @@
|
|
|
14
14
|
"@fireproof/core-types-base": "~0.24.19",
|
|
15
15
|
"@fireproof/core-types-protocols-cloud": "~0.24.19",
|
|
16
16
|
"@fireproof/core-types-protocols-dashboard": "~0.24.19",
|
|
17
|
-
"@vibes.diy/call-ai-v2": "2.5.
|
|
18
|
-
"@vibes.diy/identity": "2.5.
|
|
19
|
-
"@vibes.diy/vibe-types": "2.5.
|
|
17
|
+
"@vibes.diy/call-ai-v2": "2.5.13",
|
|
18
|
+
"@vibes.diy/identity": "2.5.13",
|
|
19
|
+
"@vibes.diy/vibe-types": "2.5.13",
|
|
20
20
|
"arktype": "~2.2.1"
|
|
21
21
|
},
|
|
22
22
|
"repository": {
|
package/vibes-diy-api.d.ts
CHANGED
|
@@ -9,7 +9,7 @@ import { ResSubscribeUserNotifications, EvtUserNotification } from "./notificati
|
|
|
9
9
|
import { ReqPutDoc, ResPutDoc, ReqGetDoc, ResGetDoc, ResGetDocNotFound, ReqQueryDocs, ResQueryDocs, ReqDeleteDoc, ResDeleteDoc, ReqSubscribeDocs, ResSubscribeDocs, ReqSubscribeViewerGrants, ResSubscribeViewerGrants, EvtViewerGrantsChanged, ReqListDbNames, ResListDbNames, ReqListDmThreads, ResListDmThreads, ReqMarkDmRead, ResMarkDmRead } from "./app-documents.js";
|
|
10
10
|
import { ReqListMembers, ResListMembers } from "./members.js";
|
|
11
11
|
import { ReqListMemberships, ResListMemberships } from "./memberships.js";
|
|
12
|
-
import { ReqVibeWhoAmI, ResVibeWhoAmI } from "@vibes.diy/vibe-types";
|
|
12
|
+
import { ReqVibeWhoAmI, ResVibeWhoAmI, ReqVibeAccessFnSource, ResVibeAccessFnSource } from "@vibes.diy/vibe-types";
|
|
13
13
|
import { ReqAssetUploadGrant, ResAssetUploadGrant } from "./asset.js";
|
|
14
14
|
import { ReqReportGrowthMemberships, ResReportGrowthMemberships, ReqReportGrowthVibesWithData, ResReportGrowthVibesWithData, ReqReportActiveMembers, ResReportActiveMembers, ReqReportTopVibesByMembers, ResReportTopVibesByMembers, ReqReportAttributionReferrers, ResReportAttributionReferrers, ReqReportCampaignHealth, ResReportCampaignHealth } from "./report.js";
|
|
15
15
|
import { LLMRequest } from "@vibes.diy/call-ai-v2";
|
|
@@ -86,6 +86,7 @@ export interface VibesDiyApiIface<_T = unknown> {
|
|
|
86
86
|
listMembers(req: Req<ReqListMembers>): Promise<Result<ResListMembers, VibesDiyError>>;
|
|
87
87
|
listMemberships(req: Req<ReqListMemberships>): Promise<Result<ResListMemberships, VibesDiyError>>;
|
|
88
88
|
whoAmI(req: Req<ReqVibeWhoAmI>): Promise<Result<ResVibeWhoAmI, VibesDiyError>>;
|
|
89
|
+
accessFnSource(req: Req<ReqVibeAccessFnSource>): Promise<Result<ResVibeAccessFnSource, VibesDiyError>>;
|
|
89
90
|
requestAssetUploadGrant(req: Req<ReqAssetUploadGrant>): Promise<Result<ResAssetUploadGrant, VibesDiyError>>;
|
|
90
91
|
reportGrowthMemberships(req: Req<ReqReportGrowthMemberships>): Promise<Result<ResReportGrowthMemberships, VibesDiyError>>;
|
|
91
92
|
reportGrowthVibesWithData(req: Req<ReqReportGrowthVibesWithData>): Promise<Result<ResReportGrowthVibesWithData, VibesDiyError>>;
|