@sprucelabs/spruce-cli 17.1.50 → 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 (57) hide show
  1. package/CHANGELOG.md +8 -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/features/onboard/templates/RootViewController.test.ts.hbs +7 -5
  40. package/build/schemas/v2020_07_22/createTestOptions.builder.js +1 -1
  41. package/build/schemas/v2020_07_22/createTestOptions.builder.js.map +1 -1
  42. package/package.json +3 -3
  43. package/src/.spruce/schemas/heartwood/v2021_02_11/getActiveThemeEmitTarget.schema.ts +23 -0
  44. package/src/.spruce/schemas/heartwood/v2021_02_11/getActiveThemeEmitTargetAndPayload.schema.ts +30 -0
  45. package/src/.spruce/schemas/heartwood/v2021_02_11/getActiveThemeResponsePayload.schema.ts +22 -0
  46. package/src/.spruce/schemas/heartwood/v2021_02_11/registerDashboardCardsResponsePayload.schema.ts +25 -0
  47. package/src/.spruce/schemas/heartwood/v2021_02_11/theme.schema.ts +35 -0
  48. package/src/.spruce/schemas/heartwood/v2021_02_11/upsertThemeEmitPayload.schema.ts +23 -0
  49. package/src/.spruce/schemas/heartwood/v2021_02_11/upsertThemeEmitTarget.schema.ts +23 -0
  50. package/src/.spruce/schemas/heartwood/v2021_02_11/upsertThemeEmitTargetAndPayload.schema.ts +37 -0
  51. package/src/.spruce/schemas/heartwood/v2021_02_11/upsertThemeResponsePayload.schema.ts +23 -0
  52. package/src/.spruce/schemas/schemas.types.ts +361 -59
  53. package/src/.spruce/schemas/spruce/v2020_07_22/choice.schema.ts +1 -0
  54. package/src/.spruce/schemas/spruce/v2020_07_22/link.schema.ts +1 -0
  55. package/src/.spruce/schemas/spruceCli/v2020_07_22/createTestOptions.schema.ts +2 -2
  56. package/src/features/onboard/templates/RootViewController.test.ts.hbs +7 -5
  57. package/src/schemas/v2020_07_22/createTestOptions.builder.ts +1 -1
@@ -40,7 +40,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
40
40
  }
41
41
  }
42
42
 
43
- type DidRegisterSkillViewsEmitTargetEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.DidRegisterSkillViewsEmitTargetSchema>
43
+ interface DidRegisterSkillViewsEmitTargetEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.DidRegisterSkillViewsEmitTargetSchema> {}
44
44
 
45
45
  }
46
46
 
@@ -70,7 +70,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
70
70
  }
71
71
  }
72
72
 
73
- type DidRegisterSkillViewsEmitPayloadEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.DidRegisterSkillViewsEmitPayloadSchema>
73
+ interface DidRegisterSkillViewsEmitPayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.DidRegisterSkillViewsEmitPayloadSchema> {}
74
74
 
75
75
  }
76
76
 
@@ -115,7 +115,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
115
115
  }
116
116
  }
117
117
 
118
- type DidRegisterSkillViewsEmitTargetAndPayloadEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.DidRegisterSkillViewsEmitTargetAndPayloadSchema>
118
+ interface DidRegisterSkillViewsEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.DidRegisterSkillViewsEmitTargetAndPayloadSchema> {}
119
119
 
120
120
  }
121
121
 
@@ -145,7 +145,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
145
145
  }
146
146
  }
147
147
 
148
- type GenerateUrlEmitTargetEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GenerateUrlEmitTargetSchema>
148
+ interface GenerateUrlEmitTargetEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GenerateUrlEmitTargetSchema> {}
149
149
 
150
150
  }
151
151
 
@@ -174,7 +174,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
174
174
  }
175
175
  }
176
176
 
177
- type GenerateUrlEmitPayloadEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GenerateUrlEmitPayloadSchema>
177
+ interface GenerateUrlEmitPayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GenerateUrlEmitPayloadSchema> {}
178
178
 
179
179
  }
180
180
 
@@ -217,7 +217,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
217
217
  }
218
218
  }
219
219
 
