@lessly/sdk-app 56.0.0 → 58.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.
Files changed (42) hide show
  1. package/dist/_types/gen/brain/index.d.ts +1 -1
  2. package/dist/_types/gen/brain/queryOptions.gen.d.ts +1 -5
  3. package/dist/_types/gen/client.gen.d.ts +38 -7
  4. package/dist/_types/gen/deployment/index.d.ts +1 -1
  5. package/dist/_types/gen/deployment/queryOptions.gen.d.ts +13 -5
  6. package/dist/_types/gen/manifest.gen.d.ts +1 -1
  7. package/dist/_types/gen/playground/connect.gen.d.ts +3 -0
  8. package/dist/_types/gen/playground/index.d.ts +3 -0
  9. package/dist/_types/gen/playground/queryOptions.gen.d.ts +50 -0
  10. package/dist/_types/gen/types.gen.d.ts +364 -113
  11. package/dist/brain/index.cjs +0 -5
  12. package/dist/brain/index.cjs.map +1 -1
  13. package/dist/brain/index.js +1 -5
  14. package/dist/brain/index.js.map +1 -1
  15. package/dist/chunk-4RJR4UQ3.js +9121 -0
  16. package/dist/chunk-4RJR4UQ3.js.map +1 -0
  17. package/dist/deployment/index.cjs +15 -5
  18. package/dist/deployment/index.cjs.map +1 -1
  19. package/dist/deployment/index.js +13 -5
  20. package/dist/deployment/index.js.map +1 -1
  21. package/dist/index.cjs +199 -46
  22. package/dist/index.cjs.map +1 -1
  23. package/dist/index.js +2 -8956
  24. package/dist/index.js.map +1 -1
  25. package/dist/playground/index.cjs +81 -0
  26. package/dist/playground/index.cjs.map +1 -0
  27. package/dist/playground/index.d.cts +1 -0
  28. package/dist/playground/index.d.ts +1 -0
  29. package/dist/playground/index.js +58 -0
  30. package/dist/playground/index.js.map +1 -0
  31. package/package.json +12 -2
  32. package/src/gen/bindings.gen.ts +208 -47
  33. package/src/gen/brain/index.ts +1 -1
  34. package/src/gen/brain/queryOptions.gen.ts +0 -7
  35. package/src/gen/client.gen.ts +67 -10
  36. package/src/gen/deployment/index.ts +1 -1
  37. package/src/gen/deployment/queryOptions.gen.ts +20 -7
  38. package/src/gen/manifest.gen.ts +1 -1
  39. package/src/gen/playground/connect.gen.ts +9 -0
  40. package/src/gen/playground/index.ts +4 -0
  41. package/src/gen/playground/queryOptions.gen.ts +86 -0
  42. package/src/gen/types.gen.ts +405 -117
@@ -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": "56.0.0",
3
+ "version": "58.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:1a1fc22b02bb43b6d22d444dfb6e9760ee4e22b44ce62569ccac421ae6e0fee3"
189
+ "sdkContentHash": "sha256:44edf492f687e563fd055f9ba9e61b59b94eae901f99abaeae2cd61b82c106d1"
180
190
  }
@@ -1094,19 +1094,6 @@ export const bindings: BindingsMap = {
1094
1094
  "path": "/brain/restores/:restoreId",
1095
1095
  "readOnly": true
1096
1096
  }
1097
- },
1098
- "usage": {
1099
- "report": {
1100
- "method": "GET",
1101
- "params": [
1102
- {
1103
- "in": "query",
1104
- "name": "days"
1105
- }
1106
- ],
1107
- "path": "/brain/usage/report",
1108
- "readOnly": true
1109
- }
1110
1097
  }
1111
1098
  },
1112
1099
  "consent": {
@@ -2012,39 +1999,6 @@ export const bindings: BindingsMap = {
2012
1999
  "readOnly": true
2013
2000
  }
2014
2001
  },
