@friggframework/core 2.0.0-next.66 → 2.0.0-next.68
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/generated/prisma-mongodb/edge.js +4 -3
- package/generated/prisma-mongodb/index-browser.js +1 -0
- package/generated/prisma-mongodb/index.d.ts +53 -1
- package/generated/prisma-mongodb/index.js +4 -3
- package/generated/prisma-mongodb/package.json +1 -1
- package/generated/prisma-mongodb/schema.prisma +2 -0
- package/generated/prisma-mongodb/wasm.js +4 -3
- package/generated/prisma-postgresql/edge.js +4 -3
- package/generated/prisma-postgresql/index-browser.js +1 -0
- package/generated/prisma-postgresql/index.d.ts +55 -1
- package/generated/prisma-postgresql/index.js +4 -3
- package/generated/prisma-postgresql/package.json +1 -1
- package/generated/prisma-postgresql/schema.prisma +2 -0
- package/generated/prisma-postgresql/wasm.js +4 -3
- package/modules/repositories/module-repository-documentdb.js +52 -24
- package/modules/repositories/module-repository-mongo.js +62 -31
- package/modules/repositories/module-repository-postgres.js +64 -37
- package/modules/repositories/module-repository.js +58 -29
- package/package.json +5 -5
- package/prisma-mongodb/schema.prisma +2 -0
- package/prisma-postgresql/schema.prisma +2 -0
|
@@ -5554,6 +5554,7 @@ export namespace Prisma {
|
|
|
5554
5554
|
name: number
|
|
5555
5555
|
moduleName: number
|
|
5556
5556
|
externalId: number
|
|
5557
|
+
data: number
|
|
5557
5558
|
createdAt: number
|
|
5558
5559
|
updatedAt: number
|
|
5559
5560
|
integrationIds: number
|
|
@@ -5591,6 +5592,7 @@ export namespace Prisma {
|
|
|
5591
5592
|
name?: true
|
|
5592
5593
|
moduleName?: true
|
|
5593
5594
|
externalId?: true
|
|
5595
|
+
data?: true
|
|
5594
5596
|
createdAt?: true
|
|
5595
5597
|
updatedAt?: true
|
|
5596
5598
|
integrationIds?: true
|
|
@@ -5677,6 +5679,7 @@ export namespace Prisma {
|
|
|
5677
5679
|
name: string | null
|
|
5678
5680
|
moduleName: string | null
|
|
5679
5681
|
externalId: string | null
|
|
5682
|
+
data: JsonValue
|
|
5680
5683
|
createdAt: Date
|
|
5681
5684
|
updatedAt: Date
|
|
5682
5685
|
integrationIds: string[]
|
|
@@ -5707,6 +5710,7 @@ export namespace Prisma {
|
|
|
5707
5710
|
name?: boolean
|
|
5708
5711
|
moduleName?: boolean
|
|
5709
5712
|
externalId?: boolean
|
|
5713
|
+
data?: boolean
|
|
5710
5714
|
createdAt?: boolean
|
|
5711
5715
|
updatedAt?: boolean
|
|
5712
5716
|
integrationIds?: boolean
|
|
@@ -5729,13 +5733,14 @@ export namespace Prisma {
|
|
|
5729
5733
|
name?: boolean
|
|
5730
5734
|
moduleName?: boolean
|
|
5731
5735
|
externalId?: boolean
|
|
5736
|
+
data?: boolean
|
|
5732
5737
|
createdAt?: boolean
|
|
5733
5738
|
updatedAt?: boolean
|
|
5734
5739
|
integrationIds?: boolean
|
|
5735
5740
|
syncIds?: boolean
|
|
5736
5741
|
}
|
|
5737
5742
|
|
|
5738
|
-
export type EntityOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "credentialId" | "userId" | "name" | "moduleName" | "externalId" | "createdAt" | "updatedAt" | "integrationIds" | "syncIds", ExtArgs["result"]["entity"]>
|
|
5743
|
+
export type EntityOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "credentialId" | "userId" | "name" | "moduleName" | "externalId" | "data" | "createdAt" | "updatedAt" | "integrationIds" | "syncIds", ExtArgs["result"]["entity"]>
|
|
5739
5744
|
export type EntityInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5740
5745
|
credential?: boolean | Entity$credentialArgs<ExtArgs>
|
|
5741
5746
|
user?: boolean | Entity$userArgs<ExtArgs>
|
|
@@ -5763,6 +5768,7 @@ export namespace Prisma {
|
|
|
5763
5768
|
name: string | null
|
|
5764
5769
|
moduleName: string | null
|
|
5765
5770
|
externalId: string | null
|
|
5771
|
+
data: Prisma.JsonValue
|
|
5766
5772
|
createdAt: Date
|
|
5767
5773
|
updatedAt: Date
|
|
5768
5774
|
integrationIds: string[]
|
|
@@ -6171,6 +6177,7 @@ export namespace Prisma {
|
|
|
6171
6177
|
readonly name: FieldRef<"Entity", 'String'>
|
|
6172
6178
|
readonly moduleName: FieldRef<"Entity", 'String'>
|
|
6173
6179
|
readonly externalId: FieldRef<"Entity", 'String'>
|
|
6180
|
+
readonly data: FieldRef<"Entity", 'Json'>
|
|
6174
6181
|
readonly createdAt: FieldRef<"Entity", 'DateTime'>
|
|
6175
6182
|
readonly updatedAt: FieldRef<"Entity", 'DateTime'>
|
|
6176
6183
|
readonly integrationIds: FieldRef<"Entity", 'String[]'>
|
|
@@ -15819,6 +15826,7 @@ export namespace Prisma {
|
|
|
15819
15826
|
name: 'name',
|
|
15820
15827
|
moduleName: 'moduleName',
|
|
15821
15828
|
externalId: 'externalId',
|
|
15829
|
+
data: 'data',
|
|
15822
15830
|
createdAt: 'createdAt',
|
|
15823
15831
|
updatedAt: 'updatedAt',
|
|
15824
15832
|
integrationIds: 'integrationIds',
|
|
@@ -16296,6 +16304,7 @@ export namespace Prisma {
|
|
|
16296
16304
|
name?: StringNullableFilter<"Entity"> | string | null
|
|
16297
16305
|
moduleName?: StringNullableFilter<"Entity"> | string | null
|
|
16298
16306
|
externalId?: StringNullableFilter<"Entity"> | string | null
|
|
16307
|
+
data?: JsonFilter<"Entity">
|
|
16299
16308
|
createdAt?: DateTimeFilter<"Entity"> | Date | string
|
|
16300
16309
|
updatedAt?: DateTimeFilter<"Entity"> | Date | string
|
|
16301
16310
|
integrationIds?: StringNullableListFilter<"Entity">
|
|
@@ -16315,6 +16324,7 @@ export namespace Prisma {
|
|
|
16315
16324
|
name?: SortOrder
|
|
16316
16325
|
moduleName?: SortOrder
|
|
16317
16326
|
externalId?: SortOrder
|
|
16327
|
+
data?: SortOrder
|
|
16318
16328
|
createdAt?: SortOrder
|
|
16319
16329
|
updatedAt?: SortOrder
|
|
16320
16330
|
integrationIds?: SortOrder
|
|
@@ -16337,6 +16347,7 @@ export namespace Prisma {
|
|
|
16337
16347
|
name?: StringNullableFilter<"Entity"> | string | null
|
|
16338
16348
|
moduleName?: StringNullableFilter<"Entity"> | string | null
|
|
16339
16349
|
externalId?: StringNullableFilter<"Entity"> | string | null
|
|
16350
|
+
data?: JsonFilter<"Entity">
|
|
16340
16351
|
createdAt?: DateTimeFilter<"Entity"> | Date | string
|
|
16341
16352
|
updatedAt?: DateTimeFilter<"Entity"> | Date | string
|
|
16342
16353
|
integrationIds?: StringNullableListFilter<"Entity">
|
|
@@ -16356,6 +16367,7 @@ export namespace Prisma {
|
|
|
16356
16367
|
name?: SortOrder
|
|
16357
16368
|
moduleName?: SortOrder
|
|
16358
16369
|
externalId?: SortOrder
|
|
16370
|
+
data?: SortOrder
|
|
16359
16371
|
createdAt?: SortOrder
|
|
16360
16372
|
updatedAt?: SortOrder
|
|
16361
16373
|
integrationIds?: SortOrder
|
|
@@ -16375,6 +16387,7 @@ export namespace Prisma {
|
|
|
16375
16387
|
name?: StringNullableWithAggregatesFilter<"Entity"> | string | null
|
|
16376
16388
|
moduleName?: StringNullableWithAggregatesFilter<"Entity"> | string | null
|
|
16377
16389
|
externalId?: StringNullableWithAggregatesFilter<"Entity"> | string | null
|
|
16390
|
+
data?: JsonWithAggregatesFilter<"Entity">
|
|
16378
16391
|
createdAt?: DateTimeWithAggregatesFilter<"Entity"> | Date | string
|
|
16379
16392
|
updatedAt?: DateTimeWithAggregatesFilter<"Entity"> | Date | string
|
|
16380
16393
|
integrationIds?: StringNullableListFilter<"Entity">
|
|
@@ -17196,6 +17209,7 @@ export namespace Prisma {
|
|
|
17196
17209
|
name?: string | null
|
|
17197
17210
|
moduleName?: string | null
|
|
17198
17211
|
externalId?: string | null
|
|
17212
|
+
data?: InputJsonValue
|
|
17199
17213
|
createdAt?: Date | string
|
|
17200
17214
|
updatedAt?: Date | string
|
|
17201
17215
|
credential?: CredentialCreateNestedOneWithoutEntitiesInput
|
|
@@ -17213,6 +17227,7 @@ export namespace Prisma {
|
|
|
17213
17227
|
name?: string | null
|
|
17214
17228
|
moduleName?: string | null
|
|
17215
17229
|
externalId?: string | null
|
|
17230
|
+
data?: InputJsonValue
|
|
17216
17231
|
createdAt?: Date | string
|
|
17217
17232
|
updatedAt?: Date | string
|
|
17218
17233
|
integrationIds?: EntityCreateintegrationIdsInput | string[]
|
|
@@ -17227,6 +17242,7 @@ export namespace Prisma {
|
|
|
17227
17242
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17228
17243
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17229
17244
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17245
|
+
data?: InputJsonValue | InputJsonValue
|
|
17230
17246
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
17231
17247
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
17232
17248
|
credential?: CredentialUpdateOneWithoutEntitiesNestedInput
|
|
@@ -17243,6 +17259,7 @@ export namespace Prisma {
|
|
|
17243
17259
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17244
17260
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17245
17261
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17262
|
+
data?: InputJsonValue | InputJsonValue
|
|
17246
17263
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
17247
17264
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
17248
17265
|
integrationIds?: EntityUpdateintegrationIdsInput | string[]
|
|
@@ -17260,6 +17277,7 @@ export namespace Prisma {
|
|
|
17260
17277
|
name?: string | null
|
|
17261
17278
|
moduleName?: string | null
|
|
17262
17279
|
externalId?: string | null
|
|
17280
|
+
data?: InputJsonValue
|
|
17263
17281
|
createdAt?: Date | string
|
|
17264
17282
|
updatedAt?: Date | string
|
|
17265
17283
|
integrationIds?: EntityCreateintegrationIdsInput | string[]
|
|
@@ -17270,6 +17288,7 @@ export namespace Prisma {
|
|
|
17270
17288
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17271
17289
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17272
17290
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17291
|
+
data?: InputJsonValue | InputJsonValue
|
|
17273
17292
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
17274
17293
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
17275
17294
|
}
|
|
@@ -17280,6 +17299,7 @@ export namespace Prisma {
|
|
|
17280
17299
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17281
17300
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17282
17301
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
17302
|
+
data?: InputJsonValue | InputJsonValue
|
|
17283
17303
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
17284
17304
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
17285
17305
|
integrationIds?: EntityUpdateintegrationIdsInput | string[]
|
|
@@ -18236,6 +18256,7 @@ export namespace Prisma {
|
|
|
18236
18256
|
name?: SortOrder
|
|
18237
18257
|
moduleName?: SortOrder
|
|
18238
18258
|
externalId?: SortOrder
|
|
18259
|
+
data?: SortOrder
|
|
18239
18260
|
createdAt?: SortOrder
|
|
18240
18261
|
updatedAt?: SortOrder
|
|
18241
18262
|
integrationIds?: SortOrder
|
|
@@ -20054,6 +20075,7 @@ export namespace Prisma {
|
|
|
20054
20075
|
name?: string | null
|
|
20055
20076
|
moduleName?: string | null
|
|
20056
20077
|
externalId?: string | null
|
|
20078
|
+
data?: InputJsonValue
|
|
20057
20079
|
createdAt?: Date | string
|
|
20058
20080
|
updatedAt?: Date | string
|
|
20059
20081
|
credential?: CredentialCreateNestedOneWithoutEntitiesInput
|
|
@@ -20069,6 +20091,7 @@ export namespace Prisma {
|
|
|
20069
20091
|
name?: string | null
|
|
20070
20092
|
moduleName?: string | null
|
|
20071
20093
|
externalId?: string | null
|
|
20094
|
+
data?: InputJsonValue
|
|
20072
20095
|
createdAt?: Date | string
|
|
20073
20096
|
updatedAt?: Date | string
|
|
20074
20097
|
integrationIds?: EntityCreateintegrationIdsInput | string[]
|
|
@@ -20333,6 +20356,7 @@ export namespace Prisma {
|
|
|
20333
20356
|
name?: StringNullableFilter<"Entity"> | string | null
|
|
20334
20357
|
moduleName?: StringNullableFilter<"Entity"> | string | null
|
|
20335
20358
|
externalId?: StringNullableFilter<"Entity"> | string | null
|
|
20359
|
+
data?: JsonFilter<"Entity">
|
|
20336
20360
|
createdAt?: DateTimeFilter<"Entity"> | Date | string
|
|
20337
20361
|
updatedAt?: DateTimeFilter<"Entity"> | Date | string
|
|
20338
20362
|
integrationIds?: StringNullableListFilter<"Entity">
|
|
@@ -20545,6 +20569,7 @@ export namespace Prisma {
|
|
|
20545
20569
|
name?: string | null
|
|
20546
20570
|
moduleName?: string | null
|
|
20547
20571
|
externalId?: string | null
|
|
20572
|
+
data?: InputJsonValue
|
|
20548
20573
|
createdAt?: Date | string
|
|
20549
20574
|
updatedAt?: Date | string
|
|
20550
20575
|
user?: UserCreateNestedOneWithoutEntitiesInput
|
|
@@ -20560,6 +20585,7 @@ export namespace Prisma {
|
|
|
20560
20585
|
name?: string | null
|
|
20561
20586
|
moduleName?: string | null
|
|
20562
20587
|
externalId?: string | null
|
|
20588
|
+
data?: InputJsonValue
|
|
20563
20589
|
createdAt?: Date | string
|
|
20564
20590
|
updatedAt?: Date | string
|
|
20565
20591
|
integrationIds?: EntityCreateintegrationIdsInput | string[]
|
|
@@ -21044,6 +21070,7 @@ export namespace Prisma {
|
|
|
21044
21070
|
name?: string | null
|
|
21045
21071
|
moduleName?: string | null
|
|
21046
21072
|
externalId?: string | null
|
|
21073
|
+
data?: InputJsonValue
|
|
21047
21074
|
createdAt?: Date | string
|
|
21048
21075
|
updatedAt?: Date | string
|
|
21049
21076
|
credential?: CredentialCreateNestedOneWithoutEntitiesInput
|
|
@@ -21060,6 +21087,7 @@ export namespace Prisma {
|
|
|
21060
21087
|
name?: string | null
|
|
21061
21088
|
moduleName?: string | null
|
|
21062
21089
|
externalId?: string | null
|
|
21090
|
+
data?: InputJsonValue
|
|
21063
21091
|
createdAt?: Date | string
|
|
21064
21092
|
updatedAt?: Date | string
|
|
21065
21093
|
integrationIds?: EntityCreateintegrationIdsInput | string[]
|
|
@@ -21650,6 +21678,7 @@ export namespace Prisma {
|
|
|
21650
21678
|
name?: string | null
|
|
21651
21679
|
moduleName?: string | null
|
|
21652
21680
|
externalId?: string | null
|
|
21681
|
+
data?: InputJsonValue
|
|
21653
21682
|
createdAt?: Date | string
|
|
21654
21683
|
updatedAt?: Date | string
|
|
21655
21684
|
credential?: CredentialCreateNestedOneWithoutEntitiesInput
|
|
@@ -21666,6 +21695,7 @@ export namespace Prisma {
|
|
|
21666
21695
|
name?: string | null
|
|
21667
21696
|
moduleName?: string | null
|
|
21668
21697
|
externalId?: string | null
|
|
21698
|
+
data?: InputJsonValue
|
|
21669
21699
|
createdAt?: Date | string
|
|
21670
21700
|
updatedAt?: Date | string
|
|
21671
21701
|
integrationIds?: EntityCreateintegrationIdsInput | string[]
|
|
@@ -21808,6 +21838,7 @@ export namespace Prisma {
|
|
|
21808
21838
|
name?: string | null
|
|
21809
21839
|
moduleName?: string | null
|
|
21810
21840
|
externalId?: string | null
|
|
21841
|
+
data?: InputJsonValue
|
|
21811
21842
|
createdAt?: Date | string
|
|
21812
21843
|
updatedAt?: Date | string
|
|
21813
21844
|
credential?: CredentialCreateNestedOneWithoutEntitiesInput
|
|
@@ -21824,6 +21855,7 @@ export namespace Prisma {
|
|
|
21824
21855
|
name?: string | null
|
|
21825
21856
|
moduleName?: string | null
|
|
21826
21857
|
externalId?: string | null
|
|
21858
|
+
data?: InputJsonValue
|
|
21827
21859
|
createdAt?: Date | string
|
|
21828
21860
|
updatedAt?: Date | string
|
|
21829
21861
|
integrationIds?: EntityCreateintegrationIdsInput | string[]
|
|
@@ -21879,6 +21911,7 @@ export namespace Prisma {
|
|
|
21879
21911
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21880
21912
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21881
21913
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21914
|
+
data?: InputJsonValue | InputJsonValue
|
|
21882
21915
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
21883
21916
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
21884
21917
|
credential?: CredentialUpdateOneWithoutEntitiesNestedInput
|
|
@@ -21894,6 +21927,7 @@ export namespace Prisma {
|
|
|
21894
21927
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21895
21928
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21896
21929
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
21930
|
+
data?: InputJsonValue | InputJsonValue
|
|
21897
21931
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
21898
21932
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
21899
21933
|
integrationIds?: EntityUpdateintegrationIdsInput | string[]
|
|
@@ -22058,6 +22092,7 @@ export namespace Prisma {
|
|
|
22058
22092
|
name?: string | null
|
|
22059
22093
|
moduleName?: string | null
|
|
22060
22094
|
externalId?: string | null
|
|
22095
|
+
data?: InputJsonValue
|
|
22061
22096
|
createdAt?: Date | string
|
|
22062
22097
|
updatedAt?: Date | string
|
|
22063
22098
|
credential?: CredentialCreateNestedOneWithoutEntitiesInput
|
|
@@ -22074,6 +22109,7 @@ export namespace Prisma {
|
|
|
22074
22109
|
name?: string | null
|
|
22075
22110
|
moduleName?: string | null
|
|
22076
22111
|
externalId?: string | null
|
|
22112
|
+
data?: InputJsonValue
|
|
22077
22113
|
createdAt?: Date | string
|
|
22078
22114
|
updatedAt?: Date | string
|
|
22079
22115
|
integrationIds?: EntityCreateintegrationIdsInput | string[]
|
|
@@ -22128,6 +22164,7 @@ export namespace Prisma {
|
|
|
22128
22164
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22129
22165
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22130
22166
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22167
|
+
data?: InputJsonValue | InputJsonValue
|
|
22131
22168
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22132
22169
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22133
22170
|
credential?: CredentialUpdateOneWithoutEntitiesNestedInput
|
|
@@ -22143,6 +22180,7 @@ export namespace Prisma {
|
|
|
22143
22180
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22144
22181
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22145
22182
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22183
|
+
data?: InputJsonValue | InputJsonValue
|
|
22146
22184
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22147
22185
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22148
22186
|
integrationIds?: EntityUpdateintegrationIdsInput | string[]
|
|
@@ -22187,6 +22225,7 @@ export namespace Prisma {
|
|
|
22187
22225
|
name?: string | null
|
|
22188
22226
|
moduleName?: string | null
|
|
22189
22227
|
externalId?: string | null
|
|
22228
|
+
data?: InputJsonValue
|
|
22190
22229
|
createdAt?: Date | string
|
|
22191
22230
|
updatedAt?: Date | string
|
|
22192
22231
|
integrationIds?: EntityCreateintegrationIdsInput | string[]
|
|
@@ -22317,6 +22356,7 @@ export namespace Prisma {
|
|
|
22317
22356
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22318
22357
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22319
22358
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22359
|
+
data?: InputJsonValue | InputJsonValue
|
|
22320
22360
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22321
22361
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22322
22362
|
credential?: CredentialUpdateOneWithoutEntitiesNestedInput
|
|
@@ -22331,6 +22371,7 @@ export namespace Prisma {
|
|
|
22331
22371
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22332
22372
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22333
22373
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22374
|
+
data?: InputJsonValue | InputJsonValue
|
|
22334
22375
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22335
22376
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22336
22377
|
integrationIds?: EntityUpdateintegrationIdsInput | string[]
|
|
@@ -22346,6 +22387,7 @@ export namespace Prisma {
|
|
|
22346
22387
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22347
22388
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22348
22389
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22390
|
+
data?: InputJsonValue | InputJsonValue
|
|
22349
22391
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22350
22392
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22351
22393
|
integrationIds?: EntityUpdateintegrationIdsInput | string[]
|
|
@@ -22445,6 +22487,7 @@ export namespace Prisma {
|
|
|
22445
22487
|
name?: string | null
|
|
22446
22488
|
moduleName?: string | null
|
|
22447
22489
|
externalId?: string | null
|
|
22490
|
+
data?: InputJsonValue
|
|
22448
22491
|
createdAt?: Date | string
|
|
22449
22492
|
updatedAt?: Date | string
|
|
22450
22493
|
integrationIds?: EntityCreateintegrationIdsInput | string[]
|
|
@@ -22455,6 +22498,7 @@ export namespace Prisma {
|
|
|
22455
22498
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22456
22499
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22457
22500
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22501
|
+
data?: InputJsonValue | InputJsonValue
|
|
22458
22502
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22459
22503
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22460
22504
|
user?: UserUpdateOneWithoutEntitiesNestedInput
|
|
@@ -22469,6 +22513,7 @@ export namespace Prisma {
|
|
|
22469
22513
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22470
22514
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22471
22515
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22516
|
+
data?: InputJsonValue | InputJsonValue
|
|
22472
22517
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22473
22518
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22474
22519
|
integrationIds?: EntityUpdateintegrationIdsInput | string[]
|
|
@@ -22484,6 +22529,7 @@ export namespace Prisma {
|
|
|
22484
22529
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22485
22530
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22486
22531
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22532
|
+
data?: InputJsonValue | InputJsonValue
|
|
22487
22533
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22488
22534
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22489
22535
|
integrationIds?: EntityUpdateintegrationIdsInput | string[]
|
|
@@ -22655,6 +22701,7 @@ export namespace Prisma {
|
|
|
22655
22701
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22656
22702
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22657
22703
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22704
|
+
data?: InputJsonValue | InputJsonValue
|
|
22658
22705
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22659
22706
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22660
22707
|
credential?: CredentialUpdateOneWithoutEntitiesNestedInput
|
|
@@ -22670,6 +22717,7 @@ export namespace Prisma {
|
|
|
22670
22717
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22671
22718
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22672
22719
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22720
|
+
data?: InputJsonValue | InputJsonValue
|
|
22673
22721
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22674
22722
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22675
22723
|
integrationIds?: EntityUpdateintegrationIdsInput | string[]
|
|
@@ -22685,6 +22733,7 @@ export namespace Prisma {
|
|
|
22685
22733
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22686
22734
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22687
22735
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22736
|
+
data?: InputJsonValue | InputJsonValue
|
|
22688
22737
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22689
22738
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22690
22739
|
integrationIds?: EntityUpdateintegrationIdsInput | string[]
|
|
@@ -22803,6 +22852,7 @@ export namespace Prisma {
|
|
|
22803
22852
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22804
22853
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22805
22854
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22855
|
+
data?: InputJsonValue | InputJsonValue
|
|
22806
22856
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22807
22857
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22808
22858
|
credential?: CredentialUpdateOneWithoutEntitiesNestedInput
|
|
@@ -22818,6 +22868,7 @@ export namespace Prisma {
|
|
|
22818
22868
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22819
22869
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22820
22870
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22871
|
+
data?: InputJsonValue | InputJsonValue
|
|
22821
22872
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22822
22873
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22823
22874
|
integrationIds?: EntityUpdateintegrationIdsInput | string[]
|
|
@@ -22833,6 +22884,7 @@ export namespace Prisma {
|
|
|
22833
22884
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22834
22885
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22835
22886
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22887
|
+
data?: InputJsonValue | InputJsonValue
|
|
22836
22888
|
createdAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22837
22889
|
updatedAt?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
22838
22890
|
integrationIds?: EntityUpdateintegrationIdsInput | string[]
|