220
- type GenerateUrlEmitTargetAndPayloadEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GenerateUrlEmitTargetAndPayloadSchema>
220
+ interface GenerateUrlEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GenerateUrlEmitTargetAndPayloadSchema> {}
221
221
 
222
222
  }
223
223
 
@@ -247,7 +247,64 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
247
247
  }
248
248
  }
249
249
 
250
- type GenerateUrlResponsePayloadEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GenerateUrlResponsePayloadSchema>
250
+ interface GenerateUrlResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GenerateUrlResponsePayloadSchema> {}
251
+
252
+ }
253
+
254
+
255
+ namespace SpruceSchemas.Heartwood.v2021_02_11 {
256
+
257
+
258
+ interface GetActiveThemeEmitTarget {
259
+
260
+
261
+ 'organizationId': string
262
+ }
263
+
264
+ interface GetActiveThemeEmitTargetSchema extends SpruceSchema.Schema {
265
+ id: 'getActiveThemeEmitTarget',
266
+ version: 'v2021_02_11',
267
+ namespace: 'Heartwood',
268
+ name: '',
269
+ fields: {
270
+ /** . */
271
+ 'organizationId': {
272
+ type: 'id',
273
+ isRequired: true,
274
+ options: undefined
275
+ },
276
+ }
277
+ }
278
+
279
+ interface GetActiveThemeEmitTargetEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GetActiveThemeEmitTargetSchema> {}
280
+
281
+ }
282
+
283
+
284
+ namespace SpruceSchemas.Heartwood.v2021_02_11 {
285
+
286
+
287
+ interface GetActiveThemeResponsePayload {
288
+
289
+
290
+ 'theme'?: SpruceSchemas.Heartwood.v2021_02_11.Theme| undefined | null
291
+ }
292
+
293
+ interface GetActiveThemeResponsePayloadSchema extends SpruceSchema.Schema {
294
+ id: 'getActiveThemeResponsePayload',
295
+ version: 'v2021_02_11',
296
+ namespace: 'Heartwood',
297
+ name: '',
298
+ fields: {
299
+ /** . */
300
+ 'theme': {
301
+ type: 'schema',
302
+ options: {schema: SpruceSchemas.Heartwood.v2021_02_11.ThemeSchema,}
303
+ },
304
+ }
305
+ }
306
+
307
+ interface GetActiveThemeResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GetActiveThemeResponsePayloadSchema> {}
251
308
 
252
309
  }
253
310
 
@@ -276,7 +333,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
276
333
  }
277
334
  }
278
335
 
279
- type GetViewControllersEmitTargetEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GetViewControllersEmitTargetSchema>
336
+ interface GetViewControllersEmitTargetEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GetViewControllersEmitTargetSchema> {}
280
337
 
281
338
  }
282
339
 
@@ -313,7 +370,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
313
370
  }
314
371
  }
315
372
 
316
- type GetSkillViewsEmitTargetAndPayloadEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GetSkillViewsEmitTargetAndPayloadSchema>
373
+ interface GetSkillViewsEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GetSkillViewsEmitTargetAndPayloadSchema> {}
317
374
 
318
375
  }
319
376
 
@@ -366,7 +423,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
366
423
  }
367
424
  }
368
425
 
369
- type GetSkillViewsResponsePayloadEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GetSkillViewsResponsePayloadSchema>
426
+ interface GetSkillViewsResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GetSkillViewsResponsePayloadSchema> {}
370
427
 
371
428
  }
372
429
 
@@ -419,7 +476,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
419
476
  }
420
477
  }
421
478
 
422
- type ListViewsResultEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.ListViewsResultSchema>
479
+ interface ListViewsResultEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.ListViewsResultSchema> {}
423
480
 
424
481
  }
425
482
 
@@ -450,7 +507,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
450
507
  }
451
508
  }
452
509
 
453
- type ListViewsResponsePayloadEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.ListViewsResponsePayloadSchema>
510
+ interface ListViewsResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.ListViewsResponsePayloadSchema> {}
454
511
 
455
512
  }
456
513
 
