@betterinternship/schema.moa 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/db.d.ts ADDED
@@ -0,0 +1,463 @@
1
+ import { PostgrestError } from "@supabase/supabase-js";
2
+ import { Database as EntityDatabase } from "./db.ent.types";
3
+ export declare const entityDb: import("@supabase/supabase-js").SupabaseClient<EntityDatabase, "public", {
4
+ Tables: {
5
+ entities: {
6
+ Row: {
7
+ contact_email: string | null;
8
+ contact_name: string | null;
9
+ contact_phone: string | null;
10
+ created_at: string;
11
+ display_name: string | null;
12
+ documents: import("./db.ent.types").Json | null;
13
+ id: string;
14
+ is_deactivated: boolean;
15
+ legal_indentifier: string;
16
+ type: string;
17
+ };
18
+ Insert: {
19
+ contact_email?: string | null;
20
+ contact_name?: string | null;
21
+ contact_phone?: string | null;
22
+ created_at?: string;
23
+ display_name?: string | null;
24
+ documents?: import("./db.ent.types").Json | null;
25
+ id?: string;
26
+ is_deactivated?: boolean;
27
+ legal_indentifier: string;
28
+ type: string;
29
+ };
30
+ Update: {
31
+ contact_email?: string | null;
32
+ contact_name?: string | null;
33
+ contact_phone?: string | null;
34
+ created_at?: string;
35
+ display_name?: string | null;
36
+ documents?: import("./db.ent.types").Json | null;
37
+ id?: string;
38
+ is_deactivated?: boolean;
39
+ legal_indentifier?: string;
40
+ type?: string;
41
+ };
42
+ Relationships: [];
43
+ };
44
+ entity_logs: {
45
+ Row: {
46
+ entity_id: string;
47
+ file: string;
48
+ id: string;
49
+ source_type: string;
50
+ target: string | null;
51
+ timestamp: string;
52
+ update_type: string;
53
+ };
54
+ Insert: {
55
+ entity_id: string;
56
+ file: string;
57
+ id?: string;
58
+ source_type: string;
59
+ target?: string | null;
60
+ timestamp?: string;
61
+ update_type: string;
62
+ };
63
+ Update: {
64
+ entity_id?: string;
65
+ file?: string;
66
+ id?: string;
67
+ source_type?: string;
68
+ target?: string | null;
69
+ timestamp?: string;
70
+ update_type?: string;
71
+ };
72
+ Relationships: [{
73
+ foreignKeyName: "entity_logs_entity_id_fkey";
74
+ columns: ["entity_id"];
75
+ isOneToOne: false;
76
+ referencedRelation: "entities";
77
+ referencedColumns: ["id"];
78
+ }];
79
+ };
80
+ messages: {
81
+ Row: {
82
+ action: string;
83
+ attachments: import("./db.ent.types").Json | null;
84
+ id: string;
85
+ moa_document: string | null;
86
+ source_id: string;
87
+ source_type: string;
88
+ target_id: string;
89
+ text: string | null;
90
+ thread_id: string;
91
+ timestamp: string;
92
+ };
93
+ Insert: {
94
+ action: string;
95
+ attachments?: import("./db.ent.types").Json | null;
96
+ id?: string;
97
+ moa_document?: string | null;
98
+ source_id: string;
99
+ source_type: string;
100
+ target_id: string;
101
+ text?: string | null;
102
+ thread_id: string;
103
+ timestamp?: string;
104
+ };
105
+ Update: {
106
+ action?: string;
107
+ attachments?: import("./db.ent.types").Json | null;
108
+ id?: string;
109
+ moa_document?: string | null;
110
+ source_id?: string;
111
+ source_type?: string;
112
+ target_id?: string;
113
+ text?: string | null;
114
+ thread_id?: string;
115
+ timestamp?: string;
116
+ };
117
+ Relationships: [{
118
+ foreignKeyName: "messages_thread_id_fkey";
119
+ columns: ["thread_id"];
120
+ isOneToOne: false;
121
+ referencedRelation: "threads";
122
+ referencedColumns: ["id"];
123
+ }];
124
+ };
125
+ moa_requests: {
126
+ Row: {
127
+ entity_id: string;
128
+ id: string;
129
+ message_id: string;
130
+ notified_school_account_id: string;
131
+ outcome: string | null;
132
+ processed_by_account_id: string | null;
133
+ processed_date: string | null;
134
+ school_id: string;
135
+ timestamp: string;
136
+ };
137
+ Insert: {
138
+ entity_id: string;
139
+ id?: string;
140
+ message_id: string;
141
+ notified_school_account_id: string;
142
+ outcome?: string | null;
143
+ processed_by_account_id?: string | null;
144
+ processed_date?: string | null;
145
+ school_id: string;
146
+ timestamp?: string;
147
+ };
148
+ Update: {
149
+ entity_id?: string;
150
+ id?: string;
151
+ message_id?: string;
152
+ notified_school_account_id?: string;
153
+ outcome?: string | null;
154
+ processed_by_account_id?: string | null;
155
+ processed_date?: string | null;
156
+ school_id?: string;
157
+ timestamp?: string;
158
+ };
159
+ Relationships: [{
160
+ foreignKeyName: "moa_requests_entity_id_fkey";
161
+ columns: ["entity_id"];
162
+ isOneToOne: false;
163
+ referencedRelation: "entities";
164
+ referencedColumns: ["id"];
165
+ }, {
166
+ foreignKeyName: "moa_requests_message_id_fkey";
167
+ columns: ["message_id"];
168
+ isOneToOne: false;
169
+ referencedRelation: "messages";
170
+ referencedColumns: ["id"];
171
+ }];
172
+ };
173
+ new_entity_requests: {
174
+ Row: {
175
+ entity_id: string;
176
+ id: string;
177
+ message_id: string;
178
+ outcome: string | null;
179
+ processed_by_account_id: string | null;
180
+ processed_date: string | null;
181
+ timestamp: string;
182
+ };
183
+ Insert: {
184
+ entity_id: string;
185
+ id?: string;
186
+ message_id: string;
187
+ outcome?: string | null;
188
+ processed_by_account_id?: string | null;
189
+ processed_date?: string | null;
190
+ timestamp?: string;
191
+ };
192
+ Update: {
193
+ entity_id?: string;
194
+ id?: string;
195
+ message_id?: string;
196
+ outcome?: string | null;
197
+ processed_by_account_id?: string | null;
198
+ processed_date?: string | null;
199
+ timestamp?: string;
200
+ };
201
+ Relationships: [{
202
+ foreignKeyName: "new_entity_requests_entity_id_fkey";
203
+ columns: ["entity_id"];
204
+ isOneToOne: false;
205
+ referencedRelation: "entities";
206
+ referencedColumns: ["id"];
207
+ }, {
208
+ foreignKeyName: "new_entity_requests_message_id_fkey";
209
+ columns: ["message_id"];
210
+ isOneToOne: false;
211
+ referencedRelation: "messages";
212
+ referencedColumns: ["id"];
213
+ }];
214
+ };
215
+ threads: {
216
+ Row: {
217
+ id: string;
218
+ };
219
+ Insert: {
220
+ id?: string;
221
+ };
222
+ Update: {
223
+ id?: string;
224
+ };
225
+ Relationships: [];
226
+ };
227
+ };
228
+ Views: { [_ in never]: never; };
229
+ Functions: { [_ in never]: never; };
230
+ Enums: { [_ in never]: never; };
231
+ CompositeTypes: { [_ in never]: never; };
232
+ }>;
233
+ export declare const schoolDb: import("@supabase/supabase-js").SupabaseClient<EntityDatabase, "public", {
234
+ Tables: {
235
+ entities: {
236
+ Row: {
237
+ contact_email: string | null;
238
+ contact_name: string | null;
239
+ contact_phone: string | null;
240
+ created_at: string;
241
+ display_name: string | null;
242
+ documents: import("./db.ent.types").Json | null;
243
+ id: string;
244
+ is_deactivated: boolean;
245
+ legal_indentifier: string;
246
+ type: string;
247
+ };
248
+ Insert: {
249
+ contact_email?: string | null;
250
+ contact_name?: string | null;
251
+ contact_phone?: string | null;
252
+ created_at?: string;
253
+ display_name?: string | null;
254
+ documents?: import("./db.ent.types").Json | null;
255
+ id?: string;
256
+ is_deactivated?: boolean;
257
+ legal_indentifier: string;
258
+ type: string;
259
+ };
260
+ Update: {
261
+ contact_email?: string | null;
262
+ contact_name?: string | null;
263
+ contact_phone?: string | null;
264
+ created_at?: string;
265
+ display_name?: string | null;
266
+ documents?: import("./db.ent.types").Json | null;
267
+ id?: string;
268
+ is_deactivated?: boolean;
269
+ legal_indentifier?: string;
270
+ type?: string;
271
+ };
272
+ Relationships: [];
273
+ };
274
+ entity_logs: {
275
+ Row: {
276
+ entity_id: string;
277
+ file: string;
278
+ id: string;
279
+ source_type: string;
280
+ target: string | null;
281
+ timestamp: string;
282
+ update_type: string;
283
+ };
284
+ Insert: {
285
+ entity_id: string;
286
+ file: string;
287
+ id?: string;
288
+ source_type: string;
289
+ target?: string | null;
290
+ timestamp?: string;
291
+ update_type: string;
292
+ };
293
+ Update: {
294
+ entity_id?: string;
295
+ file?: string;
296
+ id?: string;
297
+ source_type?: string;
298
+ target?: string | null;
299
+ timestamp?: string;
300
+ update_type?: string;
301
+ };
302
+ Relationships: [{
303
+ foreignKeyName: "entity_logs_entity_id_fkey";
304
+ columns: ["entity_id"];
305
+ isOneToOne: false;
306
+ referencedRelation: "entities";
307
+ referencedColumns: ["id"];
308
+ }];
309
+ };
310
+ messages: {
311
+ Row: {
312
+ action: string;
313
+ attachments: import("./db.ent.types").Json | null;
314
+ id: string;
315
+ moa_document: string | null;
316
+ source_id: string;
317
+ source_type: string;
318
+ target_id: string;
319
+ text: string | null;
320
+ thread_id: string;
321
+ timestamp: string;
322
+ };
323
+ Insert: {
324
+ action: string;
325
+ attachments?: import("./db.ent.types").Json | null;
326
+ id?: string;
327
+ moa_document?: string | null;
328
+ source_id: string;
329
+ source_type: string;
330
+ target_id: string;
331
+ text?: string | null;
332
+ thread_id: string;
333
+ timestamp?: string;
334
+ };
335
+ Update: {
336
+ action?: string;
337
+ attachments?: import("./db.ent.types").Json | null;
338
+ id?: string;
339
+ moa_document?: string | null;
340
+ source_id?: string;
341
+ source_type?: string;
342
+ target_id?: string;
343
+ text?: string | null;
344
+ thread_id?: string;
345
+ timestamp?: string;
346
+ };
347
+ Relationships: [{
348
+ foreignKeyName: "messages_thread_id_fkey";
349
+ columns: ["thread_id"];
350
+ isOneToOne: false;
351
+ referencedRelation: "threads";
352
+ referencedColumns: ["id"];
353
+ }];
354
+ };
355
+ moa_requests: {
356
+ Row: {
357
+ entity_id: string;
358
+ id: string;
359
+ message_id: string;
360
+ notified_school_account_id: string;
361
+ outcome: string | null;
362
+ processed_by_account_id: string | null;
363
+ processed_date: string | null;
364
+ school_id: string;
365
+ timestamp: string;
366
+ };
367
+ Insert: {
368
+ entity_id: string;
369
+ id?: string;
370
+ message_id: string;
371
+ notified_school_account_id: string;
372
+ outcome?: string | null;
373
+ processed_by_account_id?: string | null;
374
+ processed_date?: string | null;
375
+ school_id: string;
376
+ timestamp?: string;
377
+ };
378
+ Update: {
379
+ entity_id?: string;
380
+ id?: string;
381
+ message_id?: string;
382
+ notified_school_account_id?: string;
383
+ outcome?: string | null;
384
+ processed_by_account_id?: string | null;
385
+ processed_date?: string | null;
386
+ school_id?: string;
387
+ timestamp?: string;
388
+ };
389
+ Relationships: [{
390
+ foreignKeyName: "moa_requests_entity_id_fkey";
391
+ columns: ["entity_id"];
392
+ isOneToOne: false;
393
+ referencedRelation: "entities";
394
+ referencedColumns: ["id"];
395
+ }, {
396
+ foreignKeyName: "moa_requests_message_id_fkey";
397
+ columns: ["message_id"];
398
+ isOneToOne: false;
399
+ referencedRelation: "messages";
400
+ referencedColumns: ["id"];
401
+ }];
402
+ };
403
+ new_entity_requests: {
404
+ Row: {
405
+ entity_id: string;
406
+ id: string;
407
+ message_id: string;
408
+ outcome: string | null;
409
+ processed_by_account_id: string | null;
410
+ processed_date: string | null;
411
+ timestamp: string;
412
+ };
413
+ Insert: {
414
+ entity_id: string;
415
+ id?: string;
416
+ message_id: string;
417
+ outcome?: string | null;
418
+ processed_by_account_id?: string | null;
419
+ processed_date?: string | null;
420
+ timestamp?: string;
421
+ };
422
+ Update: {
423
+ entity_id?: string;
424
+ id?: string;
425
+ message_id?: string;
426
+ outcome?: string | null;
427
+ processed_by_account_id?: string | null;
428
+ processed_date?: string | null;
429
+ timestamp?: string;
430
+ };
431
+ Relationships: [{
432
+ foreignKeyName: "new_entity_requests_entity_id_fkey";
433
+ columns: ["entity_id"];
434
+ isOneToOne: false;
435
+ referencedRelation: "entities";
436
+ referencedColumns: ["id"];
437
+ }, {
438
+ foreignKeyName: "new_entity_requests_message_id_fkey";
439
+ columns: ["message_id"];
440
+ isOneToOne: false;
441
+ referencedRelation: "messages";
442
+ referencedColumns: ["id"];
443
+ }];
444
+ };
445
+ threads: {
446
+ Row: {
447
+ id: string;
448
+ };
449
+ Insert: {
450
+ id?: string;
451
+ };
452
+ Update: {
453
+ id?: string;
454
+ };
455
+ Relationships: [];
456
+ };
457
+ };
458
+ Views: { [_ in never]: never; };
459
+ Functions: { [_ in never]: never; };
460
+ Enums: { [_ in never]: never; };
461
+ CompositeTypes: { [_ in never]: never; };
462
+ }>;
463
+ export declare const handleDBError: (error: PostgrestError, description?: string) => never;
@@ -0,0 +1,311 @@
1
+ export type Json = string | number | boolean | null | {
2
+ [key: string]: Json | undefined;
3
+ } | Json[];
4
+ export type Database = {
5
+ __InternalSupabase: {
6
+ PostgrestVersion: "13.0.4";
7
+ };
8
+ public: {
9
+ Tables: {
10
+ entities: {
11
+ Row: {
12
+ contact_email: string | null;
13
+ contact_name: string | null;
14
+ contact_phone: string | null;
15
+ created_at: string;
16
+ display_name: string | null;
17
+ documents: Json | null;
18
+ id: string;
19
+ is_deactivated: boolean;
20
+ legal_indentifier: string;
21
+ type: string;
22
+ };
23
+ Insert: {
24
+ contact_email?: string | null;
25
+ contact_name?: string | null;
26
+ contact_phone?: string | null;
27
+ created_at?: string;
28
+ display_name?: string | null;
29
+ documents?: Json | null;
30
+ id?: string;
31
+ is_deactivated?: boolean;
32
+ legal_indentifier: string;
33
+ type: string;
34
+ };
35
+ Update: {
36
+ contact_email?: string | null;
37
+ contact_name?: string | null;
38
+ contact_phone?: string | null;
39
+ created_at?: string;
40
+ display_name?: string | null;
41
+ documents?: Json | null;
42
+ id?: string;
43
+ is_deactivated?: boolean;
44
+ legal_indentifier?: string;
45
+ type?: string;
46
+ };
47
+ Relationships: [];
48
+ };
49
+ entity_logs: {
50
+ Row: {
51
+ entity_id: string;
52
+ file: string;
53
+ id: string;
54
+ source_type: string;
55
+ target: string | null;
56
+ timestamp: string;
57
+ update_type: string;
58
+ };
59
+ Insert: {
60
+ entity_id: string;
61
+ file: string;
62
+ id?: string;
63
+ source_type: string;
64
+ target?: string | null;
65
+ timestamp?: string;
66
+ update_type: string;
67
+ };
68
+ Update: {
69
+ entity_id?: string;
70
+ file?: string;
71
+ id?: string;
72
+ source_type?: string;
73
+ target?: string | null;
74
+ timestamp?: string;
75
+ update_type?: string;
76
+ };
77
+ Relationships: [
78
+ {
79
+ foreignKeyName: "entity_logs_entity_id_fkey";
80
+ columns: ["entity_id"];
81
+ isOneToOne: false;
82
+ referencedRelation: "entities";
83
+ referencedColumns: ["id"];
84
+ }
85
+ ];
86
+ };
87
+ messages: {
88
+ Row: {
89
+ action: string;
90
+ attachments: Json | null;
91
+ id: string;
92
+ moa_document: string | null;
93
+ source_id: string;
94
+ source_type: string;
95
+ target_id: string;
96
+ text: string | null;
97
+ thread_id: string;
98
+ timestamp: string;
99
+ };
100
+ Insert: {
101
+ action: string;
102
+ attachments?: Json | null;
103
+ id?: string;
104
+ moa_document?: string | null;
105
+ source_id: string;
106
+ source_type: string;
107
+ target_id: string;
108
+ text?: string | null;
109
+ thread_id: string;
110
+ timestamp?: string;
111
+ };
112
+ Update: {
113
+ action?: string;
114
+ attachments?: Json | null;
115
+ id?: string;
116
+ moa_document?: string | null;
117
+ source_id?: string;
118
+ source_type?: string;
119
+ target_id?: string;
120
+ text?: string | null;
121
+ thread_id?: string;
122
+ timestamp?: string;
123
+ };
124
+ Relationships: [
125
+ {
126
+ foreignKeyName: "messages_thread_id_fkey";
127
+ columns: ["thread_id"];
128
+ isOneToOne: false;
129
+ referencedRelation: "threads";
130
+ referencedColumns: ["id"];
131
+ }
132
+ ];
133
+ };
134
+ moa_requests: {
135
+ Row: {
136
+ entity_id: string;
137
+ id: string;
138
+ message_id: string;
139
+ notified_school_account_id: string;
140
+ outcome: string | null;
141
+ processed_by_account_id: string | null;
142
+ processed_date: string | null;
143
+ school_id: string;
144
+ timestamp: string;
145
+ };
146
+ Insert: {
147
+ entity_id: string;
148
+ id?: string;
149
+ message_id: string;
150
+ notified_school_account_id: string;
151
+ outcome?: string | null;
152
+ processed_by_account_id?: string | null;
153
+ processed_date?: string | null;
154
+ school_id: string;
155
+ timestamp?: string;
156
+ };
157
+ Update: {
158
+ entity_id?: string;
159
+ id?: string;
160
+ message_id?: string;
161
+ notified_school_account_id?: string;
162
+ outcome?: string | null;
163
+ processed_by_account_id?: string | null;
164
+ processed_date?: string | null;
165
+ school_id?: string;
166
+ timestamp?: string;
167
+ };
168
+ Relationships: [
169
+ {
170
+ foreignKeyName: "moa_requests_entity_id_fkey";
171
+ columns: ["entity_id"];
172
+ isOneToOne: false;
173
+ referencedRelation: "entities";
174
+ referencedColumns: ["id"];
175
+ },
176
+ {
177
+ foreignKeyName: "moa_requests_message_id_fkey";
178
+ columns: ["message_id"];
179
+ isOneToOne: false;
180
+ referencedRelation: "messages";
181
+ referencedColumns: ["id"];
182
+ }
183
+ ];
184
+ };
185
+ new_entity_requests: {
186
+ Row: {
187
+ entity_id: string;
188
+ id: string;
189
+ message_id: string;
190
+ outcome: string | null;
191
+ processed_by_account_id: string | null;
192
+ processed_date: string | null;
193
+ timestamp: string;
194
+ };
195
+ Insert: {
196
+ entity_id: string;
197
+ id?: string;
198
+ message_id: string;
199
+ outcome?: string | null;
200
+ processed_by_account_id?: string | null;
201
+ processed_date?: string | null;
202
+ timestamp?: string;
203
+ };
204
+ Update: {
205
+ entity_id?: string;
206
+ id?: string;
207
+ message_id?: string;
208
+ outcome?: string | null;
209
+ processed_by_account_id?: string | null;
210
+ processed_date?: string | null;
211
+ timestamp?: string;
212
+ };
213
+ Relationships: [
214
+ {
215
+ foreignKeyName: "new_entity_requests_entity_id_fkey";
216
+ columns: ["entity_id"];
217
+ isOneToOne: false;
218
+ referencedRelation: "entities";
219
+ referencedColumns: ["id"];
220
+ },
221
+ {
222
+ foreignKeyName: "new_entity_requests_message_id_fkey";
223
+ columns: ["message_id"];
224
+ isOneToOne: false;
225
+ referencedRelation: "messages";
226
+ referencedColumns: ["id"];
227
+ }
228
+ ];
229
+ };
230
+ threads: {
231
+ Row: {
232
+ id: string;
233
+ };
234
+ Insert: {
235
+ id?: string;
236
+ };
237
+ Update: {
238
+ id?: string;
239
+ };
240
+ Relationships: [];
241
+ };
242
+ };
243
+ Views: {
244
+ [_ in never]: never;
245
+ };
246
+ Functions: {
247
+ [_ in never]: never;
248
+ };
249
+ Enums: {
250
+ [_ in never]: never;
251
+ };
252
+ CompositeTypes: {
253
+ [_ in never]: never;
254
+ };
255
+ };
256
+ };
257
+ type DatabaseWithoutInternals = Omit<Database, "__InternalSupabase">;
258
+ type DefaultSchema = DatabaseWithoutInternals[Extract<keyof Database, "public">];
259
+ export type Tables<DefaultSchemaTableNameOrOptions extends keyof (DefaultSchema["Tables"] & DefaultSchema["Views"]) | {
260
+ schema: keyof DatabaseWithoutInternals;
261
+ }, TableName extends DefaultSchemaTableNameOrOptions extends {
262
+ schema: keyof DatabaseWithoutInternals;
263
+ } ? keyof (DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions["schema"]]["Tables"] & DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions["schema"]]["Views"]) : never = never> = DefaultSchemaTableNameOrOptions extends {
264
+ schema: keyof DatabaseWithoutInternals;
265
+ } ? (DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions["schema"]]["Tables"] & DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions["schema"]]["Views"])[TableName] extends {
266
+ Row: infer R;
267
+ } ? R : never : DefaultSchemaTableNameOrOptions extends keyof (DefaultSchema["Tables"] & DefaultSchema["Views"]) ? (DefaultSchema["Tables"] & DefaultSchema["Views"])[DefaultSchemaTableNameOrOptions] extends {
268
+ Row: infer R;
269
+ } ? R : never : never;
270
+ export type TablesInsert<DefaultSchemaTableNameOrOptions extends keyof DefaultSchema["Tables"] | {
271
+ schema: keyof DatabaseWithoutInternals;
272
+ }, TableName extends DefaultSchemaTableNameOrOptions extends {
273
+ schema: keyof DatabaseWithoutInternals;
274
+ } ? keyof DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions["schema"]]["Tables"] : never = never> = DefaultSchemaTableNameOrOptions extends {
275
+ schema: keyof DatabaseWithoutInternals;
276
+ } ? DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions["schema"]]["Tables"][TableName] extends {
277
+ Insert: infer I;
278
+ } ? I : never : DefaultSchemaTableNameOrOptions extends keyof DefaultSchema["Tables"] ? DefaultSchema["Tables"][DefaultSchemaTableNameOrOptions] extends {
279
+ Insert: infer I;
280
+ } ? I : never : never;
281
+ export type TablesUpdate<DefaultSchemaTableNameOrOptions extends keyof DefaultSchema["Tables"] | {
282
+ schema: keyof DatabaseWithoutInternals;
283
+ }, TableName extends DefaultSchemaTableNameOrOptions extends {
284
+ schema: keyof DatabaseWithoutInternals;
285
+ } ? keyof DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions["schema"]]["Tables"] : never = never> = DefaultSchemaTableNameOrOptions extends {
286
+ schema: keyof DatabaseWithoutInternals;
287
+ } ? DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions["schema"]]["Tables"][TableName] extends {
288
+ Update: infer U;
289
+ } ? U : never : DefaultSchemaTableNameOrOptions extends keyof DefaultSchema["Tables"] ? DefaultSchema["Tables"][DefaultSchemaTableNameOrOptions] extends {
290
+ Update: infer U;
291
+ } ? U : never : never;
292
+ export type Enums<DefaultSchemaEnumNameOrOptions extends keyof DefaultSchema["Enums"] | {
293
+ schema: keyof DatabaseWithoutInternals;
294
+ }, EnumName extends DefaultSchemaEnumNameOrOptions extends {
295
+ schema: keyof DatabaseWithoutInternals;
296
+ } ? keyof DatabaseWithoutInternals[DefaultSchemaEnumNameOrOptions["schema"]]["Enums"] : never = never> = DefaultSchemaEnumNameOrOptions extends {
297
+ schema: keyof DatabaseWithoutInternals;
298
+ } ? DatabaseWithoutInternals[DefaultSchemaEnumNameOrOptions["schema"]]["Enums"][EnumName] : DefaultSchemaEnumNameOrOptions extends keyof DefaultSchema["Enums"] ? DefaultSchema["Enums"][DefaultSchemaEnumNameOrOptions] : never;
299
+ export type CompositeTypes<PublicCompositeTypeNameOrOptions extends keyof DefaultSchema["CompositeTypes"] | {
300
+ schema: keyof DatabaseWithoutInternals;
301
+ }, CompositeTypeName extends PublicCompositeTypeNameOrOptions extends {
302
+ schema: keyof DatabaseWithoutInternals;
303
+ } ? keyof DatabaseWithoutInternals[PublicCompositeTypeNameOrOptions["schema"]]["CompositeTypes"] : never = never> = PublicCompositeTypeNameOrOptions extends {
304
+ schema: keyof DatabaseWithoutInternals;
305
+ } ? DatabaseWithoutInternals[PublicCompositeTypeNameOrOptions["schema"]]["CompositeTypes"][CompositeTypeName] : PublicCompositeTypeNameOrOptions extends keyof DefaultSchema["CompositeTypes"] ? DefaultSchema["CompositeTypes"][PublicCompositeTypeNameOrOptions] : never;
306
+ export declare const Constants: {
307
+ readonly public: {
308
+ readonly Enums: {};
309
+ };
310
+ };
311
+ export {};
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Constants = void 0;
4
+ exports.Constants = {
5
+ public: {
6
+ Enums: {},
7
+ },
8
+ };
9
+ //# sourceMappingURL=db.ent.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"db.ent.types.js","sourceRoot":"","sources":["../lib/db.ent.types.ts"],"names":[],"mappings":";;;AA6Xa,QAAA,SAAS,GAAG;IACvB,MAAM,EAAE;QACN,KAAK,EAAE,EAAE;KACV;CACO,CAAA"}
package/dist/db.js ADDED
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.handleDBError = exports.schoolDb = exports.entityDb = void 0;
4
+ const supabase_js_1 = require("@supabase/supabase-js");
5
+ const env_1 = require("./env");
6
+ const DB_SCHOOL_URL = env_1.ENV.SUPABASE_SCHOOL_URL;
7
+ const DB_ENTITY_URL = env_1.ENV.SUPABASE_ENTITY_URL;
8
+ const DB_SCHOOL_SERVICE_KEY = env_1.ENV.SUPABASE_SCHOOL_SERVICE_ROLE_KEY;
9
+ const DB_ENTITY_SERVICE_KEY = env_1.ENV.SUPABASE_ENTITY_SERVICE_ROLE_KEY;
10
+ if (!DB_SCHOOL_URL || !DB_ENTITY_URL || !DB_SCHOOL_SERVICE_KEY || !DB_ENTITY_SERVICE_KEY)
11
+ throw new Error("[ERROR:ENV] Missing Supabase configuration.");
12
+ exports.entityDb = (0, supabase_js_1.createClient)(DB_ENTITY_URL, DB_ENTITY_SERVICE_KEY);
13
+ exports.schoolDb = (0, supabase_js_1.createClient)(DB_SCHOOL_URL, DB_SCHOOL_SERVICE_KEY);
14
+ const handleDBError = (error, description = "") => {
15
+ switch (error.code) {
16
+ case "PGRST116":
17
+ throw new Error(description, { cause: "DB_RECORD_NOT_FOUND" });
18
+ case "23505":
19
+ throw new Error(description, { cause: "DB_RECORD_ALREADY_EXISTS" });
20
+ case "23503":
21
+ throw new Error(description, { cause: "DB_REFERENCED_ERROR_NOT_FOUND" });
22
+ default:
23
+ throw new Error(description, { cause: "DB_OPERATION_FAILED" });
24
+ }
25
+ };
26
+ exports.handleDBError = handleDBError;
27
+ //# sourceMappingURL=db.js.map
package/dist/db.js.map ADDED
@@ -0,0 +1 @@
1
+ {"version":3,"file":"db.js","sourceRoot":"","sources":["../lib/db.ts"],"names":[],"mappings":";;;AASA,uDAAqE;AAGrE,+BAA4B;AAE5B,MAAM,aAAa,GAAG,SAAG,CAAC,mBAAmB,CAAC;AAC9C,MAAM,aAAa,GAAG,SAAG,CAAC,mBAAmB,CAAC;AAC9C,MAAM,qBAAqB,GAAG,SAAG,CAAC,gCAAgC,CAAC;AACnE,MAAM,qBAAqB,GAAG,SAAG,CAAC,gCAAgC,CAAC;AAEnE,IAAI,CAAC,aAAa,IAAI,CAAC,aAAa,IAAI,CAAC,qBAAqB,IAAI,CAAC,qBAAqB;IACtF,MAAM,IAAI,KAAK,CAAC,6CAA6C,CAAC,CAAC;AAGpD,QAAA,QAAQ,GAAG,IAAA,0BAAY,EAAiB,aAAa,EAAE,qBAAqB,CAAC,CAAC;AAC9E,QAAA,QAAQ,GAAG,IAAA,0BAAY,EAAiB,aAAa,EAAE,qBAAqB,CAAC,CAAC;AASpF,MAAM,aAAa,GAAG,CAC3B,KAAqB,EACrB,cAAsB,EAAE,EACxB,EAAE;IACF,QAAQ,KAAK,CAAC,IAAI,EAAE,CAAC;QACnB,KAAK,UAAU;YACb,MAAM,IAAI,KAAK,CAAC,WAAW,EAAE,EAAE,KAAK,EAAE,qBAAqB,EAAE,CAAC,CAAC;QACjE,KAAK,OAAO;YACV,MAAM,IAAI,KAAK,CAAC,WAAW,EAAE,EAAE,KAAK,EAAE,0BAA0B,EAAE,CAAC,CAAC;QACtE,KAAK,OAAO;YACV,MAAM,IAAI,KAAK,CAAC,WAAW,EAAE,EAAE,KAAK,EAAE,+BAA+B,EAAE,CAAC,CAAC;QAC3E;YACE,MAAM,IAAI,KAAK,CAAC,WAAW,EAAE,EAAE,KAAK,EAAE,qBAAqB,EAAE,CAAC,CAAC;IACnE,CAAC;AACH,CAAC,CAAC;AAdW,QAAA,aAAa,iBAcxB"}
@@ -0,0 +1,263 @@
1
+ export type Json = string | number | boolean | null | {
2
+ [key: string]: Json | undefined;
3
+ } | Json[];
4
+ export type Database = {
5
+ __InternalSupabase: {
6
+ PostgrestVersion: "13.0.4";
7
+ };
8
+ public: {
9
+ Tables: {
10
+ moa_histories: {
11
+ Row: {
12
+ entity_id: string;
13
+ history: Json;
14
+ id: string;
15
+ school_id: string;
16
+ };
17
+ Insert: {
18
+ entity_id: string;
19
+ history: Json;
20
+ id?: string;
21
+ school_id?: string;
22
+ };
23
+ Update: {
24
+ entity_id?: string;
25
+ history?: Json;
26
+ id?: string;
27
+ school_id?: string;
28
+ };
29
+ Relationships: [
30
+ {
31
+ foreignKeyName: "moa_histories_school_id_fkey";
32
+ columns: ["school_id"];
33
+ isOneToOne: false;
34
+ referencedRelation: "schools";
35
+ referencedColumns: ["id"];
36
+ }
37
+ ];
38
+ };
39
+ private_entity_notes: {
40
+ Row: {
41
+ author_school_account_id: string;
42
+ entity_id: string;
43
+ id: string;
44
+ message: string;
45
+ timestamp: string;
46
+ };
47
+ Insert: {
48
+ author_school_account_id: string;
49
+ entity_id: string;
50
+ id?: string;
51
+ message: string;
52
+ timestamp?: string;
53
+ };
54
+ Update: {
55
+ author_school_account_id?: string;
56
+ entity_id?: string;
57
+ id?: string;
58
+ message?: string;
59
+ timestamp?: string;
60
+ };
61
+ Relationships: [
62
+ {
63
+ foreignKeyName: "private_entity_notes_author_school_account_id_fkey";
64
+ columns: ["author_school_account_id"];
65
+ isOneToOne: false;
66
+ referencedRelation: "school_accounts";
67
+ referencedColumns: ["id"];
68
+ }
69
+ ];
70
+ };
71
+ school_accounts: {
72
+ Row: {
73
+ created_at: string;
74
+ id: string;
75
+ name: string;
76
+ receive_moa_requests: boolean;
77
+ receive_new_entity_requests: boolean;
78
+ role: string;
79
+ school_id: string;
80
+ };
81
+ Insert: {
82
+ created_at?: string;
83
+ id?: string;
84
+ name: string;
85
+ receive_moa_requests?: boolean;
86
+ receive_new_entity_requests?: boolean;
87
+ role?: string;
88
+ school_id: string;
89
+ };
90
+ Update: {
91
+ created_at?: string;
92
+ id?: string;
93
+ name?: string;
94
+ receive_moa_requests?: boolean;
95
+ receive_new_entity_requests?: boolean;
96
+ role?: string;
97
+ school_id?: string;
98
+ };
99
+ Relationships: [
100
+ {
101
+ foreignKeyName: "school_accounts_school_id_fkey";
102
+ columns: ["school_id"];
103
+ isOneToOne: false;
104
+ referencedRelation: "schools";
105
+ referencedColumns: ["id"];
106
+ }
107
+ ];
108
+ };
109
+ school_entities: {
110
+ Row: {
111
+ entity_id: string;
112
+ id: string;
113
+ school_id: string;
114
+ status: string;
115
+ };
116
+ Insert: {
117
+ entity_id: string;
118
+ id?: string;
119
+ school_id: string;
120
+ status: string;
121
+ };
122
+ Update: {
123
+ entity_id?: string;
124
+ id?: string;
125
+ school_id?: string;
126
+ status?: string;
127
+ };
128
+ Relationships: [
129
+ {
130
+ foreignKeyName: "school_entities_school_id_fkey";
131
+ columns: ["school_id"];
132
+ isOneToOne: false;
133
+ referencedRelation: "schools";
134
+ referencedColumns: ["id"];
135
+ }
136
+ ];
137
+ };
138
+ school_logs: {
139
+ Row: {
140
+ action_type: string;
141
+ entity_id: string | null;
142
+ id: number;
143
+ school_account_id: string;
144
+ timestamp: string;
145
+ };
146
+ Insert: {
147
+ action_type: string;
148
+ entity_id?: string | null;
149
+ id?: number;
150
+ school_account_id: string;
151
+ timestamp?: string;
152
+ };
153
+ Update: {
154
+ action_type?: string;
155
+ entity_id?: string | null;
156
+ id?: number;
157
+ school_account_id?: string;
158
+ timestamp?: string;
159
+ };
160
+ Relationships: [
161
+ {
162
+ foreignKeyName: "school_logs_school_account_id_fkey";
163
+ columns: ["school_account_id"];
164
+ isOneToOne: false;
165
+ referencedRelation: "school_accounts";
166
+ referencedColumns: ["id"];
167
+ }
168
+ ];
169
+ };
170
+ schools: {
171
+ Row: {
172
+ created_at: string;
173
+ domain: string;
174
+ full_name: string;
175
+ id: string;
176
+ short_name: string;
177
+ };
178
+ Insert: {
179
+ created_at?: string;
180
+ domain: string;
181
+ full_name: string;
182
+ id?: string;
183
+ short_name: string;
184
+ };
185
+ Update: {
186
+ created_at?: string;
187
+ domain?: string;
188
+ full_name?: string;
189
+ id?: string;
190
+ short_name?: string;
191
+ };
192
+ Relationships: [];
193
+ };
194
+ };
195
+ Views: {
196
+ [_ in never]: never;
197
+ };
198
+ Functions: {
199
+ [_ in never]: never;
200
+ };
201
+ Enums: {
202
+ [_ in never]: never;
203
+ };
204
+ CompositeTypes: {
205
+ [_ in never]: never;
206
+ };
207
+ };
208
+ };
209
+ type DatabaseWithoutInternals = Omit<Database, "__InternalSupabase">;
210
+ type DefaultSchema = DatabaseWithoutInternals[Extract<keyof Database, "public">];
211
+ export type Tables<DefaultSchemaTableNameOrOptions extends keyof (DefaultSchema["Tables"] & DefaultSchema["Views"]) | {
212
+ schema: keyof DatabaseWithoutInternals;
213
+ }, TableName extends DefaultSchemaTableNameOrOptions extends {
214
+ schema: keyof DatabaseWithoutInternals;
215
+ } ? keyof (DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions["schema"]]["Tables"] & DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions["schema"]]["Views"]) : never = never> = DefaultSchemaTableNameOrOptions extends {
216
+ schema: keyof DatabaseWithoutInternals;
217
+ } ? (DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions["schema"]]["Tables"] & DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions["schema"]]["Views"])[TableName] extends {
218
+ Row: infer R;
219
+ } ? R : never : DefaultSchemaTableNameOrOptions extends keyof (DefaultSchema["Tables"] & DefaultSchema["Views"]) ? (DefaultSchema["Tables"] & DefaultSchema["Views"])[DefaultSchemaTableNameOrOptions] extends {
220
+ Row: infer R;
221
+ } ? R : never : never;
222
+ export type TablesInsert<DefaultSchemaTableNameOrOptions extends keyof DefaultSchema["Tables"] | {
223
+ schema: keyof DatabaseWithoutInternals;
224
+ }, TableName extends DefaultSchemaTableNameOrOptions extends {
225
+ schema: keyof DatabaseWithoutInternals;
226
+ } ? keyof DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions["schema"]]["Tables"] : never = never> = DefaultSchemaTableNameOrOptions extends {
227
+ schema: keyof DatabaseWithoutInternals;
228
+ } ? DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions["schema"]]["Tables"][TableName] extends {
229
+ Insert: infer I;
230
+ } ? I : never : DefaultSchemaTableNameOrOptions extends keyof DefaultSchema["Tables"] ? DefaultSchema["Tables"][DefaultSchemaTableNameOrOptions] extends {
231
+ Insert: infer I;
232
+ } ? I : never : never;
233
+ export type TablesUpdate<DefaultSchemaTableNameOrOptions extends keyof DefaultSchema["Tables"] | {
234
+ schema: keyof DatabaseWithoutInternals;
235
+ }, TableName extends DefaultSchemaTableNameOrOptions extends {
236
+ schema: keyof DatabaseWithoutInternals;
237
+ } ? keyof DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions["schema"]]["Tables"] : never = never> = DefaultSchemaTableNameOrOptions extends {
238
+ schema: keyof DatabaseWithoutInternals;
239
+ } ? DatabaseWithoutInternals[DefaultSchemaTableNameOrOptions["schema"]]["Tables"][TableName] extends {
240
+ Update: infer U;
241
+ } ? U : never : DefaultSchemaTableNameOrOptions extends keyof DefaultSchema["Tables"] ? DefaultSchema["Tables"][DefaultSchemaTableNameOrOptions] extends {
242
+ Update: infer U;
243
+ } ? U : never : never;
244
+ export type Enums<DefaultSchemaEnumNameOrOptions extends keyof DefaultSchema["Enums"] | {
245
+ schema: keyof DatabaseWithoutInternals;
246
+ }, EnumName extends DefaultSchemaEnumNameOrOptions extends {
247
+ schema: keyof DatabaseWithoutInternals;
248
+ } ? keyof DatabaseWithoutInternals[DefaultSchemaEnumNameOrOptions["schema"]]["Enums"] : never = never> = DefaultSchemaEnumNameOrOptions extends {
249
+ schema: keyof DatabaseWithoutInternals;
250
+ } ? DatabaseWithoutInternals[DefaultSchemaEnumNameOrOptions["schema"]]["Enums"][EnumName] : DefaultSchemaEnumNameOrOptions extends keyof DefaultSchema["Enums"] ? DefaultSchema["Enums"][DefaultSchemaEnumNameOrOptions] : never;
251
+ export type CompositeTypes<PublicCompositeTypeNameOrOptions extends keyof DefaultSchema["CompositeTypes"] | {
252
+ schema: keyof DatabaseWithoutInternals;
253
+ }, CompositeTypeName extends PublicCompositeTypeNameOrOptions extends {
254
+ schema: keyof DatabaseWithoutInternals;
255
+ } ? keyof DatabaseWithoutInternals[PublicCompositeTypeNameOrOptions["schema"]]["CompositeTypes"] : never = never> = PublicCompositeTypeNameOrOptions extends {
256
+ schema: keyof DatabaseWithoutInternals;
257
+ } ? DatabaseWithoutInternals[PublicCompositeTypeNameOrOptions["schema"]]["CompositeTypes"][CompositeTypeName] : PublicCompositeTypeNameOrOptions extends keyof DefaultSchema["CompositeTypes"] ? DefaultSchema["CompositeTypes"][PublicCompositeTypeNameOrOptions] : never;
258
+ export declare const Constants: {
259
+ readonly public: {
260
+ readonly Enums: {};
261
+ };
262
+ };
263
+ export {};
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.Constants = void 0;
4
+ exports.Constants = {
5
+ public: {
6
+ Enums: {},
7
+ },
8
+ };
9
+ //# sourceMappingURL=db.uni.types.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"db.uni.types.js","sourceRoot":"","sources":["../lib/db.uni.types.ts"],"names":[],"mappings":";;;AA6Ua,QAAA,SAAS,GAAG;IACvB,MAAM,EAAE;QACN,KAAK,EAAE,EAAE;KACV;CACO,CAAA"}
package/dist/env.d.ts ADDED
@@ -0,0 +1 @@
1
+ export declare const ENV: NodeJS.ProcessEnv;
package/dist/env.js ADDED
@@ -0,0 +1,7 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.ENV = void 0;
4
+ const dotenv = require("dotenv");
5
+ dotenv.config();
6
+ exports.ENV = process.env;
7
+ //# sourceMappingURL=env.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"env.js","sourceRoot":"","sources":["../lib/env.ts"],"names":[],"mappings":";;;AAAA,iCAAiC;AACjC,MAAM,CAAC,MAAM,EAAE,CAAC;AACH,QAAA,GAAG,GAAG,OAAO,CAAC,GAAG,CAAC"}
@@ -0,0 +1,3 @@
1
+ export * from "./db";
2
+ export * as Entity from "./db.ent.types";
3
+ export * as School from "./db.uni.types";
package/dist/index.js ADDED
@@ -0,0 +1,21 @@
1
+ "use strict";
2
+ var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
+ if (k2 === undefined) k2 = k;
4
+ var desc = Object.getOwnPropertyDescriptor(m, k);
5
+ if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
+ desc = { enumerable: true, get: function() { return m[k]; } };
7
+ }
8
+ Object.defineProperty(o, k2, desc);
9
+ }) : (function(o, m, k, k2) {
10
+ if (k2 === undefined) k2 = k;
11
+ o[k2] = m[k];
12
+ }));
13
+ var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
+ for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
+ };
16
+ Object.defineProperty(exports, "__esModule", { value: true });
17
+ exports.School = exports.Entity = void 0;
18
+ __exportStar(require("./db"), exports);
19
+ exports.Entity = require("./db.ent.types");
20
+ exports.School = require("./db.uni.types");
21
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../lib/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;AAAA,uCAAqB;AACrB,2CAAyC;AACzC,2CAAyC"}
@@ -0,0 +1 @@
1
+ {"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2021.d.ts","../node_modules/typescript/lib/lib.es2022.d.ts","../node_modules/typescript/lib/lib.es2023.d.ts","../node_modules/typescript/lib/lib.dom.d.ts","../node_modules/typescript/lib/lib.dom.iterable.d.ts","../node_modules/typescript/lib/lib.dom.asynciterable.d.ts","../node_modules/typescript/lib/lib.webworker.importscripts.d.ts","../node_modules/typescript/lib/lib.scripthost.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2016.intl.d.ts","../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../node_modules/typescript/lib/lib.es2017.date.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2019.intl.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.date.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.es2020.number.d.ts","../node_modules/typescript/lib/lib.es2021.promise.d.ts","../node_modules/typescript/lib/lib.es2021.string.d.ts","../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../node_modules/typescript/lib/lib.es2021.intl.d.ts","../node_modules/typescript/lib/lib.es2022.array.d.ts","../node_modules/typescript/lib/lib.es2022.error.d.ts","../node_modules/typescript/lib/lib.es2022.intl.d.ts","../node_modules/typescript/lib/lib.es2022.object.d.ts","../node_modules/typescript/lib/lib.es2022.string.d.ts","../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../node_modules/typescript/lib/lib.es2023.array.d.ts","../node_modules/typescript/lib/lib.es2023.collection.d.ts","../node_modules/typescript/lib/lib.es2023.intl.d.ts","../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../node_modules/typescript/lib/lib.esnext.float16.d.ts","../node_modules/typescript/lib/lib.decorators.d.ts","../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../node_modules/typescript/lib/lib.es2023.full.d.ts","../lib/db.ent.types.ts","../node_modules/@supabase/functions-js/dist/module/types.d.ts","../node_modules/@supabase/functions-js/dist/module/functionsclient.d.ts","../node_modules/@supabase/functions-js/dist/module/index.d.ts","../node_modules/@supabase/postgrest-js/dist/cjs/postgresterror.d.ts","../node_modules/@supabase/postgrest-js/dist/cjs/select-query-parser/types.d.ts","../node_modules/@supabase/postgrest-js/dist/cjs/select-query-parser/parser.d.ts","../node_modules/@supabase/postgrest-js/dist/cjs/select-query-parser/utils.d.ts","../node_modules/@supabase/postgrest-js/dist/cjs/types.d.ts","../node_modules/@supabase/postgrest-js/dist/cjs/postgrestbuilder.d.ts","../node_modules/@supabase/postgrest-js/dist/cjs/select-query-parser/result.d.ts","../node_modules/@supabase/postgrest-js/dist/cjs/postgresttransformbuilder.d.ts","../node_modules/@supabase/postgrest-js/dist/cjs/postgrestfilterbuilder.d.ts","../node_modules/@supabase/postgrest-js/dist/cjs/postgrestquerybuilder.d.ts","../node_modules/@supabase/postgrest-js/dist/cjs/postgrestclient.d.ts","../node_modules/@supabase/postgrest-js/dist/cjs/index.d.ts","../node_modules/@supabase/realtime-js/dist/module/lib/websocket-factory.d.ts","../node_modules/@supabase/realtime-js/dist/module/lib/constants.d.ts","../node_modules/@supabase/realtime-js/dist/module/lib/serializer.d.ts","../node_modules/@supabase/realtime-js/dist/module/lib/timer.d.ts","../node_modules/@supabase/realtime-js/dist/module/lib/push.d.ts","../node_modules/@types/phoenix/index.d.ts","../node_modules/@supabase/realtime-js/dist/module/realtimepresence.d.ts","../node_modules/@supabase/realtime-js/dist/module/realtimechannel.d.ts","../node_modules/@supabase/realtime-js/dist/module/realtimeclient.d.ts","../node_modules/@supabase/realtime-js/dist/module/index.d.ts","../node_modules/@types/node/compatibility/iterators.d.ts","../node_modules/@types/node/globals.typedarray.d.ts","../node_modules/@types/node/buffer.buffer.d.ts","../node_modules/undici-types/utility.d.ts","../node_modules/undici-types/header.d.ts","../node_modules/undici-types/readable.d.ts","../node_modules/undici-types/fetch.d.ts","../node_modules/undici-types/formdata.d.ts","../node_modules/undici-types/connector.d.ts","../node_modules/undici-types/client-stats.d.ts","../node_modules/undici-types/client.d.ts","../node_modules/undici-types/errors.d.ts","../node_modules/undici-types/dispatcher.d.ts","../node_modules/undici-types/global-dispatcher.d.ts","../node_modules/undici-types/global-origin.d.ts","../node_modules/undici-types/pool-stats.d.ts","../node_modules/undici-types/pool.d.ts","../node_modules/undici-types/handlers.d.ts","../node_modules/undici-types/balanced-pool.d.ts","../node_modules/undici-types/h2c-client.d.ts","../node_modules/undici-types/agent.d.ts","../node_modules/undici-types/mock-interceptor.d.ts","../node_modules/undici-types/mock-call-history.d.ts","../node_modules/undici-types/mock-agent.d.ts","../node_modules/undici-types/mock-client.d.ts","../node_modules/undici-types/mock-pool.d.ts","../node_modules/undici-types/mock-errors.d.ts","../node_modules/undici-types/proxy-agent.d.ts","../node_modules/undici-types/env-http-proxy-agent.d.ts","../node_modules/undici-types/retry-handler.d.ts","../node_modules/undici-types/retry-agent.d.ts","../node_modules/undici-types/api.d.ts","../node_modules/undici-types/cache-interceptor.d.ts","../node_modules/undici-types/interceptors.d.ts","../node_modules/undici-types/util.d.ts","../node_modules/undici-types/cookies.d.ts","../node_modules/undici-types/patch.d.ts","../node_modules/undici-types/websocket.d.ts","../node_modules/undici-types/eventsource.d.ts","../node_modules/undici-types/diagnostics-channel.d.ts","../node_modules/undici-types/content-type.d.ts","../node_modules/undici-types/cache.d.ts","../node_modules/undici-types/index.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/dom-events.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/readline/promises.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/sea.d.ts","../node_modules/@types/node/sqlite.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/test.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/@supabase/storage-js/dist/module/lib/errors.d.ts","../node_modules/@supabase/storage-js/dist/module/lib/types.d.ts","../node_modules/@supabase/storage-js/dist/module/lib/fetch.d.ts","../node_modules/@supabase/storage-js/dist/module/packages/storagefileapi.d.ts","../node_modules/@supabase/storage-js/dist/module/packages/storagebucketapi.d.ts","../node_modules/@supabase/storage-js/dist/module/storageclient.d.ts","../node_modules/@supabase/storage-js/dist/module/index.d.ts","../node_modules/@supabase/auth-js/dist/module/lib/error-codes.d.ts","../node_modules/@supabase/auth-js/dist/module/lib/errors.d.ts","../node_modules/@supabase/auth-js/dist/module/lib/solana.d.ts","../node_modules/@supabase/auth-js/dist/module/lib/types.d.ts","../node_modules/@supabase/auth-js/dist/module/lib/fetch.d.ts","../node_modules/@supabase/auth-js/dist/module/gotrueadminapi.d.ts","../node_modules/@supabase/auth-js/dist/module/lib/helpers.d.ts","../node_modules/@supabase/auth-js/dist/module/gotrueclient.d.ts","../node_modules/@supabase/auth-js/dist/module/authadminapi.d.ts","../node_modules/@supabase/auth-js/dist/module/authclient.d.ts","../node_modules/@supabase/auth-js/dist/module/lib/locks.d.ts","../node_modules/@supabase/auth-js/dist/module/index.d.ts","../node_modules/@supabase/supabase-js/dist/module/lib/types.d.ts","../node_modules/@supabase/supabase-js/dist/module/lib/supabaseauthclient.d.ts","../node_modules/@supabase/supabase-js/dist/module/supabaseclient.d.ts","../node_modules/@supabase/supabase-js/dist/module/index.d.ts","../node_modules/dotenv/lib/main.d.ts","../lib/env.ts","../lib/db.ts","../lib/db.uni.types.ts","../lib/index.ts","../node_modules/@types/ws/index.d.ts"],"fileIdsList":[[98,143],[70,98,143,216,218],[98,143,217],[70,98,143,219,220],[98,143,206],[98,143,208],[98,143,202,204,205],[98,143,202,204,205,206,207],[98,143,202,204,206,208,209,210,211],[98,143,201,204],[98,143,204],[98,143,202,203,205],[71,98,143],[71,72,98,143],[74,78,79,80,81,82,83,84,98,143],[75,78,98,143],[78,82,83,98,143],[77,78,81,98,143],[78,80,82,98,143],[78,79,80,98,143],[77,78,98,143],[75,76,77,78,98,143],[78,98,143],[75,76,98,143],[74,75,77,98,143],[86,92,93,94,98,143],[93,98,143],[87,89,90,92,94,98,143],[86,87,88,89,93,98,143],[91,93,98,143],[98,143,194,195,199],[98,143,195],[98,143,194,195,196,199],[98,143,193,194,195,196],[98,143,196,197,198],[73,85,95,98,143,212,213,215],[98,143,212,213],[85,95,98,143,199,212],[73,85,95,98,143,200,213,214],[98,140,143],[98,142,143],[143],[98,143,148,178],[98,143,144,149,155,156,163,175,186],[98,143,144,145,155,163],[98,143,146,187],[98,143,147,148,156,164],[98,143,148,175,183],[98,143,149,151,155,163],[98,142,143,150],[98,143,151,152],[98,143,153,155],[98,142,143,155],[98,143,155,156,157,175,186],[98,143,155,156,157,170,175,178],[98,138,143],[98,138,143,151,155,158,163,175,186],[98,143,155,156,158,159,163,175,183,186],[98,143,158,160,175,183,186],[96,97,98,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192],[98,143,155,161],[98,143,162,186],[98,143,151,155,163,175],[98,143,164],[98,143,165],[98,142,143,166],[98,140,141,142,143,144,145,146,147,148,149,150,151,152,153,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192],[98,143,168],[98,143,169],[98,143,155,170,171],[98,143,170,172,187,189],[98,143,155,175,176,178],[98,143,177,178],[98,143,175,176],[98,143,178],[98,143,179],[98,140,143,175,180],[98,143,155,181,182],[98,143,181,182],[98,143,148,163,175,183],[98,143,184],[98,143,163,185],[98,143,158,169,186],[98,143,148,187],[98,143,175,188],[98,143,162,189],[98,143,190],[98,143,155,157,166,175,178,186,188,189,191],[98,143,175,192],[98,143,155,158,160,163,175,183,186,192,193],[98,143,186,193],[98,105,108,111,112,143,186],[98,108,143,175,186],[98,108,112,143,186],[98,143,175],[98,102,143],[98,106,143],[98,104,105,108,143,186],[98,143,163,183],[98,143,193],[98,102,143,193],[98,104,108,143,163,186],[98,99,100,101,103,107,143,155,175,186],[98,108,116,143],[98,100,106,143],[98,108,132,133,143],[98,100,103,108,143,178,186,193],[98,108,143],[98,104,108,143,186],[98,99,143],[98,102,103,104,106,107,108,109,110,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,133,134,135,136,137,143],[98,108,125,128,143,151],[98,108,116,117,118,143],[98,106,108,117,119,143],[98,107,143],[98,100,102,108,143],[98,108,112,117,119,143],[98,112,143],[98,106,108,111,143,186],[98,100,104,108,116,143],[98,108,125,143],[98,102,108,132,143,178,191,193]],"fileInfos":[{"version":"c430d44666289dae81f30fa7b2edebf186ecc91a2d4c71266ea6ae76388792e1","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"080941d9f9ff9307f7e27a83bcd888b7c8270716c39af943532438932ec1d0b9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e80ee7a49e8ac312cc11b77f1475804bee36b3b2bc896bead8b6e1266befb43","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7a3c8b952931daebdfc7a2897c53c0a1c73624593fa070e46bd537e64dcd20a","affectsGlobalScope":true,"impliedFormat":1},{"version":"80e18897e5884b6723488d4f5652167e7bb5024f946743134ecc4aa4ee731f89","affectsGlobalScope":true,"impliedFormat":1},{"version":"cd034f499c6cdca722b60c04b5b1b78e058487a7085a8e0d6fb50809947ee573","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"fb0f136d372979348d59b3f5020b4cdb81b5504192b1cacff5d1fbba29378aa1","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"a680117f487a4d2f30ea46f1b4b7f58bef1480456e18ba53ee85c2746eeca012","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"8cdf8847677ac7d20486e54dd3fcf09eda95812ac8ace44b4418da1bbbab6eb8","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"785921608325fa246b450f05b238f4b3ed659f1099af278ce9ebbc9416a13f1d","impliedFormat":1},{"version":"c692662e3354a2bc8fa33b76aa966c8b385123908085c27def969f7a018d706c","signature":"6c7760f3db9e22c8bf3c73f7d4c37043e91cae34b83ca56149f16465f0d5343e"},{"version":"93cc77c27f519006b0f58120c75eec36deffbe7feec3c68d3aa14051b0b998d8","impliedFormat":1},{"version":"a01035ec8ac796e720532f76a2f5ef957ec5ec6f022e5854e8522fa4fec3dd3a","impliedFormat":1},{"version":"a3628f430f8d502a5c026a0c932a5c41e6361d8e0248287872cd8999bc534399","impliedFormat":1},{"version":"ed774418ed7b67bf7c7c09afec04dc68aaf4b2ce34e83c8385ed32b836bfa1f5","impliedFormat":1},{"version":"b0c35bf00dd6fb25d84febff7590ac37528c99fcb452428b326fbed24dcb8d70","impliedFormat":1},{"version":"016eb46411ea55780ac3ccb57a10ae7d3de5f039a9b1c0889ebfe1bf4963c0af","impliedFormat":1},{"version":"f0e4a8414ebeccecd2eb57a7e4cf31e968e951126f45484d86fedc89dca61dec","impliedFormat":1},{"version":"ceb8fc6899a46dd58dd1f11077891ebf887a56e5fae8956c41d6dbac181bfe78","impliedFormat":1},{"version":"f1ab325fae2490d7933a0ec029a3e4df191d2022f5bf638acc9fb0bbc6a5792b","impliedFormat":1},{"version":"743ec4b877ee007e896a45ff5165100f793bef796938631051ad818039e238de","impliedFormat":1},{"version":"739ba5b048829e14de67e2fd9c067c28af878b65206a43ef0578552eedd8d8eb","impliedFormat":1},{"version":"509f00a10e4d37dd72e5d065054c430b3c1d4da788f4fe6a1fc15b91e60abf99","impliedFormat":1},{"version":"e2c737ecabdf5dde9d56d2675f5045d96c68383a5c019cb89b66b636185aa820","impliedFormat":1},{"version":"987c5db7454ad787d00334c97c761441f259ffab25495dc7d158cc8a7e9fd80a","impliedFormat":1},{"version":"c890847d746b7209ff5ec1d08c3ea02336f656f9190813e9ecb0d0ef938b4894","impliedFormat":1},{"version":"b18d0d74ce7362e0b970a5da61ac1f0dfa4cfa923a04e98978a4e44a97b25a60","impliedFormat":1},{"version":"961605580f225b884dc512d4ae229a628bb1c50d134ccf462738a130d5855180","impliedFormat":1},{"version":"381b623c9ee962965cc3684ee45de6236f91cf24eb845dafc3a74a27d1eed070","impliedFormat":1},{"version":"1f84dff7964146377785aa684028ca62290e0639ac41fd0c5f391a5f5d414adc","impliedFormat":1},{"version":"4edf6371c3fd1f12c91cab0b0c42340ba0205e1a24f95757551ba46b6ab0e8a4","impliedFormat":1},{"version":"f4ae5546352701fd6932fdd86419438bb51253e4627a44808489742035bac644","impliedFormat":1},{"version":"bda1393387e320d7c151a72415d14f77134a99839a0c7b6b990345475cfdb2a7","impliedFormat":1},{"version":"84fccbf19c8cd506887a23cd8245539acb8e47b23f4e0e00b848161dde93e093","impliedFormat":1},{"version":"5c59911b7ce4516bc2070207db32a39d75fbcf99c309ccc46c3cc6ba42066722","impliedFormat":1},{"version":"8fcbd8080f97ec9de29ef3f605200f344e351b4ac23d26f3b11ce34c639a4582","impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"c0671b50bb99cc7ad46e9c68fa0e7f15ba4bc898b59c31a17ea4611fab5095da","affectsGlobalScope":true,"impliedFormat":1},{"version":"d802f0e6b5188646d307f070d83512e8eb94651858de8a82d1e47f60fb6da4e2","affectsGlobalScope":true,"impliedFormat":1},{"version":"cdcf9ea426ad970f96ac930cd176d5c69c6c24eebd9fc580e1572d6c6a88f62c","impliedFormat":1},{"version":"23cd712e2ce083d68afe69224587438e5914b457b8acf87073c22494d706a3d0","impliedFormat":1},{"version":"487b694c3de27ddf4ad107d4007ad304d29effccf9800c8ae23c2093638d906a","impliedFormat":1},{"version":"e525f9e67f5ddba7b5548430211cae2479070b70ef1fd93550c96c10529457bd","impliedFormat":1},{"version":"ccf4552357ce3c159ef75f0f0114e80401702228f1898bdc9402214c9499e8c0","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"68834d631c8838c715f225509cfc3927913b9cc7a4870460b5b60c8dbdb99baf","impliedFormat":1},{"version":"4bc0794175abedf989547e628949888c1085b1efcd93fc482bccd77ee27f8b7c","impliedFormat":1},{"version":"3c8e93af4d6ce21eb4c8d005ad6dc02e7b5e6781f429d52a35290210f495a674","impliedFormat":1},{"version":"2c9875466123715464539bfd69bcaccb8ff6f3e217809428e0d7bd6323416d01","impliedFormat":1},{"version":"ea6bc8de8b59f90a7a3960005fd01988f98fd0784e14bc6922dde2e93305ec7d","impliedFormat":1},{"version":"36107995674b29284a115e21a0618c4c2751b32a8766dd4cb3ba740308b16d59","impliedFormat":1},{"version":"914a0ae30d96d71915fc519ccb4efbf2b62c0ddfb3a3fc6129151076bc01dc60","impliedFormat":1},{"version":"33e981bf6376e939f99bd7f89abec757c64897d33c005036b9a10d9587d80187","impliedFormat":1},{"version":"6c8e442ba33b07892169a14f7757321e49ab0f1032d676d321a1fdab8a67d40c","impliedFormat":1},{"version":"b41767d372275c154c7ea6c9d5449d9a741b8ce080f640155cc88ba1763e35b3","impliedFormat":1},{"version":"1cd673d367293fc5cb31cd7bf03d598eb368e4f31f39cf2b908abbaf120ab85a","impliedFormat":1},{"version":"af13e99445f37022c730bfcafcdc1761e9382ce1ea02afb678e3130b01ce5676","impliedFormat":1},{"version":"3825bf209f1662dfd039010a27747b73d0ef379f79970b1d05601ec8e8a4249f","impliedFormat":1},{"version":"0b6e25234b4eec6ed96ab138d96eb70b135690d7dd01f3dd8a8ab291c35a683a","impliedFormat":1},{"version":"9666f2f84b985b62400d2e5ab0adae9ff44de9b2a34803c2c5bd3c8325b17dc0","impliedFormat":1},{"version":"da52342062e70c77213e45107921100ba9f9b3a30dd019444cf349e5fb3470c4","impliedFormat":1},{"version":"e9ace91946385d29192766bf783b8460c7dbcbfc63284aa3c9cae6de5155c8bc","impliedFormat":1},{"version":"40b463c6766ca1b689bfcc46d26b5e295954f32ad43e37ee6953c0a677e4ae2b","impliedFormat":1},{"version":"249b9cab7f5d628b71308c7d9bb0a808b50b091e640ba3ed6e2d0516f4a8d91d","impliedFormat":1},{"version":"1e30c045732e7db8f7a82cf90b516ebe693d2f499ce2250a977ec0d12e44a529","impliedFormat":1},{"version":"84b736594d8760f43400202859cda55607663090a43445a078963031d47e25e7","impliedFormat":1},{"version":"499e5b055a5aba1e1998f7311a6c441a369831c70905cc565ceac93c28083d53","impliedFormat":1},{"version":"54c3e2371e3d016469ad959697fd257e5621e16296fa67082c2575d0bf8eced0","impliedFormat":1},{"version":"beb8233b2c220cfa0feea31fbe9218d89fa02faa81ef744be8dce5acb89bb1fd","impliedFormat":1},{"version":"78b29846349d4dfdd88bd6650cc5d2baaa67f2e89dc8a80c8e26ef7995386583","impliedFormat":1},{"version":"5d0375ca7310efb77e3ef18d068d53784faf62705e0ad04569597ae0e755c401","impliedFormat":1},{"version":"59af37caec41ecf7b2e76059c9672a49e682c1a2aa6f9d7dc78878f53aa284d6","impliedFormat":1},{"version":"addf417b9eb3f938fddf8d81e96393a165e4be0d4a8b6402292f9c634b1cb00d","impliedFormat":1},{"version":"e38d4fdf79e1eadd92ed7844c331dbaa40f29f21541cfee4e1acff4db09cda33","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"7c10a32ae6f3962672e6869ee2c794e8055d8225ef35c91c0228e354b4e5d2d3","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"99f569b42ea7e7c5fe404b2848c0893f3e1a56e0547c1cd0f74d5dbb9a9de27e","impliedFormat":1},{"version":"f4b4faedc57701ae727d78ba4a83e466a6e3bdcbe40efbf913b17e860642897c","affectsGlobalScope":true,"impliedFormat":1},{"version":"bbcfd9cd76d92c3ee70475270156755346c9086391e1b9cb643d072e0cf576b8","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"72c1f5e0a28e473026074817561d1bc9647909cf253c8d56c41d1df8d95b85f7","impliedFormat":1},{"version":"003ec918ec442c3a4db2c36dc0c9c766977ea1c8bcc1ca7c2085868727c3d3f6","affectsGlobalScope":true,"impliedFormat":1},{"version":"938f94db8400d0b479626b9006245a833d50ce8337f391085fad4af540279567","impliedFormat":1},{"version":"c4e8e8031808b158cfb5ac5c4b38d4a26659aec4b57b6a7e2ba0a141439c208c","impliedFormat":1},{"version":"2c91d8366ff2506296191c26fd97cc1990bab3ee22576275d28b654a21261a44","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"db39d9a16e4ddcd8a8f2b7b3292b362cc5392f92ad7ccd76f00bccf6838ac7de","affectsGlobalScope":true,"impliedFormat":1},{"version":"289e9894a4668c61b5ffed09e196c1f0c2f87ca81efcaebdf6357cfb198dac14","impliedFormat":1},{"version":"25a1105595236f09f5bce42398be9f9ededc8d538c258579ab662d509aa3b98e","impliedFormat":1},{"version":"5078cd62dbdf91ae8b1dc90b1384dec71a9c0932d62bdafb1a811d2a8e26bef2","impliedFormat":1},{"version":"a2e2bbde231b65c53c764c12313897ffdfb6c49183dd31823ee2405f2f7b5378","impliedFormat":1},{"version":"ad1cc0ed328f3f708771272021be61ab146b32ecf2b78f3224959ff1e2cd2a5c","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"62f572306e0b173cc5dfc4c583471151f16ef3779cf27ab96922c92ec82a3bc8","affectsGlobalScope":true,"impliedFormat":1},{"version":"067bdd82d9768baddbdc8df51d85f7b96387c47176bf7f895d2e21e2b6b2f1f4","impliedFormat":1},{"version":"42d30e7d04915facc3ded22b4127c9f517973b4c2b1326e56c10ff70daf6800a","impliedFormat":1},{"version":"bd8b644c5861b94926687618ec2c9e60ad054d334d6b7eb4517f23f53cb11f91","impliedFormat":1},{"version":"bcbabfaca3f6b8a76cb2739e57710daf70ab5c9479ab70f5351c9b4932abf6bd","impliedFormat":1},{"version":"77fced47f495f4ff29bb49c52c605c5e73cd9b47d50080133783032769a9d8a6","impliedFormat":1},{"version":"55f370475031b3d36af8dd47fb3934dff02e0f1330d13f1977c9e676af5c2e70","impliedFormat":1},{"version":"c54f0b30a787b3df16280f4675bd3d9d17bf983ae3cd40087409476bc50b922d","affectsGlobalScope":true,"impliedFormat":1},{"version":"0f5cda0282e1d18198e2887387eb2f026372ebc4e11c4e4516fef8a19ee4d514","impliedFormat":1},{"version":"e99b0e71f07128fc32583e88ccd509a1aaa9524c290efb2f48c22f9bf8ba83b1","impliedFormat":1},{"version":"76957a6d92b94b9e2852cf527fea32ad2dc0ef50f67fe2b14bd027c9ceef2d86","impliedFormat":1},{"version":"5e9f8c1e042b0f598a9be018fc8c3cb670fe579e9f2e18e3388b63327544fe16","affectsGlobalScope":true,"impliedFormat":1},{"version":"a8a99a5e6ed33c4a951b67cc1fd5b64fd6ad719f5747845c165ca12f6c21ba16","affectsGlobalScope":true,"impliedFormat":1},{"version":"a58a15da4c5ba3df60c910a043281256fa52d36a0fcdef9b9100c646282e88dd","impliedFormat":1},{"version":"b36beffbf8acdc3ebc58c8bb4b75574b31a2169869c70fc03f82895b93950a12","impliedFormat":1},{"version":"de263f0089aefbfd73c89562fb7254a7468b1f33b61839aafc3f035d60766cb4","impliedFormat":1},{"version":"70b57b5529051497e9f6482b76d91c0dcbb103d9ead8a0549f5bab8f65e5d031","impliedFormat":1},{"version":"8c81fd4a110490c43d7c578e8c6f69b3af01717189196899a6a44f93daa57a3a","impliedFormat":1},{"version":"1013eb2e2547ad8c100aca52ef9df8c3f209edee32bb387121bb3227f7c00088","impliedFormat":1},{"version":"e07c573ac1971ea89e2c56ff5fd096f6f7bba2e6dbcd5681d39257c8d954d4a8","impliedFormat":1},{"version":"363eedb495912790e867da6ff96e81bf792c8cfe386321e8163b71823a35719a","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"dba28a419aec76ed864ef43e5f577a5c99a010c32e5949fe4e17a4d57c58dd11","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea713aa14a670b1ea0fbaaca4fd204e645f71ca7653a834a8ec07ee889c45de6","impliedFormat":1},{"version":"1e080418e53f9b7a05db81ab517c4e1d71b7194ee26ddd54016bcef3ac474bd4","impliedFormat":1},{"version":"9705cd157ffbb91c5cab48bdd2de5a437a372e63f870f8a8472e72ff634d47c1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ae86f30d5d10e4f75ce8dcb6e1bd3a12ecec3d071a21e8f462c5c85c678efb41","impliedFormat":1},{"version":"982efeb2573605d4e6d5df4dc7e40846bda8b9e678e058fc99522ab6165c479e","impliedFormat":1},{"version":"e03460fe72b259f6d25ad029f085e4bedc3f90477da4401d8fbc1efa9793230e","impliedFormat":1},{"version":"4286a3a6619514fca656089aee160bb6f2e77f4dd53dc5a96b26a0b4fc778055","impliedFormat":1},{"version":"3b63610eaabadf26aadf51a563e4b2a8bf56eeaab1094f2a2b21509008eaef0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"2d5d50cd0667d9710d4d2f6e077cc4e0f9dc75e106cccaea59999b36873c5a0d","affectsGlobalScope":true,"impliedFormat":1},{"version":"784490137935e1e38c49b9289110e74a1622baf8a8907888dcbe9e476d7c5e44","impliedFormat":1},{"version":"42180b657831d1b8fead051698618b31da623fb71ff37f002cb9d932cfa775f1","impliedFormat":1},{"version":"4f98d6fb4fe7cbeaa04635c6eaa119d966285d4d39f0eb55b2654187b0b27446","impliedFormat":1},{"version":"f8529fe0645fd9af7441191a4961497cc7638f75a777a56248eac6a079bb275d","affectsGlobalScope":true,"impliedFormat":1},{"version":"4445f6ce6289c5b2220398138da23752fd84152c5c95bb8b58dedefc1758c036","impliedFormat":1},{"version":"a51f786b9f3c297668f8f322a6c58f85d84948ef69ade32069d5d63ec917221c","impliedFormat":1},{"version":"e3c8181f9cf79e7c33c3c4da1a41092bd7ed9eaaec9f9998766b52331150edb6","impliedFormat":1},{"version":"284dd1f01c7b42ccd1f070dd7c6f74f101cc3597378256ff24cc5d72448c75a6","impliedFormat":1},{"version":"021ed353ba1623ec4c783163b2e7a544db68764d20307788f00b5c16ce40f341","impliedFormat":1},{"version":"4b545a28b345f7ac8bbbd4c8930846912b1d2327f6bfa5889478edd8c5b6282c","impliedFormat":1},{"version":"bc63795b58ff5cdbe4496c70d3313e5f90390bdb2ae1af97ac738366f3819416","impliedFormat":1},{"version":"8861847d6335fa45ade9ff5491902f6f9c5d9d0134ea495483a59de2483ac284","impliedFormat":1},{"version":"33899c60aea8188645a90bc029c0a98d18c5cb271de8a967c0a7e45698a28007","impliedFormat":1},{"version":"6b4cc716f171384a65f863080b6577fc1c45028490c5b0a35b3e31467e590b4d","impliedFormat":1},{"version":"54e425cf2edad78bbfb12e323d3328df6e5302d3c32f2844325930c0fe3e5683","impliedFormat":1},{"version":"a177fb901089551279eb7171277369d8ae39c62d0b2bc73b9c6b29bb43013a55","impliedFormat":1},{"version":"ed99f007a88f5ed08cc8b7f09bc90a6f7371fddad6e19c0f44ae4ab46b754871","impliedFormat":1},{"version":"dc18979157d4d0c265fa5284b7f600e6c1946b0a40f173a96217bd3d2bdd206a","impliedFormat":1},{"version":"ecf09b7dbe9c80785e547ca7139e420a7dc7590e8f02223056813776e8d04168","impliedFormat":1},{"version":"8bed0aaad83dcf899f7ad2ecab434246a70489cd586a4d0e600c94b7ba696522","impliedFormat":1},{"version":"3166f30388a646ecbdc5f122433cd4ddffb0518d492aceb83ab6bfdcf27b2fe8","impliedFormat":1},{"version":"4ae9b50481136302de9c77668621ed3a0b34998f3e091ca3701426f4fe369c8a","impliedFormat":1},{"version":"9ba9ecc57d2f52b3ed3ac229636ee9a36e92e18b80eeae11ffb546c12e56d5e5","impliedFormat":1},{"version":"a35e372b741b6aaf27163d79224fb2d553443bb388c24f84fdde42a450c6e761","impliedFormat":1},{"version":"d182d419bb30a1408784ed95fbabd973dde7517641e04525f0ce761df5d193a5","impliedFormat":1},{"version":"0b65ae01678fd1b52fc048a1bce48f260ef36daae47edc5c5bb3432bb8c40ee2","impliedFormat":1},{"version":"ec3e143e22d0b8828c2b99ef926af7ef05475421866ca9915444b383cd9e1db1","impliedFormat":1},{"version":"532b86cbf638c85ea08dc9aa137302952793c56bde8f495acbfb9415367efabe","impliedFormat":1},{"version":"2a23ef3132a5d05b7205c7af3cac333d183d90c6d09635e7ec213948a4ab6edd","impliedFormat":1},{"version":"3b41aa444e12a13b537f18024efbff44c42289c9c08a47f96139d0ee12b3a00a","impliedFormat":1},{"version":"bb5ff3634e52ada383fe64971e3d162f2e86770ba4f91ad2cf6dc1e6f60f2cd2","signature":"c969caa714bdc4bc09b93b0fdcf1d8b7d741a294d66565b6f05dd5fa98b051d9"},{"version":"0081604dbcf492b2e13148fbe33d55673a3d6feff3aca7141fcf5d4e90fedba4","signature":"40b161bfe67d142dfd1897a7ba1b58a6d05cd4449dffaefe59bc0a3960f15a7a"},{"version":"fb825ce824edc813af42fe3c530e10a4e2e9749b0b31ab75c123ab881cf6d035","signature":"b1fd0b6784423f2ee0bfff1c18d7623064ec79a3266a3b3763c65e9b2f206dba"},{"version":"41c324feca9c15a15e00762a6419fa6eea6287a4440d105f64078dff12a6269d","signature":"e4899a30053be99fdfb01fb2f25085fca3c93f3a1bd4fbb8a2cd1c5393cee86a"},{"version":"1ba59c8bbeed2cb75b239bb12041582fa3e8ef32f8d0bd0ec802e38442d3f317","impliedFormat":1}],"root":[70,[218,221]],"options":{"allowSyntheticDefaultImports":true,"declaration":true,"emitDecoratorMetadata":true,"experimentalDecorators":true,"module":1,"noFallthroughCasesInSwitch":false,"noImplicitAny":false,"outDir":"./","removeComments":true,"skipLibCheck":true,"sourceMap":true,"strictBindCallApply":false,"strictNullChecks":true,"target":10},"referencedMap":[[70,1],[219,2],[220,1],[218,3],[221,4],[209,5],[210,6],[206,7],[208,8],[212,9],[201,1],[202,10],[205,11],[207,11],[211,1],[203,1],[204,12],[72,13],[73,14],[71,1],[85,15],[79,16],[84,17],[74,1],[82,18],[83,19],[81,20],[76,21],[80,22],[75,23],[77,24],[78,25],[95,26],[87,1],[90,27],[88,1],[89,1],[86,1],[93,28],[94,29],[92,30],[200,31],[194,1],[196,32],[195,1],[198,33],[197,34],[199,35],[216,36],[214,37],[213,38],[215,39],[140,40],[141,40],[142,41],[98,42],[143,43],[144,44],[145,45],[96,1],[146,46],[147,47],[148,48],[149,49],[150,50],[151,51],[152,51],[154,1],[153,52],[155,53],[156,54],[157,55],[139,56],[97,1],[158,57],[159,58],[160,59],[193,60],[161,61],[162,62],[163,63],[164,64],[165,65],[166,66],[167,67],[168,68],[169,69],[170,70],[171,70],[172,71],[173,1],[174,1],[175,72],[177,73],[176,74],[178,75],[179,76],[180,77],[181,78],[182,79],[183,80],[184,81],[185,82],[186,83],[187,84],[188,85],[189,86],[190,87],[191,88],[192,89],[91,1],[222,90],[217,91],[67,1],[68,1],[13,1],[11,1],[12,1],[17,1],[16,1],[2,1],[18,1],[19,1],[20,1],[21,1],[22,1],[23,1],[24,1],[25,1],[3,1],[26,1],[27,1],[4,1],[28,1],[32,1],[29,1],[30,1],[31,1],[33,1],[34,1],[35,1],[5,1],[36,1],[37,1],[38,1],[39,1],[6,1],[43,1],[40,1],[41,1],[42,1],[44,1],[7,1],[45,1],[50,1],[51,1],[46,1],[47,1],[48,1],[49,1],[8,1],[55,1],[52,1],[53,1],[54,1],[56,1],[9,1],[57,1],[58,1],[59,1],[61,1],[60,1],[62,1],[63,1],[10,1],[69,1],[64,1],[1,1],[65,1],[66,1],[15,1],[14,1],[116,92],[127,93],[114,94],[128,95],[137,96],[105,97],[106,98],[104,99],[136,100],[131,101],[135,102],[108,103],[124,104],[107,105],[134,106],[102,107],[103,101],[109,108],[110,1],[115,109],[113,108],[100,110],[138,111],[129,112],[119,113],[118,108],[120,114],[122,115],[117,116],[121,117],[132,100],[111,118],[112,119],[123,120],[101,95],[126,121],[125,108],[130,1],[99,1],[133,122]],"version":"5.9.2"}
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "@betterinternship/schema.moa",
3
+ "version": "1.0.0",
4
+ "description": "Core library of BetterInternship moa platform schemas.",
5
+ "main": "dist/index.js",
6
+ "types": "dist/index.d.ts",
7
+ "files": [
8
+ "dist"
9
+ ],
10
+ "scripts": {
11
+ "publish": "tsc",
12
+ "test": "echo \"Error: no test specified\" && exit 1"
13
+ },
14
+ "publishConfig": {
15
+ "access": "public"
16
+ },
17
+ "keywords": [],
18
+ "author": "",
19
+ "license": "ISC",
20
+ "dependencies": {
21
+ "@supabase/supabase-js": "^2.52.0",
22
+ "dotenv": "^17.2.0",
23
+ "uuid": "^11.1.0"
24
+ },
25
+ "devDependencies": {
26
+ "@types/node": "^24.0.15",
27
+ "typescript": "^5.8.3"
28
+ }
29
+ }