@sprucelabs/spruce-cli 17.1.51 → 17.1.52

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 (55) hide show
  1. package/CHANGELOG.md +4 -0
  2. package/build/.spruce/schemas/heartwood/v2021_02_11/getActiveThemeEmitTarget.schema.d.ts +3 -0
  3. package/build/.spruce/schemas/heartwood/v2021_02_11/getActiveThemeEmitTarget.schema.js +29 -0
  4. package/build/.spruce/schemas/heartwood/v2021_02_11/getActiveThemeEmitTarget.schema.js.map +1 -0
  5. package/build/.spruce/schemas/heartwood/v2021_02_11/getActiveThemeEmitTargetAndPayload.schema.d.ts +3 -0
  6. package/build/.spruce/schemas/heartwood/v2021_02_11/getActiveThemeEmitTargetAndPayload.schema.js +46 -0
  7. package/build/.spruce/schemas/heartwood/v2021_02_11/getActiveThemeEmitTargetAndPayload.schema.js.map +1 -0
  8. package/build/.spruce/schemas/heartwood/v2021_02_11/getActiveThemeResponsePayload.schema.d.ts +3 -0
  9. package/build/.spruce/schemas/heartwood/v2021_02_11/getActiveThemeResponsePayload.schema.js +34 -0
  10. package/build/.spruce/schemas/heartwood/v2021_02_11/getActiveThemeResponsePayload.schema.js.map +1 -0
  11. package/build/.spruce/schemas/heartwood/v2021_02_11/registerDashboardCardsResponsePayload.schema.d.ts +3 -0
  12. package/build/.spruce/schemas/heartwood/v2021_02_11/registerDashboardCardsResponsePayload.schema.js +31 -0
  13. package/build/.spruce/schemas/heartwood/v2021_02_11/registerDashboardCardsResponsePayload.schema.js.map +1 -0
  14. package/build/.spruce/schemas/heartwood/v2021_02_11/theme.schema.d.ts +3 -0
  15. package/build/.spruce/schemas/heartwood/v2021_02_11/theme.schema.js +49 -0
  16. package/build/.spruce/schemas/heartwood/v2021_02_11/theme.schema.js.map +1 -0
  17. package/build/.spruce/schemas/heartwood/v2021_02_11/upsertThemeEmitPayload.schema.d.ts +3 -0
  18. package/build/.spruce/schemas/heartwood/v2021_02_11/upsertThemeEmitPayload.schema.js +35 -0
  19. package/build/.spruce/schemas/heartwood/v2021_02_11/upsertThemeEmitPayload.schema.js.map +1 -0
  20. package/build/.spruce/schemas/heartwood/v2021_02_11/upsertThemeEmitTarget.schema.d.ts +3 -0
  21. package/build/.spruce/schemas/heartwood/v2021_02_11/upsertThemeEmitTarget.schema.js +29 -0
  22. package/build/.spruce/schemas/heartwood/v2021_02_11/upsertThemeEmitTarget.schema.js.map +1 -0
  23. package/build/.spruce/schemas/heartwood/v2021_02_11/upsertThemeEmitTargetAndPayload.schema.d.ts +3 -0
  24. package/build/.spruce/schemas/heartwood/v2021_02_11/upsertThemeEmitTargetAndPayload.schema.js +57 -0
  25. package/build/.spruce/schemas/heartwood/v2021_02_11/upsertThemeEmitTargetAndPayload.schema.js.map +1 -0
  26. package/build/.spruce/schemas/heartwood/v2021_02_11/upsertThemeResponsePayload.schema.d.ts +3 -0
  27. package/build/.spruce/schemas/heartwood/v2021_02_11/upsertThemeResponsePayload.schema.js +35 -0
  28. package/build/.spruce/schemas/heartwood/v2021_02_11/upsertThemeResponsePayload.schema.js.map +1 -0
  29. package/build/.spruce/schemas/schemas.types.d.ts +349 -63
  30. package/build/.spruce/schemas/schemas.types.js.map +1 -1
  31. package/build/.spruce/schemas/spruce/v2020_07_22/choice.schema.d.ts +1 -0
  32. package/build/.spruce/schemas/spruce/v2020_07_22/choice.schema.js +14 -0
  33. package/build/.spruce/schemas/spruce/v2020_07_22/choice.schema.js.map +1 -0
  34. package/build/.spruce/schemas/spruce/v2020_07_22/link.schema.d.ts +1 -0
  35. package/build/.spruce/schemas/spruce/v2020_07_22/link.schema.js +14 -0
  36. package/build/.spruce/schemas/spruce/v2020_07_22/link.schema.js.map +1 -0
  37. package/build/.spruce/schemas/spruceCli/v2020_07_22/createTestOptions.schema.js +2 -2
  38. package/build/.spruce/schemas/spruceCli/v2020_07_22/createTestOptions.schema.js.map +1 -1
  39. package/build/schemas/v2020_07_22/createTestOptions.builder.js +1 -1
  40. package/build/schemas/v2020_07_22/createTestOptions.builder.js.map +1 -1
  41. package/package.json +3 -3
  42. package/src/.spruce/schemas/heartwood/v2021_02_11/getActiveThemeEmitTarget.schema.ts +23 -0
  43. package/src/.spruce/schemas/heartwood/v2021_02_11/getActiveThemeEmitTargetAndPayload.schema.ts +30 -0
  44. package/src/.spruce/schemas/heartwood/v2021_02_11/getActiveThemeResponsePayload.schema.ts +22 -0
  45. package/src/.spruce/schemas/heartwood/v2021_02_11/registerDashboardCardsResponsePayload.schema.ts +25 -0
  46. package/src/.spruce/schemas/heartwood/v2021_02_11/theme.schema.ts +35 -0
  47. package/src/.spruce/schemas/heartwood/v2021_02_11/upsertThemeEmitPayload.schema.ts +23 -0
  48. package/src/.spruce/schemas/heartwood/v2021_02_11/upsertThemeEmitTarget.schema.ts +23 -0
  49. package/src/.spruce/schemas/heartwood/v2021_02_11/upsertThemeEmitTargetAndPayload.schema.ts +37 -0
  50. package/src/.spruce/schemas/heartwood/v2021_02_11/upsertThemeResponsePayload.schema.ts +23 -0
  51. package/src/.spruce/schemas/schemas.types.ts +361 -59
  52. package/src/.spruce/schemas/spruce/v2020_07_22/choice.schema.ts +1 -0
  53. package/src/.spruce/schemas/spruce/v2020_07_22/link.schema.ts +1 -0
  54. package/src/.spruce/schemas/spruceCli/v2020_07_22/createTestOptions.schema.ts +2 -2
  55. package/src/schemas/v2020_07_22/createTestOptions.builder.ts +1 -1