@@ -458,36 +515,30 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
458
515
  namespace SpruceSchemas.Heartwood.v2021_02_11 {
459
516
 
460
517
 
461
- interface RegisterSkillViewsEmitTargetAndPayload {
518
+ interface RegisterDashboardCardsResponsePayload {
462
519
 
463
- /** Source. */
464
- 'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource| undefined | null
465
520
 
466
- 'payload': SpruceSchemas.Heartwood.v2021_02_11.RegisterSkillViewsEmitPayload
521
+ 'vcIds': string[]
467
522
  }
468
523
 
469
- interface RegisterSkillViewsEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
470
- id: 'registerSkillViewsEmitTargetAndPayload',
524
+ interface RegisterDashboardCardsResponsePayloadSchema extends SpruceSchema.Schema {
525
+ id: 'registerDashboardCardsResponsePayload',
471
526
  version: 'v2021_02_11',
472
527
  namespace: 'Heartwood',
473
528
  name: '',
474
529
  fields: {
475
- /** Source. */
476
- 'source': {
477
- label: 'Source',
478
- type: 'schema',
479
- options: {schema: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSourceSchema,}
480
- },
481
530
  /** . */
482
- 'payload': {
483
- type: 'schema',
531
+ 'vcIds': {
532
+ type: 'id',
484
533
  isRequired: true,
485
- options: {schema: SpruceSchemas.Heartwood.v2021_02_11.RegisterSkillViewsEmitPayloadSchema,}
534
+ isArray: true,
535
+ minArrayLength: 0,
536
+ options: undefined
486
537
  },
487
538
  }
488
539
  }
489
540
 
490
- type RegisterSkillViewsEmitTargetAndPayloadEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.RegisterSkillViewsEmitTargetAndPayloadSchema>
541
+ interface RegisterDashboardCardsResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.RegisterDashboardCardsResponsePayloadSchema> {}
491
542
 
492
543
  }
493
544
 
@@ -532,7 +583,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
532
583
  }
533
584
  }
534
585
 
535
- type RegisterSkillViewsEmitPayloadEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.RegisterSkillViewsEmitPayloadSchema>
586
+ interface RegisterSkillViewsEmitPayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.RegisterSkillViewsEmitPayloadSchema> {}
536
587
 
537
588
  }
538
589
 
@@ -562,7 +613,258 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
562
613
  }
563
614
  }
564
615
 
