expo-backend-types 0.50.0-EXPO-349-Ricardo-Fort.2 → 0.51.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/src/account/dto/get-global-filter.dto.d.ts +10 -8
- package/dist/src/account/dto/get-me.dto.d.ts +20 -16
- package/dist/src/account/dto/update-global-filter.dto.d.ts +10 -8
- package/dist/src/event/dto/get-all-event.dto.d.ts +236 -232
- package/dist/src/event/dto/get-all-event.dto.js +1 -1
- package/dist/src/event/dto/get-all-statistics.dto.d.ts +20 -20
- package/dist/src/event/dto/get-by-id-event.dto.d.ts +136 -126
- package/dist/src/event/dto/get-by-id-event.dto.js +1 -1
- package/dist/src/event/dto/get-statistics-by-id-event.dto.d.ts +20 -20
- package/dist/src/event/dto/update-event.dto.d.ts +10 -8
- package/dist/src/exports.d.ts +1 -0
- package/dist/src/exports.js +1 -0
- package/dist/src/i18n/es.d.ts +57 -0
- package/dist/src/i18n/es.js +57 -0
- package/dist/src/i18n/es.js.map +1 -1
- package/dist/src/production/dto/create-production.dto.d.ts +41 -0
- package/dist/src/production/dto/create-production.dto.js +18 -0
- package/dist/src/production/dto/create-role.dto.d.ts +86 -0
- package/dist/src/production/dto/create-role.dto.js +16 -0
- package/dist/src/production/dto/delete-production.dto.d.ts +41 -0
- package/dist/src/production/dto/delete-production.dto.js +10 -0
- package/dist/src/production/dto/get-all-production.dto.d.ts +451 -0
- package/dist/src/production/dto/get-all-production.dto.js +21 -0
- package/dist/src/production/dto/production.dto.d.ts +20 -0
- package/dist/src/production/dto/production.dto.js +21 -0
- package/dist/src/production/dto/update-production.dto.d.ts +63 -0
- package/dist/src/production/dto/update-production.dto.js +19 -0
- package/dist/src/production/exports.d.ts +6 -0
- package/dist/src/production/exports.js +23 -0
- package/dist/src/production-affiliation-request/dto/create-production-affiliation-request.dto.d.ts +80 -0
- package/dist/src/production-affiliation-request/dto/create-production-affiliation-request.dto.js +16 -0
- package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.d.ts +563 -0
- package/dist/src/production-affiliation-request/dto/find-by-production-affiliation-request.dto.js +21 -0
- package/dist/src/production-affiliation-request/dto/production-affiliation-request.dto.d.ts +27 -0
- package/dist/src/production-affiliation-request/dto/production-affiliation-request.dto.js +22 -0
- package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.d.ts +390 -0
- package/dist/src/production-affiliation-request/dto/update-production-affiliation-request.dto.js +15 -0
- package/dist/src/production-affiliation-request/exports.d.ts +4 -0
- package/dist/src/production-affiliation-request/exports.js +21 -0
- package/dist/src/profile/dto/find-all-profile.dto.d.ts +14 -12
- package/dist/src/profile/dto/find-by-date-range-profile.dto.d.ts +24 -20
- package/dist/src/profile/dto/find-by-id-profile.dto.d.ts +10 -8
- package/dist/src/profile/dto/find-by-tag-groups-profile.dto.d.ts +14 -12
- package/dist/src/profile/dto/find-by-tags-profile.dto.d.ts +14 -12
- package/dist/src/profile/dto/find-with-active-chat.dto.d.ts +14 -12
- package/dist/src/tag/dto/create-tag.dto.d.ts +41 -9
- package/dist/src/tag/dto/create-tag.dto.js +6 -5
- package/dist/src/tag/dto/delete-tag.dto.d.ts +6 -4
- package/dist/src/tag/dto/find-all-tag.dto.d.ts +10 -8
- package/dist/src/tag/dto/find-by-group-tag.dto.d.ts +10 -8
- package/dist/src/tag/dto/find-one-tag.dto.d.ts +6 -4
- package/dist/src/tag/dto/tag.dto.d.ts +6 -4
- package/dist/src/tag/dto/update-tag.dto.d.ts +7 -4
- package/dist/src/tag-group/dto/find-all-tag-group.dto.d.ts +14 -12
- package/dist/src/tag-group/dto/find-all-with-tags.dto.d.ts +14 -12
- package/dist/src/tag-group/dto/find-one-tag-group.dto.d.ts +10 -8
- package/dist/types/prisma-schema/edge.js +32 -5
- package/dist/types/prisma-schema/index-browser.js +29 -2
- package/dist/types/prisma-schema/index.d.ts +4879 -290
- package/dist/types/prisma-schema/index.js +32 -5
- package/dist/types/prisma-schema/package.json +1 -1
- package/dist/types/prisma-schema/schema.prisma +54 -4
- package/dist/types/prisma-schema/wasm.js +29 -2
- package/dist/types/schema.d.ts +607 -28
- package/package.json +1 -1
@@ -108,7 +108,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
108
108
|
tagConfirmedId: string;
|
109
109
|
supraEventId: string | null;
|
110
110
|
}>, "many">;
|
111
|
-
|
111
|
+
profileTags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<Pick<{
|
112
112
|
id: z.ZodString;
|
113
113
|
name: z.ZodString;
|
114
114
|
groupId: z.ZodString;
|
@@ -117,6 +117,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
117
117
|
EVENT: "EVENT";
|
118
118
|
PARTICIPANT: "PARTICIPANT";
|
119
119
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
120
|
+
PRODUCTION_ROLE: "PRODUCTION_ROLE";
|
120
121
|
}>;
|
121
122
|
created_at: z.ZodDate;
|
122
123
|
updated_at: z.ZodDate;
|
@@ -142,7 +143,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
142
143
|
}>, "strip", z.ZodTypeAny, {
|
143
144
|
id: string;
|
144
145
|
name: string;
|
145
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
146
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
146
147
|
group: {
|
147
148
|
id: string;
|
148
149
|
name: string;
|
@@ -152,7 +153,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
152
153
|
}, {
|
153
154
|
id: string;
|
154
155
|
name: string;
|
155
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
156
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
156
157
|
group: {
|
157
158
|
id: string;
|
158
159
|
name: string;
|
@@ -200,17 +201,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
200
201
|
created_at: Date;
|
201
202
|
updated_at: Date;
|
202
203
|
active: boolean;
|
203
|
-
tags: {
|
204
|
-
id: string;
|
205
|
-
name: string;
|
206
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
207
|
-
group: {
|
208
|
-
id: string;
|
209
|
-
name: string;
|
210
|
-
color: string;
|
211
|
-
isExclusive: boolean;
|
212
|
-
};
|
213
|
-
}[];
|
214
204
|
folderId: string | null;
|
215
205
|
tagAssistedId: string;
|
216
206
|
tagConfirmedId: string;
|
@@ -251,6 +241,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
251
241
|
tagConfirmedId: string;
|
252
242
|
supraEventId: string | null;
|
253
243
|
} | null;
|
244
|
+
profileTags: {
|
245
|
+
id: string;
|
246
|
+
name: string;
|
247
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
248
|
+
group: {
|
249
|
+
id: string;
|
250
|
+
name: string;
|
251
|
+
color: string;
|
252
|
+
isExclusive: boolean;
|
253
|
+
};
|
254
|
+
}[];
|
254
255
|
}, {
|
255
256
|
location: string;
|
256
257
|
id: string;
|
@@ -261,17 +262,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
261
262
|
created_at: Date;
|
262
263
|
updated_at: Date;
|
263
264
|
active: boolean;
|
264
|
-
tags: {
|
265
|
-
id: string;
|
266
|
-
name: string;
|
267
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
268
|
-
group: {
|
269
|
-
id: string;
|
270
|
-
name: string;
|
271
|
-
color: string;
|
272
|
-
isExclusive: boolean;
|
273
|
-
};
|
274
|
-
}[];
|
275
265
|
folderId: string | null;
|
276
266
|
tagAssistedId: string;
|
277
267
|
tagConfirmedId: string;
|
@@ -312,6 +302,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
312
302
|
tagConfirmedId: string;
|
313
303
|
supraEventId: string | null;
|
314
304
|
} | null;
|
305
|
+
profileTags: {
|
306
|
+
id: string;
|
307
|
+
name: string;
|
308
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
309
|
+
group: {
|
310
|
+
id: string;
|
311
|
+
name: string;
|
312
|
+
color: string;
|
313
|
+
isExclusive: boolean;
|
314
|
+
};
|
315
|
+
}[];
|
315
316
|
}>, "many">;
|
316
317
|
}>, "strip", z.ZodTypeAny, {
|
317
318
|
id: string;
|
@@ -329,17 +330,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
329
330
|
created_at: Date;
|
330
331
|
updated_at: Date;
|
331
332
|
active: boolean;
|
332
|
-
tags: {
|
333
|
-
id: string;
|
334
|
-
name: string;
|
335
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
336
|
-
group: {
|
337
|
-
id: string;
|
338
|
-
name: string;
|
339
|
-
color: string;
|
340
|
-
isExclusive: boolean;
|
341
|
-
};
|
342
|
-
}[];
|
343
333
|
folderId: string | null;
|
344
334
|
tagAssistedId: string;
|
345
335
|
tagConfirmedId: string;
|
@@ -380,6 +370,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
380
370
|
tagConfirmedId: string;
|
381
371
|
supraEventId: string | null;
|
382
372
|
} | null;
|
373
|
+
profileTags: {
|
374
|
+
id: string;
|
375
|
+
name: string;
|
376
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
377
|
+
group: {
|
378
|
+
id: string;
|
379
|
+
name: string;
|
380
|
+
color: string;
|
381
|
+
isExclusive: boolean;
|
382
|
+
};
|
383
|
+
}[];
|
383
384
|
}[];
|
384
385
|
}, {
|
385
386
|
id: string;
|
@@ -397,17 +398,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
397
398
|
created_at: Date;
|
398
399
|
updated_at: Date;
|
399
400
|
active: boolean;
|
400
|
-
tags: {
|
401
|
-
id: string;
|
402
|
-
name: string;
|
403
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
404
|
-
group: {
|
405
|
-
id: string;
|
406
|
-
name: string;
|
407
|
-
color: string;
|
408
|
-
isExclusive: boolean;
|
409
|
-
};
|
410
|
-
}[];
|
411
401
|
folderId: string | null;
|
412
402
|
tagAssistedId: string;
|
413
403
|
tagConfirmedId: string;
|
@@ -448,6 +438,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
448
438
|
tagConfirmedId: string;
|
449
439
|
supraEventId: string | null;
|
450
440
|
} | null;
|
441
|
+
profileTags: {
|
442
|
+
id: string;
|
443
|
+
name: string;
|
444
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
445
|
+
group: {
|
446
|
+
id: string;
|
447
|
+
name: string;
|
448
|
+
color: string;
|
449
|
+
isExclusive: boolean;
|
450
|
+
};
|
451
|
+
}[];
|
451
452
|
}[];
|
452
453
|
}>, "many">;
|
453
454
|
withoutFolder: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<{
|
@@ -551,7 +552,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
551
552
|
tagConfirmedId: string;
|
552
553
|
supraEventId: string | null;
|
553
554
|
}>, "many">;
|
554
|
-
|
555
|
+
profileTags: z.ZodArray<z.ZodObject<z.objectUtil.extendShape<Pick<{
|
555
556
|
id: z.ZodString;
|
556
557
|
name: z.ZodString;
|
557
558
|
groupId: z.ZodString;
|
@@ -560,6 +561,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
560
561
|
EVENT: "EVENT";
|
561
562
|
PARTICIPANT: "PARTICIPANT";
|
562
563
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
564
|
+
PRODUCTION_ROLE: "PRODUCTION_ROLE";
|
563
565
|
}>;
|
564
566
|
created_at: z.ZodDate;
|
565
567
|
updated_at: z.ZodDate;
|
@@ -585,7 +587,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
585
587
|
}>, "strip", z.ZodTypeAny, {
|
586
588
|
id: string;
|
587
589
|
name: string;
|
588
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
590
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
589
591
|
group: {
|
590
592
|
id: string;
|
591
593
|
name: string;
|
@@ -595,7 +597,7 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
595
597
|
}, {
|
596
598
|
id: string;
|
597
599
|
name: string;
|
598
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
600
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
599
601
|
group: {
|
600
602
|
id: string;
|
601
603
|
name: string;
|
@@ -643,17 +645,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
643
645
|
created_at: Date;
|
644
646
|
updated_at: Date;
|
645
647
|
active: boolean;
|
646
|
-
tags: {
|
647
|
-
id: string;
|
648
|
-
name: string;
|
649
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
650
|
-
group: {
|
651
|
-
id: string;
|
652
|
-
name: string;
|
653
|
-
color: string;
|
654
|
-
isExclusive: boolean;
|
655
|
-
};
|
656
|
-
}[];
|
657
648
|
folderId: string | null;
|
658
649
|
tagAssistedId: string;
|
659
650
|
tagConfirmedId: string;
|
@@ -694,6 +685,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
694
685
|
tagConfirmedId: string;
|
695
686
|
supraEventId: string | null;
|
696
687
|
} | null;
|
688
|
+
profileTags: {
|
689
|
+
id: string;
|
690
|
+
name: string;
|
691
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
692
|
+
group: {
|
693
|
+
id: string;
|
694
|
+
name: string;
|
695
|
+
color: string;
|
696
|
+
isExclusive: boolean;
|
697
|
+
};
|
698
|
+
}[];
|
697
699
|
}, {
|
698
700
|
location: string;
|
699
701
|
id: string;
|
@@ -704,17 +706,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
704
706
|
created_at: Date;
|
705
707
|
updated_at: Date;
|
706
708
|
active: boolean;
|
707
|
-
tags: {
|
708
|
-
id: string;
|
709
|
-
name: string;
|
710
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
711
|
-
group: {
|
712
|
-
id: string;
|
713
|
-
name: string;
|
714
|
-
color: string;
|
715
|
-
isExclusive: boolean;
|
716
|
-
};
|
717
|
-
}[];
|
718
709
|
folderId: string | null;
|
719
710
|
tagAssistedId: string;
|
720
711
|
tagConfirmedId: string;
|
@@ -755,6 +746,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
755
746
|
tagConfirmedId: string;
|
756
747
|
supraEventId: string | null;
|
757
748
|
} | null;
|
749
|
+
profileTags: {
|
750
|
+
id: string;
|
751
|
+
name: string;
|
752
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
753
|
+
group: {
|
754
|
+
id: string;
|
755
|
+
name: string;
|
756
|
+
color: string;
|
757
|
+
isExclusive: boolean;
|
758
|
+
};
|
759
|
+
}[];
|
758
760
|
}>, "many">;
|
759
761
|
}, "strip", z.ZodTypeAny, {
|
760
762
|
folders: {
|
@@ -773,17 +775,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
773
775
|
created_at: Date;
|
774
776
|
updated_at: Date;
|
775
777
|
active: boolean;
|
776
|
-
tags: {
|
777
|
-
id: string;
|
778
|
-
name: string;
|
779
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
780
|
-
group: {
|
781
|
-
id: string;
|
782
|
-
name: string;
|
783
|
-
color: string;
|
784
|
-
isExclusive: boolean;
|
785
|
-
};
|
786
|
-
}[];
|
787
778
|
folderId: string | null;
|
788
779
|
tagAssistedId: string;
|
789
780
|
tagConfirmedId: string;
|
@@ -824,6 +815,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
824
815
|
tagConfirmedId: string;
|
825
816
|
supraEventId: string | null;
|
826
817
|
} | null;
|
818
|
+
profileTags: {
|
819
|
+
id: string;
|
820
|
+
name: string;
|
821
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
822
|
+
group: {
|
823
|
+
id: string;
|
824
|
+
name: string;
|
825
|
+
color: string;
|
826
|
+
isExclusive: boolean;
|
827
|
+
};
|
828
|
+
}[];
|
827
829
|
}[];
|
828
830
|
}[];
|
829
831
|
withoutFolder: {
|
@@ -836,17 +838,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
836
838
|
created_at: Date;
|
837
839
|
updated_at: Date;
|
838
840
|
active: boolean;
|
839
|
-
tags: {
|
840
|
-
id: string;
|
841
|
-
name: string;
|
842
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
843
|
-
group: {
|
844
|
-
id: string;
|
845
|
-
name: string;
|
846
|
-
color: string;
|
847
|
-
isExclusive: boolean;
|
848
|
-
};
|
849
|
-
}[];
|
850
841
|
folderId: string | null;
|
851
842
|
tagAssistedId: string;
|
852
843
|
tagConfirmedId: string;
|
@@ -887,6 +878,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
887
878
|
tagConfirmedId: string;
|
888
879
|
supraEventId: string | null;
|
889
880
|
} | null;
|
881
|
+
profileTags: {
|
882
|
+
id: string;
|
883
|
+
name: string;
|
884
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
885
|
+
group: {
|
886
|
+
id: string;
|
887
|
+
name: string;
|
888
|
+
color: string;
|
889
|
+
isExclusive: boolean;
|
890
|
+
};
|
891
|
+
}[];
|
890
892
|
}[];
|
891
893
|
}, {
|
892
894
|
folders: {
|
@@ -905,17 +907,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
905
907
|
created_at: Date;
|
906
908
|
updated_at: Date;
|
907
909
|
active: boolean;
|
908
|
-
tags: {
|
909
|
-
id: string;
|
910
|
-
name: string;
|
911
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
912
|
-
group: {
|
913
|
-
id: string;
|
914
|
-
name: string;
|
915
|
-
color: string;
|
916
|
-
isExclusive: boolean;
|
917
|
-
};
|
918
|
-
}[];
|
919
910
|
folderId: string | null;
|
920
911
|
tagAssistedId: string;
|
921
912
|
tagConfirmedId: string;
|
@@ -956,6 +947,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
956
947
|
tagConfirmedId: string;
|
957
948
|
supraEventId: string | null;
|
958
949
|
} | null;
|
950
|
+
profileTags: {
|
951
|
+
id: string;
|
952
|
+
name: string;
|
953
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
954
|
+
group: {
|
955
|
+
id: string;
|
956
|
+
name: string;
|
957
|
+
color: string;
|
958
|
+
isExclusive: boolean;
|
959
|
+
};
|
960
|
+
}[];
|
959
961
|
}[];
|
960
962
|
}[];
|
961
963
|
withoutFolder: {
|
@@ -968,17 +970,6 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
968
970
|
created_at: Date;
|
969
971
|
updated_at: Date;
|
970
972
|
active: boolean;
|
971
|
-
tags: {
|
972
|
-
id: string;
|
973
|
-
name: string;
|
974
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
975
|
-
group: {
|
976
|
-
id: string;
|
977
|
-
name: string;
|
978
|
-
color: string;
|
979
|
-
isExclusive: boolean;
|
980
|
-
};
|
981
|
-
}[];
|
982
973
|
folderId: string | null;
|
983
974
|
tagAssistedId: string;
|
984
975
|
tagConfirmedId: string;
|
@@ -1019,6 +1010,17 @@ export declare const getAllEventsResponseSchema: z.ZodObject<{
|
|
1019
1010
|
tagConfirmedId: string;
|
1020
1011
|
supraEventId: string | null;
|
1021
1012
|
} | null;
|
1013
|
+
profileTags: {
|
1014
|
+
id: string;
|
1015
|
+
name: string;
|
1016
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1017
|
+
group: {
|
1018
|
+
id: string;
|
1019
|
+
name: string;
|
1020
|
+
color: string;
|
1021
|
+
isExclusive: boolean;
|
1022
|
+
};
|
1023
|
+
}[];
|
1022
1024
|
}[];
|
1023
1025
|
}>;
|
1024
1026
|
declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDtoStatic<z.ZodObject<{
|
@@ -1128,7 +1130,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1128
1130
|
tagConfirmedId: string;
|
1129
1131
|
supraEventId: string | null;
|
1130
1132
|
}>, "many">;
|
1131
|
-
|
1133
|
+
profileTags: z.ZodArray<z.ZodObject<{
|
1132
1134
|
id: z.ZodString;
|
1133
1135
|
name: z.ZodString;
|
1134
1136
|
type: z.ZodNativeEnum<{
|
@@ -1136,6 +1138,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1136
1138
|
EVENT: "EVENT";
|
1137
1139
|
PARTICIPANT: "PARTICIPANT";
|
1138
1140
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
1141
|
+
PRODUCTION_ROLE: "PRODUCTION_ROLE";
|
1139
1142
|
}>;
|
1140
1143
|
group: z.ZodObject<{
|
1141
1144
|
id: z.ZodString;
|
@@ -1156,7 +1159,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1156
1159
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
1157
1160
|
id: string;
|
1158
1161
|
name: string;
|
1159
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1162
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1160
1163
|
group: {
|
1161
1164
|
id: string;
|
1162
1165
|
name: string;
|
@@ -1166,7 +1169,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1166
1169
|
}, {
|
1167
1170
|
id: string;
|
1168
1171
|
name: string;
|
1169
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1172
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1170
1173
|
group: {
|
1171
1174
|
id: string;
|
1172
1175
|
name: string;
|
@@ -1214,17 +1217,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1214
1217
|
created_at: string;
|
1215
1218
|
updated_at: string;
|
1216
1219
|
active: boolean;
|
1217
|
-
tags: {
|
1218
|
-
id: string;
|
1219
|
-
name: string;
|
1220
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1221
|
-
group: {
|
1222
|
-
id: string;
|
1223
|
-
name: string;
|
1224
|
-
color: string;
|
1225
|
-
isExclusive: boolean;
|
1226
|
-
};
|
1227
|
-
}[];
|
1228
1220
|
folderId: string | null;
|
1229
1221
|
tagAssistedId: string;
|
1230
1222
|
tagConfirmedId: string;
|
@@ -1265,6 +1257,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1265
1257
|
tagConfirmedId: string;
|
1266
1258
|
supraEventId: string | null;
|
1267
1259
|
} | null;
|
1260
|
+
profileTags: {
|
1261
|
+
id: string;
|
1262
|
+
name: string;
|
1263
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1264
|
+
group: {
|
1265
|
+
id: string;
|
1266
|
+
name: string;
|
1267
|
+
color: string;
|
1268
|
+
isExclusive: boolean;
|
1269
|
+
};
|
1270
|
+
}[];
|
1268
1271
|
}, {
|
1269
1272
|
location: string;
|
1270
1273
|
id: string;
|
@@ -1275,17 +1278,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1275
1278
|
created_at: string;
|
1276
1279
|
updated_at: string;
|
1277
1280
|
active: boolean;
|
1278
|
-
tags: {
|
1279
|
-
id: string;
|
1280
|
-
name: string;
|
1281
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1282
|
-
group: {
|
1283
|
-
id: string;
|
1284
|
-
name: string;
|
1285
|
-
color: string;
|
1286
|
-
isExclusive: boolean;
|
1287
|
-
};
|
1288
|
-
}[];
|
1289
1281
|
folderId: string | null;
|
1290
1282
|
tagAssistedId: string;
|
1291
1283
|
tagConfirmedId: string;
|
@@ -1326,6 +1318,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1326
1318
|
tagConfirmedId: string;
|
1327
1319
|
supraEventId: string | null;
|
1328
1320
|
} | null;
|
1321
|
+
profileTags: {
|
1322
|
+
id: string;
|
1323
|
+
name: string;
|
1324
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1325
|
+
group: {
|
1326
|
+
id: string;
|
1327
|
+
name: string;
|
1328
|
+
color: string;
|
1329
|
+
isExclusive: boolean;
|
1330
|
+
};
|
1331
|
+
}[];
|
1329
1332
|
}>, "many">;
|
1330
1333
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
1331
1334
|
id: string;
|
@@ -1343,17 +1346,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1343
1346
|
created_at: string;
|
1344
1347
|
updated_at: string;
|
1345
1348
|
active: boolean;
|
1346
|
-
tags: {
|
1347
|
-
id: string;
|
1348
|
-
name: string;
|
1349
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1350
|
-
group: {
|
1351
|
-
id: string;
|
1352
|
-
name: string;
|
1353
|
-
color: string;
|
1354
|
-
isExclusive: boolean;
|
1355
|
-
};
|
1356
|
-
}[];
|
1357
1349
|
folderId: string | null;
|
1358
1350
|
tagAssistedId: string;
|
1359
1351
|
tagConfirmedId: string;
|
@@ -1394,6 +1386,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1394
1386
|
tagConfirmedId: string;
|
1395
1387
|
supraEventId: string | null;
|
1396
1388
|
} | null;
|
1389
|
+
profileTags: {
|
1390
|
+
id: string;
|
1391
|
+
name: string;
|
1392
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1393
|
+
group: {
|
1394
|
+
id: string;
|
1395
|
+
name: string;
|
1396
|
+
color: string;
|
1397
|
+
isExclusive: boolean;
|
1398
|
+
};
|
1399
|
+
}[];
|
1397
1400
|
}[];
|
1398
1401
|
}, {
|
1399
1402
|
id: string;
|
@@ -1411,17 +1414,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1411
1414
|
created_at: string;
|
1412
1415
|
updated_at: string;
|
1413
1416
|
active: boolean;
|
1414
|
-
tags: {
|
1415
|
-
id: string;
|
1416
|
-
name: string;
|
1417
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1418
|
-
group: {
|
1419
|
-
id: string;
|
1420
|
-
name: string;
|
1421
|
-
color: string;
|
1422
|
-
isExclusive: boolean;
|
1423
|
-
};
|
1424
|
-
}[];
|
1425
1417
|
folderId: string | null;
|
1426
1418
|
tagAssistedId: string;
|
1427
1419
|
tagConfirmedId: string;
|
@@ -1462,6 +1454,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1462
1454
|
tagConfirmedId: string;
|
1463
1455
|
supraEventId: string | null;
|
1464
1456
|
} | null;
|
1457
|
+
profileTags: {
|
1458
|
+
id: string;
|
1459
|
+
name: string;
|
1460
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1461
|
+
group: {
|
1462
|
+
id: string;
|
1463
|
+
name: string;
|
1464
|
+
color: string;
|
1465
|
+
isExclusive: boolean;
|
1466
|
+
};
|
1467
|
+
}[];
|
1465
1468
|
}[];
|
1466
1469
|
}>, "many">;
|
1467
1470
|
withoutFolder: z.ZodArray<z.ZodObject<{
|
@@ -1564,7 +1567,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1564
1567
|
tagConfirmedId: string;
|
1565
1568
|
supraEventId: string | null;
|
1566
1569
|
}>, "many">;
|
1567
|
-
|
1570
|
+
profileTags: z.ZodArray<z.ZodObject<{
|
1568
1571
|
id: z.ZodString;
|
1569
1572
|
name: z.ZodString;
|
1570
1573
|
type: z.ZodNativeEnum<{
|
@@ -1572,6 +1575,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1572
1575
|
EVENT: "EVENT";
|
1573
1576
|
PARTICIPANT: "PARTICIPANT";
|
1574
1577
|
NOT_IN_SYSTEM: "NOT_IN_SYSTEM";
|
1578
|
+
PRODUCTION_ROLE: "PRODUCTION_ROLE";
|
1575
1579
|
}>;
|
1576
1580
|
group: z.ZodObject<{
|
1577
1581
|
id: z.ZodString;
|
@@ -1592,7 +1596,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1592
1596
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
1593
1597
|
id: string;
|
1594
1598
|
name: string;
|
1595
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1599
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1596
1600
|
group: {
|
1597
1601
|
id: string;
|
1598
1602
|
name: string;
|
@@ -1602,7 +1606,7 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1602
1606
|
}, {
|
1603
1607
|
id: string;
|
1604
1608
|
name: string;
|
1605
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1609
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1606
1610
|
group: {
|
1607
1611
|
id: string;
|
1608
1612
|
name: string;
|
@@ -1650,17 +1654,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1650
1654
|
created_at: string;
|
1651
1655
|
updated_at: string;
|
1652
1656
|
active: boolean;
|
1653
|
-
tags: {
|
1654
|
-
id: string;
|
1655
|
-
name: string;
|
1656
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1657
|
-
group: {
|
1658
|
-
id: string;
|
1659
|
-
name: string;
|
1660
|
-
color: string;
|
1661
|
-
isExclusive: boolean;
|
1662
|
-
};
|
1663
|
-
}[];
|
1664
1657
|
folderId: string | null;
|
1665
1658
|
tagAssistedId: string;
|
1666
1659
|
tagConfirmedId: string;
|
@@ -1701,6 +1694,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1701
1694
|
tagConfirmedId: string;
|
1702
1695
|
supraEventId: string | null;
|
1703
1696
|
} | null;
|
1697
|
+
profileTags: {
|
1698
|
+
id: string;
|
1699
|
+
name: string;
|
1700
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1701
|
+
group: {
|
1702
|
+
id: string;
|
1703
|
+
name: string;
|
1704
|
+
color: string;
|
1705
|
+
isExclusive: boolean;
|
1706
|
+
};
|
1707
|
+
}[];
|
1704
1708
|
}, {
|
1705
1709
|
location: string;
|
1706
1710
|
id: string;
|
@@ -1711,17 +1715,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1711
1715
|
created_at: string;
|
1712
1716
|
updated_at: string;
|
1713
1717
|
active: boolean;
|
1714
|
-
tags: {
|
1715
|
-
id: string;
|
1716
|
-
name: string;
|
1717
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1718
|
-
group: {
|
1719
|
-
id: string;
|
1720
|
-
name: string;
|
1721
|
-
color: string;
|
1722
|
-
isExclusive: boolean;
|
1723
|
-
};
|
1724
|
-
}[];
|
1725
1718
|
folderId: string | null;
|
1726
1719
|
tagAssistedId: string;
|
1727
1720
|
tagConfirmedId: string;
|
@@ -1762,6 +1755,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1762
1755
|
tagConfirmedId: string;
|
1763
1756
|
supraEventId: string | null;
|
1764
1757
|
} | null;
|
1758
|
+
profileTags: {
|
1759
|
+
id: string;
|
1760
|
+
name: string;
|
1761
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1762
|
+
group: {
|
1763
|
+
id: string;
|
1764
|
+
name: string;
|
1765
|
+
color: string;
|
1766
|
+
isExclusive: boolean;
|
1767
|
+
};
|
1768
|
+
}[];
|
1765
1769
|
}>, "many">;
|
1766
1770
|
}, z.UnknownKeysParam, z.ZodTypeAny, {
|
1767
1771
|
folders: {
|
@@ -1780,17 +1784,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1780
1784
|
created_at: string;
|
1781
1785
|
updated_at: string;
|
1782
1786
|
active: boolean;
|
1783
|
-
tags: {
|
1784
|
-
id: string;
|
1785
|
-
name: string;
|
1786
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1787
|
-
group: {
|
1788
|
-
id: string;
|
1789
|
-
name: string;
|
1790
|
-
color: string;
|
1791
|
-
isExclusive: boolean;
|
1792
|
-
};
|
1793
|
-
}[];
|
1794
1787
|
folderId: string | null;
|
1795
1788
|
tagAssistedId: string;
|
1796
1789
|
tagConfirmedId: string;
|
@@ -1831,6 +1824,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1831
1824
|
tagConfirmedId: string;
|
1832
1825
|
supraEventId: string | null;
|
1833
1826
|
} | null;
|
1827
|
+
profileTags: {
|
1828
|
+
id: string;
|
1829
|
+
name: string;
|
1830
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1831
|
+
group: {
|
1832
|
+
id: string;
|
1833
|
+
name: string;
|
1834
|
+
color: string;
|
1835
|
+
isExclusive: boolean;
|
1836
|
+
};
|
1837
|
+
}[];
|
1834
1838
|
}[];
|
1835
1839
|
}[];
|
1836
1840
|
withoutFolder: {
|
@@ -1843,17 +1847,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1843
1847
|
created_at: string;
|
1844
1848
|
updated_at: string;
|
1845
1849
|
active: boolean;
|
1846
|
-
tags: {
|
1847
|
-
id: string;
|
1848
|
-
name: string;
|
1849
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1850
|
-
group: {
|
1851
|
-
id: string;
|
1852
|
-
name: string;
|
1853
|
-
color: string;
|
1854
|
-
isExclusive: boolean;
|
1855
|
-
};
|
1856
|
-
}[];
|
1857
1850
|
folderId: string | null;
|
1858
1851
|
tagAssistedId: string;
|
1859
1852
|
tagConfirmedId: string;
|
@@ -1894,6 +1887,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1894
1887
|
tagConfirmedId: string;
|
1895
1888
|
supraEventId: string | null;
|
1896
1889
|
} | null;
|
1890
|
+
profileTags: {
|
1891
|
+
id: string;
|
1892
|
+
name: string;
|
1893
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1894
|
+
group: {
|
1895
|
+
id: string;
|
1896
|
+
name: string;
|
1897
|
+
color: string;
|
1898
|
+
isExclusive: boolean;
|
1899
|
+
};
|
1900
|
+
}[];
|
1897
1901
|
}[];
|
1898
1902
|
}, {
|
1899
1903
|
folders: {
|
@@ -1912,17 +1916,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1912
1916
|
created_at: string;
|
1913
1917
|
updated_at: string;
|
1914
1918
|
active: boolean;
|
1915
|
-
tags: {
|
1916
|
-
id: string;
|
1917
|
-
name: string;
|
1918
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1919
|
-
group: {
|
1920
|
-
id: string;
|
1921
|
-
name: string;
|
1922
|
-
color: string;
|
1923
|
-
isExclusive: boolean;
|
1924
|
-
};
|
1925
|
-
}[];
|
1926
1919
|
folderId: string | null;
|
1927
1920
|
tagAssistedId: string;
|
1928
1921
|
tagConfirmedId: string;
|
@@ -1963,6 +1956,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1963
1956
|
tagConfirmedId: string;
|
1964
1957
|
supraEventId: string | null;
|
1965
1958
|
} | null;
|
1959
|
+
profileTags: {
|
1960
|
+
id: string;
|
1961
|
+
name: string;
|
1962
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
1963
|
+
group: {
|
1964
|
+
id: string;
|
1965
|
+
name: string;
|
1966
|
+
color: string;
|
1967
|
+
isExclusive: boolean;
|
1968
|
+
};
|
1969
|
+
}[];
|
1966
1970
|
}[];
|
1967
1971
|
}[];
|
1968
1972
|
withoutFolder: {
|
@@ -1975,17 +1979,6 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
1975
1979
|
created_at: string;
|
1976
1980
|
updated_at: string;
|
1977
1981
|
active: boolean;
|
1978
|
-
tags: {
|
1979
|
-
id: string;
|
1980
|
-
name: string;
|
1981
|
-
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM";
|
1982
|
-
group: {
|
1983
|
-
id: string;
|
1984
|
-
name: string;
|
1985
|
-
color: string;
|
1986
|
-
isExclusive: boolean;
|
1987
|
-
};
|
1988
|
-
}[];
|
1989
1982
|
folderId: string | null;
|
1990
1983
|
tagAssistedId: string;
|
1991
1984
|
tagConfirmedId: string;
|
@@ -2026,6 +2019,17 @@ declare const GetAllEventsResponseDto_base: import("@anatine/zod-nestjs").ZodDto
|
|
2026
2019
|
tagConfirmedId: string;
|
2027
2020
|
supraEventId: string | null;
|
2028
2021
|
} | null;
|
2022
|
+
profileTags: {
|
2023
|
+
id: string;
|
2024
|
+
name: string;
|
2025
|
+
type: "PARTICIPANT" | "PROFILE" | "EVENT" | "NOT_IN_SYSTEM" | "PRODUCTION_ROLE";
|
2026
|
+
group: {
|
2027
|
+
id: string;
|
2028
|
+
name: string;
|
2029
|
+
color: string;
|
2030
|
+
isExclusive: boolean;
|
2031
|
+
};
|
2032
|
+
}[];
|
2029
2033
|
}[];
|
2030
2034
|
}>>;
|
2031
2035
|
export declare class GetAllEventsResponseDto extends GetAllEventsResponseDto_base {
|