@@ -23,7 +23,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
23
23
  };
24
24
  };
25
25
  }
26
- type DidRegisterSkillViewsEmitTargetEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.DidRegisterSkillViewsEmitTargetSchema>;
26
+ interface DidRegisterSkillViewsEmitTargetEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.DidRegisterSkillViewsEmitTargetSchema> {
27
+ }
27
28
  }
28
29
  namespace SpruceSchemas.Heartwood.v2021_02_11 {
29
30
  interface DidRegisterSkillViewsEmitPayload {
@@ -45,7 +46,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
45
46
  };
46
47
  };
47
48
  }
48
- type DidRegisterSkillViewsEmitPayloadEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.DidRegisterSkillViewsEmitPayloadSchema>;
49
+ interface DidRegisterSkillViewsEmitPayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.DidRegisterSkillViewsEmitPayloadSchema> {
50
+ }
49
51
  }
50
52
  namespace SpruceSchemas.Heartwood.v2021_02_11 {
51
53
  interface DidRegisterSkillViewsEmitTargetAndPayload {
@@ -86,7 +88,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
86
88
  };
87
89
  };
88
90
  }
89
- type DidRegisterSkillViewsEmitTargetAndPayloadEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.DidRegisterSkillViewsEmitTargetAndPayloadSchema>;
91
+ interface DidRegisterSkillViewsEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.DidRegisterSkillViewsEmitTargetAndPayloadSchema> {
92
+ }
90
93
  }
91
94
  namespace SpruceSchemas.Heartwood.v2021_02_11 {
92
95
  interface GenerateUrlEmitTarget {
@@ -110,7 +113,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
110
113
  };
111
114
  };
112
115
  }
113
- type GenerateUrlEmitTargetEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GenerateUrlEmitTargetSchema>;
116
+ interface GenerateUrlEmitTargetEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GenerateUrlEmitTargetSchema> {
117
+ }
114
118
  }
115
119
  namespace SpruceSchemas.Heartwood.v2021_02_11 {
116
120
  interface GenerateUrlEmitPayload {
@@ -133,7 +137,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
133
137
  };
134
138
  };
135
139
  }
136
- type GenerateUrlEmitPayloadEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GenerateUrlEmitPayloadSchema>;
140
+ interface GenerateUrlEmitPayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GenerateUrlEmitPayloadSchema> {
141
+ }
137
142
  }
138
143
  namespace SpruceSchemas.Heartwood.v2021_02_11 {
139
144
  interface GenerateUrlEmitTargetAndPayload {
@@ -172,7 +177,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
172
177
  };
173
178
  };
174
179
  }
