@slates/provider-handler 1.0.0-rc.2 → 1.0.0-rc.20

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 (67) hide show
  1. package/dist/index.cjs +1140 -2
  2. package/dist/index.d.cts +8 -0
  3. package/dist/index.d.ts +6 -3
  4. package/dist/index.module.js +1115 -2
  5. package/package.json +11 -11
  6. package/src/index.ts +692 -114
  7. package/src/spec.ts +54 -16
  8. package/src/validation.ts +17 -1
  9. package/src/webhook.test.ts +65 -0
  10. package/src/webhook.ts +69 -0
  11. package/dist/action/action.d.ts +0 -90
  12. package/dist/action/action.d.ts.map +0 -1
  13. package/dist/action/builder.d.ts +0 -27
  14. package/dist/action/builder.d.ts.map +0 -1
  15. package/dist/action/index.d.ts +0 -5
  16. package/dist/action/index.d.ts.map +0 -1
  17. package/dist/action/tool.d.ts +0 -11
  18. package/dist/action/tool.d.ts.map +0 -1
  19. package/dist/action/trigger.d.ts +0 -14
  20. package/dist/action/trigger.d.ts.map +0 -1
  21. package/dist/auth/auth.d.ts +0 -26
  22. package/dist/auth/auth.d.ts.map +0 -1
  23. package/dist/auth/index.d.ts +0 -3
  24. package/dist/auth/index.d.ts.map +0 -1
  25. package/dist/auth/types.d.ts +0 -148
  26. package/dist/auth/types.d.ts.map +0 -1
  27. package/dist/axios/index.d.ts +0 -4
  28. package/dist/axios/index.d.ts.map +0 -1
  29. package/dist/config/config.d.ts +0 -22
  30. package/dist/config/config.d.ts.map +0 -1
  31. package/dist/config/index.d.ts +0 -2
  32. package/dist/config/index.d.ts.map +0 -1
  33. package/dist/context/context.d.ts +0 -20
  34. package/dist/context/context.d.ts.map +0 -1
  35. package/dist/context/hook.d.ts +0 -4
  36. package/dist/context/hook.d.ts.map +0 -1
  37. package/dist/context/index.d.ts +0 -2
  38. package/dist/context/index.d.ts.map +0 -1
  39. package/dist/error/base.d.ts +0 -5
  40. package/dist/error/base.d.ts.map +0 -1
  41. package/dist/error/declaration.d.ts +0 -6
  42. package/dist/error/declaration.d.ts.map +0 -1
  43. package/dist/error/index.d.ts +0 -3
  44. package/dist/error/index.d.ts.map +0 -1
  45. package/dist/index.cjs.map +0 -1
  46. package/dist/index.d.ts.map +0 -1
  47. package/dist/index.modern.js +0 -2
  48. package/dist/index.modern.js.map +0 -1
  49. package/dist/index.module.js.map +0 -1
  50. package/dist/index.umd.js +0 -2
  51. package/dist/index.umd.js.map +0 -1
  52. package/dist/spec.d.ts +0 -14
  53. package/dist/spec.d.ts.map +0 -1
  54. package/dist/specification/index.d.ts +0 -3
  55. package/dist/specification/index.d.ts.map +0 -1
  56. package/dist/specification/slate.d.ts +0 -15
  57. package/dist/specification/slate.d.ts.map +0 -1
  58. package/dist/specification/specification.d.ts +0 -30
  59. package/dist/specification/specification.d.ts.map +0 -1
  60. package/dist/specification/zero.d.ts +0 -13
  61. package/dist/specification/zero.d.ts.map +0 -1
  62. package/dist/state.d.ts +0 -8
  63. package/dist/state.d.ts.map +0 -1
  64. package/dist/tokens.d.ts +0 -34
  65. package/dist/tokens.d.ts.map +0 -1
  66. package/dist/validation.d.ts +0 -4
  67. package/dist/validation.d.ts.map +0 -1
package/src/spec.ts CHANGED
@@ -1,13 +1,22 @@
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
+ } from '@slates/proto';
7
+ import {
8
+ type Slate,
9
+ type SlateAdapter,
10
+ SlateDefaultPollingIntervalSeconds
11
+ } from '@slates/provider';
4
12
  import z from 'zod';
13
+ import { toJsonSchema } from './validation';
5
14
 
