placementt-core 1.400.987 → 1.400.989

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.
@@ -11,6 +11,302 @@ import { z } from "zod";
11
11
  * equals the sum of the group key counts.
12
12
  */
13
13
  export declare const allCallables: {
14
+ "surveys-createSurveyCycle": {
15
+ request: z.ZodObject<{
16
+ oId: z.ZodString;
17
+ kind: z.ZodEnum<[string, ...string[]]>;
18
+ yearGroups: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
19
+ scheduledSendDate: z.ZodString;
20
+ closeAfterDays: z.ZodOptional<z.ZodNumber>;
21
+ emailTemplateId: z.ZodOptional<z.ZodString>;
22
+ students: z.ZodOptional<z.ZodString>;
23
+ title: z.ZodOptional<z.ZodString>;
24
+ description: z.ZodOptional<z.ZodString>;
25
+ raters: z.ZodOptional<z.ZodObject<{
26
+ students: z.ZodOptional<z.ZodBoolean>;
27
+ parents: z.ZodOptional<z.ZodBoolean>;
28
+ employers: z.ZodOptional<z.ZodBoolean>;
29
+ }, "strip", z.ZodTypeAny, {
30
+ students?: boolean | undefined;
31
+ parents?: boolean | undefined;
32
+ employers?: boolean | undefined;
33
+ }, {
34
+ students?: boolean | undefined;
35
+ parents?: boolean | undefined;
36
+ employers?: boolean | undefined;
37
+ }>>;
38
+ groupId: z.ZodOptional<z.ZodString>;
39
+ threadKey: z.ZodOptional<z.ZodString>;
40
+ autoSend: z.ZodOptional<z.ZodBoolean>;
41
+ draft: z.ZodOptional<z.ZodBoolean>;
42
+ resolveRecipientsAtSend: z.ZodOptional<z.ZodBoolean>;
43
+ }, "strip", z.ZodTypeAny, {
44
+ oId: string;
45
+ kind: string;
46
+ scheduledSendDate: string;
47
+ title?: string | undefined;
48
+ description?: string | undefined;
49
+ yearGroups?: number[] | undefined;
50
+ students?: string | undefined;
51
+ draft?: boolean | undefined;
52
+ closeAfterDays?: number | undefined;
53
+ emailTemplateId?: string | undefined;
54
+ raters?: {
55
+ students?: boolean | undefined;
56
+ parents?: boolean | undefined;
57
+ employers?: boolean | undefined;
58
+ } | undefined;
59
+ groupId?: string | undefined;
60
+ threadKey?: string | undefined;
61
+ autoSend?: boolean | undefined;
62
+ resolveRecipientsAtSend?: boolean | undefined;
63
+ }, {
64
+ oId: string;
65
+ kind: string;
66
+ scheduledSendDate: string;
67
+ title?: string | undefined;
68
+ description?: string | undefined;
69
+ yearGroups?: number[] | undefined;
70
+ students?: string | undefined;
71
+ draft?: boolean | undefined;
72
+ closeAfterDays?: number | undefined;
73
+ emailTemplateId?: string | undefined;
74
+ raters?: {
75
+ students?: boolean | undefined;
76
+ parents?: boolean | undefined;
77
+ employers?: boolean | undefined;
78
+ } | undefined;
79
+ groupId?: string | undefined;
80
+ threadKey?: string | undefined;
81
+ autoSend?: boolean | undefined;
82
+ resolveRecipientsAtSend?: boolean | undefined;
83
+ }>;
84
+ response: z.ZodObject<{
85
+ created: z.ZodArray<z.ZodObject<{
86
+ cycleId: z.ZodString;
87
+ yearGroup: z.ZodOptional<z.ZodNumber>;
88
+ invited: z.ZodNumber;
89
+ }, "strip", z.ZodTypeAny, {
90
+ invited: number;
91
+ cycleId: string;
92
+ yearGroup?: number | undefined;
93
+ }, {
94
+ invited: number;
95
+ cycleId: string;
96
+ yearGroup?: number | undefined;
97
+ }>, "many">;
98
+ skippedEmpty: z.ZodArray<z.ZodNumber, "many">;
99
+ skippedNoEmail: z.ZodNumber;
100
+ academicYear: z.ZodString;
101
+ }, "strip", z.ZodTypeAny, {
102
+ created: {
103
+ invited: number;
104
+ cycleId: string;
105
+ yearGroup?: number | undefined;
106
+ }[];
107
+ academicYear: string;
108
+ skippedEmpty: number[];
109
+ skippedNoEmail: number;
110
+ }, {
111
+ created: {
112
+ invited: number;
113
+ cycleId: string;
114
+ yearGroup?: number | undefined;
115
+ }[];
116
+ academicYear: string;
117
+ skippedEmpty: number[];
118
+ skippedNoEmail: number;
119
+ }>;
120
+ };
121
+ "surveys-setSurveyCycleRecipients": {
122
+ request: z.ZodObject<{
123
+ cycleId: z.ZodString;
124
+ students: z.ZodString;
125
+ scheduledSendDate: z.ZodOptional<z.ZodString>;
126
+ }, "strip", z.ZodTypeAny, {
127
+ students: string;
128
+ cycleId: string;
129
+ scheduledSendDate?: string | undefined;
130
+ }, {
131
+ students: string;
132
+ cycleId: string;
133
+ scheduledSendDate?: string | undefined;
134
+ }>;
135
+ response: z.ZodObject<{
136
+ cycleId: z.ZodString;
137
+ yearGroup: z.ZodOptional<z.ZodNumber>;
138
+ invited: z.ZodNumber;
139
+ skippedNoEmail: z.ZodOptional<z.ZodNumber>;
140
+ alreadyScheduled: z.ZodOptional<z.ZodBoolean>;
141
+ }, "strip", z.ZodTypeAny, {
142
+ invited: number;
143
+ cycleId: string;
144
+ yearGroup?: number | undefined;
145
+ skippedNoEmail?: number | undefined;
146
+ alreadyScheduled?: boolean | undefined;
147
+ }, {
148
+ invited: number;
149
+ cycleId: string;
150
+ yearGroup?: number | undefined;
151
+ skippedNoEmail?: number | undefined;
152
+ alreadyScheduled?: boolean | undefined;
153
+ }>;
154
+ };
155
+ "surveys-sendSurveyCycleNow": {
156
+ request: z.ZodObject<{
157
+ cycleId: z.ZodString;
158
+ }, "strip", z.ZodTypeAny, {
159
+ cycleId: string;
160
+ }, {
161
+ cycleId: string;
162
+ }>;
163
+ response: z.ZodObject<{
164
+ sent: z.ZodNumber;
165
+ }, "strip", z.ZodTypeAny, {
166
+ sent: number;
167
+ }, {
168
+ sent: number;
169
+ }>;
170
+ };
171
+ "surveys-sendSurveyReminders": {
172
+ request: z.ZodObject<{
173
+ cycleId: z.ZodString;
174
+ }, "strip", z.ZodTypeAny, {
175
+ cycleId: string;
176
+ }, {
177
+ cycleId: string;
178
+ }>;
179
+ response: z.ZodObject<{
180
+ sent: z.ZodNumber;
181
+ }, "strip", z.ZodTypeAny, {
182
+ sent: number;
183
+ }, {
184
+ sent: number;
185
+ }>;
186
+ };
187
+ "surveys-setSurveyAutoSend": {
188
+ request: z.ZodObject<{
189
+ cycleId: z.ZodString;
190
+ autoSend: z.ZodBoolean;
191
+ }, "strip", z.ZodTypeAny, {
192
+ cycleId: string;
193
+ autoSend: boolean;
194
+ }, {
195
+ cycleId: string;
196
+ autoSend: boolean;
197
+ }>;
198
+ response: z.ZodObject<{
199
+ cycleId: z.ZodString;
200
+ autoSend: z.ZodBoolean;
201
+ }, "strip", z.ZodTypeAny, {
202
+ cycleId: string;
203
+ autoSend: boolean;
204
+ }, {
205
+ cycleId: string;
206
+ autoSend: boolean;
207
+ }>;
208
+ };
209
+ "surveys-resendSurveyInvite": {
210
+ request: z.ZodObject<{
211
+ requestId: z.ZodString;
212
+ newEmail: z.ZodOptional<z.ZodString>;
213
+ audience: z.ZodOptional<z.ZodEnum<["student", "parent"]>>;
214
+ }, "strip", z.ZodTypeAny, {
215
+ requestId: string;
216
+ newEmail?: string | undefined;
217
+ audience?: "parent" | "student" | undefined;
218
+ }, {
219
+ requestId: string;
220
+ newEmail?: string | undefined;
221
+ audience?: "parent" | "student" | undefined;
222
+ }>;
223
+ response: z.ZodObject<{
224
+ success: z.ZodBoolean;
225
+ userEmailMismatch: z.ZodBoolean;
226
+ }, "strip", z.ZodTypeAny, {
227
+ success: boolean;
228
+ userEmailMismatch: boolean;
229
+ }, {
230
+ success: boolean;
231
+ userEmailMismatch: boolean;
232
+ }>;
233
+ };
234
+ "surveys-deleteSurveyCycle": {
235
+ request: z.ZodObject<{
236
+ cycleId: z.ZodString;
237
+ jobId: z.ZodOptional<z.ZodString>;
238
+ }, "strip", z.ZodTypeAny, {
239
+ cycleId: string;
240
+ jobId?: string | undefined;
241
+ }, {
242
+ cycleId: string;
243
+ jobId?: string | undefined;
244
+ }>;
245
+ response: z.ZodObject<{
246
+ deleted: z.ZodNumber;
247
+ }, "strip", z.ZodTypeAny, {
248
+ deleted: number;
249
+ }, {
250
+ deleted: number;
251
+ }>;
252
+ };
253
+ "surveys-getMySurveyRequest": {
254
+ request: z.ZodObject<{
255
+ requestId: z.ZodString;
256
+ }, "strip", z.ZodTypeAny, {
257
+ requestId: string;
258
+ }, {
259
+ requestId: string;
260
+ }>;
261
+ response: z.ZodAny;
262
+ };
263
+ "surveys-getPublicSurveyRequest": {
264
+ request: z.ZodObject<{
265
+ requestId: z.ZodString;
266
+ token: z.ZodString;
267
+ role: z.ZodOptional<z.ZodEnum<["student", "parent"]>>;
268
+ }, "strip", z.ZodTypeAny, {
269
+ requestId: string;
270
+ token: string;
271
+ role?: "parent" | "student" | undefined;
272
+ }, {
273
+ requestId: string;
274
+ token: string;
275
+ role?: "parent" | "student" | undefined;
276
+ }>;
277
+ response: z.ZodAny;
278
+ };
279
+ "surveys-submitSurveyResponse": {
280
+ request: z.ZodObject<{
281
+ requestId: z.ZodString;
282
+ response: z.ZodOptional<z.ZodUnknown>;
283
+ submittedBy: z.ZodOptional<z.ZodEnum<["student", "parent", "employer", "staff", "trustedContact"]>>;
284
+ token: z.ZodOptional<z.ZodString>;
285
+ rater: z.ZodOptional<z.ZodEnum<["students", "parents", "employers", "trustedContact"]>>;
286
+ noChange: z.ZodOptional<z.ZodBoolean>;
287
+ }, "strip", z.ZodTypeAny, {
288
+ requestId: string;
289
+ response?: unknown;
290
+ token?: string | undefined;
291
+ submittedBy?: "parent" | "trustedContact" | "student" | "employer" | "staff" | undefined;
292
+ rater?: "students" | "parents" | "employers" | "trustedContact" | undefined;
293
+ noChange?: boolean | undefined;
294
+ }, {
295
+ requestId: string;
296
+ response?: unknown;
297
+ token?: string | undefined;
298
+ submittedBy?: "parent" | "trustedContact" | "student" | "employer" | "staff" | undefined;
299
+ rater?: "students" | "parents" | "employers" | "trustedContact" | undefined;
300
+ noChange?: boolean | undefined;
301
+ }>;
302
+ response: z.ZodObject<{
303
+ success: z.ZodBoolean;
304
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
305
+ success: z.ZodBoolean;
306
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
307
+ success: z.ZodBoolean;
308
+ }, z.ZodTypeAny, "passthrough">>;
309
+ };
14
310
  "events-searchSchool": {
15
311
  request: z.ZodObject<{
16
312
  oId: z.ZodString;
@@ -201,4 +497,302 @@ export declare const callableGroups: {
201
497
  }>, "many">;
202
498
  };
203
499
  };
500
+ surveyCallables: {
501
+ "surveys-createSurveyCycle": {
502
+ request: z.ZodObject<{
503
+ oId: z.ZodString;
504
+ kind: z.ZodEnum<[string, ...string[]]>;
505
+ yearGroups: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
506
+ scheduledSendDate: z.ZodString;
507
+ closeAfterDays: z.ZodOptional<z.ZodNumber>;
508
+ emailTemplateId: z.ZodOptional<z.ZodString>;
509
+ students: z.ZodOptional<z.ZodString>;
510
+ title: z.ZodOptional<z.ZodString>;
511
+ description: z.ZodOptional<z.ZodString>;
512
+ raters: z.ZodOptional<z.ZodObject<{
513
+ students: z.ZodOptional<z.ZodBoolean>;
514
+ parents: z.ZodOptional<z.ZodBoolean>;
515
+ employers: z.ZodOptional<z.ZodBoolean>;
516
+ }, "strip", z.ZodTypeAny, {
517
+ students?: boolean | undefined;
518
+ parents?: boolean | undefined;
519
+ employers?: boolean | undefined;
520
+ }, {
521
+ students?: boolean | undefined;
522
+ parents?: boolean | undefined;
523
+ employers?: boolean | undefined;
524
+ }>>;
525
+ groupId: z.ZodOptional<z.ZodString>;
526
+ threadKey: z.ZodOptional<z.ZodString>;
527
+ autoSend: z.ZodOptional<z.ZodBoolean>;
528
+ draft: z.ZodOptional<z.ZodBoolean>;
529
+ resolveRecipientsAtSend: z.ZodOptional<z.ZodBoolean>;
530
+ }, "strip", z.ZodTypeAny, {
531
+ oId: string;
532
+ kind: string;
533
+ scheduledSendDate: string;
534
+ title?: string | undefined;
535
+ description?: string | undefined;
536
+ yearGroups?: number[] | undefined;
537
+ students?: string | undefined;
538
+ draft?: boolean | undefined;
539
+ closeAfterDays?: number | undefined;
540
+ emailTemplateId?: string | undefined;
541
+ raters?: {
542
+ students?: boolean | undefined;
543
+ parents?: boolean | undefined;
544
+ employers?: boolean | undefined;
545
+ } | undefined;
546
+ groupId?: string | undefined;
547
+ threadKey?: string | undefined;
548
+ autoSend?: boolean | undefined;
549
+ resolveRecipientsAtSend?: boolean | undefined;
550
+ }, {
551
+ oId: string;
552
+ kind: string;
553
+ scheduledSendDate: string;
554
+ title?: string | undefined;
555
+ description?: string | undefined;
556
+ yearGroups?: number[] | undefined;
557
+ students?: string | undefined;
558
+ draft?: boolean | undefined;
559
+ closeAfterDays?: number | undefined;
560
+ emailTemplateId?: string | undefined;
561
+ raters?: {
562
+ students?: boolean | undefined;
563
+ parents?: boolean | undefined;
564
+ employers?: boolean | undefined;
565
+ } | undefined;
566
+ groupId?: string | undefined;
567
+ threadKey?: string | undefined;
568
+ autoSend?: boolean | undefined;
569
+ resolveRecipientsAtSend?: boolean | undefined;
570
+ }>;
571
+ response: z.ZodObject<{
572
+ created: z.ZodArray<z.ZodObject<{
573
+ cycleId: z.ZodString;
574
+ yearGroup: z.ZodOptional<z.ZodNumber>;
575
+ invited: z.ZodNumber;
576
+ }, "strip", z.ZodTypeAny, {
577
+ invited: number;
578
+ cycleId: string;
579
+ yearGroup?: number | undefined;
580
+ }, {
581
+ invited: number;
582
+ cycleId: string;
583
+ yearGroup?: number | undefined;
584
+ }>, "many">;
585
+ skippedEmpty: z.ZodArray<z.ZodNumber, "many">;
586
+ skippedNoEmail: z.ZodNumber;
587
+ academicYear: z.ZodString;
588
+ }, "strip", z.ZodTypeAny, {
589
+ created: {
590
+ invited: number;
591
+ cycleId: string;
592
+ yearGroup?: number | undefined;
593
+ }[];
594
+ academicYear: string;
595
+ skippedEmpty: number[];
596
+ skippedNoEmail: number;
597
+ }, {
598
+ created: {
599
+ invited: number;
600
+ cycleId: string;
601
+ yearGroup?: number | undefined;
602
+ }[];
603
+ academicYear: string;
604
+ skippedEmpty: number[];
605
+ skippedNoEmail: number;
606
+ }>;
607
+ };
608
+ "surveys-setSurveyCycleRecipients": {
609
+ request: z.ZodObject<{
610
+ cycleId: z.ZodString;
611
+ students: z.ZodString;
612
+ scheduledSendDate: z.ZodOptional<z.ZodString>;
613
+ }, "strip", z.ZodTypeAny, {
614
+ students: string;
615
+ cycleId: string;
616
+ scheduledSendDate?: string | undefined;
617
+ }, {
618
+ students: string;
619
+ cycleId: string;
620
+ scheduledSendDate?: string | undefined;
621
+ }>;
622
+ response: z.ZodObject<{
623
+ cycleId: z.ZodString;
624
+ yearGroup: z.ZodOptional<z.ZodNumber>;
625
+ invited: z.ZodNumber;
626
+ skippedNoEmail: z.ZodOptional<z.ZodNumber>;
627
+ alreadyScheduled: z.ZodOptional<z.ZodBoolean>;
628
+ }, "strip", z.ZodTypeAny, {
629
+ invited: number;
630
+ cycleId: string;
631
+ yearGroup?: number | undefined;
632
+ skippedNoEmail?: number | undefined;
633
+ alreadyScheduled?: boolean | undefined;
634
+ }, {
635
+ invited: number;
636
+ cycleId: string;
637
+ yearGroup?: number | undefined;
638
+ skippedNoEmail?: number | undefined;
639
+ alreadyScheduled?: boolean | undefined;
640
+ }>;
641
+ };
642
+ "surveys-sendSurveyCycleNow": {
643
+ request: z.ZodObject<{
644
+ cycleId: z.ZodString;
645
+ }, "strip", z.ZodTypeAny, {
646
+ cycleId: string;
647
+ }, {
648
+ cycleId: string;
649
+ }>;
650
+ response: z.ZodObject<{
651
+ sent: z.ZodNumber;
652
+ }, "strip", z.ZodTypeAny, {
653
+ sent: number;
654
+ }, {
655
+ sent: number;
656
+ }>;
657
+ };
658
+ "surveys-sendSurveyReminders": {
659
+ request: z.ZodObject<{
660
+ cycleId: z.ZodString;
661
+ }, "strip", z.ZodTypeAny, {
662
+ cycleId: string;
663
+ }, {
664
+ cycleId: string;
665
+ }>;
666
+ response: z.ZodObject<{
667
+ sent: z.ZodNumber;
668
+ }, "strip", z.ZodTypeAny, {
669
+ sent: number;
670
+ }, {
671
+ sent: number;
672
+ }>;
673
+ };
674
+ "surveys-setSurveyAutoSend": {
675
+ request: z.ZodObject<{
676
+ cycleId: z.ZodString;
677
+ autoSend: z.ZodBoolean;
678
+ }, "strip", z.ZodTypeAny, {
679
+ cycleId: string;
680
+ autoSend: boolean;
681
+ }, {
682
+ cycleId: string;
683
+ autoSend: boolean;
684
+ }>;
685
+ response: z.ZodObject<{
686
+ cycleId: z.ZodString;
687
+ autoSend: z.ZodBoolean;
688
+ }, "strip", z.ZodTypeAny, {
689
+ cycleId: string;
690
+ autoSend: boolean;
691
+ }, {
692
+ cycleId: string;
693
+ autoSend: boolean;
694
+ }>;
695
+ };
696
+ "surveys-resendSurveyInvite": {
697
+ request: z.ZodObject<{
698
+ requestId: z.ZodString;
699
+ newEmail: z.ZodOptional<z.ZodString>;
700
+ audience: z.ZodOptional<z.ZodEnum<["student", "parent"]>>;
701
+ }, "strip", z.ZodTypeAny, {
702
+ requestId: string;
703
+ newEmail?: string | undefined;
704
+ audience?: "parent" | "student" | undefined;
705
+ }, {
706
+ requestId: string;
707
+ newEmail?: string | undefined;
708
+ audience?: "parent" | "student" | undefined;
709
+ }>;
710
+ response: z.ZodObject<{
711
+ success: z.ZodBoolean;
712
+ userEmailMismatch: z.ZodBoolean;
713
+ }, "strip", z.ZodTypeAny, {
714
+ success: boolean;
715
+ userEmailMismatch: boolean;
716
+ }, {
717
+ success: boolean;
718
+ userEmailMismatch: boolean;
719
+ }>;
720
+ };
721
+ "surveys-deleteSurveyCycle": {
722
+ request: z.ZodObject<{
723
+ cycleId: z.ZodString;
724
+ jobId: z.ZodOptional<z.ZodString>;
725
+ }, "strip", z.ZodTypeAny, {
726
+ cycleId: string;
727
+ jobId?: string | undefined;
728
+ }, {
729
+ cycleId: string;
730
+ jobId?: string | undefined;
731
+ }>;
732
+ response: z.ZodObject<{
733
+ deleted: z.ZodNumber;
734
+ }, "strip", z.ZodTypeAny, {
735
+ deleted: number;
736
+ }, {
737
+ deleted: number;
738
+ }>;
739
+ };
740
+ "surveys-getMySurveyRequest": {
741
+ request: z.ZodObject<{
742
+ requestId: z.ZodString;
743
+ }, "strip", z.ZodTypeAny, {
744
+ requestId: string;
745
+ }, {
746
+ requestId: string;
747
+ }>;
748
+ response: z.ZodAny;
749
+ };
750
+ "surveys-getPublicSurveyRequest": {
751
+ request: z.ZodObject<{
752
+ requestId: z.ZodString;
753
+ token: z.ZodString;
754
+ role: z.ZodOptional<z.ZodEnum<["student", "parent"]>>;
755
+ }, "strip", z.ZodTypeAny, {
756
+ requestId: string;
757
+ token: string;
758
+ role?: "parent" | "student" | undefined;
759
+ }, {
760
+ requestId: string;
761
+ token: string;
762
+ role?: "parent" | "student" | undefined;
763
+ }>;
764
+ response: z.ZodAny;
765
+ };
766
+ "surveys-submitSurveyResponse": {
767
+ request: z.ZodObject<{
768
+ requestId: z.ZodString;
769
+ response: z.ZodOptional<z.ZodUnknown>;
770
+ submittedBy: z.ZodOptional<z.ZodEnum<["student", "parent", "employer", "staff", "trustedContact"]>>;
771
+ token: z.ZodOptional<z.ZodString>;
772
+ rater: z.ZodOptional<z.ZodEnum<["students", "parents", "employers", "trustedContact"]>>;
773
+ noChange: z.ZodOptional<z.ZodBoolean>;
774
+ }, "strip", z.ZodTypeAny, {
775
+ requestId: string;
776
+ response?: unknown;
777
+ token?: string | undefined;
778
+ submittedBy?: "parent" | "trustedContact" | "student" | "employer" | "staff" | undefined;
779
+ rater?: "students" | "parents" | "employers" | "trustedContact" | undefined;
780
+ noChange?: boolean | undefined;
781
+ }, {
782
+ requestId: string;
783
+ response?: unknown;
784
+ token?: string | undefined;
785
+ submittedBy?: "parent" | "trustedContact" | "student" | "employer" | "staff" | undefined;
786
+ rater?: "students" | "parents" | "employers" | "trustedContact" | undefined;
787
+ noChange?: boolean | undefined;
788
+ }>;
789
+ response: z.ZodObject<{
790
+ success: z.ZodBoolean;
791
+ }, "passthrough", z.ZodTypeAny, z.objectOutputType<{
792
+ success: z.ZodBoolean;
793
+ }, z.ZodTypeAny, "passthrough">, z.objectInputType<{
794
+ success: z.ZodBoolean;
795
+ }, z.ZodTypeAny, "passthrough">>;
796
+ };
797
+ };
204
798
  };
