@helloao/cli 0.0.20 → 0.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +136 -136
- package/dist/cjs/cli.cjs +5526 -6666
- package/dist/cjs/index.cjs +3830 -5150
- package/dist/esm/index.js +1233 -342
- package/dist/esm/index.js.map +4 -4
- package/dist/types/actions.d.ts +36 -0
- package/dist/types/db.d.ts +2 -2
- package/dist/types/ebible.d.ts +1 -1
- package/dist/types/files.d.ts +7 -1
- package/dist/types/openapi.d.ts +2 -0
- package/dist/types/uploads.d.ts +6 -0
- package/meta/ARBNAV.json +10 -10
- package/meta/BSB.json +10 -10
- package/meta/HBOMAS.json +10 -10
- package/meta/HINIRV.json +10 -10
- package/meta/eng_dra.json +10 -10
- package/migrations/20240420231455_initial/migration.sql +66 -66
- package/migrations/20240711173108_add_chapter_audio/migration.sql +13 -13
- package/migrations/20240724212651_add_hashing/migration.sql +25 -25
- package/migrations/20250625201152_add_extra_ebible_metadata/migration.sql +3 -3
- package/migrations/20250630200532_add_apocryhpa_flag/migration.sql +2 -2
- package/migrations/20250701195337_add_file_warnings/migration.sql +8 -8
- package/migrations/20251028135135_add_datasets/migration.sql +72 -72
- package/migrations/20251028144932_fix_dataset_types/migration.sql +50 -50
- package/migrations/20260217200934_add_license_notice/migration.sql +5 -0
- package/package.json +5 -2
- package/prisma-gen/edge.js +5 -3
- package/prisma-gen/index-browser.js +2 -0
- package/prisma-gen/index.d.ts +92 -0
- package/prisma-gen/index.js +5 -3
- package/prisma-gen/wasm.js +2 -0
- package/schema.prisma +2 -0
- package/prisma-gen/client.d.ts +0 -1
- package/prisma-gen/client.js +0 -4
package/prisma-gen/index.d.ts
CHANGED
|
@@ -2918,6 +2918,7 @@ export namespace Prisma {
|
|
|
2918
2918
|
website: string | null
|
|
2919
2919
|
licenseUrl: string | null
|
|
2920
2920
|
licenseNotes: string | null
|
|
2921
|
+
licenseNotice: string | null
|
|
2921
2922
|
shortName: string | null
|
|
2922
2923
|
englishName: string | null
|
|
2923
2924
|
language: string | null
|
|
@@ -2931,6 +2932,7 @@ export namespace Prisma {
|
|
|
2931
2932
|
website: string | null
|
|
2932
2933
|
licenseUrl: string | null
|
|
2933
2934
|
licenseNotes: string | null
|
|
2935
|
+
licenseNotice: string | null
|
|
2934
2936
|
shortName: string | null
|
|
2935
2937
|
englishName: string | null
|
|
2936
2938
|
language: string | null
|
|
@@ -2944,6 +2946,7 @@ export namespace Prisma {
|
|
|
2944
2946
|
website: number
|
|
2945
2947
|
licenseUrl: number
|
|
2946
2948
|
licenseNotes: number
|
|
2949
|
+
licenseNotice: number
|
|
2947
2950
|
shortName: number
|
|
2948
2951
|
englishName: number
|
|
2949
2952
|
language: number
|
|
@@ -2959,6 +2962,7 @@ export namespace Prisma {
|
|
|
2959
2962
|
website?: true
|
|
2960
2963
|
licenseUrl?: true
|
|
2961
2964
|
licenseNotes?: true
|
|
2965
|
+
licenseNotice?: true
|
|
2962
2966
|
shortName?: true
|
|
2963
2967
|
englishName?: true
|
|
2964
2968
|
language?: true
|
|
@@ -2972,6 +2976,7 @@ export namespace Prisma {
|
|
|
2972
2976
|
website?: true
|
|
2973
2977
|
licenseUrl?: true
|
|
2974
2978
|
licenseNotes?: true
|
|
2979
|
+
licenseNotice?: true
|
|
2975
2980
|
shortName?: true
|
|
2976
2981
|
englishName?: true
|
|
2977
2982
|
language?: true
|
|
@@ -2985,6 +2990,7 @@ export namespace Prisma {
|
|
|
2985
2990
|
website?: true
|
|
2986
2991
|
licenseUrl?: true
|
|
2987
2992
|
licenseNotes?: true
|
|
2993
|
+
licenseNotice?: true
|
|
2988
2994
|
shortName?: true
|
|
2989
2995
|
englishName?: true
|
|
2990
2996
|
language?: true
|
|
@@ -3071,6 +3077,7 @@ export namespace Prisma {
|
|
|
3071
3077
|
website: string
|
|
3072
3078
|
licenseUrl: string
|
|
3073
3079
|
licenseNotes: string | null
|
|
3080
|
+
licenseNotice: string | null
|
|
3074
3081
|
shortName: string | null
|
|
3075
3082
|
englishName: string
|
|
3076
3083
|
language: string
|
|
@@ -3101,6 +3108,7 @@ export namespace Prisma {
|
|
|
3101
3108
|
website?: boolean
|
|
3102
3109
|
licenseUrl?: boolean
|
|
3103
3110
|
licenseNotes?: boolean
|
|
3111
|
+
licenseNotice?: boolean
|
|
3104
3112
|
shortName?: boolean
|
|
3105
3113
|
englishName?: boolean
|
|
3106
3114
|
language?: boolean
|
|
@@ -3120,6 +3128,7 @@ export namespace Prisma {
|
|
|
3120
3128
|
website?: boolean
|
|
3121
3129
|
licenseUrl?: boolean
|
|
3122
3130
|
licenseNotes?: boolean
|
|
3131
|
+
licenseNotice?: boolean
|
|
3123
3132
|
shortName?: boolean
|
|
3124
3133
|
englishName?: boolean
|
|
3125
3134
|
language?: boolean
|
|
@@ -3133,6 +3142,7 @@ export namespace Prisma {
|
|
|
3133
3142
|
website?: boolean
|
|
3134
3143
|
licenseUrl?: boolean
|
|
3135
3144
|
licenseNotes?: boolean
|
|
3145
|
+
licenseNotice?: boolean
|
|
3136
3146
|
shortName?: boolean
|
|
3137
3147
|
englishName?: boolean
|
|
3138
3148
|
language?: boolean
|
|
@@ -3165,6 +3175,7 @@ export namespace Prisma {
|
|
|
3165
3175
|
website: string
|
|
3166
3176
|
licenseUrl: string
|
|
3167
3177
|
licenseNotes: string | null
|
|
3178
|
+
licenseNotice: string | null
|
|
3168
3179
|
shortName: string | null
|
|
3169
3180
|
englishName: string
|
|
3170
3181
|
language: string
|
|
@@ -3573,6 +3584,7 @@ export namespace Prisma {
|
|
|
3573
3584
|
readonly website: FieldRef<"Translation", 'String'>
|
|
3574
3585
|
readonly licenseUrl: FieldRef<"Translation", 'String'>
|
|
3575
3586
|
readonly licenseNotes: FieldRef<"Translation", 'String'>
|
|
3587
|
+
readonly licenseNotice: FieldRef<"Translation", 'String'>
|
|
3576
3588
|
readonly shortName: FieldRef<"Translation", 'String'>
|
|
3577
3589
|
readonly englishName: FieldRef<"Translation", 'String'>
|
|
3578
3590
|
readonly language: FieldRef<"Translation", 'String'>
|
|
@@ -4020,6 +4032,7 @@ export namespace Prisma {
|
|
|
4020
4032
|
website: string | null
|
|
4021
4033
|
licenseUrl: string | null
|
|
4022
4034
|
licenseNotes: string | null
|
|
4035
|
+
licenseNotice: string | null
|
|
4023
4036
|
englishName: string | null
|
|
4024
4037
|
language: string | null
|
|
4025
4038
|
textDirection: string | null
|
|
@@ -4032,6 +4045,7 @@ export namespace Prisma {
|
|
|
4032
4045
|
website: string | null
|
|
4033
4046
|
licenseUrl: string | null
|
|
4034
4047
|
licenseNotes: string | null
|
|
4048
|
+
licenseNotice: string | null
|
|
4035
4049
|
englishName: string | null
|
|
4036
4050
|
language: string | null
|
|
4037
4051
|
textDirection: string | null
|
|
@@ -4044,6 +4058,7 @@ export namespace Prisma {
|
|
|
4044
4058
|
website: number
|
|
4045
4059
|
licenseUrl: number
|
|
4046
4060
|
licenseNotes: number
|
|
4061
|
+
licenseNotice: number
|
|
4047
4062
|
englishName: number
|
|
4048
4063
|
language: number
|
|
4049
4064
|
textDirection: number
|
|
@@ -4058,6 +4073,7 @@ export namespace Prisma {
|
|
|
4058
4073
|
website?: true
|
|
4059
4074
|
licenseUrl?: true
|
|
4060
4075
|
licenseNotes?: true
|
|
4076
|
+
licenseNotice?: true
|
|
4061
4077
|
englishName?: true
|
|
4062
4078
|
language?: true
|
|
4063
4079
|
textDirection?: true
|
|
@@ -4070,6 +4086,7 @@ export namespace Prisma {
|
|
|
4070
4086
|
website?: true
|
|
4071
4087
|
licenseUrl?: true
|
|
4072
4088
|
licenseNotes?: true
|
|
4089
|
+
licenseNotice?: true
|
|
4073
4090
|
englishName?: true
|
|
4074
4091
|
language?: true
|
|
4075
4092
|
textDirection?: true
|
|
@@ -4082,6 +4099,7 @@ export namespace Prisma {
|
|
|
4082
4099
|
website?: true
|
|
4083
4100
|
licenseUrl?: true
|
|
4084
4101
|
licenseNotes?: true
|
|
4102
|
+
licenseNotice?: true
|
|
4085
4103
|
englishName?: true
|
|
4086
4104
|
language?: true
|
|
4087
4105
|
textDirection?: true
|
|
@@ -4167,6 +4185,7 @@ export namespace Prisma {
|
|
|
4167
4185
|
website: string
|
|
4168
4186
|
licenseUrl: string
|
|
4169
4187
|
licenseNotes: string | null
|
|
4188
|
+
licenseNotice: string | null
|
|
4170
4189
|
englishName: string
|
|
4171
4190
|
language: string
|
|
4172
4191
|
textDirection: string
|
|
@@ -4196,6 +4215,7 @@ export namespace Prisma {
|
|
|
4196
4215
|
website?: boolean
|
|
4197
4216
|
licenseUrl?: boolean
|
|
4198
4217
|
licenseNotes?: boolean
|
|
4218
|
+
licenseNotice?: boolean
|
|
4199
4219
|
englishName?: boolean
|
|
4200
4220
|
language?: boolean
|
|
4201
4221
|
textDirection?: boolean
|
|
@@ -4213,6 +4233,7 @@ export namespace Prisma {
|
|
|
4213
4233
|
website?: boolean
|
|
4214
4234
|
licenseUrl?: boolean
|
|
4215
4235
|
licenseNotes?: boolean
|
|
4236
|
+
licenseNotice?: boolean
|
|
4216
4237
|
englishName?: boolean
|
|
4217
4238
|
language?: boolean
|
|
4218
4239
|
textDirection?: boolean
|
|
@@ -4225,6 +4246,7 @@ export namespace Prisma {
|
|
|
4225
4246
|
website?: boolean
|
|
4226
4247
|
licenseUrl?: boolean
|
|
4227
4248
|
licenseNotes?: boolean
|
|
4249
|
+
licenseNotice?: boolean
|
|
4228
4250
|
englishName?: boolean
|
|
4229
4251
|
language?: boolean
|
|
4230
4252
|
textDirection?: boolean
|
|
@@ -4254,6 +4276,7 @@ export namespace Prisma {
|
|
|
4254
4276
|
website: string
|
|
4255
4277
|
licenseUrl: string
|
|
4256
4278
|
licenseNotes: string | null
|
|
4279
|
+
licenseNotice: string | null
|
|
4257
4280
|
englishName: string
|
|
4258
4281
|
language: string
|
|
4259
4282
|
textDirection: string
|
|
@@ -4660,6 +4683,7 @@ export namespace Prisma {
|
|
|
4660
4683
|
readonly website: FieldRef<"Commentary", 'String'>
|
|
4661
4684
|
readonly licenseUrl: FieldRef<"Commentary", 'String'>
|
|
4662
4685
|
readonly licenseNotes: FieldRef<"Commentary", 'String'>
|
|
4686
|
+
readonly licenseNotice: FieldRef<"Commentary", 'String'>
|
|
4663
4687
|
readonly englishName: FieldRef<"Commentary", 'String'>
|
|
4664
4688
|
readonly language: FieldRef<"Commentary", 'String'>
|
|
4665
4689
|
readonly textDirection: FieldRef<"Commentary", 'String'>
|
|
@@ -22587,6 +22611,7 @@ export namespace Prisma {
|
|
|
22587
22611
|
website: 'website',
|
|
22588
22612
|
licenseUrl: 'licenseUrl',
|
|
22589
22613
|
licenseNotes: 'licenseNotes',
|
|
22614
|
+
licenseNotice: 'licenseNotice',
|
|
22590
22615
|
shortName: 'shortName',
|
|
22591
22616
|
englishName: 'englishName',
|
|
22592
22617
|
language: 'language',
|
|
@@ -22603,6 +22628,7 @@ export namespace Prisma {
|
|
|
22603
22628
|
website: 'website',
|
|
22604
22629
|
licenseUrl: 'licenseUrl',
|
|
22605
22630
|
licenseNotes: 'licenseNotes',
|
|
22631
|
+
licenseNotice: 'licenseNotice',
|
|
22606
22632
|
englishName: 'englishName',
|
|
22607
22633
|
language: 'language',
|
|
22608
22634
|
textDirection: 'textDirection',
|
|
@@ -22917,6 +22943,7 @@ export namespace Prisma {
|
|
|
22917
22943
|
website?: StringFilter<"Translation"> | string
|
|
22918
22944
|
licenseUrl?: StringFilter<"Translation"> | string
|
|
22919
22945
|
licenseNotes?: StringNullableFilter<"Translation"> | string | null
|
|
22946
|
+
licenseNotice?: StringNullableFilter<"Translation"> | string | null
|
|
22920
22947
|
shortName?: StringNullableFilter<"Translation"> | string | null
|
|
22921
22948
|
englishName?: StringFilter<"Translation"> | string
|
|
22922
22949
|
language?: StringFilter<"Translation"> | string
|
|
@@ -22935,6 +22962,7 @@ export namespace Prisma {
|
|
|
22935
22962
|
website?: SortOrder
|
|
22936
22963
|
licenseUrl?: SortOrder
|
|
22937
22964
|
licenseNotes?: SortOrderInput | SortOrder
|
|
22965
|
+
licenseNotice?: SortOrderInput | SortOrder
|
|
22938
22966
|
shortName?: SortOrderInput | SortOrder
|
|
22939
22967
|
englishName?: SortOrder
|
|
22940
22968
|
language?: SortOrder
|
|
@@ -22956,6 +22984,7 @@ export namespace Prisma {
|
|
|
22956
22984
|
website?: StringFilter<"Translation"> | string
|
|
22957
22985
|
licenseUrl?: StringFilter<"Translation"> | string
|
|
22958
22986
|
licenseNotes?: StringNullableFilter<"Translation"> | string | null
|
|
22987
|
+
licenseNotice?: StringNullableFilter<"Translation"> | string | null
|
|
22959
22988
|
shortName?: StringNullableFilter<"Translation"> | string | null
|
|
22960
22989
|
englishName?: StringFilter<"Translation"> | string
|
|
22961
22990
|
language?: StringFilter<"Translation"> | string
|
|
@@ -22974,6 +23003,7 @@ export namespace Prisma {
|
|
|
22974
23003
|
website?: SortOrder
|
|
22975
23004
|
licenseUrl?: SortOrder
|
|
22976
23005
|
licenseNotes?: SortOrderInput | SortOrder
|
|
23006
|
+
licenseNotice?: SortOrderInput | SortOrder
|
|
22977
23007
|
shortName?: SortOrderInput | SortOrder
|
|
22978
23008
|
englishName?: SortOrder
|
|
22979
23009
|
language?: SortOrder
|
|
@@ -22993,6 +23023,7 @@ export namespace Prisma {
|
|
|
22993
23023
|
website?: StringWithAggregatesFilter<"Translation"> | string
|
|
22994
23024
|
licenseUrl?: StringWithAggregatesFilter<"Translation"> | string
|
|
22995
23025
|
licenseNotes?: StringNullableWithAggregatesFilter<"Translation"> | string | null
|
|
23026
|
+
licenseNotice?: StringNullableWithAggregatesFilter<"Translation"> | string | null
|
|
22996
23027
|
shortName?: StringNullableWithAggregatesFilter<"Translation"> | string | null
|
|
22997
23028
|
englishName?: StringWithAggregatesFilter<"Translation"> | string
|
|
22998
23029
|
language?: StringWithAggregatesFilter<"Translation"> | string
|
|
@@ -23009,6 +23040,7 @@ export namespace Prisma {
|
|
|
23009
23040
|
website?: StringFilter<"Commentary"> | string
|
|
23010
23041
|
licenseUrl?: StringFilter<"Commentary"> | string
|
|
23011
23042
|
licenseNotes?: StringNullableFilter<"Commentary"> | string | null
|
|
23043
|
+
licenseNotice?: StringNullableFilter<"Commentary"> | string | null
|
|
23012
23044
|
englishName?: StringFilter<"Commentary"> | string
|
|
23013
23045
|
language?: StringFilter<"Commentary"> | string
|
|
23014
23046
|
textDirection?: StringFilter<"Commentary"> | string
|
|
@@ -23025,6 +23057,7 @@ export namespace Prisma {
|
|
|
23025
23057
|
website?: SortOrder
|
|
23026
23058
|
licenseUrl?: SortOrder
|
|
23027
23059
|
licenseNotes?: SortOrderInput | SortOrder
|
|
23060
|
+
licenseNotice?: SortOrderInput | SortOrder
|
|
23028
23061
|
englishName?: SortOrder
|
|
23029
23062
|
language?: SortOrder
|
|
23030
23063
|
textDirection?: SortOrder
|
|
@@ -23044,6 +23077,7 @@ export namespace Prisma {
|
|
|
23044
23077
|
website?: StringFilter<"Commentary"> | string
|
|
23045
23078
|
licenseUrl?: StringFilter<"Commentary"> | string
|
|
23046
23079
|
licenseNotes?: StringNullableFilter<"Commentary"> | string | null
|
|
23080
|
+
licenseNotice?: StringNullableFilter<"Commentary"> | string | null
|
|
23047
23081
|
englishName?: StringFilter<"Commentary"> | string
|
|
23048
23082
|
language?: StringFilter<"Commentary"> | string
|
|
23049
23083
|
textDirection?: StringFilter<"Commentary"> | string
|
|
@@ -23060,6 +23094,7 @@ export namespace Prisma {
|
|
|
23060
23094
|
website?: SortOrder
|
|
23061
23095
|
licenseUrl?: SortOrder
|
|
23062
23096
|
licenseNotes?: SortOrderInput | SortOrder
|
|
23097
|
+
licenseNotice?: SortOrderInput | SortOrder
|
|
23063
23098
|
englishName?: SortOrder
|
|
23064
23099
|
language?: SortOrder
|
|
23065
23100
|
textDirection?: SortOrder
|
|
@@ -23078,6 +23113,7 @@ export namespace Prisma {
|
|
|
23078
23113
|
website?: StringWithAggregatesFilter<"Commentary"> | string
|
|
23079
23114
|
licenseUrl?: StringWithAggregatesFilter<"Commentary"> | string
|
|
23080
23115
|
licenseNotes?: StringNullableWithAggregatesFilter<"Commentary"> | string | null
|
|
23116
|
+
licenseNotice?: StringNullableWithAggregatesFilter<"Commentary"> | string | null
|
|
23081
23117
|
englishName?: StringWithAggregatesFilter<"Commentary"> | string
|
|
23082
23118
|
language?: StringWithAggregatesFilter<"Commentary"> | string
|
|
23083
23119
|
textDirection?: StringWithAggregatesFilter<"Commentary"> | string
|
|
@@ -24421,6 +24457,7 @@ export namespace Prisma {
|
|
|
24421
24457
|
website: string
|
|
24422
24458
|
licenseUrl: string
|
|
24423
24459
|
licenseNotes?: string | null
|
|
24460
|
+
licenseNotice?: string | null
|
|
24424
24461
|
shortName?: string | null
|
|
24425
24462
|
englishName: string
|
|
24426
24463
|
language: string
|
|
@@ -24439,6 +24476,7 @@ export namespace Prisma {
|
|
|
24439
24476
|
website: string
|
|
24440
24477
|
licenseUrl: string
|
|
24441
24478
|
licenseNotes?: string | null
|
|
24479
|
+
licenseNotice?: string | null
|
|
24442
24480
|
shortName?: string | null
|
|
24443
24481
|
englishName: string
|
|
24444
24482
|
language: string
|
|
@@ -24457,6 +24495,7 @@ export namespace Prisma {
|
|
|
24457
24495
|
website?: StringFieldUpdateOperationsInput | string
|
|
24458
24496
|
licenseUrl?: StringFieldUpdateOperationsInput | string
|
|
24459
24497
|
licenseNotes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24498
|
+
licenseNotice?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24460
24499
|
shortName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24461
24500
|
englishName?: StringFieldUpdateOperationsInput | string
|
|
24462
24501
|
language?: StringFieldUpdateOperationsInput | string
|
|
@@ -24475,6 +24514,7 @@ export namespace Prisma {
|
|
|
24475
24514
|
website?: StringFieldUpdateOperationsInput | string
|
|
24476
24515
|
licenseUrl?: StringFieldUpdateOperationsInput | string
|
|
24477
24516
|
licenseNotes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24517
|
+
licenseNotice?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24478
24518
|
shortName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24479
24519
|
englishName?: StringFieldUpdateOperationsInput | string
|
|
24480
24520
|
language?: StringFieldUpdateOperationsInput | string
|
|
@@ -24493,6 +24533,7 @@ export namespace Prisma {
|
|
|
24493
24533
|
website: string
|
|
24494
24534
|
licenseUrl: string
|
|
24495
24535
|
licenseNotes?: string | null
|
|
24536
|
+
licenseNotice?: string | null
|
|
24496
24537
|
shortName?: string | null
|
|
24497
24538
|
englishName: string
|
|
24498
24539
|
language: string
|
|
@@ -24506,6 +24547,7 @@ export namespace Prisma {
|
|
|
24506
24547
|
website?: StringFieldUpdateOperationsInput | string
|
|
24507
24548
|
licenseUrl?: StringFieldUpdateOperationsInput | string
|
|
24508
24549
|
licenseNotes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24550
|
+
licenseNotice?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24509
24551
|
shortName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24510
24552
|
englishName?: StringFieldUpdateOperationsInput | string
|
|
24511
24553
|
language?: StringFieldUpdateOperationsInput | string
|
|
@@ -24519,6 +24561,7 @@ export namespace Prisma {
|
|
|
24519
24561
|
website?: StringFieldUpdateOperationsInput | string
|
|
24520
24562
|
licenseUrl?: StringFieldUpdateOperationsInput | string
|
|
24521
24563
|
licenseNotes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24564
|
+
licenseNotice?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24522
24565
|
shortName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24523
24566
|
englishName?: StringFieldUpdateOperationsInput | string
|
|
24524
24567
|
language?: StringFieldUpdateOperationsInput | string
|
|
@@ -24532,6 +24575,7 @@ export namespace Prisma {
|
|
|
24532
24575
|
website: string
|
|
24533
24576
|
licenseUrl: string
|
|
24534
24577
|
licenseNotes?: string | null
|
|
24578
|
+
licenseNotice?: string | null
|
|
24535
24579
|
englishName: string
|
|
24536
24580
|
language: string
|
|
24537
24581
|
textDirection: string
|
|
@@ -24548,6 +24592,7 @@ export namespace Prisma {
|
|
|
24548
24592
|
website: string
|
|
24549
24593
|
licenseUrl: string
|
|
24550
24594
|
licenseNotes?: string | null
|
|
24595
|
+
licenseNotice?: string | null
|
|
24551
24596
|
englishName: string
|
|
24552
24597
|
language: string
|
|
24553
24598
|
textDirection: string
|
|
@@ -24564,6 +24609,7 @@ export namespace Prisma {
|
|
|
24564
24609
|
website?: StringFieldUpdateOperationsInput | string
|
|
24565
24610
|
licenseUrl?: StringFieldUpdateOperationsInput | string
|
|
24566
24611
|
licenseNotes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24612
|
+
licenseNotice?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24567
24613
|
englishName?: StringFieldUpdateOperationsInput | string
|
|
24568
24614
|
language?: StringFieldUpdateOperationsInput | string
|
|
24569
24615
|
textDirection?: StringFieldUpdateOperationsInput | string
|
|
@@ -24580,6 +24626,7 @@ export namespace Prisma {
|
|
|
24580
24626
|
website?: StringFieldUpdateOperationsInput | string
|
|
24581
24627
|
licenseUrl?: StringFieldUpdateOperationsInput | string
|
|
24582
24628
|
licenseNotes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24629
|
+
licenseNotice?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24583
24630
|
englishName?: StringFieldUpdateOperationsInput | string
|
|
24584
24631
|
language?: StringFieldUpdateOperationsInput | string
|
|
24585
24632
|
textDirection?: StringFieldUpdateOperationsInput | string
|
|
@@ -24596,6 +24643,7 @@ export namespace Prisma {
|
|
|
24596
24643
|
website: string
|
|
24597
24644
|
licenseUrl: string
|
|
24598
24645
|
licenseNotes?: string | null
|
|
24646
|
+
licenseNotice?: string | null
|
|
24599
24647
|
englishName: string
|
|
24600
24648
|
language: string
|
|
24601
24649
|
textDirection: string
|
|
@@ -24608,6 +24656,7 @@ export namespace Prisma {
|
|
|
24608
24656
|
website?: StringFieldUpdateOperationsInput | string
|
|
24609
24657
|
licenseUrl?: StringFieldUpdateOperationsInput | string
|
|
24610
24658
|
licenseNotes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24659
|
+
licenseNotice?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24611
24660
|
englishName?: StringFieldUpdateOperationsInput | string
|
|
24612
24661
|
language?: StringFieldUpdateOperationsInput | string
|
|
24613
24662
|
textDirection?: StringFieldUpdateOperationsInput | string
|
|
@@ -24620,6 +24669,7 @@ export namespace Prisma {
|
|
|
24620
24669
|
website?: StringFieldUpdateOperationsInput | string
|
|
24621
24670
|
licenseUrl?: StringFieldUpdateOperationsInput | string
|
|
24622
24671
|
licenseNotes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24672
|
+
licenseNotice?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24623
24673
|
englishName?: StringFieldUpdateOperationsInput | string
|
|
24624
24674
|
language?: StringFieldUpdateOperationsInput | string
|
|
24625
24675
|
textDirection?: StringFieldUpdateOperationsInput | string
|
|
@@ -26068,6 +26118,7 @@ export namespace Prisma {
|
|
|
26068
26118
|
website?: SortOrder
|
|
26069
26119
|
licenseUrl?: SortOrder
|
|
26070
26120
|
licenseNotes?: SortOrder
|
|
26121
|
+
licenseNotice?: SortOrder
|
|
26071
26122
|
shortName?: SortOrder
|
|
26072
26123
|
englishName?: SortOrder
|
|
26073
26124
|
language?: SortOrder
|
|
@@ -26081,6 +26132,7 @@ export namespace Prisma {
|
|
|
26081
26132
|
website?: SortOrder
|
|
26082
26133
|
licenseUrl?: SortOrder
|
|
26083
26134
|
licenseNotes?: SortOrder
|
|
26135
|
+
licenseNotice?: SortOrder
|
|
26084
26136
|
shortName?: SortOrder
|
|
26085
26137
|
englishName?: SortOrder
|
|
26086
26138
|
language?: SortOrder
|
|
@@ -26094,6 +26146,7 @@ export namespace Prisma {
|
|
|
26094
26146
|
website?: SortOrder
|
|
26095
26147
|
licenseUrl?: SortOrder
|
|
26096
26148
|
licenseNotes?: SortOrder
|
|
26149
|
+
licenseNotice?: SortOrder
|
|
26097
26150
|
shortName?: SortOrder
|
|
26098
26151
|
englishName?: SortOrder
|
|
26099
26152
|
language?: SortOrder
|
|
@@ -26181,6 +26234,7 @@ export namespace Prisma {
|
|
|
26181
26234
|
website?: SortOrder
|
|
26182
26235
|
licenseUrl?: SortOrder
|
|
26183
26236
|
licenseNotes?: SortOrder
|
|
26237
|
+
licenseNotice?: SortOrder
|
|
26184
26238
|
englishName?: SortOrder
|
|
26185
26239
|
language?: SortOrder
|
|
26186
26240
|
textDirection?: SortOrder
|
|
@@ -26193,6 +26247,7 @@ export namespace Prisma {
|
|
|
26193
26247
|
website?: SortOrder
|
|
26194
26248
|
licenseUrl?: SortOrder
|
|
26195
26249
|
licenseNotes?: SortOrder
|
|
26250
|
+
licenseNotice?: SortOrder
|
|
26196
26251
|
englishName?: SortOrder
|
|
26197
26252
|
language?: SortOrder
|
|
26198
26253
|
textDirection?: SortOrder
|
|
@@ -26205,6 +26260,7 @@ export namespace Prisma {
|
|
|
26205
26260
|
website?: SortOrder
|
|
26206
26261
|
licenseUrl?: SortOrder
|
|
26207
26262
|
licenseNotes?: SortOrder
|
|
26263
|
+
licenseNotice?: SortOrder
|
|
26208
26264
|
englishName?: SortOrder
|
|
26209
26265
|
language?: SortOrder
|
|
26210
26266
|
textDirection?: SortOrder
|
|
@@ -29725,6 +29781,7 @@ export namespace Prisma {
|
|
|
29725
29781
|
website: string
|
|
29726
29782
|
licenseUrl: string
|
|
29727
29783
|
licenseNotes?: string | null
|
|
29784
|
+
licenseNotice?: string | null
|
|
29728
29785
|
shortName?: string | null
|
|
29729
29786
|
englishName: string
|
|
29730
29787
|
language: string
|
|
@@ -29742,6 +29799,7 @@ export namespace Prisma {
|
|
|
29742
29799
|
website: string
|
|
29743
29800
|
licenseUrl: string
|
|
29744
29801
|
licenseNotes?: string | null
|
|
29802
|
+
licenseNotice?: string | null
|
|
29745
29803
|
shortName?: string | null
|
|
29746
29804
|
englishName: string
|
|
29747
29805
|
language: string
|
|
@@ -29879,6 +29937,7 @@ export namespace Prisma {
|
|
|
29879
29937
|
website?: StringFieldUpdateOperationsInput | string
|
|
29880
29938
|
licenseUrl?: StringFieldUpdateOperationsInput | string
|
|
29881
29939
|
licenseNotes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29940
|
+
licenseNotice?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29882
29941
|
shortName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29883
29942
|
englishName?: StringFieldUpdateOperationsInput | string
|
|
29884
29943
|
language?: StringFieldUpdateOperationsInput | string
|
|
@@ -29896,6 +29955,7 @@ export namespace Prisma {
|
|
|
29896
29955
|
website?: StringFieldUpdateOperationsInput | string
|
|
29897
29956
|
licenseUrl?: StringFieldUpdateOperationsInput | string
|
|
29898
29957
|
licenseNotes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29958
|
+
licenseNotice?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29899
29959
|
shortName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
29900
29960
|
englishName?: StringFieldUpdateOperationsInput | string
|
|
29901
29961
|
language?: StringFieldUpdateOperationsInput | string
|
|
@@ -29977,6 +30037,7 @@ export namespace Prisma {
|
|
|
29977
30037
|
website: string
|
|
29978
30038
|
licenseUrl: string
|
|
29979
30039
|
licenseNotes?: string | null
|
|
30040
|
+
licenseNotice?: string | null
|
|
29980
30041
|
englishName: string
|
|
29981
30042
|
language: string
|
|
29982
30043
|
textDirection: string
|
|
@@ -29992,6 +30053,7 @@ export namespace Prisma {
|
|
|
29992
30053
|
website: string
|
|
29993
30054
|
licenseUrl: string
|
|
29994
30055
|
licenseNotes?: string | null
|
|
30056
|
+
licenseNotice?: string | null
|
|
29995
30057
|
englishName: string
|
|
29996
30058
|
language: string
|
|
29997
30059
|
textDirection: string
|
|
@@ -30075,6 +30137,7 @@ export namespace Prisma {
|
|
|
30075
30137
|
website?: StringFieldUpdateOperationsInput | string
|
|
30076
30138
|
licenseUrl?: StringFieldUpdateOperationsInput | string
|
|
30077
30139
|
licenseNotes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30140
|
+
licenseNotice?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30078
30141
|
englishName?: StringFieldUpdateOperationsInput | string
|
|
30079
30142
|
language?: StringFieldUpdateOperationsInput | string
|
|
30080
30143
|
textDirection?: StringFieldUpdateOperationsInput | string
|
|
@@ -30090,6 +30153,7 @@ export namespace Prisma {
|
|
|
30090
30153
|
website?: StringFieldUpdateOperationsInput | string
|
|
30091
30154
|
licenseUrl?: StringFieldUpdateOperationsInput | string
|
|
30092
30155
|
licenseNotes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30156
|
+
licenseNotice?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30093
30157
|
englishName?: StringFieldUpdateOperationsInput | string
|
|
30094
30158
|
language?: StringFieldUpdateOperationsInput | string
|
|
30095
30159
|
textDirection?: StringFieldUpdateOperationsInput | string
|
|
@@ -30137,6 +30201,7 @@ export namespace Prisma {
|
|
|
30137
30201
|
website: string
|
|
30138
30202
|
licenseUrl: string
|
|
30139
30203
|
licenseNotes?: string | null
|
|
30204
|
+
licenseNotice?: string | null
|
|
30140
30205
|
englishName: string
|
|
30141
30206
|
language: string
|
|
30142
30207
|
textDirection: string
|
|
@@ -30152,6 +30217,7 @@ export namespace Prisma {
|
|
|
30152
30217
|
website: string
|
|
30153
30218
|
licenseUrl: string
|
|
30154
30219
|
licenseNotes?: string | null
|
|
30220
|
+
licenseNotice?: string | null
|
|
30155
30221
|
englishName: string
|
|
30156
30222
|
language: string
|
|
30157
30223
|
textDirection: string
|
|
@@ -30183,6 +30249,7 @@ export namespace Prisma {
|
|
|
30183
30249
|
website?: StringFieldUpdateOperationsInput | string
|
|
30184
30250
|
licenseUrl?: StringFieldUpdateOperationsInput | string
|
|
30185
30251
|
licenseNotes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30252
|
+
licenseNotice?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30186
30253
|
englishName?: StringFieldUpdateOperationsInput | string
|
|
30187
30254
|
language?: StringFieldUpdateOperationsInput | string
|
|
30188
30255
|
textDirection?: StringFieldUpdateOperationsInput | string
|
|
@@ -30198,6 +30265,7 @@ export namespace Prisma {
|
|
|
30198
30265
|
website?: StringFieldUpdateOperationsInput | string
|
|
30199
30266
|
licenseUrl?: StringFieldUpdateOperationsInput | string
|
|
30200
30267
|
licenseNotes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30268
|
+
licenseNotice?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30201
30269
|
englishName?: StringFieldUpdateOperationsInput | string
|
|
30202
30270
|
language?: StringFieldUpdateOperationsInput | string
|
|
30203
30271
|
textDirection?: StringFieldUpdateOperationsInput | string
|
|
@@ -30248,6 +30316,7 @@ export namespace Prisma {
|
|
|
30248
30316
|
website: string
|
|
30249
30317
|
licenseUrl: string
|
|
30250
30318
|
licenseNotes?: string | null
|
|
30319
|
+
licenseNotice?: string | null
|
|
30251
30320
|
shortName?: string | null
|
|
30252
30321
|
englishName: string
|
|
30253
30322
|
language: string
|
|
@@ -30265,6 +30334,7 @@ export namespace Prisma {
|
|
|
30265
30334
|
website: string
|
|
30266
30335
|
licenseUrl: string
|
|
30267
30336
|
licenseNotes?: string | null
|
|
30337
|
+
licenseNotice?: string | null
|
|
30268
30338
|
shortName?: string | null
|
|
30269
30339
|
englishName: string
|
|
30270
30340
|
language: string
|
|
@@ -30412,6 +30482,7 @@ export namespace Prisma {
|
|
|
30412
30482
|
website?: StringFieldUpdateOperationsInput | string
|
|
30413
30483
|
licenseUrl?: StringFieldUpdateOperationsInput | string
|
|
30414
30484
|
licenseNotes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30485
|
+
licenseNotice?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30415
30486
|
shortName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30416
30487
|
englishName?: StringFieldUpdateOperationsInput | string
|
|
30417
30488
|
language?: StringFieldUpdateOperationsInput | string
|
|
@@ -30429,6 +30500,7 @@ export namespace Prisma {
|
|
|
30429
30500
|
website?: StringFieldUpdateOperationsInput | string
|
|
30430
30501
|
licenseUrl?: StringFieldUpdateOperationsInput | string
|
|
30431
30502
|
licenseNotes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30503
|
+
licenseNotice?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30432
30504
|
shortName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30433
30505
|
englishName?: StringFieldUpdateOperationsInput | string
|
|
30434
30506
|
language?: StringFieldUpdateOperationsInput | string
|
|
@@ -30525,6 +30597,7 @@ export namespace Prisma {
|
|
|
30525
30597
|
website: string
|
|
30526
30598
|
licenseUrl: string
|
|
30527
30599
|
licenseNotes?: string | null
|
|
30600
|
+
licenseNotice?: string | null
|
|
30528
30601
|
englishName: string
|
|
30529
30602
|
language: string
|
|
30530
30603
|
textDirection: string
|
|
@@ -30540,6 +30613,7 @@ export namespace Prisma {
|
|
|
30540
30613
|
website: string
|
|
30541
30614
|
licenseUrl: string
|
|
30542
30615
|
licenseNotes?: string | null
|
|
30616
|
+
licenseNotice?: string | null
|
|
30543
30617
|
englishName: string
|
|
30544
30618
|
language: string
|
|
30545
30619
|
textDirection: string
|
|
@@ -30633,6 +30707,7 @@ export namespace Prisma {
|
|
|
30633
30707
|
website?: StringFieldUpdateOperationsInput | string
|
|
30634
30708
|
licenseUrl?: StringFieldUpdateOperationsInput | string
|
|
30635
30709
|
licenseNotes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30710
|
+
licenseNotice?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30636
30711
|
englishName?: StringFieldUpdateOperationsInput | string
|
|
30637
30712
|
language?: StringFieldUpdateOperationsInput | string
|
|
30638
30713
|
textDirection?: StringFieldUpdateOperationsInput | string
|
|
@@ -30648,6 +30723,7 @@ export namespace Prisma {
|
|
|
30648
30723
|
website?: StringFieldUpdateOperationsInput | string
|
|
30649
30724
|
licenseUrl?: StringFieldUpdateOperationsInput | string
|
|
30650
30725
|
licenseNotes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30726
|
+
licenseNotice?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30651
30727
|
englishName?: StringFieldUpdateOperationsInput | string
|
|
30652
30728
|
language?: StringFieldUpdateOperationsInput | string
|
|
30653
30729
|
textDirection?: StringFieldUpdateOperationsInput | string
|
|
@@ -30714,6 +30790,7 @@ export namespace Prisma {
|
|
|
30714
30790
|
website: string
|
|
30715
30791
|
licenseUrl: string
|
|
30716
30792
|
licenseNotes?: string | null
|
|
30793
|
+
licenseNotice?: string | null
|
|
30717
30794
|
shortName?: string | null
|
|
30718
30795
|
englishName: string
|
|
30719
30796
|
language: string
|
|
@@ -30731,6 +30808,7 @@ export namespace Prisma {
|
|
|
30731
30808
|
website: string
|
|
30732
30809
|
licenseUrl: string
|
|
30733
30810
|
licenseNotes?: string | null
|
|
30811
|
+
licenseNotice?: string | null
|
|
30734
30812
|
shortName?: string | null
|
|
30735
30813
|
englishName: string
|
|
30736
30814
|
language: string
|
|
@@ -30830,6 +30908,7 @@ export namespace Prisma {
|
|
|
30830
30908
|
website?: StringFieldUpdateOperationsInput | string
|
|
30831
30909
|
licenseUrl?: StringFieldUpdateOperationsInput | string
|
|
30832
30910
|
licenseNotes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30911
|
+
licenseNotice?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30833
30912
|
shortName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30834
30913
|
englishName?: StringFieldUpdateOperationsInput | string
|
|
30835
30914
|
language?: StringFieldUpdateOperationsInput | string
|
|
@@ -30847,6 +30926,7 @@ export namespace Prisma {
|
|
|
30847
30926
|
website?: StringFieldUpdateOperationsInput | string
|
|
30848
30927
|
licenseUrl?: StringFieldUpdateOperationsInput | string
|
|
30849
30928
|
licenseNotes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30929
|
+
licenseNotice?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30850
30930
|
shortName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
30851
30931
|
englishName?: StringFieldUpdateOperationsInput | string
|
|
30852
30932
|
language?: StringFieldUpdateOperationsInput | string
|
|
@@ -30955,6 +31035,7 @@ export namespace Prisma {
|
|
|
30955
31035
|
website: string
|
|
30956
31036
|
licenseUrl: string
|
|
30957
31037
|
licenseNotes?: string | null
|
|
31038
|
+
licenseNotice?: string | null
|
|
30958
31039
|
shortName?: string | null
|
|
30959
31040
|
englishName: string
|
|
30960
31041
|
language: string
|
|
@@ -30972,6 +31053,7 @@ export namespace Prisma {
|
|
|
30972
31053
|
website: string
|
|
30973
31054
|
licenseUrl: string
|
|
30974
31055
|
licenseNotes?: string | null
|
|
31056
|
+
licenseNotice?: string | null
|
|
30975
31057
|
shortName?: string | null
|
|
30976
31058
|
englishName: string
|
|
30977
31059
|
language: string
|
|
@@ -31101,6 +31183,7 @@ export namespace Prisma {
|
|
|
31101
31183
|
website?: StringFieldUpdateOperationsInput | string
|
|
31102
31184
|
licenseUrl?: StringFieldUpdateOperationsInput | string
|
|
31103
31185
|
licenseNotes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31186
|
+
licenseNotice?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31104
31187
|
shortName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31105
31188
|
englishName?: StringFieldUpdateOperationsInput | string
|
|
31106
31189
|
language?: StringFieldUpdateOperationsInput | string
|
|
@@ -31118,6 +31201,7 @@ export namespace Prisma {
|
|
|
31118
31201
|
website?: StringFieldUpdateOperationsInput | string
|
|
31119
31202
|
licenseUrl?: StringFieldUpdateOperationsInput | string
|
|
31120
31203
|
licenseNotes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31204
|
+
licenseNotice?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31121
31205
|
shortName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31122
31206
|
englishName?: StringFieldUpdateOperationsInput | string
|
|
31123
31207
|
language?: StringFieldUpdateOperationsInput | string
|
|
@@ -31205,6 +31289,7 @@ export namespace Prisma {
|
|
|
31205
31289
|
website: string
|
|
31206
31290
|
licenseUrl: string
|
|
31207
31291
|
licenseNotes?: string | null
|
|
31292
|
+
licenseNotice?: string | null
|
|
31208
31293
|
englishName: string
|
|
31209
31294
|
language: string
|
|
31210
31295
|
textDirection: string
|
|
@@ -31220,6 +31305,7 @@ export namespace Prisma {
|
|
|
31220
31305
|
website: string
|
|
31221
31306
|
licenseUrl: string
|
|
31222
31307
|
licenseNotes?: string | null
|
|
31308
|
+
licenseNotice?: string | null
|
|
31223
31309
|
englishName: string
|
|
31224
31310
|
language: string
|
|
31225
31311
|
textDirection: string
|
|
@@ -31317,6 +31403,7 @@ export namespace Prisma {
|
|
|
31317
31403
|
website?: StringFieldUpdateOperationsInput | string
|
|
31318
31404
|
licenseUrl?: StringFieldUpdateOperationsInput | string
|
|
31319
31405
|
licenseNotes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31406
|
+
licenseNotice?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31320
31407
|
englishName?: StringFieldUpdateOperationsInput | string
|
|
31321
31408
|
language?: StringFieldUpdateOperationsInput | string
|
|
31322
31409
|
textDirection?: StringFieldUpdateOperationsInput | string
|
|
@@ -31332,6 +31419,7 @@ export namespace Prisma {
|
|
|
31332
31419
|
website?: StringFieldUpdateOperationsInput | string
|
|
31333
31420
|
licenseUrl?: StringFieldUpdateOperationsInput | string
|
|
31334
31421
|
licenseNotes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31422
|
+
licenseNotice?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31335
31423
|
englishName?: StringFieldUpdateOperationsInput | string
|
|
31336
31424
|
language?: StringFieldUpdateOperationsInput | string
|
|
31337
31425
|
textDirection?: StringFieldUpdateOperationsInput | string
|
|
@@ -31407,6 +31495,7 @@ export namespace Prisma {
|
|
|
31407
31495
|
website: string
|
|
31408
31496
|
licenseUrl: string
|
|
31409
31497
|
licenseNotes?: string | null
|
|
31498
|
+
licenseNotice?: string | null
|
|
31410
31499
|
shortName?: string | null
|
|
31411
31500
|
englishName: string
|
|
31412
31501
|
language: string
|
|
@@ -31424,6 +31513,7 @@ export namespace Prisma {
|
|
|
31424
31513
|
website: string
|
|
31425
31514
|
licenseUrl: string
|
|
31426
31515
|
licenseNotes?: string | null
|
|
31516
|
+
licenseNotice?: string | null
|
|
31427
31517
|
shortName?: string | null
|
|
31428
31518
|
englishName: string
|
|
31429
31519
|
language: string
|
|
@@ -31554,6 +31644,7 @@ export namespace Prisma {
|
|
|
31554
31644
|
website?: StringFieldUpdateOperationsInput | string
|
|
31555
31645
|
licenseUrl?: StringFieldUpdateOperationsInput | string
|
|
31556
31646
|
licenseNotes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31647
|
+
licenseNotice?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31557
31648
|
shortName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31558
31649
|
englishName?: StringFieldUpdateOperationsInput | string
|
|
31559
31650
|
language?: StringFieldUpdateOperationsInput | string
|
|
@@ -31571,6 +31662,7 @@ export namespace Prisma {
|
|
|
31571
31662
|
website?: StringFieldUpdateOperationsInput | string
|
|
31572
31663
|
licenseUrl?: StringFieldUpdateOperationsInput | string
|
|
31573
31664
|
licenseNotes?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31665
|
+
licenseNotice?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31574
31666
|
shortName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
31575
31667
|
englishName?: StringFieldUpdateOperationsInput | string
|
|
31576
31668
|
language?: StringFieldUpdateOperationsInput | string
|