@creator.co/creatorco-prisma-client 1.0.15-alpha-fc80dfc → 1.0.15-alpha-2abb938
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 +5 -6
- package/index-browser.js +1 -2
- package/index.d.ts +2 -47
- package/index.js +5 -6
- package/package.json +1 -1
- package/schema.prisma +8 -1
package/index-browser.js
CHANGED
|
@@ -287,8 +287,7 @@ exports.Prisma.TwitterProfileScalarFieldEnum = {
|
|
|
287
287
|
exports.Prisma.BrandUserProfileScalarFieldEnum = {
|
|
288
288
|
id: 'id',
|
|
289
289
|
userId: 'userId',
|
|
290
|
-
brandId: 'brandId'
|
|
291
|
-
xpto: 'xpto'
|
|
290
|
+
brandId: 'brandId'
|
|
292
291
|
};
|
|
293
292
|
|
|
294
293
|
exports.Prisma.BrandScalarFieldEnum = {
|
package/index.d.ts
CHANGED
|
@@ -17618,35 +17618,30 @@ export namespace Prisma {
|
|
|
17618
17618
|
id: number | null
|
|
17619
17619
|
userId: number | null
|
|
17620
17620
|
brandId: number | null
|
|
17621
|
-
xpto: number | null
|
|
17622
17621
|
}
|
|
17623
17622
|
|
|
17624
17623
|
export type BrandUserProfileSumAggregateOutputType = {
|
|
17625
17624
|
id: number | null
|
|
17626
17625
|
userId: number | null
|
|
17627
17626
|
brandId: number | null
|
|
17628
|
-
xpto: number | null
|
|
17629
17627
|
}
|
|
17630
17628
|
|
|
17631
17629
|
export type BrandUserProfileMinAggregateOutputType = {
|
|
17632
17630
|
id: number | null
|
|
17633
17631
|
userId: number | null
|
|
17634
17632
|
brandId: number | null
|
|
17635
|
-
xpto: number | null
|
|
17636
17633
|
}
|
|
17637
17634
|
|
|
17638
17635
|
export type BrandUserProfileMaxAggregateOutputType = {
|
|
17639
17636
|
id: number | null
|
|
17640
17637
|
userId: number | null
|
|
17641
17638
|
brandId: number | null
|
|
17642
|
-
xpto: number | null
|
|
17643
17639
|
}
|
|
17644
17640
|
|
|
17645
17641
|
export type BrandUserProfileCountAggregateOutputType = {
|
|
17646
17642
|
id: number
|
|
17647
17643
|
userId: number
|
|
17648
17644
|
brandId: number
|
|
17649
|
-
xpto: number
|
|
17650
17645
|
_all: number
|
|
17651
17646
|
}
|
|
17652
17647
|
|
|
@@ -17655,35 +17650,30 @@ export namespace Prisma {
|
|
|
17655
17650
|
id?: true
|
|
17656
17651
|
userId?: true
|
|
17657
17652
|
brandId?: true
|
|
17658
|
-
xpto?: true
|
|
17659
17653
|
}
|
|
17660
17654
|
|
|
17661
17655
|
export type BrandUserProfileSumAggregateInputType = {
|
|
17662
17656
|
id?: true
|
|
17663
17657
|
userId?: true
|
|
17664
17658
|
brandId?: true
|
|
17665
|
-
xpto?: true
|
|
17666
17659
|
}
|
|
17667
17660
|
|
|
17668
17661
|
export type BrandUserProfileMinAggregateInputType = {
|
|
17669
17662
|
id?: true
|
|
17670
17663
|
userId?: true
|
|
17671
17664
|
brandId?: true
|
|
17672
|
-
xpto?: true
|
|
17673
17665
|
}
|
|
17674
17666
|
|
|
17675
17667
|
export type BrandUserProfileMaxAggregateInputType = {
|
|
17676
17668
|
id?: true
|
|
17677
17669
|
userId?: true
|
|
17678
17670
|
brandId?: true
|
|
17679
|
-
xpto?: true
|
|
17680
17671
|
}
|
|
17681
17672
|
|
|
17682
17673
|
export type BrandUserProfileCountAggregateInputType = {
|
|
17683
17674
|
id?: true
|
|
17684
17675
|
userId?: true
|
|
17685
17676
|
brandId?: true
|
|
17686
|
-
xpto?: true
|
|
17687
17677
|
_all?: true
|
|
17688
17678
|
}
|
|
17689
17679
|
|
|
@@ -17777,7 +17767,6 @@ export namespace Prisma {
|
|
|
17777
17767
|
id: number
|
|
17778
17768
|
userId: number
|
|
17779
17769
|
brandId: number
|
|
17780
|
-
xpto: number
|
|
17781
17770
|
_count: BrandUserProfileCountAggregateOutputType | null
|
|
17782
17771
|
_avg: BrandUserProfileAvgAggregateOutputType | null
|
|
17783
17772
|
_sum: BrandUserProfileSumAggregateOutputType | null
|
|
@@ -17803,7 +17792,6 @@ export namespace Prisma {
|
|
|
17803
17792
|
id?: boolean
|
|
17804
17793
|
userId?: boolean
|
|
17805
17794
|
brandId?: boolean
|
|
17806
|
-
xpto?: boolean
|
|
17807
17795
|
user?: boolean | UserDefaultArgs<ExtArgs>
|
|
17808
17796
|
brand?: boolean | BrandDefaultArgs<ExtArgs>
|
|
17809
17797
|
}, ExtArgs["result"]["brandUserProfile"]>
|
|
@@ -17812,7 +17800,6 @@ export namespace Prisma {
|
|
|
17812
17800
|
id?: boolean
|
|
17813
17801
|
userId?: boolean
|
|
17814
17802
|
brandId?: boolean
|
|
17815
|
-
xpto?: boolean
|
|
17816
17803
|
}
|
|
17817
17804
|
|
|
17818
17805
|
export type BrandUserProfileInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -17831,7 +17818,6 @@ export namespace Prisma {
|
|
|
17831
17818
|
id: number
|
|
17832
17819
|
userId: number
|
|
17833
17820
|
brandId: number
|
|
17834
|
-
xpto: number
|
|
17835
17821
|
}, ExtArgs["result"]["brandUserProfile"]>
|
|
17836
17822
|
composites: {}
|
|
17837
17823
|
}
|
|
@@ -18232,7 +18218,6 @@ export namespace Prisma {
|
|
|
18232
18218
|
readonly id: FieldRef<"BrandUserProfile", 'Int'>
|
|
18233
18219
|
readonly userId: FieldRef<"BrandUserProfile", 'Int'>
|
|
18234
18220
|
readonly brandId: FieldRef<"BrandUserProfile", 'Int'>
|
|
18235
|
-
readonly xpto: FieldRef<"BrandUserProfile", 'Int'>
|
|
18236
18221
|
}
|
|
18237
18222
|
|
|
18238
18223
|
|
|
@@ -70833,8 +70818,7 @@ export namespace Prisma {
|
|
|
70833
70818
|
export const BrandUserProfileScalarFieldEnum: {
|
|
70834
70819
|
id: 'id',
|
|
70835
70820
|
userId: 'userId',
|
|
70836
|
-
brandId: 'brandId'
|
|
70837
|
-
xpto: 'xpto'
|
|
70821
|
+
brandId: 'brandId'
|
|
70838
70822
|
};
|
|
70839
70823
|
|
|
70840
70824
|
export type BrandUserProfileScalarFieldEnum = (typeof BrandUserProfileScalarFieldEnum)[keyof typeof BrandUserProfileScalarFieldEnum]
|
|
@@ -73220,7 +73204,6 @@ export namespace Prisma {
|
|
|
73220
73204
|
id?: IntFilter<"BrandUserProfile"> | number
|
|
73221
73205
|
userId?: IntFilter<"BrandUserProfile"> | number
|
|
73222
73206
|
brandId?: IntFilter<"BrandUserProfile"> | number
|
|
73223
|
-
xpto?: IntFilter<"BrandUserProfile"> | number
|
|
73224
73207
|
user?: XOR<UserRelationFilter, UserWhereInput>
|
|
73225
73208
|
brand?: XOR<BrandRelationFilter, BrandWhereInput>
|
|
73226
73209
|
}
|
|
@@ -73229,7 +73212,6 @@ export namespace Prisma {
|
|
|
73229
73212
|
id?: SortOrder
|
|
73230
73213
|
userId?: SortOrder
|
|
73231
73214
|
brandId?: SortOrder
|
|
73232
|
-
xpto?: SortOrder
|
|
73233
73215
|
user?: UserOrderByWithRelationAndSearchRelevanceInput
|
|
73234
73216
|
brand?: BrandOrderByWithRelationAndSearchRelevanceInput
|
|
73235
73217
|
}
|
|
@@ -73241,7 +73223,6 @@ export namespace Prisma {
|
|
|
73241
73223
|
NOT?: BrandUserProfileWhereInput | BrandUserProfileWhereInput[]
|
|
73242
73224
|
userId?: IntFilter<"BrandUserProfile"> | number
|
|
73243
73225
|
brandId?: IntFilter<"BrandUserProfile"> | number
|
|
73244
|
-
xpto?: IntFilter<"BrandUserProfile"> | number
|
|
73245
73226
|
user?: XOR<UserRelationFilter, UserWhereInput>
|
|
73246
73227
|
brand?: XOR<BrandRelationFilter, BrandWhereInput>
|
|
73247
73228
|
}, "id">
|
|
@@ -73250,7 +73231,6 @@ export namespace Prisma {
|
|
|
73250
73231
|
id?: SortOrder
|
|
73251
73232
|
userId?: SortOrder
|
|
73252
73233
|
brandId?: SortOrder
|
|
73253
|
-
xpto?: SortOrder
|
|
73254
73234
|
_count?: BrandUserProfileCountOrderByAggregateInput
|
|
73255
73235
|
_avg?: BrandUserProfileAvgOrderByAggregateInput
|
|
73256
73236
|
_max?: BrandUserProfileMaxOrderByAggregateInput
|
|
@@ -73265,7 +73245,6 @@ export namespace Prisma {
|
|
|
73265
73245
|
id?: IntWithAggregatesFilter<"BrandUserProfile"> | number
|
|
73266
73246
|
userId?: IntWithAggregatesFilter<"BrandUserProfile"> | number
|
|
73267
73247
|
brandId?: IntWithAggregatesFilter<"BrandUserProfile"> | number
|
|
73268
|
-
xpto?: IntWithAggregatesFilter<"BrandUserProfile"> | number
|
|
73269
73248
|
}
|
|
73270
73249
|
|
|
73271
73250
|
export type BrandWhereInput = {
|
|
@@ -78470,7 +78449,6 @@ export namespace Prisma {
|
|
|
78470
78449
|
}
|
|
78471
78450
|
|
|
78472
78451
|
export type BrandUserProfileCreateInput = {
|
|
78473
|
-
xpto: number
|
|
78474
78452
|
user: UserCreateNestedOneWithoutBrandProfilesInput
|
|
78475
78453
|
brand: BrandCreateNestedOneWithoutBrandUsersInput
|
|
78476
78454
|
}
|
|
@@ -78479,11 +78457,9 @@ export namespace Prisma {
|
|
|
78479
78457
|
id?: number
|
|
78480
78458
|
userId: number
|
|
78481
78459
|
brandId: number
|
|
78482
|
-
xpto: number
|
|
78483
78460
|
}
|
|
78484
78461
|
|
|
78485
78462
|
export type BrandUserProfileUpdateInput = {
|
|
78486
|
-
xpto?: IntFieldUpdateOperationsInput | number
|
|
78487
78463
|
user?: UserUpdateOneRequiredWithoutBrandProfilesNestedInput
|
|
78488
78464
|
brand?: BrandUpdateOneRequiredWithoutBrandUsersNestedInput
|
|
78489
78465
|
}
|
|
@@ -78492,25 +78468,22 @@ export namespace Prisma {
|
|
|
78492
78468
|
id?: IntFieldUpdateOperationsInput | number
|
|
78493
78469
|
userId?: IntFieldUpdateOperationsInput | number
|
|
78494
78470
|
brandId?: IntFieldUpdateOperationsInput | number
|
|
78495
|
-
xpto?: IntFieldUpdateOperationsInput | number
|
|
78496
78471
|
}
|
|
78497
78472
|
|
|
78498
78473
|
export type BrandUserProfileCreateManyInput = {
|
|
78499
78474
|
id?: number
|
|
78500
78475
|
userId: number
|
|
78501
78476
|
brandId: number
|
|
78502
|
-
xpto: number
|
|
78503
78477
|
}
|
|
78504
78478
|
|
|
78505
78479
|
export type BrandUserProfileUpdateManyMutationInput = {
|
|
78506
|
-
|
|
78480
|
+
|
|
78507
78481
|
}
|
|
78508
78482
|
|
|
78509
78483
|
export type BrandUserProfileUncheckedUpdateManyInput = {
|
|
78510
78484
|
id?: IntFieldUpdateOperationsInput | number
|
|
78511
78485
|
userId?: IntFieldUpdateOperationsInput | number
|
|
78512
78486
|
brandId?: IntFieldUpdateOperationsInput | number
|
|
78513
|
-
xpto?: IntFieldUpdateOperationsInput | number
|
|
78514
78487
|
}
|
|
78515
78488
|
|
|
78516
78489
|
export type BrandCreateInput = {
|
|
@@ -83600,35 +83573,30 @@ export namespace Prisma {
|
|
|
83600
83573
|
id?: SortOrder
|
|
83601
83574
|
userId?: SortOrder
|
|
83602
83575
|
brandId?: SortOrder
|
|
83603
|
-
xpto?: SortOrder
|
|
83604
83576
|
}
|
|
83605
83577
|
|
|
83606
83578
|
export type BrandUserProfileAvgOrderByAggregateInput = {
|
|
83607
83579
|
id?: SortOrder
|
|
83608
83580
|
userId?: SortOrder
|
|
83609
83581
|
brandId?: SortOrder
|
|
83610
|
-
xpto?: SortOrder
|
|
83611
83582
|
}
|
|
83612
83583
|
|
|
83613
83584
|
export type BrandUserProfileMaxOrderByAggregateInput = {
|
|
83614
83585
|
id?: SortOrder
|
|
83615
83586
|
userId?: SortOrder
|
|
83616
83587
|
brandId?: SortOrder
|
|
83617
|
-
xpto?: SortOrder
|
|
83618
83588
|
}
|
|
83619
83589
|
|
|
83620
83590
|
export type BrandUserProfileMinOrderByAggregateInput = {
|
|
83621
83591
|
id?: SortOrder
|
|
83622
83592
|
userId?: SortOrder
|
|
83623
83593
|
brandId?: SortOrder
|
|
83624
|
-
xpto?: SortOrder
|
|
83625
83594
|
}
|
|
83626
83595
|
|
|
83627
83596
|
export type BrandUserProfileSumOrderByAggregateInput = {
|
|
83628
83597
|
id?: SortOrder
|
|
83629
83598
|
userId?: SortOrder
|
|
83630
83599
|
brandId?: SortOrder
|
|
83631
|
-
xpto?: SortOrder
|
|
83632
83600
|
}
|
|
83633
83601
|
|
|
83634
83602
|
export type CampaignListRelationFilter = {
|
|
@@ -92720,14 +92688,12 @@ export namespace Prisma {
|
|
|
92720
92688
|
}
|
|
92721
92689
|
|
|
92722
92690
|
export type BrandUserProfileCreateWithoutUserInput = {
|
|
92723
|
-
xpto: number
|
|
92724
92691
|
brand: BrandCreateNestedOneWithoutBrandUsersInput
|
|
92725
92692
|
}
|
|
92726
92693
|
|
|
92727
92694
|
export type BrandUserProfileUncheckedCreateWithoutUserInput = {
|
|
92728
92695
|
id?: number
|
|
92729
92696
|
brandId: number
|
|
92730
|
-
xpto: number
|
|
92731
92697
|
}
|
|
92732
92698
|
|
|
92733
92699
|
export type BrandUserProfileCreateOrConnectWithoutUserInput = {
|
|
@@ -93729,7 +93695,6 @@ export namespace Prisma {
|
|
|
93729
93695
|
id?: IntFilter<"BrandUserProfile"> | number
|
|
93730
93696
|
userId?: IntFilter<"BrandUserProfile"> | number
|
|
93731
93697
|
brandId?: IntFilter<"BrandUserProfile"> | number
|
|
93732
|
-
xpto?: IntFilter<"BrandUserProfile"> | number
|
|
93733
93698
|
}
|
|
93734
93699
|
|
|
93735
93700
|
export type OptInUpsertWithWhereUniqueWithoutUserInput = {
|
|
@@ -96776,14 +96741,12 @@ export namespace Prisma {
|
|
|
96776
96741
|
}
|
|
96777
96742
|
|
|
96778
96743
|
export type BrandUserProfileCreateWithoutBrandInput = {
|
|
96779
|
-
xpto: number
|
|
96780
96744
|
user: UserCreateNestedOneWithoutBrandProfilesInput
|
|
96781
96745
|
}
|
|
96782
96746
|
|
|
96783
96747
|
export type BrandUserProfileUncheckedCreateWithoutBrandInput = {
|
|
96784
96748
|
id?: number
|
|
96785
96749
|
userId: number
|
|
96786
|
-
xpto: number
|
|
96787
96750
|
}
|
|
96788
96751
|
|
|
96789
96752
|
export type BrandUserProfileCreateOrConnectWithoutBrandInput = {
|
|
@@ -111234,7 +111197,6 @@ export namespace Prisma {
|
|
|
111234
111197
|
export type BrandUserProfileCreateManyUserInput = {
|
|
111235
111198
|
id?: number
|
|
111236
111199
|
brandId: number
|
|
111237
|
-
xpto: number
|
|
111238
111200
|
}
|
|
111239
111201
|
|
|
111240
111202
|
export type OptInCreateManyUserInput = {
|
|
@@ -111504,20 +111466,17 @@ export namespace Prisma {
|
|
|
111504
111466
|
}
|
|
111505
111467
|
|
|
111506
111468
|
export type BrandUserProfileUpdateWithoutUserInput = {
|
|
111507
|
-
xpto?: IntFieldUpdateOperationsInput | number
|
|
111508
111469
|
brand?: BrandUpdateOneRequiredWithoutBrandUsersNestedInput
|
|
111509
111470
|
}
|
|
111510
111471
|
|
|
111511
111472
|
export type BrandUserProfileUncheckedUpdateWithoutUserInput = {
|
|
111512
111473
|
id?: IntFieldUpdateOperationsInput | number
|
|
111513
111474
|
brandId?: IntFieldUpdateOperationsInput | number
|
|
111514
|
-
xpto?: IntFieldUpdateOperationsInput | number
|
|
111515
111475
|
}
|
|
111516
111476
|
|
|
111517
111477
|
export type BrandUserProfileUncheckedUpdateManyWithoutUserInput = {
|
|
111518
111478
|
id?: IntFieldUpdateOperationsInput | number
|
|
111519
111479
|
brandId?: IntFieldUpdateOperationsInput | number
|
|
111520
|
-
xpto?: IntFieldUpdateOperationsInput | number
|
|
111521
111480
|
}
|
|
111522
111481
|
|
|
111523
111482
|
export type OptInUpdateWithoutUserInput = {
|
|
@@ -112095,7 +112054,6 @@ export namespace Prisma {
|
|
|
112095
112054
|
export type BrandUserProfileCreateManyBrandInput = {
|
|
112096
112055
|
id?: number
|
|
112097
112056
|
userId: number
|
|
112098
|
-
xpto: number
|
|
112099
112057
|
}
|
|
112100
112058
|
|
|
112101
112059
|
export type SearchContactsCreateManyBrandInput = {
|
|
@@ -112435,20 +112393,17 @@ export namespace Prisma {
|
|
|
112435
112393
|
}
|
|
112436
112394
|
|
|
112437
112395
|
export type BrandUserProfileUpdateWithoutBrandInput = {
|
|
112438
|
-
xpto?: IntFieldUpdateOperationsInput | number
|
|
112439
112396
|
user?: UserUpdateOneRequiredWithoutBrandProfilesNestedInput
|
|
112440
112397
|
}
|
|
112441
112398
|
|
|
112442
112399
|
export type BrandUserProfileUncheckedUpdateWithoutBrandInput = {
|
|
112443
112400
|
id?: IntFieldUpdateOperationsInput | number
|
|
112444
112401
|
userId?: IntFieldUpdateOperationsInput | number
|
|
112445
|
-
xpto?: IntFieldUpdateOperationsInput | number
|
|
112446
112402
|
}
|
|
112447
112403
|
|
|
112448
112404
|
export type BrandUserProfileUncheckedUpdateManyWithoutBrandInput = {
|
|
112449
112405
|
id?: IntFieldUpdateOperationsInput | number
|
|
112450
112406
|
userId?: IntFieldUpdateOperationsInput | number
|
|
112451
|
-
xpto?: IntFieldUpdateOperationsInput | number
|
|
112452
112407
|
}
|
|
112453
112408
|
|
|
112454
112409
|
export type SearchContactsUpdateWithoutBrandInput = {
|