@lessly/sdk-app 14.1.0 → 14.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/analytics/index.d.cts +1 -1
- package/dist/analytics/index.d.ts +1 -1
- package/dist/brain/index.cjs +0 -5
- package/dist/brain/index.cjs.map +1 -1
- package/dist/brain/index.d.cts +2 -6
- package/dist/brain/index.d.ts +2 -6
- package/dist/brain/index.js +1 -5
- package/dist/brain/index.js.map +1 -1
- package/dist/{client.gen-BNghb8IL.d.cts → client.gen-ClvT4E7P.d.cts} +331 -103
- package/dist/{client.gen-BNghb8IL.d.ts → client.gen-ClvT4E7P.d.ts} +331 -103
- package/dist/consent/index.d.cts +1 -1
- package/dist/consent/index.d.ts +1 -1
- package/dist/deployment/index.cjs +5 -0
- package/dist/deployment/index.cjs.map +1 -1
- package/dist/deployment/index.d.cts +6 -2
- package/dist/deployment/index.d.ts +6 -2
- package/dist/deployment/index.js +5 -1
- package/dist/deployment/index.js.map +1 -1
- package/dist/index.cjs +152 -13
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +152 -13
- package/dist/index.js.map +1 -1
- package/dist/mail/index.d.cts +2 -2
- package/dist/mail/index.d.ts +2 -2
- package/dist/organization/index.d.cts +1 -1
- package/dist/organization/index.d.ts +1 -1
- package/dist/playground/index.cjs +66 -0
- package/dist/playground/index.cjs.map +1 -0
- package/dist/playground/index.d.cts +52 -0
- package/dist/playground/index.d.ts +52 -0
- package/dist/playground/index.js +53 -0
- package/dist/playground/index.js.map +1 -0
- package/dist/realtime/index.cjs +15 -0
- package/dist/realtime/index.cjs.map +1 -1
- package/dist/realtime/index.d.cts +14 -2
- package/dist/realtime/index.d.ts +14 -2
- package/dist/realtime/index.js +13 -1
- package/dist/realtime/index.js.map +1 -1
- package/dist/tracking/index.d.cts +1 -1
- package/dist/tracking/index.d.ts +1 -1
- package/dist/waitlist/index.d.cts +1 -1
- package/dist/waitlist/index.d.ts +1 -1
- package/package.json +7 -2
- package/src/gen/bindings.gen.ts +152 -13
- package/src/gen/brain/index.ts +1 -1
- package/src/gen/brain/queryOptions.gen.ts +0 -7
- package/src/gen/client.gen.ts +66 -5
- package/src/gen/deployment/index.ts +1 -1
- package/src/gen/deployment/queryOptions.gen.ts +6 -0
- package/src/gen/manifest.gen.ts +1 -1
- package/src/gen/playground/index.ts +3 -0
- package/src/gen/playground/queryOptions.gen.ts +86 -0
- package/src/gen/realtime/index.ts +1 -1
- package/src/gen/realtime/queryOptions.gen.ts +19 -0
- package/src/gen/types.gen.ts +337 -101
package/dist/realtime/index.js
CHANGED
|
@@ -1,4 +1,16 @@
|
|
|
1
1
|
// src/gen/realtime/queryOptions.gen.ts
|
|
2
|
+
var realtimeApikeyCreateMutationOptions = (sdk) => ({
|
|
3
|
+
mutationKey: ["realtime", "apikey", "create"],
|
|
4
|
+
mutationFn: (input) => sdk["realtime"]["apikey"]["create"](input)
|
|
5
|
+
});
|
|
6
|
+
var realtimeApikeyListQueryOptions = (sdk, input) => ({
|
|
7
|
+
queryKey: ["realtime", "apikey", "list", input],
|
|
8
|
+
queryFn: () => sdk["realtime"]["apikey"]["list"](input)
|
|
9
|
+
});
|
|
10
|
+
var realtimeApikeyRevokeMutationOptions = (sdk) => ({
|
|
11
|
+
mutationKey: ["realtime", "apikey", "revoke"],
|
|
12
|
+
mutationFn: (input) => sdk["realtime"]["apikey"]["revoke"](input)
|
|
13
|
+
});
|
|
2
14
|
var realtimeArchiveExportMutationOptions = (sdk) => ({
|
|
3
15
|
mutationKey: ["realtime", "archive", "export"],
|
|
4
16
|
mutationFn: (input) => sdk["realtime"]["archive"]["export"](input)
|
|
@@ -108,6 +120,6 @@ var realtimeWebhookUpdateMutationOptions = (sdk) => ({
|
|
|
108
120
|
mutationFn: (input) => sdk["realtime"]["webhook"]["update"](input)
|
|
109
121
|
});
|
|
110
122
|
|
|
111
|
-
export { realtimeArchiveExportMutationOptions, realtimeArchiveExportStatusQueryOptions, realtimeArchiveGetQueryOptions, realtimeGrantCreateMutationOptions, realtimeGrantListQueryOptions, realtimeGrantRevokeMutationOptions, realtimeHistoryGetQueryOptions, realtimeMessagesPublishMutationOptions, realtimeNamespaceCreateMutationOptions, realtimeNamespaceDeleteMutationOptions, realtimeNamespaceGetQueryOptions, realtimeNamespaceListQueryOptions, realtimeNamespaceUpdateMutationOptions, realtimePresenceEnterMutationOptions, realtimePresenceGetQueryOptions, realtimePresenceLeaveMutationOptions, realtimePresenceStatsQueryOptions, realtimePresenceUpdateMutationOptions, realtimeStatusGetQueryOptions, realtimeTokensCreateMutationOptions, realtimeWebhookCreateMutationOptions, realtimeWebhookDeleteMutationOptions, realtimeWebhookDeliveriesListQueryOptions, realtimeWebhookGetQueryOptions, realtimeWebhookListQueryOptions, realtimeWebhookSecretRotateMutationOptions, realtimeWebhookUpdateMutationOptions };
|
|
123
|
+
export { realtimeApikeyCreateMutationOptions, realtimeApikeyListQueryOptions, realtimeApikeyRevokeMutationOptions, realtimeArchiveExportMutationOptions, realtimeArchiveExportStatusQueryOptions, realtimeArchiveGetQueryOptions, realtimeGrantCreateMutationOptions, realtimeGrantListQueryOptions, realtimeGrantRevokeMutationOptions, realtimeHistoryGetQueryOptions, realtimeMessagesPublishMutationOptions, realtimeNamespaceCreateMutationOptions, realtimeNamespaceDeleteMutationOptions, realtimeNamespaceGetQueryOptions, realtimeNamespaceListQueryOptions, realtimeNamespaceUpdateMutationOptions, realtimePresenceEnterMutationOptions, realtimePresenceGetQueryOptions, realtimePresenceLeaveMutationOptions, realtimePresenceStatsQueryOptions, realtimePresenceUpdateMutationOptions, realtimeStatusGetQueryOptions, realtimeTokensCreateMutationOptions, realtimeWebhookCreateMutationOptions, realtimeWebhookDeleteMutationOptions, realtimeWebhookDeliveriesListQueryOptions, realtimeWebhookGetQueryOptions, realtimeWebhookListQueryOptions, realtimeWebhookSecretRotateMutationOptions, realtimeWebhookUpdateMutationOptions };
|
|
112
124
|
//# sourceMappingURL=index.js.map
|
|
113
125
|
//# sourceMappingURL=index.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/gen/realtime/queryOptions.gen.ts"],"names":[],"mappings":"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","file":"index.js","sourcesContent":["// AUTOGENERATED by scripts/generate.ts — do not edit.\nimport type { GeneratedClient } from '../client.gen';\nimport type {\n RealtimeArchiveExportInput,\n RealtimeArchiveExportStatusInput,\n RealtimeArchiveExportStatusOutput,\n RealtimeArchiveGetInput,\n RealtimeArchiveGetOutput,\n RealtimeGrantCreateInput,\n RealtimeGrantListInput,\n RealtimeGrantListOutput,\n RealtimeGrantRevokeInput,\n RealtimeHistoryGetInput,\n RealtimeHistoryGetOutput,\n RealtimeMessagesPublishInput,\n RealtimeNamespaceCreateInput,\n RealtimeNamespaceDeleteInput,\n RealtimeNamespaceGetInput,\n RealtimeNamespaceGetOutput,\n RealtimeNamespaceListInput,\n RealtimeNamespaceListOutput,\n RealtimeNamespaceUpdateInput,\n RealtimePresenceEnterInput,\n RealtimePresenceGetInput,\n RealtimePresenceGetOutput,\n RealtimePresenceLeaveInput,\n RealtimePresenceStatsInput,\n RealtimePresenceStatsOutput,\n RealtimePresenceUpdateInput,\n RealtimeStatusGetInput,\n RealtimeStatusGetOutput,\n RealtimeTokensCreateInput,\n RealtimeWebhookCreateInput,\n RealtimeWebhookDeleteInput,\n RealtimeWebhookDeliveriesListInput,\n RealtimeWebhookDeliveriesListOutput,\n RealtimeWebhookGetInput,\n RealtimeWebhookGetOutput,\n RealtimeWebhookListInput,\n RealtimeWebhookListOutput,\n RealtimeWebhookSecretRotateInput,\n RealtimeWebhookUpdateInput,\n} from '../types.gen';\n\nexport const realtimeArchiveExportMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'archive', 'export'],\n mutationFn: (input: RealtimeArchiveExportInput) => sdk['realtime']['archive']['export'](input),\n});\n\nexport const realtimeArchiveExportStatusQueryOptions = (sdk: GeneratedClient, input: RealtimeArchiveExportStatusInput) => ({\n queryKey: ['realtime', 'archive-export', 'status', input] as const,\n queryFn: () => sdk['realtime']['archive-export']['status'](input),\n});\n\nexport const realtimeArchiveGetQueryOptions = (sdk: GeneratedClient, input: RealtimeArchiveGetInput) => ({\n queryKey: ['realtime', 'archive', 'get', input] as const,\n queryFn: () => sdk['realtime']['archive']['get'](input),\n});\n\nexport const realtimeGrantCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'grant', 'create'],\n mutationFn: (input: RealtimeGrantCreateInput) => sdk['realtime']['grant']['create'](input),\n});\n\nexport const realtimeGrantListQueryOptions = (sdk: GeneratedClient, input: RealtimeGrantListInput) => ({\n queryKey: ['realtime', 'grant', 'list', input] as const,\n queryFn: () => sdk['realtime']['grant']['list'](input),\n});\n\nexport const realtimeGrantRevokeMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'grant', 'revoke'],\n mutationFn: (input: RealtimeGrantRevokeInput) => sdk['realtime']['grant']['revoke'](input),\n});\n\nexport const realtimeHistoryGetQueryOptions = (sdk: GeneratedClient, input: RealtimeHistoryGetInput) => ({\n queryKey: ['realtime', 'history', 'get', input] as const,\n queryFn: () => sdk['realtime']['history']['get'](input),\n});\n\nexport const realtimeMessagesPublishMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'messages', 'publish'],\n mutationFn: (input: RealtimeMessagesPublishInput) => sdk['realtime']['messages']['publish'](input),\n});\n\nexport const realtimeNamespaceCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'namespace', 'create'],\n mutationFn: (input: RealtimeNamespaceCreateInput) => sdk['realtime']['namespace']['create'](input),\n});\n\nexport const realtimeNamespaceDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'namespace', 'delete'],\n mutationFn: (input: RealtimeNamespaceDeleteInput) => sdk['realtime']['namespace']['delete'](input),\n});\n\nexport const realtimeNamespaceGetQueryOptions = (sdk: GeneratedClient, input: RealtimeNamespaceGetInput) => ({\n queryKey: ['realtime', 'namespace', 'get', input] as const,\n queryFn: () => sdk['realtime']['namespace']['get'](input),\n});\n\nexport const realtimeNamespaceListQueryOptions = (sdk: GeneratedClient, input: RealtimeNamespaceListInput) => ({\n queryKey: ['realtime', 'namespace', 'list', input] as const,\n queryFn: () => sdk['realtime']['namespace']['list'](input),\n});\n\nexport const realtimeNamespaceUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'namespace', 'update'],\n mutationFn: (input: RealtimeNamespaceUpdateInput) => sdk['realtime']['namespace']['update'](input),\n});\n\nexport const realtimePresenceEnterMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'presence', 'enter'],\n mutationFn: (input: RealtimePresenceEnterInput) => sdk['realtime']['presence']['enter'](input),\n});\n\nexport const realtimePresenceGetQueryOptions = (sdk: GeneratedClient, input: RealtimePresenceGetInput) => ({\n queryKey: ['realtime', 'presence', 'get', input] as const,\n queryFn: () => sdk['realtime']['presence']['get'](input),\n});\n\nexport const realtimePresenceLeaveMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'presence', 'leave'],\n mutationFn: (input: RealtimePresenceLeaveInput) => sdk['realtime']['presence']['leave'](input),\n});\n\nexport const realtimePresenceStatsQueryOptions = (sdk: GeneratedClient, input: RealtimePresenceStatsInput) => ({\n queryKey: ['realtime', 'presence', 'stats', input] as const,\n queryFn: () => sdk['realtime']['presence']['stats'](input),\n});\n\nexport const realtimePresenceUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'presence', 'update'],\n mutationFn: (input: RealtimePresenceUpdateInput) => sdk['realtime']['presence']['update'](input),\n});\n\nexport const realtimeStatusGetQueryOptions = (sdk: GeneratedClient, input: RealtimeStatusGetInput) => ({\n queryKey: ['realtime', 'status', 'get', input] as const,\n queryFn: () => sdk['realtime']['status']['get'](input),\n});\n\nexport const realtimeTokensCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'tokens', 'create'],\n mutationFn: (input: RealtimeTokensCreateInput) => sdk['realtime']['tokens']['create'](input),\n});\n\nexport const realtimeWebhookCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'webhook', 'create'],\n mutationFn: (input: RealtimeWebhookCreateInput) => sdk['realtime']['webhook']['create'](input),\n});\n\nexport const realtimeWebhookDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'webhook', 'delete'],\n mutationFn: (input: RealtimeWebhookDeleteInput) => sdk['realtime']['webhook']['delete'](input),\n});\n\nexport const realtimeWebhookDeliveriesListQueryOptions = (sdk: GeneratedClient, input: RealtimeWebhookDeliveriesListInput) => ({\n queryKey: ['realtime', 'webhook-deliveries', 'list', input] as const,\n queryFn: () => sdk['realtime']['webhook-deliveries']['list'](input),\n});\n\nexport const realtimeWebhookGetQueryOptions = (sdk: GeneratedClient, input: RealtimeWebhookGetInput) => ({\n queryKey: ['realtime', 'webhook', 'get', input] as const,\n queryFn: () => sdk['realtime']['webhook']['get'](input),\n});\n\nexport const realtimeWebhookListQueryOptions = (sdk: GeneratedClient, input: RealtimeWebhookListInput) => ({\n queryKey: ['realtime', 'webhook', 'list', input] as const,\n queryFn: () => sdk['realtime']['webhook']['list'](input),\n});\n\nexport const realtimeWebhookSecretRotateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'webhook-secret', 'rotate'],\n mutationFn: (input: RealtimeWebhookSecretRotateInput) => sdk['realtime']['webhook-secret']['rotate'](input),\n});\n\nexport const realtimeWebhookUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'webhook', 'update'],\n mutationFn: (input: RealtimeWebhookUpdateInput) => sdk['realtime']['webhook']['update'](input),\n});\n"]}
|
|
1
|
+
{"version":3,"sources":["../../src/gen/realtime/queryOptions.gen.ts"],"names":[],"mappings":"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","file":"index.js","sourcesContent":["// AUTOGENERATED by scripts/generate.ts — do not edit.\nimport type { GeneratedClient } from '../client.gen';\nimport type {\n RealtimeApikeyCreateInput,\n RealtimeApikeyListInput,\n RealtimeApikeyListOutput,\n RealtimeApikeyRevokeInput,\n RealtimeArchiveExportInput,\n RealtimeArchiveExportStatusInput,\n RealtimeArchiveExportStatusOutput,\n RealtimeArchiveGetInput,\n RealtimeArchiveGetOutput,\n RealtimeGrantCreateInput,\n RealtimeGrantListInput,\n RealtimeGrantListOutput,\n RealtimeGrantRevokeInput,\n RealtimeHistoryGetInput,\n RealtimeHistoryGetOutput,\n RealtimeMessagesPublishInput,\n RealtimeNamespaceCreateInput,\n RealtimeNamespaceDeleteInput,\n RealtimeNamespaceGetInput,\n RealtimeNamespaceGetOutput,\n RealtimeNamespaceListInput,\n RealtimeNamespaceListOutput,\n RealtimeNamespaceUpdateInput,\n RealtimePresenceEnterInput,\n RealtimePresenceGetInput,\n RealtimePresenceGetOutput,\n RealtimePresenceLeaveInput,\n RealtimePresenceStatsInput,\n RealtimePresenceStatsOutput,\n RealtimePresenceUpdateInput,\n RealtimeStatusGetInput,\n RealtimeStatusGetOutput,\n RealtimeTokensCreateInput,\n RealtimeWebhookCreateInput,\n RealtimeWebhookDeleteInput,\n RealtimeWebhookDeliveriesListInput,\n RealtimeWebhookDeliveriesListOutput,\n RealtimeWebhookGetInput,\n RealtimeWebhookGetOutput,\n RealtimeWebhookListInput,\n RealtimeWebhookListOutput,\n RealtimeWebhookSecretRotateInput,\n RealtimeWebhookUpdateInput,\n} from '../types.gen';\n\nexport const realtimeApikeyCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'apikey', 'create'],\n mutationFn: (input: RealtimeApikeyCreateInput) => sdk['realtime']['apikey']['create'](input),\n});\n\nexport const realtimeApikeyListQueryOptions = (sdk: GeneratedClient, input: RealtimeApikeyListInput) => ({\n queryKey: ['realtime', 'apikey', 'list', input] as const,\n queryFn: () => sdk['realtime']['apikey']['list'](input),\n});\n\nexport const realtimeApikeyRevokeMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'apikey', 'revoke'],\n mutationFn: (input: RealtimeApikeyRevokeInput) => sdk['realtime']['apikey']['revoke'](input),\n});\n\nexport const realtimeArchiveExportMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'archive', 'export'],\n mutationFn: (input: RealtimeArchiveExportInput) => sdk['realtime']['archive']['export'](input),\n});\n\nexport const realtimeArchiveExportStatusQueryOptions = (sdk: GeneratedClient, input: RealtimeArchiveExportStatusInput) => ({\n queryKey: ['realtime', 'archive-export', 'status', input] as const,\n queryFn: () => sdk['realtime']['archive-export']['status'](input),\n});\n\nexport const realtimeArchiveGetQueryOptions = (sdk: GeneratedClient, input: RealtimeArchiveGetInput) => ({\n queryKey: ['realtime', 'archive', 'get', input] as const,\n queryFn: () => sdk['realtime']['archive']['get'](input),\n});\n\nexport const realtimeGrantCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'grant', 'create'],\n mutationFn: (input: RealtimeGrantCreateInput) => sdk['realtime']['grant']['create'](input),\n});\n\nexport const realtimeGrantListQueryOptions = (sdk: GeneratedClient, input: RealtimeGrantListInput) => ({\n queryKey: ['realtime', 'grant', 'list', input] as const,\n queryFn: () => sdk['realtime']['grant']['list'](input),\n});\n\nexport const realtimeGrantRevokeMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'grant', 'revoke'],\n mutationFn: (input: RealtimeGrantRevokeInput) => sdk['realtime']['grant']['revoke'](input),\n});\n\nexport const realtimeHistoryGetQueryOptions = (sdk: GeneratedClient, input: RealtimeHistoryGetInput) => ({\n queryKey: ['realtime', 'history', 'get', input] as const,\n queryFn: () => sdk['realtime']['history']['get'](input),\n});\n\nexport const realtimeMessagesPublishMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'messages', 'publish'],\n mutationFn: (input: RealtimeMessagesPublishInput) => sdk['realtime']['messages']['publish'](input),\n});\n\nexport const realtimeNamespaceCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'namespace', 'create'],\n mutationFn: (input: RealtimeNamespaceCreateInput) => sdk['realtime']['namespace']['create'](input),\n});\n\nexport const realtimeNamespaceDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'namespace', 'delete'],\n mutationFn: (input: RealtimeNamespaceDeleteInput) => sdk['realtime']['namespace']['delete'](input),\n});\n\nexport const realtimeNamespaceGetQueryOptions = (sdk: GeneratedClient, input: RealtimeNamespaceGetInput) => ({\n queryKey: ['realtime', 'namespace', 'get', input] as const,\n queryFn: () => sdk['realtime']['namespace']['get'](input),\n});\n\nexport const realtimeNamespaceListQueryOptions = (sdk: GeneratedClient, input: RealtimeNamespaceListInput) => ({\n queryKey: ['realtime', 'namespace', 'list', input] as const,\n queryFn: () => sdk['realtime']['namespace']['list'](input),\n});\n\nexport const realtimeNamespaceUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'namespace', 'update'],\n mutationFn: (input: RealtimeNamespaceUpdateInput) => sdk['realtime']['namespace']['update'](input),\n});\n\nexport const realtimePresenceEnterMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'presence', 'enter'],\n mutationFn: (input: RealtimePresenceEnterInput) => sdk['realtime']['presence']['enter'](input),\n});\n\nexport const realtimePresenceGetQueryOptions = (sdk: GeneratedClient, input: RealtimePresenceGetInput) => ({\n queryKey: ['realtime', 'presence', 'get', input] as const,\n queryFn: () => sdk['realtime']['presence']['get'](input),\n});\n\nexport const realtimePresenceLeaveMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'presence', 'leave'],\n mutationFn: (input: RealtimePresenceLeaveInput) => sdk['realtime']['presence']['leave'](input),\n});\n\nexport const realtimePresenceStatsQueryOptions = (sdk: GeneratedClient, input: RealtimePresenceStatsInput) => ({\n queryKey: ['realtime', 'presence', 'stats', input] as const,\n queryFn: () => sdk['realtime']['presence']['stats'](input),\n});\n\nexport const realtimePresenceUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'presence', 'update'],\n mutationFn: (input: RealtimePresenceUpdateInput) => sdk['realtime']['presence']['update'](input),\n});\n\nexport const realtimeStatusGetQueryOptions = (sdk: GeneratedClient, input: RealtimeStatusGetInput) => ({\n queryKey: ['realtime', 'status', 'get', input] as const,\n queryFn: () => sdk['realtime']['status']['get'](input),\n});\n\nexport const realtimeTokensCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'tokens', 'create'],\n mutationFn: (input: RealtimeTokensCreateInput) => sdk['realtime']['tokens']['create'](input),\n});\n\nexport const realtimeWebhookCreateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'webhook', 'create'],\n mutationFn: (input: RealtimeWebhookCreateInput) => sdk['realtime']['webhook']['create'](input),\n});\n\nexport const realtimeWebhookDeleteMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'webhook', 'delete'],\n mutationFn: (input: RealtimeWebhookDeleteInput) => sdk['realtime']['webhook']['delete'](input),\n});\n\nexport const realtimeWebhookDeliveriesListQueryOptions = (sdk: GeneratedClient, input: RealtimeWebhookDeliveriesListInput) => ({\n queryKey: ['realtime', 'webhook-deliveries', 'list', input] as const,\n queryFn: () => sdk['realtime']['webhook-deliveries']['list'](input),\n});\n\nexport const realtimeWebhookGetQueryOptions = (sdk: GeneratedClient, input: RealtimeWebhookGetInput) => ({\n queryKey: ['realtime', 'webhook', 'get', input] as const,\n queryFn: () => sdk['realtime']['webhook']['get'](input),\n});\n\nexport const realtimeWebhookListQueryOptions = (sdk: GeneratedClient, input: RealtimeWebhookListInput) => ({\n queryKey: ['realtime', 'webhook', 'list', input] as const,\n queryFn: () => sdk['realtime']['webhook']['list'](input),\n});\n\nexport const realtimeWebhookSecretRotateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'webhook-secret', 'rotate'],\n mutationFn: (input: RealtimeWebhookSecretRotateInput) => sdk['realtime']['webhook-secret']['rotate'](input),\n});\n\nexport const realtimeWebhookUpdateMutationOptions = (sdk: GeneratedClient) => ({\n mutationKey: ['realtime', 'webhook', 'update'],\n mutationFn: (input: RealtimeWebhookUpdateInput) => sdk['realtime']['webhook']['update'](input),\n});\n"]}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as GeneratedClient,
|
|
1
|
+
import { G as GeneratedClient, j2 as TrackingApiKeysCreateInput, j3 as TrackingApiKeysCreateOutput, j4 as TrackingApiKeysListInput, j5 as TrackingApiKeysListOutput, j6 as TrackingApiKeysRevokeInput, j7 as TrackingApiKeysRevokeOutput, j8 as TrackingApiKeysRotateInput, j9 as TrackingApiKeysRotateOutput, ja as TrackingDomainsCreateInput, jb as TrackingDomainsCreateOutput, jc as TrackingDomainsDeleteInput, jd as TrackingDomainsDeleteOutput, je as TrackingDomainsGetInput, jf as TrackingDomainsGetOutput, jg as TrackingDomainsListInput, jh as TrackingDomainsListOutput, ji as TrackingDomainsVerifyInput, jj as TrackingDomainsVerifyOutput, jk as TrackingEventNamesArchiveInput, jl as TrackingEventNamesArchiveOutput, jm as TrackingEventNamesListInput, jn as TrackingEventNamesListOutput, jo as TrackingEventNamesUnarchiveInput, jp as TrackingEventNamesUnarchiveOutput, jq as TrackingGoogleadsConnectionStatusInput, jr as TrackingGoogleadsConnectionStatusOutput, js as TrackingGoogleadsConversionActionsInput, jt as TrackingGoogleadsConversionActionsOutput, ju as TrackingGoogleadsFeedbackConfigGetInput, jv as TrackingGoogleadsFeedbackConfigGetOutput, jw as TrackingGoogleadsFeedbackConfigSetInput, jx as TrackingGoogleadsFeedbackConfigSetOutput, jy as TrackingGoogleadsFeedbackRunInput, jz as TrackingGoogleadsFeedbackRunOutput, jA as TrackingGoogleadsFeedbackStatusInput, jB as TrackingGoogleadsFeedbackStatusOutput, jC as TrackingGoogleadsFeedbackUploadsInput, jD as TrackingGoogleadsFeedbackUploadsOutput, jE as TrackingGoogleadsRoasReportInput, jF as TrackingGoogleadsRoasReportOutput, jG as TrackingGoogleadsSyncNowInput, jH as TrackingGoogleadsSyncNowOutput, jI as TrackingGoogleadsTrackingHealthInput, jJ as TrackingGoogleadsTrackingHealthOutput, jK as TrackingGoogleadsUsVsPlatformInput, jL as TrackingGoogleadsUsVsPlatformOutput, jM as TrackingIdentityHealthInput, jN as TrackingIdentityHealthOutput, jO as TrackingInstallDomainsCreateInput, jP as TrackingInstallDomainsCreateOutput, jQ as TrackingInstallDomainsDeleteInput, jR as TrackingInstallDomainsDeleteOutput, jS as TrackingInstallDomainsListInput, jT as TrackingInstallDomainsListOutput, jU as TrackingLinkDomainsCreateInput, jV as TrackingLinkDomainsCreateOutput, jW as TrackingLinkDomainsDeleteInput, jX as TrackingLinkDomainsDeleteOutput, jY as TrackingLinkDomainsListInput, jZ as TrackingLinkDomainsListOutput, j_ as TrackingLiveEventsListInput, j$ as TrackingLiveEventsListOutput, k0 as TrackingProfilesDeleteInput, k1 as TrackingProfilesDeleteOutput, k2 as TrackingProfilesExportInput, k3 as TrackingProfilesExportOutput, k4 as TrackingProfilesGetInput, k5 as TrackingProfilesGetOutput, k6 as TrackingProfilesListInput, k7 as TrackingProfilesListOutput, k8 as TrackingReportsAttributedJourneyInput, k9 as TrackingReportsAttributedJourneyOutput, ka as TrackingReportsRevenueBySourceInput, kb as TrackingReportsRevenueBySourceOutput, kc as TrackingReportsSourcePeopleInput, kd as TrackingReportsSourcePeopleOutput, ke as TrackingSnippetsGetInput, kf as TrackingSnippetsGetOutput } from '../client.gen-ClvT4E7P.cjs';
|
|
2
2
|
|
|
3
3
|
declare const trackingApiKeysCreateMutationOptions: (sdk: GeneratedClient) => {
|
|
4
4
|
mutationKey: string[];
|
package/dist/tracking/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as GeneratedClient,
|
|
1
|
+
import { G as GeneratedClient, j2 as TrackingApiKeysCreateInput, j3 as TrackingApiKeysCreateOutput, j4 as TrackingApiKeysListInput, j5 as TrackingApiKeysListOutput, j6 as TrackingApiKeysRevokeInput, j7 as TrackingApiKeysRevokeOutput, j8 as TrackingApiKeysRotateInput, j9 as TrackingApiKeysRotateOutput, ja as TrackingDomainsCreateInput, jb as TrackingDomainsCreateOutput, jc as TrackingDomainsDeleteInput, jd as TrackingDomainsDeleteOutput, je as TrackingDomainsGetInput, jf as TrackingDomainsGetOutput, jg as TrackingDomainsListInput, jh as TrackingDomainsListOutput, ji as TrackingDomainsVerifyInput, jj as TrackingDomainsVerifyOutput, jk as TrackingEventNamesArchiveInput, jl as TrackingEventNamesArchiveOutput, jm as TrackingEventNamesListInput, jn as TrackingEventNamesListOutput, jo as TrackingEventNamesUnarchiveInput, jp as TrackingEventNamesUnarchiveOutput, jq as TrackingGoogleadsConnectionStatusInput, jr as TrackingGoogleadsConnectionStatusOutput, js as TrackingGoogleadsConversionActionsInput, jt as TrackingGoogleadsConversionActionsOutput, ju as TrackingGoogleadsFeedbackConfigGetInput, jv as TrackingGoogleadsFeedbackConfigGetOutput, jw as TrackingGoogleadsFeedbackConfigSetInput, jx as TrackingGoogleadsFeedbackConfigSetOutput, jy as TrackingGoogleadsFeedbackRunInput, jz as TrackingGoogleadsFeedbackRunOutput, jA as TrackingGoogleadsFeedbackStatusInput, jB as TrackingGoogleadsFeedbackStatusOutput, jC as TrackingGoogleadsFeedbackUploadsInput, jD as TrackingGoogleadsFeedbackUploadsOutput, jE as TrackingGoogleadsRoasReportInput, jF as TrackingGoogleadsRoasReportOutput, jG as TrackingGoogleadsSyncNowInput, jH as TrackingGoogleadsSyncNowOutput, jI as TrackingGoogleadsTrackingHealthInput, jJ as TrackingGoogleadsTrackingHealthOutput, jK as TrackingGoogleadsUsVsPlatformInput, jL as TrackingGoogleadsUsVsPlatformOutput, jM as TrackingIdentityHealthInput, jN as TrackingIdentityHealthOutput, jO as TrackingInstallDomainsCreateInput, jP as TrackingInstallDomainsCreateOutput, jQ as TrackingInstallDomainsDeleteInput, jR as TrackingInstallDomainsDeleteOutput, jS as TrackingInstallDomainsListInput, jT as TrackingInstallDomainsListOutput, jU as TrackingLinkDomainsCreateInput, jV as TrackingLinkDomainsCreateOutput, jW as TrackingLinkDomainsDeleteInput, jX as TrackingLinkDomainsDeleteOutput, jY as TrackingLinkDomainsListInput, jZ as TrackingLinkDomainsListOutput, j_ as TrackingLiveEventsListInput, j$ as TrackingLiveEventsListOutput, k0 as TrackingProfilesDeleteInput, k1 as TrackingProfilesDeleteOutput, k2 as TrackingProfilesExportInput, k3 as TrackingProfilesExportOutput, k4 as TrackingProfilesGetInput, k5 as TrackingProfilesGetOutput, k6 as TrackingProfilesListInput, k7 as TrackingProfilesListOutput, k8 as TrackingReportsAttributedJourneyInput, k9 as TrackingReportsAttributedJourneyOutput, ka as TrackingReportsRevenueBySourceInput, kb as TrackingReportsRevenueBySourceOutput, kc as TrackingReportsSourcePeopleInput, kd as TrackingReportsSourcePeopleOutput, ke as TrackingSnippetsGetInput, kf as TrackingSnippetsGetOutput } from '../client.gen-ClvT4E7P.js';
|
|
2
2
|
|
|
3
3
|
declare const trackingApiKeysCreateMutationOptions: (sdk: GeneratedClient) => {
|
|
4
4
|
mutationKey: string[];
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as GeneratedClient,
|
|
1
|
+
import { G as GeneratedClient, kg as WaitlistConfigGetInput, kh as WaitlistConfigGetOutput, ki as WaitlistConfigUpsertInput, kj as WaitlistConfigUpsertOutput, kk as WaitlistEmbedGetInput, kl as WaitlistEmbedGetOutput, km as WaitlistInvitesSendInput, kn as WaitlistInvitesSendOutput, ko as WaitlistSignupsEraseInput, kp as WaitlistSignupsEraseOutput, kq as WaitlistSignupsFunnelInput, kr as WaitlistSignupsFunnelOutput, ks as WaitlistSignupsListInput, kt as WaitlistSignupsListOutput } from '../client.gen-ClvT4E7P.cjs';
|
|
2
2
|
|
|
3
3
|
declare const waitlistConfigGetQueryOptions: (sdk: GeneratedClient, input: WaitlistConfigGetInput) => {
|
|
4
4
|
queryKey: readonly ["waitlist", "config", "get", WaitlistConfigGetInput];
|
package/dist/waitlist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { G as GeneratedClient,
|
|
1
|
+
import { G as GeneratedClient, kg as WaitlistConfigGetInput, kh as WaitlistConfigGetOutput, ki as WaitlistConfigUpsertInput, kj as WaitlistConfigUpsertOutput, kk as WaitlistEmbedGetInput, kl as WaitlistEmbedGetOutput, km as WaitlistInvitesSendInput, kn as WaitlistInvitesSendOutput, ko as WaitlistSignupsEraseInput, kp as WaitlistSignupsEraseOutput, kq as WaitlistSignupsFunnelInput, kr as WaitlistSignupsFunnelOutput, ks as WaitlistSignupsListInput, kt as WaitlistSignupsListOutput } from '../client.gen-ClvT4E7P.js';
|
|
2
2
|
|
|
3
3
|
declare const waitlistConfigGetQueryOptions: (sdk: GeneratedClient, input: WaitlistConfigGetInput) => {
|
|
4
4
|
queryKey: readonly ["waitlist", "config", "get", WaitlistConfigGetInput];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lessly/sdk-app",
|
|
3
|
-
"version": "14.
|
|
3
|
+
"version": "14.2.0",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"sideEffects": false,
|
|
6
6
|
"engines": {
|
|
@@ -69,6 +69,11 @@
|
|
|
69
69
|
"import": "./dist/organization/index.js",
|
|
70
70
|
"require": "./dist/organization/index.cjs"
|
|
71
71
|
},
|
|
72
|
+
"./playground": {
|
|
73
|
+
"types": "./dist/playground/index.d.ts",
|
|
74
|
+
"import": "./dist/playground/index.js",
|
|
75
|
+
"require": "./dist/playground/index.cjs"
|
|
76
|
+
},
|
|
72
77
|
"./realtime": {
|
|
73
78
|
"types": "./dist/realtime/index.d.ts",
|
|
74
79
|
"import": "./dist/realtime/index.js",
|
|
@@ -85,5 +90,5 @@
|
|
|
85
90
|
"require": "./dist/waitlist/index.cjs"
|
|
86
91
|
}
|
|
87
92
|
},
|
|
88
|
-
"sdkContentHash": "sha256:
|
|
93
|
+
"sdkContentHash": "sha256:3cdbb4659253804e855f89aab9f6b435b1b788500ce94f97242cf92f4bfbec95"
|
|
89
94
|
}
|
package/src/gen/bindings.gen.ts
CHANGED
|
@@ -683,19 +683,6 @@ export const bindings: BindingsMap = {
|
|
|
683
683
|
"path": "/brain/restores/:restoreId",
|
|
684
684
|
"readOnly": true
|
|
685
685
|
}
|
|
686
|
-
},
|
|
687
|
-
"usage": {
|
|
688
|
-
"report": {
|
|
689
|
-
"method": "GET",
|
|
690
|
-
"params": [
|
|
691
|
-
{
|
|
692
|
-
"in": "query",
|
|
693
|
-
"name": "days"
|
|
694
|
-
}
|
|
695
|
-
],
|
|
696
|
-
"path": "/brain/usage/report",
|
|
697
|
-
"readOnly": true
|
|
698
|
-
}
|
|
699
686
|
}
|
|
700
687
|
},
|
|
701
688
|
"consent": {
|
|
@@ -2278,6 +2265,14 @@ export const bindings: BindingsMap = {
|
|
|
2278
2265
|
"in": "body",
|
|
2279
2266
|
"name": "resources"
|
|
2280
2267
|
},
|
|
2268
|
+
{
|
|
2269
|
+
"in": "body",
|
|
2270
|
+
"name": "scaleToZero"
|
|
2271
|
+
},
|
|
2272
|
+
{
|
|
2273
|
+
"in": "body",
|
|
2274
|
+
"name": "idleMinutes"
|
|
2275
|
+
},
|
|
2281
2276
|
{
|
|
2282
2277
|
"in": "path",
|
|
2283
2278
|
"name": "id"
|
|
@@ -2285,6 +2280,17 @@ export const bindings: BindingsMap = {
|
|
|
2285
2280
|
],
|
|
2286
2281
|
"path": "/deployment/services/:id",
|
|
2287
2282
|
"readOnly": false
|
|
2283
|
+
},
|
|
2284
|
+
"wake": {
|
|
2285
|
+
"method": "POST",
|
|
2286
|
+
"params": [
|
|
2287
|
+
{
|
|
2288
|
+
"in": "path",
|
|
2289
|
+
"name": "id"
|
|
2290
|
+
}
|
|
2291
|
+
],
|
|
2292
|
+
"path": "/deployment/services/:id/wake",
|
|
2293
|
+
"readOnly": false
|
|
2288
2294
|
}
|
|
2289
2295
|
},
|
|
2290
2296
|
"ssh": {
|
|
@@ -4250,7 +4256,140 @@ export const bindings: BindingsMap = {
|
|
|
4250
4256
|
}
|
|
4251
4257
|
}
|
|
4252
4258
|
},
|
|
4259
|
+
"playground": {
|
|
4260
|
+
"analytics": {
|
|
4261
|
+
"overview": {
|
|
4262
|
+
"method": "POST",
|
|
4263
|
+
"params": [
|
|
4264
|
+
{
|
|
4265
|
+
"in": "body",
|
|
4266
|
+
"name": "limit"
|
|
4267
|
+
}
|
|
4268
|
+
],
|
|
4269
|
+
"path": "/playground/analytics/overview",
|
|
4270
|
+
"readOnly": true
|
|
4271
|
+
}
|
|
4272
|
+
},
|
|
4273
|
+
"billing": {
|
|
4274
|
+
"entitlements": {
|
|
4275
|
+
"method": "POST",
|
|
4276
|
+
"path": "/playground/billing/entitlements",
|
|
4277
|
+
"readOnly": true
|
|
4278
|
+
},
|
|
4279
|
+
"record-usage": {
|
|
4280
|
+
"method": "POST",
|
|
4281
|
+
"params": [
|
|
4282
|
+
{
|
|
4283
|
+
"in": "body",
|
|
4284
|
+
"name": "value"
|
|
4285
|
+
}
|
|
4286
|
+
],
|
|
4287
|
+
"path": "/playground/billing/usage",
|
|
4288
|
+
"readOnly": false
|
|
4289
|
+
}
|
|
4290
|
+
},
|
|
4291
|
+
"clickup": {
|
|
4292
|
+
"create-task": {
|
|
4293
|
+
"method": "POST",
|
|
4294
|
+
"params": [
|
|
4295
|
+
{
|
|
4296
|
+
"in": "body",
|
|
4297
|
+
"name": "listId"
|
|
4298
|
+
},
|
|
4299
|
+
{
|
|
4300
|
+
"in": "body",
|
|
4301
|
+
"name": "name"
|
|
4302
|
+
}
|
|
4303
|
+
],
|
|
4304
|
+
"path": "/playground/clickup/tasks",
|
|
4305
|
+
"readOnly": false
|
|
4306
|
+
},
|
|
4307
|
+
"get-last-webhook": {
|
|
4308
|
+
"method": "GET",
|
|
4309
|
+
"path": "/playground/clickup/webhooks/last",
|
|
4310
|
+
"readOnly": true
|
|
4311
|
+
},
|
|
4312
|
+
"get-overview": {
|
|
4313
|
+
"method": "GET",
|
|
4314
|
+
"path": "/playground/clickup/overview",
|
|
4315
|
+
"readOnly": true
|
|
4316
|
+
}
|
|
4317
|
+
},
|
|
4318
|
+
"gdrive": {
|
|
4319
|
+
"get-last-change": {
|
|
4320
|
+
"method": "GET",
|
|
4321
|
+
"path": "/playground/gdrive/changes/last",
|
|
4322
|
+
"readOnly": true
|
|
4323
|
+
},
|
|
4324
|
+
"read-file": {
|
|
4325
|
+
"method": "POST",
|
|
4326
|
+
"params": [
|
|
4327
|
+
{
|
|
4328
|
+
"in": "body",
|
|
4329
|
+
"name": "fileId"
|
|
4330
|
+
}
|
|
4331
|
+
],
|
|
4332
|
+
"path": "/playground/gdrive/file",
|
|
4333
|
+
"readOnly": true
|
|
4334
|
+
}
|
|
4335
|
+
},
|
|
4336
|
+
"googleads": {
|
|
4337
|
+
"read-customer": {
|
|
4338
|
+
"method": "POST",
|
|
4339
|
+
"path": "/playground/googleads/customer",
|
|
4340
|
+
"readOnly": true
|
|
4341
|
+
}
|
|
4342
|
+
},
|
|
4343
|
+
"lifecycle": {
|
|
4344
|
+
"get-state": {
|
|
4345
|
+
"method": "GET",
|
|
4346
|
+
"path": "/playground/lifecycle/state",
|
|
4347
|
+
"readOnly": true
|
|
4348
|
+
},
|
|
4349
|
+
"list-events": {
|
|
4350
|
+
"method": "GET",
|
|
4351
|
+
"path": "/playground/lifecycle/events",
|
|
4352
|
+
"readOnly": true
|
|
4353
|
+
}
|
|
4354
|
+
},
|
|
4355
|
+
"webhook": {
|
|
4356
|
+
"get-last": {
|
|
4357
|
+
"method": "GET",
|
|
4358
|
+
"path": "/playground/webhooks/last",
|
|
4359
|
+
"readOnly": true
|
|
4360
|
+
}
|
|
4361
|
+
}
|
|
4362
|
+
},
|
|
4253
4363
|
"realtime": {
|
|
4364
|
+
"apikey": {
|
|
4365
|
+
"create": {
|
|
4366
|
+
"method": "POST",
|
|
4367
|
+
"params": [
|
|
4368
|
+
{
|
|
4369
|
+
"in": "body",
|
|
4370
|
+
"name": "name"
|
|
4371
|
+
}
|
|
4372
|
+
],
|
|
4373
|
+
"path": "/realtime/api-keys",
|
|
4374
|
+
"readOnly": false
|
|
4375
|
+
},
|
|
4376
|
+
"list": {
|
|
4377
|
+
"method": "GET",
|
|
4378
|
+
"path": "/realtime/api-keys",
|
|
4379
|
+
"readOnly": true
|
|
4380
|
+
},
|
|
4381
|
+
"revoke": {
|
|
4382
|
+
"method": "DELETE",
|
|
4383
|
+
"params": [
|
|
4384
|
+
{
|
|
4385
|
+
"in": "path",
|
|
4386
|
+
"name": "id"
|
|
4387
|
+
}
|
|
4388
|
+
],
|
|
4389
|
+
"path": "/realtime/api-keys/:id",
|
|
4390
|
+
"readOnly": false
|
|
4391
|
+
}
|
|
4392
|
+
},
|
|
4254
4393
|
"archive": {
|
|
4255
4394
|
"export": {
|
|
4256
4395
|
"method": "POST",
|
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
|
@@ -82,8 +82,6 @@ import type {
|
|
|
82
82
|
BrainProductSharedMemoryResetOutput,
|
|
83
83
|
BrainRestoreStatusInput,
|
|
84
84
|
BrainRestoreStatusOutput,
|
|
85
|
-
BrainUsageReportInput,
|
|
86
|
-
BrainUsageReportOutput,
|
|
87
85
|
ConsentConfigCookieDomainUpsertInput,
|
|
88
86
|
ConsentConfigCookieDomainUpsertOutput,
|
|
89
87
|
ConsentConfigCustomizationUpsertInput,
|
|
@@ -280,6 +278,8 @@ import type {
|
|
|
280
278
|
DeploymentServiceScaleOutput,
|
|
281
279
|
DeploymentServiceUpdateInput,
|
|
282
280
|
DeploymentServiceUpdateOutput,
|
|
281
|
+
DeploymentServiceWakeInput,
|
|
282
|
+
DeploymentServiceWakeOutput,
|
|
283
283
|
DeploymentSshCommandInput,
|
|
284
284
|
DeploymentSshCommandOutput,
|
|
285
285
|
DeploymentSshKeyDeleteInput,
|
|
@@ -544,6 +544,36 @@ import type {
|
|
|
544
544
|
OrganizationRolesUpdateOutput,
|
|
545
545
|
OrganizationSelectInput,
|
|
546
546
|
OrganizationSelectOutput,
|
|
547
|
+
PlaygroundAnalyticsOverviewInput,
|
|
548
|
+
PlaygroundAnalyticsOverviewOutput,
|
|
549
|
+
PlaygroundBillingEntitlementsInput,
|
|
550
|
+
PlaygroundBillingEntitlementsOutput,
|
|
551
|
+
PlaygroundBillingRecordUsageInput,
|
|
552
|
+
PlaygroundBillingRecordUsageOutput,
|
|
553
|
+
PlaygroundClickupCreateTaskInput,
|
|
554
|
+
PlaygroundClickupCreateTaskOutput,
|
|
555
|
+
PlaygroundClickupGetLastWebhookInput,
|
|
556
|
+
PlaygroundClickupGetLastWebhookOutput,
|
|
557
|
+
PlaygroundClickupGetOverviewInput,
|
|
558
|
+
PlaygroundClickupGetOverviewOutput,
|
|
559
|
+
PlaygroundGdriveGetLastChangeInput,
|
|
560
|
+
PlaygroundGdriveGetLastChangeOutput,
|
|
561
|
+
PlaygroundGdriveReadFileInput,
|
|
562
|
+
PlaygroundGdriveReadFileOutput,
|
|
563
|
+
PlaygroundGoogleadsReadCustomerInput,
|
|
564
|
+
PlaygroundGoogleadsReadCustomerOutput,
|
|
565
|
+
PlaygroundLifecycleGetStateInput,
|
|
566
|
+
PlaygroundLifecycleGetStateOutput,
|
|
567
|
+
PlaygroundLifecycleListEventsInput,
|
|
568
|
+
PlaygroundLifecycleListEventsOutput,
|
|
569
|
+
PlaygroundWebhookGetLastInput,
|
|
570
|
+
PlaygroundWebhookGetLastOutput,
|
|
571
|
+
RealtimeApikeyCreateInput,
|
|
572
|
+
RealtimeApikeyCreateOutput,
|
|
573
|
+
RealtimeApikeyListInput,
|
|
574
|
+
RealtimeApikeyListOutput,
|
|
575
|
+
RealtimeApikeyRevokeInput,
|
|
576
|
+
RealtimeApikeyRevokeOutput,
|
|
547
577
|
RealtimeArchiveExportInput,
|
|
548
578
|
RealtimeArchiveExportOutput,
|
|
549
579
|
RealtimeArchiveExportStatusInput,
|
|
@@ -779,9 +809,6 @@ export interface GeneratedClient {
|
|
|
779
809
|
restore: {
|
|
780
810
|
status(input: BrainRestoreStatusInput): Promise<BrainRestoreStatusOutput>;
|
|
781
811
|
};
|
|
782
|
-
usage: {
|
|
783
|
-
report(input: BrainUsageReportInput): Promise<BrainUsageReportOutput>;
|
|
784
|
-
};
|
|
785
812
|
};
|
|
786
813
|
consent: {
|
|
787
814
|
'config-cookie-domain': {
|
|
@@ -961,6 +988,7 @@ export interface GeneratedClient {
|
|
|
961
988
|
rollback(input: DeploymentServiceRollbackInput): Promise<DeploymentServiceRollbackOutput>;
|
|
962
989
|
scale(input: DeploymentServiceScaleInput): Promise<DeploymentServiceScaleOutput>;
|
|
963
990
|
update(input: DeploymentServiceUpdateInput): Promise<DeploymentServiceUpdateOutput>;
|
|
991
|
+
wake(input: DeploymentServiceWakeInput): Promise<DeploymentServiceWakeOutput>;
|
|
964
992
|
};
|
|
965
993
|
ssh: {
|
|
966
994
|
command(input: DeploymentSshCommandInput): Promise<DeploymentSshCommandOutput>;
|
|
@@ -1181,7 +1209,40 @@ export interface GeneratedClient {
|
|
|
1181
1209
|
update(input: OrganizationRolesUpdateInput): Promise<OrganizationRolesUpdateOutput>;
|
|
1182
1210
|
};
|
|
1183
1211
|
};
|
|
1212
|
+
playground: {
|
|
1213
|
+
analytics: {
|
|
1214
|
+
overview(input: PlaygroundAnalyticsOverviewInput): Promise<PlaygroundAnalyticsOverviewOutput>;
|
|
1215
|
+
};
|
|
1216
|
+
billing: {
|
|
1217
|
+
entitlements(input: PlaygroundBillingEntitlementsInput): Promise<PlaygroundBillingEntitlementsOutput>;
|
|
1218
|
+
'record-usage'(input: PlaygroundBillingRecordUsageInput): Promise<PlaygroundBillingRecordUsageOutput>;
|
|
1219
|
+
};
|
|
1220
|
+
clickup: {
|
|
1221
|
+
'create-task'(input: PlaygroundClickupCreateTaskInput): Promise<PlaygroundClickupCreateTaskOutput>;
|
|
1222
|
+
'get-last-webhook'(input: PlaygroundClickupGetLastWebhookInput): Promise<PlaygroundClickupGetLastWebhookOutput>;
|
|
1223
|
+
'get-overview'(input: PlaygroundClickupGetOverviewInput): Promise<PlaygroundClickupGetOverviewOutput>;
|
|
1224
|
+
};
|
|
1225
|
+
gdrive: {
|
|
1226
|
+
'get-last-change'(input: PlaygroundGdriveGetLastChangeInput): Promise<PlaygroundGdriveGetLastChangeOutput>;
|
|
1227
|
+
'read-file'(input: PlaygroundGdriveReadFileInput): Promise<PlaygroundGdriveReadFileOutput>;
|
|
1228
|
+
};
|
|
1229
|
+
googleads: {
|
|
1230
|
+
'read-customer'(input: PlaygroundGoogleadsReadCustomerInput): Promise<PlaygroundGoogleadsReadCustomerOutput>;
|
|
1231
|
+
};
|
|
1232
|
+
lifecycle: {
|
|
1233
|
+
'get-state'(input: PlaygroundLifecycleGetStateInput): Promise<PlaygroundLifecycleGetStateOutput>;
|
|
1234
|
+
'list-events'(input: PlaygroundLifecycleListEventsInput): Promise<PlaygroundLifecycleListEventsOutput>;
|
|
1235
|
+
};
|
|
1236
|
+
webhook: {
|
|
1237
|
+
'get-last'(input: PlaygroundWebhookGetLastInput): Promise<PlaygroundWebhookGetLastOutput>;
|
|
1238
|
+
};
|
|
1239
|
+
};
|
|
1184
1240
|
realtime: {
|
|
1241
|
+
apikey: {
|
|
1242
|
+
create(input: RealtimeApikeyCreateInput): Promise<RealtimeApikeyCreateOutput>;
|
|
1243
|
+
list(input: RealtimeApikeyListInput): Promise<RealtimeApikeyListOutput>;
|
|
1244
|
+
revoke(input: RealtimeApikeyRevokeInput): Promise<RealtimeApikeyRevokeOutput>;
|
|
1245
|
+
};
|
|
1185
1246
|
archive: {
|
|
1186
1247
|
export(input: RealtimeArchiveExportInput): Promise<RealtimeArchiveExportOutput>;
|
|
1187
1248
|
get(input: RealtimeArchiveGetInput): Promise<RealtimeArchiveGetOutput>;
|
|
@@ -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, DeploymentSshCommandInput, DeploymentSshCommandOutput, DeploymentSshKeyDeleteInput, DeploymentSshKeyDeleteOutput, DeploymentSshKeyListInput, DeploymentSshKeyListOutput, DeploymentSshKeyRegisterInput, DeploymentSshKeyRegisterOutput, 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, 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, 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';
|
|
@@ -121,6 +121,7 @@ import type {
|
|
|
121
121
|
DeploymentServiceRollbackInput,
|
|
122
122
|
DeploymentServiceScaleInput,
|
|
123
123
|
DeploymentServiceUpdateInput,
|
|
124
|
+
DeploymentServiceWakeInput,
|
|
124
125
|
DeploymentSshCommandInput,
|
|
125
126
|
DeploymentSshCommandOutput,
|
|
126
127
|
DeploymentSshKeyDeleteInput,
|
|
@@ -570,6 +571,11 @@ export const deploymentServiceUpdateMutationOptions = (sdk: GeneratedClient) =>
|
|
|
570
571
|
mutationFn: (input: DeploymentServiceUpdateInput) => sdk['deployment']['service']['update'](input),
|
|
571
572
|
});
|
|
572
573
|
|
|
574
|
+
export const deploymentServiceWakeMutationOptions = (sdk: GeneratedClient) => ({
|
|
575
|
+
mutationKey: ['deployment', 'service', 'wake'],
|
|
576
|
+
mutationFn: (input: DeploymentServiceWakeInput) => sdk['deployment']['service']['wake'](input),
|
|
577
|
+
});
|
|
578
|
+
|
|
573
579
|
export const deploymentSshCommandQueryOptions = (sdk: GeneratedClient, input: DeploymentSshCommandInput) => ({
|
|
574
580
|
queryKey: ['deployment', 'ssh', 'command', input] as const,
|
|
575
581
|
queryFn: () => sdk['deployment']['ssh']['command'](input),
|
package/src/gen/manifest.gen.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// AUTOGENERATED by scripts/generate.ts — do not edit.
|
|
2
|
-
export const namespaces = ['analytics', 'brain', 'consent', 'deployment', 'mail', 'organization', 'realtime', 'tracking', 'waitlist'] as const;
|
|
2
|
+
export const namespaces = ['analytics', 'brain', 'consent', 'deployment', 'mail', 'organization', 'playground', 'realtime', 'tracking', 'waitlist'] as const;
|
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
// AUTOGENERATED by scripts/generate.ts — do not edit.
|
|
2
|
+
export * from './queryOptions.gen';
|
|
3
|
+
export type { PlaygroundAnalyticsOverviewInput, PlaygroundAnalyticsOverviewOutput, PlaygroundBillingEntitlementsInput, PlaygroundBillingEntitlementsOutput, PlaygroundBillingRecordUsageInput, PlaygroundBillingRecordUsageOutput, PlaygroundClickupCreateTaskInput, PlaygroundClickupCreateTaskOutput, PlaygroundClickupGetLastWebhookInput, PlaygroundClickupGetLastWebhookOutput, PlaygroundClickupGetOverviewInput, PlaygroundClickupGetOverviewOutput, PlaygroundGdriveGetLastChangeInput, PlaygroundGdriveGetLastChangeOutput, PlaygroundGdriveReadFileInput, PlaygroundGdriveReadFileOutput, PlaygroundGoogleadsReadCustomerInput, PlaygroundGoogleadsReadCustomerOutput, PlaygroundLifecycleGetStateInput, PlaygroundLifecycleGetStateOutput, PlaygroundLifecycleListEventsInput, PlaygroundLifecycleListEventsOutput, PlaygroundWebhookGetLastInput, PlaygroundWebhookGetLastOutput } from '../types.gen';
|