565
- type RegisterSkillViewsResponsePayloadEntity = SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.RegisterSkillViewsResponsePayloadSchema>
616
+ interface RegisterSkillViewsResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.RegisterSkillViewsResponsePayloadSchema> {}
617
+
618
+ }
619
+
620
+
621
+ namespace SpruceSchemas.Heartwood.v2021_02_11 {
622
+
623
+
624
+ interface GetActiveThemeEmitTargetAndPayload {
625
+
626
+ /** Source. */
627
+ 'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource| undefined | null
628
+
629
+ 'target': SpruceSchemas.Heartwood.v2021_02_11.GetActiveThemeEmitTarget
630
+ }
631
+
632
+ interface GetActiveThemeEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
633
+ id: 'getActiveThemeEmitTargetAndPayload',
634
+ version: 'v2021_02_11',
635
+ namespace: 'Heartwood',
636
+ name: '',
637
+ fields: {
638
+ /** Source. */
639
+ 'source': {
640
+ label: 'Source',
641
+ type: 'schema',
642
+ options: {schema: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSourceSchema,}
643
+ },
644
+ /** . */
645
+ 'target': {
646
+ type: 'schema',
647
+ isRequired: true,
648
+ options: {schema: SpruceSchemas.Heartwood.v2021_02_11.GetActiveThemeEmitTargetSchema,}
649
+ },
650
+ }
651
+ }
652
+
653
+ interface GetActiveThemeEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.GetActiveThemeEmitTargetAndPayloadSchema> {}
654
+
655
+ }
656
+
657
+
658
+ namespace SpruceSchemas.Heartwood.v2021_02_11 {
659
+
660
+
661
+ interface RegisterSkillViewsEmitTargetAndPayload {
662
+
663
+ /** Source. */
664
+ 'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource| undefined | null
665
+
666
+ 'payload': SpruceSchemas.Heartwood.v2021_02_11.RegisterSkillViewsEmitPayload
667
+ }
668
+
669
+ interface RegisterSkillViewsEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
670
+ id: 'registerSkillViewsEmitTargetAndPayload',
671
+ version: 'v2021_02_11',
672
+ namespace: 'Heartwood',
673
+ name: '',
674
+ fields: {
675
+ /** Source. */
676
+ 'source': {
677
+ label: 'Source',
678
+ type: 'schema',
679
+ options: {schema: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSourceSchema,}
680
+ },
681
+ /** . */
682
+ 'payload': {
683
+ type: 'schema',
684
+ isRequired: true,
685
+ options: {schema: SpruceSchemas.Heartwood.v2021_02_11.RegisterSkillViewsEmitPayloadSchema,}
686
+ },
687
+ }
688
+ }
689
+
690
+ interface RegisterSkillViewsEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.RegisterSkillViewsEmitTargetAndPayloadSchema> {}
691
+
692
+ }
693
+
694
+
695
+ namespace SpruceSchemas.Heartwood.v2021_02_11 {
696
+
697
+
698
+ interface UpsertThemeEmitTarget {
699
+
700
+
701
+ 'organizationId': string
702
+ }
703
+
704
+ interface UpsertThemeEmitTargetSchema extends SpruceSchema.Schema {
705
+ id: 'upsertThemeEmitTarget',
706
+ version: 'v2021_02_11',
707
+ namespace: 'Heartwood',
708
+ name: '',
709
+ fields: {
710
+ /** . */
711
+ 'organizationId': {
712
+ type: 'id',
713
+ isRequired: true,
714
+ options: undefined
715
+ },
716
+ }
717
+ }
718
+
719
+ interface UpsertThemeEmitTargetEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.UpsertThemeEmitTargetSchema> {}
720
+
721
+ }
722
+
723
+
724
+ namespace SpruceSchemas.Heartwood.v2021_02_11 {
725
+
726
+
727
+ interface UpsertThemeEmitTargetAndPayload {
728
+
729
+ /** Source. */
730
+ 'source'?: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSource| undefined | null
731
+
732
+ 'target': SpruceSchemas.Heartwood.v2021_02_11.UpsertThemeEmitTarget
733
+
734
+ 'payload': SpruceSchemas.Heartwood.v2021_02_11.UpsertThemeEmitPayload
735
+ }
736
+
737
+ interface UpsertThemeEmitTargetAndPayloadSchema extends SpruceSchema.Schema {
738
+ id: 'upsertThemeEmitTargetAndPayload',
739
+ version: 'v2021_02_11',
740
+ namespace: 'Heartwood',
741
+ name: '',
742
+ fields: {
743
+ /** Source. */
744
+ 'source': {
745
+ label: 'Source',
746
+ type: 'schema',
747
+ options: {schema: SpruceSchemas.SpruceEventUtils.v2021_09_13.EventSourceSchema,}
748
+ },
749
+ /** . */
750
+ 'target': {
751
+ type: 'schema',
752
+ isRequired: true,
753
+ options: {schema: SpruceSchemas.Heartwood.v2021_02_11.UpsertThemeEmitTargetSchema,}
754
+ },
755
+ /** . */
756
+ 'payload': {
757
+ type: 'schema',
758
+ isRequired: true,
759
+ options: {schema: SpruceSchemas.Heartwood.v2021_02_11.UpsertThemeEmitPayloadSchema,}
760
+ },
761
+ }
762
+ }
763
+
764
+ interface UpsertThemeEmitTargetAndPayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.UpsertThemeEmitTargetAndPayloadSchema> {}
765
+
766
+ }
767
+
768
+
769
+ namespace SpruceSchemas.Heartwood.v2021_02_11 {
770
+
771
+
772
+ interface Theme {
773
+
774
+
775
+ 'slug': string
776
+
777
+ 'name': string
778
+
779
+ 'props': SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ThemeProps
780
+ }
781
+
782
+ interface ThemeSchema extends SpruceSchema.Schema {
783
+ id: 'theme',
784
+ version: 'v2021_02_11',
785
+ namespace: 'Heartwood',
786
+ name: 'Theme',
787
+ fields: {
788
+ /** . */
789
+ 'slug': {
790
+ type: 'id',
791
+ isRequired: true,
792
+ options: undefined
793
+ },
794
+ /** . */
795
+ 'name': {
796
+ type: 'text',
797
+ isRequired: true,
798
+ options: undefined
799
+ },
800
+ /** . */
801
+ 'props': {
802
+ type: 'schema',
803
+ isRequired: true,
804
+ options: {schema: SpruceSchemas.HeartwoodViewControllers.v2021_02_11.ThemePropsSchema,}
805
+ },
806
+ }
807
+ }
808
+
809
+ interface ThemeEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.ThemeSchema> {}
810
+
811
+ }
812
+
813
+
814
+ namespace SpruceSchemas.Heartwood.v2021_02_11 {
815
+
816
+
817
+ interface UpsertThemeEmitPayload {
818
+
819
+
820
+ 'theme': SpruceSchemas.Heartwood.v2021_02_11.Theme
821
+ }
822
+
823
+ interface UpsertThemeEmitPayloadSchema extends SpruceSchema.Schema {
824
+ id: 'upsertThemeEmitPayload',
825
+ version: 'v2021_02_11',
826
+ namespace: 'Heartwood',
827
+ name: '',
828
+ fields: {
829
+ /** . */
830
+ 'theme': {
831
+ type: 'schema',
832
+ isRequired: true,
833
+ options: {schema: SpruceSchemas.Heartwood.v2021_02_11.ThemeSchema,}
834
+ },
835
+ }
836
+ }
837
+
838
+ interface UpsertThemeEmitPayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.UpsertThemeEmitPayloadSchema> {}
839
+
840
+ }
841
+
842
+
843
+ namespace SpruceSchemas.Heartwood.v2021_02_11 {
844
+
845
+
846
+ interface UpsertThemeResponsePayload {
847
+
848
+
849
+ 'theme': SpruceSchemas.Heartwood.v2021_02_11.Theme
850
+ }
851
+
852
+ interface UpsertThemeResponsePayloadSchema extends SpruceSchema.Schema {
853
+ id: 'upsertThemeResponsePayload',
854
+ version: 'v2021_02_11',
855
+ namespace: 'Heartwood',
856
+ name: '',
857
+ fields: {
858
+ /** . */
859
+ 'theme': {
860
+ type: 'schema',
861
+ isRequired: true,
862
+ options: {schema: SpruceSchemas.Heartwood.v2021_02_11.ThemeSchema,}
863
+ },
864
+ }
865
+ }
866
+
867
+ interface UpsertThemeResponsePayloadEntity extends SchemaEntity<SpruceSchemas.Heartwood.v2021_02_11.UpsertThemeResponsePayloadSchema> {}
566
868
 
567
869
  }
