@friggframework/core 2.0.0--canary.461.ec1ad4e.0 → 2.0.0--canary.461.7a66bdf.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/credential/repositories/credential-repository-mongo.js +3 -8
- package/credential/repositories/credential-repository-postgres.js +3 -8
- package/credential/repositories/credential-repository.js +3 -8
- package/generated/prisma-mongodb/edge.js +3 -5
- package/generated/prisma-mongodb/index-browser.js +0 -2
- package/generated/prisma-mongodb/index.d.ts +2 -98
- package/generated/prisma-mongodb/index.js +3 -5
- package/generated/prisma-mongodb/package.json +1 -1
- package/generated/prisma-mongodb/schema.prisma +0 -2
- package/generated/prisma-mongodb/wasm.js +3 -5
- package/generated/prisma-postgresql/edge.js +3 -5
- package/generated/prisma-postgresql/index-browser.js +0 -2
- package/generated/prisma-postgresql/index.d.ts +2 -102
- package/generated/prisma-postgresql/index.js +3 -5
- package/generated/prisma-postgresql/package.json +1 -1
- package/generated/prisma-postgresql/schema.prisma +0 -2
- package/generated/prisma-postgresql/wasm.js +3 -5
- package/modules/entity.js +0 -1
- package/modules/repositories/module-repository-mongo.js +3 -12
- package/modules/repositories/module-repository-postgres.js +0 -11
- package/modules/repositories/module-repository.js +1 -12
- package/modules/use-cases/get-entity-options-by-id.js +1 -1
- package/modules/use-cases/get-module.js +1 -2
- package/modules/use-cases/refresh-entity-options.js +1 -1
- package/modules/use-cases/test-module-auth.js +1 -1
- package/package.json +5 -5
- package/prisma-mongodb/schema.prisma +0 -2
- package/prisma-postgresql/schema.prisma +0 -2
- package/types/module-plugin/index.d.ts +0 -2
|
@@ -4817,7 +4817,6 @@ export namespace Prisma {
|
|
|
4817
4817
|
export type CredentialMinAggregateOutputType = {
|
|
4818
4818
|
id: number | null
|
|
4819
4819
|
userId: number | null
|
|
4820
|
-
subType: string | null
|
|
4821
4820
|
authIsValid: boolean | null
|
|
4822
4821
|
externalId: string | null
|
|
4823
4822
|
createdAt: Date | null
|
|
@@ -4827,7 +4826,6 @@ export namespace Prisma {
|
|
|
4827
4826
|
export type CredentialMaxAggregateOutputType = {
|
|
4828
4827
|
id: number | null
|
|
4829
4828
|
userId: number | null
|
|
4830
|
-
subType: string | null
|
|
4831
4829
|
authIsValid: boolean | null
|
|
4832
4830
|
externalId: string | null
|
|
4833
4831
|
createdAt: Date | null
|
|
@@ -4837,7 +4835,6 @@ export namespace Prisma {
|
|
|
4837
4835
|
export type CredentialCountAggregateOutputType = {
|
|
4838
4836
|
id: number
|
|
4839
4837
|
userId: number
|
|
4840
|
-
subType: number
|
|
4841
4838
|
authIsValid: number
|
|
4842
4839
|
externalId: number
|
|
4843
4840
|
data: number
|
|
@@ -4860,7 +4857,6 @@ export namespace Prisma {
|
|
|
4860
4857
|
export type CredentialMinAggregateInputType = {
|
|
4861
4858
|
id?: true
|
|
4862
4859
|
userId?: true
|
|
4863
|
-
subType?: true
|
|
4864
4860
|
authIsValid?: true
|
|
4865
4861
|
externalId?: true
|
|
4866
4862
|
createdAt?: true
|
|
@@ -4870,7 +4866,6 @@ export namespace Prisma {
|
|
|
4870
4866
|
export type CredentialMaxAggregateInputType = {
|
|
4871
4867
|
id?: true
|
|
4872
4868
|
userId?: true
|
|
4873
|
-
subType?: true
|
|
4874
4869
|
authIsValid?: true
|
|
4875
4870
|
externalId?: true
|
|
4876
4871
|
createdAt?: true
|
|
@@ -4880,7 +4875,6 @@ export namespace Prisma {
|
|
|
4880
4875
|
export type CredentialCountAggregateInputType = {
|
|
4881
4876
|
id?: true
|
|
4882
4877
|
userId?: true
|
|
4883
|
-
subType?: true
|
|
4884
4878
|
authIsValid?: true
|
|
4885
4879
|
externalId?: true
|
|
4886
4880
|
data?: true
|
|
@@ -4978,7 +4972,6 @@ export namespace Prisma {
|
|
|
4978
4972
|
export type CredentialGroupByOutputType = {
|
|
4979
4973
|
id: number
|
|
4980
4974
|
userId: number | null
|
|
4981
|
-
subType: string | null
|
|
4982
4975
|
authIsValid: boolean | null
|
|
4983
4976
|
externalId: string | null
|
|
4984
4977
|
data: JsonValue
|
|
@@ -5008,7 +5001,6 @@ export namespace Prisma {
|
|
|
5008
5001
|
export type CredentialSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
5009
5002
|
id?: boolean
|
|
5010
5003
|
userId?: boolean
|
|
5011
|
-
subType?: boolean
|
|
5012
5004
|
authIsValid?: boolean
|
|
5013
5005
|
externalId?: boolean
|
|
5014
5006
|
data?: boolean
|
|
@@ -5022,7 +5014,6 @@ export namespace Prisma {
|
|
|
5022
5014
|
export type CredentialSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
5023
5015
|
id?: boolean
|
|
5024
5016
|
userId?: boolean
|
|
5025
|
-
subType?: boolean
|
|
5026
5017
|
authIsValid?: boolean
|
|
5027
5018
|
externalId?: boolean
|
|
5028
5019
|
data?: boolean
|
|
@@ -5034,7 +5025,6 @@ export namespace Prisma {
|
|
|
5034
5025
|
export type CredentialSelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
5035
5026
|
id?: boolean
|
|
5036
5027
|
userId?: boolean
|
|
5037
|
-
subType?: boolean
|
|
5038
5028
|
authIsValid?: boolean
|
|
5039
5029
|
externalId?: boolean
|
|
5040
5030
|
data?: boolean
|
|
@@ -5046,7 +5036,6 @@ export namespace Prisma {
|
|
|
5046
5036
|
export type CredentialSelectScalar = {
|
|
5047
5037
|
id?: boolean
|
|
5048
5038
|
userId?: boolean
|
|
5049
|
-
subType?: boolean
|
|
5050
5039
|
authIsValid?: boolean
|
|
5051
5040
|
externalId?: boolean
|
|
5052
5041
|
data?: boolean
|
|
@@ -5054,7 +5043,7 @@ export namespace Prisma {
|
|
|
5054
5043
|
updatedAt?: boolean
|
|
5055
5044
|
}
|
|
5056
5045
|
|
|
5057
|
-
export type CredentialOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "userId" | "
|
|
5046
|
+
export type CredentialOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "userId" | "authIsValid" | "externalId" | "data" | "createdAt" | "updatedAt", ExtArgs["result"]["credential"]>
|
|
5058
5047
|
export type CredentialInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
5059
5048
|
user?: boolean | Credential$userArgs<ExtArgs>
|
|
5060
5049
|
entities?: boolean | Credential$entitiesArgs<ExtArgs>
|
|
@@ -5076,7 +5065,6 @@ export namespace Prisma {
|
|
|
5076
5065
|
scalars: $Extensions.GetPayloadResult<{
|
|
5077
5066
|
id: number
|
|
5078
5067
|
userId: number | null
|
|
5079
|
-
subType: string | null
|
|
5080
5068
|
authIsValid: boolean | null
|
|
5081
5069
|
externalId: string | null
|
|
5082
5070
|
data: Prisma.JsonValue
|
|
@@ -5509,7 +5497,6 @@ export namespace Prisma {
|
|
|
5509
5497
|
interface CredentialFieldRefs {
|
|
5510
5498
|
readonly id: FieldRef<"Credential", 'Int'>
|
|
5511
5499
|
readonly userId: FieldRef<"Credential", 'Int'>
|
|
5512
|
-
readonly subType: FieldRef<"Credential", 'String'>
|
|
5513
5500
|
readonly authIsValid: FieldRef<"Credential", 'Boolean'>
|
|
5514
5501
|
readonly externalId: FieldRef<"Credential", 'String'>
|
|
5515
5502
|
readonly data: FieldRef<"Credential", 'Json'>
|
|
@@ -5999,7 +5986,6 @@ export namespace Prisma {
|
|
|
5999
5986
|
export type EntityMinAggregateOutputType = {
|
|
6000
5987
|
id: number | null
|
|
6001
5988
|
credentialId: number | null
|
|
6002
|
-
subType: string | null
|
|
6003
5989
|
userId: number | null
|
|
6004
5990
|
name: string | null
|
|
6005
5991
|
moduleName: string | null
|
|
@@ -6011,7 +5997,6 @@ export namespace Prisma {
|
|
|
6011
5997
|
export type EntityMaxAggregateOutputType = {
|
|
6012
5998
|
id: number | null
|
|
6013
5999
|
credentialId: number | null
|
|
6014
|
-
subType: string | null
|
|
6015
6000
|
userId: number | null
|
|
6016
6001
|
name: string | null
|
|
6017
6002
|
moduleName: string | null
|
|
@@ -6023,7 +6008,6 @@ export namespace Prisma {
|
|
|
6023
6008
|
export type EntityCountAggregateOutputType = {
|
|
6024
6009
|
id: number
|
|
6025
6010
|
credentialId: number
|
|
6026
|
-
subType: number
|
|
6027
6011
|
userId: number
|
|
6028
6012
|
name: number
|
|
6029
6013
|
moduleName: number
|
|
@@ -6049,7 +6033,6 @@ export namespace Prisma {
|
|
|
6049
6033
|
export type EntityMinAggregateInputType = {
|
|
6050
6034
|
id?: true
|
|
6051
6035
|
credentialId?: true
|
|
6052
|
-
subType?: true
|
|
6053
6036
|
userId?: true
|
|
6054
6037
|
name?: true
|
|
6055
6038
|
moduleName?: true
|
|
@@ -6061,7 +6044,6 @@ export namespace Prisma {
|
|
|
6061
6044
|
export type EntityMaxAggregateInputType = {
|
|
6062
6045
|
id?: true
|
|
6063
6046
|
credentialId?: true
|
|
6064
|
-
subType?: true
|
|
6065
6047
|
userId?: true
|
|
6066
6048
|
name?: true
|
|
6067
6049
|
moduleName?: true
|
|
@@ -6073,7 +6055,6 @@ export namespace Prisma {
|
|
|
6073
6055
|
export type EntityCountAggregateInputType = {
|
|
6074
6056
|
id?: true
|
|
6075
6057
|
credentialId?: true
|
|
6076
|
-
subType?: true
|
|
6077
6058
|
userId?: true
|
|
6078
6059
|
name?: true
|
|
6079
6060
|
moduleName?: true
|
|
@@ -6172,7 +6153,6 @@ export namespace Prisma {
|
|
|
6172
6153
|
export type EntityGroupByOutputType = {
|
|
6173
6154
|
id: number
|
|
6174
6155
|
credentialId: number | null
|
|
6175
|
-
subType: string | null
|
|
6176
6156
|
userId: number | null
|
|
6177
6157
|
name: string | null
|
|
6178
6158
|
moduleName: string | null
|
|
@@ -6203,7 +6183,6 @@ export namespace Prisma {
|
|
|
6203
6183
|
export type EntitySelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
6204
6184
|
id?: boolean
|
|
6205
6185
|
credentialId?: boolean
|
|
6206
|
-
subType?: boolean
|
|
6207
6186
|
userId?: boolean
|
|
6208
6187
|
name?: boolean
|
|
6209
6188
|
moduleName?: boolean
|
|
@@ -6222,7 +6201,6 @@ export namespace Prisma {
|
|
|
6222
6201
|
export type EntitySelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
6223
6202
|
id?: boolean
|
|
6224
6203
|
credentialId?: boolean
|
|
6225
|
-
subType?: boolean
|
|
6226
6204
|
userId?: boolean
|
|
6227
6205
|
name?: boolean
|
|
6228
6206
|
moduleName?: boolean
|
|
@@ -6236,7 +6214,6 @@ export namespace Prisma {
|
|
|
6236
6214
|
export type EntitySelectUpdateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
6237
6215
|
id?: boolean
|
|
6238
6216
|
credentialId?: boolean
|
|
6239
|
-
subType?: boolean
|
|
6240
6217
|
userId?: boolean
|
|
6241
6218
|
name?: boolean
|
|
6242
6219
|
moduleName?: boolean
|
|
@@ -6250,7 +6227,6 @@ export namespace Prisma {
|
|
|
6250
6227
|
export type EntitySelectScalar = {
|
|
6251
6228
|
id?: boolean
|
|
6252
6229
|
credentialId?: boolean
|
|
6253
|
-
subType?: boolean
|
|
6254
6230
|
userId?: boolean
|
|
6255
6231
|
name?: boolean
|
|
6256
6232
|
moduleName?: boolean
|
|
@@ -6259,7 +6235,7 @@ export namespace Prisma {
|
|
|
6259
6235
|
updatedAt?: boolean
|
|
6260
6236
|
}
|
|
6261
6237
|
|
|
6262
|
-
export type EntityOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "credentialId" | "
|
|
6238
|
+
export type EntityOmit<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetOmit<"id" | "credentialId" | "userId" | "name" | "moduleName" | "externalId" | "createdAt" | "updatedAt", ExtArgs["result"]["entity"]>
|
|
6263
6239
|
export type EntityInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
6264
6240
|
credential?: boolean | Entity$credentialArgs<ExtArgs>
|
|
6265
6241
|
user?: boolean | Entity$userArgs<ExtArgs>
|
|
@@ -6291,7 +6267,6 @@ export namespace Prisma {
|
|
|
6291
6267
|
scalars: $Extensions.GetPayloadResult<{
|
|
6292
6268
|
id: number
|
|
6293
6269
|
credentialId: number | null
|
|
6294
|
-
subType: string | null
|
|
6295
6270
|
userId: number | null
|
|
6296
6271
|
name: string | null
|
|
6297
6272
|
moduleName: string | null
|
|
@@ -6729,7 +6704,6 @@ export namespace Prisma {
|
|
|
6729
6704
|
interface EntityFieldRefs {
|
|
6730
6705
|
readonly id: FieldRef<"Entity", 'Int'>
|
|
6731
6706
|
readonly credentialId: FieldRef<"Entity", 'Int'>
|
|
6732
|
-
readonly subType: FieldRef<"Entity", 'String'>
|
|
6733
6707
|
readonly userId: FieldRef<"Entity", 'Int'>
|
|
6734
6708
|
readonly name: FieldRef<"Entity", 'String'>
|
|
6735
6709
|
readonly moduleName: FieldRef<"Entity", 'String'>
|
|
@@ -17490,7 +17464,6 @@ export namespace Prisma {
|
|
|
17490
17464
|
export const CredentialScalarFieldEnum: {
|
|
17491
17465
|
id: 'id',
|
|
17492
17466
|
userId: 'userId',
|
|
17493
|
-
subType: 'subType',
|
|
17494
17467
|
authIsValid: 'authIsValid',
|
|
17495
17468
|
externalId: 'externalId',
|
|
17496
17469
|
data: 'data',
|
|
@@ -17504,7 +17477,6 @@ export namespace Prisma {
|
|
|
17504
17477
|
export const EntityScalarFieldEnum: {
|
|
17505
17478
|
id: 'id',
|
|
17506
17479
|
credentialId: 'credentialId',
|
|
17507
|
-
subType: 'subType',
|
|
17508
17480
|
userId: 'userId',
|
|
17509
17481
|
name: 'name',
|
|
17510
17482
|
moduleName: 'moduleName',
|
|
@@ -17965,7 +17937,6 @@ export namespace Prisma {
|
|
|
17965
17937
|
NOT?: CredentialWhereInput | CredentialWhereInput[]
|
|
17966
17938
|
id?: IntFilter<"Credential"> | number
|
|
17967
17939
|
userId?: IntNullableFilter<"Credential"> | number | null
|
|
17968
|
-
subType?: StringNullableFilter<"Credential"> | string | null
|
|
17969
17940
|
authIsValid?: BoolNullableFilter<"Credential"> | boolean | null
|
|
17970
17941
|
externalId?: StringNullableFilter<"Credential"> | string | null
|
|
17971
17942
|
data?: JsonFilter<"Credential">
|
|
@@ -17978,7 +17949,6 @@ export namespace Prisma {
|
|
|
17978
17949
|
export type CredentialOrderByWithRelationInput = {
|
|
17979
17950
|
id?: SortOrder
|
|
17980
17951
|
userId?: SortOrderInput | SortOrder
|
|
17981
|
-
subType?: SortOrderInput | SortOrder
|
|
17982
17952
|
authIsValid?: SortOrderInput | SortOrder
|
|
17983
17953
|
externalId?: SortOrderInput | SortOrder
|
|
17984
17954
|
data?: SortOrder
|
|
@@ -17994,7 +17964,6 @@ export namespace Prisma {
|
|
|
17994
17964
|
OR?: CredentialWhereInput[]
|
|
17995
17965
|
NOT?: CredentialWhereInput | CredentialWhereInput[]
|
|
17996
17966
|
userId?: IntNullableFilter<"Credential"> | number | null
|
|
17997
|
-
subType?: StringNullableFilter<"Credential"> | string | null
|
|
17998
17967
|
authIsValid?: BoolNullableFilter<"Credential"> | boolean | null
|
|
17999
17968
|
externalId?: StringNullableFilter<"Credential"> | string | null
|
|
18000
17969
|
data?: JsonFilter<"Credential">
|
|
@@ -18007,7 +17976,6 @@ export namespace Prisma {
|
|
|
18007
17976
|
export type CredentialOrderByWithAggregationInput = {
|
|
18008
17977
|
id?: SortOrder
|
|
18009
17978
|
userId?: SortOrderInput | SortOrder
|
|
18010
|
-
subType?: SortOrderInput | SortOrder
|
|
18011
17979
|
authIsValid?: SortOrderInput | SortOrder
|
|
18012
17980
|
externalId?: SortOrderInput | SortOrder
|
|
18013
17981
|
data?: SortOrder
|
|
@@ -18026,7 +17994,6 @@ export namespace Prisma {
|
|
|
18026
17994
|
NOT?: CredentialScalarWhereWithAggregatesInput | CredentialScalarWhereWithAggregatesInput[]
|
|
18027
17995
|
id?: IntWithAggregatesFilter<"Credential"> | number
|
|
18028
17996
|
userId?: IntNullableWithAggregatesFilter<"Credential"> | number | null
|
|
18029
|
-
subType?: StringNullableWithAggregatesFilter<"Credential"> | string | null
|
|
18030
17997
|
authIsValid?: BoolNullableWithAggregatesFilter<"Credential"> | boolean | null
|
|
18031
17998
|
externalId?: StringNullableWithAggregatesFilter<"Credential"> | string | null
|
|
18032
17999
|
data?: JsonWithAggregatesFilter<"Credential">
|
|
@@ -18040,7 +18007,6 @@ export namespace Prisma {
|
|
|
18040
18007
|
NOT?: EntityWhereInput | EntityWhereInput[]
|
|
18041
18008
|
id?: IntFilter<"Entity"> | number
|
|
18042
18009
|
credentialId?: IntNullableFilter<"Entity"> | number | null
|
|
18043
|
-
subType?: StringNullableFilter<"Entity"> | string | null
|
|
18044
18010
|
userId?: IntNullableFilter<"Entity"> | number | null
|
|
18045
18011
|
name?: StringNullableFilter<"Entity"> | string | null
|
|
18046
18012
|
moduleName?: StringNullableFilter<"Entity"> | string | null
|
|
@@ -18058,7 +18024,6 @@ export namespace Prisma {
|
|
|
18058
18024
|
export type EntityOrderByWithRelationInput = {
|
|
18059
18025
|
id?: SortOrder
|
|
18060
18026
|
credentialId?: SortOrderInput | SortOrder
|
|
18061
|
-
subType?: SortOrderInput | SortOrder
|
|
18062
18027
|
userId?: SortOrderInput | SortOrder
|
|
18063
18028
|
name?: SortOrderInput | SortOrder
|
|
18064
18029
|
moduleName?: SortOrderInput | SortOrder
|
|
@@ -18079,7 +18044,6 @@ export namespace Prisma {
|
|
|
18079
18044
|
OR?: EntityWhereInput[]
|
|
18080
18045
|
NOT?: EntityWhereInput | EntityWhereInput[]
|
|
18081
18046
|
credentialId?: IntNullableFilter<"Entity"> | number | null
|
|
18082
|
-
subType?: StringNullableFilter<"Entity"> | string | null
|
|
18083
18047
|
userId?: IntNullableFilter<"Entity"> | number | null
|
|
18084
18048
|
name?: StringNullableFilter<"Entity"> | string | null
|
|
18085
18049
|
moduleName?: StringNullableFilter<"Entity"> | string | null
|
|
@@ -18097,7 +18061,6 @@ export namespace Prisma {
|
|
|
18097
18061
|
export type EntityOrderByWithAggregationInput = {
|
|
18098
18062
|
id?: SortOrder
|
|
18099
18063
|
credentialId?: SortOrderInput | SortOrder
|
|
18100
|
-
subType?: SortOrderInput | SortOrder
|
|
18101
18064
|
userId?: SortOrderInput | SortOrder
|
|
18102
18065
|
name?: SortOrderInput | SortOrder
|
|
18103
18066
|
moduleName?: SortOrderInput | SortOrder
|
|
@@ -18117,7 +18080,6 @@ export namespace Prisma {
|
|
|
18117
18080
|
NOT?: EntityScalarWhereWithAggregatesInput | EntityScalarWhereWithAggregatesInput[]
|
|
18118
18081
|
id?: IntWithAggregatesFilter<"Entity"> | number
|
|
18119
18082
|
credentialId?: IntNullableWithAggregatesFilter<"Entity"> | number | null
|
|
18120
|
-
subType?: StringNullableWithAggregatesFilter<"Entity"> | string | null
|
|
18121
18083
|
userId?: IntNullableWithAggregatesFilter<"Entity"> | number | null
|
|
18122
18084
|
name?: StringNullableWithAggregatesFilter<"Entity"> | string | null
|
|
18123
18085
|
moduleName?: StringNullableWithAggregatesFilter<"Entity"> | string | null
|
|
@@ -18879,7 +18841,6 @@ export namespace Prisma {
|
|
|
18879
18841
|
}
|
|
18880
18842
|
|
|
18881
18843
|
export type CredentialCreateInput = {
|
|
18882
|
-
subType?: string | null
|
|
18883
18844
|
authIsValid?: boolean | null
|
|
18884
18845
|
externalId?: string | null
|
|
18885
18846
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -18892,7 +18853,6 @@ export namespace Prisma {
|
|
|
18892
18853
|
export type CredentialUncheckedCreateInput = {
|
|
18893
18854
|
id?: number
|
|
18894
18855
|
userId?: number | null
|
|
18895
|
-
subType?: string | null
|
|
18896
18856
|
authIsValid?: boolean | null
|
|
18897
18857
|
externalId?: string | null
|
|
18898
18858
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -18902,7 +18862,6 @@ export namespace Prisma {
|
|
|
18902
18862
|
}
|
|
18903
18863
|
|
|
18904
18864
|
export type CredentialUpdateInput = {
|
|
18905
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18906
18865
|
authIsValid?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
18907
18866
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18908
18867
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -18915,7 +18874,6 @@ export namespace Prisma {
|
|
|
18915
18874
|
export type CredentialUncheckedUpdateInput = {
|
|
18916
18875
|
id?: IntFieldUpdateOperationsInput | number
|
|
18917
18876
|
userId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
18918
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18919
18877
|
authIsValid?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
18920
18878
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18921
18879
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -18927,7 +18885,6 @@ export namespace Prisma {
|
|
|
18927
18885
|
export type CredentialCreateManyInput = {
|
|
18928
18886
|
id?: number
|
|
18929
18887
|
userId?: number | null
|
|
18930
|
-
subType?: string | null
|
|
18931
18888
|
authIsValid?: boolean | null
|
|
18932
18889
|
externalId?: string | null
|
|
18933
18890
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -18936,7 +18893,6 @@ export namespace Prisma {
|
|
|
18936
18893
|
}
|
|
18937
18894
|
|
|
18938
18895
|
export type CredentialUpdateManyMutationInput = {
|
|
18939
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18940
18896
|
authIsValid?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
18941
18897
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18942
18898
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -18947,7 +18903,6 @@ export namespace Prisma {
|
|
|
18947
18903
|
export type CredentialUncheckedUpdateManyInput = {
|
|
18948
18904
|
id?: IntFieldUpdateOperationsInput | number
|
|
18949
18905
|
userId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
18950
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18951
18906
|
authIsValid?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
18952
18907
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18953
18908
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -18956,7 +18911,6 @@ export namespace Prisma {
|
|
|
18956
18911
|
}
|
|
18957
18912
|
|
|
18958
18913
|
export type EntityCreateInput = {
|
|
18959
|
-
subType?: string | null
|
|
18960
18914
|
name?: string | null
|
|
18961
18915
|
moduleName?: string | null
|
|
18962
18916
|
externalId?: string | null
|
|
@@ -18973,7 +18927,6 @@ export namespace Prisma {
|
|
|
18973
18927
|
export type EntityUncheckedCreateInput = {
|
|
18974
18928
|
id?: number
|
|
18975
18929
|
credentialId?: number | null
|
|
18976
|
-
subType?: string | null
|
|
18977
18930
|
userId?: number | null
|
|
18978
18931
|
name?: string | null
|
|
18979
18932
|
moduleName?: string | null
|
|
@@ -18987,7 +18940,6 @@ export namespace Prisma {
|
|
|
18987
18940
|
}
|
|
18988
18941
|
|
|
18989
18942
|
export type EntityUpdateInput = {
|
|
18990
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18991
18943
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18992
18944
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
18993
18945
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -19004,7 +18956,6 @@ export namespace Prisma {
|
|
|
19004
18956
|
export type EntityUncheckedUpdateInput = {
|
|
19005
18957
|
id?: IntFieldUpdateOperationsInput | number
|
|
19006
18958
|
credentialId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
19007
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
19008
18959
|
userId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
19009
18960
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
19010
18961
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -19020,7 +18971,6 @@ export namespace Prisma {
|
|
|
19020
18971
|
export type EntityCreateManyInput = {
|
|
19021
18972
|
id?: number
|
|
19022
18973
|
credentialId?: number | null
|
|
19023
|
-
subType?: string | null
|
|
19024
18974
|
userId?: number | null
|
|
19025
18975
|
name?: string | null
|
|
19026
18976
|
moduleName?: string | null
|
|
@@ -19030,7 +18980,6 @@ export namespace Prisma {
|
|
|
19030
18980
|
}
|
|
19031
18981
|
|
|
19032
18982
|
export type EntityUpdateManyMutationInput = {
|
|
19033
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
19034
18983
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
19035
18984
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
19036
18985
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -19041,7 +18990,6 @@ export namespace Prisma {
|
|
|
19041
18990
|
export type EntityUncheckedUpdateManyInput = {
|
|
19042
18991
|
id?: IntFieldUpdateOperationsInput | number
|
|
19043
18992
|
credentialId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
19044
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
19045
18993
|
userId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
19046
18994
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
19047
18995
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -19980,7 +19928,6 @@ export namespace Prisma {
|
|
|
19980
19928
|
export type CredentialCountOrderByAggregateInput = {
|
|
19981
19929
|
id?: SortOrder
|
|
19982
19930
|
userId?: SortOrder
|
|
19983
|
-
subType?: SortOrder
|
|
19984
19931
|
authIsValid?: SortOrder
|
|
19985
19932
|
externalId?: SortOrder
|
|
19986
19933
|
data?: SortOrder
|
|
@@ -19996,7 +19943,6 @@ export namespace Prisma {
|
|
|
19996
19943
|
export type CredentialMaxOrderByAggregateInput = {
|
|
19997
19944
|
id?: SortOrder
|
|
19998
19945
|
userId?: SortOrder
|
|
19999
|
-
subType?: SortOrder
|
|
20000
19946
|
authIsValid?: SortOrder
|
|
20001
19947
|
externalId?: SortOrder
|
|
20002
19948
|
createdAt?: SortOrder
|
|
@@ -20006,7 +19952,6 @@ export namespace Prisma {
|
|
|
20006
19952
|
export type CredentialMinOrderByAggregateInput = {
|
|
20007
19953
|
id?: SortOrder
|
|
20008
19954
|
userId?: SortOrder
|
|
20009
|
-
subType?: SortOrder
|
|
20010
19955
|
authIsValid?: SortOrder
|
|
20011
19956
|
externalId?: SortOrder
|
|
20012
19957
|
createdAt?: SortOrder
|
|
@@ -20090,7 +20035,6 @@ export namespace Prisma {
|
|
|
20090
20035
|
export type EntityCountOrderByAggregateInput = {
|
|
20091
20036
|
id?: SortOrder
|
|
20092
20037
|
credentialId?: SortOrder
|
|
20093
|
-
subType?: SortOrder
|
|
20094
20038
|
userId?: SortOrder
|
|
20095
20039
|
name?: SortOrder
|
|
20096
20040
|
moduleName?: SortOrder
|
|
@@ -20108,7 +20052,6 @@ export namespace Prisma {
|
|
|
20108
20052
|
export type EntityMaxOrderByAggregateInput = {
|
|
20109
20053
|
id?: SortOrder
|
|
20110
20054
|
credentialId?: SortOrder
|
|
20111
|
-
subType?: SortOrder
|
|
20112
20055
|
userId?: SortOrder
|
|
20113
20056
|
name?: SortOrder
|
|
20114
20057
|
moduleName?: SortOrder
|
|
@@ -20120,7 +20063,6 @@ export namespace Prisma {
|
|
|
20120
20063
|
export type EntityMinOrderByAggregateInput = {
|
|
20121
20064
|
id?: SortOrder
|
|
20122
20065
|
credentialId?: SortOrder
|
|
20123
|
-
subType?: SortOrder
|
|
20124
20066
|
userId?: SortOrder
|
|
20125
20067
|
name?: SortOrder
|
|
20126
20068
|
moduleName?: SortOrder
|
|
@@ -22105,7 +22047,6 @@ export namespace Prisma {
|
|
|
22105
22047
|
}
|
|
22106
22048
|
|
|
22107
22049
|
export type CredentialCreateWithoutUserInput = {
|
|
22108
|
-
subType?: string | null
|
|
22109
22050
|
authIsValid?: boolean | null
|
|
22110
22051
|
externalId?: string | null
|
|
22111
22052
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -22116,7 +22057,6 @@ export namespace Prisma {
|
|
|
22116
22057
|
|
|
22117
22058
|
export type CredentialUncheckedCreateWithoutUserInput = {
|
|
22118
22059
|
id?: number
|
|
22119
|
-
subType?: string | null
|
|
22120
22060
|
authIsValid?: boolean | null
|
|
22121
22061
|
externalId?: string | null
|
|
22122
22062
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -22136,7 +22076,6 @@ export namespace Prisma {
|
|
|
22136
22076
|
}
|
|
22137
22077
|
|
|
22138
22078
|
export type EntityCreateWithoutUserInput = {
|
|
22139
|
-
subType?: string | null
|
|
22140
22079
|
name?: string | null
|
|
22141
22080
|
moduleName?: string | null
|
|
22142
22081
|
externalId?: string | null
|
|
@@ -22152,7 +22091,6 @@ export namespace Prisma {
|
|
|
22152
22091
|
export type EntityUncheckedCreateWithoutUserInput = {
|
|
22153
22092
|
id?: number
|
|
22154
22093
|
credentialId?: number | null
|
|
22155
|
-
subType?: string | null
|
|
22156
22094
|
name?: string | null
|
|
22157
22095
|
moduleName?: string | null
|
|
22158
22096
|
externalId?: string | null
|
|
@@ -22386,7 +22324,6 @@ export namespace Prisma {
|
|
|
22386
22324
|
NOT?: CredentialScalarWhereInput | CredentialScalarWhereInput[]
|
|
22387
22325
|
id?: IntFilter<"Credential"> | number
|
|
22388
22326
|
userId?: IntNullableFilter<"Credential"> | number | null
|
|
22389
|
-
subType?: StringNullableFilter<"Credential"> | string | null
|
|
22390
22327
|
authIsValid?: BoolNullableFilter<"Credential"> | boolean | null
|
|
22391
22328
|
externalId?: StringNullableFilter<"Credential"> | string | null
|
|
22392
22329
|
data?: JsonFilter<"Credential">
|
|
@@ -22416,7 +22353,6 @@ export namespace Prisma {
|
|
|
22416
22353
|
NOT?: EntityScalarWhereInput | EntityScalarWhereInput[]
|
|
22417
22354
|
id?: IntFilter<"Entity"> | number
|
|
22418
22355
|
credentialId?: IntNullableFilter<"Entity"> | number | null
|
|
22419
|
-
subType?: StringNullableFilter<"Entity"> | string | null
|
|
22420
22356
|
userId?: IntNullableFilter<"Entity"> | number | null
|
|
22421
22357
|
name?: StringNullableFilter<"Entity"> | string | null
|
|
22422
22358
|
moduleName?: StringNullableFilter<"Entity"> | string | null
|
|
@@ -22624,7 +22560,6 @@ export namespace Prisma {
|
|
|
22624
22560
|
}
|
|
22625
22561
|
|
|
22626
22562
|
export type EntityCreateWithoutCredentialInput = {
|
|
22627
|
-
subType?: string | null
|
|
22628
22563
|
name?: string | null
|
|
22629
22564
|
moduleName?: string | null
|
|
22630
22565
|
externalId?: string | null
|
|
@@ -22639,7 +22574,6 @@ export namespace Prisma {
|
|
|
22639
22574
|
|
|
22640
22575
|
export type EntityUncheckedCreateWithoutCredentialInput = {
|
|
22641
22576
|
id?: number
|
|
22642
|
-
subType?: string | null
|
|
22643
22577
|
userId?: number | null
|
|
22644
22578
|
name?: string | null
|
|
22645
22579
|
moduleName?: string | null
|
|
@@ -22727,7 +22661,6 @@ export namespace Prisma {
|
|
|
22727
22661
|
}
|
|
22728
22662
|
|
|
22729
22663
|
export type CredentialCreateWithoutEntitiesInput = {
|
|
22730
|
-
subType?: string | null
|
|
22731
22664
|
authIsValid?: boolean | null
|
|
22732
22665
|
externalId?: string | null
|
|
22733
22666
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -22739,7 +22672,6 @@ export namespace Prisma {
|
|
|
22739
22672
|
export type CredentialUncheckedCreateWithoutEntitiesInput = {
|
|
22740
22673
|
id?: number
|
|
22741
22674
|
userId?: number | null
|
|
22742
|
-
subType?: string | null
|
|
22743
22675
|
authIsValid?: boolean | null
|
|
22744
22676
|
externalId?: string | null
|
|
22745
22677
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -22914,7 +22846,6 @@ export namespace Prisma {
|
|
|
22914
22846
|
}
|
|
22915
22847
|
|
|
22916
22848
|
export type CredentialUpdateWithoutEntitiesInput = {
|
|
22917
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22918
22849
|
authIsValid?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
22919
22850
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22920
22851
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -22926,7 +22857,6 @@ export namespace Prisma {
|
|
|
22926
22857
|
export type CredentialUncheckedUpdateWithoutEntitiesInput = {
|
|
22927
22858
|
id?: IntFieldUpdateOperationsInput | number
|
|
22928
22859
|
userId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
22929
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22930
22860
|
authIsValid?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
22931
22861
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
22932
22862
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -23122,7 +23052,6 @@ export namespace Prisma {
|
|
|
23122
23052
|
}
|
|
23123
23053
|
|
|
23124
23054
|
export type EntityCreateWithoutIntegrationsInput = {
|
|
23125
|
-
subType?: string | null
|
|
23126
23055
|
name?: string | null
|
|
23127
23056
|
moduleName?: string | null
|
|
23128
23057
|
externalId?: string | null
|
|
@@ -23138,7 +23067,6 @@ export namespace Prisma {
|
|
|
23138
23067
|
export type EntityUncheckedCreateWithoutIntegrationsInput = {
|
|
23139
23068
|
id?: number
|
|
23140
23069
|
credentialId?: number | null
|
|
23141
|
-
subType?: string | null
|
|
23142
23070
|
userId?: number | null
|
|
23143
23071
|
name?: string | null
|
|
23144
23072
|
moduleName?: string | null
|
|
@@ -23545,7 +23473,6 @@ export namespace Prisma {
|
|
|
23545
23473
|
}
|
|
23546
23474
|
|
|
23547
23475
|
export type EntityCreateWithoutSyncsInput = {
|
|
23548
|
-
subType?: string | null
|
|
23549
23476
|
name?: string | null
|
|
23550
23477
|
moduleName?: string | null
|
|
23551
23478
|
externalId?: string | null
|
|
@@ -23561,7 +23488,6 @@ export namespace Prisma {
|
|
|
23561
23488
|
export type EntityUncheckedCreateWithoutSyncsInput = {
|
|
23562
23489
|
id?: number
|
|
23563
23490
|
credentialId?: number | null
|
|
23564
|
-
subType?: string | null
|
|
23565
23491
|
userId?: number | null
|
|
23566
23492
|
name?: string | null
|
|
23567
23493
|
moduleName?: string | null
|
|
@@ -23700,7 +23626,6 @@ export namespace Prisma {
|
|
|
23700
23626
|
}
|
|
23701
23627
|
|
|
23702
23628
|
export type EntityCreateWithoutDataIdentifiersInput = {
|
|
23703
|
-
subType?: string | null
|
|
23704
23629
|
name?: string | null
|
|
23705
23630
|
moduleName?: string | null
|
|
23706
23631
|
externalId?: string | null
|
|
@@ -23716,7 +23641,6 @@ export namespace Prisma {
|
|
|
23716
23641
|
export type EntityUncheckedCreateWithoutDataIdentifiersInput = {
|
|
23717
23642
|
id?: number
|
|
23718
23643
|
credentialId?: number | null
|
|
23719
|
-
subType?: string | null
|
|
23720
23644
|
userId?: number | null
|
|
23721
23645
|
name?: string | null
|
|
23722
23646
|
moduleName?: string | null
|
|
@@ -23771,7 +23695,6 @@ export namespace Prisma {
|
|
|
23771
23695
|
}
|
|
23772
23696
|
|
|
23773
23697
|
export type EntityUpdateWithoutDataIdentifiersInput = {
|
|
23774
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23775
23698
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23776
23699
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23777
23700
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -23787,7 +23710,6 @@ export namespace Prisma {
|
|
|
23787
23710
|
export type EntityUncheckedUpdateWithoutDataIdentifiersInput = {
|
|
23788
23711
|
id?: IntFieldUpdateOperationsInput | number
|
|
23789
23712
|
credentialId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
23790
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23791
23713
|
userId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
23792
23714
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
23793
23715
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -23947,7 +23869,6 @@ export namespace Prisma {
|
|
|
23947
23869
|
}
|
|
23948
23870
|
|
|
23949
23871
|
export type EntityCreateWithoutAssociationObjectsInput = {
|
|
23950
|
-
subType?: string | null
|
|
23951
23872
|
name?: string | null
|
|
23952
23873
|
moduleName?: string | null
|
|
23953
23874
|
externalId?: string | null
|
|
@@ -23963,7 +23884,6 @@ export namespace Prisma {
|
|
|
23963
23884
|
export type EntityUncheckedCreateWithoutAssociationObjectsInput = {
|
|
23964
23885
|
id?: number
|
|
23965
23886
|
credentialId?: number | null
|
|
23966
|
-
subType?: string | null
|
|
23967
23887
|
userId?: number | null
|
|
23968
23888
|
name?: string | null
|
|
23969
23889
|
moduleName?: string | null
|
|
@@ -24018,7 +23938,6 @@ export namespace Prisma {
|
|
|
24018
23938
|
}
|
|
24019
23939
|
|
|
24020
23940
|
export type EntityUpdateWithoutAssociationObjectsInput = {
|
|
24021
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24022
23941
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24023
23942
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24024
23943
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -24034,7 +23953,6 @@ export namespace Prisma {
|
|
|
24034
23953
|
export type EntityUncheckedUpdateWithoutAssociationObjectsInput = {
|
|
24035
23954
|
id?: IntFieldUpdateOperationsInput | number
|
|
24036
23955
|
credentialId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
24037
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24038
23956
|
userId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
24039
23957
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24040
23958
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -24367,7 +24285,6 @@ export namespace Prisma {
|
|
|
24367
24285
|
|
|
24368
24286
|
export type CredentialCreateManyUserInput = {
|
|
24369
24287
|
id?: number
|
|
24370
|
-
subType?: string | null
|
|
24371
24288
|
authIsValid?: boolean | null
|
|
24372
24289
|
externalId?: string | null
|
|
24373
24290
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -24378,7 +24295,6 @@ export namespace Prisma {
|
|
|
24378
24295
|
export type EntityCreateManyUserInput = {
|
|
24379
24296
|
id?: number
|
|
24380
24297
|
credentialId?: number | null
|
|
24381
|
-
subType?: string | null
|
|
24382
24298
|
name?: string | null
|
|
24383
24299
|
moduleName?: string | null
|
|
24384
24300
|
externalId?: string | null
|
|
@@ -24483,7 +24399,6 @@ export namespace Prisma {
|
|
|
24483
24399
|
}
|
|
24484
24400
|
|
|
24485
24401
|
export type CredentialUpdateWithoutUserInput = {
|
|
24486
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24487
24402
|
authIsValid?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
24488
24403
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24489
24404
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -24494,7 +24409,6 @@ export namespace Prisma {
|
|
|
24494
24409
|
|
|
24495
24410
|
export type CredentialUncheckedUpdateWithoutUserInput = {
|
|
24496
24411
|
id?: IntFieldUpdateOperationsInput | number
|
|
24497
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24498
24412
|
authIsValid?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
24499
24413
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24500
24414
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -24505,7 +24419,6 @@ export namespace Prisma {
|
|
|
24505
24419
|
|
|
24506
24420
|
export type CredentialUncheckedUpdateManyWithoutUserInput = {
|
|
24507
24421
|
id?: IntFieldUpdateOperationsInput | number
|
|
24508
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24509
24422
|
authIsValid?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
24510
24423
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24511
24424
|
data?: JsonNullValueInput | InputJsonValue
|
|
@@ -24514,7 +24427,6 @@ export namespace Prisma {
|
|
|
24514
24427
|
}
|
|
24515
24428
|
|
|
24516
24429
|
export type EntityUpdateWithoutUserInput = {
|
|
24517
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24518
24430
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24519
24431
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24520
24432
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -24530,7 +24442,6 @@ export namespace Prisma {
|
|
|
24530
24442
|
export type EntityUncheckedUpdateWithoutUserInput = {
|
|
24531
24443
|
id?: IntFieldUpdateOperationsInput | number
|
|
24532
24444
|
credentialId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
24533
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24534
24445
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24535
24446
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24536
24447
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -24545,7 +24456,6 @@ export namespace Prisma {
|
|
|
24545
24456
|
export type EntityUncheckedUpdateManyWithoutUserInput = {
|
|
24546
24457
|
id?: IntFieldUpdateOperationsInput | number
|
|
24547
24458
|
credentialId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
24548
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24549
24459
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24550
24460
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24551
24461
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -24643,7 +24553,6 @@ export namespace Prisma {
|
|
|
24643
24553
|
|
|
24644
24554
|
export type EntityCreateManyCredentialInput = {
|
|
24645
24555
|
id?: number
|
|
24646
|
-
subType?: string | null
|
|
24647
24556
|
userId?: number | null
|
|
24648
24557
|
name?: string | null
|
|
24649
24558
|
moduleName?: string | null
|
|
@@ -24653,7 +24562,6 @@ export namespace Prisma {
|
|
|
24653
24562
|
}
|
|
24654
24563
|
|
|
24655
24564
|
export type EntityUpdateWithoutCredentialInput = {
|
|
24656
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24657
24565
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24658
24566
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24659
24567
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -24668,7 +24576,6 @@ export namespace Prisma {
|
|
|
24668
24576
|
|
|
24669
24577
|
export type EntityUncheckedUpdateWithoutCredentialInput = {
|
|
24670
24578
|
id?: IntFieldUpdateOperationsInput | number
|
|
24671
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24672
24579
|
userId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
24673
24580
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24674
24581
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -24683,7 +24590,6 @@ export namespace Prisma {
|
|
|
24683
24590
|
|
|
24684
24591
|
export type EntityUncheckedUpdateManyWithoutCredentialInput = {
|
|
24685
24592
|
id?: IntFieldUpdateOperationsInput | number
|
|
24686
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24687
24593
|
userId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
24688
24594
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24689
24595
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -24856,7 +24762,6 @@ export namespace Prisma {
|
|
|
24856
24762
|
}
|
|
24857
24763
|
|
|
24858
24764
|
export type EntityUpdateWithoutIntegrationsInput = {
|
|
24859
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24860
24765
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24861
24766
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24862
24767
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -24872,7 +24777,6 @@ export namespace Prisma {
|
|
|
24872
24777
|
export type EntityUncheckedUpdateWithoutIntegrationsInput = {
|
|
24873
24778
|
id?: IntFieldUpdateOperationsInput | number
|
|
24874
24779
|
credentialId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
24875
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24876
24780
|
userId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
24877
24781
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24878
24782
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -24887,7 +24791,6 @@ export namespace Prisma {
|
|
|
24887
24791
|
export type EntityUncheckedUpdateManyWithoutIntegrationsInput = {
|
|
24888
24792
|
id?: IntFieldUpdateOperationsInput | number
|
|
24889
24793
|
credentialId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
24890
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24891
24794
|
userId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
24892
24795
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
24893
24796
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -25010,7 +24913,6 @@ export namespace Prisma {
|
|
|
25010
24913
|
}
|
|
25011
24914
|
|
|
25012
24915
|
export type EntityUpdateWithoutSyncsInput = {
|
|
25013
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25014
24916
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25015
24917
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25016
24918
|
externalId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -25026,7 +24928,6 @@ export namespace Prisma {
|
|
|
25026
24928
|
export type EntityUncheckedUpdateWithoutSyncsInput = {
|
|
25027
24929
|
id?: IntFieldUpdateOperationsInput | number
|
|
25028
24930
|
credentialId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
25029
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25030
24931
|
userId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
25031
24932
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25032
24933
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
@@ -25041,7 +24942,6 @@ export namespace Prisma {
|
|
|
25041
24942
|
export type EntityUncheckedUpdateManyWithoutSyncsInput = {
|
|
25042
24943
|
id?: IntFieldUpdateOperationsInput | number
|
|
25043
24944
|
credentialId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
25044
|
-
subType?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25045
24945
|
userId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
25046
24946
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
25047
24947
|
moduleName?: NullableStringFieldUpdateOperationsInput | string | null
|