@ttt-productions/ttt-core 0.4.4 → 0.4.5
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/media/domain-events.d.ts +96 -96
- package/dist/media/pending-media.d.ts +840 -840
- package/dist/media/target-info.d.ts +4 -4
- package/dist/schemas/admin.d.ts +2 -2
- package/dist/schemas/jobs.d.ts +6 -18
- package/dist/schemas/jobs.d.ts.map +1 -1
- package/dist/schemas/jobs.js +6 -5
- package/dist/schemas/jobs.js.map +1 -1
- package/dist/schemas/library.d.ts +6 -6
- package/dist/schemas/project-management.d.ts +264 -10
- package/dist/schemas/project-management.d.ts.map +1 -1
- package/dist/schemas/project-management.js +37 -6
- package/dist/schemas/project-management.js.map +1 -1
- package/dist/schemas/share-operation.d.ts +0 -112
- package/dist/schemas/share-operation.d.ts.map +1 -1
- package/dist/schemas/share-operation.js +5 -17
- package/dist/schemas/share-operation.js.map +1 -1
- package/dist/schemas/system-message-actions.d.ts +2 -2
- package/dist/types/index.d.ts +1 -0
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/jobs.d.ts +6 -2
- package/dist/types/jobs.d.ts.map +1 -1
- package/dist/types/messaging.d.ts +2 -0
- package/dist/types/messaging.d.ts.map +1 -1
- package/dist/types/project.d.ts +1 -2
- package/dist/types/project.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -10,7 +10,6 @@ export declare const ShareOperationSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
10
10
|
uid: string;
|
|
11
11
|
}>>;
|
|
12
12
|
sourceId: z.ZodOptional<z.ZodString>;
|
|
13
|
-
sourceType: z.ZodOptional<z.ZodEnum<["invite", "job"]>>;
|
|
14
13
|
}, "strict", z.ZodTypeAny, {
|
|
15
14
|
type: "add-pending";
|
|
16
15
|
user?: {
|
|
@@ -18,7 +17,6 @@ export declare const ShareOperationSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
18
17
|
} | undefined;
|
|
19
18
|
amount?: number | undefined;
|
|
20
19
|
sourceId?: string | undefined;
|
|
21
|
-
sourceType?: "job" | "invite" | undefined;
|
|
22
20
|
}, {
|
|
23
21
|
type: "add-pending";
|
|
24
22
|
user?: {
|
|
@@ -26,7 +24,6 @@ export declare const ShareOperationSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
26
24
|
} | undefined;
|
|
27
25
|
amount?: number | undefined;
|
|
28
26
|
sourceId?: string | undefined;
|
|
29
|
-
sourceType?: "job" | "invite" | undefined;
|
|
30
27
|
}>, z.ZodObject<{
|
|
31
28
|
type: z.ZodLiteral<"remove-pending">;
|
|
32
29
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -38,7 +35,6 @@ export declare const ShareOperationSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
38
35
|
uid: string;
|
|
39
36
|
}>>;
|
|
40
37
|
sourceId: z.ZodOptional<z.ZodString>;
|
|
41
|
-
sourceType: z.ZodOptional<z.ZodEnum<["invite", "job"]>>;
|
|
42
38
|
}, "strict", z.ZodTypeAny, {
|
|
43
39
|
type: "remove-pending";
|
|
44
40
|
user?: {
|
|
@@ -46,7 +42,6 @@ export declare const ShareOperationSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
46
42
|
} | undefined;
|
|
47
43
|
amount?: number | undefined;
|
|
48
44
|
sourceId?: string | undefined;
|
|
49
|
-
sourceType?: "job" | "invite" | undefined;
|
|
50
45
|
}, {
|
|
51
46
|
type: "remove-pending";
|
|
52
47
|
user?: {
|
|
@@ -54,7 +49,6 @@ export declare const ShareOperationSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
54
49
|
} | undefined;
|
|
55
50
|
amount?: number | undefined;
|
|
56
51
|
sourceId?: string | undefined;
|
|
57
|
-
sourceType?: "job" | "invite" | undefined;
|
|
58
52
|
}>, z.ZodObject<{
|
|
59
53
|
type: z.ZodLiteral<"add-active">;
|
|
60
54
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -66,7 +60,6 @@ export declare const ShareOperationSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
66
60
|
uid: string;
|
|
67
61
|
}>>;
|
|
68
62
|
sourceId: z.ZodOptional<z.ZodString>;
|
|
69
|
-
sourceType: z.ZodOptional<z.ZodEnum<["invite", "job"]>>;
|
|
70
63
|
}, "strict", z.ZodTypeAny, {
|
|
71
64
|
type: "add-active";
|
|
72
65
|
user?: {
|
|
@@ -74,7 +67,6 @@ export declare const ShareOperationSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
74
67
|
} | undefined;
|
|
75
68
|
amount?: number | undefined;
|
|
76
69
|
sourceId?: string | undefined;
|
|
77
|
-
sourceType?: "job" | "invite" | undefined;
|
|
78
70
|
}, {
|
|
79
71
|
type: "add-active";
|
|
80
72
|
user?: {
|
|
@@ -82,7 +74,6 @@ export declare const ShareOperationSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
82
74
|
} | undefined;
|
|
83
75
|
amount?: number | undefined;
|
|
84
76
|
sourceId?: string | undefined;
|
|
85
|
-
sourceType?: "job" | "invite" | undefined;
|
|
86
77
|
}>, z.ZodObject<{
|
|
87
78
|
type: z.ZodLiteral<"create-project">;
|
|
88
79
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -94,7 +85,6 @@ export declare const ShareOperationSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
94
85
|
uid: string;
|
|
95
86
|
}>>;
|
|
96
87
|
sourceId: z.ZodOptional<z.ZodString>;
|
|
97
|
-
sourceType: z.ZodOptional<z.ZodEnum<["invite", "job"]>>;
|
|
98
88
|
}, "strict", z.ZodTypeAny, {
|
|
99
89
|
type: "create-project";
|
|
100
90
|
user?: {
|
|
@@ -102,7 +92,6 @@ export declare const ShareOperationSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
102
92
|
} | undefined;
|
|
103
93
|
amount?: number | undefined;
|
|
104
94
|
sourceId?: string | undefined;
|
|
105
|
-
sourceType?: "job" | "invite" | undefined;
|
|
106
95
|
}, {
|
|
107
96
|
type: "create-project";
|
|
108
97
|
user?: {
|
|
@@ -110,7 +99,6 @@ export declare const ShareOperationSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
110
99
|
} | undefined;
|
|
111
100
|
amount?: number | undefined;
|
|
112
101
|
sourceId?: string | undefined;
|
|
113
|
-
sourceType?: "job" | "invite" | undefined;
|
|
114
102
|
}>, z.ZodObject<{
|
|
115
103
|
type: z.ZodLiteral<"convert-invite">;
|
|
116
104
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -122,7 +110,6 @@ export declare const ShareOperationSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
122
110
|
uid: string;
|
|
123
111
|
}>>;
|
|
124
112
|
sourceId: z.ZodOptional<z.ZodString>;
|
|
125
|
-
sourceType: z.ZodOptional<z.ZodEnum<["invite", "job"]>>;
|
|
126
113
|
}, "strict", z.ZodTypeAny, {
|
|
127
114
|
type: "convert-invite";
|
|
128
115
|
user?: {
|
|
@@ -130,7 +117,6 @@ export declare const ShareOperationSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
130
117
|
} | undefined;
|
|
131
118
|
amount?: number | undefined;
|
|
132
119
|
sourceId?: string | undefined;
|
|
133
|
-
sourceType?: "job" | "invite" | undefined;
|
|
134
120
|
}, {
|
|
135
121
|
type: "convert-invite";
|
|
136
122
|
user?: {
|
|
@@ -138,35 +124,6 @@ export declare const ShareOperationSchema: z.ZodDiscriminatedUnion<"type", [z.Zo
|
|
|
138
124
|
} | undefined;
|
|
139
125
|
amount?: number | undefined;
|
|
140
126
|
sourceId?: string | undefined;
|
|
141
|
-
sourceType?: "job" | "invite" | undefined;
|
|
142
|
-
}>, z.ZodObject<{
|
|
143
|
-
type: z.ZodLiteral<"accept-applicant">;
|
|
144
|
-
amount: z.ZodOptional<z.ZodNumber>;
|
|
145
|
-
user: z.ZodOptional<z.ZodObject<{
|
|
146
|
-
uid: z.ZodString;
|
|
147
|
-
}, "strict", z.ZodTypeAny, {
|
|
148
|
-
uid: string;
|
|
149
|
-
}, {
|
|
150
|
-
uid: string;
|
|
151
|
-
}>>;
|
|
152
|
-
sourceId: z.ZodOptional<z.ZodString>;
|
|
153
|
-
sourceType: z.ZodOptional<z.ZodEnum<["invite", "job"]>>;
|
|
154
|
-
}, "strict", z.ZodTypeAny, {
|
|
155
|
-
type: "accept-applicant";
|
|
156
|
-
user?: {
|
|
157
|
-
uid: string;
|
|
158
|
-
} | undefined;
|
|
159
|
-
amount?: number | undefined;
|
|
160
|
-
sourceId?: string | undefined;
|
|
161
|
-
sourceType?: "job" | "invite" | undefined;
|
|
162
|
-
}, {
|
|
163
|
-
type: "accept-applicant";
|
|
164
|
-
user?: {
|
|
165
|
-
uid: string;
|
|
166
|
-
} | undefined;
|
|
167
|
-
amount?: number | undefined;
|
|
168
|
-
sourceId?: string | undefined;
|
|
169
|
-
sourceType?: "job" | "invite" | undefined;
|
|
170
127
|
}>]>;
|
|
171
128
|
export type ShareOperation = z.infer<typeof ShareOperationSchema>;
|
|
172
129
|
export type ShareOperationType = ShareOperation['type'];
|
|
@@ -183,7 +140,6 @@ export declare const ManageProjectSharesInputSchema: z.ZodObject<{
|
|
|
183
140
|
uid: string;
|
|
184
141
|
}>>;
|
|
185
142
|
sourceId: z.ZodOptional<z.ZodString>;
|
|
186
|
-
sourceType: z.ZodOptional<z.ZodEnum<["invite", "job"]>>;
|
|
187
143
|
}, "strict", z.ZodTypeAny, {
|
|
188
144
|
type: "add-pending";
|
|
189
145
|
user?: {
|
|
@@ -191,7 +147,6 @@ export declare const ManageProjectSharesInputSchema: z.ZodObject<{
|
|
|
191
147
|
} | undefined;
|
|
192
148
|
amount?: number | undefined;
|
|
193
149
|
sourceId?: string | undefined;
|
|
194
|
-
sourceType?: "job" | "invite" | undefined;
|
|
195
150
|
}, {
|
|
196
151
|
type: "add-pending";
|
|
197
152
|
user?: {
|
|
@@ -199,7 +154,6 @@ export declare const ManageProjectSharesInputSchema: z.ZodObject<{
|
|
|
199
154
|
} | undefined;
|
|
200
155
|
amount?: number | undefined;
|
|
201
156
|
sourceId?: string | undefined;
|
|
202
|
-
sourceType?: "job" | "invite" | undefined;
|
|
203
157
|
}>, z.ZodObject<{
|
|
204
158
|
type: z.ZodLiteral<"remove-pending">;
|
|
205
159
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -211,7 +165,6 @@ export declare const ManageProjectSharesInputSchema: z.ZodObject<{
|
|
|
211
165
|
uid: string;
|
|
212
166
|
}>>;
|
|
213
167
|
sourceId: z.ZodOptional<z.ZodString>;
|
|
214
|
-
sourceType: z.ZodOptional<z.ZodEnum<["invite", "job"]>>;
|
|
215
168
|
}, "strict", z.ZodTypeAny, {
|
|
216
169
|
type: "remove-pending";
|
|
217
170
|
user?: {
|
|
@@ -219,7 +172,6 @@ export declare const ManageProjectSharesInputSchema: z.ZodObject<{
|
|
|
219
172
|
} | undefined;
|
|
220
173
|
amount?: number | undefined;
|
|
221
174
|
sourceId?: string | undefined;
|
|
222
|
-
sourceType?: "job" | "invite" | undefined;
|
|
223
175
|
}, {
|
|
224
176
|
type: "remove-pending";
|
|
225
177
|
user?: {
|
|
@@ -227,7 +179,6 @@ export declare const ManageProjectSharesInputSchema: z.ZodObject<{
|
|
|
227
179
|
} | undefined;
|
|
228
180
|
amount?: number | undefined;
|
|
229
181
|
sourceId?: string | undefined;
|
|
230
|
-
sourceType?: "job" | "invite" | undefined;
|
|
231
182
|
}>, z.ZodObject<{
|
|
232
183
|
type: z.ZodLiteral<"add-active">;
|
|
233
184
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -239,7 +190,6 @@ export declare const ManageProjectSharesInputSchema: z.ZodObject<{
|
|
|
239
190
|
uid: string;
|
|
240
191
|
}>>;
|
|
241
192
|
sourceId: z.ZodOptional<z.ZodString>;
|
|
242
|
-
sourceType: z.ZodOptional<z.ZodEnum<["invite", "job"]>>;
|
|
243
193
|
}, "strict", z.ZodTypeAny, {
|
|
244
194
|
type: "add-active";
|
|
245
195
|
user?: {
|
|
@@ -247,7 +197,6 @@ export declare const ManageProjectSharesInputSchema: z.ZodObject<{
|
|
|
247
197
|
} | undefined;
|
|
248
198
|
amount?: number | undefined;
|
|
249
199
|
sourceId?: string | undefined;
|
|
250
|
-
sourceType?: "job" | "invite" | undefined;
|
|
251
200
|
}, {
|
|
252
201
|
type: "add-active";
|
|
253
202
|
user?: {
|
|
@@ -255,7 +204,6 @@ export declare const ManageProjectSharesInputSchema: z.ZodObject<{
|
|
|
255
204
|
} | undefined;
|
|
256
205
|
amount?: number | undefined;
|
|
257
206
|
sourceId?: string | undefined;
|
|
258
|
-
sourceType?: "job" | "invite" | undefined;
|
|
259
207
|
}>, z.ZodObject<{
|
|
260
208
|
type: z.ZodLiteral<"create-project">;
|
|
261
209
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -267,7 +215,6 @@ export declare const ManageProjectSharesInputSchema: z.ZodObject<{
|
|
|
267
215
|
uid: string;
|
|
268
216
|
}>>;
|
|
269
217
|
sourceId: z.ZodOptional<z.ZodString>;
|
|
270
|
-
sourceType: z.ZodOptional<z.ZodEnum<["invite", "job"]>>;
|
|
271
218
|
}, "strict", z.ZodTypeAny, {
|
|
272
219
|
type: "create-project";
|
|
273
220
|
user?: {
|
|
@@ -275,7 +222,6 @@ export declare const ManageProjectSharesInputSchema: z.ZodObject<{
|
|
|
275
222
|
} | undefined;
|
|
276
223
|
amount?: number | undefined;
|
|
277
224
|
sourceId?: string | undefined;
|
|
278
|
-
sourceType?: "job" | "invite" | undefined;
|
|
279
225
|
}, {
|
|
280
226
|
type: "create-project";
|
|
281
227
|
user?: {
|
|
@@ -283,7 +229,6 @@ export declare const ManageProjectSharesInputSchema: z.ZodObject<{
|
|
|
283
229
|
} | undefined;
|
|
284
230
|
amount?: number | undefined;
|
|
285
231
|
sourceId?: string | undefined;
|
|
286
|
-
sourceType?: "job" | "invite" | undefined;
|
|
287
232
|
}>, z.ZodObject<{
|
|
288
233
|
type: z.ZodLiteral<"convert-invite">;
|
|
289
234
|
amount: z.ZodOptional<z.ZodNumber>;
|
|
@@ -295,7 +240,6 @@ export declare const ManageProjectSharesInputSchema: z.ZodObject<{
|
|
|
295
240
|
uid: string;
|
|
296
241
|
}>>;
|
|
297
242
|
sourceId: z.ZodOptional<z.ZodString>;
|
|
298
|
-
sourceType: z.ZodOptional<z.ZodEnum<["invite", "job"]>>;
|
|
299
243
|
}, "strict", z.ZodTypeAny, {
|
|
300
244
|
type: "convert-invite";
|
|
301
245
|
user?: {
|
|
@@ -303,7 +247,6 @@ export declare const ManageProjectSharesInputSchema: z.ZodObject<{
|
|
|
303
247
|
} | undefined;
|
|
304
248
|
amount?: number | undefined;
|
|
305
249
|
sourceId?: string | undefined;
|
|
306
|
-
sourceType?: "job" | "invite" | undefined;
|
|
307
250
|
}, {
|
|
308
251
|
type: "convert-invite";
|
|
309
252
|
user?: {
|
|
@@ -311,35 +254,6 @@ export declare const ManageProjectSharesInputSchema: z.ZodObject<{
|
|
|
311
254
|
} | undefined;
|
|
312
255
|
amount?: number | undefined;
|
|
313
256
|
sourceId?: string | undefined;
|
|
314
|
-
sourceType?: "job" | "invite" | undefined;
|
|
315
|
-
}>, z.ZodObject<{
|
|
316
|
-
type: z.ZodLiteral<"accept-applicant">;
|
|
317
|
-
amount: z.ZodOptional<z.ZodNumber>;
|
|
318
|
-
user: z.ZodOptional<z.ZodObject<{
|
|
319
|
-
uid: z.ZodString;
|
|
320
|
-
}, "strict", z.ZodTypeAny, {
|
|
321
|
-
uid: string;
|
|
322
|
-
}, {
|
|
323
|
-
uid: string;
|
|
324
|
-
}>>;
|
|
325
|
-
sourceId: z.ZodOptional<z.ZodString>;
|
|
326
|
-
sourceType: z.ZodOptional<z.ZodEnum<["invite", "job"]>>;
|
|
327
|
-
}, "strict", z.ZodTypeAny, {
|
|
328
|
-
type: "accept-applicant";
|
|
329
|
-
user?: {
|
|
330
|
-
uid: string;
|
|
331
|
-
} | undefined;
|
|
332
|
-
amount?: number | undefined;
|
|
333
|
-
sourceId?: string | undefined;
|
|
334
|
-
sourceType?: "job" | "invite" | undefined;
|
|
335
|
-
}, {
|
|
336
|
-
type: "accept-applicant";
|
|
337
|
-
user?: {
|
|
338
|
-
uid: string;
|
|
339
|
-
} | undefined;
|
|
340
|
-
amount?: number | undefined;
|
|
341
|
-
sourceId?: string | undefined;
|
|
342
|
-
sourceType?: "job" | "invite" | undefined;
|
|
343
257
|
}>]>;
|
|
344
258
|
}, "strict", z.ZodTypeAny, {
|
|
345
259
|
projectId: string;
|
|
@@ -350,7 +264,6 @@ export declare const ManageProjectSharesInputSchema: z.ZodObject<{
|
|
|
350
264
|
} | undefined;
|
|
351
265
|
amount?: number | undefined;
|
|
352
266
|
sourceId?: string | undefined;
|
|
353
|
-
sourceType?: "job" | "invite" | undefined;
|
|
354
267
|
} | {
|
|
355
268
|
type: "remove-pending";
|
|
356
269
|
user?: {
|
|
@@ -358,7 +271,6 @@ export declare const ManageProjectSharesInputSchema: z.ZodObject<{
|
|
|
358
271
|
} | undefined;
|
|
359
272
|
amount?: number | undefined;
|
|
360
273
|
sourceId?: string | undefined;
|
|
361
|
-
sourceType?: "job" | "invite" | undefined;
|
|
362
274
|
} | {
|
|
363
275
|
type: "add-active";
|
|
364
276
|
user?: {
|
|
@@ -366,7 +278,6 @@ export declare const ManageProjectSharesInputSchema: z.ZodObject<{
|
|
|
366
278
|
} | undefined;
|
|
367
279
|
amount?: number | undefined;
|
|
368
280
|
sourceId?: string | undefined;
|
|
369
|
-
sourceType?: "job" | "invite" | undefined;
|
|
370
281
|
} | {
|
|
371
282
|
type: "create-project";
|
|
372
283
|
user?: {
|
|
@@ -374,7 +285,6 @@ export declare const ManageProjectSharesInputSchema: z.ZodObject<{
|
|
|
374
285
|
} | undefined;
|
|
375
286
|
amount?: number | undefined;
|
|
376
287
|
sourceId?: string | undefined;
|
|
377
|
-
sourceType?: "job" | "invite" | undefined;
|
|
378
288
|
} | {
|
|
379
289
|
type: "convert-invite";
|
|
380
290
|
user?: {
|
|
@@ -382,15 +292,6 @@ export declare const ManageProjectSharesInputSchema: z.ZodObject<{
|
|
|
382
292
|
} | undefined;
|
|
383
293
|
amount?: number | undefined;
|
|
384
294
|
sourceId?: string | undefined;
|
|
385
|
-
sourceType?: "job" | "invite" | undefined;
|
|
386
|
-
} | {
|
|
387
|
-
type: "accept-applicant";
|
|
388
|
-
user?: {
|
|
389
|
-
uid: string;
|
|
390
|
-
} | undefined;
|
|
391
|
-
amount?: number | undefined;
|
|
392
|
-
sourceId?: string | undefined;
|
|
393
|
-
sourceType?: "job" | "invite" | undefined;
|
|
394
295
|
};
|
|
395
296
|
}, {
|
|
396
297
|
projectId: string;
|
|
@@ -401,7 +302,6 @@ export declare const ManageProjectSharesInputSchema: z.ZodObject<{
|
|
|
401
302
|
} | undefined;
|
|
402
303
|
amount?: number | undefined;
|
|
403
304
|
sourceId?: string | undefined;
|
|
404
|
-
sourceType?: "job" | "invite" | undefined;
|
|
405
305
|
} | {
|
|
406
306
|
type: "remove-pending";
|
|
407
307
|
user?: {
|
|
@@ -409,7 +309,6 @@ export declare const ManageProjectSharesInputSchema: z.ZodObject<{
|
|
|
409
309
|
} | undefined;
|
|
410
310
|
amount?: number | undefined;
|
|
411
311
|
sourceId?: string | undefined;
|
|
412
|
-
sourceType?: "job" | "invite" | undefined;
|
|
413
312
|
} | {
|
|
414
313
|
type: "add-active";
|
|
415
314
|
user?: {
|
|
@@ -417,7 +316,6 @@ export declare const ManageProjectSharesInputSchema: z.ZodObject<{
|
|
|
417
316
|
} | undefined;
|
|
418
317
|
amount?: number | undefined;
|
|
419
318
|
sourceId?: string | undefined;
|
|
420
|
-
sourceType?: "job" | "invite" | undefined;
|
|
421
319
|
} | {
|
|
422
320
|
type: "create-project";
|
|
423
321
|
user?: {
|
|
@@ -425,7 +323,6 @@ export declare const ManageProjectSharesInputSchema: z.ZodObject<{
|
|
|
425
323
|
} | undefined;
|
|
426
324
|
amount?: number | undefined;
|
|
427
325
|
sourceId?: string | undefined;
|
|
428
|
-
sourceType?: "job" | "invite" | undefined;
|
|
429
326
|
} | {
|
|
430
327
|
type: "convert-invite";
|
|
431
328
|
user?: {
|
|
@@ -433,15 +330,6 @@ export declare const ManageProjectSharesInputSchema: z.ZodObject<{
|
|
|
433
330
|
} | undefined;
|
|
434
331
|
amount?: number | undefined;
|
|
435
332
|
sourceId?: string | undefined;
|
|
436
|
-
sourceType?: "job" | "invite" | undefined;
|
|
437
|
-
} | {
|
|
438
|
-
type: "accept-applicant";
|
|
439
|
-
user?: {
|
|
440
|
-
uid: string;
|
|
441
|
-
} | undefined;
|
|
442
|
-
amount?: number | undefined;
|
|
443
|
-
sourceId?: string | undefined;
|
|
444
|
-
sourceType?: "job" | "invite" | undefined;
|
|
445
333
|
};
|
|
446
334
|
}>;
|
|
447
335
|
export type ManageProjectSharesInput = z.infer<typeof ManageProjectSharesInputSchema>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"share-operation.d.ts","sourceRoot":"","sources":["../../src/schemas/share-operation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;
|
|
1
|
+
{"version":3,"file":"share-operation.d.ts","sourceRoot":"","sources":["../../src/schemas/share-operation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAwBxB,eAAO,MAAM,oBAAoB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;IA+B/B,CAAC;AAEH,MAAM,MAAM,cAAc,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,oBAAoB,CAAC,CAAC;AAClE,MAAM,MAAM,kBAAkB,GAAG,cAAc,CAAC,MAAM,CAAC,CAAC;AAGxD,eAAO,MAAM,8BAA8B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAGhC,CAAC;AAEZ,MAAM,MAAM,wBAAwB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,8BAA8B,CAAC,CAAC"}
|
|
@@ -8,56 +8,44 @@ import { projectIdSchema, userIdSchema, } from './atoms.js';
|
|
|
8
8
|
// shareOperations handler never read it. Removed during the Zod migration.
|
|
9
9
|
//
|
|
10
10
|
// Per-branch shape decisions:
|
|
11
|
-
// - All branches accept optional `amount`, `user`, `sourceId
|
|
12
|
-
//
|
|
13
|
-
//
|
|
14
|
-
// -
|
|
11
|
+
// - All branches accept optional `amount`, `user`, `sourceId` to match the
|
|
12
|
+
// existing TS type. Business-logic checks (e.g. "add-pending requires user
|
|
13
|
+
// OR sourceId") live in shareOperations.ts, NOT in the schema.
|
|
14
|
+
// - The accept-applicant operation has been removed; acceptance is now handled
|
|
15
|
+
// via the invite flow.
|
|
15
16
|
const userRefSchema = z.object({
|
|
16
17
|
uid: userIdSchema,
|
|
17
18
|
}).strict();
|
|
18
|
-
const sourceTypeSchema = z.enum(['invite', 'job']);
|
|
19
19
|
export const ShareOperationSchema = z.discriminatedUnion('type', [
|
|
20
20
|
z.object({
|
|
21
21
|
type: z.literal('add-pending'),
|
|
22
22
|
amount: z.number().int().positive().optional(),
|
|
23
23
|
user: userRefSchema.optional(),
|
|
24
24
|
sourceId: z.string().min(1).optional(),
|
|
25
|
-
sourceType: sourceTypeSchema.optional(),
|
|
26
25
|
}).strict(),
|
|
27
26
|
z.object({
|
|
28
27
|
type: z.literal('remove-pending'),
|
|
29
28
|
amount: z.number().int().positive().optional(),
|
|
30
29
|
user: userRefSchema.optional(),
|
|
31
30
|
sourceId: z.string().min(1).optional(),
|
|
32
|
-
sourceType: sourceTypeSchema.optional(),
|
|
33
31
|
}).strict(),
|
|
34
32
|
z.object({
|
|
35
33
|
type: z.literal('add-active'),
|
|
36
34
|
amount: z.number().int().positive().optional(),
|
|
37
35
|
user: userRefSchema.optional(),
|
|
38
36
|
sourceId: z.string().min(1).optional(),
|
|
39
|
-
sourceType: sourceTypeSchema.optional(),
|
|
40
37
|
}).strict(),
|
|
41
38
|
z.object({
|
|
42
39
|
type: z.literal('create-project'),
|
|
43
40
|
amount: z.number().int().positive().optional(),
|
|
44
41
|
user: userRefSchema.optional(),
|
|
45
42
|
sourceId: z.string().min(1).optional(),
|
|
46
|
-
sourceType: sourceTypeSchema.optional(),
|
|
47
43
|
}).strict(),
|
|
48
44
|
z.object({
|
|
49
45
|
type: z.literal('convert-invite'),
|
|
50
46
|
amount: z.number().int().positive().optional(),
|
|
51
47
|
user: userRefSchema.optional(),
|
|
52
48
|
sourceId: z.string().min(1).optional(),
|
|
53
|
-
sourceType: sourceTypeSchema.optional(),
|
|
54
|
-
}).strict(),
|
|
55
|
-
z.object({
|
|
56
|
-
type: z.literal('accept-applicant'),
|
|
57
|
-
amount: z.number().int().positive().optional(),
|
|
58
|
-
user: userRefSchema.optional(),
|
|
59
|
-
sourceId: z.string().min(1).optional(),
|
|
60
|
-
sourceType: sourceTypeSchema.optional(),
|
|
61
49
|
}).strict(),
|
|
62
50
|
]);
|
|
63
51
|
// Re-export for convenience.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"share-operation.js","sourceRoot":"","sources":["../../src/schemas/share-operation.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EACL,eAAe,EACf,YAAY,GACb,MAAM,YAAY,CAAC;AAEpB,gFAAgF;AAChF,oEAAoE;AACpE,EAAE;AACF,oFAAoF;AACpF,0EAA0E;AAC1E,2EAA2E;AAC3E,EAAE;AACF,8BAA8B;AAC9B,+EAA+E;AAC/E,
|
|
1
|
+
{"version":3,"file":"share-operation.js","sourceRoot":"","sources":["../../src/schemas/share-operation.ts"],"names":[],"mappings":"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"}
|
|
@@ -17,11 +17,11 @@ export declare const UpdateInviteConfirmationInputSchema: z.ZodObject<{
|
|
|
17
17
|
inviteId: z.ZodString;
|
|
18
18
|
action: z.ZodEnum<["agree", "decline", "cancel", "retract"]>;
|
|
19
19
|
}, "strict", z.ZodTypeAny, {
|
|
20
|
-
inviteId: string;
|
|
21
20
|
action: "agree" | "decline" | "cancel" | "retract";
|
|
22
|
-
}, {
|
|
23
21
|
inviteId: string;
|
|
22
|
+
}, {
|
|
24
23
|
action: "agree" | "decline" | "cancel" | "retract";
|
|
24
|
+
inviteId: string;
|
|
25
25
|
}>;
|
|
26
26
|
export type UpdateInviteConfirmationInput = z.infer<typeof UpdateInviteConfirmationInputSchema>;
|
|
27
27
|
export declare const UpdateInviteSharesInputSchema: z.ZodObject<{
|
package/dist/types/index.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC;AAC1B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/types/index.ts"],"names":[],"mappings":"AAAA,cAAc,WAAW,CAAC;AAC1B,cAAc,cAAc,CAAC;AAC7B,cAAc,iBAAiB,CAAC;AAChC,cAAc,cAAc,CAAC;AAC7B,cAAc,aAAa,CAAC;AAC5B,cAAc,WAAW,CAAC;AAC1B,cAAc,gBAAgB,CAAC;AAC/B,cAAc,iBAAiB,CAAC;AAChC,cAAc,YAAY,CAAC;AAC3B,cAAc,aAAa,CAAC;AAC5B,cAAc,YAAY,CAAC;AAC3B,YAAY,EAAE,YAAY,EAAE,gBAAgB,EAAE,MAAM,kCAAkC,CAAC"}
|
package/dist/types/jobs.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import type { ShortProject } from './project.js';
|
|
2
|
+
import type { JobApplicationStatus } from '../schemas/jobs.js';
|
|
2
3
|
export type JobFile = {
|
|
3
4
|
pendingMediaId?: string;
|
|
4
5
|
name: string;
|
|
@@ -32,8 +33,11 @@ export type FullJobReply = {
|
|
|
32
33
|
uid: string;
|
|
33
34
|
};
|
|
34
35
|
createdOn: number;
|
|
35
|
-
status:
|
|
36
|
-
|
|
36
|
+
status: JobApplicationStatus;
|
|
37
|
+
inviteId?: string;
|
|
38
|
+
invitedOn?: number;
|
|
39
|
+
acceptedOn?: number;
|
|
40
|
+
rejectedAt?: number;
|
|
37
41
|
};
|
|
38
42
|
export type OpportunityType = 'SystemInput' | 'SponsoredProjects' | 'ProjectInput';
|
|
39
43
|
export type Opportunity = {
|
package/dist/types/jobs.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"jobs.d.ts","sourceRoot":"","sources":["../../src/types/jobs.ts"],"names":[],"mappings":"AAEA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,cAAc,CAAC;
|
|
1
|
+
{"version":3,"file":"jobs.d.ts","sourceRoot":"","sources":["../../src/types/jobs.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,3 +1,4 @@
|
|
|
1
|
+
import type { InviteSource } from '../schemas/project-management.js';
|
|
1
2
|
export interface ChatChannel {
|
|
2
3
|
channelId: string;
|
|
3
4
|
projectId: string;
|
|
@@ -33,6 +34,7 @@ export interface ProjectInviteConversation {
|
|
|
33
34
|
uid: string;
|
|
34
35
|
};
|
|
35
36
|
sharesOffered: number;
|
|
37
|
+
source: InviteSource;
|
|
36
38
|
status: 'pending' | 'accepted' | 'declined' | 'cancelled' | 'finalized' | 'error';
|
|
37
39
|
createdAt: number;
|
|
38
40
|
updatedAt: number;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"messaging.d.ts","sourceRoot":"","sources":["../../src/types/messaging.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"messaging.d.ts","sourceRoot":"","sources":["../../src/types/messaging.ts"],"names":[],"mappings":"AAMA,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,kCAAkC,CAAC;AAIrE,MAAM,WAAW,WAAW;IAC1B,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,aAAa,EAAE,MAAM,EAAE,CAAC;IACxB,cAAc,EAAE,MAAM,EAAE,CAAC;IACzB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,CAAC,EAAE,MAAM,CAAC;IACvB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,YAAY,EAAE,MAAM,CAAC;IACrB,UAAU,EAAE,OAAO,CAAC;CACrB;AAID,MAAM,WAAW,yBAAyB;IACxC,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE,MAAM,CAAC;IAClB,cAAc,EAAE,MAAM,EAAE,CAAC;IACzB,YAAY,EAAE,MAAM,CAAC;IACrB,OAAO,EAAE;QACP,SAAS,EAAE,MAAM,CAAC;QAClB,YAAY,EAAE,MAAM,CAAC;QACrB,IAAI,EAAE,MAAM,CAAC;QACb,kBAAkB,EAAE,MAAM,CAAC;KAC5B,CAAC;IACF,YAAY,EAAE;QAAE,GAAG,EAAE,MAAM,CAAA;KAAE,CAAC;IAC9B,MAAM,EAAE;QAAE,GAAG,EAAE,MAAM,CAAA;KAAE,CAAC;IACxB,SAAS,EAAE;QAAE,GAAG,EAAE,MAAM,CAAA;KAAE,CAAC;IAC3B,aAAa,EAAE,MAAM,CAAC;IACtB,MAAM,EAAE,YAAY,CAAC;IACrB,MAAM,EAAE,SAAS,GAAG,UAAU,GAAG,UAAU,GAAG,WAAW,GAAG,WAAW,GAAG,OAAO,CAAC;IAClF,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,eAAe,EAAE,OAAO,CAAC;IACzB,kBAAkB,EAAE,OAAO,CAAC;IAC5B,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,aAAa,CAAC,EAAE,MAAM,CAAC;CACxB;AAID,MAAM,WAAW,YAAY;IAC3B,SAAS,EAAE,MAAM,CAAC;IAClB,MAAM,EAAE,MAAM,CAAC;IACf,eAAe,EAAE,MAAM,CAAC;IACxB,WAAW,EAAE,MAAM,GAAG,OAAO,CAAC;IAC9B,OAAO,EAAE,MAAM,CAAC;IAChB,MAAM,EAAE,MAAM,GAAG,YAAY,GAAG,aAAa,GAAG,iBAAiB,GAAG,mBAAmB,CAAC;IACxF,SAAS,EAAE,MAAM,CAAC;IAClB,aAAa,EAAE,MAAM,CAAC;IACtB,WAAW,EAAE,OAAO,CAAC;IACrB,UAAU,EAAE,OAAO,CAAC;IACpB;;;;OAIG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB"}
|
package/dist/types/project.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"project.d.ts","sourceRoot":"","sources":["../../src/types/project.ts"],"names":[],"mappings":"AACA,YAAY,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAEtD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AACpD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAEtD,MAAM,MAAM,WAAW,GAAG;IACxB,GAAG,EAAE,MAAM,CAAC;IACZ,YAAY,EAAE,MAAM,CAAC;IACrB,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,WAAW,EAAE,MAAM,EAAE,CAAC;CACvB,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;IACZ,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE;QAAE,GAAG,EAAE,MAAM,CAAA;KAAE,CAAC;CAC5B,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG;IAC5B,CAAC,GAAG,EAAE,MAAM,GAAG;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,CAAA;KAAE,CAAC;CACxC,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG;IAClC,CAAC,GAAG,EAAE,MAAM,GAAG;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,CAAA;KAAE,CAAC;CACxC,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG;IAC1B,CAAC,QAAQ,EAAE,MAAM,GAAG;QAClB,MAAM,EAAE,MAAM,CAAC;QACf,
|
|
1
|
+
{"version":3,"file":"project.d.ts","sourceRoot":"","sources":["../../src/types/project.ts"],"names":[],"mappings":"AACA,YAAY,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAEtD,OAAO,KAAK,EAAE,eAAe,EAAE,MAAM,cAAc,CAAC;AACpD,OAAO,KAAK,EAAE,YAAY,EAAE,MAAM,mBAAmB,CAAC;AAEtD,MAAM,MAAM,WAAW,GAAG;IACxB,GAAG,EAAE,MAAM,CAAC;IACZ,YAAY,EAAE,MAAM,CAAC;IACrB,KAAK,EAAE,MAAM,EAAE,CAAC;IAChB,WAAW,EAAE,MAAM,EAAE,CAAC;CACvB,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG;IACxB,EAAE,EAAE,MAAM,CAAC;IACX,IAAI,EAAE,MAAM,CAAC;IACb,GAAG,EAAE,MAAM,CAAC;IACZ,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,IAAI,EAAE,MAAM,CAAC;IACb,SAAS,EAAE;QAAE,GAAG,EAAE,MAAM,CAAA;KAAE,CAAC;CAC5B,CAAC;AAEF,MAAM,MAAM,eAAe,GAAG;IAC5B,CAAC,GAAG,EAAE,MAAM,GAAG;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,CAAA;KAAE,CAAC;CACxC,CAAC;AAEF,MAAM,MAAM,qBAAqB,GAAG;IAClC,CAAC,GAAG,EAAE,MAAM,GAAG;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,CAAA;KAAE,CAAC;CACxC,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG;IAC1B,CAAC,QAAQ,EAAE,MAAM,GAAG;QAClB,MAAM,EAAE,MAAM,CAAC;QACf,SAAS,EAAE,MAAM,CAAC;KACnB,CAAC;CACH,CAAC;AAEF,MAAM,MAAM,WAAW,GAAG;IACxB,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,kBAAkB,EAAE,MAAM,CAAC;IAC3B,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW,EAAE,eAAe,CAAC;IAC7B,SAAS,EAAE;QAAE,GAAG,EAAE,MAAM,CAAA;KAAE,CAAC;IAC3B,OAAO,EAAE;QAAE,GAAG,EAAE,MAAM,CAAA;KAAE,CAAC;IACzB,MAAM,EAAE,MAAM,GAAG,qBAAqB,GAAG,WAAW,GAAG,UAAU,CAAC;IAClE,WAAW,CAAC,EAAE,WAAW,EAAE,CAAC;IAC5B,aAAa,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;IAC3C,cAAc,CAAC,EAAE;QAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;KAAE,CAAC;IAC5C,KAAK,CAAC,EAAE,eAAe,CAAC;IACxB,aAAa,CAAC,EAAE,qBAAqB,CAAC;IACtC,KAAK,CAAC,EAAE,WAAW,EAAE,CAAC;IACtB,UAAU,CAAC,EAAE,MAAM,CAAC;IACpB,MAAM,CAAC,EAAE,aAAa,GAAG,kBAAkB,GAAG,YAAY,CAAC;IAC3D,aAAa,CAAC,EAAE,aAAa,CAAC;CAC/B,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG;IAC1B,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE,MAAM,CAAC;IAClB,IAAI,EAAE,MAAM,CAAC;IACb,YAAY,EAAE,MAAM,CAAC;IACrB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,OAAO,EAAE;QAAE,GAAG,EAAE,MAAM,CAAA;KAAE,CAAC;IACzB,aAAa,EAAE,MAAM,CAAC;IACtB,SAAS,EAAE,MAAM,CAAC;CACnB,CAAC;AAEF,MAAM,MAAM,QAAQ,GAAG;IACrB,UAAU,EAAE,MAAM,CAAC;IACnB,YAAY,EAAE,MAAM,CAAC;IACrB,kBAAkB,EAAE,MAAM,CAAC;IAC3B,SAAS,EAAE,MAAM,CAAC;IAClB,SAAS,EAAE;QAAE,GAAG,EAAE,MAAM,CAAA;KAAE,CAAC;IAC3B,OAAO,EAAE;QAAE,GAAG,EAAE,MAAM,CAAA;KAAE,CAAC;IACzB,IAAI,EAAE,MAAM,CAAC;IACb,UAAU,EAAE,MAAM,EAAE,CAAC;CACtB,CAAC;AAEF,MAAM,MAAM,iBAAiB,GAAG;IAC9B,MAAM,EAAE,MAAM,CAAC;CAChB,CAAC;AAEF,MAAM,MAAM,aAAa,GAAG;IAC1B,QAAQ,EAAE,MAAM,CAAC;IACjB,SAAS,EAAE;QAAE,GAAG,EAAE,MAAM,CAAA;KAAE,CAAC;IAC3B,SAAS,EAAE,MAAM,CAAC;IAClB,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,YAAY,CAAC;IACtB,MAAM,EAAE,SAAS,GAAG,UAAU,GAAG,UAAU,CAAC;IAC5C,aAAa,EAAE,MAAM,CAAC;CACvB,CAAC;AAKF,YAAY,EAAE,cAAc,EAAE,kBAAkB,EAAE,MAAM,+BAA+B,CAAC"}
|