@inkeep/agents-manage-api 0.0.0-dev-20251219001549 → 0.0.0-dev-20251219041014
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.d.ts +96 -1
- package/dist/index.d.ts.map +1 -1
- package/package.json +3 -3
package/dist/index.d.ts
CHANGED
|
@@ -19,7 +19,51 @@ declare const auth: better_auth0.Auth<{
|
|
|
19
19
|
autoSignIn: true;
|
|
20
20
|
};
|
|
21
21
|
socialProviders: {
|
|
22
|
-
google:
|
|
22
|
+
google: {
|
|
23
|
+
redirectURI?: string | undefined;
|
|
24
|
+
clientId: string;
|
|
25
|
+
accessType?: ("offline" | "online") | undefined;
|
|
26
|
+
display?: ("page" | "popup" | "touch" | "wap") | undefined;
|
|
27
|
+
hd?: string | undefined;
|
|
28
|
+
clientSecret?: string | undefined;
|
|
29
|
+
scope?: string[] | undefined;
|
|
30
|
+
disableDefaultScope?: boolean | undefined;
|
|
31
|
+
clientKey?: string | undefined;
|
|
32
|
+
disableIdTokenSignIn?: boolean | undefined;
|
|
33
|
+
verifyIdToken?: ((token: string, nonce?: string) => Promise<boolean>) | undefined;
|
|
34
|
+
getUserInfo?: ((token: better_auth0.OAuth2Tokens) => Promise<{
|
|
35
|
+
user: {
|
|
36
|
+
id: string;
|
|
37
|
+
name?: string;
|
|
38
|
+
email?: string | null;
|
|
39
|
+
image?: string;
|
|
40
|
+
emailVerified: boolean;
|
|
41
|
+
[key: string]: any;
|
|
42
|
+
};
|
|
43
|
+
data: any;
|
|
44
|
+
}>) | undefined;
|
|
45
|
+
refreshAccessToken?: ((refreshToken: string) => Promise<better_auth0.OAuth2Tokens>) | undefined;
|
|
46
|
+
mapProfileToUser?: ((profile: better_auth_social_providers0.GoogleProfile) => {
|
|
47
|
+
id?: string;
|
|
48
|
+
name?: string;
|
|
49
|
+
email?: string | null;
|
|
50
|
+
image?: string;
|
|
51
|
+
emailVerified?: boolean;
|
|
52
|
+
[key: string]: any;
|
|
53
|
+
} | Promise<{
|
|
54
|
+
id?: string;
|
|
55
|
+
name?: string;
|
|
56
|
+
email?: string | null;
|
|
57
|
+
image?: string;
|
|
58
|
+
emailVerified?: boolean;
|
|
59
|
+
[key: string]: any;
|
|
60
|
+
}>) | undefined;
|
|
61
|
+
disableImplicitSignUp?: boolean | undefined;
|
|
62
|
+
disableSignUp?: boolean | undefined;
|
|
63
|
+
prompt?: ("select_account" | "consent" | "login" | "none" | "select_account consent") | undefined;
|
|
64
|
+
responseMode?: ("query" | "form_post") | undefined;
|
|
65
|
+
overrideUserInfoOnSignIn?: boolean | undefined;
|
|
66
|
+
};
|
|
23
67
|
} | undefined;
|
|
24
68
|
session: {
|
|
25
69
|
expiresIn: number;
|
|
@@ -660,6 +704,57 @@ declare const auth: better_auth0.Auth<{
|
|
|
660
704
|
enabled: true;
|
|
661
705
|
};
|
|
662
706
|
};
|
|
707
|
+
}, {
|
|
708
|
+
id: "oauth-proxy";
|
|
709
|
+
options: better_auth_plugins0.OAuthProxyOptions | undefined;
|
|
710
|
+
endpoints: {
|
|
711
|
+
oAuthProxy: better_auth0.StrictEndpoint<"/oauth-proxy-callback", {
|
|
712
|
+
method: "GET";
|
|
713
|
+
operationId: string;
|
|
714
|
+
query: zod0.ZodObject<{
|
|
715
|
+
callbackURL: zod0.ZodString;
|
|
716
|
+
cookies: zod0.ZodString;
|
|
717
|
+
}, better_auth0.$strip>;
|
|
718
|
+
use: ((inputContext: better_auth0.MiddlewareInputContext<better_auth0.MiddlewareOptions>) => Promise<void>)[];
|
|
719
|
+
metadata: {
|
|
720
|
+
openapi: {
|
|
721
|
+
operationId: string;
|
|
722
|
+
description: string;
|
|
723
|
+
parameters: {
|
|
724
|
+
in: "query";
|
|
725
|
+
name: string;
|
|
726
|
+
required: true;
|
|
727
|
+
description: string;
|
|
728
|
+
}[];
|
|
729
|
+
responses: {
|
|
730
|
+
302: {
|
|
731
|
+
description: string;
|
|
732
|
+
headers: {
|
|
733
|
+
Location: {
|
|
734
|
+
description: string;
|
|
735
|
+
schema: {
|
|
736
|
+
type: string;
|
|
737
|
+
};
|
|
738
|
+
};
|
|
739
|
+
};
|
|
740
|
+
};
|
|
741
|
+
};
|
|
742
|
+
};
|
|
743
|
+
};
|
|
744
|
+
} & {
|
|
745
|
+
use: any[];
|
|
746
|
+
}, never>;
|
|
747
|
+
};
|
|
748
|
+
hooks: {
|
|
749
|
+
before: {
|
|
750
|
+
matcher(context: better_auth0.HookEndpointContext): boolean;
|
|
751
|
+
handler: (inputContext: better_auth0.MiddlewareInputContext<better_auth0.MiddlewareOptions>) => Promise<void>;
|
|
752
|
+
}[];
|
|
753
|
+
after: {
|
|
754
|
+
matcher(context: better_auth0.HookEndpointContext): boolean;
|
|
755
|
+
handler: (inputContext: better_auth0.MiddlewareInputContext<better_auth0.MiddlewareOptions>) => Promise<void>;
|
|
756
|
+
}[];
|
|
757
|
+
};
|
|
663
758
|
}, {
|
|
664
759
|
id: "organization";
|
|
665
760
|
endpoints: better_auth_plugins0.OrganizationEndpoints<{
|
package/dist/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","names":[],"sources":["../src/index.ts"],"sourcesContent":[],"mappings":";;;;;;;;;cA6Ea,mBAAI;;;sBAKf,YAAA,CAAA;;IALW,OAKX,EAAA,IAAA;IAAA,iBAAA,EAAA,MAAA
|
|
1
|
+
{"version":3,"file":"index.d.ts","names":[],"sources":["../src/index.ts"],"sourcesContent":[],"mappings":";;;;;;;;;cA6Ea,mBAAI;;;sBAKf,YAAA,CAAA;;IALW,OAKX,EAAA,IAAA;IAAA,iBAAA,EAAA,MAAA;;;IAW4vsB,UAAA,EAAA,IAAA;EAAA,CAAA;;;;;;aAA4jrI,CAAA,EAAA,CAAA,MAAA,GAAA,OAAA,GAAA,OAAA,GAAA,KAAA,CAAA,GAAA,SAAA;MAAA,EAAA,CAAA,EAAA,MAAA,GAAA,SAAA;kBAAk+C,CAAA,EAAA,MAAA,GAAA,SAAA;MAAA,KAAA,CAAA,EAAA,MAAA,EAAA,GAAA,SAAA;;;;0DAA9huI;6BAAA,YAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kCAA4jrI;;;6BAAA,YAAA,CAAA;;;;;gCAAk+C,YAAA;;;;;;;;;yBAAA,YAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;UAhB3w6J,CAAA,CAAA,CAAA;QAAA,CAAA,sBAAA;QAO2D,QAAjE,EAAiE;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAAtE,KAAK"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@inkeep/agents-manage-api",
|
|
3
|
-
"version": "0.0.0-dev-
|
|
3
|
+
"version": "0.0.0-dev-20251219041014",
|
|
4
4
|
"description": "Agents Manage API for Inkeep Agent Framework - handles CRUD operations and OAuth",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -33,8 +33,8 @@
|
|
|
33
33
|
"nanoid": "^5.1.5",
|
|
34
34
|
"openid-client": "^6.6.4",
|
|
35
35
|
"pino": "^9.7.0",
|
|
36
|
-
"@inkeep/agents-core": "^0.0.0-dev-
|
|
37
|
-
"@inkeep/agents-manage-mcp": "^0.0.0-dev-
|
|
36
|
+
"@inkeep/agents-core": "^0.0.0-dev-20251219041014",
|
|
37
|
+
"@inkeep/agents-manage-mcp": "^0.0.0-dev-20251219041014"
|
|
38
38
|
},
|
|
39
39
|
"peerDependencies": {
|
|
40
40
|
"@hono/zod-openapi": "^1.1.5",
|