@slates/provider-handler 1.0.0-rc.3 → 1.0.0-rc.31

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 (70) hide show
  1. package/dist/index.cjs +1462 -2
  2. package/dist/index.d.cts +8 -0
  3. package/dist/index.d.ts +6 -3
  4. package/dist/index.module.js +1439 -2
  5. package/package.json +12 -11
  6. package/src/attachments.test.ts +171 -0
  7. package/src/index.ts +1054 -136
  8. package/src/pQueue.test.ts +18 -0
  9. package/src/pQueue.ts +18 -0
  10. package/src/spec.ts +130 -21
  11. package/src/validation.ts +1 -1
  12. package/src/webhook.test.ts +65 -0
  13. package/src/webhook.ts +69 -0
  14. package/dist/action/action.d.ts +0 -90
  15. package/dist/action/action.d.ts.map +0 -1
  16. package/dist/action/builder.d.ts +0 -27
  17. package/dist/action/builder.d.ts.map +0 -1
  18. package/dist/action/index.d.ts +0 -5
  19. package/dist/action/index.d.ts.map +0 -1
  20. package/dist/action/tool.d.ts +0 -11
  21. package/dist/action/tool.d.ts.map +0 -1
  22. package/dist/action/trigger.d.ts +0 -14
  23. package/dist/action/trigger.d.ts.map +0 -1
  24. package/dist/auth/auth.d.ts +0 -26
  25. package/dist/auth/auth.d.ts.map +0 -1
  26. package/dist/auth/index.d.ts +0 -3
  27. package/dist/auth/index.d.ts.map +0 -1
  28. package/dist/auth/types.d.ts +0 -148
  29. package/dist/auth/types.d.ts.map +0 -1
  30. package/dist/axios/index.d.ts +0 -4
  31. package/dist/axios/index.d.ts.map +0 -1
  32. package/dist/config/config.d.ts +0 -22
  33. package/dist/config/config.d.ts.map +0 -1
  34. package/dist/config/index.d.ts +0 -2
  35. package/dist/config/index.d.ts.map +0 -1
  36. package/dist/context/context.d.ts +0 -20
  37. package/dist/context/context.d.ts.map +0 -1
  38. package/dist/context/hook.d.ts +0 -4
  39. package/dist/context/hook.d.ts.map +0 -1
  40. package/dist/context/index.d.ts +0 -2
  41. package/dist/context/index.d.ts.map +0 -1
  42. package/dist/error/base.d.ts +0 -5
  43. package/dist/error/base.d.ts.map +0 -1
  44. package/dist/error/declaration.d.ts +0 -6
  45. package/dist/error/declaration.d.ts.map +0 -1
  46. package/dist/error/index.d.ts +0 -3
  47. package/dist/error/index.d.ts.map +0 -1
  48. package/dist/index.cjs.map +0 -1
  49. package/dist/index.d.ts.map +0 -1
  50. package/dist/index.modern.js +0 -2
  51. package/dist/index.modern.js.map +0 -1
  52. package/dist/index.module.js.map +0 -1
  53. package/dist/index.umd.js +0 -2
  54. package/dist/index.umd.js.map +0 -1
  55. package/dist/spec.d.ts +0 -14
  56. package/dist/spec.d.ts.map +0 -1
  57. package/dist/specification/index.d.ts +0 -3
  58. package/dist/specification/index.d.ts.map +0 -1
  59. package/dist/specification/slate.d.ts +0 -15
  60. package/dist/specification/slate.d.ts.map +0 -1
  61. package/dist/specification/specification.d.ts +0 -30
  62. package/dist/specification/specification.d.ts.map +0 -1
  63. package/dist/specification/zero.d.ts +0 -13
  64. package/dist/specification/zero.d.ts.map +0 -1
  65. package/dist/state.d.ts +0 -8
  66. package/dist/state.d.ts.map +0 -1
  67. package/dist/tokens.d.ts +0 -34
  68. package/dist/tokens.d.ts.map +0 -1
  69. package/dist/validation.d.ts +0 -5
  70. package/dist/validation.d.ts.map +0 -1
@@ -0,0 +1,18 @@
1
+ import { describe, expect, it } from 'vitest';
2
+ import { resolveDefaultExport } from './pQueue';
3
+
4
+ class Example {
5
+ value: number;
6
+ constructor(value: number) {
7
+ this.value = value;
8
+ }
9
+ }
10
+
11
+ describe('resolveDefaultExport', () => {
12
+ it('unwraps nested CJS default exports from bundlers', () => {
13
+ expect(resolveDefaultExport<typeof Example>({ default: { default: Example } })).toBe(
14
+ Example
15
+ );
16
+ expect(new (resolveDefaultExport<typeof Example>({ default: Example }))(3).value).toBe(3);
17
+ });
18
+ });
package/src/pQueue.ts ADDED
@@ -0,0 +1,18 @@
1
+ import PQueueImport from 'p-queue';
2
+
3
+ export let resolveDefaultExport = <T>(value: unknown): T => {
4
+ let current = value;
5
+
6
+ for (let i = 0; i < 4; i++) {
7
+ if (typeof current === 'function') return current as T;
8
+ if (current && typeof current === 'object' && 'default' in current) {
9
+ current = (current as { default: unknown }).default;
10
+ continue;
11
+ }
12
+ break;
13
+ }
14
+
15
+ throw new TypeError('Module export is not a constructor');
16
+ };
17
+
18
+ export let PQueue = resolveDefaultExport<typeof PQueueImport>(PQueueImport);
package/src/spec.ts CHANGED
@@ -1,6 +1,16 @@
1
1
  import { badRequestError, notFoundError, ServiceError } from '@lowerdeck/error';
2
- import { SlateAuthenticationMethod, SlatesAction } from '@slates/proto';
3
- import { Slate, SlateDefaultPollingIntervalSeconds } from '@slates/provider';
2
+ import type {
3
+ SlateAuthenticationMethod,
4
+ SlatesAction,
5
+ SlateAdapter as SlatesAdapter,
6
+ SlatesTriggerGroup
7
+ } from '@slates/proto';
8
+ import {
9
+ type Slate,
10
+ type SlateAdapter,
11
+ type SlateTrigger,
12
+ SlateDefaultPollingIntervalSeconds
13
+ } from '@slates/provider';
4
14
  import z from 'zod';
5
15
  import { toJsonSchema } from './validation';
6
16
 
