@creator.co/creatorco-prisma-client 1.0.82-alpha-bd13b4c → 1.0.82-alpha-d56dd0c

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
@@ -871,7 +871,6 @@ exports.Prisma.SocialProfileScalarFieldEnum = {
871
871
  };
872
872
 
873
873
  exports.Prisma.SocialProfileContactScalarFieldEnum = {
874
- id: 'id',
875
874
  type: 'type',
876
875
  value: 'value',
877
876
  source: 'source',
package/index.d.ts CHANGED
@@ -74206,17 +74206,14 @@ export namespace Prisma {
74206
74206
  }
74207
74207
 
74208
74208
  export type SocialProfileContactAvgAggregateOutputType = {
74209
- id: number | null
74210
74209
  socialProfileId: number | null
74211
74210
  }
74212
74211
 
74213
74212
  export type SocialProfileContactSumAggregateOutputType = {
74214
- id: number | null
74215
74213
  socialProfileId: number | null
74216
74214
  }
74217
74215
 
74218
74216
  export type SocialProfileContactMinAggregateOutputType = {
74219
- id: number | null
74220
74217
  type: string | null
74221
74218
  value: string | null
74222
74219
  source: $Enums.SocialProfileContactSource | null
@@ -74226,7 +74223,6 @@ export namespace Prisma {
74226
74223
  }
74227
74224
 
74228
74225
  export type SocialProfileContactMaxAggregateOutputType = {
74229
- id: number | null
74230
74226
  type: string | null
74231
74227
  value: string | null
74232
74228
  source: $Enums.SocialProfileContactSource | null
@@ -74236,7 +74232,6 @@ export namespace Prisma {
74236
74232
  }
74237
74233
 
74238
74234
  export type SocialProfileContactCountAggregateOutputType = {
74239
- id: number
74240
74235
  type: number
74241
74236
  value: number
74242
74237
  source: number
@@ -74249,17 +74244,14 @@ export namespace Prisma {
74249
74244
 
74250
74245
 
74251
74246
  export type SocialProfileContactAvgAggregateInputType = {
74252
- id?: true
74253
74247
  socialProfileId?: true
74254
74248
  }
74255
74249
 
74256
74250
  export type SocialProfileContactSumAggregateInputType = {
74257
- id?: true
74258
74251
  socialProfileId?: true
74259
74252
  }
74260
74253
 
74261
74254
  export type SocialProfileContactMinAggregateInputType = {
74262
- id?: true
74263
74255
  type?: true
74264
74256
  value?: true
74265
74257
  source?: true
@@ -74269,7 +74261,6 @@ export namespace Prisma {
74269
74261
  }
74270
74262
 
74271
74263
  export type SocialProfileContactMaxAggregateInputType = {
74272
- id?: true
74273
74264
  type?: true
74274
74265
  value?: true
74275
74266
  source?: true
@@ -74279,7 +74270,6 @@ export namespace Prisma {
74279
74270
  }
74280
74271
 
74281
74272
  export type SocialProfileContactCountAggregateInputType = {
74282
- id?: true
74283
74273
  type?: true
74284
74274
  value?: true
74285
74275
  source?: true
@@ -74377,7 +74367,6 @@ export namespace Prisma {
74377
74367
  }
74378
74368
 
74379
74369
  export type SocialProfileContactGroupByOutputType = {
74380
- id: number
74381
74370
  type: string
74382
74371
  value: string
74383
74372
  source: $Enums.SocialProfileContactSource
@@ -74407,7 +74396,6 @@ export namespace Prisma {
74407
74396
 
74408
74397
 
74409
74398
  export type SocialProfileContactSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
74410
- id?: boolean
74411
74399
  type?: boolean
74412
74400
  value?: boolean
74413
74401
  source?: boolean
@@ -74419,7 +74407,6 @@ export namespace Prisma {
74419
74407
  }, ExtArgs["result"]["socialProfileContact"]>
74420
74408
 
74421
74409
  export type SocialProfileContactSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
74422
- id?: boolean
74423
74410
  type?: boolean
74424
74411
  value?: boolean
74425
74412
  source?: boolean
@@ -74431,7 +74418,6 @@ export namespace Prisma {
74431
74418
  }, ExtArgs["result"]["socialProfileContact"]>
74432
74419
 
74433
74420
  export type SocialProfileContactSelectScalar = {
74434
- id?: boolean
74435
74421
  type?: boolean
74436
74422
  value?: boolean
74437
74423
  source?: boolean
@@ -74454,7 +74440,6 @@ export namespace Prisma {
74454
74440
  socialProfile: Prisma.$SocialProfilePayload<ExtArgs>
74455
74441
  }
74456
74442
  scalars: $Extensions.GetPayloadResult<{
74457
- id: number
74458
74443
  type: string
74459
74444
  value: string
74460
74445
  source: $Enums.SocialProfileContactSource
@@ -74545,8 +74530,8 @@ export namespace Prisma {
74545
74530
  * // Get first 10 SocialProfileContacts
74546
74531
  * const socialProfileContacts = await prisma.socialProfileContact.findMany({ take: 10 })
74547
74532
  *
74548
- * // Only select the `id`
74549
- * const socialProfileContactWithIdOnly = await prisma.socialProfileContact.findMany({ select: { id: true } })
74533
+ * // Only select the `type`
74534
+ * const socialProfileContactWithTypeOnly = await prisma.socialProfileContact.findMany({ select: { type: true } })
74550
74535
  *
74551
74536
  */
74552
74537
  findMany<T extends SocialProfileContactFindManyArgs>(args?: SelectSubset<T, SocialProfileContactFindManyArgs<ExtArgs>>): Prisma.PrismaPromise<$Result.GetResult<Prisma.$SocialProfileContactPayload<ExtArgs>, T, "findMany">>
@@ -74590,9 +74575,9 @@ export namespace Prisma {
74590
74575
  * ]
74591
74576
  * })
74592
74577
  *
74593
- * // Create many SocialProfileContacts and only return the `id`
74594
- * const socialProfileContactWithIdOnly = await prisma.socialProfileContact.createManyAndReturn({
74595
- * select: { id: true },
74578
+ * // Create many SocialProfileContacts and only return the `type`
74579
+ * const socialProfileContactWithTypeOnly = await prisma.socialProfileContact.createManyAndReturn({
74580
+ * select: { type: true },
74596
74581
  * data: [
74597
74582
  * // ... provide data here
74598
74583
  * ]
@@ -74856,7 +74841,6 @@ export namespace Prisma {
74856
74841
  * Fields of the SocialProfileContact model
74857
74842
  */
74858
74843
  interface SocialProfileContactFieldRefs {
74859
- readonly id: FieldRef<"SocialProfileContact", 'Int'>
74860
74844
  readonly type: FieldRef<"SocialProfileContact", 'String'>
74861
74845
  readonly value: FieldRef<"SocialProfileContact", 'String'>
74862
74846
  readonly source: FieldRef<"SocialProfileContact", 'SocialProfileContactSource'>
@@ -106175,7 +106159,6 @@ export namespace Prisma {
106175
106159
 
106176
106160
 
106177
106161
  export const SocialProfileContactScalarFieldEnum: {
106178
- id: 'id',
106179
106162
  type: 'type',
106180
106163
  value: 'value',
106181
106164
  source: 'source',
@@ -112765,7 +112748,6 @@ export namespace Prisma {
112765
112748
  AND?: SocialProfileContactWhereInput | SocialProfileContactWhereInput[]
112766
112749
  OR?: SocialProfileContactWhereInput[]
112767
112750
  NOT?: SocialProfileContactWhereInput | SocialProfileContactWhereInput[]
112768
- id?: IntFilter<"SocialProfileContact"> | number
112769
112751
  type?: StringFilter<"SocialProfileContact"> | string
112770
112752
  value?: StringFilter<"SocialProfileContact"> | string
112771
112753
  source?: EnumSocialProfileContactSourceFilter<"SocialProfileContact"> | $Enums.SocialProfileContactSource
@@ -112777,7 +112759,6 @@ export namespace Prisma {
112777
112759
  }
112778
112760
 
112779
112761
  export type SocialProfileContactOrderByWithRelationInput = {
112780
- id?: SortOrder
112781
112762
  type?: SortOrder
112782
112763
  value?: SortOrder
112783
112764
  source?: SortOrder
@@ -112790,7 +112771,7 @@ export namespace Prisma {
112790
112771
  }
112791
112772
 
112792
112773
  export type SocialProfileContactWhereUniqueInput = Prisma.AtLeast<{
112793
- id?: number
112774
+ type_value_socialProfileId?: SocialProfileContactTypeValueSocialProfileIdCompoundUniqueInput
112794
112775
  AND?: SocialProfileContactWhereInput | SocialProfileContactWhereInput[]
112795
112776
  OR?: SocialProfileContactWhereInput[]
112796
112777
  NOT?: SocialProfileContactWhereInput | SocialProfileContactWhereInput[]
@@ -112802,10 +112783,9 @@ export namespace Prisma {
112802
112783
  updatedAt?: DateTimeNullableFilter<"SocialProfileContact"> | Date | string | null
112803
112784
  socialProfileId?: IntFilter<"SocialProfileContact"> | number
112804
112785
  socialProfile?: XOR<SocialProfileRelationFilter, SocialProfileWhereInput>
112805
- }, "id">
112786
+ }, "type_value_socialProfileId">
112806
112787
 
112807
112788
  export type SocialProfileContactOrderByWithAggregationInput = {
112808
- id?: SortOrder
112809
112789
  type?: SortOrder
112810
112790
  value?: SortOrder
112811
112791
  source?: SortOrder
@@ -112824,7 +112804,6 @@ export namespace Prisma {
112824
112804
  AND?: SocialProfileContactScalarWhereWithAggregatesInput | SocialProfileContactScalarWhereWithAggregatesInput[]
112825
112805
  OR?: SocialProfileContactScalarWhereWithAggregatesInput[]
112826
112806
  NOT?: SocialProfileContactScalarWhereWithAggregatesInput | SocialProfileContactScalarWhereWithAggregatesInput[]
112827
- id?: IntWithAggregatesFilter<"SocialProfileContact"> | number
112828
112807
  type?: StringWithAggregatesFilter<"SocialProfileContact"> | string
112829
112808
  value?: StringWithAggregatesFilter<"SocialProfileContact"> | string
112830
112809
  source?: EnumSocialProfileContactSourceWithAggregatesFilter<"SocialProfileContact"> | $Enums.SocialProfileContactSource
@@ -120586,7 +120565,6 @@ export namespace Prisma {
120586
120565
  }
120587
120566
 
120588
120567
  export type SocialProfileContactUncheckedCreateInput = {
120589
- id?: number
120590
120568
  type: string
120591
120569
  value: string
120592
120570
  source?: $Enums.SocialProfileContactSource
@@ -120607,7 +120585,6 @@ export namespace Prisma {
120607
120585
  }
120608
120586
 
120609
120587
  export type SocialProfileContactUncheckedUpdateInput = {
120610
- id?: IntFieldUpdateOperationsInput | number
120611
120588
  type?: StringFieldUpdateOperationsInput | string
120612
120589
  value?: StringFieldUpdateOperationsInput | string
120613
120590
  source?: EnumSocialProfileContactSourceFieldUpdateOperationsInput | $Enums.SocialProfileContactSource
@@ -120618,7 +120595,6 @@ export namespace Prisma {
120618
120595
  }
120619
120596
 
120620
120597
  export type SocialProfileContactCreateManyInput = {
120621
- id?: number
120622
120598
  type: string
120623
120599
  value: string
120624
120600
  source?: $Enums.SocialProfileContactSource
@@ -120638,7 +120614,6 @@ export namespace Prisma {
120638
120614
  }
120639
120615
 
120640
120616
  export type SocialProfileContactUncheckedUpdateManyInput = {
120641
- id?: IntFieldUpdateOperationsInput | number
120642
120617
  type?: StringFieldUpdateOperationsInput | string
120643
120618
  value?: StringFieldUpdateOperationsInput | string
120644
120619
  source?: EnumSocialProfileContactSourceFieldUpdateOperationsInput | $Enums.SocialProfileContactSource
@@ -127417,8 +127392,13 @@ export namespace Prisma {
127417
127392
  search: string
127418
127393
  }
127419
127394
 
127395
+ export type SocialProfileContactTypeValueSocialProfileIdCompoundUniqueInput = {
127396
+ type: string
127397
+ value: string
127398
+ socialProfileId: number
127399
+ }
127400
+
127420
127401
  export type SocialProfileContactCountOrderByAggregateInput = {
127421
- id?: SortOrder
127422
127402
  type?: SortOrder
127423
127403
  value?: SortOrder
127424
127404
  source?: SortOrder
@@ -127429,12 +127409,10 @@ export namespace Prisma {
127429
127409
  }
127430
127410
 
127431
127411
  export type SocialProfileContactAvgOrderByAggregateInput = {
127432
- id?: SortOrder
127433
127412
  socialProfileId?: SortOrder
127434
127413
  }
127435
127414
 
127436
127415
  export type SocialProfileContactMaxOrderByAggregateInput = {
127437
- id?: SortOrder
127438
127416
  type?: SortOrder
127439
127417
  value?: SortOrder
127440
127418
  source?: SortOrder
@@ -127444,7 +127422,6 @@ export namespace Prisma {
127444
127422
  }
127445
127423
 
127446
127424
  export type SocialProfileContactMinOrderByAggregateInput = {
127447
- id?: SortOrder
127448
127425
  type?: SortOrder
127449
127426
  value?: SortOrder
127450
127427
  source?: SortOrder
@@ -127454,7 +127431,6 @@ export namespace Prisma {
127454
127431
  }
127455
127432
 
127456
127433
  export type SocialProfileContactSumOrderByAggregateInput = {
127457
- id?: SortOrder
127458
127434
  socialProfileId?: SortOrder
127459
127435
  }
127460
127436
 
@@ -161966,7 +161942,6 @@ export namespace Prisma {
161966
161942
  }
161967
161943
 
161968
161944
  export type SocialProfileContactUncheckedCreateWithoutSocialProfileInput = {
161969
- id?: number
161970
161945
  type: string
161971
161946
  value: string
161972
161947
  source?: $Enums.SocialProfileContactSource
@@ -162175,7 +162150,6 @@ export namespace Prisma {
162175
162150
  AND?: SocialProfileContactScalarWhereInput | SocialProfileContactScalarWhereInput[]
162176
162151
  OR?: SocialProfileContactScalarWhereInput[]
162177
162152
  NOT?: SocialProfileContactScalarWhereInput | SocialProfileContactScalarWhereInput[]
162178
- id?: IntFilter<"SocialProfileContact"> | number
162179
162153
  type?: StringFilter<"SocialProfileContact"> | string
162180
162154
  value?: StringFilter<"SocialProfileContact"> | string
162181
162155
  source?: EnumSocialProfileContactSourceFilter<"SocialProfileContact"> | $Enums.SocialProfileContactSource
@@ -176779,7 +176753,6 @@ export namespace Prisma {
176779
176753
  }
176780
176754
 
176781
176755
  export type SocialProfileContactCreateManySocialProfileInput = {
176782
- id?: number
176783
176756
  type: string
176784
176757
  value: string
176785
176758
  source?: $Enums.SocialProfileContactSource
@@ -176891,7 +176864,6 @@ export namespace Prisma {
176891
176864
  }
176892
176865
 
176893
176866
  export type SocialProfileContactUncheckedUpdateWithoutSocialProfileInput = {
176894
- id?: IntFieldUpdateOperationsInput | number
176895
176867
  type?: StringFieldUpdateOperationsInput | string
176896
176868
  value?: StringFieldUpdateOperationsInput | string
176897
176869
  source?: EnumSocialProfileContactSourceFieldUpdateOperationsInput | $Enums.SocialProfileContactSource
@@ -176901,7 +176873,6 @@ export namespace Prisma {
176901
176873
  }
176902
176874
 
176903
176875
  export type SocialProfileContactUncheckedUpdateManyWithoutSocialProfileInput = {
176904
- id?: IntFieldUpdateOperationsInput | number
176905
176876
  type?: StringFieldUpdateOperationsInput | string
176906
176877
  value?: StringFieldUpdateOperationsInput | string
176907
176878
  source?: EnumSocialProfileContactSourceFieldUpdateOperationsInput | $Enums.SocialProfileContactSource