@lessly/sdk-app 54.1.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 +5 -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 +41 -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 +15194 -3542
- package/dist/analytics/index.cjs +5 -0
- package/dist/analytics/index.cjs.map +1 -1
- package/dist/analytics/index.js +5 -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 +244 -46
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +2 -8911
- 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 +7 -0
- package/src/gen/bindings.gen.ts +253 -47
- package/src/gen/brain/index.ts +1 -1
- package/src/gen/brain/queryOptions.gen.ts +0 -7
- package/src/gen/client.gen.ts +72 -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 +16541 -4850
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_types/gen/playground/index.js';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from '../_types/gen/playground/index.js';
|
|
@@ -0,0 +1,58 @@
|
|
|
1
|
+
import { wsBindings } from '../chunk-4RJR4UQ3.js';
|
|
2
|
+
|
|
3
|
+
// src/gen/playground/queryOptions.gen.ts
|
|
4
|
+
var playgroundAnalyticsOverviewQueryOptions = (sdk, input) => ({
|
|
5
|
+
queryKey: ["playground", "analytics", "overview", input],
|
|
6
|
+
queryFn: () => sdk["playground"]["analytics"]["overview"](input)
|
|
7
|
+
});
|
|
8
|
+
var playgroundBillingEntitlementsQueryOptions = (sdk, input) => ({
|
|
9
|
+
queryKey: ["playground", "billing", "entitlements", input],
|
|
10
|
+
queryFn: () => sdk["playground"]["billing"]["entitlements"](input)
|
|
11
|
+
});
|
|
12
|
+
var playgroundBillingRecordUsageMutationOptions = (sdk) => ({
|
|
13
|
+
mutationKey: ["playground", "billing", "record-usage"],
|
|
14
|
+
mutationFn: (input) => sdk["playground"]["billing"]["record-usage"](input)
|
|
15
|
+
});
|
|
16
|
+
var playgroundClickupCreateTaskMutationOptions = (sdk) => ({
|
|
17
|
+
mutationKey: ["playground", "clickup", "create-task"],
|
|
18
|
+
mutationFn: (input) => sdk["playground"]["clickup"]["create-task"](input)
|
|
19
|
+
});
|
|
20
|
+
var playgroundClickupGetLastWebhookQueryOptions = (sdk, input) => ({
|
|
21
|
+
queryKey: ["playground", "clickup", "get-last-webhook", input],
|
|
22
|
+
queryFn: () => sdk["playground"]["clickup"]["get-last-webhook"](input)
|
|
23
|
+
});
|
|
24
|
+
var playgroundClickupGetOverviewQueryOptions = (sdk, input) => ({
|
|
25
|
+
queryKey: ["playground", "clickup", "get-overview", input],
|
|
26
|
+
queryFn: () => sdk["playground"]["clickup"]["get-overview"](input)
|
|
27
|
+
});
|
|
28
|
+
var playgroundGdriveGetLastChangeQueryOptions = (sdk, input) => ({
|
|
29
|
+
queryKey: ["playground", "gdrive", "get-last-change", input],
|
|
30
|
+
queryFn: () => sdk["playground"]["gdrive"]["get-last-change"](input)
|
|
31
|
+
});
|
|
32
|
+
var playgroundGdriveReadFileQueryOptions = (sdk, input) => ({
|
|
33
|
+
queryKey: ["playground", "gdrive", "read-file", input],
|
|
34
|
+
queryFn: () => sdk["playground"]["gdrive"]["read-file"](input)
|
|
35
|
+
});
|
|
36
|
+
var playgroundGoogleadsReadCustomerQueryOptions = (sdk, input) => ({
|
|
37
|
+
queryKey: ["playground", "googleads", "read-customer", input],
|
|
38
|
+
queryFn: () => sdk["playground"]["googleads"]["read-customer"](input)
|
|
39
|
+
});
|
|
40
|
+
var playgroundLifecycleGetStateQueryOptions = (sdk, input) => ({
|
|
41
|
+
queryKey: ["playground", "lifecycle", "get-state", input],
|
|
42
|
+
queryFn: () => sdk["playground"]["lifecycle"]["get-state"](input)
|
|
43
|
+
});
|
|
44
|
+
var playgroundLifecycleListEventsQueryOptions = (sdk, input) => ({
|
|
45
|
+
queryKey: ["playground", "lifecycle", "list-events", input],
|
|
46
|
+
queryFn: () => sdk["playground"]["lifecycle"]["list-events"](input)
|
|
47
|
+
});
|
|
48
|
+
var playgroundWebhookGetLastQueryOptions = (sdk, input) => ({
|
|
49
|
+
queryKey: ["playground", "webhook", "get-last", input],
|
|
50
|
+
queryFn: () => sdk["playground"]["webhook"]["get-last"](input)
|
|
51
|
+
});
|
|
52
|
+
|
|
53
|
+
// src/gen/playground/connect.gen.ts
|
|
54
|
+
var playgroundWsEchoConnect = (sdk, input) => sdk.openStream(wsBindings["playground"]["ws"]["echo"], input);
|
|
55
|
+
|
|
56
|
+
export { playgroundAnalyticsOverviewQueryOptions, playgroundBillingEntitlementsQueryOptions, playgroundBillingRecordUsageMutationOptions, playgroundClickupCreateTaskMutationOptions, playgroundClickupGetLastWebhookQueryOptions, playgroundClickupGetOverviewQueryOptions, playgroundGdriveGetLastChangeQueryOptions, playgroundGdriveReadFileQueryOptions, playgroundGoogleadsReadCustomerQueryOptions, playgroundLifecycleGetStateQueryOptions, playgroundLifecycleListEventsQueryOptions, playgroundWebhookGetLastQueryOptions, playgroundWsEchoConnect };
|
|
57
|
+
//# sourceMappingURL=index.js.map
|
|
58
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../src/gen/playground/queryOptions.gen.ts","../../src/gen/playground/connect.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 PlaygroundAnalyticsOverviewInput,\n PlaygroundAnalyticsOverviewOutput,\n PlaygroundBillingEntitlementsInput,\n PlaygroundBillingEntitlementsOutput,\n PlaygroundBillingRecordUsageInput,\n PlaygroundClickupCreateTaskInput,\n PlaygroundClickupGetLastWebhookInput,\n PlaygroundClickupGetLastWebhookOutput,\n PlaygroundClickupGetOverviewInput,\n PlaygroundClickupGetOverviewOutput,\n PlaygroundGdriveGetLastChangeInput,\n PlaygroundGdriveGetLastChangeOutput,\n PlaygroundGdriveReadFileInput,\n PlaygroundGdriveReadFileOutput,\n PlaygroundGoogleadsReadCustomerInput,\n PlaygroundGoogleadsReadCustomerOutput,\n PlaygroundLifecycleGetStateInput,\n PlaygroundLifecycleGetStateOutput,\n PlaygroundLifecycleListEventsInput,\n PlaygroundLifecycleListEventsOutput,\n PlaygroundWebhookGetLastInput,\n PlaygroundWebhookGetLastOutput,\n} from '../types.gen';\n\nexport const playgroundAnalyticsOverviewQueryOptions = (sdk: GeneratedClient, input: PlaygroundAnalyticsOverviewInput) => ({\n queryKey: ['playground', 'analytics', 'overview', input] as const,\n queryFn: () => sdk['playground']['analytics']['overview'](input),\n});\n\nexport const playgroundBillingEntitlementsQueryOptions = (sdk: GeneratedClient, input: PlaygroundBillingEntitlementsInput) => ({\n queryKey: ['playground', 'billing', 'entitlements', input] as const,\n queryFn: () => sdk['playground']['billing']['entitlements'](input),\n});\n\nexport const playgroundBillingRecordUsageMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['playground', 'billing', 'record-usage'],\n mutationFn: (input: PlaygroundBillingRecordUsageInput) => sdk['playground']['billing']['record-usage'](input),\n});\n\nexport const playgroundClickupCreateTaskMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['playground', 'clickup', 'create-task'],\n mutationFn: (input: PlaygroundClickupCreateTaskInput) => sdk['playground']['clickup']['create-task'](input),\n});\n\nexport const playgroundClickupGetLastWebhookQueryOptions = (sdk: GeneratedClient, input: PlaygroundClickupGetLastWebhookInput) => ({\n queryKey: ['playground', 'clickup', 'get-last-webhook', input] as const,\n queryFn: () => sdk['playground']['clickup']['get-last-webhook'](input),\n});\n\nexport const playgroundClickupGetOverviewQueryOptions = (sdk: GeneratedClient, input: PlaygroundClickupGetOverviewInput) => ({\n queryKey: ['playground', 'clickup', 'get-overview', input] as const,\n queryFn: () => sdk['playground']['clickup']['get-overview'](input),\n});\n\nexport const playgroundGdriveGetLastChangeQueryOptions = (sdk: GeneratedClient, input: PlaygroundGdriveGetLastChangeInput) => ({\n queryKey: ['playground', 'gdrive', 'get-last-change', input] as const,\n queryFn: () => sdk['playground']['gdrive']['get-last-change'](input),\n});\n\nexport const playgroundGdriveReadFileQueryOptions = (sdk: GeneratedClient, input: PlaygroundGdriveReadFileInput) => ({\n queryKey: ['playground', 'gdrive', 'read-file', input] as const,\n queryFn: () => sdk['playground']['gdrive']['read-file'](input),\n});\n\nexport const playgroundGoogleadsReadCustomerQueryOptions = (sdk: GeneratedClient, input: PlaygroundGoogleadsReadCustomerInput) => ({\n queryKey: ['playground', 'googleads', 'read-customer', input] as const,\n queryFn: () => sdk['playground']['googleads']['read-customer'](input),\n});\n\nexport const playgroundLifecycleGetStateQueryOptions = (sdk: GeneratedClient, input: PlaygroundLifecycleGetStateInput) => ({\n queryKey: ['playground', 'lifecycle', 'get-state', input] as const,\n queryFn: () => sdk['playground']['lifecycle']['get-state'](input),\n});\n\nexport const playgroundLifecycleListEventsQueryOptions = (sdk: GeneratedClient, input: PlaygroundLifecycleListEventsInput) => ({\n queryKey: ['playground', 'lifecycle', 'list-events', input] as const,\n queryFn: () => sdk['playground']['lifecycle']['list-events'](input),\n});\n\nexport const playgroundWebhookGetLastQueryOptions = (sdk: GeneratedClient, input: PlaygroundWebhookGetLastInput) => ({\n queryKey: ['playground', 'webhook', 'get-last', input] as const,\n queryFn: () => sdk['playground']['webhook']['get-last'](input),\n});\n","// AUTOGENERATED by scripts/generate.ts — do not edit.\nimport { wsBindings } from '../bindings.gen';\nimport type { LesslyStream, LesslyStreamOpener } from '../../runtime/types';\nimport type {\n PlaygroundWsEchoInput,\n} from '../types.gen';\n\nexport const playgroundWsEchoConnect = (sdk: LesslyStreamOpener, input: PlaygroundWsEchoInput): LesslyStream =>\n sdk.openStream(wsBindings['playground']!['ws']!['echo']!, input as Record<string, unknown>);\n"]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lessly/sdk-app",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "55.0.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"engines": {
|
|
@@ -125,6 +125,16 @@
|
|
|
125
125
|
"default": "./dist/organization/index.cjs"
|
|
126
126
|
}
|
|
127
127
|
},
|
|
128
|
+
"./playground": {
|
|
129
|
+
"import": {
|
|
130
|
+
"types": "./dist/playground/index.d.ts",
|
|
131
|
+
"default": "./dist/playground/index.js"
|
|
132
|
+
},
|
|
133
|
+
"require": {
|
|
134
|
+
"types": "./dist/playground/index.d.cts",
|
|
135
|
+
"default": "./dist/playground/index.cjs"
|
|
136
|
+
}
|
|
137
|
+
},
|
|
128
138
|
"./realtime": {
|
|
129
139
|
"import": {
|
|
130
140
|
"types": "./dist/realtime/index.d.ts",
|
|
@@ -176,5 +186,5 @@
|
|
|
176
186
|
}
|
|
177
187
|
}
|
|
178
188
|
},
|
|
179
|
-
"sdkContentHash": "sha256:
|
|
189
|
+
"sdkContentHash": "sha256:8f98422296b68ebf4a88df0fb39de5aba8574bb11334253921d0a36c8220d1c1"
|
|
180
190
|
}
|
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
// AUTOGENERATED by scripts/generate.ts — do not edit.
|
|
2
2
|
export * from './queryOptions.gen';
|
|
3
|
-
export type { AnalyticsCatalogGetInput, AnalyticsCatalogGetOutput, AnalyticsDashboardCreateInput, AnalyticsDashboardCreateOutput, AnalyticsDashboardDeleteInput, AnalyticsDashboardDeleteOutput, AnalyticsDashboardGetInput, AnalyticsDashboardGetOutput, AnalyticsDashboardListInput, AnalyticsDashboardListOutput, AnalyticsDashboardRunInput, AnalyticsDashboardRunOutput, AnalyticsDashboardUpdateInput, AnalyticsDashboardUpdateOutput, AnalyticsFunnelRunInput, AnalyticsFunnelRunOutput, AnalyticsInsightCreateInput, AnalyticsInsightCreateOutput, AnalyticsInsightDeleteInput, AnalyticsInsightDeleteOutput, AnalyticsInsightGetInput, AnalyticsInsightGetOutput, AnalyticsInsightListInput, AnalyticsInsightListOutput, AnalyticsInsightRunInput, AnalyticsInsightRunOutput, AnalyticsInsightUpdateInput, AnalyticsInsightUpdateOutput, AnalyticsMetricQueryInput, AnalyticsMetricQueryOutput, AnalyticsPersonTimelineInput, AnalyticsPersonTimelineOutput, AnalyticsQueryRunInput, AnalyticsQueryRunOutput } from '../types.gen';
|
|
3
|
+
export type { AnalyticsCatalogGetInput, AnalyticsCatalogGetOutput, AnalyticsDashboardCreateInput, AnalyticsDashboardCreateOutput, AnalyticsDashboardDeleteInput, AnalyticsDashboardDeleteOutput, AnalyticsDashboardGetInput, AnalyticsDashboardGetOutput, AnalyticsDashboardListInput, AnalyticsDashboardListOutput, AnalyticsDashboardRunInput, AnalyticsDashboardRunOutput, AnalyticsDashboardUpdateInput, AnalyticsDashboardUpdateOutput, AnalyticsFunnelRunInput, AnalyticsFunnelRunOutput, AnalyticsInsightCreateInput, AnalyticsInsightCreateOutput, AnalyticsInsightDeleteInput, AnalyticsInsightDeleteOutput, AnalyticsInsightGetInput, AnalyticsInsightGetOutput, AnalyticsInsightListInput, AnalyticsInsightListOutput, AnalyticsInsightRunInput, AnalyticsInsightRunOutput, AnalyticsInsightUpdateInput, AnalyticsInsightUpdateOutput, AnalyticsMetricQueryInput, AnalyticsMetricQueryOutput, AnalyticsPersonTimelineInput, AnalyticsPersonTimelineOutput, AnalyticsQueryRunInput, AnalyticsQueryRunOutput, AnalyticsRetentionRunInput, AnalyticsRetentionRunOutput } from '../types.gen';
|
|
@@ -29,6 +29,8 @@ import type {
|
|
|
29
29
|
AnalyticsPersonTimelineOutput,
|
|
30
30
|
AnalyticsQueryRunInput,
|
|
31
31
|
AnalyticsQueryRunOutput,
|
|
32
|
+
AnalyticsRetentionRunInput,
|
|
33
|
+
AnalyticsRetentionRunOutput,
|
|
32
34
|
} from '../types.gen';
|
|
33
35
|
|
|
34
36
|
export const analyticsCatalogGetQueryOptions = (sdk: GeneratedClient, input: AnalyticsCatalogGetInput) => ({
|
|
@@ -115,3 +117,8 @@ export const analyticsQueryRunQueryOptions = (sdk: GeneratedClient, input: Analy
|
|
|
115
117
|
queryKey: ['analytics', 'query', 'run', input] as const,
|
|
116
118
|
queryFn: () => sdk['analytics']['query']['run'](input),
|
|
117
119
|
});
|
|
120
|
+
|
|
121
|
+
export const analyticsRetentionRunQueryOptions = (sdk: GeneratedClient, input: AnalyticsRetentionRunInput) => ({
|
|
122
|
+
queryKey: ['analytics', 'retention', 'run', input] as const,
|
|
123
|
+
queryFn: () => sdk['analytics']['retention']['run'](input),
|
|
124
|
+
});
|
package/src/gen/bindings.gen.ts
CHANGED
|
@@ -381,6 +381,51 @@ export const bindings: BindingsMap = {
|
|
|
381
381
|
"path": "/analytics/query",
|
|
382
382
|
"readOnly": true
|
|
383
383
|
}
|
|
384
|
+
},
|
|
385
|
+
"retention": {
|
|
386
|
+
"run": {
|
|
387
|
+
"method": "POST",
|
|
388
|
+
"params": [
|
|
389
|
+
{
|
|
390
|
+
"in": "body",
|
|
391
|
+
"name": "entity"
|
|
392
|
+
},
|
|
393
|
+
{
|
|
394
|
+
"in": "body",
|
|
395
|
+
"name": "subject"
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"in": "body",
|
|
399
|
+
"name": "cohort"
|
|
400
|
+
},
|
|
401
|
+
{
|
|
402
|
+
"in": "body",
|
|
403
|
+
"name": "return"
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"in": "body",
|
|
407
|
+
"name": "day"
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
"in": "body",
|
|
411
|
+
"name": "return_window_days"
|
|
412
|
+
},
|
|
413
|
+
{
|
|
414
|
+
"in": "body",
|
|
415
|
+
"name": "from"
|
|
416
|
+
},
|
|
417
|
+
{
|
|
418
|
+
"in": "body",
|
|
419
|
+
"name": "to"
|
|
420
|
+
},
|
|
421
|
+
{
|
|
422
|
+
"in": "body",
|
|
423
|
+
"name": "grain"
|
|
424
|
+
}
|
|
425
|
+
],
|
|
426
|
+
"path": "/analytics/retention/run",
|
|
427
|
+
"readOnly": true
|
|
428
|
+
}
|
|
384
429
|
}
|
|
385
430
|
},
|
|
386
431
|
"brain": {
|
|
@@ -1049,19 +1094,6 @@ export const bindings: BindingsMap = {
|
|
|
1049
1094
|
"path": "/brain/restores/:restoreId",
|
|
1050
1095
|
"readOnly": true
|
|
1051
1096
|
}
|
|
1052
|
-
},
|
|
1053
|
-
"usage": {
|
|
1054
|
-
"report": {
|
|
1055
|
-
"method": "GET",
|
|
1056
|
-
"params": [
|
|
1057
|
-
{
|
|
1058
|
-
"in": "query",
|
|
1059
|
-
"name": "days"
|
|
1060
|
-
}
|
|
1061
|
-
],
|
|
1062
|
-
"path": "/brain/usage/report",
|
|
1063
|
-
"readOnly": true
|
|
1064
|
-
}
|
|
1065
1097
|
}
|
|
1066
1098
|
},
|
|
1067
1099
|
"consent": {
|
|
@@ -1967,39 +1999,6 @@ export const bindings: BindingsMap = {
|
|
|
1967
1999
|
"readOnly": true
|
|
1968
2000
|
}
|
|
1969
2001
|
},
|
|
1970
|
-
"audit": {
|
|
1971
|
-
"list": {
|
|
1972
|
-
"method": "GET",
|
|
1973
|
-
"params": [
|
|
1974
|
-
{
|
|
1975
|
-
"in": "path",
|
|
1976
|
-
"name": "environmentId"
|
|
1977
|
-
},
|
|
1978
|
-
{
|
|
1979
|
-
"in": "query",
|
|
1980
|
-
"name": "entityType"
|
|
1981
|
-
},
|
|
1982
|
-
{
|
|
1983
|
-
"in": "query",
|
|
1984
|
-
"name": "action"
|
|
1985
|
-
},
|
|
1986
|
-
{
|
|
1987
|
-
"in": "query",
|
|
1988
|
-
"name": "actorId"
|
|
1989
|
-
},
|
|
1990
|
-
{
|
|
1991
|
-
"in": "query",
|
|
1992
|
-
"name": "serviceId"
|
|
1993
|
-
},
|
|
1994
|
-
{
|
|
1995
|
-
"in": "query",
|
|
1996
|
-
"name": "limit"
|
|
1997
|
-
}
|
|
1998
|
-
],
|
|
1999
|
-
"path": "/deployment/environments/:environmentId/audit",
|
|
2000
|
-
"readOnly": true
|
|
2001
|
-
}
|
|
2002
|
-
},
|
|
2003
2002
|
"build": {
|
|
2004
2003
|
"get": {
|
|
2005
2004
|
"method": "GET",
|
|
@@ -2695,6 +2694,57 @@ export const bindings: BindingsMap = {
|
|
|
2695
2694
|
"readOnly": true
|
|
2696
2695
|
}
|
|
2697
2696
|
},
|
|
2697
|
+
"job": {
|
|
2698
|
+
"run": {
|
|
2699
|
+
"method": "POST",
|
|
2700
|
+
"params": [
|
|
2701
|
+
{
|
|
2702
|
+
"in": "path",
|
|
2703
|
+
"name": "serviceId"
|
|
2704
|
+
}
|
|
2705
|
+
],
|
|
2706
|
+
"path": "/deployment/services/:serviceId/runs",
|
|
2707
|
+
"readOnly": false
|
|
2708
|
+
}
|
|
2709
|
+
},
|
|
2710
|
+
"job-run": {
|
|
2711
|
+
"logs": {
|
|
2712
|
+
"method": "GET",
|
|
2713
|
+
"params": [
|
|
2714
|
+
{
|
|
2715
|
+
"in": "path",
|
|
2716
|
+
"name": "serviceId"
|
|
2717
|
+
},
|
|
2718
|
+
{
|
|
2719
|
+
"in": "path",
|
|
2720
|
+
"name": "runId"
|
|
2721
|
+
}
|
|
2722
|
+
],
|
|
2723
|
+
"path": "/deployment/services/:serviceId/runs/:runId/logs",
|
|
2724
|
+
"readOnly": true
|
|
2725
|
+
}
|
|
2726
|
+
},
|
|
2727
|
+
"job-runs": {
|
|
2728
|
+
"list": {
|
|
2729
|
+
"method": "GET",
|
|
2730
|
+
"params": [
|
|
2731
|
+
{
|
|
2732
|
+
"in": "path",
|
|
2733
|
+
"name": "serviceId"
|
|
2734
|
+
},
|
|
2735
|
+
{
|
|
2736
|
+
"in": "query",
|
|
2737
|
+
"name": "limit"
|
|
2738
|
+
},
|
|
2739
|
+
{
|
|
2740
|
+
"in": "query",
|
|
2741
|
+
"name": "cursor"
|
|
2742
|
+
}
|
|
2743
|
+
],
|
|
2744
|
+
"path": "/deployment/services/:serviceId/runs",
|
|
2745
|
+
"readOnly": true
|
|
2746
|
+
}
|
|
2747
|
+
},
|
|
2698
2748
|
"managed-service": {
|
|
2699
2749
|
"backup": {
|
|
2700
2750
|
"method": "POST",
|
|
@@ -3022,6 +3072,26 @@ export const bindings: BindingsMap = {
|
|
|
3022
3072
|
{
|
|
3023
3073
|
"in": "body",
|
|
3024
3074
|
"name": "canvas"
|
|
3075
|
+
},
|
|
3076
|
+
{
|
|
3077
|
+
"in": "body",
|
|
3078
|
+
"name": "mode"
|
|
3079
|
+
},
|
|
3080
|
+
{
|
|
3081
|
+
"in": "body",
|
|
3082
|
+
"name": "schedule"
|
|
3083
|
+
},
|
|
3084
|
+
{
|
|
3085
|
+
"in": "body",
|
|
3086
|
+
"name": "command"
|
|
3087
|
+
},
|
|
3088
|
+
{
|
|
3089
|
+
"in": "body",
|
|
3090
|
+
"name": "jobTimeoutSec"
|
|
3091
|
+
},
|
|
3092
|
+
{
|
|
3093
|
+
"in": "body",
|
|
3094
|
+
"name": "jobConcurrency"
|
|
3025
3095
|
}
|
|
3026
3096
|
],
|
|
3027
3097
|
"path": "/deployment/environments/:environmentId/services",
|
|
@@ -3197,6 +3267,30 @@ export const bindings: BindingsMap = {
|
|
|
3197
3267
|
"in": "body",
|
|
3198
3268
|
"name": "autoDeploy"
|
|
3199
3269
|
},
|
|
3270
|
+
{
|
|
3271
|
+
"in": "body",
|
|
3272
|
+
"name": "schedule"
|
|
3273
|
+
},
|
|
3274
|
+
{
|
|
3275
|
+
"in": "body",
|
|
3276
|
+
"name": "scheduleSuspended"
|
|
3277
|
+
},
|
|
3278
|
+
{
|
|
3279
|
+
"in": "body",
|
|
3280
|
+
"name": "command"
|
|
3281
|
+
},
|
|
3282
|
+
{
|
|
3283
|
+
"in": "body",
|
|
3284
|
+
"name": "jobTimeoutSec"
|
|
3285
|
+
},
|
|
3286
|
+
{
|
|
3287
|
+
"in": "body",
|
|
3288
|
+
"name": "jobConcurrency"
|
|
3289
|
+
},
|
|
3290
|
+
{
|
|
3291
|
+
"in": "body",
|
|
3292
|
+
"name": "mode"
|
|
3293
|
+
},
|
|
3200
3294
|
{
|
|
3201
3295
|
"in": "path",
|
|
3202
3296
|
"name": "id"
|
|
@@ -6048,6 +6142,110 @@ export const bindings: BindingsMap = {
|
|
|
6048
6142
|
}
|
|
6049
6143
|
}
|
|
6050
6144
|
},
|
|
6145
|
+
"playground": {
|
|
6146
|
+
"analytics": {
|
|
6147
|
+
"overview": {
|
|
6148
|
+
"method": "POST",
|
|
6149
|
+
"params": [
|
|
6150
|
+
{
|
|
6151
|
+
"in": "body",
|
|
6152
|
+
"name": "limit"
|
|
6153
|
+
}
|
|
6154
|
+
],
|
|
6155
|
+
"path": "/playground/analytics/overview",
|
|
6156
|
+
"readOnly": true
|
|
6157
|
+
}
|
|
6158
|
+
},
|
|
6159
|
+
"billing": {
|
|
6160
|
+
"entitlements": {
|
|
6161
|
+
"method": "POST",
|
|
6162
|
+
"path": "/playground/billing/entitlements",
|
|
6163
|
+
"readOnly": true
|
|
6164
|
+
},
|
|
6165
|
+
"record-usage": {
|
|
6166
|
+
"method": "POST",
|
|
6167
|
+
"params": [
|
|
6168
|
+
{
|
|
6169
|
+
"in": "body",
|
|
6170
|
+
"name": "value"
|
|
6171
|
+
}
|
|
6172
|
+
],
|
|
6173
|
+
"path": "/playground/billing/usage",
|
|
6174
|
+
"readOnly": false
|
|
6175
|
+
}
|
|
6176
|
+
},
|
|
6177
|
+
"clickup": {
|
|
6178
|
+
"create-task": {
|
|
6179
|
+
"method": "POST",
|
|
6180
|
+
"params": [
|
|
6181
|
+
{
|
|
6182
|
+
"in": "body",
|
|
6183
|
+
"name": "listId"
|
|
6184
|
+
},
|
|
6185
|
+
{
|
|
6186
|
+
"in": "body",
|
|
6187
|
+
"name": "name"
|
|
6188
|
+
}
|
|
6189
|
+
],
|
|
6190
|
+
"path": "/playground/clickup/tasks",
|
|
6191
|
+
"readOnly": false
|
|
6192
|
+
},
|
|
6193
|
+
"get-last-webhook": {
|
|
6194
|
+
"method": "GET",
|
|
6195
|
+
"path": "/playground/clickup/webhooks/last",
|
|
6196
|
+
"readOnly": true
|
|
6197
|
+
},
|
|
6198
|
+
"get-overview": {
|
|
6199
|
+
"method": "GET",
|
|
6200
|
+
"path": "/playground/clickup/overview",
|
|
6201
|
+
"readOnly": true
|
|
6202
|
+
}
|
|
6203
|
+
},
|
|
6204
|
+
"gdrive": {
|
|
6205
|
+
"get-last-change": {
|
|
6206
|
+
"method": "GET",
|
|
6207
|
+
"path": "/playground/gdrive/changes/last",
|
|
6208
|
+
"readOnly": true
|
|
6209
|
+
},
|
|
6210
|
+
"read-file": {
|
|
6211
|
+
"method": "POST",
|
|
6212
|
+
"params": [
|
|
6213
|
+
{
|
|
6214
|
+
"in": "body",
|
|
6215
|
+
"name": "fileId"
|
|
6216
|
+
}
|
|
6217
|
+
],
|
|
6218
|
+
"path": "/playground/gdrive/file",
|
|
6219
|
+
"readOnly": true
|
|
6220
|
+
}
|
|
6221
|
+
},
|
|
6222
|
+
"googleads": {
|
|
6223
|
+
"read-customer": {
|
|
6224
|
+
"method": "POST",
|
|
6225
|
+
"path": "/playground/googleads/customer",
|
|
6226
|
+
"readOnly": true
|
|
6227
|
+
}
|
|
6228
|
+
},
|
|
6229
|
+
"lifecycle": {
|
|
6230
|
+
"get-state": {
|
|
6231
|
+
"method": "GET",
|
|
6232
|
+
"path": "/playground/lifecycle/state",
|
|
6233
|
+
"readOnly": true
|
|
6234
|
+
},
|
|
6235
|
+
"list-events": {
|
|
6236
|
+
"method": "GET",
|
|
6237
|
+
"path": "/playground/lifecycle/events",
|
|
6238
|
+
"readOnly": true
|
|
6239
|
+
}
|
|
6240
|
+
},
|
|
6241
|
+
"webhook": {
|
|
6242
|
+
"get-last": {
|
|
6243
|
+
"method": "GET",
|
|
6244
|
+
"path": "/playground/webhooks/last",
|
|
6245
|
+
"readOnly": true
|
|
6246
|
+
}
|
|
6247
|
+
}
|
|
6248
|
+
},
|
|
6051
6249
|
"realtime": {
|
|
6052
6250
|
"archive": {
|
|
6053
6251
|
"export": {
|
|
@@ -8911,4 +9109,12 @@ export const bindings: BindingsMap = {
|
|
|
8911
9109
|
}
|
|
8912
9110
|
};
|
|
8913
9111
|
|
|
8914
|
-
export const wsBindings: WsBindingsMap = {
|
|
9112
|
+
export const wsBindings: WsBindingsMap = {
|
|
9113
|
+
"playground": {
|
|
9114
|
+
"ws": {
|
|
9115
|
+
"echo": {
|
|
9116
|
+
"path": "/playground/ws/echo"
|
|
9117
|
+
}
|
|
9118
|
+
}
|
|
9119
|
+
}
|
|
9120
|
+
};
|
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, BrainKnowledgeEntityMemoriesInput, BrainKnowledgeEntityMemoriesOutput, BrainKnowledgeGraphInput, BrainKnowledgeGraphOutput, BrainKnowledgeNeighborhoodInput, BrainKnowledgeNeighborhoodOutput, BrainKnowledgeRelationsInput, BrainKnowledgeRelationsOutput, BrainKnowledgeSearchInput, BrainKnowledgeSearchOutput, BrainMemoryAddInput, BrainMemoryAddOutput, BrainMemoryDeleteInput, BrainMemoryDeleteOutput, BrainMemoryGetInput, BrainMemoryGetOutput, BrainMemoryListInput, BrainMemoryListOutput, BrainMemorySearchInput, BrainMemorySearchOutput, BrainMemoryStatsInput, BrainMemoryStatsOutput, BrainMemoryUpdateInput, BrainMemoryUpdateOutput, BrainProductSharedMemoryResetInput, BrainProductSharedMemoryResetOutput, BrainRestoreStatusInput, BrainRestoreStatusOutput
|
|
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, BrainKnowledgeEntityMemoriesInput, BrainKnowledgeEntityMemoriesOutput, BrainKnowledgeGraphInput, BrainKnowledgeGraphOutput, 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';
|
|
@@ -68,8 +68,6 @@ import type {
|
|
|
68
68
|
BrainProductSharedMemoryResetInput,
|
|
69
69
|
BrainRestoreStatusInput,
|
|
70
70
|
BrainRestoreStatusOutput,
|
|
71
|
-
BrainUsageReportInput,
|
|
72
|
-
BrainUsageReportOutput,
|
|
73
71
|
} from '../types.gen';
|
|
74
72
|
|
|
75
73
|
export const brainBackupCreateMutationOptions = (sdk: GeneratedClient) => ({
|
|
@@ -271,8 +269,3 @@ export const brainRestoreStatusQueryOptions = (sdk: GeneratedClient, input: Brai
|
|
|
271
269
|
queryKey: ['brain', 'restore', 'status', input] as const,
|
|
272
270
|
queryFn: () => sdk['brain']['restore']['status'](input),
|
|
273
271
|
});
|
|
274
|
-
|
|
275
|
-
export const brainUsageReportQueryOptions = (sdk: GeneratedClient, input: BrainUsageReportInput) => ({
|
|
276
|
-
queryKey: ['brain', 'usage', 'report', input] as const,
|
|
277
|
-
queryFn: () => sdk['brain']['usage']['report'](input),
|
|
278
|
-
});
|
package/src/gen/client.gen.ts
CHANGED
|
@@ -34,6 +34,8 @@ import type {
|
|
|
34
34
|
AnalyticsPersonTimelineOutput,
|
|
35
35
|
AnalyticsQueryRunInput,
|
|
36
36
|
AnalyticsQueryRunOutput,
|
|
37
|
+
AnalyticsRetentionRunInput,
|
|
38
|
+
AnalyticsRetentionRunOutput,
|
|
37
39
|
BrainBackupCreateInput,
|
|
38
40
|
BrainBackupCreateOutput,
|
|
39
41
|
BrainBackupRestoreInput,
|
|
@@ -114,8 +116,6 @@ import type {
|
|
|
114
116
|
BrainProductSharedMemoryResetOutput,
|
|
115
117
|
BrainRestoreStatusInput,
|
|
116
118
|
BrainRestoreStatusOutput,
|
|
117
|
-
BrainUsageReportInput,
|
|
118
|
-
BrainUsageReportOutput,
|
|
119
119
|
ConsentConfigCookieDomainUpsertInput,
|
|
120
120
|
ConsentConfigCookieDomainUpsertOutput,
|
|
121
121
|
ConsentConfigCustomizationUpsertInput,
|
|
@@ -220,8 +220,6 @@ import type {
|
|
|
220
220
|
DeploymentAlertUpdateOutput,
|
|
221
221
|
DeploymentAnalyticsQueryInput,
|
|
222
222
|
DeploymentAnalyticsQueryOutput,
|
|
223
|
-
DeploymentAuditListInput,
|
|
224
|
-
DeploymentAuditListOutput,
|
|
225
223
|
DeploymentBuildGetInput,
|
|
226
224
|
DeploymentBuildGetOutput,
|
|
227
225
|
DeploymentBuildListInput,
|
|
@@ -312,6 +310,12 @@ import type {
|
|
|
312
310
|
DeploymentEventsListByEnvironmentOutput,
|
|
313
311
|
DeploymentEventsListByServiceInput,
|
|
314
312
|
DeploymentEventsListByServiceOutput,
|
|
313
|
+
DeploymentJobRunInput,
|
|
314
|
+
DeploymentJobRunLogsInput,
|
|
315
|
+
DeploymentJobRunLogsOutput,
|
|
316
|
+
DeploymentJobRunOutput,
|
|
317
|
+
DeploymentJobRunsListInput,
|
|
318
|
+
DeploymentJobRunsListOutput,
|
|
315
319
|
DeploymentManagedServiceBackupInput,
|
|
316
320
|
DeploymentManagedServiceBackupListInput,
|
|
317
321
|
DeploymentManagedServiceBackupListOutput,
|
|
@@ -736,6 +740,30 @@ import type {
|
|
|
736
740
|
OrganizationSupportThreadReplyOutput,
|
|
737
741
|
OrganizationSupportThreadsListInput,
|
|
738
742
|
OrganizationSupportThreadsListOutput,
|
|
743
|
+
PlaygroundAnalyticsOverviewInput,
|
|
744
|
+
PlaygroundAnalyticsOverviewOutput,
|
|
745
|
+
PlaygroundBillingEntitlementsInput,
|
|
746
|
+
PlaygroundBillingEntitlementsOutput,
|
|
747
|
+
PlaygroundBillingRecordUsageInput,
|
|
748
|
+
PlaygroundBillingRecordUsageOutput,
|
|
749
|
+
PlaygroundClickupCreateTaskInput,
|
|
750
|
+
PlaygroundClickupCreateTaskOutput,
|
|
751
|
+
PlaygroundClickupGetLastWebhookInput,
|
|
752
|
+
PlaygroundClickupGetLastWebhookOutput,
|
|
753
|
+
PlaygroundClickupGetOverviewInput,
|
|
754
|
+
PlaygroundClickupGetOverviewOutput,
|
|
755
|
+
PlaygroundGdriveGetLastChangeInput,
|
|
756
|
+
PlaygroundGdriveGetLastChangeOutput,
|
|
757
|
+
PlaygroundGdriveReadFileInput,
|
|
758
|
+
PlaygroundGdriveReadFileOutput,
|
|
759
|
+
PlaygroundGoogleadsReadCustomerInput,
|
|
760
|
+
PlaygroundGoogleadsReadCustomerOutput,
|
|
761
|
+
PlaygroundLifecycleGetStateInput,
|
|
762
|
+
PlaygroundLifecycleGetStateOutput,
|
|
763
|
+
PlaygroundLifecycleListEventsInput,
|
|
764
|
+
PlaygroundLifecycleListEventsOutput,
|
|
765
|
+
PlaygroundWebhookGetLastInput,
|
|
766
|
+
PlaygroundWebhookGetLastOutput,
|
|
739
767
|
RealtimeArchiveExportInput,
|
|
740
768
|
RealtimeArchiveExportOutput,
|
|
741
769
|
RealtimeArchiveExportStatusInput,
|
|
@@ -1089,6 +1117,9 @@ export interface GeneratedClient {
|
|
|
1089
1117
|
query: {
|
|
1090
1118
|
run(input: AnalyticsQueryRunInput): Promise<AnalyticsQueryRunOutput>;
|
|
1091
1119
|
};
|
|
1120
|
+
retention: {
|
|
1121
|
+
run(input: AnalyticsRetentionRunInput): Promise<AnalyticsRetentionRunOutput>;
|
|
1122
|
+
};
|
|
1092
1123
|
};
|
|
1093
1124
|
brain: {
|
|
1094
1125
|
backup: {
|
|
@@ -1171,9 +1202,6 @@ export interface GeneratedClient {
|
|
|
1171
1202
|
restore: {
|
|
1172
1203
|
status(input: BrainRestoreStatusInput): Promise<BrainRestoreStatusOutput>;
|
|
1173
1204
|
};
|
|
1174
|
-
usage: {
|
|
1175
|
-
report(input: BrainUsageReportInput): Promise<BrainUsageReportOutput>;
|
|
1176
|
-
};
|
|
1177
1205
|
};
|
|
1178
1206
|
consent: {
|
|
1179
1207
|
'config-cookie-domain': {
|
|
@@ -1280,9 +1308,6 @@ export interface GeneratedClient {
|
|
|
1280
1308
|
analytics: {
|
|
1281
1309
|
query(input: DeploymentAnalyticsQueryInput): Promise<DeploymentAnalyticsQueryOutput>;
|
|
1282
1310
|
};
|
|
1283
|
-
audit: {
|
|
1284
|
-
list(input: DeploymentAuditListInput): Promise<DeploymentAuditListOutput>;
|
|
1285
|
-
};
|
|
1286
1311
|
build: {
|
|
1287
1312
|
get(input: DeploymentBuildGetInput): Promise<DeploymentBuildGetOutput>;
|
|
1288
1313
|
list(input: DeploymentBuildListInput): Promise<DeploymentBuildListOutput>;
|
|
@@ -1360,6 +1385,15 @@ export interface GeneratedClient {
|
|
|
1360
1385
|
environment(input: DeploymentEventsListByEnvironmentInput): Promise<DeploymentEventsListByEnvironmentOutput>;
|
|
1361
1386
|
service(input: DeploymentEventsListByServiceInput): Promise<DeploymentEventsListByServiceOutput>;
|
|
1362
1387
|
};
|
|
1388
|
+
job: {
|
|
1389
|
+
run(input: DeploymentJobRunInput): Promise<DeploymentJobRunOutput>;
|
|
1390
|
+
};
|
|
1391
|
+
'job-run': {
|
|
1392
|
+
logs(input: DeploymentJobRunLogsInput): Promise<DeploymentJobRunLogsOutput>;
|
|
1393
|
+
};
|
|
1394
|
+
'job-runs': {
|
|
1395
|
+
list(input: DeploymentJobRunsListInput): Promise<DeploymentJobRunsListOutput>;
|
|
1396
|
+
};
|
|
1363
1397
|
'managed-service': {
|
|
1364
1398
|
backup(input: DeploymentManagedServiceBackupInput): Promise<DeploymentManagedServiceBackupOutput>;
|
|
1365
1399
|
delete(input: DeploymentManagedServiceDeleteInput): Promise<DeploymentManagedServiceDeleteOutput>;
|
|
@@ -1713,6 +1747,34 @@ export interface GeneratedClient {
|
|
|
1713
1747
|
list(input: OrganizationSupportThreadsListInput): Promise<OrganizationSupportThreadsListOutput>;
|
|
1714
1748
|
};
|
|
1715
1749
|
};
|
|
1750
|
+
playground: {
|
|
1751
|
+
analytics: {
|
|
1752
|
+
overview(input: PlaygroundAnalyticsOverviewInput): Promise<PlaygroundAnalyticsOverviewOutput>;
|
|
1753
|
+
};
|
|
1754
|
+
billing: {
|
|
1755
|
+
entitlements(input: PlaygroundBillingEntitlementsInput): Promise<PlaygroundBillingEntitlementsOutput>;
|
|
1756
|
+
'record-usage'(input: PlaygroundBillingRecordUsageInput): Promise<PlaygroundBillingRecordUsageOutput>;
|
|
1757
|
+
};
|
|
1758
|
+
clickup: {
|
|
1759
|
+
'create-task'(input: PlaygroundClickupCreateTaskInput): Promise<PlaygroundClickupCreateTaskOutput>;
|
|
1760
|
+
'get-last-webhook'(input: PlaygroundClickupGetLastWebhookInput): Promise<PlaygroundClickupGetLastWebhookOutput>;
|
|
1761
|
+
'get-overview'(input: PlaygroundClickupGetOverviewInput): Promise<PlaygroundClickupGetOverviewOutput>;
|
|
1762
|
+
};
|
|
1763
|
+
gdrive: {
|
|
1764
|
+
'get-last-change'(input: PlaygroundGdriveGetLastChangeInput): Promise<PlaygroundGdriveGetLastChangeOutput>;
|
|
1765
|
+
'read-file'(input: PlaygroundGdriveReadFileInput): Promise<PlaygroundGdriveReadFileOutput>;
|
|
1766
|
+
};
|
|
1767
|
+
googleads: {
|
|
1768
|
+
'read-customer'(input: PlaygroundGoogleadsReadCustomerInput): Promise<PlaygroundGoogleadsReadCustomerOutput>;
|
|
1769
|
+
};
|
|
1770
|
+
lifecycle: {
|
|
1771
|
+
'get-state'(input: PlaygroundLifecycleGetStateInput): Promise<PlaygroundLifecycleGetStateOutput>;
|
|
1772
|
+
'list-events'(input: PlaygroundLifecycleListEventsInput): Promise<PlaygroundLifecycleListEventsOutput>;
|
|
1773
|
+
};
|
|
1774
|
+
webhook: {
|
|
1775
|
+
'get-last'(input: PlaygroundWebhookGetLastInput): Promise<PlaygroundWebhookGetLastOutput>;
|
|
1776
|
+
};
|
|
1777
|
+
};
|
|
1716
1778
|
realtime: {
|
|
1717
1779
|
archive: {
|
|
1718
1780
|
export(input: RealtimeArchiveExportInput): Promise<RealtimeArchiveExportOutput>;
|