@igstack/app-catalog-backend-core 0.3.1-alpha-20260403020019 → 0.3.1-alpha-20260405015231
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.d.mts +11 -1
- package/dist/db/syncAppCatalog.d.mts.map +1 -1
- package/dist/db/syncAppCatalog.mjs +54 -2
- package/dist/db/syncAppCatalog.mjs.map +1 -1
- package/dist/db/tableSyncMagazine.d.mts +18 -0
- package/dist/db/tableSyncMagazine.d.mts.map +1 -1
- package/dist/db/tableSyncMagazine.mjs +18 -0
- package/dist/db/tableSyncMagazine.mjs.map +1 -1
- package/dist/generated/prisma/client.mjs.map +1 -1
- package/dist/generated/prisma/commonInputTypes.d.mts +50 -50
- package/dist/generated/prisma/commonInputTypes.d.mts.map +1 -1
- package/dist/generated/prisma/enums.d.mts +2 -0
- package/dist/generated/prisma/enums.d.mts.map +1 -1
- package/dist/generated/prisma/internal/class.d.mts +48 -0
- package/dist/generated/prisma/internal/class.d.mts.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 +362 -12
- package/dist/generated/prisma/internal/prismaNamespace.d.mts.map +1 -1
- package/dist/generated/prisma/models/DbAppForCatalog.d.mts +198 -3
- package/dist/generated/prisma/models/DbAppForCatalog.d.mts.map +1 -1
- package/dist/generated/prisma/models/DbAsset.d.mts +2 -8
- package/dist/generated/prisma/models/DbAsset.d.mts.map +1 -1
- package/dist/generated/prisma/models/DbGroup.d.mts +1124 -0
- package/dist/generated/prisma/models/DbGroup.d.mts.map +1 -0
- package/dist/generated/prisma/models/DbGroupMembership.d.mts +1199 -0
- package/dist/generated/prisma/models/DbGroupMembership.d.mts.map +1 -0
- package/dist/generated/prisma/models/DbPerson.d.mts +1155 -0
- package/dist/generated/prisma/models/DbPerson.d.mts.map +1 -0
- package/dist/generated/prisma/models/DbSubResource.d.mts +1468 -0
- package/dist/generated/prisma/models/DbSubResource.d.mts.map +1 -0
- package/dist/generated/prisma/models/SourceReference.d.mts +1 -1
- package/dist/generated/prisma/models.d.mts +6 -2
- package/dist/index.d.mts +5 -3
- package/dist/middleware/featureRegistry.mjs +5 -1
- package/dist/middleware/featureRegistry.mjs.map +1 -1
- package/dist/modules/appCatalog/checkLinks.d.mts.map +1 -1
- package/dist/modules/appCatalog/checkLinks.mjs +31 -2
- package/dist/modules/appCatalog/checkLinks.mjs.map +1 -1
- package/dist/modules/appCatalog/service.mjs +52 -5
- package/dist/modules/appCatalog/service.mjs.map +1 -1
- package/dist/modules/auth/registerAuthRoutes.mjs +5 -1
- package/dist/modules/auth/registerAuthRoutes.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 +19 -1
- package/dist/types/common/appCatalogTypes.d.mts.map +1 -1
- package/dist/types/common/approvalMethodTypes.d.mts +52 -36
- package/dist/types/common/approvalMethodTypes.d.mts.map +1 -1
- package/dist/types/common/personGroupTypes.d.mts +22 -0
- package/dist/types/common/personGroupTypes.d.mts.map +1 -0
- package/dist/types/common/subResourceTypes.d.mts +24 -0
- package/dist/types/common/subResourceTypes.d.mts.map +1 -0
- package/package.json +3 -3
- package/prisma/schema.prisma +59 -0
- package/src/db/syncAppCatalog.ts +73 -1
- package/src/db/tableSyncMagazine.ts +18 -0
- package/src/generated/prisma/browser.ts +20 -0
- package/src/generated/prisma/client.ts +20 -0
- package/src/generated/prisma/commonInputTypes.ts +54 -54
- package/src/generated/prisma/enums.ts +3 -1
- package/src/generated/prisma/internal/class.ts +44 -4
- package/src/generated/prisma/internal/prismaNamespace.ts +373 -15
- package/src/generated/prisma/internal/prismaNamespaceBrowser.ts +58 -0
- package/src/generated/prisma/models/DbAppForCatalog.ts +208 -1
- package/src/generated/prisma/models/DbAsset.ts +0 -8
- package/src/generated/prisma/models/DbGroup.ts +1324 -0
- package/src/generated/prisma/models/DbGroupMembership.ts +1432 -0
- package/src/generated/prisma/models/DbPerson.ts +1356 -0
- package/src/generated/prisma/models/DbSubResource.ts +1692 -0
- package/src/generated/prisma/models.ts +4 -0
- package/src/middleware/featureRegistry.ts +4 -1
- package/src/modules/appCatalog/checkLinks.ts +58 -5
- package/src/modules/appCatalog/service.ts +80 -6
- package/src/modules/auth/registerAuthRoutes.ts +4 -1
- package/src/modules/lighthouseKeeper/tools.ts +1 -1
- package/src/prisma-json-types.d.ts +6 -0
- package/src/types/common/appCatalogTypes.ts +23 -0
- package/src/types/common/approvalMethodTypes.ts +59 -57
- package/src/types/common/personGroupTypes.ts +20 -0
- package/src/types/common/subResourceTypes.ts +20 -0
- package/src/types/index.ts +2 -0
|
@@ -73,6 +73,7 @@ export type DbAppForCatalogCountAggregateOutputType = {
|
|
|
73
73
|
deprecated:PrismaJson.AppDeprecation
|
|
74
74
|
aiPrompt: number
|
|
75
75
|
urlIssues: number
|
|
76
|
+
tiers:PrismaJson.AppTierVariant[]
|
|
76
77
|
createdAt: number
|
|
77
78
|
updatedAt: number
|
|
78
79
|
_all: number
|
|
@@ -126,6 +127,7 @@ export type DbAppForCatalogCountAggregateInputType = {
|
|
|
126
127
|
deprecated?: true
|
|
127
128
|
aiPrompt?: true
|
|
128
129
|
urlIssues?: true
|
|
130
|
+
tiers?: true
|
|
129
131
|
createdAt?: true
|
|
130
132
|
updatedAt?: true
|
|
131
133
|
_all?: true
|
|
@@ -222,6 +224,7 @@ export type DbAppForCatalogGroupByOutputType = {
|
|
|
222
224
|
deprecated:PrismaJson.AppDeprecation | null
|
|
223
225
|
aiPrompt: string | null
|
|
224
226
|
urlIssues: string[]
|
|
227
|
+
tiers:PrismaJson.AppTierVariant[] | null
|
|
225
228
|
createdAt: Date
|
|
226
229
|
updatedAt: Date
|
|
227
230
|
_count: DbAppForCatalogCountAggregateOutputType | null
|
|
@@ -266,9 +269,11 @@ export type DbAppForCatalogWhereInput = {
|
|
|
266
269
|
deprecated?: Prisma.JsonNullableFilter<"DbAppForCatalog">
|
|
267
270
|
aiPrompt?: Prisma.StringNullableFilter<"DbAppForCatalog"> | string | null
|
|
268
271
|
urlIssues?: Prisma.StringNullableListFilter<"DbAppForCatalog">
|
|
272
|
+
tiers?: Prisma.JsonNullableFilter<"DbAppForCatalog">
|
|
269
273
|
createdAt?: Prisma.DateTimeFilter<"DbAppForCatalog"> | Date | string
|
|
270
274
|
updatedAt?: Prisma.DateTimeFilter<"DbAppForCatalog"> | Date | string
|
|
271
275
|
sourceRefs?: Prisma.SourceReferenceListRelationFilter
|
|
276
|
+
subResources?: Prisma.DbSubResourceListRelationFilter
|
|
272
277
|
}
|
|
273
278
|
|
|
274
279
|
export type DbAppForCatalogOrderByWithRelationInput = {
|
|
@@ -290,9 +295,11 @@ export type DbAppForCatalogOrderByWithRelationInput = {
|
|
|
290
295
|
deprecated?: Prisma.SortOrderInput | Prisma.SortOrder
|
|
291
296
|
aiPrompt?: Prisma.SortOrderInput | Prisma.SortOrder
|
|
292
297
|
urlIssues?: Prisma.SortOrder
|
|
298
|
+
tiers?: Prisma.SortOrderInput | Prisma.SortOrder
|
|
293
299
|
createdAt?: Prisma.SortOrder
|
|
294
300
|
updatedAt?: Prisma.SortOrder
|
|
295
301
|
sourceRefs?: Prisma.SourceReferenceOrderByRelationAggregateInput
|
|
302
|
+
subResources?: Prisma.DbSubResourceOrderByRelationAggregateInput
|
|
296
303
|
}
|
|
297
304
|
|
|
298
305
|
export type DbAppForCatalogWhereUniqueInput = Prisma.AtLeast<{
|
|
@@ -317,9 +324,11 @@ export type DbAppForCatalogWhereUniqueInput = Prisma.AtLeast<{
|
|
|
317
324
|
deprecated?: Prisma.JsonNullableFilter<"DbAppForCatalog">
|
|
318
325
|
aiPrompt?: Prisma.StringNullableFilter<"DbAppForCatalog"> | string | null
|
|
319
326
|
urlIssues?: Prisma.StringNullableListFilter<"DbAppForCatalog">
|
|
327
|
+
tiers?: Prisma.JsonNullableFilter<"DbAppForCatalog">
|
|
320
328
|
createdAt?: Prisma.DateTimeFilter<"DbAppForCatalog"> | Date | string
|
|
321
329
|
updatedAt?: Prisma.DateTimeFilter<"DbAppForCatalog"> | Date | string
|
|
322
330
|
sourceRefs?: Prisma.SourceReferenceListRelationFilter
|
|
331
|
+
subResources?: Prisma.DbSubResourceListRelationFilter
|
|
323
332
|
}, "id" | "slug">
|
|
324
333
|
|
|
325
334
|
export type DbAppForCatalogOrderByWithAggregationInput = {
|
|
@@ -341,6 +350,7 @@ export type DbAppForCatalogOrderByWithAggregationInput = {
|
|
|
341
350
|
deprecated?: Prisma.SortOrderInput | Prisma.SortOrder
|
|
342
351
|
aiPrompt?: Prisma.SortOrderInput | Prisma.SortOrder
|
|
343
352
|
urlIssues?: Prisma.SortOrder
|
|
353
|
+
tiers?: Prisma.SortOrderInput | Prisma.SortOrder
|
|
344
354
|
createdAt?: Prisma.SortOrder
|
|
345
355
|
updatedAt?: Prisma.SortOrder
|
|
346
356
|
_count?: Prisma.DbAppForCatalogCountOrderByAggregateInput
|
|
@@ -370,6 +380,7 @@ export type DbAppForCatalogScalarWhereWithAggregatesInput = {
|
|
|
370
380
|
deprecated?: Prisma.JsonNullableWithAggregatesFilter<"DbAppForCatalog">
|
|
371
381
|
aiPrompt?: Prisma.StringNullableWithAggregatesFilter<"DbAppForCatalog"> | string | null
|
|
372
382
|
urlIssues?: Prisma.StringNullableListFilter<"DbAppForCatalog">
|
|
383
|
+
tiers?: Prisma.JsonNullableWithAggregatesFilter<"DbAppForCatalog">
|
|
373
384
|
createdAt?: Prisma.DateTimeWithAggregatesFilter<"DbAppForCatalog"> | Date | string
|
|
374
385
|
updatedAt?: Prisma.DateTimeWithAggregatesFilter<"DbAppForCatalog"> | Date | string
|
|
375
386
|
}
|
|
@@ -393,9 +404,11 @@ export type DbAppForCatalogCreateInput = {
|
|
|
393
404
|
deprecated?:PrismaJson.AppDeprecation | Prisma.NullableJsonNullValueInput
|
|
394
405
|
aiPrompt?: string | null
|
|
395
406
|
urlIssues?: Prisma.DbAppForCatalogCreateurlIssuesInput | string[]
|
|
407
|
+
tiers?:PrismaJson.AppTierVariant[] | Prisma.NullableJsonNullValueInput
|
|
396
408
|
createdAt?: Date | string
|
|
397
409
|
updatedAt?: Date | string
|
|
398
410
|
sourceRefs?: Prisma.SourceReferenceCreateNestedManyWithoutAppInput
|
|
411
|
+
subResources?: Prisma.DbSubResourceCreateNestedManyWithoutAppInput
|
|
399
412
|
}
|
|
400
413
|
|
|
401
414
|
export type DbAppForCatalogUncheckedCreateInput = {
|
|
@@ -417,9 +430,11 @@ export type DbAppForCatalogUncheckedCreateInput = {
|
|
|
417
430
|
deprecated?:PrismaJson.AppDeprecation | Prisma.NullableJsonNullValueInput
|
|
418
431
|
aiPrompt?: string | null
|
|
419
432
|
urlIssues?: Prisma.DbAppForCatalogCreateurlIssuesInput | string[]
|
|
433
|
+
tiers?:PrismaJson.AppTierVariant[] | Prisma.NullableJsonNullValueInput
|
|
420
434
|
createdAt?: Date | string
|
|
421
435
|
updatedAt?: Date | string
|
|
422
436
|
sourceRefs?: Prisma.SourceReferenceUncheckedCreateNestedManyWithoutAppInput
|
|
437
|
+
subResources?: Prisma.DbSubResourceUncheckedCreateNestedManyWithoutAppInput
|
|
423
438
|
}
|
|
424
439
|
|
|
425
440
|
export type DbAppForCatalogUpdateInput = {
|
|
@@ -441,9 +456,11 @@ export type DbAppForCatalogUpdateInput = {
|
|
|
441
456
|
deprecated?:PrismaJson.AppDeprecation | Prisma.NullableJsonNullValueInput
|
|
442
457
|
aiPrompt?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
443
458
|
urlIssues?: Prisma.DbAppForCatalogUpdateurlIssuesInput | string[]
|
|
459
|
+
tiers?:PrismaJson.AppTierVariant[] | Prisma.NullableJsonNullValueInput
|
|
444
460
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
445
461
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
446
462
|
sourceRefs?: Prisma.SourceReferenceUpdateManyWithoutAppNestedInput
|
|
463
|
+
subResources?: Prisma.DbSubResourceUpdateManyWithoutAppNestedInput
|
|
447
464
|
}
|
|
448
465
|
|
|
449
466
|
export type DbAppForCatalogUncheckedUpdateInput = {
|
|
@@ -465,9 +482,11 @@ export type DbAppForCatalogUncheckedUpdateInput = {
|
|
|
465
482
|
deprecated?:PrismaJson.AppDeprecation | Prisma.NullableJsonNullValueInput
|
|
466
483
|
aiPrompt?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
467
484
|
urlIssues?: Prisma.DbAppForCatalogUpdateurlIssuesInput | string[]
|
|
485
|
+
tiers?:PrismaJson.AppTierVariant[] | Prisma.NullableJsonNullValueInput
|
|
468
486
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
469
487
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
470
488
|
sourceRefs?: Prisma.SourceReferenceUncheckedUpdateManyWithoutAppNestedInput
|
|
489
|
+
subResources?: Prisma.DbSubResourceUncheckedUpdateManyWithoutAppNestedInput
|
|
471
490
|
}
|
|
472
491
|
|
|
473
492
|
export type DbAppForCatalogCreateManyInput = {
|
|
@@ -489,6 +508,7 @@ export type DbAppForCatalogCreateManyInput = {
|
|
|
489
508
|
deprecated?:PrismaJson.AppDeprecation | Prisma.NullableJsonNullValueInput
|
|
490
509
|
aiPrompt?: string | null
|
|
491
510
|
urlIssues?: Prisma.DbAppForCatalogCreateurlIssuesInput | string[]
|
|
511
|
+
tiers?:PrismaJson.AppTierVariant[] | Prisma.NullableJsonNullValueInput
|
|
492
512
|
createdAt?: Date | string
|
|
493
513
|
updatedAt?: Date | string
|
|
494
514
|
}
|
|
@@ -512,6 +532,7 @@ export type DbAppForCatalogUpdateManyMutationInput = {
|
|
|
512
532
|
deprecated?:PrismaJson.AppDeprecation | Prisma.NullableJsonNullValueInput
|
|
513
533
|
aiPrompt?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
514
534
|
urlIssues?: Prisma.DbAppForCatalogUpdateurlIssuesInput | string[]
|
|
535
|
+
tiers?:PrismaJson.AppTierVariant[] | Prisma.NullableJsonNullValueInput
|
|
515
536
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
516
537
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
517
538
|
}
|
|
@@ -535,6 +556,7 @@ export type DbAppForCatalogUncheckedUpdateManyInput = {
|
|
|
535
556
|
deprecated?:PrismaJson.AppDeprecation | Prisma.NullableJsonNullValueInput
|
|
536
557
|
aiPrompt?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
537
558
|
urlIssues?: Prisma.DbAppForCatalogUpdateurlIssuesInput | string[]
|
|
559
|
+
tiers?:PrismaJson.AppTierVariant[] | Prisma.NullableJsonNullValueInput
|
|
538
560
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
539
561
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
540
562
|
}
|
|
@@ -558,6 +580,7 @@ export type DbAppForCatalogCountOrderByAggregateInput = {
|
|
|
558
580
|
deprecated?: Prisma.SortOrder
|
|
559
581
|
aiPrompt?: Prisma.SortOrder
|
|
560
582
|
urlIssues?: Prisma.SortOrder
|
|
583
|
+
tiers?: Prisma.SortOrder
|
|
561
584
|
createdAt?: Prisma.SortOrder
|
|
562
585
|
updatedAt?: Prisma.SortOrder
|
|
563
586
|
}
|
|
@@ -640,6 +663,20 @@ export type DbAppForCatalogUpdateurlIssuesInput = {
|
|
|
640
663
|
push?: string | string[]
|
|
641
664
|
}
|
|
642
665
|
|
|
666
|
+
export type DbAppForCatalogCreateNestedOneWithoutSubResourcesInput = {
|
|
667
|
+
create?: Prisma.XOR<Prisma.DbAppForCatalogCreateWithoutSubResourcesInput, Prisma.DbAppForCatalogUncheckedCreateWithoutSubResourcesInput>
|
|
668
|
+
connectOrCreate?: Prisma.DbAppForCatalogCreateOrConnectWithoutSubResourcesInput
|
|
669
|
+
connect?: Prisma.DbAppForCatalogWhereUniqueInput
|
|
670
|
+
}
|
|
671
|
+
|
|
672
|
+
export type DbAppForCatalogUpdateOneRequiredWithoutSubResourcesNestedInput = {
|
|
673
|
+
create?: Prisma.XOR<Prisma.DbAppForCatalogCreateWithoutSubResourcesInput, Prisma.DbAppForCatalogUncheckedCreateWithoutSubResourcesInput>
|
|
674
|
+
connectOrCreate?: Prisma.DbAppForCatalogCreateOrConnectWithoutSubResourcesInput
|
|
675
|
+
upsert?: Prisma.DbAppForCatalogUpsertWithoutSubResourcesInput
|
|
676
|
+
connect?: Prisma.DbAppForCatalogWhereUniqueInput
|
|
677
|
+
update?: Prisma.XOR<Prisma.XOR<Prisma.DbAppForCatalogUpdateToOneWithWhereWithoutSubResourcesInput, Prisma.DbAppForCatalogUpdateWithoutSubResourcesInput>, Prisma.DbAppForCatalogUncheckedUpdateWithoutSubResourcesInput>
|
|
678
|
+
}
|
|
679
|
+
|
|
643
680
|
export type DbAppForCatalogCreateNestedOneWithoutSourceRefsInput = {
|
|
644
681
|
create?: Prisma.XOR<Prisma.DbAppForCatalogCreateWithoutSourceRefsInput, Prisma.DbAppForCatalogUncheckedCreateWithoutSourceRefsInput>
|
|
645
682
|
connectOrCreate?: Prisma.DbAppForCatalogCreateOrConnectWithoutSourceRefsInput
|
|
@@ -654,6 +691,122 @@ export type DbAppForCatalogUpdateOneRequiredWithoutSourceRefsNestedInput = {
|
|
|
654
691
|
update?: Prisma.XOR<Prisma.XOR<Prisma.DbAppForCatalogUpdateToOneWithWhereWithoutSourceRefsInput, Prisma.DbAppForCatalogUpdateWithoutSourceRefsInput>, Prisma.DbAppForCatalogUncheckedUpdateWithoutSourceRefsInput>
|
|
655
692
|
}
|
|
656
693
|
|
|
694
|
+
export type DbAppForCatalogCreateWithoutSubResourcesInput = {
|
|
695
|
+
id?: string
|
|
696
|
+
slug: string
|
|
697
|
+
displayName: string
|
|
698
|
+
abbreviation?: string | null
|
|
699
|
+
nicknames?: Prisma.DbAppForCatalogCreatenicknamesInput | string[]
|
|
700
|
+
description: string
|
|
701
|
+
access?:PrismaJson.AccessMethod | Prisma.NullableJsonNullValueInput
|
|
702
|
+
teams?: Prisma.DbAppForCatalogCreateteamsInput | string[]
|
|
703
|
+
accessRequest?:PrismaJson.AppAccessRequest | Prisma.NullableJsonNullValueInput
|
|
704
|
+
notes?: string | null
|
|
705
|
+
tags?: Prisma.DbAppForCatalogCreatetagsInput | string[]
|
|
706
|
+
appUrl?: string | null
|
|
707
|
+
links?:PrismaJson.AppLink[] | Prisma.NullableJsonNullValueInput
|
|
708
|
+
iconName?: string | null
|
|
709
|
+
screenshotIds?: Prisma.DbAppForCatalogCreatescreenshotIdsInput | string[]
|
|
710
|
+
deprecated?:PrismaJson.AppDeprecation | Prisma.NullableJsonNullValueInput
|
|
711
|
+
aiPrompt?: string | null
|
|
712
|
+
urlIssues?: Prisma.DbAppForCatalogCreateurlIssuesInput | string[]
|
|
713
|
+
tiers?:PrismaJson.AppTierVariant[] | Prisma.NullableJsonNullValueInput
|
|
714
|
+
createdAt?: Date | string
|
|
715
|
+
updatedAt?: Date | string
|
|
716
|
+
sourceRefs?: Prisma.SourceReferenceCreateNestedManyWithoutAppInput
|
|
717
|
+
}
|
|
718
|
+
|
|
719
|
+
export type DbAppForCatalogUncheckedCreateWithoutSubResourcesInput = {
|
|
720
|
+
id?: string
|
|
721
|
+
slug: string
|
|
722
|
+
displayName: string
|
|
723
|
+
abbreviation?: string | null
|
|
724
|
+
nicknames?: Prisma.DbAppForCatalogCreatenicknamesInput | string[]
|
|
725
|
+
description: string
|
|
726
|
+
access?:PrismaJson.AccessMethod | Prisma.NullableJsonNullValueInput
|
|
727
|
+
teams?: Prisma.DbAppForCatalogCreateteamsInput | string[]
|
|
728
|
+
accessRequest?:PrismaJson.AppAccessRequest | Prisma.NullableJsonNullValueInput
|
|
729
|
+
notes?: string | null
|
|
730
|
+
tags?: Prisma.DbAppForCatalogCreatetagsInput | string[]
|
|
731
|
+
appUrl?: string | null
|
|
732
|
+
links?:PrismaJson.AppLink[] | Prisma.NullableJsonNullValueInput
|
|
733
|
+
iconName?: string | null
|
|
734
|
+
screenshotIds?: Prisma.DbAppForCatalogCreatescreenshotIdsInput | string[]
|
|
735
|
+
deprecated?:PrismaJson.AppDeprecation | Prisma.NullableJsonNullValueInput
|
|
736
|
+
aiPrompt?: string | null
|
|
737
|
+
urlIssues?: Prisma.DbAppForCatalogCreateurlIssuesInput | string[]
|
|
738
|
+
tiers?:PrismaJson.AppTierVariant[] | Prisma.NullableJsonNullValueInput
|
|
739
|
+
createdAt?: Date | string
|
|
740
|
+
updatedAt?: Date | string
|
|
741
|
+
sourceRefs?: Prisma.SourceReferenceUncheckedCreateNestedManyWithoutAppInput
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
export type DbAppForCatalogCreateOrConnectWithoutSubResourcesInput = {
|
|
745
|
+
where: Prisma.DbAppForCatalogWhereUniqueInput
|
|
746
|
+
create: Prisma.XOR<Prisma.DbAppForCatalogCreateWithoutSubResourcesInput, Prisma.DbAppForCatalogUncheckedCreateWithoutSubResourcesInput>
|
|
747
|
+
}
|
|
748
|
+
|
|
749
|
+
export type DbAppForCatalogUpsertWithoutSubResourcesInput = {
|
|
750
|
+
update: Prisma.XOR<Prisma.DbAppForCatalogUpdateWithoutSubResourcesInput, Prisma.DbAppForCatalogUncheckedUpdateWithoutSubResourcesInput>
|
|
751
|
+
create: Prisma.XOR<Prisma.DbAppForCatalogCreateWithoutSubResourcesInput, Prisma.DbAppForCatalogUncheckedCreateWithoutSubResourcesInput>
|
|
752
|
+
where?: Prisma.DbAppForCatalogWhereInput
|
|
753
|
+
}
|
|
754
|
+
|
|
755
|
+
export type DbAppForCatalogUpdateToOneWithWhereWithoutSubResourcesInput = {
|
|
756
|
+
where?: Prisma.DbAppForCatalogWhereInput
|
|
757
|
+
data: Prisma.XOR<Prisma.DbAppForCatalogUpdateWithoutSubResourcesInput, Prisma.DbAppForCatalogUncheckedUpdateWithoutSubResourcesInput>
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
export type DbAppForCatalogUpdateWithoutSubResourcesInput = {
|
|
761
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
762
|
+
slug?: Prisma.StringFieldUpdateOperationsInput | string
|
|
763
|
+
displayName?: Prisma.StringFieldUpdateOperationsInput | string
|
|
764
|
+
abbreviation?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
765
|
+
nicknames?: Prisma.DbAppForCatalogUpdatenicknamesInput | string[]
|
|
766
|
+
description?: Prisma.StringFieldUpdateOperationsInput | string
|
|
767
|
+
access?:PrismaJson.AccessMethod | Prisma.NullableJsonNullValueInput
|
|
768
|
+
teams?: Prisma.DbAppForCatalogUpdateteamsInput | string[]
|
|
769
|
+
accessRequest?:PrismaJson.AppAccessRequest | Prisma.NullableJsonNullValueInput
|
|
770
|
+
notes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
771
|
+
tags?: Prisma.DbAppForCatalogUpdatetagsInput | string[]
|
|
772
|
+
appUrl?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
773
|
+
links?:PrismaJson.AppLink[] | Prisma.NullableJsonNullValueInput
|
|
774
|
+
iconName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
775
|
+
screenshotIds?: Prisma.DbAppForCatalogUpdatescreenshotIdsInput | string[]
|
|
776
|
+
deprecated?:PrismaJson.AppDeprecation | Prisma.NullableJsonNullValueInput
|
|
777
|
+
aiPrompt?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
778
|
+
urlIssues?: Prisma.DbAppForCatalogUpdateurlIssuesInput | string[]
|
|
779
|
+
tiers?:PrismaJson.AppTierVariant[] | Prisma.NullableJsonNullValueInput
|
|
780
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
781
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
782
|
+
sourceRefs?: Prisma.SourceReferenceUpdateManyWithoutAppNestedInput
|
|
783
|
+
}
|
|
784
|
+
|
|
785
|
+
export type DbAppForCatalogUncheckedUpdateWithoutSubResourcesInput = {
|
|
786
|
+
id?: Prisma.StringFieldUpdateOperationsInput | string
|
|
787
|
+
slug?: Prisma.StringFieldUpdateOperationsInput | string
|
|
788
|
+
displayName?: Prisma.StringFieldUpdateOperationsInput | string
|
|
789
|
+
abbreviation?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
790
|
+
nicknames?: Prisma.DbAppForCatalogUpdatenicknamesInput | string[]
|
|
791
|
+
description?: Prisma.StringFieldUpdateOperationsInput | string
|
|
792
|
+
access?:PrismaJson.AccessMethod | Prisma.NullableJsonNullValueInput
|
|
793
|
+
teams?: Prisma.DbAppForCatalogUpdateteamsInput | string[]
|
|
794
|
+
accessRequest?:PrismaJson.AppAccessRequest | Prisma.NullableJsonNullValueInput
|
|
795
|
+
notes?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
796
|
+
tags?: Prisma.DbAppForCatalogUpdatetagsInput | string[]
|
|
797
|
+
appUrl?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
798
|
+
links?:PrismaJson.AppLink[] | Prisma.NullableJsonNullValueInput
|
|
799
|
+
iconName?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
800
|
+
screenshotIds?: Prisma.DbAppForCatalogUpdatescreenshotIdsInput | string[]
|
|
801
|
+
deprecated?:PrismaJson.AppDeprecation | Prisma.NullableJsonNullValueInput
|
|
802
|
+
aiPrompt?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
803
|
+
urlIssues?: Prisma.DbAppForCatalogUpdateurlIssuesInput | string[]
|
|
804
|
+
tiers?:PrismaJson.AppTierVariant[] | Prisma.NullableJsonNullValueInput
|
|
805
|
+
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
806
|
+
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
807
|
+
sourceRefs?: Prisma.SourceReferenceUncheckedUpdateManyWithoutAppNestedInput
|
|
808
|
+
}
|
|
809
|
+
|
|
657
810
|
export type DbAppForCatalogCreateWithoutSourceRefsInput = {
|
|
658
811
|
id?: string
|
|
659
812
|
slug: string
|
|
@@ -673,8 +826,10 @@ export type DbAppForCatalogCreateWithoutSourceRefsInput = {
|
|
|
673
826
|
deprecated?:PrismaJson.AppDeprecation | Prisma.NullableJsonNullValueInput
|
|
674
827
|
aiPrompt?: string | null
|
|
675
828
|
urlIssues?: Prisma.DbAppForCatalogCreateurlIssuesInput | string[]
|
|
829
|
+
tiers?:PrismaJson.AppTierVariant[] | Prisma.NullableJsonNullValueInput
|
|
676
830
|
createdAt?: Date | string
|
|
677
831
|
updatedAt?: Date | string
|
|
832
|
+
subResources?: Prisma.DbSubResourceCreateNestedManyWithoutAppInput
|
|
678
833
|
}
|
|
679
834
|
|
|
680
835
|
export type DbAppForCatalogUncheckedCreateWithoutSourceRefsInput = {
|
|
@@ -696,8 +851,10 @@ export type DbAppForCatalogUncheckedCreateWithoutSourceRefsInput = {
|
|
|
696
851
|
deprecated?:PrismaJson.AppDeprecation | Prisma.NullableJsonNullValueInput
|
|
697
852
|
aiPrompt?: string | null
|
|
698
853
|
urlIssues?: Prisma.DbAppForCatalogCreateurlIssuesInput | string[]
|
|
854
|
+
tiers?:PrismaJson.AppTierVariant[] | Prisma.NullableJsonNullValueInput
|
|
699
855
|
createdAt?: Date | string
|
|
700
856
|
updatedAt?: Date | string
|
|
857
|
+
subResources?: Prisma.DbSubResourceUncheckedCreateNestedManyWithoutAppInput
|
|
701
858
|
}
|
|
702
859
|
|
|
703
860
|
export type DbAppForCatalogCreateOrConnectWithoutSourceRefsInput = {
|
|
@@ -735,8 +892,10 @@ export type DbAppForCatalogUpdateWithoutSourceRefsInput = {
|
|
|
735
892
|
deprecated?:PrismaJson.AppDeprecation | Prisma.NullableJsonNullValueInput
|
|
736
893
|
aiPrompt?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
737
894
|
urlIssues?: Prisma.DbAppForCatalogUpdateurlIssuesInput | string[]
|
|
895
|
+
tiers?:PrismaJson.AppTierVariant[] | Prisma.NullableJsonNullValueInput
|
|
738
896
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
739
897
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
898
|
+
subResources?: Prisma.DbSubResourceUpdateManyWithoutAppNestedInput
|
|
740
899
|
}
|
|
741
900
|
|
|
742
901
|
export type DbAppForCatalogUncheckedUpdateWithoutSourceRefsInput = {
|
|
@@ -758,8 +917,10 @@ export type DbAppForCatalogUncheckedUpdateWithoutSourceRefsInput = {
|
|
|
758
917
|
deprecated?:PrismaJson.AppDeprecation | Prisma.NullableJsonNullValueInput
|
|
759
918
|
aiPrompt?: Prisma.NullableStringFieldUpdateOperationsInput | string | null
|
|
760
919
|
urlIssues?: Prisma.DbAppForCatalogUpdateurlIssuesInput | string[]
|
|
920
|
+
tiers?:PrismaJson.AppTierVariant[] | Prisma.NullableJsonNullValueInput
|
|
761
921
|
createdAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
762
922
|
updatedAt?: Prisma.DateTimeFieldUpdateOperationsInput | Date | string
|
|
923
|
+
subResources?: Prisma.DbSubResourceUncheckedUpdateManyWithoutAppNestedInput
|
|
763
924
|
}
|
|
764
925
|
|
|
765
926
|
|
|
@@ -769,10 +930,12 @@ export type DbAppForCatalogUncheckedUpdateWithoutSourceRefsInput = {
|
|
|
769
930
|
|
|
770
931
|
export type DbAppForCatalogCountOutputType = {
|
|
771
932
|
sourceRefs: number
|
|
933
|
+
subResources: number
|
|
772
934
|
}
|
|
773
935
|
|
|
774
936
|
export type DbAppForCatalogCountOutputTypeSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
775
937
|
sourceRefs?: boolean | DbAppForCatalogCountOutputTypeCountSourceRefsArgs
|
|
938
|
+
subResources?: boolean | DbAppForCatalogCountOutputTypeCountSubResourcesArgs
|
|
776
939
|
}
|
|
777
940
|
|
|
778
941
|
/**
|
|
@@ -792,6 +955,13 @@ export type DbAppForCatalogCountOutputTypeCountSourceRefsArgs<ExtArgs extends ru
|
|
|
792
955
|
where?: Prisma.SourceReferenceWhereInput
|
|
793
956
|
}
|
|
794
957
|
|
|
958
|
+
/**
|
|
959
|
+
* DbAppForCatalogCountOutputType without action
|
|
960
|
+
*/
|
|
961
|
+
export type DbAppForCatalogCountOutputTypeCountSubResourcesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
962
|
+
where?: Prisma.DbSubResourceWhereInput
|
|
963
|
+
}
|
|
964
|
+
|
|
795
965
|
|
|
796
966
|
export type DbAppForCatalogSelect<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetSelect<{
|
|
797
967
|
id?: boolean
|
|
@@ -812,9 +982,11 @@ export type DbAppForCatalogSelect<ExtArgs extends runtime.Types.Extensions.Inter
|
|
|
812
982
|
deprecated?: boolean
|
|
813
983
|
aiPrompt?: boolean
|
|
814
984
|
urlIssues?: boolean
|
|
985
|
+
tiers?: boolean
|
|
815
986
|
createdAt?: boolean
|
|
816
987
|
updatedAt?: boolean
|
|
817
988
|
sourceRefs?: boolean | Prisma.DbAppForCatalog$sourceRefsArgs<ExtArgs>
|
|
989
|
+
subResources?: boolean | Prisma.DbAppForCatalog$subResourcesArgs<ExtArgs>
|
|
818
990
|
_count?: boolean | Prisma.DbAppForCatalogCountOutputTypeDefaultArgs<ExtArgs>
|
|
819
991
|
}, ExtArgs["result"]["dbAppForCatalog"]>
|
|
820
992
|
|
|
@@ -837,6 +1009,7 @@ export type DbAppForCatalogSelectCreateManyAndReturn<ExtArgs extends runtime.Typ
|
|
|
837
1009
|
deprecated?: boolean
|
|
838
1010
|
aiPrompt?: boolean
|
|
839
1011
|
urlIssues?: boolean
|
|
1012
|
+
tiers?: boolean
|
|
840
1013
|
createdAt?: boolean
|
|
841
1014
|
updatedAt?: boolean
|
|
842
1015
|
}, ExtArgs["result"]["dbAppForCatalog"]>
|
|
@@ -860,6 +1033,7 @@ export type DbAppForCatalogSelectUpdateManyAndReturn<ExtArgs extends runtime.Typ
|
|
|
860
1033
|
deprecated?: boolean
|
|
861
1034
|
aiPrompt?: boolean
|
|
862
1035
|
urlIssues?: boolean
|
|
1036
|
+
tiers?: boolean
|
|
863
1037
|
createdAt?: boolean
|
|
864
1038
|
updatedAt?: boolean
|
|
865
1039
|
}, ExtArgs["result"]["dbAppForCatalog"]>
|
|
@@ -883,13 +1057,15 @@ export type DbAppForCatalogSelectScalar = {
|
|
|
883
1057
|
deprecated?: boolean
|
|
884
1058
|
aiPrompt?: boolean
|
|
885
1059
|
urlIssues?: boolean
|
|
1060
|
+
tiers?: boolean
|
|
886
1061
|
createdAt?: boolean
|
|
887
1062
|
updatedAt?: boolean
|
|
888
1063
|
}
|
|
889
1064
|
|
|
890
|
-
export type DbAppForCatalogOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "slug" | "displayName" | "abbreviation" | "nicknames" | "description" | "access" | "teams" | "accessRequest" | "notes" | "tags" | "appUrl" | "links" | "iconName" | "screenshotIds" | "deprecated" | "aiPrompt" | "urlIssues" | "createdAt" | "updatedAt", ExtArgs["result"]["dbAppForCatalog"]>
|
|
1065
|
+
export type DbAppForCatalogOmit<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = runtime.Types.Extensions.GetOmit<"id" | "slug" | "displayName" | "abbreviation" | "nicknames" | "description" | "access" | "teams" | "accessRequest" | "notes" | "tags" | "appUrl" | "links" | "iconName" | "screenshotIds" | "deprecated" | "aiPrompt" | "urlIssues" | "tiers" | "createdAt" | "updatedAt", ExtArgs["result"]["dbAppForCatalog"]>
|
|
891
1066
|
export type DbAppForCatalogInclude<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
892
1067
|
sourceRefs?: boolean | Prisma.DbAppForCatalog$sourceRefsArgs<ExtArgs>
|
|
1068
|
+
subResources?: boolean | Prisma.DbAppForCatalog$subResourcesArgs<ExtArgs>
|
|
893
1069
|
_count?: boolean | Prisma.DbAppForCatalogCountOutputTypeDefaultArgs<ExtArgs>
|
|
894
1070
|
}
|
|
895
1071
|
export type DbAppForCatalogIncludeCreateManyAndReturn<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {}
|
|
@@ -899,6 +1075,7 @@ export type $DbAppForCatalogPayload<ExtArgs extends runtime.Types.Extensions.Int
|
|
|
899
1075
|
name: "DbAppForCatalog"
|
|
900
1076
|
objects: {
|
|
901
1077
|
sourceRefs: Prisma.$SourceReferencePayload<ExtArgs>[]
|
|
1078
|
+
subResources: Prisma.$DbSubResourcePayload<ExtArgs>[]
|
|
902
1079
|
}
|
|
903
1080
|
scalars: runtime.Types.Extensions.GetPayloadResult<{
|
|
904
1081
|
id: string
|
|
@@ -931,6 +1108,10 @@ export type $DbAppForCatalogPayload<ExtArgs extends runtime.Types.Extensions.Int
|
|
|
931
1108
|
deprecated:PrismaJson.AppDeprecation | null
|
|
932
1109
|
aiPrompt: string | null
|
|
933
1110
|
urlIssues: string[]
|
|
1111
|
+
/**
|
|
1112
|
+
* [AppTierVariant[]]
|
|
1113
|
+
*/
|
|
1114
|
+
tiers:PrismaJson.AppTierVariant[] | null
|
|
934
1115
|
createdAt: Date
|
|
935
1116
|
updatedAt: Date
|
|
936
1117
|
}, ExtArgs["result"]["dbAppForCatalog"]>
|
|
@@ -1328,6 +1509,7 @@ readonly fields: DbAppForCatalogFieldRefs;
|
|
|
1328
1509
|
export interface Prisma__DbAppForCatalogClient<T, Null = never, ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs, GlobalOmitOptions = {}> extends Prisma.PrismaPromise<T> {
|
|
1329
1510
|
readonly [Symbol.toStringTag]: "PrismaPromise"
|
|
1330
1511
|
sourceRefs<T extends Prisma.DbAppForCatalog$sourceRefsArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.DbAppForCatalog$sourceRefsArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$SourceReferencePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
1512
|
+
subResources<T extends Prisma.DbAppForCatalog$subResourcesArgs<ExtArgs> = {}>(args?: Prisma.Subset<T, Prisma.DbAppForCatalog$subResourcesArgs<ExtArgs>>): Prisma.PrismaPromise<runtime.Types.Result.GetResult<Prisma.$DbSubResourcePayload<ExtArgs>, T, "findMany", GlobalOmitOptions> | Null>
|
|
1331
1513
|
/**
|
|
1332
1514
|
* Attaches callbacks for the resolution and/or rejection of the Promise.
|
|
1333
1515
|
* @param onfulfilled The callback to execute when the Promise is resolved.
|
|
@@ -1375,6 +1557,7 @@ export interface DbAppForCatalogFieldRefs {
|
|
|
1375
1557
|
readonly deprecated: Prisma.FieldRef<"DbAppForCatalog", 'Json'>
|
|
1376
1558
|
readonly aiPrompt: Prisma.FieldRef<"DbAppForCatalog", 'String'>
|
|
1377
1559
|
readonly urlIssues: Prisma.FieldRef<"DbAppForCatalog", 'String[]'>
|
|
1560
|
+
readonly tiers: Prisma.FieldRef<"DbAppForCatalog", 'Json'>
|
|
1378
1561
|
readonly createdAt: Prisma.FieldRef<"DbAppForCatalog", 'DateTime'>
|
|
1379
1562
|
readonly updatedAt: Prisma.FieldRef<"DbAppForCatalog", 'DateTime'>
|
|
1380
1563
|
}
|
|
@@ -1788,6 +1971,30 @@ export type DbAppForCatalog$sourceRefsArgs<ExtArgs extends runtime.Types.Extensi
|
|
|
1788
1971
|
distinct?: Prisma.SourceReferenceScalarFieldEnum | Prisma.SourceReferenceScalarFieldEnum[]
|
|
1789
1972
|
}
|
|
1790
1973
|
|
|
1974
|
+
/**
|
|
1975
|
+
* DbAppForCatalog.subResources
|
|
1976
|
+
*/
|
|
1977
|
+
export type DbAppForCatalog$subResourcesArgs<ExtArgs extends runtime.Types.Extensions.InternalArgs = runtime.Types.Extensions.DefaultArgs> = {
|
|
1978
|
+
/**
|
|
1979
|
+
* Select specific fields to fetch from the DbSubResource
|
|
1980
|
+
*/
|
|
1981
|
+
select?: Prisma.DbSubResourceSelect<ExtArgs> | null
|
|
1982
|
+
/**
|
|
1983
|
+
* Omit specific fields from the DbSubResource
|
|
1984
|
+
*/
|
|
1985
|
+
omit?: Prisma.DbSubResourceOmit<ExtArgs> | null
|
|
1986
|
+
/**
|
|
1987
|
+
* Choose, which related nodes to fetch as well
|
|
1988
|
+
*/
|
|
1989
|
+
include?: Prisma.DbSubResourceInclude<ExtArgs> | null
|
|
1990
|
+
where?: Prisma.DbSubResourceWhereInput
|
|
1991
|
+
orderBy?: Prisma.DbSubResourceOrderByWithRelationInput | Prisma.DbSubResourceOrderByWithRelationInput[]
|
|
1992
|
+
cursor?: Prisma.DbSubResourceWhereUniqueInput
|
|
1993
|
+
take?: number
|
|
1994
|
+
skip?: number
|
|
1995
|
+
distinct?: Prisma.DbSubResourceScalarFieldEnum | Prisma.DbSubResourceScalarFieldEnum[]
|
|
1996
|
+
}
|
|
1997
|
+
|
|
1791
1998
|
/**
|
|
1792
1999
|
* DbAppForCatalog without action
|
|
1793
2000
|
*/
|
|
@@ -503,14 +503,6 @@ export type BytesFieldUpdateOperationsInput = {
|
|
|
503
503
|
set?: runtime.Bytes
|
|
504
504
|
}
|
|
505
505
|
|
|
506
|
-
export type IntFieldUpdateOperationsInput = {
|
|
507
|
-
set?: number
|
|
508
|
-
increment?: number
|
|
509
|
-
decrement?: number
|
|
510
|
-
multiply?: number
|
|
511
|
-
divide?: number
|
|
512
|
-
}
|
|
513
|
-
|
|
514
506
|
export type NullableIntFieldUpdateOperationsInput = {
|
|
515
507
|
set?: number | null
|
|
516
508
|
increment?: number
|