@ttt-productions/ttt-core 0.7.2 → 0.7.4
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/constants/business.d.ts +1 -1
- package/dist/constants/business.d.ts.map +1 -1
- package/dist/constants/business.js +5 -5
- package/dist/constants/business.js.map +1 -1
- package/dist/constants/options.d.ts +4 -4
- package/dist/constants/options.js +2 -2
- package/dist/constants/options.js.map +1 -1
- package/dist/media/domain-events.d.ts +30 -0
- package/dist/media/domain-events.d.ts.map +1 -1
- package/dist/media/domain-events.js +3 -0
- package/dist/media/domain-events.js.map +1 -1
- package/dist/media/pending-media.d.ts +237 -0
- package/dist/media/pending-media.d.ts.map +1 -1
- package/dist/permissions/work-project-permissions.d.ts +9 -9
- package/dist/permissions/work-project-permissions.js +9 -9
- package/dist/permissions/work-project-permissions.js.map +1 -1
- package/dist/schemas/stake-share-operation.js +1 -1
- package/dist/schemas/utility.d.ts +3 -3
- package/dist/types/commissions.d.ts +1 -1
- package/dist/types/commissions.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -853,58 +853,73 @@ export declare const PendingMediaResultSchema: z.ZodObject<{
|
|
|
853
853
|
type: z.ZodLiteral<"thresholdLibrary.approved">;
|
|
854
854
|
ids: z.ZodObject<{
|
|
855
855
|
thresholdItemId: z.ZodString;
|
|
856
|
+
hallItemId: z.ZodString;
|
|
856
857
|
}, "strict", z.ZodTypeAny, {
|
|
857
858
|
thresholdItemId: string;
|
|
859
|
+
hallItemId: string;
|
|
858
860
|
}, {
|
|
859
861
|
thresholdItemId: string;
|
|
862
|
+
hallItemId: string;
|
|
860
863
|
}>;
|
|
861
864
|
}, "strict", z.ZodTypeAny, {
|
|
862
865
|
type: "thresholdLibrary.approved";
|
|
863
866
|
ids: {
|
|
864
867
|
thresholdItemId: string;
|
|
868
|
+
hallItemId: string;
|
|
865
869
|
};
|
|
866
870
|
}, {
|
|
867
871
|
type: "thresholdLibrary.approved";
|
|
868
872
|
ids: {
|
|
869
873
|
thresholdItemId: string;
|
|
874
|
+
hallItemId: string;
|
|
870
875
|
};
|
|
871
876
|
}>, z.ZodObject<{
|
|
872
877
|
type: z.ZodLiteral<"thresholdLibrary.rejected">;
|
|
873
878
|
ids: z.ZodObject<{
|
|
874
879
|
thresholdItemId: z.ZodString;
|
|
880
|
+
hallItemId: z.ZodString;
|
|
875
881
|
}, "strict", z.ZodTypeAny, {
|
|
876
882
|
thresholdItemId: string;
|
|
883
|
+
hallItemId: string;
|
|
877
884
|
}, {
|
|
878
885
|
thresholdItemId: string;
|
|
886
|
+
hallItemId: string;
|
|
879
887
|
}>;
|
|
880
888
|
}, "strict", z.ZodTypeAny, {
|
|
881
889
|
type: "thresholdLibrary.rejected";
|
|
882
890
|
ids: {
|
|
883
891
|
thresholdItemId: string;
|
|
892
|
+
hallItemId: string;
|
|
884
893
|
};
|
|
885
894
|
}, {
|
|
886
895
|
type: "thresholdLibrary.rejected";
|
|
887
896
|
ids: {
|
|
888
897
|
thresholdItemId: string;
|
|
898
|
+
hallItemId: string;
|
|
889
899
|
};
|
|
890
900
|
}>, z.ZodObject<{
|
|
891
901
|
type: z.ZodLiteral<"thresholdLibrary.needsRevision">;
|
|
892
902
|
ids: z.ZodObject<{
|
|
893
903
|
thresholdItemId: z.ZodString;
|
|
904
|
+
hallItemId: z.ZodString;
|
|
894
905
|
}, "strict", z.ZodTypeAny, {
|
|
895
906
|
thresholdItemId: string;
|
|
907
|
+
hallItemId: string;
|
|
896
908
|
}, {
|
|
897
909
|
thresholdItemId: string;
|
|
910
|
+
hallItemId: string;
|
|
898
911
|
}>;
|
|
899
912
|
}, "strict", z.ZodTypeAny, {
|
|
900
913
|
type: "thresholdLibrary.needsRevision";
|
|
901
914
|
ids: {
|
|
902
915
|
thresholdItemId: string;
|
|
916
|
+
hallItemId: string;
|
|
903
917
|
};
|
|
904
918
|
}, {
|
|
905
919
|
type: "thresholdLibrary.needsRevision";
|
|
906
920
|
ids: {
|
|
907
921
|
thresholdItemId: string;
|
|
922
|
+
hallItemId: string;
|
|
908
923
|
};
|
|
909
924
|
}>, z.ZodObject<{
|
|
910
925
|
type: z.ZodLiteral<"hallLibrary.preferenceUpdated">;
|
|
@@ -1295,16 +1310,19 @@ export declare const PendingMediaResultSchema: z.ZodObject<{
|
|
|
1295
1310
|
type: "thresholdLibrary.approved";
|
|
1296
1311
|
ids: {
|
|
1297
1312
|
thresholdItemId: string;
|
|
1313
|
+
hallItemId: string;
|
|
1298
1314
|
};
|
|
1299
1315
|
} | {
|
|
1300
1316
|
type: "thresholdLibrary.rejected";
|
|
1301
1317
|
ids: {
|
|
1302
1318
|
thresholdItemId: string;
|
|
1319
|
+
hallItemId: string;
|
|
1303
1320
|
};
|
|
1304
1321
|
} | {
|
|
1305
1322
|
type: "thresholdLibrary.needsRevision";
|
|
1306
1323
|
ids: {
|
|
1307
1324
|
thresholdItemId: string;
|
|
1325
|
+
hallItemId: string;
|
|
1308
1326
|
};
|
|
1309
1327
|
} | {
|
|
1310
1328
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -1567,16 +1585,19 @@ export declare const PendingMediaResultSchema: z.ZodObject<{
|
|
|
1567
1585
|
type: "thresholdLibrary.approved";
|
|
1568
1586
|
ids: {
|
|
1569
1587
|
thresholdItemId: string;
|
|
1588
|
+
hallItemId: string;
|
|
1570
1589
|
};
|
|
1571
1590
|
} | {
|
|
1572
1591
|
type: "thresholdLibrary.rejected";
|
|
1573
1592
|
ids: {
|
|
1574
1593
|
thresholdItemId: string;
|
|
1594
|
+
hallItemId: string;
|
|
1575
1595
|
};
|
|
1576
1596
|
} | {
|
|
1577
1597
|
type: "thresholdLibrary.needsRevision";
|
|
1578
1598
|
ids: {
|
|
1579
1599
|
thresholdItemId: string;
|
|
1600
|
+
hallItemId: string;
|
|
1580
1601
|
};
|
|
1581
1602
|
} | {
|
|
1582
1603
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -2614,58 +2635,73 @@ export declare const PendingMediaCompletedSchema: z.ZodObject<{
|
|
|
2614
2635
|
type: z.ZodLiteral<"thresholdLibrary.approved">;
|
|
2615
2636
|
ids: z.ZodObject<{
|
|
2616
2637
|
thresholdItemId: z.ZodString;
|
|
2638
|
+
hallItemId: z.ZodString;
|
|
2617
2639
|
}, "strict", z.ZodTypeAny, {
|
|
2618
2640
|
thresholdItemId: string;
|
|
2641
|
+
hallItemId: string;
|
|
2619
2642
|
}, {
|
|
2620
2643
|
thresholdItemId: string;
|
|
2644
|
+
hallItemId: string;
|
|
2621
2645
|
}>;
|
|
2622
2646
|
}, "strict", z.ZodTypeAny, {
|
|
2623
2647
|
type: "thresholdLibrary.approved";
|
|
2624
2648
|
ids: {
|
|
2625
2649
|
thresholdItemId: string;
|
|
2650
|
+
hallItemId: string;
|
|
2626
2651
|
};
|
|
2627
2652
|
}, {
|
|
2628
2653
|
type: "thresholdLibrary.approved";
|
|
2629
2654
|
ids: {
|
|
2630
2655
|
thresholdItemId: string;
|
|
2656
|
+
hallItemId: string;
|
|
2631
2657
|
};
|
|
2632
2658
|
}>, z.ZodObject<{
|
|
2633
2659
|
type: z.ZodLiteral<"thresholdLibrary.rejected">;
|
|
2634
2660
|
ids: z.ZodObject<{
|
|
2635
2661
|
thresholdItemId: z.ZodString;
|
|
2662
|
+
hallItemId: z.ZodString;
|
|
2636
2663
|
}, "strict", z.ZodTypeAny, {
|
|
2637
2664
|
thresholdItemId: string;
|
|
2665
|
+
hallItemId: string;
|
|
2638
2666
|
}, {
|
|
2639
2667
|
thresholdItemId: string;
|
|
2668
|
+
hallItemId: string;
|
|
2640
2669
|
}>;
|
|
2641
2670
|
}, "strict", z.ZodTypeAny, {
|
|
2642
2671
|
type: "thresholdLibrary.rejected";
|
|
2643
2672
|
ids: {
|
|
2644
2673
|
thresholdItemId: string;
|
|
2674
|
+
hallItemId: string;
|
|
2645
2675
|
};
|
|
2646
2676
|
}, {
|
|
2647
2677
|
type: "thresholdLibrary.rejected";
|
|
2648
2678
|
ids: {
|
|
2649
2679
|
thresholdItemId: string;
|
|
2680
|
+
hallItemId: string;
|
|
2650
2681
|
};
|
|
2651
2682
|
}>, z.ZodObject<{
|
|
2652
2683
|
type: z.ZodLiteral<"thresholdLibrary.needsRevision">;
|
|
2653
2684
|
ids: z.ZodObject<{
|
|
2654
2685
|
thresholdItemId: z.ZodString;
|
|
2686
|
+
hallItemId: z.ZodString;
|
|
2655
2687
|
}, "strict", z.ZodTypeAny, {
|
|
2656
2688
|
thresholdItemId: string;
|
|
2689
|
+
hallItemId: string;
|
|
2657
2690
|
}, {
|
|
2658
2691
|
thresholdItemId: string;
|
|
2692
|
+
hallItemId: string;
|
|
2659
2693
|
}>;
|
|
2660
2694
|
}, "strict", z.ZodTypeAny, {
|
|
2661
2695
|
type: "thresholdLibrary.needsRevision";
|
|
2662
2696
|
ids: {
|
|
2663
2697
|
thresholdItemId: string;
|
|
2698
|
+
hallItemId: string;
|
|
2664
2699
|
};
|
|
2665
2700
|
}, {
|
|
2666
2701
|
type: "thresholdLibrary.needsRevision";
|
|
2667
2702
|
ids: {
|
|
2668
2703
|
thresholdItemId: string;
|
|
2704
|
+
hallItemId: string;
|
|
2669
2705
|
};
|
|
2670
2706
|
}>, z.ZodObject<{
|
|
2671
2707
|
type: z.ZodLiteral<"hallLibrary.preferenceUpdated">;
|
|
@@ -3056,16 +3092,19 @@ export declare const PendingMediaCompletedSchema: z.ZodObject<{
|
|
|
3056
3092
|
type: "thresholdLibrary.approved";
|
|
3057
3093
|
ids: {
|
|
3058
3094
|
thresholdItemId: string;
|
|
3095
|
+
hallItemId: string;
|
|
3059
3096
|
};
|
|
3060
3097
|
} | {
|
|
3061
3098
|
type: "thresholdLibrary.rejected";
|
|
3062
3099
|
ids: {
|
|
3063
3100
|
thresholdItemId: string;
|
|
3101
|
+
hallItemId: string;
|
|
3064
3102
|
};
|
|
3065
3103
|
} | {
|
|
3066
3104
|
type: "thresholdLibrary.needsRevision";
|
|
3067
3105
|
ids: {
|
|
3068
3106
|
thresholdItemId: string;
|
|
3107
|
+
hallItemId: string;
|
|
3069
3108
|
};
|
|
3070
3109
|
} | {
|
|
3071
3110
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -3328,16 +3367,19 @@ export declare const PendingMediaCompletedSchema: z.ZodObject<{
|
|
|
3328
3367
|
type: "thresholdLibrary.approved";
|
|
3329
3368
|
ids: {
|
|
3330
3369
|
thresholdItemId: string;
|
|
3370
|
+
hallItemId: string;
|
|
3331
3371
|
};
|
|
3332
3372
|
} | {
|
|
3333
3373
|
type: "thresholdLibrary.rejected";
|
|
3334
3374
|
ids: {
|
|
3335
3375
|
thresholdItemId: string;
|
|
3376
|
+
hallItemId: string;
|
|
3336
3377
|
};
|
|
3337
3378
|
} | {
|
|
3338
3379
|
type: "thresholdLibrary.needsRevision";
|
|
3339
3380
|
ids: {
|
|
3340
3381
|
thresholdItemId: string;
|
|
3382
|
+
hallItemId: string;
|
|
3341
3383
|
};
|
|
3342
3384
|
} | {
|
|
3343
3385
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -3638,16 +3680,19 @@ export declare const PendingMediaCompletedSchema: z.ZodObject<{
|
|
|
3638
3680
|
type: "thresholdLibrary.approved";
|
|
3639
3681
|
ids: {
|
|
3640
3682
|
thresholdItemId: string;
|
|
3683
|
+
hallItemId: string;
|
|
3641
3684
|
};
|
|
3642
3685
|
} | {
|
|
3643
3686
|
type: "thresholdLibrary.rejected";
|
|
3644
3687
|
ids: {
|
|
3645
3688
|
thresholdItemId: string;
|
|
3689
|
+
hallItemId: string;
|
|
3646
3690
|
};
|
|
3647
3691
|
} | {
|
|
3648
3692
|
type: "thresholdLibrary.needsRevision";
|
|
3649
3693
|
ids: {
|
|
3650
3694
|
thresholdItemId: string;
|
|
3695
|
+
hallItemId: string;
|
|
3651
3696
|
};
|
|
3652
3697
|
} | {
|
|
3653
3698
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -3933,16 +3978,19 @@ export declare const PendingMediaCompletedSchema: z.ZodObject<{
|
|
|
3933
3978
|
type: "thresholdLibrary.approved";
|
|
3934
3979
|
ids: {
|
|
3935
3980
|
thresholdItemId: string;
|
|
3981
|
+
hallItemId: string;
|
|
3936
3982
|
};
|
|
3937
3983
|
} | {
|
|
3938
3984
|
type: "thresholdLibrary.rejected";
|
|
3939
3985
|
ids: {
|
|
3940
3986
|
thresholdItemId: string;
|
|
3987
|
+
hallItemId: string;
|
|
3941
3988
|
};
|
|
3942
3989
|
} | {
|
|
3943
3990
|
type: "thresholdLibrary.needsRevision";
|
|
3944
3991
|
ids: {
|
|
3945
3992
|
thresholdItemId: string;
|
|
3993
|
+
hallItemId: string;
|
|
3946
3994
|
};
|
|
3947
3995
|
} | {
|
|
3948
3996
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -4942,58 +4990,73 @@ export declare const PendingMediaRejectedSchema: z.ZodObject<{
|
|
|
4942
4990
|
type: z.ZodLiteral<"thresholdLibrary.approved">;
|
|
4943
4991
|
ids: z.ZodObject<{
|
|
4944
4992
|
thresholdItemId: z.ZodString;
|
|
4993
|
+
hallItemId: z.ZodString;
|
|
4945
4994
|
}, "strict", z.ZodTypeAny, {
|
|
4946
4995
|
thresholdItemId: string;
|
|
4996
|
+
hallItemId: string;
|
|
4947
4997
|
}, {
|
|
4948
4998
|
thresholdItemId: string;
|
|
4999
|
+
hallItemId: string;
|
|
4949
5000
|
}>;
|
|
4950
5001
|
}, "strict", z.ZodTypeAny, {
|
|
4951
5002
|
type: "thresholdLibrary.approved";
|
|
4952
5003
|
ids: {
|
|
4953
5004
|
thresholdItemId: string;
|
|
5005
|
+
hallItemId: string;
|
|
4954
5006
|
};
|
|
4955
5007
|
}, {
|
|
4956
5008
|
type: "thresholdLibrary.approved";
|
|
4957
5009
|
ids: {
|
|
4958
5010
|
thresholdItemId: string;
|
|
5011
|
+
hallItemId: string;
|
|
4959
5012
|
};
|
|
4960
5013
|
}>, z.ZodObject<{
|
|
4961
5014
|
type: z.ZodLiteral<"thresholdLibrary.rejected">;
|
|
4962
5015
|
ids: z.ZodObject<{
|
|
4963
5016
|
thresholdItemId: z.ZodString;
|
|
5017
|
+
hallItemId: z.ZodString;
|
|
4964
5018
|
}, "strict", z.ZodTypeAny, {
|
|
4965
5019
|
thresholdItemId: string;
|
|
5020
|
+
hallItemId: string;
|
|
4966
5021
|
}, {
|
|
4967
5022
|
thresholdItemId: string;
|
|
5023
|
+
hallItemId: string;
|
|
4968
5024
|
}>;
|
|
4969
5025
|
}, "strict", z.ZodTypeAny, {
|
|
4970
5026
|
type: "thresholdLibrary.rejected";
|
|
4971
5027
|
ids: {
|
|
4972
5028
|
thresholdItemId: string;
|
|
5029
|
+
hallItemId: string;
|
|
4973
5030
|
};
|
|
4974
5031
|
}, {
|
|
4975
5032
|
type: "thresholdLibrary.rejected";
|
|
4976
5033
|
ids: {
|
|
4977
5034
|
thresholdItemId: string;
|
|
5035
|
+
hallItemId: string;
|
|
4978
5036
|
};
|
|
4979
5037
|
}>, z.ZodObject<{
|
|
4980
5038
|
type: z.ZodLiteral<"thresholdLibrary.needsRevision">;
|
|
4981
5039
|
ids: z.ZodObject<{
|
|
4982
5040
|
thresholdItemId: z.ZodString;
|
|
5041
|
+
hallItemId: z.ZodString;
|
|
4983
5042
|
}, "strict", z.ZodTypeAny, {
|
|
4984
5043
|
thresholdItemId: string;
|
|
5044
|
+
hallItemId: string;
|
|
4985
5045
|
}, {
|
|
4986
5046
|
thresholdItemId: string;
|
|
5047
|
+
hallItemId: string;
|
|
4987
5048
|
}>;
|
|
4988
5049
|
}, "strict", z.ZodTypeAny, {
|
|
4989
5050
|
type: "thresholdLibrary.needsRevision";
|
|
4990
5051
|
ids: {
|
|
4991
5052
|
thresholdItemId: string;
|
|
5053
|
+
hallItemId: string;
|
|
4992
5054
|
};
|
|
4993
5055
|
}, {
|
|
4994
5056
|
type: "thresholdLibrary.needsRevision";
|
|
4995
5057
|
ids: {
|
|
4996
5058
|
thresholdItemId: string;
|
|
5059
|
+
hallItemId: string;
|
|
4997
5060
|
};
|
|
4998
5061
|
}>, z.ZodObject<{
|
|
4999
5062
|
type: z.ZodLiteral<"hallLibrary.preferenceUpdated">;
|
|
@@ -5384,16 +5447,19 @@ export declare const PendingMediaRejectedSchema: z.ZodObject<{
|
|
|
5384
5447
|
type: "thresholdLibrary.approved";
|
|
5385
5448
|
ids: {
|
|
5386
5449
|
thresholdItemId: string;
|
|
5450
|
+
hallItemId: string;
|
|
5387
5451
|
};
|
|
5388
5452
|
} | {
|
|
5389
5453
|
type: "thresholdLibrary.rejected";
|
|
5390
5454
|
ids: {
|
|
5391
5455
|
thresholdItemId: string;
|
|
5456
|
+
hallItemId: string;
|
|
5392
5457
|
};
|
|
5393
5458
|
} | {
|
|
5394
5459
|
type: "thresholdLibrary.needsRevision";
|
|
5395
5460
|
ids: {
|
|
5396
5461
|
thresholdItemId: string;
|
|
5462
|
+
hallItemId: string;
|
|
5397
5463
|
};
|
|
5398
5464
|
} | {
|
|
5399
5465
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -5656,16 +5722,19 @@ export declare const PendingMediaRejectedSchema: z.ZodObject<{
|
|
|
5656
5722
|
type: "thresholdLibrary.approved";
|
|
5657
5723
|
ids: {
|
|
5658
5724
|
thresholdItemId: string;
|
|
5725
|
+
hallItemId: string;
|
|
5659
5726
|
};
|
|
5660
5727
|
} | {
|
|
5661
5728
|
type: "thresholdLibrary.rejected";
|
|
5662
5729
|
ids: {
|
|
5663
5730
|
thresholdItemId: string;
|
|
5731
|
+
hallItemId: string;
|
|
5664
5732
|
};
|
|
5665
5733
|
} | {
|
|
5666
5734
|
type: "thresholdLibrary.needsRevision";
|
|
5667
5735
|
ids: {
|
|
5668
5736
|
thresholdItemId: string;
|
|
5737
|
+
hallItemId: string;
|
|
5669
5738
|
};
|
|
5670
5739
|
} | {
|
|
5671
5740
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -5976,16 +6045,19 @@ export declare const PendingMediaRejectedSchema: z.ZodObject<{
|
|
|
5976
6045
|
type: "thresholdLibrary.approved";
|
|
5977
6046
|
ids: {
|
|
5978
6047
|
thresholdItemId: string;
|
|
6048
|
+
hallItemId: string;
|
|
5979
6049
|
};
|
|
5980
6050
|
} | {
|
|
5981
6051
|
type: "thresholdLibrary.rejected";
|
|
5982
6052
|
ids: {
|
|
5983
6053
|
thresholdItemId: string;
|
|
6054
|
+
hallItemId: string;
|
|
5984
6055
|
};
|
|
5985
6056
|
} | {
|
|
5986
6057
|
type: "thresholdLibrary.needsRevision";
|
|
5987
6058
|
ids: {
|
|
5988
6059
|
thresholdItemId: string;
|
|
6060
|
+
hallItemId: string;
|
|
5989
6061
|
};
|
|
5990
6062
|
} | {
|
|
5991
6063
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -6274,16 +6346,19 @@ export declare const PendingMediaRejectedSchema: z.ZodObject<{
|
|
|
6274
6346
|
type: "thresholdLibrary.approved";
|
|
6275
6347
|
ids: {
|
|
6276
6348
|
thresholdItemId: string;
|
|
6349
|
+
hallItemId: string;
|
|
6277
6350
|
};
|
|
6278
6351
|
} | {
|
|
6279
6352
|
type: "thresholdLibrary.rejected";
|
|
6280
6353
|
ids: {
|
|
6281
6354
|
thresholdItemId: string;
|
|
6355
|
+
hallItemId: string;
|
|
6282
6356
|
};
|
|
6283
6357
|
} | {
|
|
6284
6358
|
type: "thresholdLibrary.needsRevision";
|
|
6285
6359
|
ids: {
|
|
6286
6360
|
thresholdItemId: string;
|
|
6361
|
+
hallItemId: string;
|
|
6287
6362
|
};
|
|
6288
6363
|
} | {
|
|
6289
6364
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -7320,58 +7395,73 @@ export declare const PendingMediaSchema: z.ZodDiscriminatedUnion<"status", [z.Zo
|
|
|
7320
7395
|
type: z.ZodLiteral<"thresholdLibrary.approved">;
|
|
7321
7396
|
ids: z.ZodObject<{
|
|
7322
7397
|
thresholdItemId: z.ZodString;
|
|
7398
|
+
hallItemId: z.ZodString;
|
|
7323
7399
|
}, "strict", z.ZodTypeAny, {
|
|
7324
7400
|
thresholdItemId: string;
|
|
7401
|
+
hallItemId: string;
|
|
7325
7402
|
}, {
|
|
7326
7403
|
thresholdItemId: string;
|
|
7404
|
+
hallItemId: string;
|
|
7327
7405
|
}>;
|
|
7328
7406
|
}, "strict", z.ZodTypeAny, {
|
|
7329
7407
|
type: "thresholdLibrary.approved";
|
|
7330
7408
|
ids: {
|
|
7331
7409
|
thresholdItemId: string;
|
|
7410
|
+
hallItemId: string;
|
|
7332
7411
|
};
|
|
7333
7412
|
}, {
|
|
7334
7413
|
type: "thresholdLibrary.approved";
|
|
7335
7414
|
ids: {
|
|
7336
7415
|
thresholdItemId: string;
|
|
7416
|
+
hallItemId: string;
|
|
7337
7417
|
};
|
|
7338
7418
|
}>, z.ZodObject<{
|
|
7339
7419
|
type: z.ZodLiteral<"thresholdLibrary.rejected">;
|
|
7340
7420
|
ids: z.ZodObject<{
|
|
7341
7421
|
thresholdItemId: z.ZodString;
|
|
7422
|
+
hallItemId: z.ZodString;
|
|
7342
7423
|
}, "strict", z.ZodTypeAny, {
|
|
7343
7424
|
thresholdItemId: string;
|
|
7425
|
+
hallItemId: string;
|
|
7344
7426
|
}, {
|
|
7345
7427
|
thresholdItemId: string;
|
|
7428
|
+
hallItemId: string;
|
|
7346
7429
|
}>;
|
|
7347
7430
|
}, "strict", z.ZodTypeAny, {
|
|
7348
7431
|
type: "thresholdLibrary.rejected";
|
|
7349
7432
|
ids: {
|
|
7350
7433
|
thresholdItemId: string;
|
|
7434
|
+
hallItemId: string;
|
|
7351
7435
|
};
|
|
7352
7436
|
}, {
|
|
7353
7437
|
type: "thresholdLibrary.rejected";
|
|
7354
7438
|
ids: {
|
|
7355
7439
|
thresholdItemId: string;
|
|
7440
|
+
hallItemId: string;
|
|
7356
7441
|
};
|
|
7357
7442
|
}>, z.ZodObject<{
|
|
7358
7443
|
type: z.ZodLiteral<"thresholdLibrary.needsRevision">;
|
|
7359
7444
|
ids: z.ZodObject<{
|
|
7360
7445
|
thresholdItemId: z.ZodString;
|
|
7446
|
+
hallItemId: z.ZodString;
|
|
7361
7447
|
}, "strict", z.ZodTypeAny, {
|
|
7362
7448
|
thresholdItemId: string;
|
|
7449
|
+
hallItemId: string;
|
|
7363
7450
|
}, {
|
|
7364
7451
|
thresholdItemId: string;
|
|
7452
|
+
hallItemId: string;
|
|
7365
7453
|
}>;
|
|
7366
7454
|
}, "strict", z.ZodTypeAny, {
|
|
7367
7455
|
type: "thresholdLibrary.needsRevision";
|
|
7368
7456
|
ids: {
|
|
7369
7457
|
thresholdItemId: string;
|
|
7458
|
+
hallItemId: string;
|
|
7370
7459
|
};
|
|
7371
7460
|
}, {
|
|
7372
7461
|
type: "thresholdLibrary.needsRevision";
|
|
7373
7462
|
ids: {
|
|
7374
7463
|
thresholdItemId: string;
|
|
7464
|
+
hallItemId: string;
|
|
7375
7465
|
};
|
|
7376
7466
|
}>, z.ZodObject<{
|
|
7377
7467
|
type: z.ZodLiteral<"hallLibrary.preferenceUpdated">;
|
|
@@ -7762,16 +7852,19 @@ export declare const PendingMediaSchema: z.ZodDiscriminatedUnion<"status", [z.Zo
|
|
|
7762
7852
|
type: "thresholdLibrary.approved";
|
|
7763
7853
|
ids: {
|
|
7764
7854
|
thresholdItemId: string;
|
|
7855
|
+
hallItemId: string;
|
|
7765
7856
|
};
|
|
7766
7857
|
} | {
|
|
7767
7858
|
type: "thresholdLibrary.rejected";
|
|
7768
7859
|
ids: {
|
|
7769
7860
|
thresholdItemId: string;
|
|
7861
|
+
hallItemId: string;
|
|
7770
7862
|
};
|
|
7771
7863
|
} | {
|
|
7772
7864
|
type: "thresholdLibrary.needsRevision";
|
|
7773
7865
|
ids: {
|
|
7774
7866
|
thresholdItemId: string;
|
|
7867
|
+
hallItemId: string;
|
|
7775
7868
|
};
|
|
7776
7869
|
} | {
|
|
7777
7870
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -8034,16 +8127,19 @@ export declare const PendingMediaSchema: z.ZodDiscriminatedUnion<"status", [z.Zo
|
|
|
8034
8127
|
type: "thresholdLibrary.approved";
|
|
8035
8128
|
ids: {
|
|
8036
8129
|
thresholdItemId: string;
|
|
8130
|
+
hallItemId: string;
|
|
8037
8131
|
};
|
|
8038
8132
|
} | {
|
|
8039
8133
|
type: "thresholdLibrary.rejected";
|
|
8040
8134
|
ids: {
|
|
8041
8135
|
thresholdItemId: string;
|
|
8136
|
+
hallItemId: string;
|
|
8042
8137
|
};
|
|
8043
8138
|
} | {
|
|
8044
8139
|
type: "thresholdLibrary.needsRevision";
|
|
8045
8140
|
ids: {
|
|
8046
8141
|
thresholdItemId: string;
|
|
8142
|
+
hallItemId: string;
|
|
8047
8143
|
};
|
|
8048
8144
|
} | {
|
|
8049
8145
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -8344,16 +8440,19 @@ export declare const PendingMediaSchema: z.ZodDiscriminatedUnion<"status", [z.Zo
|
|
|
8344
8440
|
type: "thresholdLibrary.approved";
|
|
8345
8441
|
ids: {
|
|
8346
8442
|
thresholdItemId: string;
|
|
8443
|
+
hallItemId: string;
|
|
8347
8444
|
};
|
|
8348
8445
|
} | {
|
|
8349
8446
|
type: "thresholdLibrary.rejected";
|
|
8350
8447
|
ids: {
|
|
8351
8448
|
thresholdItemId: string;
|
|
8449
|
+
hallItemId: string;
|
|
8352
8450
|
};
|
|
8353
8451
|
} | {
|
|
8354
8452
|
type: "thresholdLibrary.needsRevision";
|
|
8355
8453
|
ids: {
|
|
8356
8454
|
thresholdItemId: string;
|
|
8455
|
+
hallItemId: string;
|
|
8357
8456
|
};
|
|
8358
8457
|
} | {
|
|
8359
8458
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -8639,16 +8738,19 @@ export declare const PendingMediaSchema: z.ZodDiscriminatedUnion<"status", [z.Zo
|
|
|
8639
8738
|
type: "thresholdLibrary.approved";
|
|
8640
8739
|
ids: {
|
|
8641
8740
|
thresholdItemId: string;
|
|
8741
|
+
hallItemId: string;
|
|
8642
8742
|
};
|
|
8643
8743
|
} | {
|
|
8644
8744
|
type: "thresholdLibrary.rejected";
|
|
8645
8745
|
ids: {
|
|
8646
8746
|
thresholdItemId: string;
|
|
8747
|
+
hallItemId: string;
|
|
8647
8748
|
};
|
|
8648
8749
|
} | {
|
|
8649
8750
|
type: "thresholdLibrary.needsRevision";
|
|
8650
8751
|
ids: {
|
|
8651
8752
|
thresholdItemId: string;
|
|
8753
|
+
hallItemId: string;
|
|
8652
8754
|
};
|
|
8653
8755
|
} | {
|
|
8654
8756
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -9646,58 +9748,73 @@ export declare const PendingMediaSchema: z.ZodDiscriminatedUnion<"status", [z.Zo
|
|
|
9646
9748
|
type: z.ZodLiteral<"thresholdLibrary.approved">;
|
|
9647
9749
|
ids: z.ZodObject<{
|
|
9648
9750
|
thresholdItemId: z.ZodString;
|
|
9751
|
+
hallItemId: z.ZodString;
|
|
9649
9752
|
}, "strict", z.ZodTypeAny, {
|
|
9650
9753
|
thresholdItemId: string;
|
|
9754
|
+
hallItemId: string;
|
|
9651
9755
|
}, {
|
|
9652
9756
|
thresholdItemId: string;
|
|
9757
|
+
hallItemId: string;
|
|
9653
9758
|
}>;
|
|
9654
9759
|
}, "strict", z.ZodTypeAny, {
|
|
9655
9760
|
type: "thresholdLibrary.approved";
|
|
9656
9761
|
ids: {
|
|
9657
9762
|
thresholdItemId: string;
|
|
9763
|
+
hallItemId: string;
|
|
9658
9764
|
};
|
|
9659
9765
|
}, {
|
|
9660
9766
|
type: "thresholdLibrary.approved";
|
|
9661
9767
|
ids: {
|
|
9662
9768
|
thresholdItemId: string;
|
|
9769
|
+
hallItemId: string;
|
|
9663
9770
|
};
|
|
9664
9771
|
}>, z.ZodObject<{
|
|
9665
9772
|
type: z.ZodLiteral<"thresholdLibrary.rejected">;
|
|
9666
9773
|
ids: z.ZodObject<{
|
|
9667
9774
|
thresholdItemId: z.ZodString;
|
|
9775
|
+
hallItemId: z.ZodString;
|
|
9668
9776
|
}, "strict", z.ZodTypeAny, {
|
|
9669
9777
|
thresholdItemId: string;
|
|
9778
|
+
hallItemId: string;
|
|
9670
9779
|
}, {
|
|
9671
9780
|
thresholdItemId: string;
|
|
9781
|
+
hallItemId: string;
|
|
9672
9782
|
}>;
|
|
9673
9783
|
}, "strict", z.ZodTypeAny, {
|
|
9674
9784
|
type: "thresholdLibrary.rejected";
|
|
9675
9785
|
ids: {
|
|
9676
9786
|
thresholdItemId: string;
|
|
9787
|
+
hallItemId: string;
|
|
9677
9788
|
};
|
|
9678
9789
|
}, {
|
|
9679
9790
|
type: "thresholdLibrary.rejected";
|
|
9680
9791
|
ids: {
|
|
9681
9792
|
thresholdItemId: string;
|
|
9793
|
+
hallItemId: string;
|
|
9682
9794
|
};
|
|
9683
9795
|
}>, z.ZodObject<{
|
|
9684
9796
|
type: z.ZodLiteral<"thresholdLibrary.needsRevision">;
|
|
9685
9797
|
ids: z.ZodObject<{
|
|
9686
9798
|
thresholdItemId: z.ZodString;
|
|
9799
|
+
hallItemId: z.ZodString;
|
|
9687
9800
|
}, "strict", z.ZodTypeAny, {
|
|
9688
9801
|
thresholdItemId: string;
|
|
9802
|
+
hallItemId: string;
|
|
9689
9803
|
}, {
|
|
9690
9804
|
thresholdItemId: string;
|
|
9805
|
+
hallItemId: string;
|
|
9691
9806
|
}>;
|
|
9692
9807
|
}, "strict", z.ZodTypeAny, {
|
|
9693
9808
|
type: "thresholdLibrary.needsRevision";
|
|
9694
9809
|
ids: {
|
|
9695
9810
|
thresholdItemId: string;
|
|
9811
|
+
hallItemId: string;
|
|
9696
9812
|
};
|
|
9697
9813
|
}, {
|
|
9698
9814
|
type: "thresholdLibrary.needsRevision";
|
|
9699
9815
|
ids: {
|
|
9700
9816
|
thresholdItemId: string;
|
|
9817
|
+
hallItemId: string;
|
|
9701
9818
|
};
|
|
9702
9819
|
}>, z.ZodObject<{
|
|
9703
9820
|
type: z.ZodLiteral<"hallLibrary.preferenceUpdated">;
|
|
@@ -10088,16 +10205,19 @@ export declare const PendingMediaSchema: z.ZodDiscriminatedUnion<"status", [z.Zo
|
|
|
10088
10205
|
type: "thresholdLibrary.approved";
|
|
10089
10206
|
ids: {
|
|
10090
10207
|
thresholdItemId: string;
|
|
10208
|
+
hallItemId: string;
|
|
10091
10209
|
};
|
|
10092
10210
|
} | {
|
|
10093
10211
|
type: "thresholdLibrary.rejected";
|
|
10094
10212
|
ids: {
|
|
10095
10213
|
thresholdItemId: string;
|
|
10214
|
+
hallItemId: string;
|
|
10096
10215
|
};
|
|
10097
10216
|
} | {
|
|
10098
10217
|
type: "thresholdLibrary.needsRevision";
|
|
10099
10218
|
ids: {
|
|
10100
10219
|
thresholdItemId: string;
|
|
10220
|
+
hallItemId: string;
|
|
10101
10221
|
};
|
|
10102
10222
|
} | {
|
|
10103
10223
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -10360,16 +10480,19 @@ export declare const PendingMediaSchema: z.ZodDiscriminatedUnion<"status", [z.Zo
|
|
|
10360
10480
|
type: "thresholdLibrary.approved";
|
|
10361
10481
|
ids: {
|
|
10362
10482
|
thresholdItemId: string;
|
|
10483
|
+
hallItemId: string;
|
|
10363
10484
|
};
|
|
10364
10485
|
} | {
|
|
10365
10486
|
type: "thresholdLibrary.rejected";
|
|
10366
10487
|
ids: {
|
|
10367
10488
|
thresholdItemId: string;
|
|
10489
|
+
hallItemId: string;
|
|
10368
10490
|
};
|
|
10369
10491
|
} | {
|
|
10370
10492
|
type: "thresholdLibrary.needsRevision";
|
|
10371
10493
|
ids: {
|
|
10372
10494
|
thresholdItemId: string;
|
|
10495
|
+
hallItemId: string;
|
|
10373
10496
|
};
|
|
10374
10497
|
} | {
|
|
10375
10498
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -10680,16 +10803,19 @@ export declare const PendingMediaSchema: z.ZodDiscriminatedUnion<"status", [z.Zo
|
|
|
10680
10803
|
type: "thresholdLibrary.approved";
|
|
10681
10804
|
ids: {
|
|
10682
10805
|
thresholdItemId: string;
|
|
10806
|
+
hallItemId: string;
|
|
10683
10807
|
};
|
|
10684
10808
|
} | {
|
|
10685
10809
|
type: "thresholdLibrary.rejected";
|
|
10686
10810
|
ids: {
|
|
10687
10811
|
thresholdItemId: string;
|
|
10812
|
+
hallItemId: string;
|
|
10688
10813
|
};
|
|
10689
10814
|
} | {
|
|
10690
10815
|
type: "thresholdLibrary.needsRevision";
|
|
10691
10816
|
ids: {
|
|
10692
10817
|
thresholdItemId: string;
|
|
10818
|
+
hallItemId: string;
|
|
10693
10819
|
};
|
|
10694
10820
|
} | {
|
|
10695
10821
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -10978,16 +11104,19 @@ export declare const PendingMediaSchema: z.ZodDiscriminatedUnion<"status", [z.Zo
|
|
|
10978
11104
|
type: "thresholdLibrary.approved";
|
|
10979
11105
|
ids: {
|
|
10980
11106
|
thresholdItemId: string;
|
|
11107
|
+
hallItemId: string;
|
|
10981
11108
|
};
|
|
10982
11109
|
} | {
|
|
10983
11110
|
type: "thresholdLibrary.rejected";
|
|
10984
11111
|
ids: {
|
|
10985
11112
|
thresholdItemId: string;
|
|
11113
|
+
hallItemId: string;
|
|
10986
11114
|
};
|
|
10987
11115
|
} | {
|
|
10988
11116
|
type: "thresholdLibrary.needsRevision";
|
|
10989
11117
|
ids: {
|
|
10990
11118
|
thresholdItemId: string;
|
|
11119
|
+
hallItemId: string;
|
|
10991
11120
|
};
|
|
10992
11121
|
} | {
|
|
10993
11122
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -11898,58 +12027,73 @@ export declare const ArchivedPendingMediaCompletedSchema: z.ZodObject<{
|
|
|
11898
12027
|
type: z.ZodLiteral<"thresholdLibrary.approved">;
|
|
11899
12028
|
ids: z.ZodObject<{
|
|
11900
12029
|
thresholdItemId: z.ZodString;
|
|
12030
|
+
hallItemId: z.ZodString;
|
|
11901
12031
|
}, "strict", z.ZodTypeAny, {
|
|
11902
12032
|
thresholdItemId: string;
|
|
12033
|
+
hallItemId: string;
|
|
11903
12034
|
}, {
|
|
11904
12035
|
thresholdItemId: string;
|
|
12036
|
+
hallItemId: string;
|
|
11905
12037
|
}>;
|
|
11906
12038
|
}, "strict", z.ZodTypeAny, {
|
|
11907
12039
|
type: "thresholdLibrary.approved";
|
|
11908
12040
|
ids: {
|
|
11909
12041
|
thresholdItemId: string;
|
|
12042
|
+
hallItemId: string;
|
|
11910
12043
|
};
|
|
11911
12044
|
}, {
|
|
11912
12045
|
type: "thresholdLibrary.approved";
|
|
11913
12046
|
ids: {
|
|
11914
12047
|
thresholdItemId: string;
|
|
12048
|
+
hallItemId: string;
|
|
11915
12049
|
};
|
|
11916
12050
|
}>, z.ZodObject<{
|
|
11917
12051
|
type: z.ZodLiteral<"thresholdLibrary.rejected">;
|
|
11918
12052
|
ids: z.ZodObject<{
|
|
11919
12053
|
thresholdItemId: z.ZodString;
|
|
12054
|
+
hallItemId: z.ZodString;
|
|
11920
12055
|
}, "strict", z.ZodTypeAny, {
|
|
11921
12056
|
thresholdItemId: string;
|
|
12057
|
+
hallItemId: string;
|
|
11922
12058
|
}, {
|
|
11923
12059
|
thresholdItemId: string;
|
|
12060
|
+
hallItemId: string;
|
|
11924
12061
|
}>;
|
|
11925
12062
|
}, "strict", z.ZodTypeAny, {
|
|
11926
12063
|
type: "thresholdLibrary.rejected";
|
|
11927
12064
|
ids: {
|
|
11928
12065
|
thresholdItemId: string;
|
|
12066
|
+
hallItemId: string;
|
|
11929
12067
|
};
|
|
11930
12068
|
}, {
|
|
11931
12069
|
type: "thresholdLibrary.rejected";
|
|
11932
12070
|
ids: {
|
|
11933
12071
|
thresholdItemId: string;
|
|
12072
|
+
hallItemId: string;
|
|
11934
12073
|
};
|
|
11935
12074
|
}>, z.ZodObject<{
|
|
11936
12075
|
type: z.ZodLiteral<"thresholdLibrary.needsRevision">;
|
|
11937
12076
|
ids: z.ZodObject<{
|
|
11938
12077
|
thresholdItemId: z.ZodString;
|
|
12078
|
+
hallItemId: z.ZodString;
|
|
11939
12079
|
}, "strict", z.ZodTypeAny, {
|
|
11940
12080
|
thresholdItemId: string;
|
|
12081
|
+
hallItemId: string;
|
|
11941
12082
|
}, {
|
|
11942
12083
|
thresholdItemId: string;
|
|
12084
|
+
hallItemId: string;
|
|
11943
12085
|
}>;
|
|
11944
12086
|
}, "strict", z.ZodTypeAny, {
|
|
11945
12087
|
type: "thresholdLibrary.needsRevision";
|
|
11946
12088
|
ids: {
|
|
11947
12089
|
thresholdItemId: string;
|
|
12090
|
+
hallItemId: string;
|
|
11948
12091
|
};
|
|
11949
12092
|
}, {
|
|
11950
12093
|
type: "thresholdLibrary.needsRevision";
|
|
11951
12094
|
ids: {
|
|
11952
12095
|
thresholdItemId: string;
|
|
12096
|
+
hallItemId: string;
|
|
11953
12097
|
};
|
|
11954
12098
|
}>, z.ZodObject<{
|
|
11955
12099
|
type: z.ZodLiteral<"hallLibrary.preferenceUpdated">;
|
|
@@ -12340,16 +12484,19 @@ export declare const ArchivedPendingMediaCompletedSchema: z.ZodObject<{
|
|
|
12340
12484
|
type: "thresholdLibrary.approved";
|
|
12341
12485
|
ids: {
|
|
12342
12486
|
thresholdItemId: string;
|
|
12487
|
+
hallItemId: string;
|
|
12343
12488
|
};
|
|
12344
12489
|
} | {
|
|
12345
12490
|
type: "thresholdLibrary.rejected";
|
|
12346
12491
|
ids: {
|
|
12347
12492
|
thresholdItemId: string;
|
|
12493
|
+
hallItemId: string;
|
|
12348
12494
|
};
|
|
12349
12495
|
} | {
|
|
12350
12496
|
type: "thresholdLibrary.needsRevision";
|
|
12351
12497
|
ids: {
|
|
12352
12498
|
thresholdItemId: string;
|
|
12499
|
+
hallItemId: string;
|
|
12353
12500
|
};
|
|
12354
12501
|
} | {
|
|
12355
12502
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -12612,16 +12759,19 @@ export declare const ArchivedPendingMediaCompletedSchema: z.ZodObject<{
|
|
|
12612
12759
|
type: "thresholdLibrary.approved";
|
|
12613
12760
|
ids: {
|
|
12614
12761
|
thresholdItemId: string;
|
|
12762
|
+
hallItemId: string;
|
|
12615
12763
|
};
|
|
12616
12764
|
} | {
|
|
12617
12765
|
type: "thresholdLibrary.rejected";
|
|
12618
12766
|
ids: {
|
|
12619
12767
|
thresholdItemId: string;
|
|
12768
|
+
hallItemId: string;
|
|
12620
12769
|
};
|
|
12621
12770
|
} | {
|
|
12622
12771
|
type: "thresholdLibrary.needsRevision";
|
|
12623
12772
|
ids: {
|
|
12624
12773
|
thresholdItemId: string;
|
|
12774
|
+
hallItemId: string;
|
|
12625
12775
|
};
|
|
12626
12776
|
} | {
|
|
12627
12777
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -12923,16 +13073,19 @@ export declare const ArchivedPendingMediaCompletedSchema: z.ZodObject<{
|
|
|
12923
13073
|
type: "thresholdLibrary.approved";
|
|
12924
13074
|
ids: {
|
|
12925
13075
|
thresholdItemId: string;
|
|
13076
|
+
hallItemId: string;
|
|
12926
13077
|
};
|
|
12927
13078
|
} | {
|
|
12928
13079
|
type: "thresholdLibrary.rejected";
|
|
12929
13080
|
ids: {
|
|
12930
13081
|
thresholdItemId: string;
|
|
13082
|
+
hallItemId: string;
|
|
12931
13083
|
};
|
|
12932
13084
|
} | {
|
|
12933
13085
|
type: "thresholdLibrary.needsRevision";
|
|
12934
13086
|
ids: {
|
|
12935
13087
|
thresholdItemId: string;
|
|
13088
|
+
hallItemId: string;
|
|
12936
13089
|
};
|
|
12937
13090
|
} | {
|
|
12938
13091
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -13219,16 +13372,19 @@ export declare const ArchivedPendingMediaCompletedSchema: z.ZodObject<{
|
|
|
13219
13372
|
type: "thresholdLibrary.approved";
|
|
13220
13373
|
ids: {
|
|
13221
13374
|
thresholdItemId: string;
|
|
13375
|
+
hallItemId: string;
|
|
13222
13376
|
};
|
|
13223
13377
|
} | {
|
|
13224
13378
|
type: "thresholdLibrary.rejected";
|
|
13225
13379
|
ids: {
|
|
13226
13380
|
thresholdItemId: string;
|
|
13381
|
+
hallItemId: string;
|
|
13227
13382
|
};
|
|
13228
13383
|
} | {
|
|
13229
13384
|
type: "thresholdLibrary.needsRevision";
|
|
13230
13385
|
ids: {
|
|
13231
13386
|
thresholdItemId: string;
|
|
13387
|
+
hallItemId: string;
|
|
13232
13388
|
};
|
|
13233
13389
|
} | {
|
|
13234
13390
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -14232,58 +14388,73 @@ export declare const ArchivedPendingMediaRejectedSchema: z.ZodObject<{
|
|
|
14232
14388
|
type: z.ZodLiteral<"thresholdLibrary.approved">;
|
|
14233
14389
|
ids: z.ZodObject<{
|
|
14234
14390
|
thresholdItemId: z.ZodString;
|
|
14391
|
+
hallItemId: z.ZodString;
|
|
14235
14392
|
}, "strict", z.ZodTypeAny, {
|
|
14236
14393
|
thresholdItemId: string;
|
|
14394
|
+
hallItemId: string;
|
|
14237
14395
|
}, {
|
|
14238
14396
|
thresholdItemId: string;
|
|
14397
|
+
hallItemId: string;
|
|
14239
14398
|
}>;
|
|
14240
14399
|
}, "strict", z.ZodTypeAny, {
|
|
14241
14400
|
type: "thresholdLibrary.approved";
|
|
14242
14401
|
ids: {
|
|
14243
14402
|
thresholdItemId: string;
|
|
14403
|
+
hallItemId: string;
|
|
14244
14404
|
};
|
|
14245
14405
|
}, {
|
|
14246
14406
|
type: "thresholdLibrary.approved";
|
|
14247
14407
|
ids: {
|
|
14248
14408
|
thresholdItemId: string;
|
|
14409
|
+
hallItemId: string;
|
|
14249
14410
|
};
|
|
14250
14411
|
}>, z.ZodObject<{
|
|
14251
14412
|
type: z.ZodLiteral<"thresholdLibrary.rejected">;
|
|
14252
14413
|
ids: z.ZodObject<{
|
|
14253
14414
|
thresholdItemId: z.ZodString;
|
|
14415
|
+
hallItemId: z.ZodString;
|
|
14254
14416
|
}, "strict", z.ZodTypeAny, {
|
|
14255
14417
|
thresholdItemId: string;
|
|
14418
|
+
hallItemId: string;
|
|
14256
14419
|
}, {
|
|
14257
14420
|
thresholdItemId: string;
|
|
14421
|
+
hallItemId: string;
|
|
14258
14422
|
}>;
|
|
14259
14423
|
}, "strict", z.ZodTypeAny, {
|
|
14260
14424
|
type: "thresholdLibrary.rejected";
|
|
14261
14425
|
ids: {
|
|
14262
14426
|
thresholdItemId: string;
|
|
14427
|
+
hallItemId: string;
|
|
14263
14428
|
};
|
|
14264
14429
|
}, {
|
|
14265
14430
|
type: "thresholdLibrary.rejected";
|
|
14266
14431
|
ids: {
|
|
14267
14432
|
thresholdItemId: string;
|
|
14433
|
+
hallItemId: string;
|
|
14268
14434
|
};
|
|
14269
14435
|
}>, z.ZodObject<{
|
|
14270
14436
|
type: z.ZodLiteral<"thresholdLibrary.needsRevision">;
|
|
14271
14437
|
ids: z.ZodObject<{
|
|
14272
14438
|
thresholdItemId: z.ZodString;
|
|
14439
|
+
hallItemId: z.ZodString;
|
|
14273
14440
|
}, "strict", z.ZodTypeAny, {
|
|
14274
14441
|
thresholdItemId: string;
|
|
14442
|
+
hallItemId: string;
|
|
14275
14443
|
}, {
|
|
14276
14444
|
thresholdItemId: string;
|
|
14445
|
+
hallItemId: string;
|
|
14277
14446
|
}>;
|
|
14278
14447
|
}, "strict", z.ZodTypeAny, {
|
|
14279
14448
|
type: "thresholdLibrary.needsRevision";
|
|
14280
14449
|
ids: {
|
|
14281
14450
|
thresholdItemId: string;
|
|
14451
|
+
hallItemId: string;
|
|
14282
14452
|
};
|
|
14283
14453
|
}, {
|
|
14284
14454
|
type: "thresholdLibrary.needsRevision";
|
|
14285
14455
|
ids: {
|
|
14286
14456
|
thresholdItemId: string;
|
|
14457
|
+
hallItemId: string;
|
|
14287
14458
|
};
|
|
14288
14459
|
}>, z.ZodObject<{
|
|
14289
14460
|
type: z.ZodLiteral<"hallLibrary.preferenceUpdated">;
|
|
@@ -14674,16 +14845,19 @@ export declare const ArchivedPendingMediaRejectedSchema: z.ZodObject<{
|
|
|
14674
14845
|
type: "thresholdLibrary.approved";
|
|
14675
14846
|
ids: {
|
|
14676
14847
|
thresholdItemId: string;
|
|
14848
|
+
hallItemId: string;
|
|
14677
14849
|
};
|
|
14678
14850
|
} | {
|
|
14679
14851
|
type: "thresholdLibrary.rejected";
|
|
14680
14852
|
ids: {
|
|
14681
14853
|
thresholdItemId: string;
|
|
14854
|
+
hallItemId: string;
|
|
14682
14855
|
};
|
|
14683
14856
|
} | {
|
|
14684
14857
|
type: "thresholdLibrary.needsRevision";
|
|
14685
14858
|
ids: {
|
|
14686
14859
|
thresholdItemId: string;
|
|
14860
|
+
hallItemId: string;
|
|
14687
14861
|
};
|
|
14688
14862
|
} | {
|
|
14689
14863
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -14946,16 +15120,19 @@ export declare const ArchivedPendingMediaRejectedSchema: z.ZodObject<{
|
|
|
14946
15120
|
type: "thresholdLibrary.approved";
|
|
14947
15121
|
ids: {
|
|
14948
15122
|
thresholdItemId: string;
|
|
15123
|
+
hallItemId: string;
|
|
14949
15124
|
};
|
|
14950
15125
|
} | {
|
|
14951
15126
|
type: "thresholdLibrary.rejected";
|
|
14952
15127
|
ids: {
|
|
14953
15128
|
thresholdItemId: string;
|
|
15129
|
+
hallItemId: string;
|
|
14954
15130
|
};
|
|
14955
15131
|
} | {
|
|
14956
15132
|
type: "thresholdLibrary.needsRevision";
|
|
14957
15133
|
ids: {
|
|
14958
15134
|
thresholdItemId: string;
|
|
15135
|
+
hallItemId: string;
|
|
14959
15136
|
};
|
|
14960
15137
|
} | {
|
|
14961
15138
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -15268,16 +15445,19 @@ export declare const ArchivedPendingMediaRejectedSchema: z.ZodObject<{
|
|
|
15268
15445
|
type: "thresholdLibrary.approved";
|
|
15269
15446
|
ids: {
|
|
15270
15447
|
thresholdItemId: string;
|
|
15448
|
+
hallItemId: string;
|
|
15271
15449
|
};
|
|
15272
15450
|
} | {
|
|
15273
15451
|
type: "thresholdLibrary.rejected";
|
|
15274
15452
|
ids: {
|
|
15275
15453
|
thresholdItemId: string;
|
|
15454
|
+
hallItemId: string;
|
|
15276
15455
|
};
|
|
15277
15456
|
} | {
|
|
15278
15457
|
type: "thresholdLibrary.needsRevision";
|
|
15279
15458
|
ids: {
|
|
15280
15459
|
thresholdItemId: string;
|
|
15460
|
+
hallItemId: string;
|
|
15281
15461
|
};
|
|
15282
15462
|
} | {
|
|
15283
15463
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -15567,16 +15747,19 @@ export declare const ArchivedPendingMediaRejectedSchema: z.ZodObject<{
|
|
|
15567
15747
|
type: "thresholdLibrary.approved";
|
|
15568
15748
|
ids: {
|
|
15569
15749
|
thresholdItemId: string;
|
|
15750
|
+
hallItemId: string;
|
|
15570
15751
|
};
|
|
15571
15752
|
} | {
|
|
15572
15753
|
type: "thresholdLibrary.rejected";
|
|
15573
15754
|
ids: {
|
|
15574
15755
|
thresholdItemId: string;
|
|
15756
|
+
hallItemId: string;
|
|
15575
15757
|
};
|
|
15576
15758
|
} | {
|
|
15577
15759
|
type: "thresholdLibrary.needsRevision";
|
|
15578
15760
|
ids: {
|
|
15579
15761
|
thresholdItemId: string;
|
|
15762
|
+
hallItemId: string;
|
|
15580
15763
|
};
|
|
15581
15764
|
} | {
|
|
15582
15765
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -16487,58 +16670,73 @@ export declare const ArchivedPendingMediaSchema: z.ZodDiscriminatedUnion<"status
|
|
|
16487
16670
|
type: z.ZodLiteral<"thresholdLibrary.approved">;
|
|
16488
16671
|
ids: z.ZodObject<{
|
|
16489
16672
|
thresholdItemId: z.ZodString;
|
|
16673
|
+
hallItemId: z.ZodString;
|
|
16490
16674
|
}, "strict", z.ZodTypeAny, {
|
|
16491
16675
|
thresholdItemId: string;
|
|
16676
|
+
hallItemId: string;
|
|
16492
16677
|
}, {
|
|
16493
16678
|
thresholdItemId: string;
|
|
16679
|
+
hallItemId: string;
|
|
16494
16680
|
}>;
|
|
16495
16681
|
}, "strict", z.ZodTypeAny, {
|
|
16496
16682
|
type: "thresholdLibrary.approved";
|
|
16497
16683
|
ids: {
|
|
16498
16684
|
thresholdItemId: string;
|
|
16685
|
+
hallItemId: string;
|
|
16499
16686
|
};
|
|
16500
16687
|
}, {
|
|
16501
16688
|
type: "thresholdLibrary.approved";
|
|
16502
16689
|
ids: {
|
|
16503
16690
|
thresholdItemId: string;
|
|
16691
|
+
hallItemId: string;
|
|
16504
16692
|
};
|
|
16505
16693
|
}>, z.ZodObject<{
|
|
16506
16694
|
type: z.ZodLiteral<"thresholdLibrary.rejected">;
|
|
16507
16695
|
ids: z.ZodObject<{
|
|
16508
16696
|
thresholdItemId: z.ZodString;
|
|
16697
|
+
hallItemId: z.ZodString;
|
|
16509
16698
|
}, "strict", z.ZodTypeAny, {
|
|
16510
16699
|
thresholdItemId: string;
|
|
16700
|
+
hallItemId: string;
|
|
16511
16701
|
}, {
|
|
16512
16702
|
thresholdItemId: string;
|
|
16703
|
+
hallItemId: string;
|
|
16513
16704
|
}>;
|
|
16514
16705
|
}, "strict", z.ZodTypeAny, {
|
|
16515
16706
|
type: "thresholdLibrary.rejected";
|
|
16516
16707
|
ids: {
|
|
16517
16708
|
thresholdItemId: string;
|
|
16709
|
+
hallItemId: string;
|
|
16518
16710
|
};
|
|
16519
16711
|
}, {
|
|
16520
16712
|
type: "thresholdLibrary.rejected";
|
|
16521
16713
|
ids: {
|
|
16522
16714
|
thresholdItemId: string;
|
|
16715
|
+
hallItemId: string;
|
|
16523
16716
|
};
|
|
16524
16717
|
}>, z.ZodObject<{
|
|
16525
16718
|
type: z.ZodLiteral<"thresholdLibrary.needsRevision">;
|
|
16526
16719
|
ids: z.ZodObject<{
|
|
16527
16720
|
thresholdItemId: z.ZodString;
|
|
16721
|
+
hallItemId: z.ZodString;
|
|
16528
16722
|
}, "strict", z.ZodTypeAny, {
|
|
16529
16723
|
thresholdItemId: string;
|
|
16724
|
+
hallItemId: string;
|
|
16530
16725
|
}, {
|
|
16531
16726
|
thresholdItemId: string;
|
|
16727
|
+
hallItemId: string;
|
|
16532
16728
|
}>;
|
|
16533
16729
|
}, "strict", z.ZodTypeAny, {
|
|
16534
16730
|
type: "thresholdLibrary.needsRevision";
|
|
16535
16731
|
ids: {
|
|
16536
16732
|
thresholdItemId: string;
|
|
16733
|
+
hallItemId: string;
|
|
16537
16734
|
};
|
|
16538
16735
|
}, {
|
|
16539
16736
|
type: "thresholdLibrary.needsRevision";
|
|
16540
16737
|
ids: {
|
|
16541
16738
|
thresholdItemId: string;
|
|
16739
|
+
hallItemId: string;
|
|
16542
16740
|
};
|
|
16543
16741
|
}>, z.ZodObject<{
|
|
16544
16742
|
type: z.ZodLiteral<"hallLibrary.preferenceUpdated">;
|
|
@@ -16929,16 +17127,19 @@ export declare const ArchivedPendingMediaSchema: z.ZodDiscriminatedUnion<"status
|
|
|
16929
17127
|
type: "thresholdLibrary.approved";
|
|
16930
17128
|
ids: {
|
|
16931
17129
|
thresholdItemId: string;
|
|
17130
|
+
hallItemId: string;
|
|
16932
17131
|
};
|
|
16933
17132
|
} | {
|
|
16934
17133
|
type: "thresholdLibrary.rejected";
|
|
16935
17134
|
ids: {
|
|
16936
17135
|
thresholdItemId: string;
|
|
17136
|
+
hallItemId: string;
|
|
16937
17137
|
};
|
|
16938
17138
|
} | {
|
|
16939
17139
|
type: "thresholdLibrary.needsRevision";
|
|
16940
17140
|
ids: {
|
|
16941
17141
|
thresholdItemId: string;
|
|
17142
|
+
hallItemId: string;
|
|
16942
17143
|
};
|
|
16943
17144
|
} | {
|
|
16944
17145
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -17201,16 +17402,19 @@ export declare const ArchivedPendingMediaSchema: z.ZodDiscriminatedUnion<"status
|
|
|
17201
17402
|
type: "thresholdLibrary.approved";
|
|
17202
17403
|
ids: {
|
|
17203
17404
|
thresholdItemId: string;
|
|
17405
|
+
hallItemId: string;
|
|
17204
17406
|
};
|
|
17205
17407
|
} | {
|
|
17206
17408
|
type: "thresholdLibrary.rejected";
|
|
17207
17409
|
ids: {
|
|
17208
17410
|
thresholdItemId: string;
|
|
17411
|
+
hallItemId: string;
|
|
17209
17412
|
};
|
|
17210
17413
|
} | {
|
|
17211
17414
|
type: "thresholdLibrary.needsRevision";
|
|
17212
17415
|
ids: {
|
|
17213
17416
|
thresholdItemId: string;
|
|
17417
|
+
hallItemId: string;
|
|
17214
17418
|
};
|
|
17215
17419
|
} | {
|
|
17216
17420
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -17512,16 +17716,19 @@ export declare const ArchivedPendingMediaSchema: z.ZodDiscriminatedUnion<"status
|
|
|
17512
17716
|
type: "thresholdLibrary.approved";
|
|
17513
17717
|
ids: {
|
|
17514
17718
|
thresholdItemId: string;
|
|
17719
|
+
hallItemId: string;
|
|
17515
17720
|
};
|
|
17516
17721
|
} | {
|
|
17517
17722
|
type: "thresholdLibrary.rejected";
|
|
17518
17723
|
ids: {
|
|
17519
17724
|
thresholdItemId: string;
|
|
17725
|
+
hallItemId: string;
|
|
17520
17726
|
};
|
|
17521
17727
|
} | {
|
|
17522
17728
|
type: "thresholdLibrary.needsRevision";
|
|
17523
17729
|
ids: {
|
|
17524
17730
|
thresholdItemId: string;
|
|
17731
|
+
hallItemId: string;
|
|
17525
17732
|
};
|
|
17526
17733
|
} | {
|
|
17527
17734
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -17808,16 +18015,19 @@ export declare const ArchivedPendingMediaSchema: z.ZodDiscriminatedUnion<"status
|
|
|
17808
18015
|
type: "thresholdLibrary.approved";
|
|
17809
18016
|
ids: {
|
|
17810
18017
|
thresholdItemId: string;
|
|
18018
|
+
hallItemId: string;
|
|
17811
18019
|
};
|
|
17812
18020
|
} | {
|
|
17813
18021
|
type: "thresholdLibrary.rejected";
|
|
17814
18022
|
ids: {
|
|
17815
18023
|
thresholdItemId: string;
|
|
18024
|
+
hallItemId: string;
|
|
17816
18025
|
};
|
|
17817
18026
|
} | {
|
|
17818
18027
|
type: "thresholdLibrary.needsRevision";
|
|
17819
18028
|
ids: {
|
|
17820
18029
|
thresholdItemId: string;
|
|
18030
|
+
hallItemId: string;
|
|
17821
18031
|
};
|
|
17822
18032
|
} | {
|
|
17823
18033
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -18819,58 +19029,73 @@ export declare const ArchivedPendingMediaSchema: z.ZodDiscriminatedUnion<"status
|
|
|
18819
19029
|
type: z.ZodLiteral<"thresholdLibrary.approved">;
|
|
18820
19030
|
ids: z.ZodObject<{
|
|
18821
19031
|
thresholdItemId: z.ZodString;
|
|
19032
|
+
hallItemId: z.ZodString;
|
|
18822
19033
|
}, "strict", z.ZodTypeAny, {
|
|
18823
19034
|
thresholdItemId: string;
|
|
19035
|
+
hallItemId: string;
|
|
18824
19036
|
}, {
|
|
18825
19037
|
thresholdItemId: string;
|
|
19038
|
+
hallItemId: string;
|
|
18826
19039
|
}>;
|
|
18827
19040
|
}, "strict", z.ZodTypeAny, {
|
|
18828
19041
|
type: "thresholdLibrary.approved";
|
|
18829
19042
|
ids: {
|
|
18830
19043
|
thresholdItemId: string;
|
|
19044
|
+
hallItemId: string;
|
|
18831
19045
|
};
|
|
18832
19046
|
}, {
|
|
18833
19047
|
type: "thresholdLibrary.approved";
|
|
18834
19048
|
ids: {
|
|
18835
19049
|
thresholdItemId: string;
|
|
19050
|
+
hallItemId: string;
|
|
18836
19051
|
};
|
|
18837
19052
|
}>, z.ZodObject<{
|
|
18838
19053
|
type: z.ZodLiteral<"thresholdLibrary.rejected">;
|
|
18839
19054
|
ids: z.ZodObject<{
|
|
18840
19055
|
thresholdItemId: z.ZodString;
|
|
19056
|
+
hallItemId: z.ZodString;
|
|
18841
19057
|
}, "strict", z.ZodTypeAny, {
|
|
18842
19058
|
thresholdItemId: string;
|
|
19059
|
+
hallItemId: string;
|
|
18843
19060
|
}, {
|
|
18844
19061
|
thresholdItemId: string;
|
|
19062
|
+
hallItemId: string;
|
|
18845
19063
|
}>;
|
|
18846
19064
|
}, "strict", z.ZodTypeAny, {
|
|
18847
19065
|
type: "thresholdLibrary.rejected";
|
|
18848
19066
|
ids: {
|
|
18849
19067
|
thresholdItemId: string;
|
|
19068
|
+
hallItemId: string;
|
|
18850
19069
|
};
|
|
18851
19070
|
}, {
|
|
18852
19071
|
type: "thresholdLibrary.rejected";
|
|
18853
19072
|
ids: {
|
|
18854
19073
|
thresholdItemId: string;
|
|
19074
|
+
hallItemId: string;
|
|
18855
19075
|
};
|
|
18856
19076
|
}>, z.ZodObject<{
|
|
18857
19077
|
type: z.ZodLiteral<"thresholdLibrary.needsRevision">;
|
|
18858
19078
|
ids: z.ZodObject<{
|
|
18859
19079
|
thresholdItemId: z.ZodString;
|
|
19080
|
+
hallItemId: z.ZodString;
|
|
18860
19081
|
}, "strict", z.ZodTypeAny, {
|
|
18861
19082
|
thresholdItemId: string;
|
|
19083
|
+
hallItemId: string;
|
|
18862
19084
|
}, {
|
|
18863
19085
|
thresholdItemId: string;
|
|
19086
|
+
hallItemId: string;
|
|
18864
19087
|
}>;
|
|
18865
19088
|
}, "strict", z.ZodTypeAny, {
|
|
18866
19089
|
type: "thresholdLibrary.needsRevision";
|
|
18867
19090
|
ids: {
|
|
18868
19091
|
thresholdItemId: string;
|
|
19092
|
+
hallItemId: string;
|
|
18869
19093
|
};
|
|
18870
19094
|
}, {
|
|
18871
19095
|
type: "thresholdLibrary.needsRevision";
|
|
18872
19096
|
ids: {
|
|
18873
19097
|
thresholdItemId: string;
|
|
19098
|
+
hallItemId: string;
|
|
18874
19099
|
};
|
|
18875
19100
|
}>, z.ZodObject<{
|
|
18876
19101
|
type: z.ZodLiteral<"hallLibrary.preferenceUpdated">;
|
|
@@ -19261,16 +19486,19 @@ export declare const ArchivedPendingMediaSchema: z.ZodDiscriminatedUnion<"status
|
|
|
19261
19486
|
type: "thresholdLibrary.approved";
|
|
19262
19487
|
ids: {
|
|
19263
19488
|
thresholdItemId: string;
|
|
19489
|
+
hallItemId: string;
|
|
19264
19490
|
};
|
|
19265
19491
|
} | {
|
|
19266
19492
|
type: "thresholdLibrary.rejected";
|
|
19267
19493
|
ids: {
|
|
19268
19494
|
thresholdItemId: string;
|
|
19495
|
+
hallItemId: string;
|
|
19269
19496
|
};
|
|
19270
19497
|
} | {
|
|
19271
19498
|
type: "thresholdLibrary.needsRevision";
|
|
19272
19499
|
ids: {
|
|
19273
19500
|
thresholdItemId: string;
|
|
19501
|
+
hallItemId: string;
|
|
19274
19502
|
};
|
|
19275
19503
|
} | {
|
|
19276
19504
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -19533,16 +19761,19 @@ export declare const ArchivedPendingMediaSchema: z.ZodDiscriminatedUnion<"status
|
|
|
19533
19761
|
type: "thresholdLibrary.approved";
|
|
19534
19762
|
ids: {
|
|
19535
19763
|
thresholdItemId: string;
|
|
19764
|
+
hallItemId: string;
|
|
19536
19765
|
};
|
|
19537
19766
|
} | {
|
|
19538
19767
|
type: "thresholdLibrary.rejected";
|
|
19539
19768
|
ids: {
|
|
19540
19769
|
thresholdItemId: string;
|
|
19770
|
+
hallItemId: string;
|
|
19541
19771
|
};
|
|
19542
19772
|
} | {
|
|
19543
19773
|
type: "thresholdLibrary.needsRevision";
|
|
19544
19774
|
ids: {
|
|
19545
19775
|
thresholdItemId: string;
|
|
19776
|
+
hallItemId: string;
|
|
19546
19777
|
};
|
|
19547
19778
|
} | {
|
|
19548
19779
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -19855,16 +20086,19 @@ export declare const ArchivedPendingMediaSchema: z.ZodDiscriminatedUnion<"status
|
|
|
19855
20086
|
type: "thresholdLibrary.approved";
|
|
19856
20087
|
ids: {
|
|
19857
20088
|
thresholdItemId: string;
|
|
20089
|
+
hallItemId: string;
|
|
19858
20090
|
};
|
|
19859
20091
|
} | {
|
|
19860
20092
|
type: "thresholdLibrary.rejected";
|
|
19861
20093
|
ids: {
|
|
19862
20094
|
thresholdItemId: string;
|
|
20095
|
+
hallItemId: string;
|
|
19863
20096
|
};
|
|
19864
20097
|
} | {
|
|
19865
20098
|
type: "thresholdLibrary.needsRevision";
|
|
19866
20099
|
ids: {
|
|
19867
20100
|
thresholdItemId: string;
|
|
20101
|
+
hallItemId: string;
|
|
19868
20102
|
};
|
|
19869
20103
|
} | {
|
|
19870
20104
|
type: "hallLibrary.preferenceUpdated";
|
|
@@ -20154,16 +20388,19 @@ export declare const ArchivedPendingMediaSchema: z.ZodDiscriminatedUnion<"status
|
|
|
20154
20388
|
type: "thresholdLibrary.approved";
|
|
20155
20389
|
ids: {
|
|
20156
20390
|
thresholdItemId: string;
|
|
20391
|
+
hallItemId: string;
|
|
20157
20392
|
};
|
|
20158
20393
|
} | {
|
|
20159
20394
|
type: "thresholdLibrary.rejected";
|
|
20160
20395
|
ids: {
|
|
20161
20396
|
thresholdItemId: string;
|
|
20397
|
+
hallItemId: string;
|
|
20162
20398
|
};
|
|
20163
20399
|
} | {
|
|
20164
20400
|
type: "thresholdLibrary.needsRevision";
|
|
20165
20401
|
ids: {
|
|
20166
20402
|
thresholdItemId: string;
|
|
20403
|
+
hallItemId: string;
|
|
20167
20404
|
};
|
|
20168
20405
|
} | {
|
|
20169
20406
|
type: "hallLibrary.preferenceUpdated";
|