175
- type GenerateUrlEmitTargetAndPayloadEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GenerateUrlEmitTargetAndPayloadSchema>;
180
+ interface GenerateUrlEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GenerateUrlEmitTargetAndPayloadSchema> {
181
+ }
176
182
  }
177
183
  namespace SpruceSchemas.Heartwood.v2021_02_11 {
178
184
  interface GenerateUrlResponsePayload {
@@ -194,7 +200,51 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
194
200
  };
195
201
  };
196
202
  }
197
- type GenerateUrlResponsePayloadEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GenerateUrlResponsePayloadSchema>;
203
+ interface GenerateUrlResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GenerateUrlResponsePayloadSchema> {
204
+ }
205
+ }
206
+ namespace SpruceSchemas.Heartwood.v2021_02_11 {
207
+ interface GetActiveThemeEmitTarget {
208
+ 'organizationId': string;
209
+ }
210
+ interface GetActiveThemeEmitTargetSchema extends SpruceSchema.Schema {
211
+ id: 'getActiveThemeEmitTarget';
212
+ version: 'v2021_02_11';
213
+ namespace: 'Heartwood';
214
+ name: '';
215
+ fields: {
216
+ /** . */
217
+ 'organizationId': {
218
+ type: 'id';
219
+ isRequired: true;
220
+ options: undefined;
221
+ };
222
+ };
223
+ }
224
+ interface GetActiveThemeEmitTargetEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GetActiveThemeEmitTargetSchema> {
225
+ }
226
+ }
227
+ namespace SpruceSchemas.Heartwood.v2021_02_11 {
228
+ interface GetActiveThemeResponsePayload {
229
+ 'theme'?: SpruceSchemas.Heartwood.v2021_02_11.Theme | undefined | null;
230
+ }
231
+ interface GetActiveThemeResponsePayloadSchema extends SpruceSchema.Schema {
232
+ id: 'getActiveThemeResponsePayload';
233
+ version: 'v2021_02_11';
234
+ namespace: 'Heartwood';
235
+ name: '';
236
+ fields: {
237
+ /** . */
238
+ 'theme': {
239
+ type: 'schema';
240
+ options: {
241
+ schema: SpruceSchemas.Heartwood.v2021_02_11.ThemeSchema;
242
+ };
243
+ };
244
+ };
245
+ }
246
+ interface GetActiveThemeResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GetActiveThemeResponsePayloadSchema> {
247
+ }
198
248
  }
199
249
  namespace SpruceSchemas.Heartwood.v2021_02_11 {
200
250
  interface GetViewControllersEmitTarget {
@@ -214,7 +264,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
214
264
  };
215
265
  };
216
266
  }
217
- type GetViewControllersEmitTargetEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GetViewControllersEmitTargetSchema>;
267
+ interface GetViewControllersEmitTargetEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GetViewControllersEmitTargetSchema> {
268
+ }
218
269
  }
219
270
  namespace SpruceSchemas.Heartwood.v2021_02_11 {
220
271
  interface GetSkillViewsEmitTargetAndPayload {
@@ -246,7 +297,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
246
297
  };
247
298
  };
248
299
  }
249
- type GetSkillViewsEmitTargetAndPayloadEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GetSkillViewsEmitTargetAndPayloadSchema>;
300
+ interface GetSkillViewsEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GetSkillViewsEmitTargetAndPayloadSchema> {
301
+ }
250
302
  }
251
303
  namespace SpruceSchemas.Heartwood.v2021_02_11 {
252
304
  interface GetSkillViewsResponsePayload {
@@ -289,7 +341,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
289
341
  };
290
342
  };
291
343
  }
292
- type GetSkillViewsResponsePayloadEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GetSkillViewsResponsePayloadSchema>;
344
+ interface GetSkillViewsResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GetSkillViewsResponsePayloadSchema> {
345
+ }
293
346
  }
294
347
  namespace SpruceSchemas.Heartwood.v2021_02_11 {
295
348
  interface ListViewsResult {
@@ -333,7 +386,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
333
386
  };
334
387
  };
335
388
  }
336
- type ListViewsResultEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.ListViewsResultSchema>;
389
+ interface ListViewsResultEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.ListViewsResultSchema> {
390
+ }
337
391
  }
338
392
  namespace SpruceSchemas.Heartwood.v2021_02_11 {
339
393
  interface ListViewsResponsePayload {
@@ -357,39 +411,31 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
357
411
  };
358
412
  };
359
413
  }
360
- type ListViewsResponsePayloadEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.ListViewsResponsePayloadSchema>;
414
+ interface ListViewsResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.ListViewsResponsePayloadSchema> {
415
+ }
361
416
  }
