@lessly/sdk-app 54.0.0 → 55.0.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/_types/gen/analytics/index.d.ts +1 -1
- package/dist/_types/gen/analytics/queryOptions.gen.d.ts +69 -1
- package/dist/_types/gen/brain/index.d.ts +1 -1
- package/dist/_types/gen/brain/queryOptions.gen.d.ts +1 -5
- package/dist/_types/gen/client.gen.d.ts +69 -7
- package/dist/_types/gen/deployment/index.d.ts +1 -1
- package/dist/_types/gen/deployment/queryOptions.gen.d.ts +13 -5
- package/dist/_types/gen/manifest.gen.d.ts +1 -1
- package/dist/_types/gen/playground/connect.gen.d.ts +3 -0
- package/dist/_types/gen/playground/index.d.ts +3 -0
- package/dist/_types/gen/playground/queryOptions.gen.d.ts +50 -0
- package/dist/_types/gen/types.gen.d.ts +71393 -113
- package/dist/analytics/index.cjs +85 -0
- package/dist/analytics/index.cjs.map +1 -1
- package/dist/analytics/index.js +69 -1
- package/dist/analytics/index.js.map +1 -1
- package/dist/brain/index.cjs +0 -5
- package/dist/brain/index.cjs.map +1 -1
- package/dist/brain/index.js +1 -5
- package/dist/brain/index.js.map +1 -1
- package/dist/chunk-4RJR4UQ3.js +9121 -0
- package/dist/chunk-4RJR4UQ3.js.map +1 -0
- package/dist/deployment/index.cjs +15 -5
- package/dist/deployment/index.cjs.map +1 -1
- package/dist/deployment/index.js +13 -5
- package/dist/deployment/index.js.map +1 -1
- package/dist/index.cjs +610 -46
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -8545
- package/dist/index.js.map +1 -1
- package/dist/playground/index.cjs +81 -0
- package/dist/playground/index.cjs.map +1 -0
- package/dist/playground/index.d.cts +1 -0
- package/dist/playground/index.d.ts +1 -0
- package/dist/playground/index.js +58 -0
- package/dist/playground/index.js.map +1 -0
- package/package.json +12 -2
- package/src/gen/analytics/index.ts +1 -1
- package/src/gen/analytics/queryOptions.gen.ts +113 -0
- package/src/gen/bindings.gen.ts +619 -47
- package/src/gen/brain/index.ts +1 -1
- package/src/gen/brain/queryOptions.gen.ts +0 -7
- package/src/gen/client.gen.ts +132 -10
- package/src/gen/deployment/index.ts +1 -1
- package/src/gen/deployment/queryOptions.gen.ts +20 -7
- package/src/gen/manifest.gen.ts +1 -1
- package/src/gen/playground/connect.gen.ts +9 -0
- package/src/gen/playground/index.ts +4 -0
- package/src/gen/playground/queryOptions.gen.ts +86 -0
- package/src/gen/types.gen.ts +65915 -117
package/dist/analytics/index.cjs
CHANGED
|
@@ -1,11 +1,96 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
3
|
// src/gen/analytics/queryOptions.gen.ts
|
|
4
|
+
var analyticsCatalogGetQueryOptions = (sdk, input) => ({
|
|
5
|
+
queryKey: ["analytics", "catalog", "get", input],
|
|
6
|
+
queryFn: () => sdk["analytics"]["catalog"]["get"](input)
|
|
7
|
+
});
|
|
8
|
+
var analyticsDashboardCreateMutationOptions = (sdk) => ({
|
|
9
|
+
mutationKey: ["analytics", "dashboard", "create"],
|
|
10
|
+
mutationFn: (input) => sdk["analytics"]["dashboard"]["create"](input)
|
|
11
|
+
});
|
|
12
|
+
var analyticsDashboardDeleteMutationOptions = (sdk) => ({
|
|
13
|
+
mutationKey: ["analytics", "dashboard", "delete"],
|
|
14
|
+
mutationFn: (input) => sdk["analytics"]["dashboard"]["delete"](input)
|
|
15
|
+
});
|
|
16
|
+
var analyticsDashboardGetQueryOptions = (sdk, input) => ({
|
|
17
|
+
queryKey: ["analytics", "dashboard", "get", input],
|
|
18
|
+
queryFn: () => sdk["analytics"]["dashboard"]["get"](input)
|
|
19
|
+
});
|
|
20
|
+
var analyticsDashboardListQueryOptions = (sdk, input) => ({
|
|
21
|
+
queryKey: ["analytics", "dashboard", "list", input],
|
|
22
|
+
queryFn: () => sdk["analytics"]["dashboard"]["list"](input)
|
|
23
|
+
});
|
|
24
|
+
var analyticsDashboardRunQueryOptions = (sdk, input) => ({
|
|
25
|
+
queryKey: ["analytics", "dashboard", "run", input],
|
|
26
|
+
queryFn: () => sdk["analytics"]["dashboard"]["run"](input)
|
|
27
|
+
});
|
|
28
|
+
var analyticsDashboardUpdateMutationOptions = (sdk) => ({
|
|
29
|
+
mutationKey: ["analytics", "dashboard", "update"],
|
|
30
|
+
mutationFn: (input) => sdk["analytics"]["dashboard"]["update"](input)
|
|
31
|
+
});
|
|
32
|
+
var analyticsFunnelRunQueryOptions = (sdk, input) => ({
|
|
33
|
+
queryKey: ["analytics", "funnel", "run", input],
|
|
34
|
+
queryFn: () => sdk["analytics"]["funnel"]["run"](input)
|
|
35
|
+
});
|
|
36
|
+
var analyticsInsightCreateMutationOptions = (sdk) => ({
|
|
37
|
+
mutationKey: ["analytics", "insight", "create"],
|
|
38
|
+
mutationFn: (input) => sdk["analytics"]["insight"]["create"](input)
|
|
39
|
+
});
|
|
40
|
+
var analyticsInsightDeleteMutationOptions = (sdk) => ({
|
|
41
|
+
mutationKey: ["analytics", "insight", "delete"],
|
|
42
|
+
mutationFn: (input) => sdk["analytics"]["insight"]["delete"](input)
|
|
43
|
+
});
|
|
44
|
+
var analyticsInsightGetQueryOptions = (sdk, input) => ({
|
|
45
|
+
queryKey: ["analytics", "insight", "get", input],
|
|
46
|
+
queryFn: () => sdk["analytics"]["insight"]["get"](input)
|
|
47
|
+
});
|
|
48
|
+
var analyticsInsightListQueryOptions = (sdk, input) => ({
|
|
49
|
+
queryKey: ["analytics", "insight", "list", input],
|
|
50
|
+
queryFn: () => sdk["analytics"]["insight"]["list"](input)
|
|
51
|
+
});
|
|
52
|
+
var analyticsInsightRunQueryOptions = (sdk, input) => ({
|
|
53
|
+
queryKey: ["analytics", "insight", "run", input],
|
|
54
|
+
queryFn: () => sdk["analytics"]["insight"]["run"](input)
|
|
55
|
+
});
|
|
56
|
+
var analyticsInsightUpdateMutationOptions = (sdk) => ({
|
|
57
|
+
mutationKey: ["analytics", "insight", "update"],
|
|
58
|
+
mutationFn: (input) => sdk["analytics"]["insight"]["update"](input)
|
|
59
|
+
});
|
|
60
|
+
var analyticsMetricQueryQueryOptions = (sdk, input) => ({
|
|
61
|
+
queryKey: ["analytics", "metric", "query", input],
|
|
62
|
+
queryFn: () => sdk["analytics"]["metric"]["query"](input)
|
|
63
|
+
});
|
|
64
|
+
var analyticsPersonTimelineQueryOptions = (sdk, input) => ({
|
|
65
|
+
queryKey: ["analytics", "person", "timeline", input],
|
|
66
|
+
queryFn: () => sdk["analytics"]["person"]["timeline"](input)
|
|
67
|
+
});
|
|
4
68
|
var analyticsQueryRunQueryOptions = (sdk, input) => ({
|
|
5
69
|
queryKey: ["analytics", "query", "run", input],
|
|
6
70
|
queryFn: () => sdk["analytics"]["query"]["run"](input)
|
|
7
71
|
});
|
|
72
|
+
var analyticsRetentionRunQueryOptions = (sdk, input) => ({
|
|
73
|
+
queryKey: ["analytics", "retention", "run", input],
|
|
74
|
+
queryFn: () => sdk["analytics"]["retention"]["run"](input)
|
|
75
|
+
});
|
|
8
76
|
|
|
77
|
+
exports.analyticsCatalogGetQueryOptions = analyticsCatalogGetQueryOptions;
|
|
78
|
+
exports.analyticsDashboardCreateMutationOptions = analyticsDashboardCreateMutationOptions;
|
|
79
|
+
exports.analyticsDashboardDeleteMutationOptions = analyticsDashboardDeleteMutationOptions;
|
|
80
|
+
exports.analyticsDashboardGetQueryOptions = analyticsDashboardGetQueryOptions;
|
|
81
|
+
exports.analyticsDashboardListQueryOptions = analyticsDashboardListQueryOptions;
|
|
82
|
+
exports.analyticsDashboardRunQueryOptions = analyticsDashboardRunQueryOptions;
|
|
83
|
+
exports.analyticsDashboardUpdateMutationOptions = analyticsDashboardUpdateMutationOptions;
|
|
84
|
+
exports.analyticsFunnelRunQueryOptions = analyticsFunnelRunQueryOptions;
|
|
85
|
+
exports.analyticsInsightCreateMutationOptions = analyticsInsightCreateMutationOptions;
|
|
86
|
+
exports.analyticsInsightDeleteMutationOptions = analyticsInsightDeleteMutationOptions;
|
|
87
|
+
exports.analyticsInsightGetQueryOptions = analyticsInsightGetQueryOptions;
|
|
88
|
+
exports.analyticsInsightListQueryOptions = analyticsInsightListQueryOptions;
|
|
89
|
+
exports.analyticsInsightRunQueryOptions = analyticsInsightRunQueryOptions;
|
|
90
|
+
exports.analyticsInsightUpdateMutationOptions = analyticsInsightUpdateMutationOptions;
|
|
91
|
+
exports.analyticsMetricQueryQueryOptions = analyticsMetricQueryQueryOptions;
|
|
92
|
+
exports.analyticsPersonTimelineQueryOptions = analyticsPersonTimelineQueryOptions;
|
|
9
93
|
exports.analyticsQueryRunQueryOptions = analyticsQueryRunQueryOptions;
|
|
94
|
+
exports.analyticsRetentionRunQueryOptions = analyticsRetentionRunQueryOptions;
|
|
10
95
|
//# sourceMappingURL=index.cjs.map
|
|
11
96
|
//# sourceMappingURL=index.cjs.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/gen/analytics/queryOptions.gen.ts"],"names":[],"mappings":";;;
|
|
1
|
+
{"version":3,"sources":["../../src/gen/analytics/queryOptions.gen.ts"],"names":[],"mappings":"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","file":"index.cjs","sourcesContent":["// AUTOGENERATED by scripts/generate.ts — do not edit.\nimport type { GeneratedClient } from '../client.gen';\nimport type {\n AnalyticsCatalogGetInput,\n AnalyticsCatalogGetOutput,\n AnalyticsDashboardCreateInput,\n AnalyticsDashboardDeleteInput,\n AnalyticsDashboardGetInput,\n AnalyticsDashboardGetOutput,\n AnalyticsDashboardListInput,\n AnalyticsDashboardListOutput,\n AnalyticsDashboardRunInput,\n AnalyticsDashboardRunOutput,\n AnalyticsDashboardUpdateInput,\n AnalyticsFunnelRunInput,\n AnalyticsFunnelRunOutput,\n AnalyticsInsightCreateInput,\n AnalyticsInsightDeleteInput,\n AnalyticsInsightGetInput,\n AnalyticsInsightGetOutput,\n AnalyticsInsightListInput,\n AnalyticsInsightListOutput,\n AnalyticsInsightRunInput,\n AnalyticsInsightRunOutput,\n AnalyticsInsightUpdateInput,\n AnalyticsMetricQueryInput,\n AnalyticsMetricQueryOutput,\n AnalyticsPersonTimelineInput,\n AnalyticsPersonTimelineOutput,\n AnalyticsQueryRunInput,\n AnalyticsQueryRunOutput,\n AnalyticsRetentionRunInput,\n AnalyticsRetentionRunOutput,\n} from '../types.gen';\n\nexport const analyticsCatalogGetQueryOptions = (sdk: GeneratedClient, input: AnalyticsCatalogGetInput) => ({\n queryKey: ['analytics', 'catalog', 'get', input] as const,\n queryFn: () => sdk['analytics']['catalog']['get'](input),\n});\n\nexport const analyticsDashboardCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['analytics', 'dashboard', 'create'],\n mutationFn: (input: AnalyticsDashboardCreateInput) => sdk['analytics']['dashboard']['create'](input),\n});\n\nexport const analyticsDashboardDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['analytics', 'dashboard', 'delete'],\n mutationFn: (input: AnalyticsDashboardDeleteInput) => sdk['analytics']['dashboard']['delete'](input),\n});\n\nexport const analyticsDashboardGetQueryOptions = (sdk: GeneratedClient, input: AnalyticsDashboardGetInput) => ({\n queryKey: ['analytics', 'dashboard', 'get', input] as const,\n queryFn: () => sdk['analytics']['dashboard']['get'](input),\n});\n\nexport const analyticsDashboardListQueryOptions = (sdk: GeneratedClient, input: AnalyticsDashboardListInput) => ({\n queryKey: ['analytics', 'dashboard', 'list', input] as const,\n queryFn: () => sdk['analytics']['dashboard']['list'](input),\n});\n\nexport const analyticsDashboardRunQueryOptions = (sdk: GeneratedClient, input: AnalyticsDashboardRunInput) => ({\n queryKey: ['analytics', 'dashboard', 'run', input] as const,\n queryFn: () => sdk['analytics']['dashboard']['run'](input),\n});\n\nexport const analyticsDashboardUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['analytics', 'dashboard', 'update'],\n mutationFn: (input: AnalyticsDashboardUpdateInput) => sdk['analytics']['dashboard']['update'](input),\n});\n\nexport const analyticsFunnelRunQueryOptions = (sdk: GeneratedClient, input: AnalyticsFunnelRunInput) => ({\n queryKey: ['analytics', 'funnel', 'run', input] as const,\n queryFn: () => sdk['analytics']['funnel']['run'](input),\n});\n\nexport const analyticsInsightCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['analytics', 'insight', 'create'],\n mutationFn: (input: AnalyticsInsightCreateInput) => sdk['analytics']['insight']['create'](input),\n});\n\nexport const analyticsInsightDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['analytics', 'insight', 'delete'],\n mutationFn: (input: AnalyticsInsightDeleteInput) => sdk['analytics']['insight']['delete'](input),\n});\n\nexport const analyticsInsightGetQueryOptions = (sdk: GeneratedClient, input: AnalyticsInsightGetInput) => ({\n queryKey: ['analytics', 'insight', 'get', input] as const,\n queryFn: () => sdk['analytics']['insight']['get'](input),\n});\n\nexport const analyticsInsightListQueryOptions = (sdk: GeneratedClient, input: AnalyticsInsightListInput) => ({\n queryKey: ['analytics', 'insight', 'list', input] as const,\n queryFn: () => sdk['analytics']['insight']['list'](input),\n});\n\nexport const analyticsInsightRunQueryOptions = (sdk: GeneratedClient, input: AnalyticsInsightRunInput) => ({\n queryKey: ['analytics', 'insight', 'run', input] as const,\n queryFn: () => sdk['analytics']['insight']['run'](input),\n});\n\nexport const analyticsInsightUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['analytics', 'insight', 'update'],\n mutationFn: (input: AnalyticsInsightUpdateInput) => sdk['analytics']['insight']['update'](input),\n});\n\nexport const analyticsMetricQueryQueryOptions = (sdk: GeneratedClient, input: AnalyticsMetricQueryInput) => ({\n queryKey: ['analytics', 'metric', 'query', input] as const,\n queryFn: () => sdk['analytics']['metric']['query'](input),\n});\n\nexport const analyticsPersonTimelineQueryOptions = (sdk: GeneratedClient, input: AnalyticsPersonTimelineInput) => ({\n queryKey: ['analytics', 'person', 'timeline', input] as const,\n queryFn: () => sdk['analytics']['person']['timeline'](input),\n});\n\nexport const analyticsQueryRunQueryOptions = (sdk: GeneratedClient, input: AnalyticsQueryRunInput) => ({\n queryKey: ['analytics', 'query', 'run', input] as const,\n queryFn: () => sdk['analytics']['query']['run'](input),\n});\n\nexport const analyticsRetentionRunQueryOptions = (sdk: GeneratedClient, input: AnalyticsRetentionRunInput) => ({\n queryKey: ['analytics', 'retention', 'run', input] as const,\n queryFn: () => sdk['analytics']['retention']['run'](input),\n});\n"]}
|
package/dist/analytics/index.js
CHANGED
|
@@ -1,9 +1,77 @@
|
|
|
1
1
|
// src/gen/analytics/queryOptions.gen.ts
|
|
2
|
+
var analyticsCatalogGetQueryOptions = (sdk, input) => ({
|
|
3
|
+
queryKey: ["analytics", "catalog", "get", input],
|
|
4
|
+
queryFn: () => sdk["analytics"]["catalog"]["get"](input)
|
|
5
|
+
});
|
|
6
|
+
var analyticsDashboardCreateMutationOptions = (sdk) => ({
|
|
7
|
+
mutationKey: ["analytics", "dashboard", "create"],
|
|
8
|
+
mutationFn: (input) => sdk["analytics"]["dashboard"]["create"](input)
|
|
9
|
+
});
|
|
10
|
+
var analyticsDashboardDeleteMutationOptions = (sdk) => ({
|
|
11
|
+
mutationKey: ["analytics", "dashboard", "delete"],
|
|
12
|
+
mutationFn: (input) => sdk["analytics"]["dashboard"]["delete"](input)
|
|
13
|
+
});
|
|
14
|
+
var analyticsDashboardGetQueryOptions = (sdk, input) => ({
|
|
15
|
+
queryKey: ["analytics", "dashboard", "get", input],
|
|
16
|
+
queryFn: () => sdk["analytics"]["dashboard"]["get"](input)
|
|
17
|
+
});
|
|
18
|
+
var analyticsDashboardListQueryOptions = (sdk, input) => ({
|
|
19
|
+
queryKey: ["analytics", "dashboard", "list", input],
|
|
20
|
+
queryFn: () => sdk["analytics"]["dashboard"]["list"](input)
|
|
21
|
+
});
|
|
22
|
+
var analyticsDashboardRunQueryOptions = (sdk, input) => ({
|
|
23
|
+
queryKey: ["analytics", "dashboard", "run", input],
|
|
24
|
+
queryFn: () => sdk["analytics"]["dashboard"]["run"](input)
|
|
25
|
+
});
|
|
26
|
+
var analyticsDashboardUpdateMutationOptions = (sdk) => ({
|
|
27
|
+
mutationKey: ["analytics", "dashboard", "update"],
|
|
28
|
+
mutationFn: (input) => sdk["analytics"]["dashboard"]["update"](input)
|
|
29
|
+
});
|
|
30
|
+
var analyticsFunnelRunQueryOptions = (sdk, input) => ({
|
|
31
|
+
queryKey: ["analytics", "funnel", "run", input],
|
|
32
|
+
queryFn: () => sdk["analytics"]["funnel"]["run"](input)
|
|
33
|
+
});
|
|
34
|
+
var analyticsInsightCreateMutationOptions = (sdk) => ({
|
|
35
|
+
mutationKey: ["analytics", "insight", "create"],
|
|
36
|
+
mutationFn: (input) => sdk["analytics"]["insight"]["create"](input)
|
|
37
|
+
});
|
|
38
|
+
var analyticsInsightDeleteMutationOptions = (sdk) => ({
|
|
39
|
+
mutationKey: ["analytics", "insight", "delete"],
|
|
40
|
+
mutationFn: (input) => sdk["analytics"]["insight"]["delete"](input)
|
|
41
|
+
});
|
|
42
|
+
var analyticsInsightGetQueryOptions = (sdk, input) => ({
|
|
43
|
+
queryKey: ["analytics", "insight", "get", input],
|
|
44
|
+
queryFn: () => sdk["analytics"]["insight"]["get"](input)
|
|
45
|
+
});
|
|
46
|
+
var analyticsInsightListQueryOptions = (sdk, input) => ({
|
|
47
|
+
queryKey: ["analytics", "insight", "list", input],
|
|
48
|
+
queryFn: () => sdk["analytics"]["insight"]["list"](input)
|
|
49
|
+
});
|
|
50
|
+
var analyticsInsightRunQueryOptions = (sdk, input) => ({
|
|
51
|
+
queryKey: ["analytics", "insight", "run", input],
|
|
52
|
+
queryFn: () => sdk["analytics"]["insight"]["run"](input)
|
|
53
|
+
});
|
|
54
|
+
var analyticsInsightUpdateMutationOptions = (sdk) => ({
|
|
55
|
+
mutationKey: ["analytics", "insight", "update"],
|
|
56
|
+
mutationFn: (input) => sdk["analytics"]["insight"]["update"](input)
|
|
57
|
+
});
|
|
58
|
+
var analyticsMetricQueryQueryOptions = (sdk, input) => ({
|
|
59
|
+
queryKey: ["analytics", "metric", "query", input],
|
|
60
|
+
queryFn: () => sdk["analytics"]["metric"]["query"](input)
|
|
61
|
+
});
|
|
62
|
+
var analyticsPersonTimelineQueryOptions = (sdk, input) => ({
|
|
63
|
+
queryKey: ["analytics", "person", "timeline", input],
|
|
64
|
+
queryFn: () => sdk["analytics"]["person"]["timeline"](input)
|
|
65
|
+
});
|
|
2
66
|
var analyticsQueryRunQueryOptions = (sdk, input) => ({
|
|
3
67
|
queryKey: ["analytics", "query", "run", input],
|
|
4
68
|
queryFn: () => sdk["analytics"]["query"]["run"](input)
|
|
5
69
|
});
|
|
70
|
+
var analyticsRetentionRunQueryOptions = (sdk, input) => ({
|
|
71
|
+
queryKey: ["analytics", "retention", "run", input],
|
|
72
|
+
queryFn: () => sdk["analytics"]["retention"]["run"](input)
|
|
73
|
+
});
|
|
6
74
|
|
|
7
|
-
export { analyticsQueryRunQueryOptions };
|
|
75
|
+
export { analyticsCatalogGetQueryOptions, analyticsDashboardCreateMutationOptions, analyticsDashboardDeleteMutationOptions, analyticsDashboardGetQueryOptions, analyticsDashboardListQueryOptions, analyticsDashboardRunQueryOptions, analyticsDashboardUpdateMutationOptions, analyticsFunnelRunQueryOptions, analyticsInsightCreateMutationOptions, analyticsInsightDeleteMutationOptions, analyticsInsightGetQueryOptions, analyticsInsightListQueryOptions, analyticsInsightRunQueryOptions, analyticsInsightUpdateMutationOptions, analyticsMetricQueryQueryOptions, analyticsPersonTimelineQueryOptions, analyticsQueryRunQueryOptions, analyticsRetentionRunQueryOptions };
|
|
8
76
|
//# sourceMappingURL=index.js.map
|
|
9
77
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/gen/analytics/queryOptions.gen.ts"],"names":[],"mappings":";
|
|
1
|
+
{"version":3,"sources":["../../src/gen/analytics/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 AnalyticsCatalogGetInput,\n AnalyticsCatalogGetOutput,\n AnalyticsDashboardCreateInput,\n AnalyticsDashboardDeleteInput,\n AnalyticsDashboardGetInput,\n AnalyticsDashboardGetOutput,\n AnalyticsDashboardListInput,\n AnalyticsDashboardListOutput,\n AnalyticsDashboardRunInput,\n AnalyticsDashboardRunOutput,\n AnalyticsDashboardUpdateInput,\n AnalyticsFunnelRunInput,\n AnalyticsFunnelRunOutput,\n AnalyticsInsightCreateInput,\n AnalyticsInsightDeleteInput,\n AnalyticsInsightGetInput,\n AnalyticsInsightGetOutput,\n AnalyticsInsightListInput,\n AnalyticsInsightListOutput,\n AnalyticsInsightRunInput,\n AnalyticsInsightRunOutput,\n AnalyticsInsightUpdateInput,\n AnalyticsMetricQueryInput,\n AnalyticsMetricQueryOutput,\n AnalyticsPersonTimelineInput,\n AnalyticsPersonTimelineOutput,\n AnalyticsQueryRunInput,\n AnalyticsQueryRunOutput,\n AnalyticsRetentionRunInput,\n AnalyticsRetentionRunOutput,\n} from '../types.gen';\n\nexport const analyticsCatalogGetQueryOptions = (sdk: GeneratedClient, input: AnalyticsCatalogGetInput) => ({\n queryKey: ['analytics', 'catalog', 'get', input] as const,\n queryFn: () => sdk['analytics']['catalog']['get'](input),\n});\n\nexport const analyticsDashboardCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['analytics', 'dashboard', 'create'],\n mutationFn: (input: AnalyticsDashboardCreateInput) => sdk['analytics']['dashboard']['create'](input),\n});\n\nexport const analyticsDashboardDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['analytics', 'dashboard', 'delete'],\n mutationFn: (input: AnalyticsDashboardDeleteInput) => sdk['analytics']['dashboard']['delete'](input),\n});\n\nexport const analyticsDashboardGetQueryOptions = (sdk: GeneratedClient, input: AnalyticsDashboardGetInput) => ({\n queryKey: ['analytics', 'dashboard', 'get', input] as const,\n queryFn: () => sdk['analytics']['dashboard']['get'](input),\n});\n\nexport const analyticsDashboardListQueryOptions = (sdk: GeneratedClient, input: AnalyticsDashboardListInput) => ({\n queryKey: ['analytics', 'dashboard', 'list', input] as const,\n queryFn: () => sdk['analytics']['dashboard']['list'](input),\n});\n\nexport const analyticsDashboardRunQueryOptions = (sdk: GeneratedClient, input: AnalyticsDashboardRunInput) => ({\n queryKey: ['analytics', 'dashboard', 'run', input] as const,\n queryFn: () => sdk['analytics']['dashboard']['run'](input),\n});\n\nexport const analyticsDashboardUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['analytics', 'dashboard', 'update'],\n mutationFn: (input: AnalyticsDashboardUpdateInput) => sdk['analytics']['dashboard']['update'](input),\n});\n\nexport const analyticsFunnelRunQueryOptions = (sdk: GeneratedClient, input: AnalyticsFunnelRunInput) => ({\n queryKey: ['analytics', 'funnel', 'run', input] as const,\n queryFn: () => sdk['analytics']['funnel']['run'](input),\n});\n\nexport const analyticsInsightCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['analytics', 'insight', 'create'],\n mutationFn: (input: AnalyticsInsightCreateInput) => sdk['analytics']['insight']['create'](input),\n});\n\nexport const analyticsInsightDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['analytics', 'insight', 'delete'],\n mutationFn: (input: AnalyticsInsightDeleteInput) => sdk['analytics']['insight']['delete'](input),\n});\n\nexport const analyticsInsightGetQueryOptions = (sdk: GeneratedClient, input: AnalyticsInsightGetInput) => ({\n queryKey: ['analytics', 'insight', 'get', input] as const,\n queryFn: () => sdk['analytics']['insight']['get'](input),\n});\n\nexport const analyticsInsightListQueryOptions = (sdk: GeneratedClient, input: AnalyticsInsightListInput) => ({\n queryKey: ['analytics', 'insight', 'list', input] as const,\n queryFn: () => sdk['analytics']['insight']['list'](input),\n});\n\nexport const analyticsInsightRunQueryOptions = (sdk: GeneratedClient, input: AnalyticsInsightRunInput) => ({\n queryKey: ['analytics', 'insight', 'run', input] as const,\n queryFn: () => sdk['analytics']['insight']['run'](input),\n});\n\nexport const analyticsInsightUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['analytics', 'insight', 'update'],\n mutationFn: (input: AnalyticsInsightUpdateInput) => sdk['analytics']['insight']['update'](input),\n});\n\nexport const analyticsMetricQueryQueryOptions = (sdk: GeneratedClient, input: AnalyticsMetricQueryInput) => ({\n queryKey: ['analytics', 'metric', 'query', input] as const,\n queryFn: () => sdk['analytics']['metric']['query'](input),\n});\n\nexport const analyticsPersonTimelineQueryOptions = (sdk: GeneratedClient, input: AnalyticsPersonTimelineInput) => ({\n queryKey: ['analytics', 'person', 'timeline', input] as const,\n queryFn: () => sdk['analytics']['person']['timeline'](input),\n});\n\nexport const analyticsQueryRunQueryOptions = (sdk: GeneratedClient, input: AnalyticsQueryRunInput) => ({\n queryKey: ['analytics', 'query', 'run', input] as const,\n queryFn: () => sdk['analytics']['query']['run'](input),\n});\n\nexport const analyticsRetentionRunQueryOptions = (sdk: GeneratedClient, input: AnalyticsRetentionRunInput) => ({\n queryKey: ['analytics', 'retention', 'run', input] as const,\n queryFn: () => sdk['analytics']['retention']['run'](input),\n});\n"]}
|
package/dist/brain/index.cjs
CHANGED
|
@@ -161,10 +161,6 @@ var brainRestoreStatusQueryOptions = (sdk, input) => ({
|
|
|
161
161
|
queryKey: ["brain", "restore", "status", input],
|
|
162
162
|
queryFn: () => sdk["brain"]["restore"]["status"](input)
|
|
163
163
|
});
|
|
164
|
-
var brainUsageReportQueryOptions = (sdk, input) => ({
|
|
165
|
-
queryKey: ["brain", "usage", "report", input],
|
|
166
|
-
queryFn: () => sdk["brain"]["usage"]["report"](input)
|
|
167
|
-
});
|
|
168
164
|
|
|
169
165
|
exports.brainBackupCreateMutationOptions = brainBackupCreateMutationOptions;
|
|
170
166
|
exports.brainBackupRestoreMutationOptions = brainBackupRestoreMutationOptions;
|
|
@@ -206,6 +202,5 @@ exports.brainMemoryStatsQueryOptions = brainMemoryStatsQueryOptions;
|
|
|
206
202
|
exports.brainMemoryUpdateMutationOptions = brainMemoryUpdateMutationOptions;
|
|
207
203
|
exports.brainProductSharedMemoryResetMutationOptions = brainProductSharedMemoryResetMutationOptions;
|
|
208
204
|
exports.brainRestoreStatusQueryOptions = brainRestoreStatusQueryOptions;
|
|
209
|
-
exports.brainUsageReportQueryOptions = brainUsageReportQueryOptions;
|
|
210
205
|
//# sourceMappingURL=index.cjs.map
|
|
211
206
|
//# sourceMappingURL=index.cjs.map
|
package/dist/brain/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/gen/brain/queryOptions.gen.ts"],"names":[],"mappings":"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","file":"index.cjs","sourcesContent":["// AUTOGENERATED by scripts/generate.ts — do not edit.\nimport type { GeneratedClient } from '../client.gen';\nimport type {\n BrainBackupCreateInput,\n BrainBackupRestoreInput,\n BrainBackupStatusInput,\n BrainBackupStatusOutput,\n BrainBackupsListInput,\n BrainBackupsListOutput,\n BrainClickupChannelsListInput,\n BrainClickupChannelsListOutput,\n BrainClickupConnectionsListInput,\n BrainClickupConnectionsListOutput,\n BrainClickupListsListInput,\n BrainClickupListsListOutput,\n BrainClickupSpacesListInput,\n BrainClickupSpacesListOutput,\n BrainCognitionDigestInput,\n BrainCognitionStatusInput,\n BrainCognitionStatusOutput,\n BrainCognitionSweepInput,\n BrainConnectorBranchesListInput,\n BrainConnectorBranchesListOutput,\n BrainConnectorConnectionsListInput,\n BrainConnectorConnectionsListOutput,\n BrainConnectorReposListInput,\n BrainConnectorReposListOutput,\n BrainDaemonBatchStatusInput,\n BrainDaemonBatchStatusOutput,\n BrainDaemonCreateInput,\n BrainDaemonGetInput,\n BrainDaemonGetOutput,\n BrainDaemonReingestInput,\n BrainDaemonRemoveInput,\n BrainDaemonRunInput,\n BrainDaemonRunItemsInput,\n BrainDaemonRunItemsOutput,\n BrainDaemonRunsInput,\n BrainDaemonRunsOutput,\n BrainDaemonStatusInput,\n BrainDaemonStatusOutput,\n BrainDaemonUpdateInput,\n BrainDaemonsListInput,\n BrainDaemonsListOutput,\n BrainGdriveConnectionsListInput,\n BrainGdriveConnectionsListOutput,\n BrainKnowledgeEntityMemoriesInput,\n BrainKnowledgeEntityMemoriesOutput,\n BrainKnowledgeGraphInput,\n BrainKnowledgeGraphOutput,\n BrainKnowledgeNeighborhoodInput,\n BrainKnowledgeNeighborhoodOutput,\n BrainKnowledgeRelationsInput,\n BrainKnowledgeRelationsOutput,\n BrainKnowledgeSearchInput,\n BrainKnowledgeSearchOutput,\n BrainMemoryAddInput,\n BrainMemoryDeleteInput,\n BrainMemoryGetInput,\n BrainMemoryGetOutput,\n BrainMemoryListInput,\n BrainMemoryListOutput,\n BrainMemorySearchInput,\n BrainMemorySearchOutput,\n BrainMemoryStatsInput,\n BrainMemoryStatsOutput,\n BrainMemoryUpdateInput,\n BrainProductSharedMemoryResetInput,\n BrainRestoreStatusInput,\n BrainRestoreStatusOutput,\n BrainUsageReportInput,\n BrainUsageReportOutput,\n} from '../types.gen';\n\nexport const brainBackupCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'backup', 'create'],\n mutationFn: (input: BrainBackupCreateInput) => sdk['brain']['backup']['create'](input),\n});\n\nexport const brainBackupRestoreMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'backup', 'restore'],\n mutationFn: (input: BrainBackupRestoreInput) => sdk['brain']['backup']['restore'](input),\n});\n\nexport const brainBackupStatusQueryOptions = (sdk: GeneratedClient, input: BrainBackupStatusInput) => ({\n queryKey: ['brain', 'backup', 'status', input] as const,\n queryFn: () => sdk['brain']['backup']['status'](input),\n});\n\nexport const brainBackupsListQueryOptions = (sdk: GeneratedClient, input: BrainBackupsListInput) => ({\n queryKey: ['brain', 'backups', 'list', input] as const,\n queryFn: () => sdk['brain']['backups']['list'](input),\n});\n\nexport const brainClickupChannelsListQueryOptions = (sdk: GeneratedClient, input: BrainClickupChannelsListInput) => ({\n queryKey: ['brain', 'clickup-channels', 'list', input] as const,\n queryFn: () => sdk['brain']['clickup-channels']['list'](input),\n});\n\nexport const brainClickupConnectionsListQueryOptions = (sdk: GeneratedClient, input: BrainClickupConnectionsListInput) => ({\n queryKey: ['brain', 'clickup-connections', 'list', input] as const,\n queryFn: () => sdk['brain']['clickup-connections']['list'](input),\n});\n\nexport const brainClickupListsListQueryOptions = (sdk: GeneratedClient, input: BrainClickupListsListInput) => ({\n queryKey: ['brain', 'clickup-lists', 'list', input] as const,\n queryFn: () => sdk['brain']['clickup-lists']['list'](input),\n});\n\nexport const brainClickupSpacesListQueryOptions = (sdk: GeneratedClient, input: BrainClickupSpacesListInput) => ({\n queryKey: ['brain', 'clickup-spaces', 'list', input] as const,\n queryFn: () => sdk['brain']['clickup-spaces']['list'](input),\n});\n\nexport const brainCognitionDigestMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'cognition', 'digest'],\n mutationFn: (input: BrainCognitionDigestInput) => sdk['brain']['cognition']['digest'](input),\n});\n\nexport const brainCognitionStatusQueryOptions = (sdk: GeneratedClient, input: BrainCognitionStatusInput) => ({\n queryKey: ['brain', 'cognition', 'status', input] as const,\n queryFn: () => sdk['brain']['cognition']['status'](input),\n});\n\nexport const brainCognitionSweepMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'cognition', 'sweep'],\n mutationFn: (input: BrainCognitionSweepInput) => sdk['brain']['cognition']['sweep'](input),\n});\n\nexport const brainConnectorBranchesListQueryOptions = (sdk: GeneratedClient, input: BrainConnectorBranchesListInput) => ({\n queryKey: ['brain', 'connector-branches', 'list', input] as const,\n queryFn: () => sdk['brain']['connector-branches']['list'](input),\n});\n\nexport const brainConnectorConnectionsListQueryOptions = (sdk: GeneratedClient, input: BrainConnectorConnectionsListInput) => ({\n queryKey: ['brain', 'connector-connections', 'list', input] as const,\n queryFn: () => sdk['brain']['connector-connections']['list'](input),\n});\n\nexport const brainConnectorReposListQueryOptions = (sdk: GeneratedClient, input: BrainConnectorReposListInput) => ({\n queryKey: ['brain', 'connector-repos', 'list', input] as const,\n queryFn: () => sdk['brain']['connector-repos']['list'](input),\n});\n\nexport const brainDaemonBatchStatusQueryOptions = (sdk: GeneratedClient, input: BrainDaemonBatchStatusInput) => ({\n queryKey: ['brain', 'daemon-batch', 'status', input] as const,\n queryFn: () => sdk['brain']['daemon-batch']['status'](input),\n});\n\nexport const brainDaemonCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'daemon', 'create'],\n mutationFn: (input: BrainDaemonCreateInput) => sdk['brain']['daemon']['create'](input),\n});\n\nexport const brainDaemonGetQueryOptions = (sdk: GeneratedClient, input: BrainDaemonGetInput) => ({\n queryKey: ['brain', 'daemon', 'get', input] as const,\n queryFn: () => sdk['brain']['daemon']['get'](input),\n});\n\nexport const brainDaemonReingestMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'daemon', 'reingest'],\n mutationFn: (input: BrainDaemonReingestInput) => sdk['brain']['daemon']['reingest'](input),\n});\n\nexport const brainDaemonRemoveMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'daemon', 'remove'],\n mutationFn: (input: BrainDaemonRemoveInput) => sdk['brain']['daemon']['remove'](input),\n});\n\nexport const brainDaemonRunMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'daemon', 'run'],\n mutationFn: (input: BrainDaemonRunInput) => sdk['brain']['daemon']['run'](input),\n});\n\nexport const brainDaemonRunItemsQueryOptions = (sdk: GeneratedClient, input: BrainDaemonRunItemsInput) => ({\n queryKey: ['brain', 'daemon-run', 'items', input] as const,\n queryFn: () => sdk['brain']['daemon-run']['items'](input),\n});\n\nexport const brainDaemonRunsQueryOptions = (sdk: GeneratedClient, input: BrainDaemonRunsInput) => ({\n queryKey: ['brain', 'daemon', 'runs', input] as const,\n queryFn: () => sdk['brain']['daemon']['runs'](input),\n});\n\nexport const brainDaemonStatusQueryOptions = (sdk: GeneratedClient, input: BrainDaemonStatusInput) => ({\n queryKey: ['brain', 'daemon', 'status', input] as const,\n queryFn: () => sdk['brain']['daemon']['status'](input),\n});\n\nexport const brainDaemonUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'daemon', 'update'],\n mutationFn: (input: BrainDaemonUpdateInput) => sdk['brain']['daemon']['update'](input),\n});\n\nexport const brainDaemonsListQueryOptions = (sdk: GeneratedClient, input: BrainDaemonsListInput) => ({\n queryKey: ['brain', 'daemons', 'list', input] as const,\n queryFn: () => sdk['brain']['daemons']['list'](input),\n});\n\nexport const brainGdriveConnectionsListQueryOptions = (sdk: GeneratedClient, input: BrainGdriveConnectionsListInput) => ({\n queryKey: ['brain', 'gdrive-connections', 'list', input] as const,\n queryFn: () => sdk['brain']['gdrive-connections']['list'](input),\n});\n\nexport const brainKnowledgeEntityMemoriesQueryOptions = (sdk: GeneratedClient, input: BrainKnowledgeEntityMemoriesInput) => ({\n queryKey: ['brain', 'knowledge-entity', 'memories', input] as const,\n queryFn: () => sdk['brain']['knowledge-entity']['memories'](input),\n});\n\nexport const brainKnowledgeGraphQueryOptions = (sdk: GeneratedClient, input: BrainKnowledgeGraphInput) => ({\n queryKey: ['brain', 'knowledge', 'graph', input] as const,\n queryFn: () => sdk['brain']['knowledge']['graph'](input),\n});\n\nexport const brainKnowledgeNeighborhoodQueryOptions = (sdk: GeneratedClient, input: BrainKnowledgeNeighborhoodInput) => ({\n queryKey: ['brain', 'knowledge', 'neighborhood', input] as const,\n queryFn: () => sdk['brain']['knowledge']['neighborhood'](input),\n});\n\nexport const brainKnowledgeRelationsQueryOptions = (sdk: GeneratedClient, input: BrainKnowledgeRelationsInput) => ({\n queryKey: ['brain', 'knowledge', 'relations', input] as const,\n queryFn: () => sdk['brain']['knowledge']['relations'](input),\n});\n\nexport const brainKnowledgeSearchQueryOptions = (sdk: GeneratedClient, input: BrainKnowledgeSearchInput) => ({\n queryKey: ['brain', 'knowledge', 'search', input] as const,\n queryFn: () => sdk['brain']['knowledge']['search'](input),\n});\n\nexport const brainMemoryAddMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'memory', 'add'],\n mutationFn: (input: BrainMemoryAddInput) => sdk['brain']['memory']['add'](input),\n});\n\nexport const brainMemoryDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'memory', 'delete'],\n mutationFn: (input: BrainMemoryDeleteInput) => sdk['brain']['memory']['delete'](input),\n});\n\nexport const brainMemoryGetQueryOptions = (sdk: GeneratedClient, input: BrainMemoryGetInput) => ({\n queryKey: ['brain', 'memory', 'get', input] as const,\n queryFn: () => sdk['brain']['memory']['get'](input),\n});\n\nexport const brainMemoryListQueryOptions = (sdk: GeneratedClient, input: BrainMemoryListInput) => ({\n queryKey: ['brain', 'memory', 'list', input] as const,\n queryFn: () => sdk['brain']['memory']['list'](input),\n});\n\nexport const brainMemorySearchQueryOptions = (sdk: GeneratedClient, input: BrainMemorySearchInput) => ({\n queryKey: ['brain', 'memory', 'search', input] as const,\n queryFn: () => sdk['brain']['memory']['search'](input),\n});\n\nexport const brainMemoryStatsQueryOptions = (sdk: GeneratedClient, input: BrainMemoryStatsInput) => ({\n queryKey: ['brain', 'memory', 'stats', input] as const,\n queryFn: () => sdk['brain']['memory']['stats'](input),\n});\n\nexport const brainMemoryUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'memory', 'update'],\n mutationFn: (input: BrainMemoryUpdateInput) => sdk['brain']['memory']['update'](input),\n});\n\nexport const brainProductSharedMemoryResetMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'product-shared-memory', 'reset'],\n mutationFn: (input: BrainProductSharedMemoryResetInput) => sdk['brain']['product-shared-memory']['reset'](input),\n});\n\nexport const brainRestoreStatusQueryOptions = (sdk: GeneratedClient, input: BrainRestoreStatusInput) => ({\n queryKey: ['brain', 'restore', 'status', input] as const,\n queryFn: () => sdk['brain']['restore']['status'](input),\n});\n\nexport const brainUsageReportQueryOptions = (sdk: GeneratedClient, input: BrainUsageReportInput) => ({\n queryKey: ['brain', 'usage', 'report', input] as const,\n queryFn: () => sdk['brain']['usage']['report'](input),\n});\n"]}
|
|
1
|
+
{"version":3,"sources":["../../src/gen/brain/queryOptions.gen.ts"],"names":[],"mappings":"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","file":"index.cjs","sourcesContent":["// AUTOGENERATED by scripts/generate.ts — do not edit.\nimport type { GeneratedClient } from '../client.gen';\nimport type {\n BrainBackupCreateInput,\n BrainBackupRestoreInput,\n BrainBackupStatusInput,\n BrainBackupStatusOutput,\n BrainBackupsListInput,\n BrainBackupsListOutput,\n BrainClickupChannelsListInput,\n BrainClickupChannelsListOutput,\n BrainClickupConnectionsListInput,\n BrainClickupConnectionsListOutput,\n BrainClickupListsListInput,\n BrainClickupListsListOutput,\n BrainClickupSpacesListInput,\n BrainClickupSpacesListOutput,\n BrainCognitionDigestInput,\n BrainCognitionStatusInput,\n BrainCognitionStatusOutput,\n BrainCognitionSweepInput,\n BrainConnectorBranchesListInput,\n BrainConnectorBranchesListOutput,\n BrainConnectorConnectionsListInput,\n BrainConnectorConnectionsListOutput,\n BrainConnectorReposListInput,\n BrainConnectorReposListOutput,\n BrainDaemonBatchStatusInput,\n BrainDaemonBatchStatusOutput,\n BrainDaemonCreateInput,\n BrainDaemonGetInput,\n BrainDaemonGetOutput,\n BrainDaemonReingestInput,\n BrainDaemonRemoveInput,\n BrainDaemonRunInput,\n BrainDaemonRunItemsInput,\n BrainDaemonRunItemsOutput,\n BrainDaemonRunsInput,\n BrainDaemonRunsOutput,\n BrainDaemonStatusInput,\n BrainDaemonStatusOutput,\n BrainDaemonUpdateInput,\n BrainDaemonsListInput,\n BrainDaemonsListOutput,\n BrainGdriveConnectionsListInput,\n BrainGdriveConnectionsListOutput,\n BrainKnowledgeEntityMemoriesInput,\n BrainKnowledgeEntityMemoriesOutput,\n BrainKnowledgeGraphInput,\n BrainKnowledgeGraphOutput,\n BrainKnowledgeNeighborhoodInput,\n BrainKnowledgeNeighborhoodOutput,\n BrainKnowledgeRelationsInput,\n BrainKnowledgeRelationsOutput,\n BrainKnowledgeSearchInput,\n BrainKnowledgeSearchOutput,\n BrainMemoryAddInput,\n BrainMemoryDeleteInput,\n BrainMemoryGetInput,\n BrainMemoryGetOutput,\n BrainMemoryListInput,\n BrainMemoryListOutput,\n BrainMemorySearchInput,\n BrainMemorySearchOutput,\n BrainMemoryStatsInput,\n BrainMemoryStatsOutput,\n BrainMemoryUpdateInput,\n BrainProductSharedMemoryResetInput,\n BrainRestoreStatusInput,\n BrainRestoreStatusOutput,\n} from '../types.gen';\n\nexport const brainBackupCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'backup', 'create'],\n mutationFn: (input: BrainBackupCreateInput) => sdk['brain']['backup']['create'](input),\n});\n\nexport const brainBackupRestoreMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'backup', 'restore'],\n mutationFn: (input: BrainBackupRestoreInput) => sdk['brain']['backup']['restore'](input),\n});\n\nexport const brainBackupStatusQueryOptions = (sdk: GeneratedClient, input: BrainBackupStatusInput) => ({\n queryKey: ['brain', 'backup', 'status', input] as const,\n queryFn: () => sdk['brain']['backup']['status'](input),\n});\n\nexport const brainBackupsListQueryOptions = (sdk: GeneratedClient, input: BrainBackupsListInput) => ({\n queryKey: ['brain', 'backups', 'list', input] as const,\n queryFn: () => sdk['brain']['backups']['list'](input),\n});\n\nexport const brainClickupChannelsListQueryOptions = (sdk: GeneratedClient, input: BrainClickupChannelsListInput) => ({\n queryKey: ['brain', 'clickup-channels', 'list', input] as const,\n queryFn: () => sdk['brain']['clickup-channels']['list'](input),\n});\n\nexport const brainClickupConnectionsListQueryOptions = (sdk: GeneratedClient, input: BrainClickupConnectionsListInput) => ({\n queryKey: ['brain', 'clickup-connections', 'list', input] as const,\n queryFn: () => sdk['brain']['clickup-connections']['list'](input),\n});\n\nexport const brainClickupListsListQueryOptions = (sdk: GeneratedClient, input: BrainClickupListsListInput) => ({\n queryKey: ['brain', 'clickup-lists', 'list', input] as const,\n queryFn: () => sdk['brain']['clickup-lists']['list'](input),\n});\n\nexport const brainClickupSpacesListQueryOptions = (sdk: GeneratedClient, input: BrainClickupSpacesListInput) => ({\n queryKey: ['brain', 'clickup-spaces', 'list', input] as const,\n queryFn: () => sdk['brain']['clickup-spaces']['list'](input),\n});\n\nexport const brainCognitionDigestMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'cognition', 'digest'],\n mutationFn: (input: BrainCognitionDigestInput) => sdk['brain']['cognition']['digest'](input),\n});\n\nexport const brainCognitionStatusQueryOptions = (sdk: GeneratedClient, input: BrainCognitionStatusInput) => ({\n queryKey: ['brain', 'cognition', 'status', input] as const,\n queryFn: () => sdk['brain']['cognition']['status'](input),\n});\n\nexport const brainCognitionSweepMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'cognition', 'sweep'],\n mutationFn: (input: BrainCognitionSweepInput) => sdk['brain']['cognition']['sweep'](input),\n});\n\nexport const brainConnectorBranchesListQueryOptions = (sdk: GeneratedClient, input: BrainConnectorBranchesListInput) => ({\n queryKey: ['brain', 'connector-branches', 'list', input] as const,\n queryFn: () => sdk['brain']['connector-branches']['list'](input),\n});\n\nexport const brainConnectorConnectionsListQueryOptions = (sdk: GeneratedClient, input: BrainConnectorConnectionsListInput) => ({\n queryKey: ['brain', 'connector-connections', 'list', input] as const,\n queryFn: () => sdk['brain']['connector-connections']['list'](input),\n});\n\nexport const brainConnectorReposListQueryOptions = (sdk: GeneratedClient, input: BrainConnectorReposListInput) => ({\n queryKey: ['brain', 'connector-repos', 'list', input] as const,\n queryFn: () => sdk['brain']['connector-repos']['list'](input),\n});\n\nexport const brainDaemonBatchStatusQueryOptions = (sdk: GeneratedClient, input: BrainDaemonBatchStatusInput) => ({\n queryKey: ['brain', 'daemon-batch', 'status', input] as const,\n queryFn: () => sdk['brain']['daemon-batch']['status'](input),\n});\n\nexport const brainDaemonCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'daemon', 'create'],\n mutationFn: (input: BrainDaemonCreateInput) => sdk['brain']['daemon']['create'](input),\n});\n\nexport const brainDaemonGetQueryOptions = (sdk: GeneratedClient, input: BrainDaemonGetInput) => ({\n queryKey: ['brain', 'daemon', 'get', input] as const,\n queryFn: () => sdk['brain']['daemon']['get'](input),\n});\n\nexport const brainDaemonReingestMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'daemon', 'reingest'],\n mutationFn: (input: BrainDaemonReingestInput) => sdk['brain']['daemon']['reingest'](input),\n});\n\nexport const brainDaemonRemoveMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'daemon', 'remove'],\n mutationFn: (input: BrainDaemonRemoveInput) => sdk['brain']['daemon']['remove'](input),\n});\n\nexport const brainDaemonRunMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'daemon', 'run'],\n mutationFn: (input: BrainDaemonRunInput) => sdk['brain']['daemon']['run'](input),\n});\n\nexport const brainDaemonRunItemsQueryOptions = (sdk: GeneratedClient, input: BrainDaemonRunItemsInput) => ({\n queryKey: ['brain', 'daemon-run', 'items', input] as const,\n queryFn: () => sdk['brain']['daemon-run']['items'](input),\n});\n\nexport const brainDaemonRunsQueryOptions = (sdk: GeneratedClient, input: BrainDaemonRunsInput) => ({\n queryKey: ['brain', 'daemon', 'runs', input] as const,\n queryFn: () => sdk['brain']['daemon']['runs'](input),\n});\n\nexport const brainDaemonStatusQueryOptions = (sdk: GeneratedClient, input: BrainDaemonStatusInput) => ({\n queryKey: ['brain', 'daemon', 'status', input] as const,\n queryFn: () => sdk['brain']['daemon']['status'](input),\n});\n\nexport const brainDaemonUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'daemon', 'update'],\n mutationFn: (input: BrainDaemonUpdateInput) => sdk['brain']['daemon']['update'](input),\n});\n\nexport const brainDaemonsListQueryOptions = (sdk: GeneratedClient, input: BrainDaemonsListInput) => ({\n queryKey: ['brain', 'daemons', 'list', input] as const,\n queryFn: () => sdk['brain']['daemons']['list'](input),\n});\n\nexport const brainGdriveConnectionsListQueryOptions = (sdk: GeneratedClient, input: BrainGdriveConnectionsListInput) => ({\n queryKey: ['brain', 'gdrive-connections', 'list', input] as const,\n queryFn: () => sdk['brain']['gdrive-connections']['list'](input),\n});\n\nexport const brainKnowledgeEntityMemoriesQueryOptions = (sdk: GeneratedClient, input: BrainKnowledgeEntityMemoriesInput) => ({\n queryKey: ['brain', 'knowledge-entity', 'memories', input] as const,\n queryFn: () => sdk['brain']['knowledge-entity']['memories'](input),\n});\n\nexport const brainKnowledgeGraphQueryOptions = (sdk: GeneratedClient, input: BrainKnowledgeGraphInput) => ({\n queryKey: ['brain', 'knowledge', 'graph', input] as const,\n queryFn: () => sdk['brain']['knowledge']['graph'](input),\n});\n\nexport const brainKnowledgeNeighborhoodQueryOptions = (sdk: GeneratedClient, input: BrainKnowledgeNeighborhoodInput) => ({\n queryKey: ['brain', 'knowledge', 'neighborhood', input] as const,\n queryFn: () => sdk['brain']['knowledge']['neighborhood'](input),\n});\n\nexport const brainKnowledgeRelationsQueryOptions = (sdk: GeneratedClient, input: BrainKnowledgeRelationsInput) => ({\n queryKey: ['brain', 'knowledge', 'relations', input] as const,\n queryFn: () => sdk['brain']['knowledge']['relations'](input),\n});\n\nexport const brainKnowledgeSearchQueryOptions = (sdk: GeneratedClient, input: BrainKnowledgeSearchInput) => ({\n queryKey: ['brain', 'knowledge', 'search', input] as const,\n queryFn: () => sdk['brain']['knowledge']['search'](input),\n});\n\nexport const brainMemoryAddMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'memory', 'add'],\n mutationFn: (input: BrainMemoryAddInput) => sdk['brain']['memory']['add'](input),\n});\n\nexport const brainMemoryDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'memory', 'delete'],\n mutationFn: (input: BrainMemoryDeleteInput) => sdk['brain']['memory']['delete'](input),\n});\n\nexport const brainMemoryGetQueryOptions = (sdk: GeneratedClient, input: BrainMemoryGetInput) => ({\n queryKey: ['brain', 'memory', 'get', input] as const,\n queryFn: () => sdk['brain']['memory']['get'](input),\n});\n\nexport const brainMemoryListQueryOptions = (sdk: GeneratedClient, input: BrainMemoryListInput) => ({\n queryKey: ['brain', 'memory', 'list', input] as const,\n queryFn: () => sdk['brain']['memory']['list'](input),\n});\n\nexport const brainMemorySearchQueryOptions = (sdk: GeneratedClient, input: BrainMemorySearchInput) => ({\n queryKey: ['brain', 'memory', 'search', input] as const,\n queryFn: () => sdk['brain']['memory']['search'](input),\n});\n\nexport const brainMemoryStatsQueryOptions = (sdk: GeneratedClient, input: BrainMemoryStatsInput) => ({\n queryKey: ['brain', 'memory', 'stats', input] as const,\n queryFn: () => sdk['brain']['memory']['stats'](input),\n});\n\nexport const brainMemoryUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'memory', 'update'],\n mutationFn: (input: BrainMemoryUpdateInput) => sdk['brain']['memory']['update'](input),\n});\n\nexport const brainProductSharedMemoryResetMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'product-shared-memory', 'reset'],\n mutationFn: (input: BrainProductSharedMemoryResetInput) => sdk['brain']['product-shared-memory']['reset'](input),\n});\n\nexport const brainRestoreStatusQueryOptions = (sdk: GeneratedClient, input: BrainRestoreStatusInput) => ({\n queryKey: ['brain', 'restore', 'status', input] as const,\n queryFn: () => sdk['brain']['restore']['status'](input),\n});\n"]}
|
package/dist/brain/index.js
CHANGED
|
@@ -159,11 +159,7 @@ var brainRestoreStatusQueryOptions = (sdk, input) => ({
|
|
|
159
159
|
queryKey: ["brain", "restore", "status", input],
|
|
160
160
|
queryFn: () => sdk["brain"]["restore"]["status"](input)
|
|
161
161
|
});
|
|
162
|
-
var brainUsageReportQueryOptions = (sdk, input) => ({
|
|
163
|
-
queryKey: ["brain", "usage", "report", input],
|
|
164
|
-
queryFn: () => sdk["brain"]["usage"]["report"](input)
|
|
165
|
-
});
|
|
166
162
|
|
|
167
|
-
export { brainBackupCreateMutationOptions, brainBackupRestoreMutationOptions, brainBackupStatusQueryOptions, brainBackupsListQueryOptions, brainClickupChannelsListQueryOptions, brainClickupConnectionsListQueryOptions, brainClickupListsListQueryOptions, brainClickupSpacesListQueryOptions, brainCognitionDigestMutationOptions, brainCognitionStatusQueryOptions, brainCognitionSweepMutationOptions, brainConnectorBranchesListQueryOptions, brainConnectorConnectionsListQueryOptions, brainConnectorReposListQueryOptions, brainDaemonBatchStatusQueryOptions, brainDaemonCreateMutationOptions, brainDaemonGetQueryOptions, brainDaemonReingestMutationOptions, brainDaemonRemoveMutationOptions, brainDaemonRunItemsQueryOptions, brainDaemonRunMutationOptions, brainDaemonRunsQueryOptions, brainDaemonStatusQueryOptions, brainDaemonUpdateMutationOptions, brainDaemonsListQueryOptions, brainGdriveConnectionsListQueryOptions, brainKnowledgeEntityMemoriesQueryOptions, brainKnowledgeGraphQueryOptions, brainKnowledgeNeighborhoodQueryOptions, brainKnowledgeRelationsQueryOptions, brainKnowledgeSearchQueryOptions, brainMemoryAddMutationOptions, brainMemoryDeleteMutationOptions, brainMemoryGetQueryOptions, brainMemoryListQueryOptions, brainMemorySearchQueryOptions, brainMemoryStatsQueryOptions, brainMemoryUpdateMutationOptions, brainProductSharedMemoryResetMutationOptions, brainRestoreStatusQueryOptions
|
|
163
|
+
export { brainBackupCreateMutationOptions, brainBackupRestoreMutationOptions, brainBackupStatusQueryOptions, brainBackupsListQueryOptions, brainClickupChannelsListQueryOptions, brainClickupConnectionsListQueryOptions, brainClickupListsListQueryOptions, brainClickupSpacesListQueryOptions, brainCognitionDigestMutationOptions, brainCognitionStatusQueryOptions, brainCognitionSweepMutationOptions, brainConnectorBranchesListQueryOptions, brainConnectorConnectionsListQueryOptions, brainConnectorReposListQueryOptions, brainDaemonBatchStatusQueryOptions, brainDaemonCreateMutationOptions, brainDaemonGetQueryOptions, brainDaemonReingestMutationOptions, brainDaemonRemoveMutationOptions, brainDaemonRunItemsQueryOptions, brainDaemonRunMutationOptions, brainDaemonRunsQueryOptions, brainDaemonStatusQueryOptions, brainDaemonUpdateMutationOptions, brainDaemonsListQueryOptions, brainGdriveConnectionsListQueryOptions, brainKnowledgeEntityMemoriesQueryOptions, brainKnowledgeGraphQueryOptions, brainKnowledgeNeighborhoodQueryOptions, brainKnowledgeRelationsQueryOptions, brainKnowledgeSearchQueryOptions, brainMemoryAddMutationOptions, brainMemoryDeleteMutationOptions, brainMemoryGetQueryOptions, brainMemoryListQueryOptions, brainMemorySearchQueryOptions, brainMemoryStatsQueryOptions, brainMemoryUpdateMutationOptions, brainProductSharedMemoryResetMutationOptions, brainRestoreStatusQueryOptions };
|
|
168
164
|
//# sourceMappingURL=index.js.map
|
|
169
165
|
//# sourceMappingURL=index.js.map
|
package/dist/brain/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/gen/brain/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 BrainBackupCreateInput,\n BrainBackupRestoreInput,\n BrainBackupStatusInput,\n BrainBackupStatusOutput,\n BrainBackupsListInput,\n BrainBackupsListOutput,\n BrainClickupChannelsListInput,\n BrainClickupChannelsListOutput,\n BrainClickupConnectionsListInput,\n BrainClickupConnectionsListOutput,\n BrainClickupListsListInput,\n BrainClickupListsListOutput,\n BrainClickupSpacesListInput,\n BrainClickupSpacesListOutput,\n BrainCognitionDigestInput,\n BrainCognitionStatusInput,\n BrainCognitionStatusOutput,\n BrainCognitionSweepInput,\n BrainConnectorBranchesListInput,\n BrainConnectorBranchesListOutput,\n BrainConnectorConnectionsListInput,\n BrainConnectorConnectionsListOutput,\n BrainConnectorReposListInput,\n BrainConnectorReposListOutput,\n BrainDaemonBatchStatusInput,\n BrainDaemonBatchStatusOutput,\n BrainDaemonCreateInput,\n BrainDaemonGetInput,\n BrainDaemonGetOutput,\n BrainDaemonReingestInput,\n BrainDaemonRemoveInput,\n BrainDaemonRunInput,\n BrainDaemonRunItemsInput,\n BrainDaemonRunItemsOutput,\n BrainDaemonRunsInput,\n BrainDaemonRunsOutput,\n BrainDaemonStatusInput,\n BrainDaemonStatusOutput,\n BrainDaemonUpdateInput,\n BrainDaemonsListInput,\n BrainDaemonsListOutput,\n BrainGdriveConnectionsListInput,\n BrainGdriveConnectionsListOutput,\n BrainKnowledgeEntityMemoriesInput,\n BrainKnowledgeEntityMemoriesOutput,\n BrainKnowledgeGraphInput,\n BrainKnowledgeGraphOutput,\n BrainKnowledgeNeighborhoodInput,\n BrainKnowledgeNeighborhoodOutput,\n BrainKnowledgeRelationsInput,\n BrainKnowledgeRelationsOutput,\n BrainKnowledgeSearchInput,\n BrainKnowledgeSearchOutput,\n BrainMemoryAddInput,\n BrainMemoryDeleteInput,\n BrainMemoryGetInput,\n BrainMemoryGetOutput,\n BrainMemoryListInput,\n BrainMemoryListOutput,\n BrainMemorySearchInput,\n BrainMemorySearchOutput,\n BrainMemoryStatsInput,\n BrainMemoryStatsOutput,\n BrainMemoryUpdateInput,\n BrainProductSharedMemoryResetInput,\n BrainRestoreStatusInput,\n BrainRestoreStatusOutput,\n BrainUsageReportInput,\n BrainUsageReportOutput,\n} from '../types.gen';\n\nexport const brainBackupCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'backup', 'create'],\n mutationFn: (input: BrainBackupCreateInput) => sdk['brain']['backup']['create'](input),\n});\n\nexport const brainBackupRestoreMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'backup', 'restore'],\n mutationFn: (input: BrainBackupRestoreInput) => sdk['brain']['backup']['restore'](input),\n});\n\nexport const brainBackupStatusQueryOptions = (sdk: GeneratedClient, input: BrainBackupStatusInput) => ({\n queryKey: ['brain', 'backup', 'status', input] as const,\n queryFn: () => sdk['brain']['backup']['status'](input),\n});\n\nexport const brainBackupsListQueryOptions = (sdk: GeneratedClient, input: BrainBackupsListInput) => ({\n queryKey: ['brain', 'backups', 'list', input] as const,\n queryFn: () => sdk['brain']['backups']['list'](input),\n});\n\nexport const brainClickupChannelsListQueryOptions = (sdk: GeneratedClient, input: BrainClickupChannelsListInput) => ({\n queryKey: ['brain', 'clickup-channels', 'list', input] as const,\n queryFn: () => sdk['brain']['clickup-channels']['list'](input),\n});\n\nexport const brainClickupConnectionsListQueryOptions = (sdk: GeneratedClient, input: BrainClickupConnectionsListInput) => ({\n queryKey: ['brain', 'clickup-connections', 'list', input] as const,\n queryFn: () => sdk['brain']['clickup-connections']['list'](input),\n});\n\nexport const brainClickupListsListQueryOptions = (sdk: GeneratedClient, input: BrainClickupListsListInput) => ({\n queryKey: ['brain', 'clickup-lists', 'list', input] as const,\n queryFn: () => sdk['brain']['clickup-lists']['list'](input),\n});\n\nexport const brainClickupSpacesListQueryOptions = (sdk: GeneratedClient, input: BrainClickupSpacesListInput) => ({\n queryKey: ['brain', 'clickup-spaces', 'list', input] as const,\n queryFn: () => sdk['brain']['clickup-spaces']['list'](input),\n});\n\nexport const brainCognitionDigestMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'cognition', 'digest'],\n mutationFn: (input: BrainCognitionDigestInput) => sdk['brain']['cognition']['digest'](input),\n});\n\nexport const brainCognitionStatusQueryOptions = (sdk: GeneratedClient, input: BrainCognitionStatusInput) => ({\n queryKey: ['brain', 'cognition', 'status', input] as const,\n queryFn: () => sdk['brain']['cognition']['status'](input),\n});\n\nexport const brainCognitionSweepMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'cognition', 'sweep'],\n mutationFn: (input: BrainCognitionSweepInput) => sdk['brain']['cognition']['sweep'](input),\n});\n\nexport const brainConnectorBranchesListQueryOptions = (sdk: GeneratedClient, input: BrainConnectorBranchesListInput) => ({\n queryKey: ['brain', 'connector-branches', 'list', input] as const,\n queryFn: () => sdk['brain']['connector-branches']['list'](input),\n});\n\nexport const brainConnectorConnectionsListQueryOptions = (sdk: GeneratedClient, input: BrainConnectorConnectionsListInput) => ({\n queryKey: ['brain', 'connector-connections', 'list', input] as const,\n queryFn: () => sdk['brain']['connector-connections']['list'](input),\n});\n\nexport const brainConnectorReposListQueryOptions = (sdk: GeneratedClient, input: BrainConnectorReposListInput) => ({\n queryKey: ['brain', 'connector-repos', 'list', input] as const,\n queryFn: () => sdk['brain']['connector-repos']['list'](input),\n});\n\nexport const brainDaemonBatchStatusQueryOptions = (sdk: GeneratedClient, input: BrainDaemonBatchStatusInput) => ({\n queryKey: ['brain', 'daemon-batch', 'status', input] as const,\n queryFn: () => sdk['brain']['daemon-batch']['status'](input),\n});\n\nexport const brainDaemonCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'daemon', 'create'],\n mutationFn: (input: BrainDaemonCreateInput) => sdk['brain']['daemon']['create'](input),\n});\n\nexport const brainDaemonGetQueryOptions = (sdk: GeneratedClient, input: BrainDaemonGetInput) => ({\n queryKey: ['brain', 'daemon', 'get', input] as const,\n queryFn: () => sdk['brain']['daemon']['get'](input),\n});\n\nexport const brainDaemonReingestMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'daemon', 'reingest'],\n mutationFn: (input: BrainDaemonReingestInput) => sdk['brain']['daemon']['reingest'](input),\n});\n\nexport const brainDaemonRemoveMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'daemon', 'remove'],\n mutationFn: (input: BrainDaemonRemoveInput) => sdk['brain']['daemon']['remove'](input),\n});\n\nexport const brainDaemonRunMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'daemon', 'run'],\n mutationFn: (input: BrainDaemonRunInput) => sdk['brain']['daemon']['run'](input),\n});\n\nexport const brainDaemonRunItemsQueryOptions = (sdk: GeneratedClient, input: BrainDaemonRunItemsInput) => ({\n queryKey: ['brain', 'daemon-run', 'items', input] as const,\n queryFn: () => sdk['brain']['daemon-run']['items'](input),\n});\n\nexport const brainDaemonRunsQueryOptions = (sdk: GeneratedClient, input: BrainDaemonRunsInput) => ({\n queryKey: ['brain', 'daemon', 'runs', input] as const,\n queryFn: () => sdk['brain']['daemon']['runs'](input),\n});\n\nexport const brainDaemonStatusQueryOptions = (sdk: GeneratedClient, input: BrainDaemonStatusInput) => ({\n queryKey: ['brain', 'daemon', 'status', input] as const,\n queryFn: () => sdk['brain']['daemon']['status'](input),\n});\n\nexport const brainDaemonUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'daemon', 'update'],\n mutationFn: (input: BrainDaemonUpdateInput) => sdk['brain']['daemon']['update'](input),\n});\n\nexport const brainDaemonsListQueryOptions = (sdk: GeneratedClient, input: BrainDaemonsListInput) => ({\n queryKey: ['brain', 'daemons', 'list', input] as const,\n queryFn: () => sdk['brain']['daemons']['list'](input),\n});\n\nexport const brainGdriveConnectionsListQueryOptions = (sdk: GeneratedClient, input: BrainGdriveConnectionsListInput) => ({\n queryKey: ['brain', 'gdrive-connections', 'list', input] as const,\n queryFn: () => sdk['brain']['gdrive-connections']['list'](input),\n});\n\nexport const brainKnowledgeEntityMemoriesQueryOptions = (sdk: GeneratedClient, input: BrainKnowledgeEntityMemoriesInput) => ({\n queryKey: ['brain', 'knowledge-entity', 'memories', input] as const,\n queryFn: () => sdk['brain']['knowledge-entity']['memories'](input),\n});\n\nexport const brainKnowledgeGraphQueryOptions = (sdk: GeneratedClient, input: BrainKnowledgeGraphInput) => ({\n queryKey: ['brain', 'knowledge', 'graph', input] as const,\n queryFn: () => sdk['brain']['knowledge']['graph'](input),\n});\n\nexport const brainKnowledgeNeighborhoodQueryOptions = (sdk: GeneratedClient, input: BrainKnowledgeNeighborhoodInput) => ({\n queryKey: ['brain', 'knowledge', 'neighborhood', input] as const,\n queryFn: () => sdk['brain']['knowledge']['neighborhood'](input),\n});\n\nexport const brainKnowledgeRelationsQueryOptions = (sdk: GeneratedClient, input: BrainKnowledgeRelationsInput) => ({\n queryKey: ['brain', 'knowledge', 'relations', input] as const,\n queryFn: () => sdk['brain']['knowledge']['relations'](input),\n});\n\nexport const brainKnowledgeSearchQueryOptions = (sdk: GeneratedClient, input: BrainKnowledgeSearchInput) => ({\n queryKey: ['brain', 'knowledge', 'search', input] as const,\n queryFn: () => sdk['brain']['knowledge']['search'](input),\n});\n\nexport const brainMemoryAddMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'memory', 'add'],\n mutationFn: (input: BrainMemoryAddInput) => sdk['brain']['memory']['add'](input),\n});\n\nexport const brainMemoryDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'memory', 'delete'],\n mutationFn: (input: BrainMemoryDeleteInput) => sdk['brain']['memory']['delete'](input),\n});\n\nexport const brainMemoryGetQueryOptions = (sdk: GeneratedClient, input: BrainMemoryGetInput) => ({\n queryKey: ['brain', 'memory', 'get', input] as const,\n queryFn: () => sdk['brain']['memory']['get'](input),\n});\n\nexport const brainMemoryListQueryOptions = (sdk: GeneratedClient, input: BrainMemoryListInput) => ({\n queryKey: ['brain', 'memory', 'list', input] as const,\n queryFn: () => sdk['brain']['memory']['list'](input),\n});\n\nexport const brainMemorySearchQueryOptions = (sdk: GeneratedClient, input: BrainMemorySearchInput) => ({\n queryKey: ['brain', 'memory', 'search', input] as const,\n queryFn: () => sdk['brain']['memory']['search'](input),\n});\n\nexport const brainMemoryStatsQueryOptions = (sdk: GeneratedClient, input: BrainMemoryStatsInput) => ({\n queryKey: ['brain', 'memory', 'stats', input] as const,\n queryFn: () => sdk['brain']['memory']['stats'](input),\n});\n\nexport const brainMemoryUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'memory', 'update'],\n mutationFn: (input: BrainMemoryUpdateInput) => sdk['brain']['memory']['update'](input),\n});\n\nexport const brainProductSharedMemoryResetMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'product-shared-memory', 'reset'],\n mutationFn: (input: BrainProductSharedMemoryResetInput) => sdk['brain']['product-shared-memory']['reset'](input),\n});\n\nexport const brainRestoreStatusQueryOptions = (sdk: GeneratedClient, input: BrainRestoreStatusInput) => ({\n queryKey: ['brain', 'restore', 'status', input] as const,\n queryFn: () => sdk['brain']['restore']['status'](input),\n});\n\nexport const brainUsageReportQueryOptions = (sdk: GeneratedClient, input: BrainUsageReportInput) => ({\n queryKey: ['brain', 'usage', 'report', input] as const,\n queryFn: () => sdk['brain']['usage']['report'](input),\n});\n"]}
|
|
1
|
+
{"version":3,"sources":["../../src/gen/brain/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 BrainBackupCreateInput,\n BrainBackupRestoreInput,\n BrainBackupStatusInput,\n BrainBackupStatusOutput,\n BrainBackupsListInput,\n BrainBackupsListOutput,\n BrainClickupChannelsListInput,\n BrainClickupChannelsListOutput,\n BrainClickupConnectionsListInput,\n BrainClickupConnectionsListOutput,\n BrainClickupListsListInput,\n BrainClickupListsListOutput,\n BrainClickupSpacesListInput,\n BrainClickupSpacesListOutput,\n BrainCognitionDigestInput,\n BrainCognitionStatusInput,\n BrainCognitionStatusOutput,\n BrainCognitionSweepInput,\n BrainConnectorBranchesListInput,\n BrainConnectorBranchesListOutput,\n BrainConnectorConnectionsListInput,\n BrainConnectorConnectionsListOutput,\n BrainConnectorReposListInput,\n BrainConnectorReposListOutput,\n BrainDaemonBatchStatusInput,\n BrainDaemonBatchStatusOutput,\n BrainDaemonCreateInput,\n BrainDaemonGetInput,\n BrainDaemonGetOutput,\n BrainDaemonReingestInput,\n BrainDaemonRemoveInput,\n BrainDaemonRunInput,\n BrainDaemonRunItemsInput,\n BrainDaemonRunItemsOutput,\n BrainDaemonRunsInput,\n BrainDaemonRunsOutput,\n BrainDaemonStatusInput,\n BrainDaemonStatusOutput,\n BrainDaemonUpdateInput,\n BrainDaemonsListInput,\n BrainDaemonsListOutput,\n BrainGdriveConnectionsListInput,\n BrainGdriveConnectionsListOutput,\n BrainKnowledgeEntityMemoriesInput,\n BrainKnowledgeEntityMemoriesOutput,\n BrainKnowledgeGraphInput,\n BrainKnowledgeGraphOutput,\n BrainKnowledgeNeighborhoodInput,\n BrainKnowledgeNeighborhoodOutput,\n BrainKnowledgeRelationsInput,\n BrainKnowledgeRelationsOutput,\n BrainKnowledgeSearchInput,\n BrainKnowledgeSearchOutput,\n BrainMemoryAddInput,\n BrainMemoryDeleteInput,\n BrainMemoryGetInput,\n BrainMemoryGetOutput,\n BrainMemoryListInput,\n BrainMemoryListOutput,\n BrainMemorySearchInput,\n BrainMemorySearchOutput,\n BrainMemoryStatsInput,\n BrainMemoryStatsOutput,\n BrainMemoryUpdateInput,\n BrainProductSharedMemoryResetInput,\n BrainRestoreStatusInput,\n BrainRestoreStatusOutput,\n} from '../types.gen';\n\nexport const brainBackupCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'backup', 'create'],\n mutationFn: (input: BrainBackupCreateInput) => sdk['brain']['backup']['create'](input),\n});\n\nexport const brainBackupRestoreMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'backup', 'restore'],\n mutationFn: (input: BrainBackupRestoreInput) => sdk['brain']['backup']['restore'](input),\n});\n\nexport const brainBackupStatusQueryOptions = (sdk: GeneratedClient, input: BrainBackupStatusInput) => ({\n queryKey: ['brain', 'backup', 'status', input] as const,\n queryFn: () => sdk['brain']['backup']['status'](input),\n});\n\nexport const brainBackupsListQueryOptions = (sdk: GeneratedClient, input: BrainBackupsListInput) => ({\n queryKey: ['brain', 'backups', 'list', input] as const,\n queryFn: () => sdk['brain']['backups']['list'](input),\n});\n\nexport const brainClickupChannelsListQueryOptions = (sdk: GeneratedClient, input: BrainClickupChannelsListInput) => ({\n queryKey: ['brain', 'clickup-channels', 'list', input] as const,\n queryFn: () => sdk['brain']['clickup-channels']['list'](input),\n});\n\nexport const brainClickupConnectionsListQueryOptions = (sdk: GeneratedClient, input: BrainClickupConnectionsListInput) => ({\n queryKey: ['brain', 'clickup-connections', 'list', input] as const,\n queryFn: () => sdk['brain']['clickup-connections']['list'](input),\n});\n\nexport const brainClickupListsListQueryOptions = (sdk: GeneratedClient, input: BrainClickupListsListInput) => ({\n queryKey: ['brain', 'clickup-lists', 'list', input] as const,\n queryFn: () => sdk['brain']['clickup-lists']['list'](input),\n});\n\nexport const brainClickupSpacesListQueryOptions = (sdk: GeneratedClient, input: BrainClickupSpacesListInput) => ({\n queryKey: ['brain', 'clickup-spaces', 'list', input] as const,\n queryFn: () => sdk['brain']['clickup-spaces']['list'](input),\n});\n\nexport const brainCognitionDigestMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'cognition', 'digest'],\n mutationFn: (input: BrainCognitionDigestInput) => sdk['brain']['cognition']['digest'](input),\n});\n\nexport const brainCognitionStatusQueryOptions = (sdk: GeneratedClient, input: BrainCognitionStatusInput) => ({\n queryKey: ['brain', 'cognition', 'status', input] as const,\n queryFn: () => sdk['brain']['cognition']['status'](input),\n});\n\nexport const brainCognitionSweepMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'cognition', 'sweep'],\n mutationFn: (input: BrainCognitionSweepInput) => sdk['brain']['cognition']['sweep'](input),\n});\n\nexport const brainConnectorBranchesListQueryOptions = (sdk: GeneratedClient, input: BrainConnectorBranchesListInput) => ({\n queryKey: ['brain', 'connector-branches', 'list', input] as const,\n queryFn: () => sdk['brain']['connector-branches']['list'](input),\n});\n\nexport const brainConnectorConnectionsListQueryOptions = (sdk: GeneratedClient, input: BrainConnectorConnectionsListInput) => ({\n queryKey: ['brain', 'connector-connections', 'list', input] as const,\n queryFn: () => sdk['brain']['connector-connections']['list'](input),\n});\n\nexport const brainConnectorReposListQueryOptions = (sdk: GeneratedClient, input: BrainConnectorReposListInput) => ({\n queryKey: ['brain', 'connector-repos', 'list', input] as const,\n queryFn: () => sdk['brain']['connector-repos']['list'](input),\n});\n\nexport const brainDaemonBatchStatusQueryOptions = (sdk: GeneratedClient, input: BrainDaemonBatchStatusInput) => ({\n queryKey: ['brain', 'daemon-batch', 'status', input] as const,\n queryFn: () => sdk['brain']['daemon-batch']['status'](input),\n});\n\nexport const brainDaemonCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'daemon', 'create'],\n mutationFn: (input: BrainDaemonCreateInput) => sdk['brain']['daemon']['create'](input),\n});\n\nexport const brainDaemonGetQueryOptions = (sdk: GeneratedClient, input: BrainDaemonGetInput) => ({\n queryKey: ['brain', 'daemon', 'get', input] as const,\n queryFn: () => sdk['brain']['daemon']['get'](input),\n});\n\nexport const brainDaemonReingestMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'daemon', 'reingest'],\n mutationFn: (input: BrainDaemonReingestInput) => sdk['brain']['daemon']['reingest'](input),\n});\n\nexport const brainDaemonRemoveMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'daemon', 'remove'],\n mutationFn: (input: BrainDaemonRemoveInput) => sdk['brain']['daemon']['remove'](input),\n});\n\nexport const brainDaemonRunMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'daemon', 'run'],\n mutationFn: (input: BrainDaemonRunInput) => sdk['brain']['daemon']['run'](input),\n});\n\nexport const brainDaemonRunItemsQueryOptions = (sdk: GeneratedClient, input: BrainDaemonRunItemsInput) => ({\n queryKey: ['brain', 'daemon-run', 'items', input] as const,\n queryFn: () => sdk['brain']['daemon-run']['items'](input),\n});\n\nexport const brainDaemonRunsQueryOptions = (sdk: GeneratedClient, input: BrainDaemonRunsInput) => ({\n queryKey: ['brain', 'daemon', 'runs', input] as const,\n queryFn: () => sdk['brain']['daemon']['runs'](input),\n});\n\nexport const brainDaemonStatusQueryOptions = (sdk: GeneratedClient, input: BrainDaemonStatusInput) => ({\n queryKey: ['brain', 'daemon', 'status', input] as const,\n queryFn: () => sdk['brain']['daemon']['status'](input),\n});\n\nexport const brainDaemonUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'daemon', 'update'],\n mutationFn: (input: BrainDaemonUpdateInput) => sdk['brain']['daemon']['update'](input),\n});\n\nexport const brainDaemonsListQueryOptions = (sdk: GeneratedClient, input: BrainDaemonsListInput) => ({\n queryKey: ['brain', 'daemons', 'list', input] as const,\n queryFn: () => sdk['brain']['daemons']['list'](input),\n});\n\nexport const brainGdriveConnectionsListQueryOptions = (sdk: GeneratedClient, input: BrainGdriveConnectionsListInput) => ({\n queryKey: ['brain', 'gdrive-connections', 'list', input] as const,\n queryFn: () => sdk['brain']['gdrive-connections']['list'](input),\n});\n\nexport const brainKnowledgeEntityMemoriesQueryOptions = (sdk: GeneratedClient, input: BrainKnowledgeEntityMemoriesInput) => ({\n queryKey: ['brain', 'knowledge-entity', 'memories', input] as const,\n queryFn: () => sdk['brain']['knowledge-entity']['memories'](input),\n});\n\nexport const brainKnowledgeGraphQueryOptions = (sdk: GeneratedClient, input: BrainKnowledgeGraphInput) => ({\n queryKey: ['brain', 'knowledge', 'graph', input] as const,\n queryFn: () => sdk['brain']['knowledge']['graph'](input),\n});\n\nexport const brainKnowledgeNeighborhoodQueryOptions = (sdk: GeneratedClient, input: BrainKnowledgeNeighborhoodInput) => ({\n queryKey: ['brain', 'knowledge', 'neighborhood', input] as const,\n queryFn: () => sdk['brain']['knowledge']['neighborhood'](input),\n});\n\nexport const brainKnowledgeRelationsQueryOptions = (sdk: GeneratedClient, input: BrainKnowledgeRelationsInput) => ({\n queryKey: ['brain', 'knowledge', 'relations', input] as const,\n queryFn: () => sdk['brain']['knowledge']['relations'](input),\n});\n\nexport const brainKnowledgeSearchQueryOptions = (sdk: GeneratedClient, input: BrainKnowledgeSearchInput) => ({\n queryKey: ['brain', 'knowledge', 'search', input] as const,\n queryFn: () => sdk['brain']['knowledge']['search'](input),\n});\n\nexport const brainMemoryAddMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'memory', 'add'],\n mutationFn: (input: BrainMemoryAddInput) => sdk['brain']['memory']['add'](input),\n});\n\nexport const brainMemoryDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'memory', 'delete'],\n mutationFn: (input: BrainMemoryDeleteInput) => sdk['brain']['memory']['delete'](input),\n});\n\nexport const brainMemoryGetQueryOptions = (sdk: GeneratedClient, input: BrainMemoryGetInput) => ({\n queryKey: ['brain', 'memory', 'get', input] as const,\n queryFn: () => sdk['brain']['memory']['get'](input),\n});\n\nexport const brainMemoryListQueryOptions = (sdk: GeneratedClient, input: BrainMemoryListInput) => ({\n queryKey: ['brain', 'memory', 'list', input] as const,\n queryFn: () => sdk['brain']['memory']['list'](input),\n});\n\nexport const brainMemorySearchQueryOptions = (sdk: GeneratedClient, input: BrainMemorySearchInput) => ({\n queryKey: ['brain', 'memory', 'search', input] as const,\n queryFn: () => sdk['brain']['memory']['search'](input),\n});\n\nexport const brainMemoryStatsQueryOptions = (sdk: GeneratedClient, input: BrainMemoryStatsInput) => ({\n queryKey: ['brain', 'memory', 'stats', input] as const,\n queryFn: () => sdk['brain']['memory']['stats'](input),\n});\n\nexport const brainMemoryUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'memory', 'update'],\n mutationFn: (input: BrainMemoryUpdateInput) => sdk['brain']['memory']['update'](input),\n});\n\nexport const brainProductSharedMemoryResetMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['brain', 'product-shared-memory', 'reset'],\n mutationFn: (input: BrainProductSharedMemoryResetInput) => sdk['brain']['product-shared-memory']['reset'](input),\n});\n\nexport const brainRestoreStatusQueryOptions = (sdk: GeneratedClient, input: BrainRestoreStatusInput) => ({\n queryKey: ['brain', 'restore', 'status', input] as const,\n queryFn: () => sdk['brain']['restore']['status'](input),\n});\n"]}
|