6
15
  export let getAuthMethod = <ConfigType extends {}, AuthType extends {}>(
7
16
  slate: Slate<ConfigType, AuthType>,
8
17
  authenticationMethodId: string
9
18
  ) => {
10
- let authMethod = slate.spec.auth.authStack.find(m => m.key == authenticationMethodId);
19
+ let authMethod = slate.spec.auth.authStack.find(m => m.key === authenticationMethodId);
11
20
  if (!authMethod) {
12
21
  throw new ServiceError(
13
22
  badRequestError({
@@ -32,12 +41,13 @@ export let mapAuthMethod = <ConfigType extends {}, AuthType extends {}>(
32
41
  ? m.scopes.map(s => ({
33
42
  id: s.scope,
34
43
  title: s.title,
35
- description: s.description
44
+ description: s.description,
45
+ defaultChecked: s.defaultChecked
36
46
  }))
37
47
  : undefined,
38
48
 
39
- inputSchema: (m.inputSchema ?? z.object({})).toJSONSchema(),
40
- outputSchema: slate.spec.auth.outputSchema.toJSONSchema(),
49
+ inputSchema: toJsonSchema(m.inputSchema ?? z.object({})),
50
+ outputSchema: toJsonSchema(slate.spec.auth.outputSchema),
41
51
 
42
52
  capabilities: {
43
53
  getDefaultInput: { enabled: !!('getDefaultInput' in m && m.getDefaultInput) },
@@ -48,14 +58,16 @@ export let mapAuthMethod = <ConfigType extends {}, AuthType extends {}>(
48
58
  enabled: !!m.onInputChanged
49
59
  },
50
60
  getProfile: { enabled: !!m.getProfile }
51
- }
61
+ },
62
+
63
+ docs: m.docs ?? []
52
64
  });
53
65
 
54
66
  export let getAction = <ConfigType extends {}, AuthType extends {}>(
55
67
  slate: Slate<ConfigType, AuthType>,
56
68
  actionId: string
57
69
  ) => {
58
- let action = slate.actions.find(m => m.key == actionId);
70
+ let action = slate.actions.find(m => m.key === actionId);
59
71
  if (!action) {
60
72
  throw new ServiceError(notFoundError(`action`, actionId));
61
73
  }
@@ -63,6 +75,26 @@ export let getAction = <ConfigType extends {}, AuthType extends {}>(
63
75
  return action;
64
76
  };
65
77
 
78
+ export let getAdapter = <ConfigType extends {}, AuthType extends {}>(
79
+ slate: Slate<ConfigType, AuthType>,
80
+ adapterId: string
81
+ ) => {
82
+ let adapter = slate.adapters.find(m => m.id === adapterId);
83
+ if (!adapter) {
84
+ throw new ServiceError(notFoundError(`adapter`, adapterId));
85
+ }
86
+
87
+ return adapter;
88
+ };
89
+
90
+ export let mapAdapter = <ConfigType extends {}, AuthType extends {}>(
91
+ adapter: SlateAdapter<ConfigType, AuthType>
92
+ ): SlatesAdapter => ({
93
+ id: adapter.id,
94
+ name: adapter.name,
95
+ capabilities: adapter.capabilities
96
+ });
97
+
66
98
  export let getActionWithType = <
67
99
  Type extends 'tool' | 'trigger',
68
100
  ConfigType extends {},
@@ -73,7 +105,7 @@ export let getActionWithType = <
73
105
  actionId: string
74
106
  ): ReturnType<typeof getAction<ConfigType, AuthType>> & { type: Type } => {
75
107
  let action = getAction(slate, actionId);
76
- if (action.type != type) {
108
+ if (action.type !== type) {
77
109
  throw new ServiceError(
78
110
  badRequestError({
79
111
  message: `Action with ID ${actionId} is not of type ${type}`
@@ -85,7 +117,7 @@ export let getActionWithType = <
85
117
  };
86
118
 
87
119
  export let mapAction = <ConfigType extends {}, AuthType extends {}>(
88
- slate: Slate<ConfigType, AuthType>,
120
+ _slate: Slate<ConfigType, AuthType>,
89
121
  a: ReturnType<typeof getAction<ConfigType, AuthType>>
90
122
  ): SlatesAction => {
91
123
  let base = {
@@ -96,16 +128,21 @@ export let mapAction = <ConfigType extends {}, AuthType extends {}>(
96
128
  constraints: a.constraints,
97
129
  tags: a.tags,
98
130
  metadata: a.metadata,
131
+ scopes: a.scopes,
132
+ authMethods: a.authMethods,
133
+ docs: a.docs ?? [],
134
+ ...(a.adapter ? { adapter: a.adapter } : {}),
99
135
 
100
- inputSchema: a.inputSchema.toJSONSchema(),
101
- outputSchema: a.outputSchema.toJSONSchema()
136
+ inputSchema: toJsonSchema(a.inputSchema),
137
+ outputSchema: toJsonSchema(a.outputSchema)
102
138
  };
103
139
 
104
- if (a.type == 'tool') {
140
+ if (a.type === 'tool') {
105
141
  return {
106
142
  ...base,
107
143
  type: 'action.tool',
108
- capabilities: {}
144
+ capabilities: {},
145
+ isPublic: a.isPublic
109
146
  };
110
147
  }
111
148
 
@@ -115,7 +152,7 @@ export let mapAction = <ConfigType extends {}, AuthType extends {}>(
115
152
  capabilities: {},
116
153
 
117
154
  invocation:
118
- a.source == 'polling'
155
+ a.source === 'polling'
119
156
  ? {
120
157
  type: 'polling',
121
158
  intervalSeconds: a.polling.intervalInSeconds ?? SlateDefaultPollingIntervalSeconds
@@ -123,7 +160,8 @@ export let mapAction = <ConfigType extends {}, AuthType extends {}>(
123
160
  : {
124
161
  type: 'webhook',
125
162
  autoRegistration: !!a.autoRegisterWebhook,
126
- autoUnregistration: !!a.autoUnregisterWebhook
163
+ autoUnregistration: !!a.autoUnregisterWebhook,
164
+ http: a.http
127
165
  }
128
166
  };
129
167
  };
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({
@@ -25,3 +25,19 @@ export let validate = <T>(
25
25
 
26
26
  return result.data;
27
27
  };
28
+
29
+ export let toJsonSchema = (schema: z.ZodType<any>) =>
30
+ schema.toJSONSchema({
31
+ unrepresentable: 'any',
32
+ override: ctx => {
33
+ let def = ctx.zodSchema._zod.def;
34
+
35
+ if (def.type === 'date') {
36
+ ctx.jsonSchema.type = 'string';
37
+ ctx.jsonSchema.format = 'date-time';
38
+ }
39
+ if (def.type === 'bigint') {
40
+ ctx.jsonSchema.type = 'number';
41
+ }
42
+ }
43
+ });
@@ -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":"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"}
@@ -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"}