362
417
  namespace SpruceSchemas.Heartwood.v2021_02_11 {
363
- interface RegisterSkillViewsEmitTargetAndPayload {
364
- /** Source. */
365
- 'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource | undefined | null;
366
- 'payload': SpruceSchemas.Heartwood.v2021_02_11.RegisterSkillViewsEmitPayload;
418
+ interface RegisterDashboardCardsResponsePayload {
419
+ 'vcIds': string[];
367
420
  }
368
- interface RegisterSkillViewsEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
369
- id: 'registerSkillViewsEmitTargetAndPayload';
421
+ interface RegisterDashboardCardsResponsePayloadSchema extends SpruceSchema.Schema {
422
+ id: 'registerDashboardCardsResponsePayload';
370
423
  version: 'v2021_02_11';
371
424
  namespace: 'Heartwood';
372
425
  name: '';
373
426
  fields: {
374
- /** Source. */
375
- 'source': {
376
- label: 'Source';
377
- type: 'schema';
378
- options: {
379
- schema: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSourceSchema;
380
- };
381
- };
382
427
  /** . */
383
- 'payload': {
384
- type: 'schema';
428
+ 'vcIds': {
429
+ type: 'id';
385
430
  isRequired: true;
386
- options: {
387
- schema: SpruceSchemas.Heartwood.v2021_02_11.RegisterSkillViewsEmitPayloadSchema;
388
- };
431
+ isArray: true;
432
+ minArrayLength: 0;
433
+ options: undefined;
389
434
  };
390
435
  };
391
436
  }
392
- type RegisterSkillViewsEmitTargetAndPayloadEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.RegisterSkillViewsEmitTargetAndPayloadSchema>;
437
+ interface RegisterDashboardCardsResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.RegisterDashboardCardsResponsePayloadSchema> {
438
+ }
393
439
  }
394
440
  namespace SpruceSchemas.Heartwood.v2021_02_11 {
395
441
  interface RegisterSkillViewsEmitPayload {
@@ -425,7 +471,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
425
471
  };
426
472
  };
427
473
  }
428
- type RegisterSkillViewsEmitPayloadEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.RegisterSkillViewsEmitPayloadSchema>;
474
+ interface RegisterSkillViewsEmitPayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.RegisterSkillViewsEmitPayloadSchema> {
475
+ }
429
476
  }
430
477
  namespace SpruceSchemas.Heartwood.v2021_02_11 {
431
478
  interface RegisterSkillViewsResponsePayload {
@@ -447,7 +494,220 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
447
494
  };
448
495
  };
449
496
  }
