@igstack/app-catalog-backend-core 0.18.3 → 0.18.4-alpha-20260904223123
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/db/syncAppCatalog.mjs +1 -2
- package/dist/db/syncAppCatalog.mjs.map +1 -1
- package/dist/generated/prisma/internal/class.mjs +4 -4
- package/dist/generated/prisma/internal/class.mjs.map +1 -1
- package/dist/generated/prisma/internal/prismaNamespace.d.mts +2 -3
- package/dist/generated/prisma/internal/prismaNamespace.d.mts.map +1 -1
- package/dist/generated/prisma/models/DbResource.d.mts +40 -82
- package/dist/generated/prisma/models/DbResource.d.mts.map +1 -1
- package/dist/generated/prisma/models.d.mts +1 -1
- package/dist/index.d.mts +2 -2
- package/dist/modules/appCatalog/service.d.mts.map +1 -1
- package/dist/modules/appCatalog/service.mjs +1 -2
- package/dist/modules/appCatalog/service.mjs.map +1 -1
- package/dist/modules/lighthouseKeeper/tools.d.mts +1 -1
- package/dist/modules/lighthouseKeeper/tools.mjs +1 -1
- package/dist/modules/lighthouseKeeper/tools.mjs.map +1 -1
- package/dist/types/common/appCatalogTypes.d.mts +2 -4
- package/dist/types/common/appCatalogTypes.d.mts.map +1 -1
- package/dist/types/common/approvalMethodTypes.d.mts +3 -2
- package/dist/types/common/approvalMethodTypes.d.mts.map +1 -1
- package/dist/types/common/personGroupTypes.d.mts +7 -1
- package/dist/types/common/personGroupTypes.d.mts.map +1 -1
- package/package.json +4 -4
- package/prisma/schema.prisma +2 -2
- package/src/db/syncAppCatalog.ts +1 -2
- package/src/generated/prisma/internal/class.ts +4 -4
- package/src/generated/prisma/internal/prismaNamespace.ts +1 -2
- package/src/generated/prisma/internal/prismaNamespaceBrowser.ts +1 -2
- package/src/generated/prisma/models/DbResource.ts +40 -83
- package/src/modules/appCatalog/service.ts +1 -4
- package/src/modules/lighthouseKeeper/tools.ts +1 -1
- package/src/types/common/appCatalogTypes.ts +2 -4
- package/src/types/common/approvalMethodTypes.ts +3 -2
- package/src/types/common/personGroupTypes.ts +7 -0
|
@@ -40,7 +40,6 @@ export type DbResourceMinAggregateOutputType = {
|
|
|
40
40
|
aiMemory: string | null
|
|
41
41
|
parentSlug: string | null
|
|
42
42
|
tier: string | null
|
|
43
|
-
familySlug: string | null
|
|
44
43
|
ownerPersonSlug: string | null
|
|
45
44
|
accessComments: string | null
|
|
46
45
|
lastCheckedAt: Date | null
|
|
@@ -64,7 +63,6 @@ export type DbResourceMaxAggregateOutputType = {
|
|
|
64
63
|
aiMemory: string | null
|
|
65
64
|
parentSlug: string | null
|
|
66
65
|
tier: string | null
|
|
67
|
-
familySlug: string | null
|
|
68
66
|
ownerPersonSlug: string | null
|
|
69
67
|
accessComments: string | null
|
|
70
68
|
lastCheckedAt: Date | null
|
|
@@ -98,10 +96,9 @@ export type DbResourceCountAggregateOutputType = {
|
|
|
98
96
|
tiers:PrismaJson.TierVariant[]
|
|
99
97
|
parentSlug: number
|
|
100
98
|
tier: number
|
|
101
|
-
familySlug: number
|
|
102
99
|
aliases: number
|
|
103
100
|
ownerPersonSlug: number
|
|
104
|
-
|
|
101
|
+
approverSlugs: number
|
|
105
102
|
accessComments: number
|
|
106
103
|
extra:PrismaJson.SubResourceExtra
|
|
107
104
|
lastCheckedAt: number
|
|
@@ -127,7 +124,6 @@ export type DbResourceMinAggregateInputType = {
|
|
|
127
124
|
aiMemory?: true
|
|
128
125
|
parentSlug?: true
|
|
129
126
|
tier?: true
|
|
130
|
-
familySlug?: true
|
|
131
127
|
ownerPersonSlug?: true
|
|
132
128
|
accessComments?: true
|
|
133
129
|
lastCheckedAt?: true
|
|
@@ -151,7 +147,6 @@ export type DbResourceMaxAggregateInputType = {
|
|
|
151
147
|
aiMemory?: true
|
|
152
148
|
parentSlug?: true
|
|
153
149
|
tier?: true
|
|
154
|
-
familySlug?: true
|
|
155
150
|
ownerPersonSlug?: true
|
|
156
151
|
accessComments?: true
|
|
157
152
|
lastCheckedAt?: true
|
|
@@ -185,10 +180,9 @@ export type DbResourceCountAggregateInputType = {
|
|
|
185
180
|
tiers?: true
|
|
186
181
|
parentSlug?: true
|
|
187
182
|
tier?: true
|
|
188
|
-
familySlug?: true
|
|
189
183
|
aliases?: true
|
|
190
184
|
ownerPersonSlug?: true
|
|
191
|
-
|
|
185
|
+
approverSlugs?: true
|
|
192
186
|
accessComments?: true
|
|
193
187
|
extra?: true
|
|
194
188
|
lastCheckedAt?: true
|
|
@@ -295,10 +289,9 @@ export type DbResourceGroupByOutputType = {
|
|
|
295
289
|
tiers:PrismaJson.TierVariant[] | null
|
|
296
290
|
parentSlug: string | null
|
|
297
291
|
tier: string | null
|
|
298
|
-
familySlug: string | null
|
|
299
292
|
aliases: string[]
|
|
300
293
|
ownerPersonSlug: string | null
|
|
301
|
-
|
|
294
|
+
approverSlugs: string[]
|
|
302
295
|
accessComments: string | null
|
|
303
296
|
extra:PrismaJson.SubResourceExtra | null
|
|
304
297
|
lastCheckedAt: Date | null
|
|
@@ -353,10 +346,9 @@ export type DbResourceWhereInput = {
|
|
|
353
346
|
tiers?: Prisma.JsonNullableFilter<"DbResource">
|
|
354
347
|
parentSlug?: Prisma.StringNullableFilter<"DbResource"> | string | null
|
|
355
348
|
tier?: Prisma.StringNullableFilter<"DbResource"> | string | null
|
|
356
|
-
familySlug?: Prisma.StringNullableFilter<"DbResource"> | string | null
|
|
357
349
|
aliases?: Prisma.StringNullableListFilter<"DbResource">
|
|
358
350
|
ownerPersonSlug?: Prisma.StringNullableFilter<"DbResource"> | string | null
|
|
359
|
-
|
|
351
|
+
approverSlugs?: Prisma.StringNullableListFilter<"DbResource">
|
|
360
352
|
accessComments?: Prisma.StringNullableFilter<"DbResource"> | string | null
|
|
361
353
|
extra?: Prisma.JsonNullableFilter<"DbResource">
|
|
362
354
|
lastCheckedAt?: Prisma.DateTimeNullableFilter<"DbResource"> | Date | string | null
|
|
@@ -393,10 +385,9 @@ export type DbResourceOrderByWithRelationInput = {
|
|
|
393
385
|
tiers?: Prisma.SortOrderInput | Prisma.SortOrder
|
|
394
386
|
parentSlug?: Prisma.SortOrderInput | Prisma.SortOrder
|
|
395
387
|
tier?: Prisma.SortOrderInput | Prisma.SortOrder
|
|
396
|
-
familySlug?: Prisma.SortOrderInput | Prisma.SortOrder
|
|
397
388
|
aliases?: Prisma.SortOrder
|
|
398
389
|
ownerPersonSlug?: Prisma.SortOrderInput | Prisma.SortOrder
|
|
399
|
-
|
|
390
|
+
approverSlugs?: Prisma.SortOrder
|
|
400
391
|
accessComments?: Prisma.SortOrderInput | Prisma.SortOrder
|
|
401
392
|
extra?: Prisma.SortOrderInput | Prisma.SortOrder
|
|
402
393
|
lastCheckedAt?: Prisma.SortOrderInput | Prisma.SortOrder
|
|
@@ -436,10 +427,9 @@ export type DbResourceWhereUniqueInput = Prisma.AtLeast<{
|
|
|
436
427
|
tiers?: Prisma.JsonNullableFilter<"DbResource">
|
|
437
428
|
parentSlug?: Prisma.StringNullableFilter<"DbResource"> | string | null
|
|
438
429
|
tier?: Prisma.StringNullableFilter<"DbResource"> | string | null
|
|
439
|
-
familySlug?: Prisma.StringNullableFilter<"DbResource"> | string | null
|
|
440
430
|
aliases?: Prisma.StringNullableListFilter<"DbResource">
|
|
441
431
|
ownerPersonSlug?: Prisma.StringNullableFilter<"DbResource"> | string | null
|
|
442
|
-
|
|
432
|
+
approverSlugs?: Prisma.StringNullableListFilter<"DbResource">
|
|
443
433
|
accessComments?: Prisma.StringNullableFilter<"DbResource"> | string | null
|
|
444
434
|
extra?: Prisma.JsonNullableFilter<"DbResource">
|
|
445
435
|
lastCheckedAt?: Prisma.DateTimeNullableFilter<"DbResource"> | Date | string | null
|
|
@@ -476,10 +466,9 @@ export type DbResourceOrderByWithAggregationInput = {
|
|
|
476
466
|
tiers?: Prisma.SortOrderInput | Prisma.SortOrder
|
|
477
467
|
parentSlug?: Prisma.SortOrderInput | Prisma.SortOrder
|
|
478
468
|
tier?: Prisma.SortOrderInput | Prisma.SortOrder
|
|
479
|
-
familySlug?: Prisma.SortOrderInput | Prisma.SortOrder
|
|
480
469
|
aliases?: Prisma.SortOrder
|
|
481
470
|
ownerPersonSlug?: Prisma.SortOrderInput | Prisma.SortOrder
|
|
482
|
-
|
|
471
|
+
approverSlugs?: Prisma.SortOrder
|
|
483
472
|
accessComments?: Prisma.SortOrderInput | Prisma.SortOrder
|
|
484
473
|
extra?: Prisma.SortOrderInput | Prisma.SortOrder
|
|
485
474
|
lastCheckedAt?: Prisma.SortOrderInput | Prisma.SortOrder
|
|
@@ -519,10 +508,9 @@ export type DbResourceScalarWhereWithAggregatesInput = {
|
|
|
519
508
|
tiers?: Prisma.JsonNullableWithAggregatesFilter<"DbResource">
|
|
520
509
|
parentSlug?: Prisma.StringNullableWithAggregatesFilter<"DbResource"> | string | null
|
|
521
510
|
tier?: Prisma.StringNullableWithAggregatesFilter<"DbResource"> | string | null
|
|
522
|
-
familySlug?: Prisma.StringNullableWithAggregatesFilter<"DbResource"> | string | null
|
|
523
511
|
aliases?: Prisma.StringNullableListFilter<"DbResource">
|
|
524
512
|
ownerPersonSlug?: Prisma.StringNullableWithAggregatesFilter<"DbResource"> | string | null
|
|
525
|
-
|
|
513
|
+
approverSlugs?: Prisma.StringNullableListFilter<"DbResource">
|
|
526
514
|
accessComments?: Prisma.StringNullableWithAggregatesFilter<"DbResource"> | string | null
|
|
527
515
|
extra?: Prisma.JsonNullableWithAggregatesFilter<"DbResource">
|
|
528
516
|
lastCheckedAt?: Prisma.DateTimeNullableWithAggregatesFilter<"DbResource"> | Date | string | null
|
|
@@ -555,10 +543,9 @@ export type DbResourceCreateInput = {
|
|
|
555
543
|
urlIssues?: Prisma.DbResourceCreateurlIssuesInput | string[]
|
|
556
544
|
tiers?:PrismaJson.TierVariant[] | Prisma.NullableJsonNullValueInput
|
|
557
545
|
tier?: string | null
|
|
558
|
-
familySlug?: string | null
|
|
559
546
|
aliases?: Prisma.DbResourceCreatealiasesInput | string[]
|
|
560
547
|
ownerPersonSlug?: string | null
|
|
561
|
-
|
|
548
|
+
approverSlugs?: Prisma.DbResourceCreateapproverSlugsInput | string[]
|
|
562
549
|
accessComments?: string | null
|
|
563
550
|
extra?:PrismaJson.SubResourceExtra | Prisma.NullableJsonNullValueInput
|
|
564
551
|
lastCheckedAt?: Date | string | null
|
|
@@ -595,10 +582,9 @@ export type DbResourceUncheckedCreateInput = {
|
|
|
595
582
|
tiers?:PrismaJson.TierVariant[] | Prisma.NullableJsonNullValueInput
|
|
596
583
|
parentSlug?: string | null
|
|
597
584
|
tier?: string | null
|
|
598
|
-
familySlug?: string | null
|
|
599
585
|
aliases?: Prisma.DbResourceCreatealiasesInput | string[]
|
|
600
586
|
ownerPersonSlug?: string | null
|
|
601
|
-
|
|
587
|
+
approverSlugs?: Prisma.DbResourceCreateapproverSlugsInput | string[]
|
|
602
588
|
accessComments?: string | null
|
|
603
589
|
extra?:PrismaJson.SubResourceExtra | Prisma.NullableJsonNullValueInput
|
|
604
590
|
lastCheckedAt?: Date | string | null
|
|
@@ -633,10 +619,9 @@ export type DbResourceUpdateInput = {
|
|
|
633
619
|
urlIssues?: Prisma.DbResourceUpdateurlIssuesInput | string[]
|
|
634
620
|
tiers?:PrismaJson.TierVariant[] | Prisma.NullableJsonNullValueInput
|
|
635
621
|
tier?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
636
|
-
familySlug?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
637
622
|
aliases?: Prisma.DbResourceUpdatealiasesInput | string[]
|
|
638
623
|
ownerPersonSlug?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
639
|
-
|
|
624
|
+
approverSlugs?: Prisma.DbResourceUpdateapproverSlugsInput | string[]
|
|
640
625
|
accessComments?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
641
626
|
extra?:PrismaJson.SubResourceExtra | Prisma.NullableJsonNullValueInput
|
|
642
627
|
lastCheckedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -673,10 +658,9 @@ export type DbResourceUncheckedUpdateInput = {
|
|
|
673
658
|
tiers?:PrismaJson.TierVariant[] | Prisma.NullableJsonNullValueInput
|
|
674
659
|
parentSlug?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
675
660
|
tier?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
676
|
-
familySlug?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
677
661
|
aliases?: Prisma.DbResourceUpdatealiasesInput | string[]
|
|
678
662
|
ownerPersonSlug?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
679
|
-
|
|
663
|
+
approverSlugs?: Prisma.DbResourceUpdateapproverSlugsInput | string[]
|
|
680
664
|
accessComments?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
681
665
|
extra?:PrismaJson.SubResourceExtra | Prisma.NullableJsonNullValueInput
|
|
682
666
|
lastCheckedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -712,10 +696,9 @@ export type DbResourceCreateManyInput = {
|
|
|
712
696
|
tiers?:PrismaJson.TierVariant[] | Prisma.NullableJsonNullValueInput
|
|
713
697
|
parentSlug?: string | null
|
|
714
698
|
tier?: string | null
|
|
715
|
-
familySlug?: string | null
|
|
716
699
|
aliases?: Prisma.DbResourceCreatealiasesInput | string[]
|
|
717
700
|
ownerPersonSlug?: string | null
|
|
718
|
-
|
|
701
|
+
approverSlugs?: Prisma.DbResourceCreateapproverSlugsInput | string[]
|
|
719
702
|
accessComments?: string | null
|
|
720
703
|
extra?:PrismaJson.SubResourceExtra | Prisma.NullableJsonNullValueInput
|
|
721
704
|
lastCheckedAt?: Date | string | null
|
|
@@ -748,10 +731,9 @@ export type DbResourceUpdateManyMutationInput = {
|
|
|
748
731
|
urlIssues?: Prisma.DbResourceUpdateurlIssuesInput | string[]
|
|
749
732
|
tiers?:PrismaJson.TierVariant[] | Prisma.NullableJsonNullValueInput
|
|
750
733
|
tier?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
751
|
-
familySlug?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
752
734
|
aliases?: Prisma.DbResourceUpdatealiasesInput | string[]
|
|
753
735
|
ownerPersonSlug?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
754
|
-
|
|
736
|
+
approverSlugs?: Prisma.DbResourceUpdateapproverSlugsInput | string[]
|
|
755
737
|
accessComments?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
756
738
|
extra?:PrismaJson.SubResourceExtra | Prisma.NullableJsonNullValueInput
|
|
757
739
|
lastCheckedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -785,10 +767,9 @@ export type DbResourceUncheckedUpdateManyInput = {
|
|
|
785
767
|
tiers?:PrismaJson.TierVariant[] | Prisma.NullableJsonNullValueInput
|
|
786
768
|
parentSlug?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
787
769
|
tier?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
788
|
-
familySlug?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
789
770
|
aliases?: Prisma.DbResourceUpdatealiasesInput | string[]
|
|
790
771
|
ownerPersonSlug?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
791
|
-
|
|
772
|
+
approverSlugs?: Prisma.DbResourceUpdateapproverSlugsInput | string[]
|
|
792
773
|
accessComments?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
793
774
|
extra?:PrismaJson.SubResourceExtra | Prisma.NullableJsonNullValueInput
|
|
794
775
|
lastCheckedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -837,10 +818,9 @@ export type DbResourceCountOrderByAggregateInput = {
|
|
|
837
818
|
tiers?: Prisma.SortOrder
|
|
838
819
|
parentSlug?: Prisma.SortOrder
|
|
839
820
|
tier?: Prisma.SortOrder
|
|
840
|
-
familySlug?: Prisma.SortOrder
|
|
841
821
|
aliases?: Prisma.SortOrder
|
|
842
822
|
ownerPersonSlug?: Prisma.SortOrder
|
|
843
|
-
|
|
823
|
+
approverSlugs?: Prisma.SortOrder
|
|
844
824
|
accessComments?: Prisma.SortOrder
|
|
845
825
|
extra?: Prisma.SortOrder
|
|
846
826
|
lastCheckedAt?: Prisma.SortOrder
|
|
@@ -864,7 +844,6 @@ export type DbResourceMaxOrderByAggregateInput = {
|
|
|
864
844
|
aiMemory?: Prisma.SortOrder
|
|
865
845
|
parentSlug?: Prisma.SortOrder
|
|
866
846
|
tier?: Prisma.SortOrder
|
|
867
|
-
familySlug?: Prisma.SortOrder
|
|
868
847
|
ownerPersonSlug?: Prisma.SortOrder
|
|
869
848
|
accessComments?: Prisma.SortOrder
|
|
870
849
|
lastCheckedAt?: Prisma.SortOrder
|
|
@@ -888,7 +867,6 @@ export type DbResourceMinOrderByAggregateInput = {
|
|
|
888
867
|
aiMemory?: Prisma.SortOrder
|
|
889
868
|
parentSlug?: Prisma.SortOrder
|
|
890
869
|
tier?: Prisma.SortOrder
|
|
891
|
-
familySlug?: Prisma.SortOrder
|
|
892
870
|
ownerPersonSlug?: Prisma.SortOrder
|
|
893
871
|
accessComments?: Prisma.SortOrder
|
|
894
872
|
lastCheckedAt?: Prisma.SortOrder
|
|
@@ -927,7 +905,7 @@ export type DbResourceCreatealiasesInput = {
|
|
|
927
905
|
set: string[]
|
|
928
906
|
}
|
|
929
907
|
|
|
930
|
-
export type
|
|
908
|
+
export type DbResourceCreateapproverSlugsInput = {
|
|
931
909
|
set: string[]
|
|
932
910
|
}
|
|
933
911
|
|
|
@@ -981,7 +959,7 @@ export type DbResourceUpdatealiasesInput = {
|
|
|
981
959
|
push?: string | string[]
|
|
982
960
|
}
|
|
983
961
|
|
|
984
|
-
export type
|
|
962
|
+
export type DbResourceUpdateapproverSlugsInput = {
|
|
985
963
|
set?: string[]
|
|
986
964
|
push?: string | string[]
|
|
987
965
|
}
|
|
@@ -1061,10 +1039,9 @@ export type DbResourceCreateWithoutChildrenInput = {
|
|
|
1061
1039
|
urlIssues?: Prisma.DbResourceCreateurlIssuesInput | string[]
|
|
1062
1040
|
tiers?:PrismaJson.TierVariant[] | Prisma.NullableJsonNullValueInput
|
|
1063
1041
|
tier?: string | null
|
|
1064
|
-
familySlug?: string | null
|
|
1065
1042
|
aliases?: Prisma.DbResourceCreatealiasesInput | string[]
|
|
1066
1043
|
ownerPersonSlug?: string | null
|
|
1067
|
-
|
|
1044
|
+
approverSlugs?: Prisma.DbResourceCreateapproverSlugsInput | string[]
|
|
1068
1045
|
accessComments?: string | null
|
|
1069
1046
|
extra?:PrismaJson.SubResourceExtra | Prisma.NullableJsonNullValueInput
|
|
1070
1047
|
lastCheckedAt?: Date | string | null
|
|
@@ -1100,10 +1077,9 @@ export type DbResourceUncheckedCreateWithoutChildrenInput = {
|
|
|
1100
1077
|
tiers?:PrismaJson.TierVariant[] | Prisma.NullableJsonNullValueInput
|
|
1101
1078
|
parentSlug?: string | null
|
|
1102
1079
|
tier?: string | null
|
|
1103
|
-
familySlug?: string | null
|
|
1104
1080
|
aliases?: Prisma.DbResourceCreatealiasesInput | string[]
|
|
1105
1081
|
ownerPersonSlug?: string | null
|
|
1106
|
-
|
|
1082
|
+
approverSlugs?: Prisma.DbResourceCreateapproverSlugsInput | string[]
|
|
1107
1083
|
accessComments?: string | null
|
|
1108
1084
|
extra?:PrismaJson.SubResourceExtra | Prisma.NullableJsonNullValueInput
|
|
1109
1085
|
lastCheckedAt?: Date | string | null
|
|
@@ -1142,10 +1118,9 @@ export type DbResourceCreateWithoutParentInput = {
|
|
|
1142
1118
|
urlIssues?: Prisma.DbResourceCreateurlIssuesInput | string[]
|
|
1143
1119
|
tiers?:PrismaJson.TierVariant[] | Prisma.NullableJsonNullValueInput
|
|
1144
1120
|
tier?: string | null
|
|
1145
|
-
familySlug?: string | null
|
|
1146
1121
|
aliases?: Prisma.DbResourceCreatealiasesInput | string[]
|
|
1147
1122
|
ownerPersonSlug?: string | null
|
|
1148
|
-
|
|
1123
|
+
approverSlugs?: Prisma.DbResourceCreateapproverSlugsInput | string[]
|
|
1149
1124
|
accessComments?: string | null
|
|
1150
1125
|
extra?:PrismaJson.SubResourceExtra | Prisma.NullableJsonNullValueInput
|
|
1151
1126
|
lastCheckedAt?: Date | string | null
|
|
@@ -1180,10 +1155,9 @@ export type DbResourceUncheckedCreateWithoutParentInput = {
|
|
|
1180
1155
|
urlIssues?: Prisma.DbResourceCreateurlIssuesInput | string[]
|
|
1181
1156
|
tiers?:PrismaJson.TierVariant[] | Prisma.NullableJsonNullValueInput
|
|
1182
1157
|
tier?: string | null
|
|
1183
|
-
familySlug?: string | null
|
|
1184
1158
|
aliases?: Prisma.DbResourceCreatealiasesInput | string[]
|
|
1185
1159
|
ownerPersonSlug?: string | null
|
|
1186
|
-
|
|
1160
|
+
approverSlugs?: Prisma.DbResourceCreateapproverSlugsInput | string[]
|
|
1187
1161
|
accessComments?: string | null
|
|
1188
1162
|
extra?:PrismaJson.SubResourceExtra | Prisma.NullableJsonNullValueInput
|
|
1189
1163
|
lastCheckedAt?: Date | string | null
|
|
@@ -1239,10 +1213,9 @@ export type DbResourceUpdateWithoutChildrenInput = {
|
|
|
1239
1213
|
urlIssues?: Prisma.DbResourceUpdateurlIssuesInput | string[]
|
|
1240
1214
|
tiers?:PrismaJson.TierVariant[] | Prisma.NullableJsonNullValueInput
|
|
1241
1215
|
tier?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1242
|
-
familySlug?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1243
1216
|
aliases?: Prisma.DbResourceUpdatealiasesInput | string[]
|
|
1244
1217
|
ownerPersonSlug?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1245
|
-
|
|
1218
|
+
approverSlugs?: Prisma.DbResourceUpdateapproverSlugsInput | string[]
|
|
1246
1219
|
accessComments?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1247
1220
|
extra?:PrismaJson.SubResourceExtra | Prisma.NullableJsonNullValueInput
|
|
1248
1221
|
lastCheckedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -1278,10 +1251,9 @@ export type DbResourceUncheckedUpdateWithoutChildrenInput = {
|
|
|
1278
1251
|
tiers?:PrismaJson.TierVariant[] | Prisma.NullableJsonNullValueInput
|
|
1279
1252
|
parentSlug?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1280
1253
|
tier?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1281
|
-
familySlug?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1282
1254
|
aliases?: Prisma.DbResourceUpdatealiasesInput | string[]
|
|
1283
1255
|
ownerPersonSlug?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1284
|
-
|
|
1256
|
+
approverSlugs?: Prisma.DbResourceUpdateapproverSlugsInput | string[]
|
|
1285
1257
|
accessComments?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1286
1258
|
extra?:PrismaJson.SubResourceExtra | Prisma.NullableJsonNullValueInput
|
|
1287
1259
|
lastCheckedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -1335,10 +1307,9 @@ export type DbResourceScalarWhereInput = {
|
|
|
1335
1307
|
tiers?: Prisma.JsonNullableFilter<"DbResource">
|
|
1336
1308
|
parentSlug?: Prisma.StringNullableFilter<"DbResource"> | string | null
|
|
1337
1309
|
tier?: Prisma.StringNullableFilter<"DbResource"> | string | null
|
|
1338
|
-
familySlug?: Prisma.StringNullableFilter<"DbResource"> | string | null
|
|
1339
1310
|
aliases?: Prisma.StringNullableListFilter<"DbResource">
|
|
1340
1311
|
ownerPersonSlug?: Prisma.StringNullableFilter<"DbResource"> | string | null
|
|
1341
|
-
|
|
1312
|
+
approverSlugs?: Prisma.StringNullableListFilter<"DbResource">
|
|
1342
1313
|
accessComments?: Prisma.StringNullableFilter<"DbResource"> | string | null
|
|
1343
1314
|
extra?: Prisma.JsonNullableFilter<"DbResource">
|
|
1344
1315
|
lastCheckedAt?: Prisma.DateTimeNullableFilter<"DbResource"> | Date | string | null
|
|
@@ -1371,10 +1342,9 @@ export type DbResourceCreateWithoutSourceRefsInput = {
|
|
|
1371
1342
|
urlIssues?: Prisma.DbResourceCreateurlIssuesInput | string[]
|
|
1372
1343
|
tiers?:PrismaJson.TierVariant[] | Prisma.NullableJsonNullValueInput
|
|
1373
1344
|
tier?: string | null
|
|
1374
|
-
familySlug?: string | null
|
|
1375
1345
|
aliases?: Prisma.DbResourceCreatealiasesInput | string[]
|
|
1376
1346
|
ownerPersonSlug?: string | null
|
|
1377
|
-
|
|
1347
|
+
approverSlugs?: Prisma.DbResourceCreateapproverSlugsInput | string[]
|
|
1378
1348
|
accessComments?: string | null
|
|
1379
1349
|
extra?:PrismaJson.SubResourceExtra | Prisma.NullableJsonNullValueInput
|
|
1380
1350
|
lastCheckedAt?: Date | string | null
|
|
@@ -1410,10 +1380,9 @@ export type DbResourceUncheckedCreateWithoutSourceRefsInput = {
|
|
|
1410
1380
|
tiers?:PrismaJson.TierVariant[] | Prisma.NullableJsonNullValueInput
|
|
1411
1381
|
parentSlug?: string | null
|
|
1412
1382
|
tier?: string | null
|
|
1413
|
-
familySlug?: string | null
|
|
1414
1383
|
aliases?: Prisma.DbResourceCreatealiasesInput | string[]
|
|
1415
1384
|
ownerPersonSlug?: string | null
|
|
1416
|
-
|
|
1385
|
+
approverSlugs?: Prisma.DbResourceCreateapproverSlugsInput | string[]
|
|
1417
1386
|
accessComments?: string | null
|
|
1418
1387
|
extra?:PrismaJson.SubResourceExtra | Prisma.NullableJsonNullValueInput
|
|
1419
1388
|
lastCheckedAt?: Date | string | null
|
|
@@ -1463,10 +1432,9 @@ export type DbResourceUpdateWithoutSourceRefsInput = {
|
|
|
1463
1432
|
urlIssues?: Prisma.DbResourceUpdateurlIssuesInput | string[]
|
|
1464
1433
|
tiers?:PrismaJson.TierVariant[] | Prisma.NullableJsonNullValueInput
|
|
1465
1434
|
tier?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1466
|
-
familySlug?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1467
1435
|
aliases?: Prisma.DbResourceUpdatealiasesInput | string[]
|
|
1468
1436
|
ownerPersonSlug?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1469
|
-
|
|
1437
|
+
approverSlugs?: Prisma.DbResourceUpdateapproverSlugsInput | string[]
|
|
1470
1438
|
accessComments?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1471
1439
|
extra?:PrismaJson.SubResourceExtra | Prisma.NullableJsonNullValueInput
|
|
1472
1440
|
lastCheckedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -1502,10 +1470,9 @@ export type DbResourceUncheckedUpdateWithoutSourceRefsInput = {
|
|
|
1502
1470
|
tiers?:PrismaJson.TierVariant[] | Prisma.NullableJsonNullValueInput
|
|
1503
1471
|
parentSlug?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1504
1472
|
tier?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1505
|
-
familySlug?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1506
1473
|
aliases?: Prisma.DbResourceUpdatealiasesInput | string[]
|
|
1507
1474
|
ownerPersonSlug?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1508
|
-
|
|
1475
|
+
approverSlugs?: Prisma.DbResourceUpdateapproverSlugsInput | string[]
|
|
1509
1476
|
accessComments?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1510
1477
|
extra?:PrismaJson.SubResourceExtra | Prisma.NullableJsonNullValueInput
|
|
1511
1478
|
lastCheckedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -1539,10 +1506,9 @@ export type DbResourceCreateManyParentInput = {
|
|
|
1539
1506
|
urlIssues?: Prisma.DbResourceCreateurlIssuesInput | string[]
|
|
1540
1507
|
tiers?:PrismaJson.TierVariant[] | Prisma.NullableJsonNullValueInput
|
|
1541
1508
|
tier?: string | null
|
|
1542
|
-
familySlug?: string | null
|
|
1543
1509
|
aliases?: Prisma.DbResourceCreatealiasesInput | string[]
|
|
1544
1510
|
ownerPersonSlug?: string | null
|
|
1545
|
-
|
|
1511
|
+
approverSlugs?: Prisma.DbResourceCreateapproverSlugsInput | string[]
|
|
1546
1512
|
accessComments?: string | null
|
|
1547
1513
|
extra?:PrismaJson.SubResourceExtra | Prisma.NullableJsonNullValueInput
|
|
1548
1514
|
lastCheckedAt?: Date | string | null
|
|
@@ -1575,10 +1541,9 @@ export type DbResourceUpdateWithoutParentInput = {
|
|
|
1575
1541
|
urlIssues?: Prisma.DbResourceUpdateurlIssuesInput | string[]
|
|
1576
1542
|
tiers?:PrismaJson.TierVariant[] | Prisma.NullableJsonNullValueInput
|
|
1577
1543
|
tier?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1578
|
-
familySlug?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1579
1544
|
aliases?: Prisma.DbResourceUpdatealiasesInput | string[]
|
|
1580
1545
|
ownerPersonSlug?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1581
|
-
|
|
1546
|
+
approverSlugs?: Prisma.DbResourceUpdateapproverSlugsInput | string[]
|
|
1582
1547
|
accessComments?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1583
1548
|
extra?:PrismaJson.SubResourceExtra | Prisma.NullableJsonNullValueInput
|
|
1584
1549
|
lastCheckedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -1613,10 +1578,9 @@ export type DbResourceUncheckedUpdateWithoutParentInput = {
|
|
|
1613
1578
|
urlIssues?: Prisma.DbResourceUpdateurlIssuesInput | string[]
|
|
1614
1579
|
tiers?:PrismaJson.TierVariant[] | Prisma.NullableJsonNullValueInput
|
|
1615
1580
|
tier?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1616
|
-
familySlug?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1617
1581
|
aliases?: Prisma.DbResourceUpdatealiasesInput | string[]
|
|
1618
1582
|
ownerPersonSlug?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1619
|
-
|
|
1583
|
+
approverSlugs?: Prisma.DbResourceUpdateapproverSlugsInput | string[]
|
|
1620
1584
|
accessComments?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1621
1585
|
extra?:PrismaJson.SubResourceExtra | Prisma.NullableJsonNullValueInput
|
|
1622
1586
|
lastCheckedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -1651,10 +1615,9 @@ export type DbResourceUncheckedUpdateManyWithoutParentInput = {
|
|
|
1651
1615
|
urlIssues?: Prisma.DbResourceUpdateurlIssuesInput | string[]
|
|
1652
1616
|
tiers?:PrismaJson.TierVariant[] | Prisma.NullableJsonNullValueInput
|
|
1653
1617
|
tier?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1654
|
-
familySlug?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1655
1618
|
aliases?: Prisma.DbResourceUpdatealiasesInput | string[]
|
|
1656
1619
|
ownerPersonSlug?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1657
|
-
|
|
1620
|
+
approverSlugs?: Prisma.DbResourceUpdateapproverSlugsInput | string[]
|
|
1658
1621
|
accessComments?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
1659
1622
|
extra?:PrismaJson.SubResourceExtra | Prisma.NullableJsonNullValueInput
|
|
1660
1623
|
lastCheckedAt?: Prisma.NullableDateTimeFieldUpdateOperationsInput | Date | string | null
|
|
@@ -1728,10 +1691,9 @@ export type DbResourceSelect<ExtArgs extends runtime.Types.Extensions.InternalAr
|
|
|
1728
1691
|
tiers?: boolean
|
|
1729
1692
|
parentSlug?: boolean
|
|
1730
1693
|
tier?: boolean
|
|
1731
|
-
familySlug?: boolean
|
|
1732
1694
|
aliases?: boolean
|
|
1733
1695
|
ownerPersonSlug?: boolean
|
|
1734
|
-
|
|
1696
|
+
approverSlugs?: boolean
|
|
1735
1697
|
accessComments?: boolean
|
|
1736
1698
|
extra?: boolean
|
|
1737
1699
|
lastCheckedAt?: boolean
|
|
@@ -1769,10 +1731,9 @@ export type DbResourceSelectCreateManyAndReturn<ExtArgs extends runtime.Types.Ex
|
|
|
1769
1731
|
tiers?: boolean
|
|
1770
1732
|
parentSlug?: boolean
|
|
1771
1733
|
tier?: boolean
|
|
1772
|
-
familySlug?: boolean
|
|
1773
1734
|
aliases?: boolean
|
|
1774
1735
|
ownerPersonSlug?: boolean
|
|
1775
|
-
|
|
1736
|
+
approverSlugs?: boolean
|
|
1776
1737
|
accessComments?: boolean
|
|
1777
1738
|
extra?: boolean
|
|
1778
1739
|
lastCheckedAt?: boolean
|
|
@@ -1807,10 +1768,9 @@ export type DbResourceSelectUpdateManyAndReturn<ExtArgs extends runtime.Types.Ex
|
|
|
1807
1768
|
tiers?: boolean
|
|
1808
1769
|
parentSlug?: boolean
|
|
1809
1770
|
tier?: boolean
|
|
1810
|
-
familySlug?: boolean
|
|
1811
1771
|
aliases?: boolean
|
|
1812
1772
|
ownerPersonSlug?: boolean
|
|
1813
|
-
|
|
1773
|
+
approverSlugs?: boolean
|
|
1814
1774
|
accessComments?: boolean
|
|
1815
1775
|
extra?: boolean
|
|
1816
1776
|
lastCheckedAt?: boolean
|
|
@@ -1845,10 +1805,9 @@ export type DbResourceSelectScalar = {
|
|
|
1845
1805
|
tiers?: boolean
|
|
1846
1806
|
parentSlug?: boolean
|
|
1847
1807
|
tier?: boolean
|
|
1848
|
-
familySlug?: boolean
|
|
1849
1808
|
aliases?: boolean
|
|
1850
1809
|
ownerPersonSlug?: boolean
|
|
1851
|
-
|
|
1810
|
+
approverSlugs?: boolean
|
|
1852
1811
|
accessComments?: boolean
|
|
1853
1812
|
extra?: boolean
|
|
1854
1813
|
lastCheckedAt?: boolean
|
|
@@ -1858,7 +1817,7 @@ export type DbResourceSelectScalar = {
|
|
|
1858
1817
|
updatedAt?: boolean
|
|
1859
1818
|
}
|
|
1860
1819
|
|
|
1861
|
-
export type DbResourceOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "slug" | "type" | "displayName" | "abbreviation" | "nicknames" | "description" | "access" | "teams" | "accessRequest" | "notes" | "tags" | "appUrl" | "links" | "iconName" | "screenshotIds" | "deprecated" | "aiPrompt" | "aiMemory" | "urlIssues" | "tiers" | "parentSlug" | "tier" | "
|
|
1820
|
+
export type DbResourceOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "slug" | "type" | "displayName" | "abbreviation" | "nicknames" | "description" | "access" | "teams" | "accessRequest" | "notes" | "tags" | "appUrl" | "links" | "iconName" | "screenshotIds" | "deprecated" | "aiPrompt" | "aiMemory" | "urlIssues" | "tiers" | "parentSlug" | "tier" | "aliases" | "ownerPersonSlug" | "approverSlugs" | "accessComments" | "extra" | "lastCheckedAt" | "nextCheckAfter" | "lastContentChangeAt" | "createdAt" | "updatedAt", ExtArgs["result"]["dbResource"]>
|
|
1862
1821
|
export type DbResourceInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1863
1822
|
sourceRefs?: boolean | Prisma.DbResource$sourceRefsArgs<ExtArgs>
|
|
1864
1823
|
parent?: boolean | Prisma.DbResource$parentArgs<ExtArgs>
|
|
@@ -1918,10 +1877,9 @@ export type $DbResourcePayload<ExtArgs extends runtime.Types.Extensions.Internal
|
|
|
1918
1877
|
tiers:PrismaJson.TierVariant[] | null
|
|
1919
1878
|
parentSlug: string | null
|
|
1920
1879
|
tier: string | null
|
|
1921
|
-
familySlug: string | null
|
|
1922
1880
|
aliases: string[]
|
|
1923
1881
|
ownerPersonSlug: string | null
|
|
1924
|
-
|
|
1882
|
+
approverSlugs: string[]
|
|
1925
1883
|
accessComments: string | null
|
|
1926
1884
|
/**
|
|
1927
1885
|
* [SubResourceExtra]
|
|
@@ -2381,10 +2339,9 @@ export interface DbResourceFieldRefs {
|
|
|
2381
2339
|
readonly tiers: Prisma.FieldRef<"DbResource", 'Json'>
|
|
2382
2340
|
readonly parentSlug: Prisma.FieldRef<"DbResource", 'String'>
|
|
2383
2341
|
readonly tier: Prisma.FieldRef<"DbResource", 'String'>
|
|
2384
|
-
readonly familySlug: Prisma.FieldRef<"DbResource", 'String'>
|
|
2385
2342
|
readonly aliases: Prisma.FieldRef<"DbResource", 'String[]'>
|
|
2386
2343
|
readonly ownerPersonSlug: Prisma.FieldRef<"DbResource", 'String'>
|
|
2387
|
-
readonly
|
|
2344
|
+
readonly approverSlugs: Prisma.FieldRef<"DbResource", 'String[]'>
|
|
2388
2345
|
readonly accessComments: Prisma.FieldRef<"DbResource", 'String'>
|
|
2389
2346
|
readonly extra: Prisma.FieldRef<"DbResource", 'Json'>
|
|
2390
2347
|
readonly lastCheckedAt: Prisma.FieldRef<"DbResource", 'DateTime'>
|
|
@@ -193,12 +193,9 @@ function rowToResource(row: ResourceRowWithSourceRefs): Resource {
|
|
|
193
193
|
// Fields from former SubResource
|
|
194
194
|
parentSlug: row.parentSlug ?? undefined,
|
|
195
195
|
tier: row.tier ?? undefined,
|
|
196
|
-
familySlug: row.familySlug ?? undefined,
|
|
197
196
|
aliases: row.aliases.length ? row.aliases : undefined,
|
|
198
197
|
ownerPersonSlug: row.ownerPersonSlug ?? undefined,
|
|
199
|
-
|
|
200
|
-
? row.accessMaintainerGroupSlugs
|
|
201
|
-
: undefined,
|
|
198
|
+
approverSlugs: row.approverSlugs.length ? row.approverSlugs : undefined,
|
|
202
199
|
accessComments: row.accessComments ?? undefined,
|
|
203
200
|
extra: row.extra
|
|
204
201
|
? (row.extra as unknown as Record<string, unknown>)
|
|
@@ -111,7 +111,7 @@ Return the updated card as a structured JSON object matching the card format:
|
|
|
111
111
|
- appUrl: Main application URL
|
|
112
112
|
- links: Array of {url, title} objects for related links
|
|
113
113
|
- sources: Array of source URLs (documentation, Confluence pages, etc.)
|
|
114
|
-
- accessRequest: Object with approvalMethodSlug, comments, requestPrompt, postApprovalInstructions, roles,
|
|
114
|
+
- accessRequest: Object with approvalMethodSlug, comments, requestPrompt, postApprovalInstructions, roles, approverSlugs, urls
|
|
115
115
|
- notes: Additional notes
|
|
116
116
|
- deprecated: Optional deprecation info with type, replacementSlug, comment
|
|
117
117
|
|
|
@@ -101,14 +101,12 @@ export interface Resource {
|
|
|
101
101
|
parentSlug?: string
|
|
102
102
|
/** Tier slug (e.g. "prod", "dev") — for sub-resources */
|
|
103
103
|
tier?: string
|
|
104
|
-
/** Groups tier variants visually */
|
|
105
|
-
familySlug?: string
|
|
106
104
|
/** Alternative identifiers */
|
|
107
105
|
aliases?: string[]
|
|
108
106
|
/** Person slug of the owner */
|
|
109
107
|
ownerPersonSlug?: string
|
|
110
|
-
/**
|
|
111
|
-
|
|
108
|
+
/** Slugs of who decides on an access request — each a Person or a Group */
|
|
109
|
+
approverSlugs?: string[]
|
|
112
110
|
/** Free-text access comments */
|
|
113
111
|
accessComments?: string
|
|
114
112
|
/** Arbitrary extra data */
|
|
@@ -144,9 +144,10 @@ export interface AppAccessRequest {
|
|
|
144
144
|
roles?: AppRole[]
|
|
145
145
|
|
|
146
146
|
/**
|
|
147
|
-
*
|
|
147
|
+
* Who decides on this request — each slug is a Person or a Group. No need to
|
|
148
|
+
* reach them directly unless specified.
|
|
148
149
|
*/
|
|
149
|
-
|
|
150
|
+
approverSlugs?: string[] // slugs referencing Person or Group entities
|
|
150
151
|
/**
|
|
151
152
|
* Additional instructions to get approvals
|
|
152
153
|
*/
|
|
@@ -18,3 +18,10 @@ export interface Group {
|
|
|
18
18
|
email?: string
|
|
19
19
|
memberSlugs: string[]
|
|
20
20
|
}
|
|
21
|
+
|
|
22
|
+
/**
|
|
23
|
+
* An individual or a named set of them. Fields that hold responsibility
|
|
24
|
+
* (owner, approvers) reference either kind, by slug — resolve the slug against
|
|
25
|
+
* both the persons and the groups collection.
|
|
26
|
+
*/
|
|
27
|
+
export type PersonOrGroup = Person | Group
|