568
870
 
@@ -614,7 +916,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
614
916
  }
615
917
  }
616
918
 
617
- type GeneratedDirEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.GeneratedDirSchema>
919
+ interface GeneratedDirEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.GeneratedDirSchema> {}
618
920
 
619
921
  }
620
922
 
@@ -666,7 +968,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
666
968
  }
667
969
  }
668
970
 
669
- type GeneratedFileEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.GeneratedFileSchema>
971
+ interface GeneratedFileEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.GeneratedFileSchema> {}
670
972
 
671
973
  }
672
974
 
@@ -696,7 +998,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
696
998
  }
697
999
  }
698
1000
 
699
- type WatcherDidDetectChangesEmitPayloadEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.WatcherDidDetectChangesEmitPayloadSchema>
1001
+ interface WatcherDidDetectChangesEmitPayloadEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.WatcherDidDetectChangesEmitPayloadSchema> {}
700
1002
 
701
1003
  }
702
1004
 
@@ -727,7 +1029,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
727
1029
  }
728
1030
  }
729
1031
 
730
- type UpgradeSkillOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.UpgradeSkillOptionsSchema>
1032
+ interface UpgradeSkillOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.UpgradeSkillOptionsSchema> {}
731
1033
 
732
1034
  }
733
1035
 
@@ -805,7 +1107,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
805
1107
  }
806
1108
  }
807
1109
 
808
- type TestOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.TestOptionsSchema>
1110
+ interface TestOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.TestOptionsSchema> {}
809
1111
 
810
1112
  }
811
1113
 
@@ -1014,7 +1316,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1014
1316
  }
1015
1317
  }
1016
1318
 
