@creator.co/creatorco-prisma-client 1.0.26 → 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/index-browser.js CHANGED
@@ -724,6 +724,7 @@ exports.Prisma.SocialProfileScalarFieldEnum = {
724
724
  engagement: 'engagement',
725
725
  avgViews: 'avgViews',
726
726
  verified: 'verified',
727
+ visibility: 'visibility',
727
728
  metaData: 'metaData',
728
729
  audienceData: 'audienceData',
729
730
  phylloData: 'phylloData',
@@ -1170,7 +1171,8 @@ exports.Prisma.SocialProfileOrderByRelevanceFieldEnum = {
1170
1171
  username: 'username',
1171
1172
  fullname: 'fullname',
1172
1173
  profileUrl: 'profileUrl',
1173
- profilePicUrl: 'profilePicUrl'
1174
+ profilePicUrl: 'profilePicUrl',
1175
+ visibility: 'visibility'
1174
1176
  };
1175
1177
 
1176
1178
  exports.Prisma.MessageTemplateOrderByRelevanceFieldEnum = {
package/index.d.ts CHANGED
@@ -57190,6 +57190,7 @@ export namespace Prisma {
57190
57190
  engagement: number | null
57191
57191
  avgViews: number | null
57192
57192
  verified: boolean | null
57193
+ visibility: string | null
57193
57194
  created: Date | null
57194
57195
  updated: Date | null
57195
57196
  }
@@ -57207,6 +57208,7 @@ export namespace Prisma {
57207
57208
  engagement: number | null
57208
57209
  avgViews: number | null
57209
57210
  verified: boolean | null
57211
+ visibility: string | null
57210
57212
  created: Date | null
57211
57213
  updated: Date | null
57212
57214
  }
@@ -57224,6 +57226,7 @@ export namespace Prisma {
57224
57226
  engagement: number
57225
57227
  avgViews: number
57226
57228
  verified: number
57229
+ visibility: number
57227
57230
  metaData: number
57228
57231
  audienceData: number
57229
57232
  phylloData: number
@@ -57262,6 +57265,7 @@ export namespace Prisma {
57262
57265
  engagement?: true
57263
57266
  avgViews?: true
57264
57267
  verified?: true
57268
+ visibility?: true
57265
57269
  created?: true
57266
57270
  updated?: true
57267
57271
  }
@@ -57279,6 +57283,7 @@ export namespace Prisma {
57279
57283
  engagement?: true
57280
57284
  avgViews?: true
57281
57285
  verified?: true
57286
+ visibility?: true
57282
57287
  created?: true
57283
57288
  updated?: true
57284
57289
  }
@@ -57296,6 +57301,7 @@ export namespace Prisma {
57296
57301
  engagement?: true
57297
57302
  avgViews?: true
57298
57303
  verified?: true
57304
+ visibility?: true
57299
57305
  metaData?: true
57300
57306
  audienceData?: true
57301
57307
  phylloData?: true
@@ -57403,6 +57409,7 @@ export namespace Prisma {
57403
57409
  engagement: number | null
57404
57410
  avgViews: number | null
57405
57411
  verified: boolean | null
57412
+ visibility: string
57406
57413
  metaData: JsonValue
57407
57414
  audienceData: JsonValue
57408
57415
  phylloData: JsonValue
@@ -57442,6 +57449,7 @@ export namespace Prisma {
57442
57449
  engagement?: boolean
57443
57450
  avgViews?: boolean
57444
57451
  verified?: boolean
57452
+ visibility?: boolean
57445
57453
  metaData?: boolean
57446
57454
  audienceData?: boolean
57447
57455
  phylloData?: boolean
@@ -57466,6 +57474,7 @@ export namespace Prisma {
57466
57474
  engagement?: boolean
57467
57475
  avgViews?: boolean
57468
57476
  verified?: boolean
57477
+ visibility?: boolean
57469
57478
  metaData?: boolean
57470
57479
  audienceData?: boolean
57471
57480
  phylloData?: boolean
@@ -57501,6 +57510,7 @@ export namespace Prisma {
57501
57510
  engagement: number | null
57502
57511
  avgViews: number | null
57503
57512
  verified: boolean | null
57513
+ visibility: string
57504
57514
  metaData: Prisma.JsonValue
57505
57515
  audienceData: Prisma.JsonValue
57506
57516
  phylloData: Prisma.JsonValue
@@ -57917,6 +57927,7 @@ export namespace Prisma {
57917
57927
  readonly engagement: FieldRef<"SocialProfile", 'Float'>
57918
57928
  readonly avgViews: FieldRef<"SocialProfile", 'Int'>
57919
57929
  readonly verified: FieldRef<"SocialProfile", 'Boolean'>
57930
+ readonly visibility: FieldRef<"SocialProfile", 'String'>
57920
57931
  readonly metaData: FieldRef<"SocialProfile", 'Json'>
57921
57932
  readonly audienceData: FieldRef<"SocialProfile", 'Json'>
57922
57933
  readonly phylloData: FieldRef<"SocialProfile", 'Json'>
@@ -75963,6 +75974,7 @@ export namespace Prisma {
75963
75974
  engagement: 'engagement',
75964
75975
  avgViews: 'avgViews',
75965
75976
  verified: 'verified',
75977
+ visibility: 'visibility',
75966
75978
  metaData: 'metaData',
75967
75979
  audienceData: 'audienceData',
75968
75980
  phylloData: 'phylloData',
@@ -76589,7 +76601,8 @@ export namespace Prisma {
76589
76601
  username: 'username',
76590
76602
  fullname: 'fullname',
76591
76603
  profileUrl: 'profileUrl',
76592
- profilePicUrl: 'profilePicUrl'
76604
+ profilePicUrl: 'profilePicUrl',
76605
+ visibility: 'visibility'
76593
76606
  };
76594
76607
 
76595
76608
  export type SocialProfileOrderByRelevanceFieldEnum = (typeof SocialProfileOrderByRelevanceFieldEnum)[keyof typeof SocialProfileOrderByRelevanceFieldEnum]
@@ -80950,6 +80963,7 @@ export namespace Prisma {
80950
80963
  engagement?: FloatNullableFilter<"SocialProfile"> | number | null
80951
80964
  avgViews?: IntNullableFilter<"SocialProfile"> | number | null
80952
80965
  verified?: BoolNullableFilter<"SocialProfile"> | boolean | null
80966
+ visibility?: StringFilter<"SocialProfile"> | string
80953
80967
  metaData?: JsonFilter<"SocialProfile">
80954
80968
  audienceData?: JsonFilter<"SocialProfile">
80955
80969
  phylloData?: JsonFilter<"SocialProfile">
@@ -80973,6 +80987,7 @@ export namespace Prisma {
80973
80987
  engagement?: SortOrderInput | SortOrder
80974
80988
  avgViews?: SortOrderInput | SortOrder
80975
80989
  verified?: SortOrderInput | SortOrder
80990
+ visibility?: SortOrder
80976
80991
  metaData?: SortOrder
80977
80992
  audienceData?: SortOrder
80978
80993
  phylloData?: SortOrder
@@ -81000,6 +81015,7 @@ export namespace Prisma {
81000
81015
  engagement?: FloatNullableFilter<"SocialProfile"> | number | null
81001
81016
  avgViews?: IntNullableFilter<"SocialProfile"> | number | null
81002
81017
  verified?: BoolNullableFilter<"SocialProfile"> | boolean | null
81018
+ visibility?: StringFilter<"SocialProfile"> | string
81003
81019
  metaData?: JsonFilter<"SocialProfile">
81004
81020
  audienceData?: JsonFilter<"SocialProfile">
81005
81021
  phylloData?: JsonFilter<"SocialProfile">
@@ -81023,6 +81039,7 @@ export namespace Prisma {
81023
81039
  engagement?: SortOrderInput | SortOrder
81024
81040
  avgViews?: SortOrderInput | SortOrder
81025
81041
  verified?: SortOrderInput | SortOrder
81042
+ visibility?: SortOrder
81026
81043
  metaData?: SortOrder
81027
81044
  audienceData?: SortOrder
81028
81045
  phylloData?: SortOrder
@@ -81051,6 +81068,7 @@ export namespace Prisma {
81051
81068
  engagement?: FloatNullableWithAggregatesFilter<"SocialProfile"> | number | null
81052
81069
  avgViews?: IntNullableWithAggregatesFilter<"SocialProfile"> | number | null
81053
81070
  verified?: BoolNullableWithAggregatesFilter<"SocialProfile"> | boolean | null
81071
+ visibility?: StringWithAggregatesFilter<"SocialProfile"> | string
81054
81072
  metaData?: JsonWithAggregatesFilter<"SocialProfile">
81055
81073
  audienceData?: JsonWithAggregatesFilter<"SocialProfile">
81056
81074
  phylloData?: JsonWithAggregatesFilter<"SocialProfile">
@@ -86510,6 +86528,7 @@ export namespace Prisma {
86510
86528
  engagement?: number | null
86511
86529
  avgViews?: number | null
86512
86530
  verified?: boolean | null
86531
+ visibility?: string
86513
86532
  metaData?: JsonNullValueInput | InputJsonValue
86514
86533
  audienceData?: JsonNullValueInput | InputJsonValue
86515
86534
  phylloData?: JsonNullValueInput | InputJsonValue
@@ -86533,6 +86552,7 @@ export namespace Prisma {
86533
86552
  engagement?: number | null
86534
86553
  avgViews?: number | null
86535
86554
  verified?: boolean | null
86555
+ visibility?: string
86536
86556
  metaData?: JsonNullValueInput | InputJsonValue
86537
86557
  audienceData?: JsonNullValueInput | InputJsonValue
86538
86558
  phylloData?: JsonNullValueInput | InputJsonValue
@@ -86553,6 +86573,7 @@ export namespace Prisma {
86553
86573
  engagement?: NullableFloatFieldUpdateOperationsInput | number | null
86554
86574
  avgViews?: NullableIntFieldUpdateOperationsInput | number | null
86555
86575
  verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
86576
+ visibility?: StringFieldUpdateOperationsInput | string
86556
86577
  metaData?: JsonNullValueInput | InputJsonValue
86557
86578
  audienceData?: JsonNullValueInput | InputJsonValue
86558
86579
  phylloData?: JsonNullValueInput | InputJsonValue
@@ -86576,6 +86597,7 @@ export namespace Prisma {
86576
86597
  engagement?: NullableFloatFieldUpdateOperationsInput | number | null
86577
86598
  avgViews?: NullableIntFieldUpdateOperationsInput | number | null
86578
86599
  verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
86600
+ visibility?: StringFieldUpdateOperationsInput | string
86579
86601
  metaData?: JsonNullValueInput | InputJsonValue
86580
86602
  audienceData?: JsonNullValueInput | InputJsonValue
86581
86603
  phylloData?: JsonNullValueInput | InputJsonValue
@@ -86598,6 +86620,7 @@ export namespace Prisma {
86598
86620
  engagement?: number | null
86599
86621
  avgViews?: number | null
86600
86622
  verified?: boolean | null
86623
+ visibility?: string
86601
86624
  metaData?: JsonNullValueInput | InputJsonValue
86602
86625
  audienceData?: JsonNullValueInput | InputJsonValue
86603
86626
  phylloData?: JsonNullValueInput | InputJsonValue
@@ -86616,6 +86639,7 @@ export namespace Prisma {
86616
86639
  engagement?: NullableFloatFieldUpdateOperationsInput | number | null
86617
86640
  avgViews?: NullableIntFieldUpdateOperationsInput | number | null
86618
86641
  verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
86642
+ visibility?: StringFieldUpdateOperationsInput | string
86619
86643
  metaData?: JsonNullValueInput | InputJsonValue
86620
86644
  audienceData?: JsonNullValueInput | InputJsonValue
86621
86645
  phylloData?: JsonNullValueInput | InputJsonValue
@@ -86636,6 +86660,7 @@ export namespace Prisma {
86636
86660
  engagement?: NullableFloatFieldUpdateOperationsInput | number | null
86637
86661
  avgViews?: NullableIntFieldUpdateOperationsInput | number | null
86638
86662
  verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
86663
+ visibility?: StringFieldUpdateOperationsInput | string
86639
86664
  metaData?: JsonNullValueInput | InputJsonValue
86640
86665
  audienceData?: JsonNullValueInput | InputJsonValue
86641
86666
  phylloData?: JsonNullValueInput | InputJsonValue
@@ -91363,6 +91388,7 @@ export namespace Prisma {
91363
91388
  engagement?: SortOrder
91364
91389
  avgViews?: SortOrder
91365
91390
  verified?: SortOrder
91391
+ visibility?: SortOrder
91366
91392
  metaData?: SortOrder
91367
91393
  audienceData?: SortOrder
91368
91394
  phylloData?: SortOrder
@@ -91391,6 +91417,7 @@ export namespace Prisma {
91391
91417
  engagement?: SortOrder
91392
91418
  avgViews?: SortOrder
91393
91419
  verified?: SortOrder
91420
+ visibility?: SortOrder
91394
91421
  created?: SortOrder
91395
91422
  updated?: SortOrder
91396
91423
  }
@@ -91408,6 +91435,7 @@ export namespace Prisma {
91408
91435
  engagement?: SortOrder
91409
91436
  avgViews?: SortOrder
91410
91437
  verified?: SortOrder
91438
+ visibility?: SortOrder
91411
91439
  created?: SortOrder
91412
91440
  updated?: SortOrder
91413
91441
  }
@@ -99076,6 +99104,7 @@ export namespace Prisma {
99076
99104
  engagement?: number | null
99077
99105
  avgViews?: number | null
99078
99106
  verified?: boolean | null
99107
+ visibility?: string
99079
99108
  metaData?: JsonNullValueInput | InputJsonValue
99080
99109
  audienceData?: JsonNullValueInput | InputJsonValue
99081
99110
  phylloData?: JsonNullValueInput | InputJsonValue
@@ -99097,6 +99126,7 @@ export namespace Prisma {
99097
99126
  engagement?: number | null
99098
99127
  avgViews?: number | null
99099
99128
  verified?: boolean | null
99129
+ visibility?: string
99100
99130
  metaData?: JsonNullValueInput | InputJsonValue
99101
99131
  audienceData?: JsonNullValueInput | InputJsonValue
99102
99132
  phylloData?: JsonNullValueInput | InputJsonValue
@@ -99999,6 +100029,7 @@ export namespace Prisma {
99999
100029
  engagement?: FloatNullableFilter<"SocialProfile"> | number | null
100000
100030
  avgViews?: IntNullableFilter<"SocialProfile"> | number | null
100001
100031
  verified?: BoolNullableFilter<"SocialProfile"> | boolean | null
100032
+ visibility?: StringFilter<"SocialProfile"> | string
100002
100033
  metaData?: JsonFilter<"SocialProfile">
100003
100034
  audienceData?: JsonFilter<"SocialProfile">
100004
100035
  phylloData?: JsonFilter<"SocialProfile">
@@ -112970,6 +113001,7 @@ export namespace Prisma {
112970
113001
  engagement?: number | null
112971
113002
  avgViews?: number | null
112972
113003
  verified?: boolean | null
113004
+ visibility?: string
112973
113005
  metaData?: JsonNullValueInput | InputJsonValue
112974
113006
  audienceData?: JsonNullValueInput | InputJsonValue
112975
113007
  phylloData?: JsonNullValueInput | InputJsonValue
@@ -112992,6 +113024,7 @@ export namespace Prisma {
112992
113024
  engagement?: number | null
112993
113025
  avgViews?: number | null
112994
113026
  verified?: boolean | null
113027
+ visibility?: string
112995
113028
  metaData?: JsonNullValueInput | InputJsonValue
112996
113029
  audienceData?: JsonNullValueInput | InputJsonValue
112997
113030
  phylloData?: JsonNullValueInput | InputJsonValue
@@ -113315,6 +113348,7 @@ export namespace Prisma {
113315
113348
  engagement?: NullableFloatFieldUpdateOperationsInput | number | null
113316
113349
  avgViews?: NullableIntFieldUpdateOperationsInput | number | null
113317
113350
  verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
113351
+ visibility?: StringFieldUpdateOperationsInput | string
113318
113352
  metaData?: JsonNullValueInput | InputJsonValue
113319
113353
  audienceData?: JsonNullValueInput | InputJsonValue
113320
113354
  phylloData?: JsonNullValueInput | InputJsonValue
@@ -113337,6 +113371,7 @@ export namespace Prisma {
113337
113371
  engagement?: NullableFloatFieldUpdateOperationsInput | number | null
113338
113372
  avgViews?: NullableIntFieldUpdateOperationsInput | number | null
113339
113373
  verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
113374
+ visibility?: StringFieldUpdateOperationsInput | string
113340
113375
  metaData?: JsonNullValueInput | InputJsonValue
113341
113376
  audienceData?: JsonNullValueInput | InputJsonValue
113342
113377
  phylloData?: JsonNullValueInput | InputJsonValue
@@ -114017,6 +114052,7 @@ export namespace Prisma {
114017
114052
  engagement?: number | null
114018
114053
  avgViews?: number | null
114019
114054
  verified?: boolean | null
114055
+ visibility?: string
114020
114056
  metaData?: JsonNullValueInput | InputJsonValue
114021
114057
  audienceData?: JsonNullValueInput | InputJsonValue
114022
114058
  phylloData?: JsonNullValueInput | InputJsonValue
@@ -114039,6 +114075,7 @@ export namespace Prisma {
114039
114075
  engagement?: number | null
114040
114076
  avgViews?: number | null
114041
114077
  verified?: boolean | null
114078
+ visibility?: string
114042
114079
  metaData?: JsonNullValueInput | InputJsonValue
114043
114080
  audienceData?: JsonNullValueInput | InputJsonValue
114044
114081
  phylloData?: JsonNullValueInput | InputJsonValue
@@ -114176,6 +114213,7 @@ export namespace Prisma {
114176
114213
  engagement?: NullableFloatFieldUpdateOperationsInput | number | null
114177
114214
  avgViews?: NullableIntFieldUpdateOperationsInput | number | null
114178
114215
  verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
114216
+ visibility?: StringFieldUpdateOperationsInput | string
114179
114217
  metaData?: JsonNullValueInput | InputJsonValue
114180
114218
  audienceData?: JsonNullValueInput | InputJsonValue
114181
114219
  phylloData?: JsonNullValueInput | InputJsonValue
@@ -114198,6 +114236,7 @@ export namespace Prisma {
114198
114236
  engagement?: NullableFloatFieldUpdateOperationsInput | number | null
114199
114237
  avgViews?: NullableIntFieldUpdateOperationsInput | number | null
114200
114238
  verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
114239
+ visibility?: StringFieldUpdateOperationsInput | string
114201
114240
  metaData?: JsonNullValueInput | InputJsonValue
114202
114241
  audienceData?: JsonNullValueInput | InputJsonValue
114203
114242
  phylloData?: JsonNullValueInput | InputJsonValue
@@ -118584,6 +118623,7 @@ export namespace Prisma {
118584
118623
  engagement?: number | null
118585
118624
  avgViews?: number | null
118586
118625
  verified?: boolean | null
118626
+ visibility?: string
118587
118627
  metaData?: JsonNullValueInput | InputJsonValue
118588
118628
  audienceData?: JsonNullValueInput | InputJsonValue
118589
118629
  phylloData?: JsonNullValueInput | InputJsonValue
@@ -119139,6 +119179,7 @@ export namespace Prisma {
119139
119179
  engagement?: NullableFloatFieldUpdateOperationsInput | number | null
119140
119180
  avgViews?: NullableIntFieldUpdateOperationsInput | number | null
119141
119181
  verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
119182
+ visibility?: StringFieldUpdateOperationsInput | string
119142
119183
  metaData?: JsonNullValueInput | InputJsonValue
119143
119184
  audienceData?: JsonNullValueInput | InputJsonValue
119144
119185
  phylloData?: JsonNullValueInput | InputJsonValue
@@ -119160,6 +119201,7 @@ export namespace Prisma {
119160
119201
  engagement?: NullableFloatFieldUpdateOperationsInput | number | null
119161
119202
  avgViews?: NullableIntFieldUpdateOperationsInput | number | null
119162
119203
  verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
119204
+ visibility?: StringFieldUpdateOperationsInput | string
119163
119205
  metaData?: JsonNullValueInput | InputJsonValue
119164
119206
  audienceData?: JsonNullValueInput | InputJsonValue
119165
119207
  phylloData?: JsonNullValueInput | InputJsonValue
@@ -119181,6 +119223,7 @@ export namespace Prisma {
119181
119223
  engagement?: NullableFloatFieldUpdateOperationsInput | number | null
119182
119224
  avgViews?: NullableIntFieldUpdateOperationsInput | number | null
119183
119225
  verified?: NullableBoolFieldUpdateOperationsInput | boolean | null
119226
+ visibility?: StringFieldUpdateOperationsInput | string
119184
119227
  metaData?: JsonNullValueInput | InputJsonValue
119185
119228
  audienceData?: JsonNullValueInput | InputJsonValue
119186
119229
  phylloData?: JsonNullValueInput | InputJsonValue