@lessly/sdk-app 9.1.0 → 9.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/analytics/index.d.cts +1 -1
- package/dist/analytics/index.d.ts +1 -1
- package/dist/brain/index.cjs +0 -10
- package/dist/brain/index.cjs.map +1 -1
- package/dist/brain/index.d.cts +2 -10
- package/dist/brain/index.d.ts +2 -10
- package/dist/brain/index.js +1 -9
- package/dist/brain/index.js.map +1 -1
- package/dist/{client.gen-LEUVRZRQ.d.cts → client.gen-BLMudoVx.d.cts} +577 -107
- package/dist/{client.gen-LEUVRZRQ.d.ts → client.gen-BLMudoVx.d.ts} +577 -107
- package/dist/consent/index.d.cts +1 -1
- package/dist/consent/index.d.ts +1 -1
- package/dist/deployment/index.d.cts +1 -1
- package/dist/deployment/index.d.ts +1 -1
- package/dist/index.cjs +322 -40
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +322 -40
- package/dist/index.js.map +1 -1
- package/dist/mail/index.d.cts +2 -2
- package/dist/mail/index.d.ts +2 -2
- package/dist/organization/index.d.cts +1 -1
- package/dist/organization/index.d.ts +1 -1
- package/dist/playground/index.cjs +66 -0
- package/dist/playground/index.cjs.map +1 -0
- package/dist/playground/index.d.cts +52 -0
- package/dist/playground/index.d.ts +52 -0
- package/dist/playground/index.js +53 -0
- package/dist/playground/index.js.map +1 -0
- package/dist/realtime/index.cjs +66 -0
- package/dist/realtime/index.cjs.map +1 -0
- package/dist/realtime/index.d.cts +52 -0
- package/dist/realtime/index.d.ts +52 -0
- package/dist/realtime/index.js +53 -0
- package/dist/realtime/index.js.map +1 -0
- package/dist/tracking/index.d.cts +1 -1
- package/dist/tracking/index.d.ts +1 -1
- package/dist/waitlist/index.d.cts +1 -1
- package/dist/waitlist/index.d.ts +1 -1
- package/package.json +12 -2
- package/src/gen/bindings.gen.ts +322 -40
- package/src/gen/brain/index.ts +1 -1
- package/src/gen/brain/queryOptions.gen.ts +0 -14
- package/src/gen/client.gen.ts +102 -8
- package/src/gen/manifest.gen.ts +1 -1
- package/src/gen/playground/index.ts +3 -0
- package/src/gen/playground/queryOptions.gen.ts +86 -0
- package/src/gen/realtime/index.ts +3 -0
- package/src/gen/realtime/queryOptions.gen.ts +81 -0
- package/src/gen/types.gen.ts +580 -106
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
// src/gen/realtime/queryOptions.gen.ts
|
|
2
|
+
var realtimeGrantCreateMutationOptions = (sdk) => ({
|
|
3
|
+
mutationKey: ["realtime", "grant", "create"],
|
|
4
|
+
mutationFn: (input) => sdk["realtime"]["grant"]["create"](input)
|
|
5
|
+
});
|
|
6
|
+
var realtimeGrantListQueryOptions = (sdk, input) => ({
|
|
7
|
+
queryKey: ["realtime", "grant", "list", input],
|
|
8
|
+
queryFn: () => sdk["realtime"]["grant"]["list"](input)
|
|
9
|
+
});
|
|
10
|
+
var realtimeGrantRevokeMutationOptions = (sdk) => ({
|
|
11
|
+
mutationKey: ["realtime", "grant", "revoke"],
|
|
12
|
+
mutationFn: (input) => sdk["realtime"]["grant"]["revoke"](input)
|
|
13
|
+
});
|
|
14
|
+
var realtimeHistoryGetQueryOptions = (sdk, input) => ({
|
|
15
|
+
queryKey: ["realtime", "history", "get", input],
|
|
16
|
+
queryFn: () => sdk["realtime"]["history"]["get"](input)
|
|
17
|
+
});
|
|
18
|
+
var realtimeMessagesPublishMutationOptions = (sdk) => ({
|
|
19
|
+
mutationKey: ["realtime", "messages", "publish"],
|
|
20
|
+
mutationFn: (input) => sdk["realtime"]["messages"]["publish"](input)
|
|
21
|
+
});
|
|
22
|
+
var realtimeNamespaceCreateMutationOptions = (sdk) => ({
|
|
23
|
+
mutationKey: ["realtime", "namespace", "create"],
|
|
24
|
+
mutationFn: (input) => sdk["realtime"]["namespace"]["create"](input)
|
|
25
|
+
});
|
|
26
|
+
var realtimeNamespaceDeleteMutationOptions = (sdk) => ({
|
|
27
|
+
mutationKey: ["realtime", "namespace", "delete"],
|
|
28
|
+
mutationFn: (input) => sdk["realtime"]["namespace"]["delete"](input)
|
|
29
|
+
});
|
|
30
|
+
var realtimeNamespaceGetQueryOptions = (sdk, input) => ({
|
|
31
|
+
queryKey: ["realtime", "namespace", "get", input],
|
|
32
|
+
queryFn: () => sdk["realtime"]["namespace"]["get"](input)
|
|
33
|
+
});
|
|
34
|
+
var realtimeNamespaceListQueryOptions = (sdk, input) => ({
|
|
35
|
+
queryKey: ["realtime", "namespace", "list", input],
|
|
36
|
+
queryFn: () => sdk["realtime"]["namespace"]["list"](input)
|
|
37
|
+
});
|
|
38
|
+
var realtimeNamespaceUpdateMutationOptions = (sdk) => ({
|
|
39
|
+
mutationKey: ["realtime", "namespace", "update"],
|
|
40
|
+
mutationFn: (input) => sdk["realtime"]["namespace"]["update"](input)
|
|
41
|
+
});
|
|
42
|
+
var realtimeStatusGetQueryOptions = (sdk, input) => ({
|
|
43
|
+
queryKey: ["realtime", "status", "get", input],
|
|
44
|
+
queryFn: () => sdk["realtime"]["status"]["get"](input)
|
|
45
|
+
});
|
|
46
|
+
var realtimeTokensCreateMutationOptions = (sdk) => ({
|
|
47
|
+
mutationKey: ["realtime", "tokens", "create"],
|
|
48
|
+
mutationFn: (input) => sdk["realtime"]["tokens"]["create"](input)
|
|
49
|
+
});
|
|
50
|
+
|
|
51
|
+
export { realtimeGrantCreateMutationOptions, realtimeGrantListQueryOptions, realtimeGrantRevokeMutationOptions, realtimeHistoryGetQueryOptions, realtimeMessagesPublishMutationOptions, realtimeNamespaceCreateMutationOptions, realtimeNamespaceDeleteMutationOptions, realtimeNamespaceGetQueryOptions, realtimeNamespaceListQueryOptions, realtimeNamespaceUpdateMutationOptions, realtimeStatusGetQueryOptions, realtimeTokensCreateMutationOptions };
|
|
52
|
+
//# sourceMappingURL=index.js.map
|
|
53
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/gen/realtime/queryOptions.gen.ts"],"names":[],"mappings":"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","file":"index.js","sourcesContent":["// AUTOGENERATED by scripts/generate.ts — do not edit.\nimport type { GeneratedClient } from '../client.gen';\nimport type {\n RealtimeGrantCreateInput,\n RealtimeGrantListInput,\n RealtimeGrantListOutput,\n RealtimeGrantRevokeInput,\n RealtimeHistoryGetInput,\n RealtimeHistoryGetOutput,\n RealtimeMessagesPublishInput,\n RealtimeNamespaceCreateInput,\n RealtimeNamespaceDeleteInput,\n RealtimeNamespaceGetInput,\n RealtimeNamespaceGetOutput,\n RealtimeNamespaceListInput,\n RealtimeNamespaceListOutput,\n RealtimeNamespaceUpdateInput,\n RealtimeStatusGetInput,\n RealtimeStatusGetOutput,\n RealtimeTokensCreateInput,\n} from '../types.gen';\n\nexport const realtimeGrantCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'grant', 'create'],\n mutationFn: (input: RealtimeGrantCreateInput) => sdk['realtime']['grant']['create'](input),\n});\n\nexport const realtimeGrantListQueryOptions = (sdk: GeneratedClient, input: RealtimeGrantListInput) => ({\n queryKey: ['realtime', 'grant', 'list', input] as const,\n queryFn: () => sdk['realtime']['grant']['list'](input),\n});\n\nexport const realtimeGrantRevokeMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'grant', 'revoke'],\n mutationFn: (input: RealtimeGrantRevokeInput) => sdk['realtime']['grant']['revoke'](input),\n});\n\nexport const realtimeHistoryGetQueryOptions = (sdk: GeneratedClient, input: RealtimeHistoryGetInput) => ({\n queryKey: ['realtime', 'history', 'get', input] as const,\n queryFn: () => sdk['realtime']['history']['get'](input),\n});\n\nexport const realtimeMessagesPublishMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'messages', 'publish'],\n mutationFn: (input: RealtimeMessagesPublishInput) => sdk['realtime']['messages']['publish'](input),\n});\n\nexport const realtimeNamespaceCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'namespace', 'create'],\n mutationFn: (input: RealtimeNamespaceCreateInput) => sdk['realtime']['namespace']['create'](input),\n});\n\nexport const realtimeNamespaceDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'namespace', 'delete'],\n mutationFn: (input: RealtimeNamespaceDeleteInput) => sdk['realtime']['namespace']['delete'](input),\n});\n\nexport const realtimeNamespaceGetQueryOptions = (sdk: GeneratedClient, input: RealtimeNamespaceGetInput) => ({\n queryKey: ['realtime', 'namespace', 'get', input] as const,\n queryFn: () => sdk['realtime']['namespace']['get'](input),\n});\n\nexport const realtimeNamespaceListQueryOptions = (sdk: GeneratedClient, input: RealtimeNamespaceListInput) => ({\n queryKey: ['realtime', 'namespace', 'list', input] as const,\n queryFn: () => sdk['realtime']['namespace']['list'](input),\n});\n\nexport const realtimeNamespaceUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'namespace', 'update'],\n mutationFn: (input: RealtimeNamespaceUpdateInput) => sdk['realtime']['namespace']['update'](input),\n});\n\nexport const realtimeStatusGetQueryOptions = (sdk: GeneratedClient, input: RealtimeStatusGetInput) => ({\n queryKey: ['realtime', 'status', 'get', input] as const,\n queryFn: () => sdk['realtime']['status']['get'](input),\n});\n\nexport const realtimeTokensCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'tokens', 'create'],\n mutationFn: (input: RealtimeTokensCreateInput) => sdk['realtime']['tokens']['create'](input),\n});\n"]}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as GeneratedClient,
|
|
1
|
+
import { G as GeneratedClient, io as TrackingApiKeysCreateInput, ip as TrackingApiKeysCreateOutput, iq as TrackingApiKeysListInput, ir as TrackingApiKeysListOutput, is as TrackingApiKeysRevokeInput, it as TrackingApiKeysRevokeOutput, iu as TrackingApiKeysRotateInput, iv as TrackingApiKeysRotateOutput, iw as TrackingDomainsCreateInput, ix as TrackingDomainsCreateOutput, iy as TrackingDomainsDeleteInput, iz as TrackingDomainsDeleteOutput, iA as TrackingDomainsGetInput, iB as TrackingDomainsGetOutput, iC as TrackingDomainsListInput, iD as TrackingDomainsListOutput, iE as TrackingDomainsVerifyInput, iF as TrackingDomainsVerifyOutput, iG as TrackingEventNamesArchiveInput, iH as TrackingEventNamesArchiveOutput, iI as TrackingEventNamesListInput, iJ as TrackingEventNamesListOutput, iK as TrackingEventNamesUnarchiveInput, iL as TrackingEventNamesUnarchiveOutput, iM as TrackingGoogleadsConnectionStatusInput, iN as TrackingGoogleadsConnectionStatusOutput, iO as TrackingGoogleadsConversionActionsInput, iP as TrackingGoogleadsConversionActionsOutput, iQ as TrackingGoogleadsFeedbackConfigGetInput, iR as TrackingGoogleadsFeedbackConfigGetOutput, iS as TrackingGoogleadsFeedbackConfigSetInput, iT as TrackingGoogleadsFeedbackConfigSetOutput, iU as TrackingGoogleadsFeedbackRunInput, iV as TrackingGoogleadsFeedbackRunOutput, iW as TrackingGoogleadsFeedbackStatusInput, iX as TrackingGoogleadsFeedbackStatusOutput, iY as TrackingGoogleadsFeedbackUploadsInput, iZ as TrackingGoogleadsFeedbackUploadsOutput, i_ as TrackingGoogleadsRoasReportInput, i$ as TrackingGoogleadsRoasReportOutput, j0 as TrackingGoogleadsSyncNowInput, j1 as TrackingGoogleadsSyncNowOutput, j2 as TrackingGoogleadsTrackingHealthInput, j3 as TrackingGoogleadsTrackingHealthOutput, j4 as TrackingGoogleadsUsVsPlatformInput, j5 as TrackingGoogleadsUsVsPlatformOutput, j6 as TrackingIdentityHealthInput, j7 as TrackingIdentityHealthOutput, j8 as TrackingInstallDomainsCreateInput, j9 as TrackingInstallDomainsCreateOutput, ja as TrackingInstallDomainsDeleteInput, jb as TrackingInstallDomainsDeleteOutput, jc as TrackingInstallDomainsListInput, jd as TrackingInstallDomainsListOutput, je as TrackingLinkDomainsCreateInput, jf as TrackingLinkDomainsCreateOutput, jg as TrackingLinkDomainsDeleteInput, jh as TrackingLinkDomainsDeleteOutput, ji as TrackingLinkDomainsListInput, jj as TrackingLinkDomainsListOutput, jk as TrackingLiveEventsListInput, jl as TrackingLiveEventsListOutput, jm as TrackingProfilesDeleteInput, jn as TrackingProfilesDeleteOutput, jo as TrackingProfilesExportInput, jp as TrackingProfilesExportOutput, jq as TrackingProfilesGetInput, jr as TrackingProfilesGetOutput, js as TrackingProfilesListInput, jt as TrackingProfilesListOutput, ju as TrackingReportsAttributedJourneyInput, jv as TrackingReportsAttributedJourneyOutput, jw as TrackingReportsRevenueBySourceInput, jx as TrackingReportsRevenueBySourceOutput, jy as TrackingReportsSourcePeopleInput, jz as TrackingReportsSourcePeopleOutput, jA as TrackingSnippetsGetInput, jB as TrackingSnippetsGetOutput } from '../client.gen-BLMudoVx.cjs';
|
|
2
2
|
|
|
3
3
|
declare const trackingApiKeysCreateMutationOptions: (sdk: GeneratedClient) => {
|
|
4
4
|
mutationKey: string[];
|
package/dist/tracking/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as GeneratedClient,
|
|
1
|
+
import { G as GeneratedClient, io as TrackingApiKeysCreateInput, ip as TrackingApiKeysCreateOutput, iq as TrackingApiKeysListInput, ir as TrackingApiKeysListOutput, is as TrackingApiKeysRevokeInput, it as TrackingApiKeysRevokeOutput, iu as TrackingApiKeysRotateInput, iv as TrackingApiKeysRotateOutput, iw as TrackingDomainsCreateInput, ix as TrackingDomainsCreateOutput, iy as TrackingDomainsDeleteInput, iz as TrackingDomainsDeleteOutput, iA as TrackingDomainsGetInput, iB as TrackingDomainsGetOutput, iC as TrackingDomainsListInput, iD as TrackingDomainsListOutput, iE as TrackingDomainsVerifyInput, iF as TrackingDomainsVerifyOutput, iG as TrackingEventNamesArchiveInput, iH as TrackingEventNamesArchiveOutput, iI as TrackingEventNamesListInput, iJ as TrackingEventNamesListOutput, iK as TrackingEventNamesUnarchiveInput, iL as TrackingEventNamesUnarchiveOutput, iM as TrackingGoogleadsConnectionStatusInput, iN as TrackingGoogleadsConnectionStatusOutput, iO as TrackingGoogleadsConversionActionsInput, iP as TrackingGoogleadsConversionActionsOutput, iQ as TrackingGoogleadsFeedbackConfigGetInput, iR as TrackingGoogleadsFeedbackConfigGetOutput, iS as TrackingGoogleadsFeedbackConfigSetInput, iT as TrackingGoogleadsFeedbackConfigSetOutput, iU as TrackingGoogleadsFeedbackRunInput, iV as TrackingGoogleadsFeedbackRunOutput, iW as TrackingGoogleadsFeedbackStatusInput, iX as TrackingGoogleadsFeedbackStatusOutput, iY as TrackingGoogleadsFeedbackUploadsInput, iZ as TrackingGoogleadsFeedbackUploadsOutput, i_ as TrackingGoogleadsRoasReportInput, i$ as TrackingGoogleadsRoasReportOutput, j0 as TrackingGoogleadsSyncNowInput, j1 as TrackingGoogleadsSyncNowOutput, j2 as TrackingGoogleadsTrackingHealthInput, j3 as TrackingGoogleadsTrackingHealthOutput, j4 as TrackingGoogleadsUsVsPlatformInput, j5 as TrackingGoogleadsUsVsPlatformOutput, j6 as TrackingIdentityHealthInput, j7 as TrackingIdentityHealthOutput, j8 as TrackingInstallDomainsCreateInput, j9 as TrackingInstallDomainsCreateOutput, ja as TrackingInstallDomainsDeleteInput, jb as TrackingInstallDomainsDeleteOutput, jc as TrackingInstallDomainsListInput, jd as TrackingInstallDomainsListOutput, je as TrackingLinkDomainsCreateInput, jf as TrackingLinkDomainsCreateOutput, jg as TrackingLinkDomainsDeleteInput, jh as TrackingLinkDomainsDeleteOutput, ji as TrackingLinkDomainsListInput, jj as TrackingLinkDomainsListOutput, jk as TrackingLiveEventsListInput, jl as TrackingLiveEventsListOutput, jm as TrackingProfilesDeleteInput, jn as TrackingProfilesDeleteOutput, jo as TrackingProfilesExportInput, jp as TrackingProfilesExportOutput, jq as TrackingProfilesGetInput, jr as TrackingProfilesGetOutput, js as TrackingProfilesListInput, jt as TrackingProfilesListOutput, ju as TrackingReportsAttributedJourneyInput, jv as TrackingReportsAttributedJourneyOutput, jw as TrackingReportsRevenueBySourceInput, jx as TrackingReportsRevenueBySourceOutput, jy as TrackingReportsSourcePeopleInput, jz as TrackingReportsSourcePeopleOutput, jA as TrackingSnippetsGetInput, jB as TrackingSnippetsGetOutput } from '../client.gen-BLMudoVx.js';
|
|
2
2
|
|
|
3
3
|
declare const trackingApiKeysCreateMutationOptions: (sdk: GeneratedClient) => {
|
|
4
4
|
mutationKey: string[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as GeneratedClient,
|
|
1
|
+
import { G as GeneratedClient, jC as WaitlistConfigGetInput, jD as WaitlistConfigGetOutput, jE as WaitlistConfigUpsertInput, jF as WaitlistConfigUpsertOutput, jG as WaitlistEmbedGetInput, jH as WaitlistEmbedGetOutput, jI as WaitlistInvitesSendInput, jJ as WaitlistInvitesSendOutput, jK as WaitlistSignupsEraseInput, jL as WaitlistSignupsEraseOutput, jM as WaitlistSignupsFunnelInput, jN as WaitlistSignupsFunnelOutput, jO as WaitlistSignupsListInput, jP as WaitlistSignupsListOutput } from '../client.gen-BLMudoVx.cjs';
|
|
2
2
|
|
|
3
3
|
declare const waitlistConfigGetQueryOptions: (sdk: GeneratedClient, input: WaitlistConfigGetInput) => {
|
|
4
4
|
queryKey: readonly ["waitlist", "config", "get", WaitlistConfigGetInput];
|
package/dist/waitlist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as GeneratedClient,
|
|
1
|
+
import { G as GeneratedClient, jC as WaitlistConfigGetInput, jD as WaitlistConfigGetOutput, jE as WaitlistConfigUpsertInput, jF as WaitlistConfigUpsertOutput, jG as WaitlistEmbedGetInput, jH as WaitlistEmbedGetOutput, jI as WaitlistInvitesSendInput, jJ as WaitlistInvitesSendOutput, jK as WaitlistSignupsEraseInput, jL as WaitlistSignupsEraseOutput, jM as WaitlistSignupsFunnelInput, jN as WaitlistSignupsFunnelOutput, jO as WaitlistSignupsListInput, jP as WaitlistSignupsListOutput } from '../client.gen-BLMudoVx.js';
|
|
2
2
|
|
|
3
3
|
declare const waitlistConfigGetQueryOptions: (sdk: GeneratedClient, input: WaitlistConfigGetInput) => {
|
|
4
4
|
queryKey: readonly ["waitlist", "config", "get", WaitlistConfigGetInput];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lessly/sdk-app",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"engines": {
|
|
@@ -69,6 +69,16 @@
|
|
|
69
69
|
"import": "./dist/organization/index.js",
|
|
70
70
|
"require": "./dist/organization/index.cjs"
|
|
71
71
|
},
|
|
72
|
+
"./playground": {
|
|
73
|
+
"types": "./dist/playground/index.d.ts",
|
|
74
|
+
"import": "./dist/playground/index.js",
|
|
75
|
+
"require": "./dist/playground/index.cjs"
|
|
76
|
+
},
|
|
77
|
+
"./realtime": {
|
|
78
|
+
"types": "./dist/realtime/index.d.ts",
|
|
79
|
+
"import": "./dist/realtime/index.js",
|
|
80
|
+
"require": "./dist/realtime/index.cjs"
|
|
81
|
+
},
|
|
72
82
|
"./tracking": {
|
|
73
83
|
"types": "./dist/tracking/index.d.ts",
|
|
74
84
|
"import": "./dist/tracking/index.js",
|
|
@@ -80,5 +90,5 @@
|
|
|
80
90
|
"require": "./dist/waitlist/index.cjs"
|
|
81
91
|
}
|
|
82
92
|
},
|
|
83
|
-
"sdkContentHash": "sha256:
|
|
93
|
+
"sdkContentHash": "sha256:a472b6604ec4bbbc688fa982f46b58f479f0beae92a317ae9e2d8f79c3fe9cd7"
|
|
84
94
|
}
|
package/src/gen/bindings.gen.ts
CHANGED
|
@@ -409,21 +409,6 @@ export const bindings: BindingsMap = {
|
|
|
409
409
|
}
|
|
410
410
|
},
|
|
411
411
|
"knowledge": {
|
|
412
|
-
"graph": {
|
|
413
|
-
"method": "GET",
|
|
414
|
-
"params": [
|
|
415
|
-
{
|
|
416
|
-
"in": "query",
|
|
417
|
-
"name": "limit"
|
|
418
|
-
},
|
|
419
|
-
{
|
|
420
|
-
"in": "query",
|
|
421
|
-
"name": "scope"
|
|
422
|
-
}
|
|
423
|
-
],
|
|
424
|
-
"path": "/brain/knowledge/graph",
|
|
425
|
-
"readOnly": true
|
|
426
|
-
},
|
|
427
412
|
"neighborhood": {
|
|
428
413
|
"method": "GET",
|
|
429
414
|
"params": [
|
|
@@ -510,31 +495,6 @@ export const bindings: BindingsMap = {
|
|
|
510
495
|
"readOnly": true
|
|
511
496
|
}
|
|
512
497
|
},
|
|
513
|
-
"knowledge-entity": {
|
|
514
|
-
"memories": {
|
|
515
|
-
"method": "GET",
|
|
516
|
-
"params": [
|
|
517
|
-
{
|
|
518
|
-
"in": "path",
|
|
519
|
-
"name": "entity_ref"
|
|
520
|
-
},
|
|
521
|
-
{
|
|
522
|
-
"in": "query",
|
|
523
|
-
"name": "limit"
|
|
524
|
-
},
|
|
525
|
-
{
|
|
526
|
-
"in": "query",
|
|
527
|
-
"name": "offset"
|
|
528
|
-
},
|
|
529
|
-
{
|
|
530
|
-
"in": "query",
|
|
531
|
-
"name": "scope"
|
|
532
|
-
}
|
|
533
|
-
],
|
|
534
|
-
"path": "/brain/knowledge/entities/:entity_ref/memories",
|
|
535
|
-
"readOnly": true
|
|
536
|
-
}
|
|
537
|
-
},
|
|
538
498
|
"memory": {
|
|
539
499
|
"add": {
|
|
540
500
|
"method": "POST",
|
|
@@ -4237,6 +4197,328 @@ export const bindings: BindingsMap = {
|
|
|
4237
4197
|
}
|
|
4238
4198
|
}
|
|
4239
4199
|
},
|
|
4200
|
+
"playground": {
|
|
4201
|
+
"analytics": {
|
|
4202
|
+
"overview": {
|
|
4203
|
+
"method": "POST",
|
|
4204
|
+
"params": [
|
|
4205
|
+
{
|
|
4206
|
+
"in": "body",
|
|
4207
|
+
"name": "limit"
|
|
4208
|
+
}
|
|
4209
|
+
],
|
|
4210
|
+
"path": "/playground/analytics/overview",
|
|
4211
|
+
"readOnly": true
|
|
4212
|
+
}
|
|
4213
|
+
},
|
|
4214
|
+
"billing": {
|
|
4215
|
+
"entitlements": {
|
|
4216
|
+
"method": "POST",
|
|
4217
|
+
"path": "/playground/billing/entitlements",
|
|
4218
|
+
"readOnly": true
|
|
4219
|
+
},
|
|
4220
|
+
"record-usage": {
|
|
4221
|
+
"method": "POST",
|
|
4222
|
+
"params": [
|
|
4223
|
+
{
|
|
4224
|
+
"in": "body",
|
|
4225
|
+
"name": "value"
|
|
4226
|
+
}
|
|
4227
|
+
],
|
|
4228
|
+
"path": "/playground/billing/usage",
|
|
4229
|
+
"readOnly": false
|
|
4230
|
+
}
|
|
4231
|
+
},
|
|
4232
|
+
"clickup": {
|
|
4233
|
+
"create-task": {
|
|
4234
|
+
"method": "POST",
|
|
4235
|
+
"params": [
|
|
4236
|
+
{
|
|
4237
|
+
"in": "body",
|
|
4238
|
+
"name": "listId"
|
|
4239
|
+
},
|
|
4240
|
+
{
|
|
4241
|
+
"in": "body",
|
|
4242
|
+
"name": "name"
|
|
4243
|
+
}
|
|
4244
|
+
],
|
|
4245
|
+
"path": "/playground/clickup/tasks",
|
|
4246
|
+
"readOnly": false
|
|
4247
|
+
},
|
|
4248
|
+
"get-last-webhook": {
|
|
4249
|
+
"method": "GET",
|
|
4250
|
+
"path": "/playground/clickup/webhooks/last",
|
|
4251
|
+
"readOnly": true
|
|
4252
|
+
},
|
|
4253
|
+
"get-overview": {
|
|
4254
|
+
"method": "GET",
|
|
4255
|
+
"path": "/playground/clickup/overview",
|
|
4256
|
+
"readOnly": true
|
|
4257
|
+
}
|
|
4258
|
+
},
|
|
4259
|
+
"gdrive": {
|
|
4260
|
+
"get-last-change": {
|
|
4261
|
+
"method": "GET",
|
|
4262
|
+
"path": "/playground/gdrive/changes/last",
|
|
4263
|
+
"readOnly": true
|
|
4264
|
+
},
|
|
4265
|
+
"read-file": {
|
|
4266
|
+
"method": "POST",
|
|
4267
|
+
"params": [
|
|
4268
|
+
{
|
|
4269
|
+
"in": "body",
|
|
4270
|
+
"name": "fileId"
|
|
4271
|
+
}
|
|
4272
|
+
],
|
|
4273
|
+
"path": "/playground/gdrive/file",
|
|
4274
|
+
"readOnly": true
|
|
4275
|
+
}
|
|
4276
|
+
},
|
|
4277
|
+
"googleads": {
|
|
4278
|
+
"read-customer": {
|
|
4279
|
+
"method": "POST",
|
|
4280
|
+
"path": "/playground/googleads/customer",
|
|
4281
|
+
"readOnly": true
|
|
4282
|
+
}
|
|
4283
|
+
},
|
|
4284
|
+
"lifecycle": {
|
|
4285
|
+
"get-state": {
|
|
4286
|
+
"method": "GET",
|
|
4287
|
+
"path": "/playground/lifecycle/state",
|
|
4288
|
+
"readOnly": true
|
|
4289
|
+
},
|
|
4290
|
+
"list-events": {
|
|
4291
|
+
"method": "GET",
|
|
4292
|
+
"path": "/playground/lifecycle/events",
|
|
4293
|
+
"readOnly": true
|
|
4294
|
+
}
|
|
4295
|
+
},
|
|
4296
|
+
"webhook": {
|
|
4297
|
+
"get-last": {
|
|
4298
|
+
"method": "GET",
|
|
4299
|
+
"path": "/playground/webhooks/last",
|
|
4300
|
+
"readOnly": true
|
|
4301
|
+
}
|
|
4302
|
+
}
|
|
4303
|
+
},
|
|
4304
|
+
"realtime": {
|
|
4305
|
+
"grant": {
|
|
4306
|
+
"create": {
|
|
4307
|
+
"method": "POST",
|
|
4308
|
+
"params": [
|
|
4309
|
+
{
|
|
4310
|
+
"in": "body",
|
|
4311
|
+
"name": "subject"
|
|
4312
|
+
},
|
|
4313
|
+
{
|
|
4314
|
+
"in": "body",
|
|
4315
|
+
"name": "pattern"
|
|
4316
|
+
},
|
|
4317
|
+
{
|
|
4318
|
+
"in": "body",
|
|
4319
|
+
"name": "ops"
|
|
4320
|
+
}
|
|
4321
|
+
],
|
|
4322
|
+
"path": "/realtime/grants",
|
|
4323
|
+
"readOnly": false
|
|
4324
|
+
},
|
|
4325
|
+
"list": {
|
|
4326
|
+
"method": "GET",
|
|
4327
|
+
"params": [
|
|
4328
|
+
{
|
|
4329
|
+
"in": "query",
|
|
4330
|
+
"name": "subject"
|
|
4331
|
+
}
|
|
4332
|
+
],
|
|
4333
|
+
"path": "/realtime/grants",
|
|
4334
|
+
"readOnly": true
|
|
4335
|
+
},
|
|
4336
|
+
"revoke": {
|
|
4337
|
+
"method": "DELETE",
|
|
4338
|
+
"params": [
|
|
4339
|
+
{
|
|
4340
|
+
"in": "path",
|
|
4341
|
+
"name": "id"
|
|
4342
|
+
}
|
|
4343
|
+
],
|
|
4344
|
+
"path": "/realtime/grants/:id",
|
|
4345
|
+
"readOnly": false
|
|
4346
|
+
}
|
|
4347
|
+
},
|
|
4348
|
+
"history": {
|
|
4349
|
+
"get": {
|
|
4350
|
+
"method": "GET",
|
|
4351
|
+
"params": [
|
|
4352
|
+
{
|
|
4353
|
+
"in": "query",
|
|
4354
|
+
"name": "channel"
|
|
4355
|
+
},
|
|
4356
|
+
{
|
|
4357
|
+
"in": "query",
|
|
4358
|
+
"name": "offset"
|
|
4359
|
+
},
|
|
4360
|
+
{
|
|
4361
|
+
"in": "query",
|
|
4362
|
+
"name": "epoch"
|
|
4363
|
+
},
|
|
4364
|
+
{
|
|
4365
|
+
"in": "query",
|
|
4366
|
+
"name": "last_n"
|
|
4367
|
+
},
|
|
4368
|
+
{
|
|
4369
|
+
"in": "query",
|
|
4370
|
+
"name": "last_ms"
|
|
4371
|
+
}
|
|
4372
|
+
],
|
|
4373
|
+
"path": "/realtime/messages/history",
|
|
4374
|
+
"readOnly": true
|
|
4375
|
+
}
|
|
4376
|
+
},
|
|
4377
|
+
"messages": {
|
|
4378
|
+
"publish": {
|
|
4379
|
+
"method": "POST",
|
|
4380
|
+
"params": [
|
|
4381
|
+
{
|
|
4382
|
+
"in": "body",
|
|
4383
|
+
"name": "channel"
|
|
4384
|
+
},
|
|
4385
|
+
{
|
|
4386
|
+
"in": "body",
|
|
4387
|
+
"name": "data"
|
|
4388
|
+
}
|
|
4389
|
+
],
|
|
4390
|
+
"path": "/realtime/messages",
|
|
4391
|
+
"readOnly": false
|
|
4392
|
+
}
|
|
4393
|
+
},
|
|
4394
|
+
"namespace": {
|
|
4395
|
+
"create": {
|
|
4396
|
+
"method": "POST",
|
|
4397
|
+
"params": [
|
|
4398
|
+
{
|
|
4399
|
+
"in": "body",
|
|
4400
|
+
"name": "name"
|
|
4401
|
+
},
|
|
4402
|
+
{
|
|
4403
|
+
"in": "body",
|
|
4404
|
+
"name": "visibility"
|
|
4405
|
+
},
|
|
4406
|
+
{
|
|
4407
|
+
"in": "body",
|
|
4408
|
+
"name": "presence"
|
|
4409
|
+
},
|
|
4410
|
+
{
|
|
4411
|
+
"in": "body",
|
|
4412
|
+
"name": "clientEvents"
|
|
4413
|
+
},
|
|
4414
|
+
{
|
|
4415
|
+
"in": "body",
|
|
4416
|
+
"name": "history"
|
|
4417
|
+
},
|
|
4418
|
+
{
|
|
4419
|
+
"in": "body",
|
|
4420
|
+
"name": "historyWindowSeconds"
|
|
4421
|
+
},
|
|
4422
|
+
{
|
|
4423
|
+
"in": "body",
|
|
4424
|
+
"name": "encryptionRequired"
|
|
4425
|
+
},
|
|
4426
|
+
{
|
|
4427
|
+
"in": "body",
|
|
4428
|
+
"name": "identifiedOnly"
|
|
4429
|
+
}
|
|
4430
|
+
],
|
|
4431
|
+
"path": "/realtime/namespaces",
|
|
4432
|
+
"readOnly": false
|
|
4433
|
+
},
|
|
4434
|
+
"delete": {
|
|
4435
|
+
"method": "DELETE",
|
|
4436
|
+
"params": [
|
|
4437
|
+
{
|
|
4438
|
+
"in": "path",
|
|
4439
|
+
"name": "name"
|
|
4440
|
+
}
|
|
4441
|
+
],
|
|
4442
|
+
"path": "/realtime/namespaces/:name",
|
|
4443
|
+
"readOnly": false
|
|
4444
|
+
},
|
|
4445
|
+
"get": {
|
|
4446
|
+
"method": "GET",
|
|
4447
|
+
"params": [
|
|
4448
|
+
{
|
|
4449
|
+
"in": "path",
|
|
4450
|
+
"name": "name"
|
|
4451
|
+
}
|
|
4452
|
+
],
|
|
4453
|
+
"path": "/realtime/namespaces/:name",
|
|
4454
|
+
"readOnly": true
|
|
4455
|
+
},
|
|
4456
|
+
"list": {
|
|
4457
|
+
"method": "GET",
|
|
4458
|
+
"path": "/realtime/namespaces",
|
|
4459
|
+
"readOnly": true
|
|
4460
|
+
},
|
|
4461
|
+
"update": {
|
|
4462
|
+
"method": "PATCH",
|
|
4463
|
+
"params": [
|
|
4464
|
+
{
|
|
4465
|
+
"in": "path",
|
|
4466
|
+
"name": "name"
|
|
4467
|
+
},
|
|
4468
|
+
{
|
|
4469
|
+
"in": "body",
|
|
4470
|
+
"name": "visibility"
|
|
4471
|
+
},
|
|
4472
|
+
{
|
|
4473
|
+
"in": "body",
|
|
4474
|
+
"name": "presence"
|
|
4475
|
+
},
|
|
4476
|
+
{
|
|
4477
|
+
"in": "body",
|
|
4478
|
+
"name": "clientEvents"
|
|
4479
|
+
},
|
|
4480
|
+
{
|
|
4481
|
+
"in": "body",
|
|
4482
|
+
"name": "history"
|
|
4483
|
+
},
|
|
4484
|
+
{
|
|
4485
|
+
"in": "body",
|
|
4486
|
+
"name": "historyWindowSeconds"
|
|
4487
|
+
},
|
|
4488
|
+
{
|
|
4489
|
+
"in": "body",
|
|
4490
|
+
"name": "encryptionRequired"
|
|
4491
|
+
},
|
|
4492
|
+
{
|
|
4493
|
+
"in": "body",
|
|
4494
|
+
"name": "identifiedOnly"
|
|
4495
|
+
}
|
|
4496
|
+
],
|
|
4497
|
+
"path": "/realtime/namespaces/:name",
|
|
4498
|
+
"readOnly": false
|
|
4499
|
+
}
|
|
4500
|
+
},
|
|
4501
|
+
"status": {
|
|
4502
|
+
"get": {
|
|
4503
|
+
"method": "GET",
|
|
4504
|
+
"path": "/realtime/status",
|
|
4505
|
+
"readOnly": true
|
|
4506
|
+
}
|
|
4507
|
+
},
|
|
4508
|
+
"tokens": {
|
|
4509
|
+
"create": {
|
|
4510
|
+
"method": "POST",
|
|
4511
|
+
"params": [
|
|
4512
|
+
{
|
|
4513
|
+
"in": "body",
|
|
4514
|
+
"name": "channels"
|
|
4515
|
+
}
|
|
4516
|
+
],
|
|
4517
|
+
"path": "/realtime/tokens",
|
|
4518
|
+
"readOnly": false
|
|
4519
|
+
}
|
|
4520
|
+
}
|
|
4521
|
+
},
|
|
4240
4522
|
"tracking": {
|
|
4241
4523
|
"api-keys": {
|
|
4242
4524
|
"create": {
|
package/src/gen/brain/index.ts
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
// AUTOGENERATED by scripts/generate.ts — do not edit.
|
|
2
2
|
export * from './queryOptions.gen';
|
|
3
|
-
export type { BrainBackupCreateInput, BrainBackupCreateOutput, BrainBackupRestoreInput, BrainBackupRestoreOutput, BrainBackupStatusInput, BrainBackupStatusOutput, BrainBackupsListInput, BrainBackupsListOutput, BrainClickupChannelsListInput, BrainClickupChannelsListOutput, BrainClickupConnectionsListInput, BrainClickupConnectionsListOutput, BrainClickupListsListInput, BrainClickupListsListOutput, BrainClickupSpacesListInput, BrainClickupSpacesListOutput, BrainCognitionDigestInput, BrainCognitionDigestOutput, BrainCognitionStatusInput, BrainCognitionStatusOutput, BrainCognitionSweepInput, BrainCognitionSweepOutput, BrainConnectorBranchesListInput, BrainConnectorBranchesListOutput, BrainConnectorConnectionsListInput, BrainConnectorConnectionsListOutput, BrainConnectorReposListInput, BrainConnectorReposListOutput, BrainDaemonBatchStatusInput, BrainDaemonBatchStatusOutput, BrainDaemonCreateInput, BrainDaemonCreateOutput, BrainDaemonGetInput, BrainDaemonGetOutput, BrainDaemonReingestInput, BrainDaemonReingestOutput, BrainDaemonRemoveInput, BrainDaemonRemoveOutput, BrainDaemonRunInput, BrainDaemonRunItemsInput, BrainDaemonRunItemsOutput, BrainDaemonRunOutput, BrainDaemonRunsInput, BrainDaemonRunsOutput, BrainDaemonStatusInput, BrainDaemonStatusOutput, BrainDaemonUpdateInput, BrainDaemonUpdateOutput, BrainDaemonsListInput, BrainDaemonsListOutput, BrainGdriveConnectionsListInput, BrainGdriveConnectionsListOutput,
|
|
3
|
+
export type { BrainBackupCreateInput, BrainBackupCreateOutput, BrainBackupRestoreInput, BrainBackupRestoreOutput, BrainBackupStatusInput, BrainBackupStatusOutput, BrainBackupsListInput, BrainBackupsListOutput, BrainClickupChannelsListInput, BrainClickupChannelsListOutput, BrainClickupConnectionsListInput, BrainClickupConnectionsListOutput, BrainClickupListsListInput, BrainClickupListsListOutput, BrainClickupSpacesListInput, BrainClickupSpacesListOutput, BrainCognitionDigestInput, BrainCognitionDigestOutput, BrainCognitionStatusInput, BrainCognitionStatusOutput, BrainCognitionSweepInput, BrainCognitionSweepOutput, BrainConnectorBranchesListInput, BrainConnectorBranchesListOutput, BrainConnectorConnectionsListInput, BrainConnectorConnectionsListOutput, BrainConnectorReposListInput, BrainConnectorReposListOutput, BrainDaemonBatchStatusInput, BrainDaemonBatchStatusOutput, BrainDaemonCreateInput, BrainDaemonCreateOutput, BrainDaemonGetInput, BrainDaemonGetOutput, BrainDaemonReingestInput, BrainDaemonReingestOutput, BrainDaemonRemoveInput, BrainDaemonRemoveOutput, BrainDaemonRunInput, BrainDaemonRunItemsInput, BrainDaemonRunItemsOutput, BrainDaemonRunOutput, BrainDaemonRunsInput, BrainDaemonRunsOutput, BrainDaemonStatusInput, BrainDaemonStatusOutput, BrainDaemonUpdateInput, BrainDaemonUpdateOutput, BrainDaemonsListInput, BrainDaemonsListOutput, BrainGdriveConnectionsListInput, BrainGdriveConnectionsListOutput, BrainKnowledgeNeighborhoodInput, BrainKnowledgeNeighborhoodOutput, BrainKnowledgeRelationsInput, BrainKnowledgeRelationsOutput, BrainKnowledgeSearchInput, BrainKnowledgeSearchOutput, BrainMemoryAddInput, BrainMemoryAddOutput, BrainMemoryDeleteInput, BrainMemoryDeleteOutput, BrainMemoryGetInput, BrainMemoryGetOutput, BrainMemoryListInput, BrainMemoryListOutput, BrainMemorySearchInput, BrainMemorySearchOutput, BrainMemoryStatsInput, BrainMemoryStatsOutput, BrainMemoryUpdateInput, BrainMemoryUpdateOutput, BrainProductSharedMemoryResetInput, BrainProductSharedMemoryResetOutput, BrainRestoreStatusInput, BrainRestoreStatusOutput } from '../types.gen';
|
|
@@ -44,10 +44,6 @@ import type {
|
|
|
44
44
|
BrainDaemonsListOutput,
|
|
45
45
|
BrainGdriveConnectionsListInput,
|
|
46
46
|
BrainGdriveConnectionsListOutput,
|
|
47
|
-
BrainKnowledgeEntityMemoriesInput,
|
|
48
|
-
BrainKnowledgeEntityMemoriesOutput,
|
|
49
|
-
BrainKnowledgeGraphInput,
|
|
50
|
-
BrainKnowledgeGraphOutput,
|
|
51
47
|
BrainKnowledgeNeighborhoodInput,
|
|
52
48
|
BrainKnowledgeNeighborhoodOutput,
|
|
53
49
|
BrainKnowledgeRelationsInput,
|
|
@@ -200,16 +196,6 @@ export const brainGdriveConnectionsListQueryOptions = (sdk: GeneratedClient, inp
|
|
|
200
196
|
queryFn: () => sdk['brain']['gdrive-connections']['list'](input),
|
|
201
197
|
});
|
|
202
198
|
|
|
203
|
-
export const brainKnowledgeEntityMemoriesQueryOptions = (sdk: GeneratedClient, input: BrainKnowledgeEntityMemoriesInput) => ({
|
|
204
|
-
queryKey: ['brain', 'knowledge-entity', 'memories', input] as const,
|
|
205
|
-
queryFn: () => sdk['brain']['knowledge-entity']['memories'](input),
|
|
206
|
-
});
|
|
207
|
-
|
|
208
|
-
export const brainKnowledgeGraphQueryOptions = (sdk: GeneratedClient, input: BrainKnowledgeGraphInput) => ({
|
|
209
|
-
queryKey: ['brain', 'knowledge', 'graph', input] as const,
|
|
210
|
-
queryFn: () => sdk['brain']['knowledge']['graph'](input),
|
|
211
|
-
});
|
|
212
|
-
|
|
213
199
|
export const brainKnowledgeNeighborhoodQueryOptions = (sdk: GeneratedClient, input: BrainKnowledgeNeighborhoodInput) => ({
|
|
214
200
|
queryKey: ['brain', 'knowledge', 'neighborhood', input] as const,
|
|
215
201
|
queryFn: () => sdk['brain']['knowledge']['neighborhood'](input),
|