1017
- type SyncSchemasOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.SyncSchemasOptionsSchema>
1319
+ interface SyncSchemasOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.SyncSchemasOptionsSchema> {}
1018
1320
 
1019
1321
  }
1020
1322
 
@@ -1068,7 +1370,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1068
1370
  }
1069
1371
  }
1070
1372
 
1071
- type SyncSchemaFieldsOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.SyncSchemaFieldsOptionsSchema>
1373
+ interface SyncSchemaFieldsOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.SyncSchemaFieldsOptionsSchema> {}
1072
1374
 
1073
1375
  }
1074
1376
 
@@ -1137,7 +1439,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1137
1439
  }
1138
1440
  }
1139
1441
 
1140
- type SyncEventOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.SyncEventOptionsSchema>
1442
+ interface SyncEventOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.SyncEventOptionsSchema> {}
1141
1443
 
1142
1444
  }
1143
1445
 
@@ -1355,7 +1657,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1355
1657
  }
1356
1658
  }
1357
1659
 
1358
- type SyncErrorOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.SyncErrorOptionsSchema>
1660
+ interface SyncErrorOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.SyncErrorOptionsSchema> {}
1359
1661
 
1360
1662
  }
1361
1663
 
@@ -1402,7 +1704,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1402
1704
  }
1403
1705
  }
1404
1706
 
1405
- type SkillFeatureEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.SkillFeatureSchema>
1707
+ interface SkillFeatureEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.SkillFeatureSchema> {}
1406
1708
 
1407
1709
  }
1408
1710
 
@@ -1432,7 +1734,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1432
1734
  }
1433
1735
  }
1434
1736
 
1435
- type SetupVscodeOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.SetupVscodeOptionsSchema>
1737
+ interface SetupVscodeOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.SetupVscodeOptionsSchema> {}
1436
1738
 
1437
1739
  }
1438
1740
 
@@ -1472,7 +1774,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1472
1774
  }
1473
1775
  }
1474
1776
 
1475
- type SetupTestsOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.SetupTestsOptionsSchema>
1777
+ interface SetupTestsOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.SetupTestsOptionsSchema> {}
1476
1778
 
1477
1779
  }
1478
1780
 
@@ -1500,7 +1802,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1500
1802
  }
1501
1803
  }
1502
1804
 
1503
- type RegisterDashboardWidgetsEmitPayloadSchemaEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.RegisterDashboardWidgetsEmitPayloadSchemaSchema>
1805
+ interface RegisterDashboardWidgetsEmitPayloadSchemaEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.RegisterDashboardWidgetsEmitPayloadSchemaSchema> {}
1504
1806
 
1505
1807
  }
1506
1808
 
@@ -1557,7 +1859,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1557
1859
  }
1558
1860
  }
1559
1861
 
1560
- type PersonWithTokenEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.PersonWithTokenSchema>
1862
+ interface PersonWithTokenEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.PersonWithTokenSchema> {}
1561
1863
 
1562
1864
  }
1563
1865
 
@@ -1596,7 +1898,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1596
1898
  }
1597
1899
  }
1598
1900
 
1599
- type OnboardingEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.OnboardingSchema>
1901
+ interface OnboardingEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.OnboardingSchema> {}
1600
1902
 
1601
1903
  }
1602
1904
 
@@ -1618,7 +1920,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1618
1920
  }
1619
1921
  }
1620
1922
 
1621
- type OnboardOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.OnboardOptionsSchema>
1923
+ interface OnboardOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.OnboardOptionsSchema> {}
1622
1924
 
1623
1925
  }
1624
1926
 
@@ -1666,7 +1968,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1666
1968
  }
1667
1969
  }
1668
1970
 
1669
- type NodeFeatureOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.NodeFeatureOptionsSchema>
1971
+ interface NodeFeatureOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.NodeFeatureOptionsSchema> {}
1670
1972
 
1671
1973
  }
1672
1974
 
@@ -1790,7 +2092,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1790
2092
  }
1791
2093
  }
1792
2094
 
1793
- type NamedTemplateItemEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.NamedTemplateItemSchema>
2095
+ interface NamedTemplateItemEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.NamedTemplateItemSchema> {}
1794
2096
 
1795
2097
  }