@@ -4,6 +4,7 @@ exports.callableGroups = exports.allCallables = void 0;
4
4
  const aspirations_1 = require("./aspirations");
5
5
  const placement_1 = require("./placement");
6
6
  const events_1 = require("./events");
7
+ const surveys_1 = require("./surveys");
7
8
  /**
8
9
  * The single source of truth for every typed callable. Add a feature group's
9
10
  * spread here and its callables are automatically covered by:
@@ -19,7 +20,8 @@ exports.allCallables = {
19
20
  ...aspirations_1.aspirationCallables,
20
21
  ...placement_1.placementCallables,
21
22
  ...events_1.eventsCallables,
23
+ ...surveys_1.surveyCallables,
22
24
  };
23
25
  /** The per-group maps, exported so tests can assert no key collisions. */
24
- exports.callableGroups = { aspirationCallables: aspirations_1.aspirationCallables, placementCallables: placement_1.placementCallables, eventsCallables: events_1.eventsCallables };
26
+ exports.callableGroups = { aspirationCallables: aspirations_1.aspirationCallables, placementCallables: placement_1.placementCallables, eventsCallables: events_1.eventsCallables, surveyCallables: surveys_1.surveyCallables };
25
27
  //# sourceMappingURL=registry.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"registry.js","sourceRoot":"","sources":["../../src/callables/registry.ts"],"names":[],"mappings":";;;AAEA,+CAAkD;AAClD,2CAA+C;AAC/C,qCAAyC;AAEzC;;;;;;;;;;GAUG;AACU,QAAA,YAAY,GAAG;IACxB,GAAG,iCAAmB;IACtB,GAAG,8BAAkB;IACrB,GAAG,wBAAe;CACG,CAAC;AAiB1B,0EAA0E;AAC7D,QAAA,cAAc,GAAG,EAAC,mBAAmB,EAAnB,iCAAmB,EAAE,kBAAkB,EAAlB,8BAAkB,EAAE,eAAe,EAAf,wBAAe,EAAC,CAAC"}
1
+ {"version":3,"file":"registry.js","sourceRoot":"","sources":["../../src/callables/registry.ts"],"names":[],"mappings":";;;AAEA,+CAAkD;AAClD,2CAA+C;AAC/C,qCAAyC;AACzC,uCAA0C;AAE1C;;;;;;;;;;GAUG;AACU,QAAA,YAAY,GAAG;IACxB,GAAG,iCAAmB;IACtB,GAAG,8BAAkB;IACrB,GAAG,wBAAe;IAClB,GAAG,yBAAe;CACG,CAAC;AAiB1B,0EAA0E;AAC7D,QAAA,cAAc,GAAG,EAAC,mBAAmB,EAAnB,iCAAmB,EAAE,kBAAkB,EAAlB,8BAAkB,EAAE,eAAe,EAAf,wBAAe,EAAE,eAAe,EAAf,yBAAe,EAAC,CAAC"}