@@ -8,7 +18,7 @@ export let getAuthMethod = <ConfigType extends {}, AuthType extends {}>(
8
18
  slate: Slate<ConfigType, AuthType>,
9
19
  authenticationMethodId: string
10
20
  ) => {
11
- let authMethod = slate.spec.auth.authStack.find(m => m.key == authenticationMethodId);
21
+ let authMethod = slate.spec.auth.authStack.find(m => m.key === authenticationMethodId);
12
22
  if (!authMethod) {
13
23
  throw new ServiceError(
14
24
  badRequestError({
@@ -49,14 +59,16 @@ export let mapAuthMethod = <ConfigType extends {}, AuthType extends {}>(
49
59
  enabled: !!m.onInputChanged
50
60
  },
51
61
  getProfile: { enabled: !!m.getProfile }
52
- }
62
+ },
63
+
64
+ docs: m.docs ?? []
53
65
  });
54
66
 
55
67
  export let getAction = <ConfigType extends {}, AuthType extends {}>(
56
68
  slate: Slate<ConfigType, AuthType>,
57
69
  actionId: string
58
70
  ) => {
59
- let action = slate.actions.find(m => m.key == actionId);
71
+ let action = slate.actions.find(m => m.key === actionId);
60
72
  if (!action) {
61
73
  throw new ServiceError(notFoundError(`action`, actionId));
62
74
  }
@@ -64,6 +76,26 @@ export let getAction = <ConfigType extends {}, AuthType extends {}>(
64
76
  return action;
65
77
  };
66
78
 
79
+ export let getAdapter = <ConfigType extends {}, AuthType extends {}>(
80
+ slate: Slate<ConfigType, AuthType>,
81
+ adapterId: string
82
+ ) => {
83
+ let adapter = slate.adapters.find(m => m.id === adapterId);
84
+ if (!adapter) {
85
+ throw new ServiceError(notFoundError(`adapter`, adapterId));
86
+ }
87
+
88
+ return adapter;
89
+ };
90
+
91
+ export let mapAdapter = <ConfigType extends {}, AuthType extends {}>(
92
+ adapter: SlateAdapter<ConfigType, AuthType>
93
+ ): SlatesAdapter => ({
94
+ id: adapter.id,
95
+ name: adapter.name,
96
+ capabilities: adapter.capabilities
97
+ });
98
+
67
99
  export let getActionWithType = <
68
100
  Type extends 'tool' | 'trigger',
69
101
  ConfigType extends {},
@@ -74,7 +106,7 @@ export let getActionWithType = <
74
106
  actionId: string
75
107
  ): ReturnType<typeof getAction<ConfigType, AuthType>> & { type: Type } => {
76
108
  let action = getAction(slate, actionId);
77
- if (action.type != type) {
109
+ if (action.type !== type) {
78
110
  throw new ServiceError(
79
111
  badRequestError({
80
112
  message: `Action with ID ${actionId} is not of type ${type}`
@@ -86,7 +118,7 @@ export let getActionWithType = <
86
118
  };
87
119
 
88
120
  export let mapAction = <ConfigType extends {}, AuthType extends {}>(
89
- slate: Slate<ConfigType, AuthType>,
121
+ _slate: Slate<ConfigType, AuthType>,
90
122
  a: ReturnType<typeof getAction<ConfigType, AuthType>>
91
123
  ): SlatesAction => {
92
124
  let base = {
@@ -97,16 +129,21 @@ export let mapAction = <ConfigType extends {}, AuthType extends {}>(
97
129
  constraints: a.constraints,
98
130
  tags: a.tags,
99
131
  metadata: a.metadata,
132
+ scopes: a.scopes,
133
+ authMethods: a.authMethods,
134
+ docs: a.docs ?? [],
135
+ ...(a.adapter ? { adapter: a.adapter } : {}),
100
136
 
101
137
  inputSchema: toJsonSchema(a.inputSchema),
102
138
  outputSchema: toJsonSchema(a.outputSchema)
103
139
  };
104
140
 
105
- if (a.type == 'tool') {
141
+ if (a.type === 'tool') {
106
142
  return {
107
143
  ...base,
108
144
  type: 'action.tool',
109
- capabilities: {}
145
+ capabilities: {},
146
+ isPublic: a.isPublic
110
147
  };
111
148
  }
112
149
 
@@ -114,17 +151,89 @@ export let mapAction = <ConfigType extends {}, AuthType extends {}>(
114
151
  ...base,
115
152
  type: 'action.trigger',
116
153
  capabilities: {},
117
-
118
- invocation:
119
- a.source == 'polling'
120
- ? {
121
- type: 'polling',
122
- intervalSeconds: a.polling.intervalInSeconds ?? SlateDefaultPollingIntervalSeconds
123
- }
124
- : {
125
- type: 'webhook',
126
- autoRegistration: !!a.autoRegisterWebhook,
127
- autoUnregistration: !!a.autoUnregisterWebhook
128
- }
154
+ triggerGroupId: a.triggerGroup.key
129
155
  };
130
156
  };
157
+
158
+ export let getTriggerGroup = <ConfigType extends {}, AuthType extends {}>(
159
+ slate: Slate<ConfigType, AuthType>,
160
+ triggerGroupId: string
161
+ ) => {
162
+ let group = slate.triggerGroups.find(g => g.key === triggerGroupId);
163
+ if (!group) {
164
+ throw new ServiceError(notFoundError(`trigger_group`, triggerGroupId));
165
+ }
166
+
167
+ return group;
168
+ };
169
+
170
+ export let getTriggersForGroup = <ConfigType extends {}, AuthType extends {}>(
171
+ slate: Slate<ConfigType, AuthType>,
172
+ triggerGroupId: string
173
+ ): SlateTrigger<ConfigType, AuthType, any, any>[] =>
174
+ slate.actions.filter(
175
+ (action): action is SlateTrigger<ConfigType, AuthType, any, any> =>
176
+ action.type === 'trigger' && action.triggerGroup.key === triggerGroupId
177
+ );
178
+
179
+ export let evaluateTriggerMatches = <ConfigType extends {}, AuthType extends {}>(
180
+ slate: Slate<ConfigType, AuthType>,
181
+ triggerGroupId: string,
182
+ payload: unknown
183
+ ): string[] =>
184
+ getTriggersForGroup(slate, triggerGroupId)
185
+ .filter(trigger => trigger.matches(payload))
186
+ .map(trigger => trigger.key);
187
+
188
+ export let getWebhookAutoRegistration = <ConfigType extends {}, AuthType extends {}>(
189
+ group: ReturnType<typeof getTriggerGroup<ConfigType, AuthType>>
190
+ ) => {
191
+ if (group.source !== 'webhook' || !group.webhook?.autoRegistration) {
192
+ throw new ServiceError(
193
+ badRequestError({
194
+ message: `Trigger group does not support webhook auto-registration: ${group.key}`
195
+ })
196
+ );
197
+ }
198
+
199
+ return group.webhook.autoRegistration;
200
+ };
201
+
202
+ export let getWebhookManualRegistration = <ConfigType extends {}, AuthType extends {}>(
203
+ group: ReturnType<typeof getTriggerGroup<ConfigType, AuthType>>
204
+ ) => {
205
+ if (group.source !== 'webhook' || !group.webhook?.manualRegistration) {
206
+ throw new ServiceError(
207
+ badRequestError({
208
+ message: `Trigger group does not support manual webhook registration: ${group.key}`
209
+ })
210
+ );
211
+ }
212
+
213
+ return group.webhook.manualRegistration;
214
+ };
215
+
216
+ export let mapTriggerGroup = <ConfigType extends {}, AuthType extends {}>(
217
+ group: ReturnType<typeof getTriggerGroup<ConfigType, AuthType>>
218
+ ): SlatesTriggerGroup => ({
219
+ id: group.key,
220
+ name: group.name,
221
+ description: group.description,
222
+ metadata: group.metadata,
223
+ invocation:
224
+ group.source === 'polling'
225
+ ? {
226
+ type: 'polling',
227
+ intervalSeconds: group.polling?.intervalSeconds ?? SlateDefaultPollingIntervalSeconds
228
+ }
229
+ : {
230
+ type: 'webhook',
231
+ registration: group.webhook?.manualRegistration
232
+ ? {
233
+ mode: 'manual',
234
+ userConfigSchema: toJsonSchema(group.webhook.manualRegistration.userConfigSchema),
235
+ fullConfigSchema: toJsonSchema(group.webhook.manualRegistration.fullConfigSchema)
236
+ }
237
+ : { mode: 'auto' }
238
+ }
239
+ });
package/src/validation.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import { ServiceError, validationError } from '@lowerdeck/error';
2
- import z from 'zod';
2
+ import type z from 'zod';
3
3
 
4
4
  export let zodToValidationError = (entity: string, message: string, e: z.ZodError) => {
5
5
  return validationError({
@@ -0,0 +1,65 @@
1
+ import { describe, expect, it } from 'vitest';
2
+ import {
3
+ SLATE_WEBHOOK_RESPONSE_MAX_BODY_BYTES,
4
+ serializeWebhookHttpResponse
5
+ } from './webhook';
6
+
7
+ describe('serializeWebhookHttpResponse', () => {
8
+ it('serializes a Response with status, headers, and body', async () => {
9
+ await expect(
10
+ serializeWebhookHttpResponse(
11
+ new Response('created', {
12
+ status: 201,
13
+ headers: {
14
+ 'content-type': 'text/plain',
15
+ 'x-webhook-result': 'accepted'
16
+ }
17
+ })
18
+ )
19
+ ).resolves.toEqual({
20
+ status: 201,
21
+ headers: {
22
+ 'content-type': 'text/plain',
23
+ 'x-webhook-result': 'accepted'
24
+ },
25
+ body: {
26
+ encoding: 'base64',
27
+ content: Buffer.from('created').toString('base64')
28
+ }
29
+ });
30
+ });
31
+
32
+ it('applies defaults to a plain response init', async () => {
33
+ await expect(serializeWebhookHttpResponse({ body: 'ok' })).resolves.toEqual({
34
+ status: 200,
35
+ headers: {},
36
+ body: {
37
+ encoding: 'base64',
38
+ content: Buffer.from('ok').toString('base64')
39
+ }
40
+ });
41
+ });
42
+
43
+ it('serializes binary response bodies without changing their bytes', async () => {
44
+ await expect(
45
+ serializeWebhookHttpResponse({
46
+ status: 202,
47
+ body: new Uint8Array([0, 127, 128, 255])
48
+ })
49
+ ).resolves.toMatchObject({
50
+ status: 202,
51
+ body: {
52
+ encoding: 'base64',
53
+ content: Buffer.from([0, 127, 128, 255]).toString('base64')
54
+ }
55
+ });
56
+ });
57
+
58
+ it('rejects bodies larger than one MiB', async () => {
59
+ await expect(
60
+ serializeWebhookHttpResponse({
61
+ body: new Uint8Array(SLATE_WEBHOOK_RESPONSE_MAX_BODY_BYTES + 1)
62
+ })
63
+ ).rejects.toThrow('Webhook response body exceeds');
64
+ });
65
+ });
package/src/webhook.ts ADDED
@@ -0,0 +1,69 @@
1
+ import { badRequestError, ServiceError } from '@lowerdeck/error';
2
+ import type { SlatesWebhookHttpResponse } from '@slates/proto';
3
+ import type { SlateWebhookHttpResponseInit } from '@slates/provider';
4
+
5
+ export let SLATE_WEBHOOK_RESPONSE_MAX_BODY_BYTES = 1024 * 1024;
6
+
7
+ let serializeBody = (body: Uint8Array | null): SlatesWebhookHttpResponse['body'] => {
8
+ if (body === null) return null;
9
+
10
+ if (body.byteLength > SLATE_WEBHOOK_RESPONSE_MAX_BODY_BYTES) {
11
+ throw new ServiceError(
12
+ badRequestError({
13
+ message: `Webhook response body exceeds the ${SLATE_WEBHOOK_RESPONSE_MAX_BODY_BYTES}-byte limit`
14
+ })
15
+ );
16
+ }
17
+
18
+ return {
19
+ encoding: 'base64',
20
+ content: Buffer.from(body).toString('base64')
21
+ };
22
+ };
23
+
24
+ let headersToObject = (headers: Headers) => {
25
+ let result: Record<string, string> = {};
26
+ headers.forEach((value, key) => {
27
+ result[key] = value;
28
+ });
29
+ return result;
30
+ };
31
+
32
+ let validateStatus = (status: number) => {
33
+ if (!Number.isInteger(status) || status < 100 || status > 599) {
34
+ throw new ServiceError(
35
+ badRequestError({
36
+ message: 'Webhook response status must be an integer between 100 and 599'
37
+ })
38
+ );
39
+ }
40
+ };
41
+
42
+ export let serializeWebhookHttpResponse = async (
43
+ response: Response | SlateWebhookHttpResponseInit
44
+ ): Promise<SlatesWebhookHttpResponse> => {
45
+ if (response instanceof Response) {
46
+ validateStatus(response.status);
47
+ return {
48
+ status: response.status,
49
+ headers: headersToObject(response.headers),
50
+ body: serializeBody(
51
+ response.body === null ? null : new Uint8Array(await response.arrayBuffer())
52
+ )
53
+ };
54
+ }
55
+
56
+ let status = response.status ?? 200;
57
+ validateStatus(status);
58
+
59
+ let body =
60
+ typeof response.body === 'string'
61
+ ? new TextEncoder().encode(response.body)
62
+ : (response.body ?? null);
63
+
64
+ return {
65
+ status,
66
+ headers: response.headers ?? {},
67
+ body: serializeBody(body)
68
+ };
69
+ };
@@ -1,90 +0,0 @@
1
- import { z } from 'zod';
2
- import { SlateContext } from '../context';
3
- import { SlateSpecification } from '../specification/specification';
4
- export type SlateActionType = 'tool' | 'trigger';
5
- export interface SlateActionParameters {
6
- key: string;
7
- name: string;
8
- description?: string;
9
- instructions?: string[];
10
- constraints?: string[];
11
- tags?: {
12
- destructive?: boolean;
13
- readOnly?: boolean;
14
- [key: string]: boolean | undefined;
15
- };
16
- }
17
- export type SlateToolInvocationHandler<ConfigType extends {}, AuthType extends {}, InputType extends {}, OutputType extends {}> = (context: SlateContext<ConfigType, AuthType, InputType>) => Promise<{
18
- output: OutputType;
19
- message: string;
20
- }>;
21
- export type SlateTriggerMappingHandler<ConfigType extends {}, AuthType extends {}, InputType extends {}, OutputType extends {}> = (context: SlateContext<ConfigType, AuthType, InputType>) => Promise<{
22
- type: string;
23
- id: string;
24
- output: OutputType;
25
- }>;
26
- export type SlateTriggerPollingHandler<ConfigType extends {}, AuthType extends {}, InputType extends {}> = (context: SlateContext<ConfigType, AuthType, {
27
- state: any;
28
- }>) => Promise<{
29
- inputs: InputType[];
30
- updatedState?: any;
31
- }>;
32
- export type SlateTriggerWebhookRequestHandler<ConfigType extends {}, AuthType extends {}, InputType extends {}> = (context: SlateContext<ConfigType, AuthType, {
33
- request: Request;
34
- state: any;
35
- }>) => Promise<{
36
- inputs: InputType[];
37
- updatedState?: any;
38
- }>;
39
- export type SlateTriggerWebhookAutoRegistrationHandler<ConfigType extends {}, AuthType extends {}> = (context: SlateContext<ConfigType, AuthType, {
40
- webhookBaseUrl: string;
41
- }>) => Promise<{
42
- registrationDetails: any;
43
- }>;
44
- export type SlateTriggerWebhookAutoUnregistrationHandler<ConfigType extends {}, AuthType extends {}> = (context: SlateContext<ConfigType, AuthType, {
45
- webhookBaseUrl: string;
46
- registrationDetails: any;
47
- }>) => Promise<unknown>;
48
- export interface SlateActionParametersTool<ConfigType extends {}, AuthType extends {}, InputType extends {}, OutputType extends {}> {
49
- handlerInvocation: SlateToolInvocationHandler<ConfigType, AuthType, InputType, OutputType>;
50
- }
51
- export interface SlatePollingOptions {
52
- intervalInSeconds?: number;
53
- }
54
- export interface SlateActionParametersTrigger<ConfigType extends {}, AuthType extends {}, InputType extends {}, OutputType extends {}> {
55
- source: 'polling' | 'webhook';
56
- polling?: SlatePollingOptions;
57
- handleEvent: SlateTriggerMappingHandler<ConfigType, AuthType, InputType, OutputType>;
58
- handleRequest?: SlateTriggerWebhookRequestHandler<ConfigType, AuthType, InputType>;
59
- pollEvents?: SlateTriggerPollingHandler<ConfigType, AuthType, InputType>;
60
- autoRegisterWebhook?: SlateTriggerWebhookAutoRegistrationHandler<ConfigType, AuthType>;
61
- autoUnregisterWebhook?: SlateTriggerWebhookAutoUnregistrationHandler<ConfigType, AuthType>;
62
- }
63
- export type SlateActionParametersAny<ConfigType extends {}, AuthType extends {}, InputType extends {}, OutputType extends {}> = SlateActionParametersTool<ConfigType, AuthType, InputType, OutputType> | SlateActionParametersTrigger<ConfigType, AuthType, InputType, OutputType>;
64
- export type SlateActionCreateParameters<ConfigType extends {}, AuthType extends {}, InputType extends {}, OutputType extends {}> = SlateActionParametersAny<ConfigType, AuthType, InputType, OutputType> & SlateActionParameters & {
65
- configSchema: z.ZodType<ConfigType>;
66
- authSchema: z.ZodType<AuthType>;
67
- inputSchema: z.ZodType<InputType>;
68
- outputSchema: z.ZodType<OutputType>;
69
- };
70
- export declare abstract class SlateAction<Type extends SlateActionType, ConfigType extends {}, AuthType extends {}, InputType extends {}, OutputType extends {}> {
71
- readonly type: Type;
72
- protected readonly _spec: SlateSpecification<ConfigType, AuthType>;
73
- protected readonly _inputSchema: z.ZodType<InputType>;
74
- protected readonly _outputSchema: z.ZodType<OutputType>;
75
- protected readonly _params: SlateActionParameters;
76
- constructor(type: Type, _spec: SlateSpecification<ConfigType, AuthType>, _inputSchema: z.ZodType<InputType>, _outputSchema: z.ZodType<OutputType>, _params: SlateActionParameters);
77
- get configSchema(): z.ZodType<ConfigType, unknown, z.core.$ZodTypeInternals<ConfigType, unknown>>;
78
- get inputSchema(): z.ZodType<InputType, unknown, z.core.$ZodTypeInternals<InputType, unknown>>;
79
- get outputSchema(): z.ZodType<OutputType, unknown, z.core.$ZodTypeInternals<OutputType, unknown>>;
80
- get parameters(): SlateActionParameters;
81
- get key(): string;
82
- get name(): string;
83
- get description(): string | undefined;
84
- get tags(): {
85
- [key: string]: boolean | undefined;
86
- destructive?: boolean;
87
- readOnly?: boolean;
88
- } | undefined;
89
- }
90
- //# sourceMappingURL=action.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"action.d.ts","sourceRoot":"","sources":["../../src/action/action.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,YAAY,EAAE,MAAM,YAAY,CAAC;AAC1C,OAAO,EAAE,kBAAkB,EAAE,MAAM,gCAAgC,CAAC;AAEpE,MAAM,MAAM,eAAe,GAAG,MAAM,GAAG,SAAS,CAAC;AAEjD,MAAM,WAAW,qBAAqB;IACpC,GAAG,EAAE,MAAM,CAAC;IACZ,IAAI,EAAE,MAAM,CAAC;IACb,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,YAAY,CAAC,EAAE,MAAM,EAAE,CAAC;IACxB,WAAW,CAAC,EAAE,MAAM,EAAE,CAAC;IACvB,IAAI,CAAC,EAAE;QACL,WAAW,CAAC,EAAE,OAAO,CAAC;QACtB,QAAQ,CAAC,EAAE,OAAO,CAAC;QACnB,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,GAAG,SAAS,CAAC;KACpC,CAAC;CACH;AAED,MAAM,MAAM,0BAA0B,CACpC,UAAU,SAAS,EAAE,EACrB,QAAQ,SAAS,EAAE,EACnB,SAAS,SAAS,EAAE,EACpB,UAAU,SAAS,EAAE,IACnB,CAAC,OAAO,EAAE,YAAY,CAAC,UAAU,EAAE,QAAQ,EAAE,SAAS,CAAC,KAAK,OAAO,CAAC;IACtE,MAAM,EAAE,UAAU,CAAC;IACnB,OAAO,EAAE,MAAM,CAAC;CACjB,CAAC,CAAC;AAEH,MAAM,MAAM,0BAA0B,CACpC,UAAU,SAAS,EAAE,EACrB,QAAQ,SAAS,EAAE,EACnB,SAAS,SAAS,EAAE,EACpB,UAAU,SAAS,EAAE,IACnB,CAAC,OAAO,EAAE,YAAY,CAAC,UAAU,EAAE,QAAQ,EAAE,SAAS,CAAC,KAAK,OAAO,CAAC;IACtE,IAAI,EAAE,MAAM,CAAC;IACb,EAAE,EAAE,MAAM,CAAC;IACX,MAAM,EAAE,UAAU,CAAC;CACpB,CAAC,CAAC;AAEH,MAAM,MAAM,0BAA0B,CACpC,UAAU,SAAS,EAAE,EACrB,QAAQ,SAAS,EAAE,EACnB,SAAS,SAAS,EAAE,IAClB,CAAC,OAAO,EAAE,YAAY,CAAC,UAAU,EAAE,QAAQ,EAAE;IAAE,KAAK,EAAE,GAAG,CAAA;CAAE,CAAC,KAAK,OAAO,CAAC;IAC3E,MAAM,EAAE,SAAS,EAAE,CAAC;IACpB,YAAY,CAAC,EAAE,GAAG,CAAC;CACpB,CAAC,CAAC;AAEH,MAAM,MAAM,iCAAiC,CAC3C,UAAU,SAAS,EAAE,EACrB,QAAQ,SAAS,EAAE,EACnB,SAAS,SAAS,EAAE,IAClB,CACF,OAAO,EAAE,YAAY,CAAC,UAAU,EAAE,QAAQ,EAAE;IAAE,OAAO,EAAE,OAAO,CAAC;IAAC,KAAK,EAAE,GAAG,CAAA;CAAE,CAAC,KAC1E,OAAO,CAAC;IACX,MAAM,EAAE,SAAS,EAAE,CAAC;IACpB,YAAY,CAAC,EAAE,GAAG,CAAC;CACpB,CAAC,CAAC;AAEH,MAAM,MAAM,0CAA0C,CACpD,UAAU,SAAS,EAAE,EACrB,QAAQ,SAAS,EAAE,IACjB,CAAC,OAAO,EAAE,YAAY,CAAC,UAAU,EAAE,QAAQ,EAAE;IAAE,cAAc,EAAE,MAAM,CAAA;CAAE,CAAC,KAAK,OAAO,CAAC;IACvF,mBAAmB,EAAE,GAAG,CAAC;CAC1B,CAAC,CAAC;AAEH,MAAM,MAAM,4CAA4C,CACtD,UAAU,SAAS,EAAE,EACrB,QAAQ,SAAS,EAAE,IACjB,CACF,OAAO,EAAE,YAAY,CACnB,UAAU,EACV,QAAQ,EACR;IAAE,cAAc,EAAE,MAAM,CAAC;IAAC,mBAAmB,EAAE,GAAG,CAAA;CAAE,CACrD,KACE,OAAO,CAAC,OAAO,CAAC,CAAC;AAEtB,MAAM,WAAW,yBAAyB,CACxC,UAAU,SAAS,EAAE,EACrB,QAAQ,SAAS,EAAE,EACnB,SAAS,SAAS,EAAE,EACpB,UAAU,SAAS,EAAE;IAErB,iBAAiB,EAAE,0BAA0B,CAAC,UAAU,EAAE,QAAQ,EAAE,SAAS,EAAE,UAAU,CAAC,CAAC;CAC5F;AAED,MAAM,WAAW,mBAAmB;IAClC,iBAAiB,CAAC,EAAE,MAAM,CAAC;CAC5B;AAED,MAAM,WAAW,4BAA4B,CAC3C,UAAU,SAAS,EAAE,EACrB,QAAQ,SAAS,EAAE,EACnB,SAAS,SAAS,EAAE,EACpB,UAAU,SAAS,EAAE;IAErB,MAAM,EAAE,SAAS,GAAG,SAAS,CAAC;IAC9B,OAAO,CAAC,EAAE,mBAAmB,CAAC;IAC9B,WAAW,EAAE,0BAA0B,CAAC,UAAU,EAAE,QAAQ,EAAE,SAAS,EAAE,UAAU,CAAC,CAAC;IACrF,aAAa,CAAC,EAAE,iCAAiC,CAAC,UAAU,EAAE,QAAQ,EAAE,SAAS,CAAC,CAAC;IACnF,UAAU,CAAC,EAAE,0BAA0B,CAAC,UAAU,EAAE,QAAQ,EAAE,SAAS,CAAC,CAAC;IACzE,mBAAmB,CAAC,EAAE,0CAA0C,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC;IACvF,qBAAqB,CAAC,EAAE,4CAA4C,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC;CAC5F;AAED,MAAM,MAAM,wBAAwB,CAClC,UAAU,SAAS,EAAE,EACrB,QAAQ,SAAS,EAAE,EACnB,SAAS,SAAS,EAAE,EACpB,UAAU,SAAS,EAAE,IAEnB,yBAAyB,CAAC,UAAU,EAAE,QAAQ,EAAE,SAAS,EAAE,UAAU,CAAC,GACtE,4BAA4B,CAAC,UAAU,EAAE,QAAQ,EAAE,SAAS,EAAE,UAAU,CAAC,CAAC;AAE9E,MAAM,MAAM,2BAA2B,CACrC,UAAU,SAAS,EAAE,EACrB,QAAQ,SAAS,EAAE,EACnB,SAAS,SAAS,EAAE,EACpB,UAAU,SAAS,EAAE,IACnB,wBAAwB,CAAC,UAAU,EAAE,QAAQ,EAAE,SAAS,EAAE,UAAU,CAAC,GACvE,qBAAqB,GAAG;IACtB,YAAY,EAAE,CAAC,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC;IACpC,UAAU,EAAE,CAAC,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;IAChC,WAAW,EAAE,CAAC,CAAC,OAAO,CAAC,SAAS,CAAC,CAAC;IAClC,YAAY,EAAE,CAAC,CAAC,OAAO,CAAC,UAAU,CAAC,CAAC;CACrC,CAAC;AAEJ,8BAAsB,WAAW,CAC/B,IAAI,SAAS,eAAe,EAC5B,UAAU,SAAS,EAAE,EACrB,QAAQ,SAAS,EAAE,EACnB,SAAS,SAAS,EAAE,EACpB,UAAU,SAAS,EAAE;aAGH,IAAI,EAAE,IAAI;IAC1B,SAAS,CAAC,QAAQ,CAAC,KAAK,EAAE,kBAAkB,CAAC,UAAU,EAAE,QAAQ,CAAC;IAClE,SAAS,CAAC,QAAQ,CAAC,YAAY,EAAE,CAAC,CAAC,OAAO,CAAC,SAAS,CAAC;IACrD,SAAS,CAAC,QAAQ,CAAC,aAAa,EAAE,CAAC,CAAC,OAAO,CAAC,UAAU,CAAC;IACvD,SAAS,CAAC,QAAQ,CAAC,OAAO,EAAE,qBAAqB;gBAJjC,IAAI,EAAE,IAAI,EACP,KAAK,EAAE,kBAAkB,CAAC,UAAU,EAAE,QAAQ,CAAC,EAC/C,YAAY,EAAE,CAAC,CAAC,OAAO,CAAC,SAAS,CAAC,EAClC,aAAa,EAAE,CAAC,CAAC,OAAO,CAAC,UAAU,CAAC,EACpC,OAAO,EAAE,qBAAqB;IAGnD,IAAI,YAAY,kFAEf;IAED,IAAI,WAAW,gFAEd;IAED,IAAI,YAAY,kFAEf;IAED,IAAI,UAAU,0BAEb;IAED,IAAI,GAAG,WAEN;IAED,IAAI,IAAI,WAEP;IAED,IAAI,WAAW,uBAEd;IAED,IAAI,IAAI;;sBA9JQ,OAAO;mBACV,OAAO;kBA+JnB;CACF"}
@@ -1,27 +0,0 @@
1
- import z from 'zod';
2
- import { SlateSpecification } from '../specification/specification';
3
- import { SlateAction, SlateActionCreateParameters, SlateActionParameters, SlateActionType, SlatePollingOptions, SlateToolInvocationHandler, SlateTriggerMappingHandler, SlateTriggerPollingHandler, SlateTriggerWebhookAutoRegistrationHandler, SlateTriggerWebhookAutoUnregistrationHandler, SlateTriggerWebhookRequestHandler } from './action';
4
- export declare class SlateActionBuilder<Type extends SlateActionType, ConfigType extends {}, AuthType extends {}, InputType extends {}, OutputType extends {}> {
5
- #private;
6
- private readonly type;
7
- private readonly spec;
8
- private readonly params;
9
- private readonly factory;
10
- constructor(type: Type, spec: SlateSpecification<ConfigType, AuthType>, params: SlateActionParameters, factory: (params: SlateActionCreateParameters<any, any, any, any>) => SlateAction<Type, any, any, any, any>);
11
- input<NewInputType extends {}>(schema: z.ZodType<NewInputType>): SlateActionBuilder<Type, ConfigType, AuthType, NewInputType, OutputType>;
12
- output<NewOutputType extends {}>(schema: z.ZodType<NewOutputType>): SlateActionBuilder<Type, ConfigType, AuthType, InputType, NewOutputType>;
13
- handleInvocation(handler: SlateToolInvocationHandler<ConfigType, AuthType, InputType, OutputType>): SlateActionBuilder<Type, ConfigType, AuthType, InputType, OutputType>;
14
- webhook(props: {
15
- handleEvent: SlateTriggerMappingHandler<ConfigType, AuthType, InputType, OutputType>;
16
- handleRequest: SlateTriggerWebhookRequestHandler<ConfigType, AuthType, InputType>;
17
- autoRegisterWebhook?: SlateTriggerWebhookAutoRegistrationHandler<ConfigType, AuthType>;
18
- autoUnregisterWebhook?: SlateTriggerWebhookAutoUnregistrationHandler<ConfigType, AuthType>;
19
- }): SlateActionBuilder<Type, ConfigType, AuthType, InputType, OutputType>;
20
- polling(props: {
21
- options?: SlatePollingOptions;
22
- pollEvents?: SlateTriggerPollingHandler<ConfigType, AuthType, InputType>;
23
- handleEvent: SlateTriggerMappingHandler<ConfigType, AuthType, InputType, OutputType>;
24
- }): SlateActionBuilder<Type, ConfigType, AuthType, InputType, OutputType>;
25
- build(): SlateAction<Type, ConfigType, AuthType, InputType, OutputType>;
26
- }
27
- //# sourceMappingURL=builder.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"builder.d.ts","sourceRoot":"","sources":["../../src/action/builder.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AAEpB,OAAO,EAAE,kBAAkB,EAAE,MAAM,gCAAgC,CAAC;AACpE,OAAO,EACL,WAAW,EACX,2BAA2B,EAC3B,qBAAqB,EAGrB,eAAe,EACf,mBAAmB,EACnB,0BAA0B,EAC1B,0BAA0B,EAC1B,0BAA0B,EAC1B,0CAA0C,EAC1C,4CAA4C,EAC5C,iCAAiC,EAClC,MAAM,UAAU,CAAC;AAElB,qBAAa,kBAAkB,CAC7B,IAAI,SAAS,eAAe,EAC5B,UAAU,SAAS,EAAE,EACrB,QAAQ,SAAS,EAAE,EACnB,SAAS,SAAS,EAAE,EACpB,UAAU,SAAS,EAAE;;IAiBnB,OAAO,CAAC,QAAQ,CAAC,IAAI;IACrB,OAAO,CAAC,QAAQ,CAAC,IAAI;IACrB,OAAO,CAAC,QAAQ,CAAC,MAAM;IACvB,OAAO,CAAC,QAAQ,CAAC,OAAO;gBAHP,IAAI,EAAE,IAAI,EACV,IAAI,EAAE,kBAAkB,CAAC,UAAU,EAAE,QAAQ,CAAC,EAC9C,MAAM,EAAE,qBAAqB,EAC7B,OAAO,EAAE,CACxB,MAAM,EAAE,2BAA2B,CAAC,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC,KACpD,WAAW,CAAC,IAAI,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,EAAE,GAAG,CAAC;IAM5C,KAAK,CAAC,YAAY,SAAS,EAAE,EAC3B,MAAM,EAAE,CAAC,CAAC,OAAO,CAAC,YAAY,CAAC,GAC9B,kBAAkB,CAAC,IAAI,EAAE,UAAU,EAAE,QAAQ,EAAE,YAAY,EAAE,UAAU,CAAC;IAW3E,MAAM,CAAC,aAAa,SAAS,EAAE,EAC7B,MAAM,EAAE,CAAC,CAAC,OAAO,CAAC,aAAa,CAAC,GAC/B,kBAAkB,CAAC,IAAI,EAAE,UAAU,EAAE,QAAQ,EAAE,SAAS,EAAE,aAAa,CAAC;IAW3E,gBAAgB,CACd,OAAO,EAAE,0BAA0B,CAAC,UAAU,EAAE,QAAQ,EAAE,SAAS,EAAE,UAAU,CAAC,GAC/E,kBAAkB,CAAC,IAAI,EAAE,UAAU,EAAE,QAAQ,EAAE,SAAS,EAAE,UAAU,CAAC;IAYxE,OAAO,CAAC,KAAK,EAAE;QACb,WAAW,EAAE,0BAA0B,CAAC,UAAU,EAAE,QAAQ,EAAE,SAAS,EAAE,UAAU,CAAC,CAAC;QACrF,aAAa,EAAE,iCAAiC,CAAC,UAAU,EAAE,QAAQ,EAAE,SAAS,CAAC,CAAC;QAClF,mBAAmB,CAAC,EAAE,0CAA0C,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC;QACvF,qBAAqB,CAAC,EAAE,4CAA4C,CAAC,UAAU,EAAE,QAAQ,CAAC,CAAC;KAC5F,GAAG,kBAAkB,CAAC,IAAI,EAAE,UAAU,EAAE,QAAQ,EAAE,SAAS,EAAE,UAAU,CAAC;IAgBzE,OAAO,CAAC,KAAK,EAAE;QACb,OAAO,CAAC,EAAE,mBAAmB,CAAC;QAC9B,UAAU,CAAC,EAAE,0BAA0B,CAAC,UAAU,EAAE,QAAQ,EAAE,SAAS,CAAC,CAAC;QACzE,WAAW,EAAE,0BAA0B,CAAC,UAAU,EAAE,QAAQ,EAAE,SAAS,EAAE,UAAU,CAAC,CAAC;KACtF,GAAG,kBAAkB,CAAC,IAAI,EAAE,UAAU,EAAE,QAAQ,EAAE,SAAS,EAAE,UAAU,CAAC;IAezE,KAAK,IAuBG,WAAW,CAAC,IAAI,EAAE,UAAU,EAAE,QAAQ,EAAE,SAAS,EAAE,UAAU,CAAC;CAEvE"}
@@ -1,5 +0,0 @@
1
- export * from './action';
2
- export * from './tool';
3
- export * from './trigger';
4
- export type * from './builder';
5
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/action/index.ts"],"names":[],"mappings":"AAAA,cAAc,UAAU,CAAC;AACzB,cAAc,QAAQ,CAAC;AACvB,cAAc,WAAW,CAAC;AAE1B,mBAAmB,WAAW,CAAC"}
@@ -1,11 +0,0 @@
1
- import { SlateSpecification } from '../specification/specification';
2
- import { SlateAction, SlateActionParameters } from './action';
3
- import { SlateActionBuilder } from './builder';
4
- export interface SlateToolParameters extends SlateActionParameters {
5
- }
6
- export declare class SlateTool<ConfigType extends {}, AuthType extends {}, InputType extends {}, OutputType extends {}> extends SlateAction<'tool', ConfigType, AuthType, InputType, OutputType> {
7
- private constructor();
8
- static create<ConfigType extends {}, AuthType extends {}>(spec: SlateSpecification<ConfigType, AuthType>, params: SlateToolParameters): SlateActionBuilder<"tool", ConfigType, AuthType, {}, {}>;
9
- }
10
- export declare let tool: <ConfigType extends {}, AuthType extends {}>(spec: SlateSpecification<ConfigType, AuthType>, params: SlateToolParameters) => SlateActionBuilder<"tool", ConfigType, AuthType, {}, {}>;
11
- //# sourceMappingURL=tool.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"tool.d.ts","sourceRoot":"","sources":["../../src/action/tool.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,kBAAkB,EAAE,MAAM,gCAAgC,CAAC;AACpE,OAAO,EAAE,WAAW,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAC;AAE/C,MAAM,WAAW,mBAAoB,SAAQ,qBAAqB;CAAG;AAErE,qBAAa,SAAS,CACpB,UAAU,SAAS,EAAE,EACrB,QAAQ,SAAS,EAAE,EACnB,SAAS,SAAS,EAAE,EACpB,UAAU,SAAS,EAAE,CACrB,SAAQ,WAAW,CAAC,MAAM,EAAE,UAAU,EAAE,QAAQ,EAAE,SAAS,EAAE,UAAU,CAAC;IACxE,OAAO;IASP,MAAM,CAAC,MAAM,CAAC,UAAU,SAAS,EAAE,EAAE,QAAQ,SAAS,EAAE,EACtD,IAAI,EAAE,kBAAkB,CAAC,UAAU,EAAE,QAAQ,CAAC,EAC9C,MAAM,EAAE,mBAAmB;CAS9B;AAED,eAAO,IAAI,IAAI,GAAI,UAAU,SAAS,EAAE,EAAE,QAAQ,SAAS,EAAE,EAC3D,MAAM,kBAAkB,CAAC,UAAU,EAAE,QAAQ,CAAC,EAC9C,QAAQ,mBAAmB,6DACM,CAAC"}
@@ -1,14 +0,0 @@
1
- import { SlateSpecification } from '../specification/specification';
2
- import { SlateAction, SlateActionParameters } from './action';
3
- import { SlateActionBuilder } from './builder';
4
- export declare const SlateDefaultPollingIntervalSeconds: number;
5
- export interface SlateTriggerParameters extends SlateActionParameters {
6
- }
7
- export declare class SlateTrigger<ConfigType extends {}, AuthType extends {}, InputType extends {}, OutputType extends {
8
- type: string;
9
- }> extends SlateAction<'trigger', ConfigType, AuthType, InputType, OutputType> {
10
- private constructor();
11
- static create<ConfigType extends {}, AuthType extends {}>(spec: SlateSpecification<ConfigType, AuthType>, params: SlateTriggerParameters): SlateActionBuilder<"trigger", ConfigType, AuthType, {}, {}>;
12
- }
13
- export declare let Trigger: <ConfigType extends {}, AuthType extends {}>(spec: SlateSpecification<ConfigType, AuthType>, params: SlateTriggerParameters) => SlateActionBuilder<"trigger", ConfigType, AuthType, {}, {}>;
14
- //# sourceMappingURL=trigger.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"trigger.d.ts","sourceRoot":"","sources":["../../src/action/trigger.ts"],"names":[],"mappings":"AACA,OAAO,EAAE,kBAAkB,EAAE,MAAM,gCAAgC,CAAC;AACpE,OAAO,EAAE,WAAW,EAAE,qBAAqB,EAAE,MAAM,UAAU,CAAC;AAC9D,OAAO,EAAE,kBAAkB,EAAE,MAAM,WAAW,CAAC;AAE/C,eAAO,MAAM,kCAAkC,QAAU,CAAC;AAE1D,MAAM,WAAW,sBAAuB,SAAQ,qBAAqB;CAAG;AAExE,qBAAa,YAAY,CACvB,UAAU,SAAS,EAAE,EACrB,QAAQ,SAAS,EAAE,EACnB,SAAS,SAAS,EAAE,EACpB,UAAU,SAAS;IACjB,IAAI,EAAE,MAAM,CAAC;CACd,CACD,SAAQ,WAAW,CAAC,SAAS,EAAE,UAAU,EAAE,QAAQ,EAAE,SAAS,EAAE,UAAU,CAAC;IAC3E,OAAO;IASP,MAAM,CAAC,MAAM,CAAC,UAAU,SAAS,EAAE,EAAE,QAAQ,SAAS,EAAE,EACtD,IAAI,EAAE,kBAAkB,CAAC,UAAU,EAAE,QAAQ,CAAC,EAC9C,MAAM,EAAE,sBAAsB;CASjC;AAED,eAAO,IAAI,OAAO,GAAI,UAAU,SAAS,EAAE,EAAE,QAAQ,SAAS,EAAE,EAC9D,MAAM,kBAAkB,CAAC,UAAU,EAAE,QAAQ,CAAC,EAC9C,QAAQ,sBAAsB,gEACM,CAAC"}
@@ -1,26 +0,0 @@
1
- import z from 'zod';
2
- import { SlateAuthType } from './types';
3
- export declare class SlateAuth<OutputType extends {} = {}> {
4
- #private;
5
- private constructor();
6
- static create<OutputType extends {}>(): SlateAuth<OutputType>;
7
- output<NewOutputType extends {}>(schema: z.ZodType<NewOutputType>): SlateAuth<NewOutputType>;
8
- private addAuth;
9
- addOauth<InputType extends {}>(auth: SlateAuthType<InputType, OutputType> & {
10
- type: 'auth.oauth';
11
- }): SlateAuth<OutputType>;
12
- addTokenAuth<InputType extends {}>(auth: SlateAuthType<InputType, OutputType> & {
13
- type: 'auth.token';
14
- }): SlateAuth<OutputType>;
15
- addServiceAccountAuth<InputType extends {}>(auth: SlateAuthType<InputType, OutputType> & {
16
- type: 'auth.service_account';
17
- }): SlateAuth<OutputType>;
18
- addCustomAuth<InputType extends {}>(auth: SlateAuthType<InputType, OutputType> & {
19
- type: 'auth.custom';
20
- }): SlateAuth<OutputType>;
21
- addNone(): SlateAuth<OutputType>;
22
- get authStack(): import("./types").SlateAuthWithNone<any, OutputType>[];
23
- get outputSchema(): z.ZodType<OutputType, unknown, z.core.$ZodTypeInternals<OutputType, unknown>>;
24
- }
25
- export declare let auth: <OutputType extends {} = {}>() => SlateAuth<OutputType>;
26
- //# sourceMappingURL=auth.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"auth.d.ts","sourceRoot":"","sources":["../../src/auth/auth.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,aAAa,EAAE,MAAM,SAAS,CAAC;AAExC,qBAAa,SAAS,CAAC,UAAU,SAAS,EAAE,GAAG,EAAE;;IAI/C,OAAO;IAEP,MAAM,CAAC,MAAM,CAAC,UAAU,SAAS,EAAE;IAInC,MAAM,CAAC,aAAa,SAAS,EAAE,EAC7B,MAAM,EAAE,CAAC,CAAC,OAAO,CAAC,aAAa,CAAC,GAC/B,SAAS,CAAC,aAAa,CAAC;IAK3B,OAAO,CAAC,OAAO;IAYf,QAAQ,CAAC,SAAS,SAAS,EAAE,EAC3B,IAAI,EAAE,aAAa,CAAC,SAAS,EAAE,UAAU,CAAC,GAAG;QAAE,IAAI,EAAE,YAAY,CAAA;KAAE,GAClE,SAAS,CAAC,UAAU,CAAC;IAKxB,YAAY,CAAC,SAAS,SAAS,EAAE,EAC/B,IAAI,EAAE,aAAa,CAAC,SAAS,EAAE,UAAU,CAAC,GAAG;QAAE,IAAI,EAAE,YAAY,CAAA;KAAE,GAClE,SAAS,CAAC,UAAU,CAAC;IAKxB,qBAAqB,CAAC,SAAS,SAAS,EAAE,EACxC,IAAI,EAAE,aAAa,CAAC,SAAS,EAAE,UAAU,CAAC,GAAG;QAAE,IAAI,EAAE,sBAAsB,CAAA;KAAE,GAC5E,SAAS,CAAC,UAAU,CAAC;IAKxB,aAAa,CAAC,SAAS,SAAS,EAAE,EAChC,IAAI,EAAE,aAAa,CAAC,SAAS,EAAE,UAAU,CAAC,GAAG;QAAE,IAAI,EAAE,aAAa,CAAA;KAAE,GACnE,SAAS,CAAC,UAAU,CAAC;IAKxB,OAAO,IAAI,SAAS,CAAC,UAAU,CAAC;IAShC,IAAI,SAAS,2DAEZ;IAED,IAAI,YAAY,kFAKf;CACF;AAED,eAAO,IAAI,IAAI,GAAI,UAAU,SAAS,EAAE,GAAG,EAAE,4BAAqC,CAAC"}
@@ -1,3 +0,0 @@
1
- export * from './auth';
2
- export * from './types';
3
- //# sourceMappingURL=index.d.ts.map
@@ -1 +0,0 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/auth/index.ts"],"names":[],"mappings":"AAAA,cAAc,QAAQ,CAAC;AACvB,cAAc,SAAS,CAAC"}