@slates/test 1.0.0-rc.8 → 1.0.0-rc.9

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/index.d.cts CHANGED
@@ -105,6 +105,11 @@ declare let getSlateContract: (client: SlatesTestClient) => Promise<{
105
105
  name: string;
106
106
  inputSchema: Record<string, any>;
107
107
  outputSchema: Record<string, any>;
108
+ docs: {
109
+ name: string;
110
+ url: string;
111
+ type?: "docs.action.general" | undefined;
112
+ }[];
108
113
  type: "action.tool";
109
114
  capabilities: Record<string, never>;
110
115
  description?: string | undefined;
@@ -125,6 +130,11 @@ declare let getSlateContract: (client: SlatesTestClient) => Promise<{
125
130
  name: string;
126
131
  inputSchema: Record<string, any>;
127
132
  outputSchema: Record<string, any>;
133
+ docs: {
134
+ name: string;
135
+ url: string;
136
+ type?: "docs.action.general" | undefined;
137
+ }[];
128
138
  type: "action.trigger";
129
139
  capabilities: Record<string, never>;
130
140
  invocation: {
@@ -154,6 +164,11 @@ declare let getSlateContract: (client: SlatesTestClient) => Promise<{
154
164
  name: string;
155
165
  inputSchema: Record<string, any>;
156
166
  outputSchema: Record<string, any>;
167
+ docs: {
168
+ name: string;
169
+ url: string;
170
+ type?: "docs.action.general" | undefined;
171
+ }[];
157
172
  type: "action.tool";
158
173
  capabilities: Record<string, never>;
159
174
  description?: string | undefined;
@@ -175,6 +190,11 @@ declare let getSlateContract: (client: SlatesTestClient) => Promise<{
175
190
  name: string;
176
191
  inputSchema: Record<string, any>;
177
192
  outputSchema: Record<string, any>;
193
+ docs: {
194
+ name: string;
195
+ url: string;
196
+ type?: "docs.action.general" | undefined;
197
+ }[];
178
198
  type: "action.trigger";
179
199
  capabilities: Record<string, never>;
180
200
  invocation: {
@@ -219,19 +239,17 @@ declare let getSlateContract: (client: SlatesTestClient) => Promise<{
219
239
  enabled: boolean;
220
240
  } | undefined;
221
241
  };
242
+ docs: {
243
+ name: string;
244
+ url: string;
245
+ type?: "docs.auth.oauth" | "docs.auth.oauth_scopes" | "docs.auth.token" | "docs.auth.service_account" | "docs.auth.custom" | undefined;
246
+ }[];
222
247
  scopes?: {
223
248
  id: string;
224
249
  title: string;
225
250
  description?: string | undefined;
226
251
  defaultChecked?: boolean | undefined;
227
252
  }[] | undefined;
228
- docs?: {
229
- oauthDocsLink?: string | undefined;
230
- oauthScopesLink?: string | undefined;
231
- tokenDocsLink?: string | undefined;
232
- serviceAccountDocsLink?: string | undefined;
233
- customAuthDocsLink?: string | undefined;
234
- } | undefined;
235
253
  }[];
236
254
  configSchema: Record<string, any>;
237
255
  }>;
@@ -260,6 +278,11 @@ declare let expectSlateContract: (d: {
260
278
  name: string;
261
279
  inputSchema: Record<string, any>;
262
280
  outputSchema: Record<string, any>;
281
+ docs: {
282
+ name: string;
283
+ url: string;
284
+ type?: "docs.action.general" | undefined;
285
+ }[];
263
286
  type: "action.tool";
264
287
  capabilities: Record<string, never>;
265
288
  description?: string | undefined;
@@ -280,6 +303,11 @@ declare let expectSlateContract: (d: {
280
303
  name: string;
281
304
  inputSchema: Record<string, any>;
282
305
  outputSchema: Record<string, any>;
306
+ docs: {
307
+ name: string;
308
+ url: string;
309
+ type?: "docs.action.general" | undefined;
310
+ }[];
283
311
  type: "action.trigger";
284
312
  capabilities: Record<string, never>;
285
313
  invocation: {
@@ -309,6 +337,11 @@ declare let expectSlateContract: (d: {
309
337
  name: string;
310
338
  inputSchema: Record<string, any>;
311
339
  outputSchema: Record<string, any>;
340
+ docs: {
341
+ name: string;
342
+ url: string;
343
+ type?: "docs.action.general" | undefined;
344
+ }[];
312
345
  type: "action.tool";
313
346
  capabilities: Record<string, never>;
314
347
  description?: string | undefined;
@@ -330,6 +363,11 @@ declare let expectSlateContract: (d: {
330
363
  name: string;
331
364
  inputSchema: Record<string, any>;
332
365
  outputSchema: Record<string, any>;
366
+ docs: {
367
+ name: string;
368
+ url: string;
369
+ type?: "docs.action.general" | undefined;
370
+ }[];
333
371
  type: "action.trigger";
334
372
  capabilities: Record<string, never>;
335
373
  invocation: {
@@ -374,19 +412,17 @@ declare let expectSlateContract: (d: {
374
412
  enabled: boolean;
375
413
  } | undefined;
376
414
  };
415
+ docs: {
416
+ name: string;
417
+ url: string;
418
+ type?: "docs.auth.oauth" | "docs.auth.oauth_scopes" | "docs.auth.token" | "docs.auth.service_account" | "docs.auth.custom" | undefined;
419
+ }[];
377
420
  scopes?: {
378
421
  id: string;
379
422
  title: string;
380
423
  description?: string | undefined;
381
424
  defaultChecked?: boolean | undefined;
382
425
  }[] | undefined;
383
- docs?: {
384
- oauthDocsLink?: string | undefined;
385
- oauthScopesLink?: string | undefined;
386
- tokenDocsLink?: string | undefined;
387
- serviceAccountDocsLink?: string | undefined;
388
- customAuthDocsLink?: string | undefined;
389
- } | undefined;
390
426
  }[];
391
427
  configSchema: Record<string, any>;
392
428
  }>;
package/dist/index.d.ts CHANGED
@@ -105,6 +105,11 @@ declare let getSlateContract: (client: SlatesTestClient) => Promise<{
105
105
  name: string;
106
106
  inputSchema: Record<string, any>;
107
107
  outputSchema: Record<string, any>;
108
+ docs: {
109
+ name: string;
110
+ url: string;
111
+ type?: "docs.action.general" | undefined;
112
+ }[];
108
113
  type: "action.tool";
109
114
  capabilities: Record<string, never>;
110
115
  description?: string | undefined;
@@ -125,6 +130,11 @@ declare let getSlateContract: (client: SlatesTestClient) => Promise<{
125
130
  name: string;
126
131
  inputSchema: Record<string, any>;
127
132
  outputSchema: Record<string, any>;
133
+ docs: {
134
+ name: string;
135
+ url: string;
136
+ type?: "docs.action.general" | undefined;
137
+ }[];
128
138
  type: "action.trigger";
129
139
  capabilities: Record<string, never>;
130
140
  invocation: {
@@ -154,6 +164,11 @@ declare let getSlateContract: (client: SlatesTestClient) => Promise<{
154
164
  name: string;
155
165
  inputSchema: Record<string, any>;
156
166
  outputSchema: Record<string, any>;
167
+ docs: {
168
+ name: string;
169
+ url: string;
170
+ type?: "docs.action.general" | undefined;
171
+ }[];
157
172
  type: "action.tool";
158
173
  capabilities: Record<string, never>;
159
174
  description?: string | undefined;
@@ -175,6 +190,11 @@ declare let getSlateContract: (client: SlatesTestClient) => Promise<{
175
190
  name: string;
176
191
  inputSchema: Record<string, any>;
177
192
  outputSchema: Record<string, any>;
193
+ docs: {
194
+ name: string;
195
+ url: string;
196
+ type?: "docs.action.general" | undefined;
197
+ }[];
178
198
  type: "action.trigger";
179
199
  capabilities: Record<string, never>;
180
200
  invocation: {
@@ -219,19 +239,17 @@ declare let getSlateContract: (client: SlatesTestClient) => Promise<{
219
239
  enabled: boolean;
220
240
  } | undefined;
221
241
  };
242
+ docs: {
243
+ name: string;
244
+ url: string;
245
+ type?: "docs.auth.oauth" | "docs.auth.oauth_scopes" | "docs.auth.token" | "docs.auth.service_account" | "docs.auth.custom" | undefined;
246
+ }[];
222
247
  scopes?: {
223
248
  id: string;
224
249
  title: string;
225
250
  description?: string | undefined;
226
251
  defaultChecked?: boolean | undefined;
227
252
  }[] | undefined;
228
- docs?: {
229
- oauthDocsLink?: string | undefined;
230
- oauthScopesLink?: string | undefined;
231
- tokenDocsLink?: string | undefined;
232
- serviceAccountDocsLink?: string | undefined;
233
- customAuthDocsLink?: string | undefined;
234
- } | undefined;
235
253
  }[];
236
254
  configSchema: Record<string, any>;
237
255
  }>;
@@ -260,6 +278,11 @@ declare let expectSlateContract: (d: {
260
278
  name: string;
261
279
  inputSchema: Record<string, any>;
262
280
  outputSchema: Record<string, any>;
281
+ docs: {
282
+ name: string;
283
+ url: string;
284
+ type?: "docs.action.general" | undefined;
285
+ }[];
263
286
  type: "action.tool";
264
287
  capabilities: Record<string, never>;
265
288
  description?: string | undefined;
@@ -280,6 +303,11 @@ declare let expectSlateContract: (d: {
280
303
  name: string;
281
304
  inputSchema: Record<string, any>;
282
305
  outputSchema: Record<string, any>;
306
+ docs: {
307
+ name: string;
308
+ url: string;
309
+ type?: "docs.action.general" | undefined;
310
+ }[];
283
311
  type: "action.trigger";
284
312
  capabilities: Record<string, never>;
285
313
  invocation: {
@@ -309,6 +337,11 @@ declare let expectSlateContract: (d: {
309
337
  name: string;
310
338
  inputSchema: Record<string, any>;
311
339
  outputSchema: Record<string, any>;
340
+ docs: {
341
+ name: string;
342
+ url: string;
343
+ type?: "docs.action.general" | undefined;
344
+ }[];
312
345
  type: "action.tool";
313
346
  capabilities: Record<string, never>;
314
347
  description?: string | undefined;
@@ -330,6 +363,11 @@ declare let expectSlateContract: (d: {
330
363
  name: string;
331
364
  inputSchema: Record<string, any>;
332
365
  outputSchema: Record<string, any>;
366
+ docs: {
367
+ name: string;
368
+ url: string;
369
+ type?: "docs.action.general" | undefined;
370
+ }[];
333
371
  type: "action.trigger";
334
372
  capabilities: Record<string, never>;
335
373
  invocation: {
@@ -374,19 +412,17 @@ declare let expectSlateContract: (d: {
374
412
  enabled: boolean;
375
413
  } | undefined;
376
414
  };
415
+ docs: {
416
+ name: string;
417
+ url: string;
418
+ type?: "docs.auth.oauth" | "docs.auth.oauth_scopes" | "docs.auth.token" | "docs.auth.service_account" | "docs.auth.custom" | undefined;
419
+ }[];
377
420
  scopes?: {
378
421
  id: string;
379
422
  title: string;
380
423
  description?: string | undefined;
381
424
  defaultChecked?: boolean | undefined;
382
425
  }[] | undefined;
383
- docs?: {
384
- oauthDocsLink?: string | undefined;
385
- oauthScopesLink?: string | undefined;
386
- tokenDocsLink?: string | undefined;
387
- serviceAccountDocsLink?: string | undefined;
388
- customAuthDocsLink?: string | undefined;
389
- } | undefined;
390
426
  }[];
391
427
  configSchema: Record<string, any>;
392
428
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@slates/test",
3
- "version": "1.0.0-rc.8",
3
+ "version": "1.0.0-rc.9",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },
@@ -40,11 +40,11 @@
40
40
  },
41
41
  "dependencies": {
42
42
  "@lowerdeck/testing-tools": "latest",
43
- "@slates/client": "1.0.0-rc.11",
44
- "@slates/profiles": "1.0.0-rc.9"
43
+ "@slates/client": "1.0.0-rc.12",
44
+ "@slates/profiles": "1.0.0-rc.10"
45
45
  },
46
46
  "devDependencies": {
47
- "@slates/provider": "1.0.0-rc.14",
47
+ "@slates/provider": "1.0.0-rc.15",
48
48
  "@slates/tsconfig": "1.0.0-rc.1",
49
49
  "typescript": "5.8.2",
50
50
  "vitest": "^3.1.2",