@creator.co/creatorco-prisma-client 1.0.25 → 1.0.27
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/edge.js +9 -6
- package/index-browser.js +5 -2
- package/index.d.ts +115 -33
- package/index.js +9 -6
- package/package.json +1 -1
- package/schema.prisma +2 -0
- package/wasm.js +5 -2
package/index.d.ts
CHANGED
|
@@ -18122,18 +18122,21 @@ export namespace Prisma {
|
|
|
18122
18122
|
id: number | null
|
|
18123
18123
|
userId: number | null
|
|
18124
18124
|
brandId: number | null
|
|
18125
|
+
agencyPrivileges: boolean | null
|
|
18125
18126
|
}
|
|
18126
18127
|
|
|
18127
18128
|
export type BrandUserProfileMaxAggregateOutputType = {
|
|
18128
18129
|
id: number | null
|
|
18129
18130
|
userId: number | null
|
|
18130
18131
|
brandId: number | null
|
|
18132
|
+
agencyPrivileges: boolean | null
|
|
18131
18133
|
}
|
|
18132
18134
|
|
|
18133
18135
|
export type BrandUserProfileCountAggregateOutputType = {
|
|
18134
18136
|
id: number
|
|
18135
18137
|
userId: number
|
|
18136
18138
|
brandId: number
|
|
18139
|
+
agencyPrivileges: number
|
|
18137
18140
|
_all: number
|
|
18138
18141
|
}
|
|
18139
18142
|
|
|
@@ -18154,18 +18157,21 @@ export namespace Prisma {
|
|
|
18154
18157
|
id?: true
|
|
18155
18158
|
userId?: true
|
|
18156
18159
|
brandId?: true
|
|
18160
|
+
agencyPrivileges?: true
|
|
18157
18161
|
}
|
|
18158
18162
|
|
|
18159
18163
|
export type BrandUserProfileMaxAggregateInputType = {
|
|
18160
18164
|
id?: true
|
|
18161
18165
|
userId?: true
|
|
18162
18166
|
brandId?: true
|
|
18167
|
+
agencyPrivileges?: true
|
|
18163
18168
|
}
|
|
18164
18169
|
|
|
18165
18170
|
export type BrandUserProfileCountAggregateInputType = {
|
|
18166
18171
|
id?: true
|
|
18167
18172
|
userId?: true
|
|
18168
18173
|
brandId?: true
|
|
18174
|
+
agencyPrivileges?: true
|
|
18169
18175
|
_all?: true
|
|
18170
18176
|
}
|
|
18171
18177
|
|
|
@@ -18259,6 +18265,7 @@ export namespace Prisma {
|
|
|
18259
18265
|
id: number
|
|
18260
18266
|
userId: number
|
|
18261
18267
|
brandId: number
|
|
18268
|
+
agencyPrivileges: boolean
|
|
18262
18269
|
_count: BrandUserProfileCountAggregateOutputType | null
|
|
18263
18270
|
_avg: BrandUserProfileAvgAggregateOutputType | null
|
|
18264
18271
|
_sum: BrandUserProfileSumAggregateOutputType | null
|
|
@@ -18284,6 +18291,7 @@ export namespace Prisma {
|
|
|
18284
18291
|
id?: boolean
|
|
18285
18292
|
userId?: boolean
|
|
18286
18293
|
brandId?: boolean
|
|
18294
|
+
agencyPrivileges?: boolean
|
|
18287
18295
|
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
18288
18296
|
brand?: boolean | BrandDefaultArgs<ExtArgs>
|
|
18289
18297
|
}, ExtArgs["result"]["brandUserProfile"]>
|
|
@@ -18292,6 +18300,7 @@ export namespace Prisma {
|
|
|
18292
18300
|
id?: boolean
|
|
18293
18301
|
userId?: boolean
|
|
18294
18302
|
brandId?: boolean
|
|
18303
|
+
agencyPrivileges?: boolean
|
|
18295
18304
|
}
|
|
18296
18305
|
|
|
18297
18306
|
export type BrandUserProfileInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -18310,6 +18319,7 @@ export namespace Prisma {
|
|
|
18310
18319
|
id: number
|
|
18311
18320
|
userId: number
|
|
18312
18321
|
brandId: number
|
|
18322
|
+
agencyPrivileges: boolean
|
|
18313
18323
|
}, ExtArgs["result"]["brandUserProfile"]>
|
|
18314
18324
|
composites: {}
|
|
18315
18325
|
}
|
|
@@ -18710,6 +18720,7 @@ export namespace Prisma {
|
|
|
18710
18720
|
readonly id: FieldRef<"BrandUserProfile", 'Int'>
|
|
18711
18721
|
readonly userId: FieldRef<"BrandUserProfile", 'Int'>
|
|
18712
18722
|
readonly brandId: FieldRef<"BrandUserProfile", 'Int'>
|
|
18723
|
+
readonly agencyPrivileges: FieldRef<"BrandUserProfile", 'Boolean'>
|
|
18713
18724
|
}
|
|
18714
18725
|
|
|
18715
18726
|
|
|
@@ -57179,6 +57190,7 @@ export namespace Prisma {
|
|
|
57179
57190
|
engagement: number | null
|
|
57180
57191
|
avgViews: number | null
|
|
57181
57192
|
verified: boolean | null
|
|
57193
|
+
visibility: string | null
|
|
57182
57194
|
created: Date | null
|
|
57183
57195
|
updated: Date | null
|
|
57184
57196
|
}
|
|
@@ -57196,6 +57208,7 @@ export namespace Prisma {
|
|
|
57196
57208
|
engagement: number | null
|
|
57197
57209
|
avgViews: number | null
|
|
57198
57210
|
verified: boolean | null
|
|
57211
|
+
visibility: string | null
|
|
57199
57212
|
created: Date | null
|
|
57200
57213
|
updated: Date | null
|
|
57201
57214
|
}
|
|
@@ -57213,6 +57226,7 @@ export namespace Prisma {
|
|
|
57213
57226
|
engagement: number
|
|
57214
57227
|
avgViews: number
|
|
57215
57228
|
verified: number
|
|
57229
|
+
visibility: number
|
|
57216
57230
|
metaData: number
|
|
57217
57231
|
audienceData: number
|
|
57218
57232
|
phylloData: number
|
|
@@ -57251,6 +57265,7 @@ export namespace Prisma {
|
|
|
57251
57265
|
engagement?: true
|
|
57252
57266
|
avgViews?: true
|
|
57253
57267
|
verified?: true
|
|
57268
|
+
visibility?: true
|
|
57254
57269
|
created?: true
|
|
57255
57270
|
updated?: true
|
|
57256
57271
|
}
|
|
@@ -57268,6 +57283,7 @@ export namespace Prisma {
|
|
|
57268
57283
|
engagement?: true
|
|
57269
57284
|
avgViews?: true
|
|
57270
57285
|
verified?: true
|
|
57286
|
+
visibility?: true
|
|
57271
57287
|
created?: true
|
|
57272
57288
|
updated?: true
|
|
57273
57289
|
}
|
|
@@ -57285,6 +57301,7 @@ export namespace Prisma {
|
|
|
57285
57301
|
engagement?: true
|
|
57286
57302
|
avgViews?: true
|
|
57287
57303
|
verified?: true
|
|
57304
|
+
visibility?: true
|
|
57288
57305
|
metaData?: true
|
|
57289
57306
|
audienceData?: true
|
|
57290
57307
|
phylloData?: true
|
|
@@ -57392,6 +57409,7 @@ export namespace Prisma {
|
|
|
57392
57409
|
engagement: number | null
|
|
57393
57410
|
avgViews: number | null
|
|
57394
57411
|
verified: boolean | null
|
|
57412
|
+
visibility: string
|
|
57395
57413
|
metaData: JsonValue
|
|
57396
57414
|
audienceData: JsonValue
|
|
57397
57415
|
phylloData: JsonValue
|
|
@@ -57431,6 +57449,7 @@ export namespace Prisma {
|
|
|
57431
57449
|
engagement?: boolean
|
|
57432
57450
|
avgViews?: boolean
|
|
57433
57451
|
verified?: boolean
|
|
57452
|
+
visibility?: boolean
|
|
57434
57453
|
metaData?: boolean
|
|
57435
57454
|
audienceData?: boolean
|
|
57436
57455
|
phylloData?: boolean
|
|
@@ -57455,6 +57474,7 @@ export namespace Prisma {
|
|
|
57455
57474
|
engagement?: boolean
|
|
57456
57475
|
avgViews?: boolean
|
|
57457
57476
|
verified?: boolean
|
|
57477
|
+
visibility?: boolean
|
|
57458
57478
|
metaData?: boolean
|
|
57459
57479
|
audienceData?: boolean
|
|
57460
57480
|
phylloData?: boolean
|
|
@@ -57490,6 +57510,7 @@ export namespace Prisma {
|
|
|
57490
57510
|
engagement: number | null
|
|
57491
57511
|
avgViews: number | null
|
|
57492
57512
|
verified: boolean | null
|
|
57513
|
+
visibility: string
|
|
57493
57514
|
metaData: Prisma.JsonValue
|
|
57494
57515
|
audienceData: Prisma.JsonValue
|
|
57495
57516
|
phylloData: Prisma.JsonValue
|
|
@@ -57906,6 +57927,7 @@ export namespace Prisma {
|
|
|
57906
57927
|
readonly engagement: FieldRef<"SocialProfile", 'Float'>
|
|
57907
57928
|
readonly avgViews: FieldRef<"SocialProfile", 'Int'>
|
|
57908
57929
|
readonly verified: FieldRef<"SocialProfile", 'Boolean'>
|
|
57930
|
+
readonly visibility: FieldRef<"SocialProfile", 'String'>
|
|
57909
57931
|
readonly metaData: FieldRef<"SocialProfile", 'Json'>
|
|
57910
57932
|
readonly audienceData: FieldRef<"SocialProfile", 'Json'>
|
|
57911
57933
|
readonly phylloData: FieldRef<"SocialProfile", 'Json'>
|
|
@@ -75416,7 +75438,8 @@ export namespace Prisma {
|
|
|
75416
75438
|
export const BrandUserProfileScalarFieldEnum: {
|
|
75417
75439
|
id: 'id',
|
|
75418
75440
|
userId: 'userId',
|
|
75419
|
-
brandId: 'brandId'
|
|
75441
|
+
brandId: 'brandId',
|
|
75442
|
+
agencyPrivileges: 'agencyPrivileges'
|
|
75420
75443
|
};
|
|
75421
75444
|
|
|
75422
75445
|
export type BrandUserProfileScalarFieldEnum = (typeof BrandUserProfileScalarFieldEnum)[keyof typeof BrandUserProfileScalarFieldEnum]
|
|
@@ -75951,6 +75974,7 @@ export namespace Prisma {
|
|
|
75951
75974
|
engagement: 'engagement',
|
|
75952
75975
|
avgViews: 'avgViews',
|
|
75953
75976
|
verified: 'verified',
|
|
75977
|
+
visibility: 'visibility',
|
|
75954
75978
|
metaData: 'metaData',
|
|
75955
75979
|
audienceData: 'audienceData',
|
|
75956
75980
|
phylloData: 'phylloData',
|
|
@@ -76577,7 +76601,8 @@ export namespace Prisma {
|
|
|
76577
76601
|
username: 'username',
|
|
76578
76602
|
fullname: 'fullname',
|
|
76579
76603
|
profileUrl: 'profileUrl',
|
|
76580
|
-
profilePicUrl: 'profilePicUrl'
|
|
76604
|
+
profilePicUrl: 'profilePicUrl',
|
|
76605
|
+
visibility: 'visibility'
|
|
76581
76606
|
};
|
|
76582
76607
|
|
|
76583
76608
|
export type SocialProfileOrderByRelevanceFieldEnum = (typeof SocialProfileOrderByRelevanceFieldEnum)[keyof typeof SocialProfileOrderByRelevanceFieldEnum]
|
|
@@ -77923,6 +77948,7 @@ export namespace Prisma {
|
|
|
77923
77948
|
id?: IntFilter<"BrandUserProfile"> | number
|
|
77924
77949
|
userId?: IntFilter<"BrandUserProfile"> | number
|
|
77925
77950
|
brandId?: IntFilter<"BrandUserProfile"> | number
|
|
77951
|
+
agencyPrivileges?: BoolFilter<"BrandUserProfile"> | boolean
|
|
77926
77952
|
user?: XOR<UserRelationFilter, UserWhereInput>
|
|
77927
77953
|
brand?: XOR<BrandRelationFilter, BrandWhereInput>
|
|
77928
77954
|
}
|
|
@@ -77931,6 +77957,7 @@ export namespace Prisma {
|
|
|
77931
77957
|
id?: SortOrder
|
|
77932
77958
|
userId?: SortOrder
|
|
77933
77959
|
brandId?: SortOrder
|
|
77960
|
+
agencyPrivileges?: SortOrder
|
|
77934
77961
|
user?: UserOrderByWithRelationAndSearchRelevanceInput
|
|
77935
77962
|
brand?: BrandOrderByWithRelationAndSearchRelevanceInput
|
|
77936
77963
|
}
|
|
@@ -77942,6 +77969,7 @@ export namespace Prisma {
|
|
|
77942
77969
|
NOT?: BrandUserProfileWhereInput | BrandUserProfileWhereInput[]
|
|
77943
77970
|
userId?: IntFilter<"BrandUserProfile"> | number
|
|
77944
77971
|
brandId?: IntFilter<"BrandUserProfile"> | number
|
|
77972
|
+
agencyPrivileges?: BoolFilter<"BrandUserProfile"> | boolean
|
|
77945
77973
|
user?: XOR<UserRelationFilter, UserWhereInput>
|
|
77946
77974
|
brand?: XOR<BrandRelationFilter, BrandWhereInput>
|
|
77947
77975
|
}, "id">
|
|
@@ -77950,6 +77978,7 @@ export namespace Prisma {
|
|
|
77950
77978
|
id?: SortOrder
|
|
77951
77979
|
userId?: SortOrder
|
|
77952
77980
|
brandId?: SortOrder
|
|
77981
|
+
agencyPrivileges?: SortOrder
|
|
77953
77982
|
_count?: BrandUserProfileCountOrderByAggregateInput
|
|
77954
77983
|
_avg?: BrandUserProfileAvgOrderByAggregateInput
|
|
77955
77984
|
_max?: BrandUserProfileMaxOrderByAggregateInput
|
|
@@ -77964,6 +77993,7 @@ export namespace Prisma {
|
|
|
77964
77993
|
id?: IntWithAggregatesFilter<"BrandUserProfile"> | number
|
|
77965
77994
|
userId?: IntWithAggregatesFilter<"BrandUserProfile"> | number
|
|
77966
77995
|
brandId?: IntWithAggregatesFilter<"BrandUserProfile"> | number
|
|
77996
|
+
agencyPrivileges?: BoolWithAggregatesFilter<"BrandUserProfile"> | boolean
|
|
77967
77997
|
}
|
|
77968
77998
|
|
|
77969
77999
|
export type BrandWhereInput = {
|
|
@@ -80933,6 +80963,7 @@ export namespace Prisma {
|
|
|
80933
80963
|
engagement?: FloatNullableFilter<"SocialProfile"> | number | null
|
|
80934
80964
|
avgViews?: IntNullableFilter<"SocialProfile"> | number | null
|
|
80935
80965
|
verified?: BoolNullableFilter<"SocialProfile"> | boolean | null
|
|
80966
|
+
visibility?: StringFilter<"SocialProfile"> | string
|
|
80936
80967
|
metaData?: JsonFilter<"SocialProfile">
|
|
80937
80968
|
audienceData?: JsonFilter<"SocialProfile">
|
|
80938
80969
|
phylloData?: JsonFilter<"SocialProfile">
|
|
@@ -80956,6 +80987,7 @@ export namespace Prisma {
|
|
|
80956
80987
|
engagement?: SortOrderInput | SortOrder
|
|
80957
80988
|
avgViews?: SortOrderInput | SortOrder
|
|
80958
80989
|
verified?: SortOrderInput | SortOrder
|
|
80990
|
+
visibility?: SortOrder
|
|
80959
80991
|
metaData?: SortOrder
|
|
80960
80992
|
audienceData?: SortOrder
|
|
80961
80993
|
phylloData?: SortOrder
|
|
@@ -80983,6 +81015,7 @@ export namespace Prisma {
|
|
|
80983
81015
|
engagement?: FloatNullableFilter<"SocialProfile"> | number | null
|
|
80984
81016
|
avgViews?: IntNullableFilter<"SocialProfile"> | number | null
|
|
80985
81017
|
verified?: BoolNullableFilter<"SocialProfile"> | boolean | null
|
|
81018
|
+
visibility?: StringFilter<"SocialProfile"> | string
|
|
80986
81019
|
metaData?: JsonFilter<"SocialProfile">
|
|
80987
81020
|
audienceData?: JsonFilter<"SocialProfile">
|
|
80988
81021
|
phylloData?: JsonFilter<"SocialProfile">
|
|
@@ -81006,6 +81039,7 @@ export namespace Prisma {
|
|
|
81006
81039
|
engagement?: SortOrderInput | SortOrder
|
|
81007
81040
|
avgViews?: SortOrderInput | SortOrder
|
|
81008
81041
|
verified?: SortOrderInput | SortOrder
|
|
81042
|
+
visibility?: SortOrder
|
|
81009
81043
|
metaData?: SortOrder
|
|
81010
81044
|
audienceData?: SortOrder
|
|
81011
81045
|
phylloData?: SortOrder
|
|
@@ -81034,6 +81068,7 @@ export namespace Prisma {
|
|
|
81034
81068
|
engagement?: FloatNullableWithAggregatesFilter<"SocialProfile"> | number | null
|
|
81035
81069
|
avgViews?: IntNullableWithAggregatesFilter<"SocialProfile"> | number | null
|
|
81036
81070
|
verified?: BoolNullableWithAggregatesFilter<"SocialProfile"> | boolean | null
|
|
81071
|
+
visibility?: StringWithAggregatesFilter<"SocialProfile"> | string
|
|
81037
81072
|
metaData?: JsonWithAggregatesFilter<"SocialProfile">
|
|
81038
81073
|
audienceData?: JsonWithAggregatesFilter<"SocialProfile">
|
|
81039
81074
|
phylloData?: JsonWithAggregatesFilter<"SocialProfile">
|
|
@@ -83464,6 +83499,7 @@ export namespace Prisma {
|
|
|
83464
83499
|
}
|
|
83465
83500
|
|
|
83466
83501
|
export type BrandUserProfileCreateInput = {
|
|
83502
|
+
agencyPrivileges?: boolean
|
|
83467
83503
|
user: UserCreateNestedOneWithoutBrandProfilesInput
|
|
83468
83504
|
brand: BrandCreateNestedOneWithoutBrandUsersInput
|
|
83469
83505
|
}
|
|
@@ -83472,9 +83508,11 @@ export namespace Prisma {
|
|
|
83472
83508
|
id?: number
|
|
83473
83509
|
userId: number
|
|
83474
83510
|
brandId: number
|
|
83511
|
+
agencyPrivileges?: boolean
|
|
83475
83512
|
}
|
|
83476
83513
|
|
|
83477
83514
|
export type BrandUserProfileUpdateInput = {
|
|
83515
|
+
agencyPrivileges?: BoolFieldUpdateOperationsInput | boolean
|
|
83478
83516
|
user?: UserUpdateOneRequiredWithoutBrandProfilesNestedInput
|
|
83479
83517
|
brand?: BrandUpdateOneRequiredWithoutBrandUsersNestedInput
|
|
83480
83518
|
}
|
|
@@ -83483,22 +83521,25 @@ export namespace Prisma {
|
|
|
83483
83521
|
id?: IntFieldUpdateOperationsInput | number
|
|
83484
83522
|
userId?: IntFieldUpdateOperationsInput | number
|
|
83485
83523
|
brandId?: IntFieldUpdateOperationsInput | number
|
|
83524
|
+
agencyPrivileges?: BoolFieldUpdateOperationsInput | boolean
|
|
83486
83525
|
}
|
|
83487
83526
|
|
|
83488
83527
|
export type BrandUserProfileCreateManyInput = {
|
|
83489
83528
|
id?: number
|
|
83490
83529
|
userId: number
|
|
83491
83530
|
brandId: number
|
|
83531
|
+
agencyPrivileges?: boolean
|
|
83492
83532
|
}
|
|
83493
83533
|
|
|
83494
83534
|
export type BrandUserProfileUpdateManyMutationInput = {
|
|
83495
|
-
|
|
83535
|
+
agencyPrivileges?: BoolFieldUpdateOperationsInput | boolean
|
|
83496
83536
|
}
|
|
83497
83537
|
|
|
83498
83538
|
export type BrandUserProfileUncheckedUpdateManyInput = {
|
|
83499
83539
|
id?: IntFieldUpdateOperationsInput | number
|
|
83500
83540
|
userId?: IntFieldUpdateOperationsInput | number
|
|
83501
83541
|
brandId?: IntFieldUpdateOperationsInput | number
|
|
83542
|
+
agencyPrivileges?: BoolFieldUpdateOperationsInput | boolean
|
|
83502
83543
|
}
|
|
83503
83544
|
|
|
83504
83545
|
export type BrandCreateInput = {
|
|
@@ -86487,6 +86528,7 @@ export namespace Prisma {
|
|
|
86487
86528
|
engagement?: number | null
|
|
86488
86529
|
avgViews?: number | null
|
|
86489
86530
|
verified?: boolean | null
|
|
86531
|
+
visibility?: string
|
|
86490
86532
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
86491
86533
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
86492
86534
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -86510,6 +86552,7 @@ export namespace Prisma {
|
|
|
86510
86552
|
engagement?: number | null
|
|
86511
86553
|
avgViews?: number | null
|
|
86512
86554
|
verified?: boolean | null
|
|
86555
|
+
visibility?: string
|
|
86513
86556
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
86514
86557
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
86515
86558
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -86530,6 +86573,7 @@ export namespace Prisma {
|
|
|
86530
86573
|
engagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
86531
86574
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
86532
86575
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
86576
|
+
visibility?: StringFieldUpdateOperationsInput | string
|
|
86533
86577
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
86534
86578
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
86535
86579
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -86553,6 +86597,7 @@ export namespace Prisma {
|
|
|
86553
86597
|
engagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
86554
86598
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
86555
86599
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
86600
|
+
visibility?: StringFieldUpdateOperationsInput | string
|
|
86556
86601
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
86557
86602
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
86558
86603
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -86575,6 +86620,7 @@ export namespace Prisma {
|
|
|
86575
86620
|
engagement?: number | null
|
|
86576
86621
|
avgViews?: number | null
|
|
86577
86622
|
verified?: boolean | null
|
|
86623
|
+
visibility?: string
|
|
86578
86624
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
86579
86625
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
86580
86626
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -86593,6 +86639,7 @@ export namespace Prisma {
|
|
|
86593
86639
|
engagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
86594
86640
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
86595
86641
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
86642
|
+
visibility?: StringFieldUpdateOperationsInput | string
|
|
86596
86643
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
86597
86644
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
86598
86645
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -86613,6 +86660,7 @@ export namespace Prisma {
|
|
|
86613
86660
|
engagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
86614
86661
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
86615
86662
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
86663
|
+
visibility?: StringFieldUpdateOperationsInput | string
|
|
86616
86664
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
86617
86665
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
86618
86666
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -88869,6 +88917,11 @@ export namespace Prisma {
|
|
|
88869
88917
|
userId?: SortOrder
|
|
88870
88918
|
}
|
|
88871
88919
|
|
|
88920
|
+
export type BoolFilter<$PrismaModel = never> = {
|
|
88921
|
+
equals?: boolean | BooleanFieldRefInput<$PrismaModel>
|
|
88922
|
+
not?: NestedBoolFilter<$PrismaModel> | boolean
|
|
88923
|
+
}
|
|
88924
|
+
|
|
88872
88925
|
export type BrandRelationFilter = {
|
|
88873
88926
|
is?: BrandWhereInput
|
|
88874
88927
|
isNot?: BrandWhereInput
|
|
@@ -88878,6 +88931,7 @@ export namespace Prisma {
|
|
|
88878
88931
|
id?: SortOrder
|
|
88879
88932
|
userId?: SortOrder
|
|
88880
88933
|
brandId?: SortOrder
|
|
88934
|
+
agencyPrivileges?: SortOrder
|
|
88881
88935
|
}
|
|
88882
88936
|
|
|
88883
88937
|
export type BrandUserProfileAvgOrderByAggregateInput = {
|
|
@@ -88890,12 +88944,14 @@ export namespace Prisma {
|
|
|
88890
88944
|
id?: SortOrder
|
|
88891
88945
|
userId?: SortOrder
|
|
88892
88946
|
brandId?: SortOrder
|
|
88947
|
+
agencyPrivileges?: SortOrder
|
|
88893
88948
|
}
|
|
88894
88949
|
|
|
88895
88950
|
export type BrandUserProfileMinOrderByAggregateInput = {
|
|
88896
88951
|
id?: SortOrder
|
|
88897
88952
|
userId?: SortOrder
|
|
88898
88953
|
brandId?: SortOrder
|
|
88954
|
+
agencyPrivileges?: SortOrder
|
|
88899
88955
|
}
|
|
88900
88956
|
|
|
88901
88957
|
export type BrandUserProfileSumOrderByAggregateInput = {
|
|
@@ -88904,6 +88960,14 @@ export namespace Prisma {
|
|
|
88904
88960
|
brandId?: SortOrder
|
|
88905
88961
|
}
|
|
88906
88962
|
|
|
88963
|
+
export type BoolWithAggregatesFilter<$PrismaModel = never> = {
|
|
88964
|
+
equals?: boolean | BooleanFieldRefInput<$PrismaModel>
|
|
88965
|
+
not?: NestedBoolWithAggregatesFilter<$PrismaModel> | boolean
|
|
88966
|
+
_count?: NestedIntFilter<$PrismaModel>
|
|
88967
|
+
_min?: NestedBoolFilter<$PrismaModel>
|
|
88968
|
+
_max?: NestedBoolFilter<$PrismaModel>
|
|
88969
|
+
}
|
|
88970
|
+
|
|
88907
88971
|
export type CampaignListRelationFilter = {
|
|
88908
88972
|
every?: CampaignWhereInput
|
|
88909
88973
|
some?: CampaignWhereInput
|
|
@@ -89435,11 +89499,6 @@ export namespace Prisma {
|
|
|
89435
89499
|
optInId?: SortOrder
|
|
89436
89500
|
}
|
|
89437
89501
|
|
|
89438
|
-
export type BoolFilter<$PrismaModel = never> = {
|
|
89439
|
-
equals?: boolean | BooleanFieldRefInput<$PrismaModel>
|
|
89440
|
-
not?: NestedBoolFilter<$PrismaModel> | boolean
|
|
89441
|
-
}
|
|
89442
|
-
|
|
89443
89502
|
export type ChatRelationFilter = {
|
|
89444
89503
|
is?: ChatWhereInput
|
|
89445
89504
|
isNot?: ChatWhereInput
|
|
@@ -89499,14 +89558,6 @@ export namespace Prisma {
|
|
|
89499
89558
|
chatId?: SortOrder
|
|
89500
89559
|
}
|
|
89501
89560
|
|
|
89502
|
-
export type BoolWithAggregatesFilter<$PrismaModel = never> = {
|
|
89503
|
-
equals?: boolean | BooleanFieldRefInput<$PrismaModel>
|
|
89504
|
-
not?: NestedBoolWithAggregatesFilter<$PrismaModel> | boolean
|
|
89505
|
-
_count?: NestedIntFilter<$PrismaModel>
|
|
89506
|
-
_min?: NestedBoolFilter<$PrismaModel>
|
|
89507
|
-
_max?: NestedBoolFilter<$PrismaModel>
|
|
89508
|
-
}
|
|
89509
|
-
|
|
89510
89561
|
export type CampaignStepListRelationFilter = {
|
|
89511
89562
|
every?: CampaignStepWhereInput
|
|
89512
89563
|
some?: CampaignStepWhereInput
|
|
@@ -91337,6 +91388,7 @@ export namespace Prisma {
|
|
|
91337
91388
|
engagement?: SortOrder
|
|
91338
91389
|
avgViews?: SortOrder
|
|
91339
91390
|
verified?: SortOrder
|
|
91391
|
+
visibility?: SortOrder
|
|
91340
91392
|
metaData?: SortOrder
|
|
91341
91393
|
audienceData?: SortOrder
|
|
91342
91394
|
phylloData?: SortOrder
|
|
@@ -91365,6 +91417,7 @@ export namespace Prisma {
|
|
|
91365
91417
|
engagement?: SortOrder
|
|
91366
91418
|
avgViews?: SortOrder
|
|
91367
91419
|
verified?: SortOrder
|
|
91420
|
+
visibility?: SortOrder
|
|
91368
91421
|
created?: SortOrder
|
|
91369
91422
|
updated?: SortOrder
|
|
91370
91423
|
}
|
|
@@ -91382,6 +91435,7 @@ export namespace Prisma {
|
|
|
91382
91435
|
engagement?: SortOrder
|
|
91383
91436
|
avgViews?: SortOrder
|
|
91384
91437
|
verified?: SortOrder
|
|
91438
|
+
visibility?: SortOrder
|
|
91385
91439
|
created?: SortOrder
|
|
91386
91440
|
updated?: SortOrder
|
|
91387
91441
|
}
|
|
@@ -93274,6 +93328,10 @@ export namespace Prisma {
|
|
|
93274
93328
|
connect?: BrandWhereUniqueInput
|
|
93275
93329
|
}
|
|
93276
93330
|
|
|
93331
|
+
export type BoolFieldUpdateOperationsInput = {
|
|
93332
|
+
set?: boolean
|
|
93333
|
+
}
|
|
93334
|
+
|
|
93277
93335
|
export type UserUpdateOneRequiredWithoutBrandProfilesNestedInput = {
|
|
93278
93336
|
create?: XOR<UserCreateWithoutBrandProfilesInput, UserUncheckedCreateWithoutBrandProfilesInput>
|
|
93279
93337
|
connectOrCreate?: UserCreateOrConnectWithoutBrandProfilesInput
|
|
@@ -94530,10 +94588,6 @@ export namespace Prisma {
|
|
|
94530
94588
|
connect?: ChatWhereUniqueInput
|
|
94531
94589
|
}
|
|
94532
94590
|
|
|
94533
|
-
export type BoolFieldUpdateOperationsInput = {
|
|
94534
|
-
set?: boolean
|
|
94535
|
-
}
|
|
94536
|
-
|
|
94537
94591
|
export type UserUpdateOneWithoutMessagesNestedInput = {
|
|
94538
94592
|
create?: XOR<UserCreateWithoutMessagesInput, UserUncheckedCreateWithoutMessagesInput>
|
|
94539
94593
|
connectOrCreate?: UserCreateOrConnectWithoutMessagesInput
|
|
@@ -98085,6 +98139,19 @@ export namespace Prisma {
|
|
|
98085
98139
|
_max?: NestedBoolNullableFilter<$PrismaModel>
|
|
98086
98140
|
}
|
|
98087
98141
|
|
|
98142
|
+
export type NestedBoolFilter<$PrismaModel = never> = {
|
|
98143
|
+
equals?: boolean | BooleanFieldRefInput<$PrismaModel>
|
|
98144
|
+
not?: NestedBoolFilter<$PrismaModel> | boolean
|
|
98145
|
+
}
|
|
98146
|
+
|
|
98147
|
+
export type NestedBoolWithAggregatesFilter<$PrismaModel = never> = {
|
|
98148
|
+
equals?: boolean | BooleanFieldRefInput<$PrismaModel>
|
|
98149
|
+
not?: NestedBoolWithAggregatesFilter<$PrismaModel> | boolean
|
|
98150
|
+
_count?: NestedIntFilter<$PrismaModel>
|
|
98151
|
+
_min?: NestedBoolFilter<$PrismaModel>
|
|
98152
|
+
_max?: NestedBoolFilter<$PrismaModel>
|
|
98153
|
+
}
|
|
98154
|
+
|
|
98088
98155
|
export type NestedFloatWithAggregatesFilter<$PrismaModel = never> = {
|
|
98089
98156
|
equals?: number | FloatFieldRefInput<$PrismaModel>
|
|
98090
98157
|
in?: number[] | ListFloatFieldRefInput<$PrismaModel>
|
|
@@ -98101,19 +98168,6 @@ export namespace Prisma {
|
|
|
98101
98168
|
_max?: NestedFloatFilter<$PrismaModel>
|
|
98102
98169
|
}
|
|
98103
98170
|
|
|
98104
|
-
export type NestedBoolFilter<$PrismaModel = never> = {
|
|
98105
|
-
equals?: boolean | BooleanFieldRefInput<$PrismaModel>
|
|
98106
|
-
not?: NestedBoolFilter<$PrismaModel> | boolean
|
|
98107
|
-
}
|
|
98108
|
-
|
|
98109
|
-
export type NestedBoolWithAggregatesFilter<$PrismaModel = never> = {
|
|
98110
|
-
equals?: boolean | BooleanFieldRefInput<$PrismaModel>
|
|
98111
|
-
not?: NestedBoolWithAggregatesFilter<$PrismaModel> | boolean
|
|
98112
|
-
_count?: NestedIntFilter<$PrismaModel>
|
|
98113
|
-
_min?: NestedBoolFilter<$PrismaModel>
|
|
98114
|
-
_max?: NestedBoolFilter<$PrismaModel>
|
|
98115
|
-
}
|
|
98116
|
-
|
|
98117
98171
|
export type NestedEnumtrolleyPaymentTypeNullableFilter<$PrismaModel = never> = {
|
|
98118
98172
|
equals?: $Enums.trolleyPaymentType | EnumtrolleyPaymentTypeFieldRefInput<$PrismaModel> | null
|
|
98119
98173
|
in?: $Enums.trolleyPaymentType[] | ListEnumtrolleyPaymentTypeFieldRefInput<$PrismaModel> | null
|
|
@@ -98676,12 +98730,14 @@ export namespace Prisma {
|
|
|
98676
98730
|
}
|
|
98677
98731
|
|
|
98678
98732
|
export type BrandUserProfileCreateWithoutUserInput = {
|
|
98733
|
+
agencyPrivileges?: boolean
|
|
98679
98734
|
brand: BrandCreateNestedOneWithoutBrandUsersInput
|
|
98680
98735
|
}
|
|
98681
98736
|
|
|
98682
98737
|
export type BrandUserProfileUncheckedCreateWithoutUserInput = {
|
|
98683
98738
|
id?: number
|
|
98684
98739
|
brandId: number
|
|
98740
|
+
agencyPrivileges?: boolean
|
|
98685
98741
|
}
|
|
98686
98742
|
|
|
98687
98743
|
export type BrandUserProfileCreateOrConnectWithoutUserInput = {
|
|
@@ -99048,6 +99104,7 @@ export namespace Prisma {
|
|
|
99048
99104
|
engagement?: number | null
|
|
99049
99105
|
avgViews?: number | null
|
|
99050
99106
|
verified?: boolean | null
|
|
99107
|
+
visibility?: string
|
|
99051
99108
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
99052
99109
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
99053
99110
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -99069,6 +99126,7 @@ export namespace Prisma {
|
|
|
99069
99126
|
engagement?: number | null
|
|
99070
99127
|
avgViews?: number | null
|
|
99071
99128
|
verified?: boolean | null
|
|
99129
|
+
visibility?: string
|
|
99072
99130
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
99073
99131
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
99074
99132
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -99687,6 +99745,7 @@ export namespace Prisma {
|
|
|
99687
99745
|
id?: IntFilter<"BrandUserProfile"> | number
|
|
99688
99746
|
userId?: IntFilter<"BrandUserProfile"> | number
|
|
99689
99747
|
brandId?: IntFilter<"BrandUserProfile"> | number
|
|
99748
|
+
agencyPrivileges?: BoolFilter<"BrandUserProfile"> | boolean
|
|
99690
99749
|
}
|
|
99691
99750
|
|
|
99692
99751
|
export type OptInUpsertWithWhereUniqueWithoutUserInput = {
|
|
@@ -99970,6 +100029,7 @@ export namespace Prisma {
|
|
|
99970
100029
|
engagement?: FloatNullableFilter<"SocialProfile"> | number | null
|
|
99971
100030
|
avgViews?: IntNullableFilter<"SocialProfile"> | number | null
|
|
99972
100031
|
verified?: BoolNullableFilter<"SocialProfile"> | boolean | null
|
|
100032
|
+
visibility?: StringFilter<"SocialProfile"> | string
|
|
99973
100033
|
metaData?: JsonFilter<"SocialProfile">
|
|
99974
100034
|
audienceData?: JsonFilter<"SocialProfile">
|
|
99975
100035
|
phylloData?: JsonFilter<"SocialProfile">
|
|
@@ -102753,12 +102813,14 @@ export namespace Prisma {
|
|
|
102753
102813
|
}
|
|
102754
102814
|
|
|
102755
102815
|
export type BrandUserProfileCreateWithoutBrandInput = {
|
|
102816
|
+
agencyPrivileges?: boolean
|
|
102756
102817
|
user: UserCreateNestedOneWithoutBrandProfilesInput
|
|
102757
102818
|
}
|
|
102758
102819
|
|
|
102759
102820
|
export type BrandUserProfileUncheckedCreateWithoutBrandInput = {
|
|
102760
102821
|
id?: number
|
|
102761
102822
|
userId: number
|
|
102823
|
+
agencyPrivileges?: boolean
|
|
102762
102824
|
}
|
|
102763
102825
|
|
|
102764
102826
|
export type BrandUserProfileCreateOrConnectWithoutBrandInput = {
|
|
@@ -112939,6 +113001,7 @@ export namespace Prisma {
|
|
|
112939
113001
|
engagement?: number | null
|
|
112940
113002
|
avgViews?: number | null
|
|
112941
113003
|
verified?: boolean | null
|
|
113004
|
+
visibility?: string
|
|
112942
113005
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
112943
113006
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
112944
113007
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -112961,6 +113024,7 @@ export namespace Prisma {
|
|
|
112961
113024
|
engagement?: number | null
|
|
112962
113025
|
avgViews?: number | null
|
|
112963
113026
|
verified?: boolean | null
|
|
113027
|
+
visibility?: string
|
|
112964
113028
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
112965
113029
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
112966
113030
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -113284,6 +113348,7 @@ export namespace Prisma {
|
|
|
113284
113348
|
engagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
113285
113349
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
113286
113350
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
113351
|
+
visibility?: StringFieldUpdateOperationsInput | string
|
|
113287
113352
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
113288
113353
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
113289
113354
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -113306,6 +113371,7 @@ export namespace Prisma {
|
|
|
113306
113371
|
engagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
113307
113372
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
113308
113373
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
113374
|
+
visibility?: StringFieldUpdateOperationsInput | string
|
|
113309
113375
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
113310
113376
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
113311
113377
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -113986,6 +114052,7 @@ export namespace Prisma {
|
|
|
113986
114052
|
engagement?: number | null
|
|
113987
114053
|
avgViews?: number | null
|
|
113988
114054
|
verified?: boolean | null
|
|
114055
|
+
visibility?: string
|
|
113989
114056
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
113990
114057
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
113991
114058
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -114008,6 +114075,7 @@ export namespace Prisma {
|
|
|
114008
114075
|
engagement?: number | null
|
|
114009
114076
|
avgViews?: number | null
|
|
114010
114077
|
verified?: boolean | null
|
|
114078
|
+
visibility?: string
|
|
114011
114079
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
114012
114080
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
114013
114081
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -114145,6 +114213,7 @@ export namespace Prisma {
|
|
|
114145
114213
|
engagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
114146
114214
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
114147
114215
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
114216
|
+
visibility?: StringFieldUpdateOperationsInput | string
|
|
114148
114217
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
114149
114218
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
114150
114219
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -114167,6 +114236,7 @@ export namespace Prisma {
|
|
|
114167
114236
|
engagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
114168
114237
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
114169
114238
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
114239
|
+
visibility?: StringFieldUpdateOperationsInput | string
|
|
114170
114240
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
114171
114241
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
114172
114242
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -118429,6 +118499,7 @@ export namespace Prisma {
|
|
|
118429
118499
|
export type BrandUserProfileCreateManyUserInput = {
|
|
118430
118500
|
id?: number
|
|
118431
118501
|
brandId: number
|
|
118502
|
+
agencyPrivileges?: boolean
|
|
118432
118503
|
}
|
|
118433
118504
|
|
|
118434
118505
|
export type OptInCreateManyUserInput = {
|
|
@@ -118552,6 +118623,7 @@ export namespace Prisma {
|
|
|
118552
118623
|
engagement?: number | null
|
|
118553
118624
|
avgViews?: number | null
|
|
118554
118625
|
verified?: boolean | null
|
|
118626
|
+
visibility?: string
|
|
118555
118627
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
118556
118628
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
118557
118629
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -118698,17 +118770,20 @@ export namespace Prisma {
|
|
|
118698
118770
|
}
|
|
118699
118771
|
|
|
118700
118772
|
export type BrandUserProfileUpdateWithoutUserInput = {
|
|
118773
|
+
agencyPrivileges?: BoolFieldUpdateOperationsInput | boolean
|
|
118701
118774
|
brand?: BrandUpdateOneRequiredWithoutBrandUsersNestedInput
|
|
118702
118775
|
}
|
|
118703
118776
|
|
|
118704
118777
|
export type BrandUserProfileUncheckedUpdateWithoutUserInput = {
|
|
118705
118778
|
id?: IntFieldUpdateOperationsInput | number
|
|
118706
118779
|
brandId?: IntFieldUpdateOperationsInput | number
|
|
118780
|
+
agencyPrivileges?: BoolFieldUpdateOperationsInput | boolean
|
|
118707
118781
|
}
|
|
118708
118782
|
|
|
118709
118783
|
export type BrandUserProfileUncheckedUpdateManyWithoutUserInput = {
|
|
118710
118784
|
id?: IntFieldUpdateOperationsInput | number
|
|
118711
118785
|
brandId?: IntFieldUpdateOperationsInput | number
|
|
118786
|
+
agencyPrivileges?: BoolFieldUpdateOperationsInput | boolean
|
|
118712
118787
|
}
|
|
118713
118788
|
|
|
118714
118789
|
export type OptInUpdateWithoutUserInput = {
|
|
@@ -119104,6 +119179,7 @@ export namespace Prisma {
|
|
|
119104
119179
|
engagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
119105
119180
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
119106
119181
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
119182
|
+
visibility?: StringFieldUpdateOperationsInput | string
|
|
119107
119183
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
119108
119184
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
119109
119185
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -119125,6 +119201,7 @@ export namespace Prisma {
|
|
|
119125
119201
|
engagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
119126
119202
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
119127
119203
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
119204
|
+
visibility?: StringFieldUpdateOperationsInput | string
|
|
119128
119205
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
119129
119206
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
119130
119207
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -119146,6 +119223,7 @@ export namespace Prisma {
|
|
|
119146
119223
|
engagement?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
119147
119224
|
avgViews?: NullableIntFieldUpdateOperationsInput | number | null
|
|
119148
119225
|
verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
|
|
119226
|
+
visibility?: StringFieldUpdateOperationsInput | string
|
|
119149
119227
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
119150
119228
|
audienceData?: JsonNullValueInput | InputJsonValue
|
|
119151
119229
|
phylloData?: JsonNullValueInput | InputJsonValue
|
|
@@ -119291,6 +119369,7 @@ export namespace Prisma {
|
|
|
119291
119369
|
export type BrandUserProfileCreateManyBrandInput = {
|
|
119292
119370
|
id?: number
|
|
119293
119371
|
userId: number
|
|
119372
|
+
agencyPrivileges?: boolean
|
|
119294
119373
|
}
|
|
119295
119374
|
|
|
119296
119375
|
export type SearchContactsCreateManyBrandInput = {
|
|
@@ -119645,17 +119724,20 @@ export namespace Prisma {
|
|
|
119645
119724
|
}
|
|
119646
119725
|
|
|
119647
119726
|
export type BrandUserProfileUpdateWithoutBrandInput = {
|
|
119727
|
+
agencyPrivileges?: BoolFieldUpdateOperationsInput | boolean
|
|
119648
119728
|
user?: UserUpdateOneRequiredWithoutBrandProfilesNestedInput
|
|
119649
119729
|
}
|
|
119650
119730
|
|
|
119651
119731
|
export type BrandUserProfileUncheckedUpdateWithoutBrandInput = {
|
|
119652
119732
|
id?: IntFieldUpdateOperationsInput | number
|
|
119653
119733
|
userId?: IntFieldUpdateOperationsInput | number
|
|
119734
|
+
agencyPrivileges?: BoolFieldUpdateOperationsInput | boolean
|
|
119654
119735
|
}
|
|
119655
119736
|
|
|
119656
119737
|
export type BrandUserProfileUncheckedUpdateManyWithoutBrandInput = {
|
|
119657
119738
|
id?: IntFieldUpdateOperationsInput | number
|
|
119658
119739
|
userId?: IntFieldUpdateOperationsInput | number
|
|
119740
|
+
agencyPrivileges?: BoolFieldUpdateOperationsInput | boolean
|
|
119659
119741
|
}
|
|
119660
119742
|
|
|
119661
119743
|
export type SearchContactsUpdateWithoutBrandInput = {
|