1796
2098
 
@@ -1895,7 +2197,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1895
2197
  }
1896
2198
  }
1897
2199
 
1898
- type ListenEventOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.ListenEventOptionsSchema>
2200
+ interface ListenEventOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.ListenEventOptionsSchema> {}
1899
2201
 
1900
2202
  }
1901
2203
 
@@ -1925,7 +2227,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1925
2227
  }
1926
2228
  }
1927
2229
 
1928
- type InstallSkillAtOrganizationOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.InstallSkillAtOrganizationOptionsSchema>
2230
+ interface InstallSkillAtOrganizationOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.InstallSkillAtOrganizationOptionsSchema> {}
1929
2231
 
1930
2232
  }
1931
2233
 
@@ -1937,7 +2239,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1937
2239
 
1938
2240
  /** Type of test. */
1939
2241
  'type': ("behavioral" | "implementation")
1940
- /** What are you testing?. E.g. Booking an appointment or turning on a light */
2242
+ /** What are you testing?. E.g. Todo Card or Systems List */
1941
2243
  'nameReadable': string
1942
2244
  /** Test destination directory. Where I'll save your new test. */
1943
2245
  'testDestinationDir'?: string| undefined | null
@@ -1961,12 +2263,12 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1961
2263
  isRequired: true,
1962
2264
  options: {choices: [{"value":"behavioral","label":"Behavioral"},{"value":"implementation","label":"Implementation"}],}
1963
2265
  },
1964
- /** What are you testing?. E.g. Booking an appointment or turning on a light */
2266
+ /** What are you testing?. E.g. Todo Card or Systems List */
1965
2267
  'nameReadable': {
1966
2268
  label: 'What are you testing?',
1967
2269
  type: 'text',
1968
2270
  isRequired: true,
1969
- hint: 'E.g. Booking an appointment or turning on a light',
2271
+ hint: 'E.g. Todo Card or Systems List',
1970
2272
  options: undefined
1971
2273
  },
1972
2274
  /** Test destination directory. Where I'll save your new test. */
@@ -1995,7 +2297,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
1995
2297
  }
1996
2298
  }
1997
2299
 
1998
- type CreateTestOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.CreateTestOptionsSchema>
2300
+ interface CreateTestOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.CreateTestOptionsSchema> {}
1999
2301
 
2000
2302
  }
2001
2303
 
@@ -2284,7 +2586,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
2284
2586
  }
2285
2587
  }
2286
2588
 
2287
- type CreateSchemaOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.CreateSchemaOptionsSchema>
2589
+ interface CreateSchemaOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.CreateSchemaOptionsSchema> {}
2288
2590
 
2289
2591
  }
2290
2592
 
@@ -2325,7 +2627,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
2325
2627
  }
2326
2628
  }
2327
2629
 
2328
- type CreateOrganizationOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.CreateOrganizationOptionsSchema>
2630
+ interface CreateOrganizationOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.CreateOrganizationOptionsSchema> {}
2329
2631
 
2330
2632
  }
2331
2633
 
@@ -2593,7 +2895,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
2593
2895
  }
2594
2896
  }
2595
2897
 
2596
- type CreateErrorOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.CreateErrorOptionsSchema>
2898
+ interface CreateErrorOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.CreateErrorOptionsSchema> {}
2597
2899
 
2598
2900
  }
2599
2901
 
@@ -2635,7 +2937,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
2635
2937
  }
2636
2938
  }
2637
2939
 
2638
- type CreateConversationTopicOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.CreateConversationTopicOptionsSchema>
2940
+ interface CreateConversationTopicOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.CreateConversationTopicOptionsSchema> {}
2639
2941
 
2640
2942
  }
2641
2943
 
@@ -2691,7 +2993,7 @@ declare module '@sprucelabs/spruce-core-schemas/build/.spruce/schemas/core.schem
2691
2993
  }
2692
2994
  }
2693
2995
 
2694
- type BootSkillOptionsEntity = SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.BootSkillOptionsSchema>
2996
+ interface BootSkillOptionsEntity extends SchemaEntity<SpruceSchemas.SpruceCli.v2020_07_22.BootSkillOptionsSchema> {}
2695
2997
 
2696
2998
  }
2697
2999