450
- type RegisterSkillViewsResponsePayloadEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.RegisterSkillViewsResponsePayloadSchema>;
497
+ interface RegisterSkillViewsResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.RegisterSkillViewsResponsePayloadSchema> {
498
+ }
499
+ }
500
+ namespace SpruceSchemas.Heartwood.v2021_02_11 {
501
+ interface GetActiveThemeEmitTargetAndPayload {
502
+ /** Source. */
503
+ 'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource | undefined | null;
504
+ 'target': SpruceSchemas.Heartwood.v2021_02_11.GetActiveThemeEmitTarget;
505
+ }
506
+ interface GetActiveThemeEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
507
+ id: 'getActiveThemeEmitTargetAndPayload';
508
+ version: 'v2021_02_11';
509
+ namespace: 'Heartwood';
510
+ name: '';
511
+ fields: {
512
+ /** Source. */
513
+ 'source': {
514
+ label: 'Source';
515
+ type: 'schema';
516
+ options: {
517
+ schema: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSourceSchema;
518
+ };
519
+ };
520
+ /** . */
521
+ 'target': {
522
+ type: 'schema';
523
+ isRequired: true;
524
+ options: {
525
+ schema: SpruceSchemas.Heartwood.v2021_02_11.GetActiveThemeEmitTargetSchema;
526
+ };
527
+ };
528
+ };
529
+ }
530
+ interface GetActiveThemeEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GetActiveThemeEmitTargetAndPayloadSchema> {
531
+ }
532
+ }
533
+ namespace SpruceSchemas.Heartwood.v2021_02_11 {
534
+ interface RegisterSkillViewsEmitTargetAndPayload {
535
+ /** Source. */
536
+ 'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource | undefined | null;
537
+ 'payload': SpruceSchemas.Heartwood.v2021_02_11.RegisterSkillViewsEmitPayload;
538
+ }
539
+ interface RegisterSkillViewsEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
540
+ id: 'registerSkillViewsEmitTargetAndPayload';
541
+ version: 'v2021_02_11';
542
+ namespace: 'Heartwood';
543
+ name: '';
544
+ fields: {
545
+ /** Source. */
546
+ 'source': {
547
+ label: 'Source';
548
+ type: 'schema';
549
+ options: {
550
+ schema: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSourceSchema;
551
+ };
552
+ };
553
+ /** . */
554
+ 'payload': {
555
+ type: 'schema';
556
+ isRequired: true;
557
+ options: {
558
+ schema: SpruceSchemas.Heartwood.v2021_02_11.RegisterSkillViewsEmitPayloadSchema;
559
+ };
560
+ };
561
+ };
562
+ }
563
+ interface RegisterSkillViewsEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.RegisterSkillViewsEmitTargetAndPayloadSchema> {
564
+ }
565
+ }
566
+ namespace SpruceSchemas.Heartwood.v2021_02_11 {
567
+ interface UpsertThemeEmitTarget {
568
+ 'organizationId': string;
569
+ }
570
+ interface UpsertThemeEmitTargetSchema extends SpruceSchema.Schema {
571
+ id: 'upsertThemeEmitTarget';
572
+ version: 'v2021_02_11';
573
+ namespace: 'Heartwood';
574
+ name: '';
575
+ fields: {
576
+ /** . */
577
+ 'organizationId': {
578
+ type: 'id';
579
+ isRequired: true;
580
+ options: undefined;
581
+ };
582
+ };
583
+ }
584
+ interface UpsertThemeEmitTargetEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.UpsertThemeEmitTargetSchema> {
585
+ }
586
+ }
587
+ namespace SpruceSchemas.Heartwood.v2021_02_11 {
588
+ interface UpsertThemeEmitTargetAndPayload {
589
+ /** Source. */
590
+ 'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource | undefined | null;
591
+ 'target': SpruceSchemas.Heartwood.v2021_02_11.UpsertThemeEmitTarget;
592
+ 'payload': SpruceSchemas.Heartwood.v2021_02_11.UpsertThemeEmitPayload;
593
+ }
594
+ interface UpsertThemeEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
595
+ id: 'upsertThemeEmitTargetAndPayload';
596
+ version: 'v2021_02_11';
597
+ namespace: 'Heartwood';
598
+ name: '';
599
+ fields: {
600
+ /** Source. */
601
+ 'source': {
602
+ label: 'Source';
603
+ type: 'schema';
604
+ options: {
605
+ schema: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSourceSchema;
606
+ };
607
+ };
608
+ /** . */
609
+ 'target': {
610
+ type: 'schema';
611
+ isRequired: true;
612
+ options: {
613
+ schema: SpruceSchemas.Heartwood.v2021_02_11.UpsertThemeEmitTargetSchema;
614
+ };
615
+ };
616
+ /** . */
617
+ 'payload': {
618
+ type: 'schema';
619
+ isRequired: true;
620
+ options: {
621
+ schema: SpruceSchemas.Heartwood.v2021_02_11.UpsertThemeEmitPayloadSchema;
622
+ };
623
+ };
624
+ };
625
+ }
626
+ interface UpsertThemeEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.UpsertThemeEmitTargetAndPayloadSchema> {
627
+ }
628
+ }
629
+ namespace SpruceSchemas.Heartwood.v2021_02_11 {
630
+ interface Theme {
631
+ 'slug': string;
632
+ 'name': string;
633
+ 'props': SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ThemeProps;
634
+ }
635
+ interface ThemeSchema extends SpruceSchema.Schema {
636
+ id: 'theme';
637
+ version: 'v2021_02_11';
638
+ namespace: 'Heartwood';
639
+ name: 'Theme';
640
+ fields: {
641
+ /** . */
642
+ 'slug': {
643
+ type: 'id';
644
+ isRequired: true;
645
+ options: undefined;
646
+ };
647
+ /** . */
648
+ 'name': {
649
+ type: 'text';
650
+ isRequired: true;
651
+ options: undefined;
652
+ };
653
+ /** . */
654
+ 'props': {
655
+ type: 'schema';
656
+ isRequired: true;
657
+ options: {
658
+ schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ThemePropsSchema;
659
+ };
660
+ };
661
+ };
662
+ }
663
+ interface ThemeEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.ThemeSchema> {
664
+ }
665
+ }
666
+ namespace SpruceSchemas.Heartwood.v2021_02_11 {
667
+ interface UpsertThemeEmitPayload {
668
+ 'theme': SpruceSchemas.Heartwood.v2021_02_11.Theme;
669
+ }
670
+ interface UpsertThemeEmitPayloadSchema extends SpruceSchema.Schema {
671
+ id: 'upsertThemeEmitPayload';
672
+ version: 'v2021_02_11';
673
+ namespace: 'Heartwood';
674
+ name: '';
675
+ fields: {
676
+ /** . */
677
+ 'theme': {
678
+ type: 'schema';
679
+ isRequired: true;
680
+ options: {
681
+ schema: SpruceSchemas.Heartwood.v2021_02_11.ThemeSchema;
682
+ };
683
+ };
684
+ };
685
+ }
686
+ interface UpsertThemeEmitPayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.UpsertThemeEmitPayloadSchema> {
687
+ }
688
+ }
689
+ namespace SpruceSchemas.Heartwood.v2021_02_11 {
690
+ interface UpsertThemeResponsePayload {
691
+ 'theme': SpruceSchemas.Heartwood.v2021_02_11.Theme;
692
+ }
693
+ interface UpsertThemeResponsePayloadSchema extends SpruceSchema.Schema {
694
+ id: 'upsertThemeResponsePayload';
695
+ version: 'v2021_02_11';
696
+ namespace: 'Heartwood';
697
+ name: '';
698
+ fields: {
699
+ /** . */
700
+ 'theme': {
701
+ type: 'schema';
702
+ isRequired: true;
703
+ options: {
704
+ schema: SpruceSchemas.Heartwood.v2021_02_11.ThemeSchema;
705
+ };
706
+ };
707
+ };
708
+ }
709
+ interface UpsertThemeResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.UpsertThemeResponsePayloadSchema> {
710
+ }
451
711
  }