2015
- "audit": {
2016
- "list": {
2017
- "method": "GET",
2018
- "params": [
2019
- {
2020
- "in": "path",
2021
- "name": "environmentId"
2022
- },
2023
- {
2024
- "in": "query",
2025
- "name": "entityType"
2026
- },
2027
- {
2028
- "in": "query",
2029
- "name": "action"
2030
- },
2031
- {
2032
- "in": "query",
2033
- "name": "actorId"
2034
- },
2035
- {
2036
- "in": "query",
2037
- "name": "serviceId"
2038
- },
2039
- {
2040
- "in": "query",
2041
- "name": "limit"
2042
- }
2043
- ],
2044
- "path": "/deployment/environments/:environmentId/audit",
2045
- "readOnly": true
2046
- }
2047
- },
2048
2002
  "build": {
2049
2003
  "get": {
2050
2004
  "method": "GET",
@@ -2740,6 +2694,57 @@ export const bindings: BindingsMap = {
2740
2694
  "readOnly": true
2741
2695
  }
2742
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
+ },
2743
2748
  "managed-service": {
2744
2749
  "backup": {
2745
2750
  "method": "POST",
@@ -3067,6 +3072,26 @@ export const bindings: BindingsMap = {
3067
3072
  {
3068
3073
  "in": "body",
3069
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"
3070
3095
  }
3071
3096
  ],
3072
3097
  "path": "/deployment/environments/:environmentId/services",
@@ -3242,6 +3267,30 @@ export const bindings: BindingsMap = {
3242
3267
  "in": "body",
3243
3268
  "name": "autoDeploy"
3244
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
+ },
3245
3294
  {
3246
3295
  "in": "path",
3247
3296
  "name": "id"
@@ -6093,6 +6142,110 @@ export const bindings: BindingsMap = {
6093
6142
  }
6094
6143
  }
6095
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
+ },
6096
6249
  "realtime": {
6097
6250
  "archive": {
6098
6251
  "export": {
@@ -8956,4 +9109,12 @@ export const bindings: BindingsMap = {
8956
9109
  }
8957
9110
  };
8958
9111
 
8959
- export const wsBindings: WsBindingsMap = {};
9112
+ export const wsBindings: WsBindingsMap = {
9113
+ "playground": {
9114
+ "ws": {
9115
+ "echo": {
9116
+ "path": "/playground/ws/echo"
9117
+ }
9118
+ }
9119
+ }
9120
+ };
@@ -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, BrainUsageReportInput, BrainUsageReportOutput } from '../types.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 } 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
- });
@@ -116,8 +116,6 @@ import type {
116
116
  BrainProductSharedMemoryResetOutput,
117
117
  BrainRestoreStatusInput,
118
118
  BrainRestoreStatusOutput,
119
- BrainUsageReportInput,
120
- BrainUsageReportOutput,
121
119
  ConsentConfigCookieDomainUpsertInput,
122
120
  ConsentConfigCookieDomainUpsertOutput,
123
121
  ConsentConfigCustomizationUpsertInput,
@@ -222,8 +220,6 @@ import type {
222
220
  DeploymentAlertUpdateOutput,
223
221
  DeploymentAnalyticsQueryInput,
224
222
  DeploymentAnalyticsQueryOutput,
225
- DeploymentAuditListInput,
226
- DeploymentAuditListOutput,
227
223
  DeploymentBuildGetInput,
228
224
  DeploymentBuildGetOutput,
229
225
  DeploymentBuildListInput,
@@ -314,6 +310,12 @@ import type {
314
310
  DeploymentEventsListByEnvironmentOutput,
315
311
  DeploymentEventsListByServiceInput,
316
312
  DeploymentEventsListByServiceOutput,
313
+ DeploymentJobRunInput,
314
+ DeploymentJobRunLogsInput,
315
+ DeploymentJobRunLogsOutput,
316
+ DeploymentJobRunOutput,
317
+ DeploymentJobRunsListInput,
318
+ DeploymentJobRunsListOutput,
317
319
  DeploymentManagedServiceBackupInput,
318
320
  DeploymentManagedServiceBackupListInput,
319
321
  DeploymentManagedServiceBackupListOutput,
@@ -738,6 +740,30 @@ import type {
738
740
  OrganizationSupportThreadReplyOutput,
739
741
  OrganizationSupportThreadsListInput,
740
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,
741
767
  RealtimeArchiveExportInput,
742
768
  RealtimeArchiveExportOutput,
743
769
  RealtimeArchiveExportStatusInput,
@@ -1176,9 +1202,6 @@ export interface GeneratedClient {
1176
1202
  restore: {
1177
1203
  status(input: BrainRestoreStatusInput): Promise<BrainRestoreStatusOutput>;
1178
1204
  };
1179
- usage: {
1180
- report(input: BrainUsageReportInput): Promise<BrainUsageReportOutput>;
1181
- };
1182
1205
  };
1183
1206
  consent: {
1184
1207
  'config-cookie-domain': {
@@ -1285,9 +1308,6 @@ export interface GeneratedClient {
1285
1308
  analytics: {
1286
1309
  query(input: DeploymentAnalyticsQueryInput): Promise<DeploymentAnalyticsQueryOutput>;
1287
1310
  };
1288
- audit: {
1289
- list(input: DeploymentAuditListInput): Promise<DeploymentAuditListOutput>;
1290
- };
1291
1311
  build: {
1292
1312
  get(input: DeploymentBuildGetInput): Promise<DeploymentBuildGetOutput>;
1293
1313
  list(input: DeploymentBuildListInput): Promise<DeploymentBuildListOutput>;
@@ -1365,6 +1385,15 @@ export interface GeneratedClient {
1365
1385
  environment(input: DeploymentEventsListByEnvironmentInput): Promise<DeploymentEventsListByEnvironmentOutput>;
1366
1386
  service(input: DeploymentEventsListByServiceInput): Promise<DeploymentEventsListByServiceOutput>;
1367
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
+ };
1368
1397
  'managed-service': {
1369
1398
  backup(input: DeploymentManagedServiceBackupInput): Promise<DeploymentManagedServiceBackupOutput>;
1370
1399
  delete(input: DeploymentManagedServiceDeleteInput): Promise<DeploymentManagedServiceDeleteOutput>;
@@ -1718,6 +1747,34 @@ export interface GeneratedClient {
1718
1747
  list(input: OrganizationSupportThreadsListInput): Promise<OrganizationSupportThreadsListOutput>;
1719
1748
  };
1720
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
+ };
1721
1778
  realtime: {
1722
1779
  archive: {
1723
1780
  export(input: RealtimeArchiveExportInput): Promise<RealtimeArchiveExportOutput>;
@@ -1,3 +1,3 @@
1
1
  // AUTOGENERATED by scripts/generate.ts — do not edit.
2
2
  export * from './queryOptions.gen';
3
- export type { DeploymentAlertCreateInput, DeploymentAlertCreateOutput, DeploymentAlertDeleteInput, DeploymentAlertDeleteOutput, DeploymentAlertEventsListInput, DeploymentAlertEventsListOutput, DeploymentAlertListInput, DeploymentAlertListOutput, DeploymentAlertUpdateInput, DeploymentAlertUpdateOutput, DeploymentAnalyticsQueryInput, DeploymentAnalyticsQueryOutput, DeploymentAuditListInput, DeploymentAuditListOutput, DeploymentBuildGetInput, DeploymentBuildGetOutput, DeploymentBuildListInput, DeploymentBuildListOutput, DeploymentBuildLogsInput, DeploymentBuildLogsOutput, DeploymentCanvasGetInput, DeploymentCanvasGetOutput, DeploymentCanvasMoveNodeInput, DeploymentCanvasMoveNodeOutput, DeploymentCloudSqlBackfillLogFlagsInput, DeploymentCloudSqlBackfillLogFlagsOutput, DeploymentCloudSqlDatabaseAttachInput, DeploymentCloudSqlDatabaseAttachOutput, DeploymentCloudSqlDatabaseCreateInput, DeploymentCloudSqlDatabaseCreateOutput, DeploymentCloudSqlDatabaseDeleteInput, DeploymentCloudSqlDatabaseDeleteOutput, DeploymentCloudSqlDatabaseDetachInput, DeploymentCloudSqlDatabaseDetachOutput, DeploymentCloudSqlDatabaseGetInput, DeploymentCloudSqlDatabaseGetOutput, DeploymentCloudSqlDatabaseListInput, DeploymentCloudSqlDatabaseListOutput, DeploymentCloudSqlInstanceBackupInput, DeploymentCloudSqlInstanceBackupListInput, DeploymentCloudSqlInstanceBackupListOutput, DeploymentCloudSqlInstanceBackupOutput, DeploymentCloudSqlInstanceCreateInput, DeploymentCloudSqlInstanceCreateOutput, DeploymentCloudSqlInstanceDeleteInput, DeploymentCloudSqlInstanceDeleteOutput, DeploymentCloudSqlInstanceGetInput, DeploymentCloudSqlInstanceGetOutput, DeploymentCloudSqlInstanceListInput, DeploymentCloudSqlInstanceListOutput, DeploymentCloudSqlInstanceResizeInput, DeploymentCloudSqlInstanceResizeOutput, DeploymentCloudSqlInstanceRestoreInput, DeploymentCloudSqlInstanceRestoreOutput, DeploymentCloudSqlLogsInput, DeploymentCloudSqlLogsOutput, DeploymentDeploymentCancelInput, DeploymentDeploymentCancelOutput, DeploymentDeploymentGetInput, DeploymentDeploymentGetOutput, DeploymentDeploymentListInput, DeploymentDeploymentListOutput, DeploymentDomainAddInput, DeploymentDomainAddOutput, DeploymentDomainAllowedListInput, DeploymentDomainAllowedListOutput, DeploymentDomainGetInput, DeploymentDomainGetOutput, DeploymentDomainListByServiceInput, DeploymentDomainListByServiceOutput, DeploymentDomainListInput, DeploymentDomainListOutput, DeploymentDomainRedirectWwwInput, DeploymentDomainRedirectWwwOutput, DeploymentDomainRemoveInput, DeploymentDomainRemoveOutput, DeploymentDomainRoutesAddInput, DeploymentDomainRoutesAddOutput, DeploymentDomainRoutesListInput, DeploymentDomainRoutesListOutput, DeploymentDomainRoutesRemoveInput, DeploymentDomainRoutesRemoveOutput, DeploymentDomainRoutesUpdateInput, DeploymentDomainRoutesUpdateOutput, DeploymentDomainVerifyInput, DeploymentDomainVerifyOutput, DeploymentEnvironmentCreateInput, DeploymentEnvironmentCreateOutput, DeploymentEnvironmentDeleteInput, DeploymentEnvironmentDeleteOutput, DeploymentEnvironmentForkInput, DeploymentEnvironmentForkOutput, DeploymentEnvironmentGetInput, DeploymentEnvironmentGetOutput, DeploymentEnvironmentListInput, DeploymentEnvironmentListOutput, DeploymentEnvironmentReconcileInput, DeploymentEnvironmentReconcileOutput, DeploymentEnvironmentUpdateInput, DeploymentEnvironmentUpdateOutput, DeploymentEventsListByEnvironmentInput, DeploymentEventsListByEnvironmentOutput, DeploymentEventsListByServiceInput, DeploymentEventsListByServiceOutput, DeploymentManagedServiceBackupInput, DeploymentManagedServiceBackupListInput, DeploymentManagedServiceBackupListOutput, DeploymentManagedServiceBackupOutput, DeploymentManagedServiceConnectInfoInput, DeploymentManagedServiceConnectInfoOutput, DeploymentManagedServiceDeleteInput, DeploymentManagedServiceDeleteOutput, DeploymentManagedServiceGetInput, DeploymentManagedServiceGetOutput, DeploymentManagedServiceListInput, DeploymentManagedServiceListOutput, DeploymentManagedServiceLogsInput, DeploymentManagedServiceLogsOutput, DeploymentManagedServiceProvisionInput, DeploymentManagedServiceProvisionOutput, DeploymentManagedServiceReconcileInput, DeploymentManagedServiceReconcileOutput, DeploymentManagedServiceResizeInput, DeploymentManagedServiceResizeOutput, DeploymentManagedServiceRestoreInput, DeploymentManagedServiceRestoreOutput, DeploymentManagedServiceStartInput, DeploymentManagedServiceStartOutput, DeploymentManagedServiceStopInput, DeploymentManagedServiceStopOutput, DeploymentManagedServiceTypesInput, DeploymentManagedServiceTypesOutput, DeploymentMetricsGetInput, DeploymentMetricsGetOutput, DeploymentPreviewEnvironmentCreateInput, DeploymentPreviewEnvironmentCreateOutput, DeploymentPreviewEnvironmentDeleteInput, DeploymentPreviewEnvironmentDeleteOutput, DeploymentPreviewEnvironmentListInput, DeploymentPreviewEnvironmentListOutput, DeploymentPreviewPolicyGetInput, DeploymentPreviewPolicyGetOutput, DeploymentPreviewPolicySetInput, DeploymentPreviewPolicySetOutput, DeploymentServiceCreateInput, DeploymentServiceCreateOutput, DeploymentServiceDeleteInput, DeploymentServiceDeleteOutput, DeploymentServiceExecInput, DeploymentServiceExecOutput, DeploymentServiceGetInput, DeploymentServiceGetOutput, DeploymentServiceListInput, DeploymentServiceListOutput, DeploymentServiceLogsInput, DeploymentServiceLogsOutput, DeploymentServiceRedeployInput, DeploymentServiceRedeployOutput, DeploymentServiceRestartInput, DeploymentServiceRestartOutput, DeploymentServiceRollbackInput, DeploymentServiceRollbackOutput, DeploymentServiceScaleInput, DeploymentServiceScaleOutput, DeploymentServiceUpdateInput, DeploymentServiceUpdateOutput, DeploymentServiceWakeInput, DeploymentServiceWakeOutput, DeploymentSshCommandInput, DeploymentSshCommandOutput, DeploymentSshKeyDeleteInput, DeploymentSshKeyDeleteOutput, DeploymentSshKeyListInput, DeploymentSshKeyListOutput, DeploymentSshKeyRegisterInput, DeploymentSshKeyRegisterOutput, DeploymentSuspensionGetInput, DeploymentSuspensionGetOutput, DeploymentVariableListEnvInput, DeploymentVariableListEnvOutput, DeploymentVariableListInput, DeploymentVariableListOutput, DeploymentVariableListProductInput, DeploymentVariableListProductOutput, DeploymentVariableSetEnvInput, DeploymentVariableSetEnvOutput, DeploymentVariableSetInput, DeploymentVariableSetOutput, DeploymentVariableSetProductInput, DeploymentVariableSetProductOutput, DeploymentVariableUnsetEnvInput, DeploymentVariableUnsetEnvOutput, DeploymentVariableUnsetInput, DeploymentVariableUnsetOutput, DeploymentVariableUnsetProductInput, DeploymentVariableUnsetProductOutput, DeploymentVcsBranchListInput, DeploymentVcsBranchListOutput, DeploymentVcsConnectionListInput, DeploymentVcsConnectionListOutput, DeploymentVcsRepoListInput, DeploymentVcsRepoListOutput, DeploymentVolumeCreateInput, DeploymentVolumeCreateOutput, DeploymentVolumeDeleteInput, DeploymentVolumeDeleteOutput, DeploymentVolumeDetachInput, DeploymentVolumeDetachOutput, DeploymentVolumeGetInput, DeploymentVolumeGetOutput, DeploymentVolumeListInput, DeploymentVolumeListOutput, DeploymentVolumeResizeInput, DeploymentVolumeResizeOutput } from '../types.gen';
3
+ export type { DeploymentAlertCreateInput, DeploymentAlertCreateOutput, DeploymentAlertDeleteInput, DeploymentAlertDeleteOutput, DeploymentAlertEventsListInput, DeploymentAlertEventsListOutput, DeploymentAlertListInput, DeploymentAlertListOutput, DeploymentAlertUpdateInput, DeploymentAlertUpdateOutput, DeploymentAnalyticsQueryInput, DeploymentAnalyticsQueryOutput, DeploymentBuildGetInput, DeploymentBuildGetOutput, DeploymentBuildListInput, DeploymentBuildListOutput, DeploymentBuildLogsInput, DeploymentBuildLogsOutput, DeploymentCanvasGetInput, DeploymentCanvasGetOutput, DeploymentCanvasMoveNodeInput, DeploymentCanvasMoveNodeOutput, DeploymentCloudSqlBackfillLogFlagsInput, DeploymentCloudSqlBackfillLogFlagsOutput, DeploymentCloudSqlDatabaseAttachInput, DeploymentCloudSqlDatabaseAttachOutput, DeploymentCloudSqlDatabaseCreateInput, DeploymentCloudSqlDatabaseCreateOutput, DeploymentCloudSqlDatabaseDeleteInput, DeploymentCloudSqlDatabaseDeleteOutput, DeploymentCloudSqlDatabaseDetachInput, DeploymentCloudSqlDatabaseDetachOutput, DeploymentCloudSqlDatabaseGetInput, DeploymentCloudSqlDatabaseGetOutput, DeploymentCloudSqlDatabaseListInput, DeploymentCloudSqlDatabaseListOutput, DeploymentCloudSqlInstanceBackupInput, DeploymentCloudSqlInstanceBackupListInput, DeploymentCloudSqlInstanceBackupListOutput, DeploymentCloudSqlInstanceBackupOutput, DeploymentCloudSqlInstanceCreateInput, DeploymentCloudSqlInstanceCreateOutput, DeploymentCloudSqlInstanceDeleteInput, DeploymentCloudSqlInstanceDeleteOutput, DeploymentCloudSqlInstanceGetInput, DeploymentCloudSqlInstanceGetOutput, DeploymentCloudSqlInstanceListInput, DeploymentCloudSqlInstanceListOutput, DeploymentCloudSqlInstanceResizeInput, DeploymentCloudSqlInstanceResizeOutput, DeploymentCloudSqlInstanceRestoreInput, DeploymentCloudSqlInstanceRestoreOutput, DeploymentCloudSqlLogsInput, DeploymentCloudSqlLogsOutput, DeploymentDeploymentCancelInput, DeploymentDeploymentCancelOutput, DeploymentDeploymentGetInput, DeploymentDeploymentGetOutput, DeploymentDeploymentListInput, DeploymentDeploymentListOutput, DeploymentDomainAddInput, DeploymentDomainAddOutput, DeploymentDomainAllowedListInput, DeploymentDomainAllowedListOutput, DeploymentDomainGetInput, DeploymentDomainGetOutput, DeploymentDomainListByServiceInput, DeploymentDomainListByServiceOutput, DeploymentDomainListInput, DeploymentDomainListOutput, DeploymentDomainRedirectWwwInput, DeploymentDomainRedirectWwwOutput, DeploymentDomainRemoveInput, DeploymentDomainRemoveOutput, DeploymentDomainRoutesAddInput, DeploymentDomainRoutesAddOutput, DeploymentDomainRoutesListInput, DeploymentDomainRoutesListOutput, DeploymentDomainRoutesRemoveInput, DeploymentDomainRoutesRemoveOutput, DeploymentDomainRoutesUpdateInput, DeploymentDomainRoutesUpdateOutput, DeploymentDomainVerifyInput, DeploymentDomainVerifyOutput, DeploymentEnvironmentCreateInput, DeploymentEnvironmentCreateOutput, DeploymentEnvironmentDeleteInput, DeploymentEnvironmentDeleteOutput, DeploymentEnvironmentForkInput, DeploymentEnvironmentForkOutput, DeploymentEnvironmentGetInput, DeploymentEnvironmentGetOutput, DeploymentEnvironmentListInput, DeploymentEnvironmentListOutput, DeploymentEnvironmentReconcileInput, DeploymentEnvironmentReconcileOutput, DeploymentEnvironmentUpdateInput, DeploymentEnvironmentUpdateOutput, DeploymentEventsListByEnvironmentInput, DeploymentEventsListByEnvironmentOutput, DeploymentEventsListByServiceInput, DeploymentEventsListByServiceOutput, DeploymentJobRunInput, DeploymentJobRunLogsInput, DeploymentJobRunLogsOutput, DeploymentJobRunOutput, DeploymentJobRunsListInput, DeploymentJobRunsListOutput, DeploymentManagedServiceBackupInput, DeploymentManagedServiceBackupListInput, DeploymentManagedServiceBackupListOutput, DeploymentManagedServiceBackupOutput, DeploymentManagedServiceConnectInfoInput, DeploymentManagedServiceConnectInfoOutput, DeploymentManagedServiceDeleteInput, DeploymentManagedServiceDeleteOutput, DeploymentManagedServiceGetInput, DeploymentManagedServiceGetOutput, DeploymentManagedServiceListInput, DeploymentManagedServiceListOutput, DeploymentManagedServiceLogsInput, DeploymentManagedServiceLogsOutput, DeploymentManagedServiceProvisionInput, DeploymentManagedServiceProvisionOutput, DeploymentManagedServiceReconcileInput, DeploymentManagedServiceReconcileOutput, DeploymentManagedServiceResizeInput, DeploymentManagedServiceResizeOutput, DeploymentManagedServiceRestoreInput, DeploymentManagedServiceRestoreOutput, DeploymentManagedServiceStartInput, DeploymentManagedServiceStartOutput, DeploymentManagedServiceStopInput, DeploymentManagedServiceStopOutput, DeploymentManagedServiceTypesInput, DeploymentManagedServiceTypesOutput, DeploymentMetricsGetInput, DeploymentMetricsGetOutput, DeploymentPreviewEnvironmentCreateInput, DeploymentPreviewEnvironmentCreateOutput, DeploymentPreviewEnvironmentDeleteInput, DeploymentPreviewEnvironmentDeleteOutput, DeploymentPreviewEnvironmentListInput, DeploymentPreviewEnvironmentListOutput, DeploymentPreviewPolicyGetInput, DeploymentPreviewPolicyGetOutput, DeploymentPreviewPolicySetInput, DeploymentPreviewPolicySetOutput, DeploymentServiceCreateInput, DeploymentServiceCreateOutput, DeploymentServiceDeleteInput, DeploymentServiceDeleteOutput, DeploymentServiceExecInput, DeploymentServiceExecOutput, DeploymentServiceGetInput, DeploymentServiceGetOutput, DeploymentServiceListInput, DeploymentServiceListOutput, DeploymentServiceLogsInput, DeploymentServiceLogsOutput, DeploymentServiceRedeployInput, DeploymentServiceRedeployOutput, DeploymentServiceRestartInput, DeploymentServiceRestartOutput, DeploymentServiceRollbackInput, DeploymentServiceRollbackOutput, DeploymentServiceScaleInput, DeploymentServiceScaleOutput, DeploymentServiceUpdateInput, DeploymentServiceUpdateOutput, DeploymentServiceWakeInput, DeploymentServiceWakeOutput, DeploymentSshCommandInput, DeploymentSshCommandOutput, DeploymentSshKeyDeleteInput, DeploymentSshKeyDeleteOutput, DeploymentSshKeyListInput, DeploymentSshKeyListOutput, DeploymentSshKeyRegisterInput, DeploymentSshKeyRegisterOutput, DeploymentSuspensionGetInput, DeploymentSuspensionGetOutput, DeploymentVariableListEnvInput, DeploymentVariableListEnvOutput, DeploymentVariableListInput, DeploymentVariableListOutput, DeploymentVariableListProductInput, DeploymentVariableListProductOutput, DeploymentVariableSetEnvInput, DeploymentVariableSetEnvOutput, DeploymentVariableSetInput, DeploymentVariableSetOutput, DeploymentVariableSetProductInput, DeploymentVariableSetProductOutput, DeploymentVariableUnsetEnvInput, DeploymentVariableUnsetEnvOutput, DeploymentVariableUnsetInput, DeploymentVariableUnsetOutput, DeploymentVariableUnsetProductInput, DeploymentVariableUnsetProductOutput, DeploymentVcsBranchListInput, DeploymentVcsBranchListOutput, DeploymentVcsConnectionListInput, DeploymentVcsConnectionListOutput, DeploymentVcsRepoListInput, DeploymentVcsRepoListOutput, DeploymentVolumeCreateInput, DeploymentVolumeCreateOutput, DeploymentVolumeDeleteInput, DeploymentVolumeDeleteOutput, DeploymentVolumeDetachInput, DeploymentVolumeDetachOutput, DeploymentVolumeGetInput, DeploymentVolumeGetOutput, DeploymentVolumeListInput, DeploymentVolumeListOutput, DeploymentVolumeResizeInput, DeploymentVolumeResizeOutput } from '../types.gen';
@@ -10,8 +10,6 @@ import type {
10
10
  DeploymentAlertUpdateInput,
11
11
  DeploymentAnalyticsQueryInput,
12
12
  DeploymentAnalyticsQueryOutput,
13
- DeploymentAuditListInput,
14
- DeploymentAuditListOutput,
15
13
  DeploymentBuildGetInput,
16
14
  DeploymentBuildGetOutput,
17
15
  DeploymentBuildListInput,
@@ -78,6 +76,11 @@ import type {
78
76
  DeploymentEventsListByEnvironmentOutput,
79
77
  DeploymentEventsListByServiceInput,
80
78
  DeploymentEventsListByServiceOutput,
79
+ DeploymentJobRunInput,
80
+ DeploymentJobRunLogsInput,
81
+ DeploymentJobRunLogsOutput,
82
+ DeploymentJobRunsListInput,
83
+ DeploymentJobRunsListOutput,
81
84
  DeploymentManagedServiceBackupInput,
82
85
  DeploymentManagedServiceBackupListInput,
83
86
  DeploymentManagedServiceBackupListOutput,
@@ -188,11 +191,6 @@ export const deploymentAnalyticsQueryQueryOptions = (sdk: GeneratedClient, input
188
191
  queryFn: () => sdk['deployment']['analytics']['query'](input),
189
192
  });
190
193
 
191
- export const deploymentAuditListQueryOptions = (sdk: GeneratedClient, input: DeploymentAuditListInput) => ({
192
- queryKey: ['deployment', 'audit', 'list', input] as const,
193
- queryFn: () => sdk['deployment']['audit']['list'](input),
194
- });
195
-
196
194
  export const deploymentBuildGetQueryOptions = (sdk: GeneratedClient, input: DeploymentBuildGetInput) => ({
197
195
  queryKey: ['deployment', 'build', 'get', input] as const,
198
196
  queryFn: () => sdk['deployment']['build']['get'](input),
@@ -418,6 +416,21 @@ export const deploymentEventsListByServiceQueryOptions = (sdk: GeneratedClient,
418
416
  queryFn: () => sdk['deployment']['events-list-by']['service'](input),
419
417
  });
420
418
 
419
+ export const deploymentJobRunMutationOptions = (sdk: GeneratedClient) => ({
420
+ mutationKey: ['deployment', 'job', 'run'],
421
+ mutationFn: (input: DeploymentJobRunInput) => sdk['deployment']['job']['run'](input),
422
+ });
423
+
424
+ export const deploymentJobRunLogsQueryOptions = (sdk: GeneratedClient, input: DeploymentJobRunLogsInput) => ({
425
+ queryKey: ['deployment', 'job-run', 'logs', input] as const,
426
+ queryFn: () => sdk['deployment']['job-run']['logs'](input),
427
+ });
428
+
429
+ export const deploymentJobRunsListQueryOptions = (sdk: GeneratedClient, input: DeploymentJobRunsListInput) => ({
430
+ queryKey: ['deployment', 'job-runs', 'list', input] as const,
431
+ queryFn: () => sdk['deployment']['job-runs']['list'](input),
432
+ });
433
+
421
434
  export const deploymentManagedServiceBackupMutationOptions = (sdk: GeneratedClient) => ({
422
435
  mutationKey: ['deployment', 'managed-service', 'backup'],
423
436
  mutationFn: (input: DeploymentManagedServiceBackupInput) => sdk['deployment']['managed-service']['backup'](input),