452
712
  namespace SpruceSchemas.SpruceCli.v2020_07_22 {
453
713
  interface GeneratedDir {
@@ -501,7 +761,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
501
761
  };
502
762
  };
503
763
  }
504
- type GeneratedDirEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.GeneratedDirSchema>;
764
+ interface GeneratedDirEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.GeneratedDirSchema> {
765
+ }
505
766
  }
506
767
  namespace SpruceSchemas.SpruceCli.v2020_07_22 {
507
768
  interface GeneratedFile {
@@ -555,7 +816,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
555
816
  };
556
817
  };
557
818
  }
558
- type GeneratedFileEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.GeneratedFileSchema>;
819
+ interface GeneratedFileEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.GeneratedFileSchema> {
820
+ }
559
821
  }
560
822
  namespace SpruceSchemas.SpruceCli.v2020_07_22 {
561
823
  interface WatcherDidDetectChangesEmitPayload {
@@ -586,7 +848,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
586
848
  };
587
849
  };
588
850
  }
589
- type WatcherDidDetectChangesEmitPayloadEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.WatcherDidDetectChangesEmitPayloadSchema>;
851
+ interface WatcherDidDetectChangesEmitPayloadEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.WatcherDidDetectChangesEmitPayloadSchema> {
852
+ }
590
853
  }
591
854
  namespace SpruceSchemas.SpruceCli.v2020_07_22 {
592
855
  /** Upgrade. Everything. Heads up, this can take a few minutes. ⏱ */
@@ -621,7 +884,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
621
884
  };
622
885
  };
623
886
  }
624
- type UpgradeSkillOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.UpgradeSkillOptionsSchema>;
887
+ interface UpgradeSkillOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.UpgradeSkillOptionsSchema> {
888
+ }
625
889
  }
626
890
  namespace SpruceSchemas.SpruceCli.v2020_07_22 {
627
891
  /** Test your might! 💪 */
@@ -703,7 +967,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
703
967
  };
704
968
  };
705
969
  }
706
- type TestOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.TestOptionsSchema>;
970
+ interface TestOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.TestOptionsSchema> {
971
+ }
707
972
  }
708
973
  namespace SpruceSchemas.SpruceCli.v2020_07_22 {
709
974
  /** Options for schema.sync. */
@@ -905,7 +1170,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
905
1170
  };
906
1171
  };
907
1172
  }
908
- type SyncSchemasOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.SyncSchemasOptionsSchema>;
1173
+ interface SyncSchemasOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.SyncSchemasOptionsSchema> {
1174
+ }
909
1175
  }
910
1176
  namespace SpruceSchemas.SpruceCli.v2020_07_22 {
911
1177
  /** Sync schema fields so you can use schemas! */
@@ -952,7 +1218,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
952
1218
  };
953
1219
  };
954
1220
  }
955
- type SyncSchemaFieldsOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.SyncSchemaFieldsOptionsSchema>;
1221
+ interface SyncSchemaFieldsOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.SyncSchemaFieldsOptionsSchema> {
1222
+ }
956
1223
  }
957
1224
  namespace SpruceSchemas.SpruceCli.v2020_07_22 {
958
1225
  /** Pull down event contracts from Mercury to make them available in your skill. */
@@ -1014,7 +1281,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1014
1281
  };
1015
1282
  };
1016
1283
  }
1017
- type SyncEventOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.SyncEventOptionsSchema>;
1284
+ interface SyncEventOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.SyncEventOptionsSchema> {
1285
+ }
1018
1286
  }
1019
1287
  namespace SpruceSchemas.SpruceCli.v2020_07_22 {
1020
1288
  /** Keep your errors types in sync with your builders */
@@ -1225,7 +1493,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1225
1493
  };
1226
1494
  };
1227
1495
  }
1228
- type SyncErrorOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.SyncErrorOptionsSchema>;
1496
+ interface SyncErrorOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.SyncErrorOptionsSchema> {
1497
+ }
1229
1498
  }
1230
1499
  namespace SpruceSchemas.SpruceCli.v2020_07_22 {
1231
1500
  interface SkillFeature {
@@ -1263,7 +1532,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1263
1532
  };
1264
1533
  };
1265
1534
  }
1266
- type SkillFeatureEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.SkillFeatureSchema>;
1535
+ interface SkillFeatureEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.SkillFeatureSchema> {
1536
+ }
1267
1537
  }
1268
1538
  namespace SpruceSchemas.SpruceCli.v2020_07_22 {
1269
1539
  /** Install vscode extensions, launch configs, and settings the Spruce team uses in-house! */
@@ -1286,7 +1556,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1286
1556
  };
1287
1557
  };
1288
1558
  }
1289
- type SetupVscodeOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.SetupVscodeOptionsSchema>;
1559
+ interface SetupVscodeOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.SetupVscodeOptionsSchema> {
1560
+ }
1290
1561
  }
1291
1562
  namespace SpruceSchemas.SpruceCli.v2020_07_22 {
1292
1563
  /** Use this with in your CI/CD environment to get your skill ready to run tests. */
@@ -1319,7 +1590,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1319
1590
  };
1320
1591
  };
1321
1592
  }
1322
- type SetupTestsOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.SetupTestsOptionsSchema>;
1593
+ interface SetupTestsOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.SetupTestsOptionsSchema> {
1594
+ }
1323
1595
  }
1324
1596
  namespace SpruceSchemas.SpruceCli.v2020_07_22 {
1325
1597
  interface RegisterDashboardWidgetsEmitPayloadSchema {
@@ -1340,7 +1612,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1340
1612
  };
1341
1613
  };
1342
1614
  }
1343
- type RegisterDashboardWidgetsEmitPayloadSchemaEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.RegisterDashboardWidgetsEmitPayloadSchemaSchema>;
1615
+ interface RegisterDashboardWidgetsEmitPayloadSchemaEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.RegisterDashboardWidgetsEmitPayloadSchemaSchema> {
1616
+ }
1344
1617
  }
1345
1618
  namespace SpruceSchemas.SpruceCli.v2020_07_22 {
1346
1619
  /** A stripped down cli user with token details for login */
@@ -1389,7 +1662,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1389
1662
  };
1390
1663
  };
1391
1664
  }
1392
- type PersonWithTokenEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.PersonWithTokenSchema>;
1665
+ interface PersonWithTokenEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.PersonWithTokenSchema> {
1666
+ }
1393
1667
  }
1394
1668
  namespace SpruceSchemas.SpruceCli.v2020_07_22 {
1395
1669
  /** Track onboarding progress and tutorials &amp; quizzes completed. */
@@ -1440,7 +1714,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1440
1714
  };
1441
1715
  };
1442
1716
  }
1443
- type OnboardingEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.OnboardingSchema>;
1717
+ interface OnboardingEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.OnboardingSchema> {
1718
+ }
1444
1719
  }
1445
1720
  namespace SpruceSchemas.SpruceCli.v2020_07_22 {
1446
1721
  /** The question is; Are you read? ⚡️ */
@@ -1454,7 +1729,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1454
1729
  description: 'The question is; Are you read? ⚡️';
1455
1730
  fields: {};
1456
1731
  }
1457
- type OnboardOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.OnboardOptionsSchema>;
1732
+ interface OnboardOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.OnboardOptionsSchema> {
1733
+ }
1458
1734
  }
1459
1735
  namespace SpruceSchemas.SpruceCli.v2020_07_22 {
1460
1736
  /** Create a new node module, to be written in typescript, ready to rock! */
@@ -1494,7 +1770,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1494
1770
  };
1495
1771
  };
1496
1772
  }
1497
- type NodeFeatureOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.NodeFeatureOptionsSchema>;
1773
+ interface NodeFeatureOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.NodeFeatureOptionsSchema> {
1774
+ }
1498
1775
  }
1499
1776
  namespace SpruceSchemas.SpruceCli.v2020_07_22 {
1500
1777
  /** Used to collect input on the names of a class or interface */
@@ -1611,7 +1888,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1611
1888
  };
1612
1889
  };
1613
1890
  }
1614
- type NamedTemplateItemEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.NamedTemplateItemSchema>;
1891
+ interface NamedTemplateItemEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.NamedTemplateItemSchema> {
1892
+ }
1615
1893
  }
1616
1894
  namespace SpruceSchemas.SpruceCli.v2020_07_22 {
1617
1895
  /** Options for event.listen. */
@@ -1709,7 +1987,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1709
1987
  };
1710
1988
  };
1711
1989
  }
1712
- type ListenEventOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.ListenEventOptionsSchema>;
1990
+ interface ListenEventOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.ListenEventOptionsSchema> {
1991
+ }
1713
1992
  }
1714
1993
  namespace SpruceSchemas.SpruceCli.v2020_07_22 {
1715
1994
  /** Install your skill at any organization you are connected to. */
@@ -1732,14 +2011,15 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1732
2011
  };
1733
2012
  };
1734
2013
  }
1735
- type InstallSkillAtOrganizationOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.InstallSkillAtOrganizationOptionsSchema>;
2014
+ interface InstallSkillAtOrganizationOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.InstallSkillAtOrganizationOptionsSchema> {
2015
+ }
1736
2016
  }
1737
2017
  namespace SpruceSchemas.SpruceCli.v2020_07_22 {
1738
2018
  /** Your first failing test just a command away! ⚔️ */
1739
2019
  interface CreateTestOptions {
1740
2020
  /** Type of test. */
1741
2021
  'type': ("behavioral" | "implementation");
1742
- /** What are you testing?. E.g. Booking an appointment or turning on a light */
2022
+ /** What are you testing?. E.g. Todo Card or Systems List */
1743
2023
  'nameReadable': string;
1744
2024
  /** Test destination directory. Where I'll save your new test. */
1745
2025
  'testDestinationDir'?: string | undefined | null;
@@ -1770,12 +2050,12 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1770
2050
  }];
1771
2051
  };
1772
2052
  };
1773
- /** What are you testing?. E.g. Booking an appointment or turning on a light */
2053
+ /** What are you testing?. E.g. Todo Card or Systems List */
1774
2054
  'nameReadable': {
1775
2055
  label: 'What are you testing?';
1776
2056
  type: 'text';
1777
2057
  isRequired: true;
1778
- hint: 'E.g. Booking an appointment or turning on a light';
2058
+ hint: 'E.g. Todo Card or Systems List';
1779
2059
  options: undefined;
1780
2060
  };
1781
2061
  /** Test destination directory. Where I'll save your new test. */
@@ -1803,7 +2083,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1803
2083
  };
1804
2084
  };
1805
2085
  }
1806
- type CreateTestOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.CreateTestOptionsSchema>;
2086
+ interface CreateTestOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.CreateTestOptionsSchema> {
2087
+ }
1807
2088
  }
1808
2089
  namespace SpruceSchemas.SpruceCli.v2020_07_22 {
1809
2090
  /** Create the builder to a fresh new schema! */
@@ -2085,7 +2366,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
2085
2366
  };
2086
2367
  };
2087
2368
  }
2088
- type CreateSchemaOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.CreateSchemaOptionsSchema>;
2369
+ interface CreateSchemaOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.CreateSchemaOptionsSchema> {
2370
+ }
2089
2371
  }
2090
2372
  namespace SpruceSchemas.SpruceCli.v2020_07_22 {
2091
2373
  /** Skills can only communicate with people and skills associated with the same organization. This ensures people can get differentiated experiences across multiple businesses. */
@@ -2119,7 +2401,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
2119
2401
  };
2120
2402
  };
2121
2403
  }
2122
- type CreateOrganizationOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.CreateOrganizationOptionsSchema>;
2404
+ interface CreateOrganizationOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.CreateOrganizationOptionsSchema> {
2405
+ }
2123
2406
  }
2124
2407
  namespace SpruceSchemas.SpruceCli.v2020_07_22 {
2125
2408
  /** Create a builder for your brand new error! */
@@ -2380,7 +2663,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
2380
2663
  };
2381
2664
  };
2382
2665
  }
2383
- type CreateErrorOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.CreateErrorOptionsSchema>;
2666
+ interface CreateErrorOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.CreateErrorOptionsSchema> {
2667
+ }
2384
2668
  }
2385
2669
  namespace SpruceSchemas.SpruceCli.v2020_07_22 {
2386
2670
  /** Define a topic you want to discuss. */
@@ -2415,7 +2699,8 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
2415
2699
  };
2416
2700
  };
2417
2701
  }
2418
- type CreateConversationTopicOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.CreateConversationTopicOptionsSchema>;
2702
+ interface CreateConversationTopicOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.CreateConversationTopicOptionsSchema> {
2703
+ }
2419
2704
  }
2420
2705
  namespace SpruceSchemas.SpruceCli.v2020_07_22 {
2421
2706
  /** Boot your skill 💪 */
@@ -2466,6 +2751,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
2466
2751
  };
2467
2752
  };
2468
2753
  }
2469
- type BootSkillOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.BootSkillOptionsSchema>;
2754
+ interface BootSkillOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.BootSkillOptionsSchema> {
2755
+ }
2470
2756
  }
2471
2757
  }