@creator.co/creatorco-prisma-client 1.0.14 → 1.0.15
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 +8 -6
- package/index-browser.js +4 -2
- package/index.d.ts +127 -2
- package/index.js +8 -6
- package/package.json +1 -1
- package/schema.prisma +2 -0
package/index.d.ts
CHANGED
|
@@ -18588,6 +18588,7 @@ export namespace Prisma {
|
|
|
18588
18588
|
affiliateCommission: number | null
|
|
18589
18589
|
specialistId: number | null
|
|
18590
18590
|
parentBrandId: number | null
|
|
18591
|
+
searchName: string | null
|
|
18591
18592
|
}
|
|
18592
18593
|
|
|
18593
18594
|
export type BrandMaxAggregateOutputType = {
|
|
@@ -18603,6 +18604,7 @@ export namespace Prisma {
|
|
|
18603
18604
|
affiliateCommission: number | null
|
|
18604
18605
|
specialistId: number | null
|
|
18605
18606
|
parentBrandId: number | null
|
|
18607
|
+
searchName: string | null
|
|
18606
18608
|
}
|
|
18607
18609
|
|
|
18608
18610
|
export type BrandCountAggregateOutputType = {
|
|
@@ -18619,6 +18621,7 @@ export namespace Prisma {
|
|
|
18619
18621
|
extraData: number
|
|
18620
18622
|
specialistId: number
|
|
18621
18623
|
parentBrandId: number
|
|
18624
|
+
searchName: number
|
|
18622
18625
|
_all: number
|
|
18623
18626
|
}
|
|
18624
18627
|
|
|
@@ -18654,6 +18657,7 @@ export namespace Prisma {
|
|
|
18654
18657
|
affiliateCommission?: true
|
|
18655
18658
|
specialistId?: true
|
|
18656
18659
|
parentBrandId?: true
|
|
18660
|
+
searchName?: true
|
|
18657
18661
|
}
|
|
18658
18662
|
|
|
18659
18663
|
export type BrandMaxAggregateInputType = {
|
|
@@ -18669,6 +18673,7 @@ export namespace Prisma {
|
|
|
18669
18673
|
affiliateCommission?: true
|
|
18670
18674
|
specialistId?: true
|
|
18671
18675
|
parentBrandId?: true
|
|
18676
|
+
searchName?: true
|
|
18672
18677
|
}
|
|
18673
18678
|
|
|
18674
18679
|
export type BrandCountAggregateInputType = {
|
|
@@ -18685,6 +18690,7 @@ export namespace Prisma {
|
|
|
18685
18690
|
extraData?: true
|
|
18686
18691
|
specialistId?: true
|
|
18687
18692
|
parentBrandId?: true
|
|
18693
|
+
searchName?: true
|
|
18688
18694
|
_all?: true
|
|
18689
18695
|
}
|
|
18690
18696
|
|
|
@@ -18788,6 +18794,7 @@ export namespace Prisma {
|
|
|
18788
18794
|
extraData: JsonValue
|
|
18789
18795
|
specialistId: number | null
|
|
18790
18796
|
parentBrandId: number | null
|
|
18797
|
+
searchName: string | null
|
|
18791
18798
|
_count: BrandCountAggregateOutputType | null
|
|
18792
18799
|
_avg: BrandAvgAggregateOutputType | null
|
|
18793
18800
|
_sum: BrandSumAggregateOutputType | null
|
|
@@ -18823,6 +18830,7 @@ export namespace Prisma {
|
|
|
18823
18830
|
extraData?: boolean
|
|
18824
18831
|
specialistId?: boolean
|
|
18825
18832
|
parentBrandId?: boolean
|
|
18833
|
+
searchName?: boolean
|
|
18826
18834
|
dedicatedSpecialist?: boolean | Brand$dedicatedSpecialistArgs<ExtArgs>
|
|
18827
18835
|
instagramProfile?: boolean | Brand$instagramProfileArgs<ExtArgs>
|
|
18828
18836
|
youtubeProfile?: boolean | Brand$youtubeProfileArgs<ExtArgs>
|
|
@@ -18863,6 +18871,7 @@ export namespace Prisma {
|
|
|
18863
18871
|
extraData?: boolean
|
|
18864
18872
|
specialistId?: boolean
|
|
18865
18873
|
parentBrandId?: boolean
|
|
18874
|
+
searchName?: boolean
|
|
18866
18875
|
}
|
|
18867
18876
|
|
|
18868
18877
|
export type BrandInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
|
|
@@ -18934,6 +18943,7 @@ export namespace Prisma {
|
|
|
18934
18943
|
extraData: Prisma.JsonValue
|
|
18935
18944
|
specialistId: number | null
|
|
18936
18945
|
parentBrandId: number | null
|
|
18946
|
+
searchName: string | null
|
|
18937
18947
|
}, ExtArgs["result"]["brand"]>
|
|
18938
18948
|
composites: {}
|
|
18939
18949
|
}
|
|
@@ -19386,6 +19396,7 @@ export namespace Prisma {
|
|
|
19386
19396
|
readonly extraData: FieldRef<"Brand", 'Json'>
|
|
19387
19397
|
readonly specialistId: FieldRef<"Brand", 'Int'>
|
|
19388
19398
|
readonly parentBrandId: FieldRef<"Brand", 'Int'>
|
|
19399
|
+
readonly searchName: FieldRef<"Brand", 'String'>
|
|
19389
19400
|
}
|
|
19390
19401
|
|
|
19391
19402
|
|
|
@@ -70826,7 +70837,8 @@ export namespace Prisma {
|
|
|
70826
70837
|
affiliateCommission: 'affiliateCommission',
|
|
70827
70838
|
extraData: 'extraData',
|
|
70828
70839
|
specialistId: 'specialistId',
|
|
70829
|
-
parentBrandId: 'parentBrandId'
|
|
70840
|
+
parentBrandId: 'parentBrandId',
|
|
70841
|
+
searchName: 'searchName'
|
|
70830
70842
|
};
|
|
70831
70843
|
|
|
70832
70844
|
export type BrandScalarFieldEnum = (typeof BrandScalarFieldEnum)[keyof typeof BrandScalarFieldEnum]
|
|
@@ -71669,7 +71681,8 @@ export namespace Prisma {
|
|
|
71669
71681
|
description: 'description',
|
|
71670
71682
|
website: 'website',
|
|
71671
71683
|
logoUrl: 'logoUrl',
|
|
71672
|
-
affiliateBaseUrl: 'affiliateBaseUrl'
|
|
71684
|
+
affiliateBaseUrl: 'affiliateBaseUrl',
|
|
71685
|
+
searchName: 'searchName'
|
|
71673
71686
|
};
|
|
71674
71687
|
|
|
71675
71688
|
export type BrandOrderByRelevanceFieldEnum = (typeof BrandOrderByRelevanceFieldEnum)[keyof typeof BrandOrderByRelevanceFieldEnum]
|
|
@@ -73251,6 +73264,7 @@ export namespace Prisma {
|
|
|
73251
73264
|
extraData?: JsonFilter<"Brand">
|
|
73252
73265
|
specialistId?: IntNullableFilter<"Brand"> | number | null
|
|
73253
73266
|
parentBrandId?: IntNullableFilter<"Brand"> | number | null
|
|
73267
|
+
searchName?: StringNullableFilter<"Brand"> | string | null
|
|
73254
73268
|
dedicatedSpecialist?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
73255
73269
|
instagramProfile?: XOR<InstagramProfileNullableRelationFilter, InstagramProfileWhereInput> | null
|
|
73256
73270
|
youtubeProfile?: XOR<YoutubeProfileNullableRelationFilter, YoutubeProfileWhereInput> | null
|
|
@@ -73290,6 +73304,7 @@ export namespace Prisma {
|
|
|
73290
73304
|
extraData?: SortOrder
|
|
73291
73305
|
specialistId?: SortOrderInput | SortOrder
|
|
73292
73306
|
parentBrandId?: SortOrderInput | SortOrder
|
|
73307
|
+
searchName?: SortOrderInput | SortOrder
|
|
73293
73308
|
dedicatedSpecialist?: UserOrderByWithRelationAndSearchRelevanceInput
|
|
73294
73309
|
instagramProfile?: InstagramProfileOrderByWithRelationAndSearchRelevanceInput
|
|
73295
73310
|
youtubeProfile?: YoutubeProfileOrderByWithRelationAndSearchRelevanceInput
|
|
@@ -73333,6 +73348,7 @@ export namespace Prisma {
|
|
|
73333
73348
|
extraData?: JsonFilter<"Brand">
|
|
73334
73349
|
specialistId?: IntNullableFilter<"Brand"> | number | null
|
|
73335
73350
|
parentBrandId?: IntNullableFilter<"Brand"> | number | null
|
|
73351
|
+
searchName?: StringNullableFilter<"Brand"> | string | null
|
|
73336
73352
|
dedicatedSpecialist?: XOR<UserNullableRelationFilter, UserWhereInput> | null
|
|
73337
73353
|
instagramProfile?: XOR<InstagramProfileNullableRelationFilter, InstagramProfileWhereInput> | null
|
|
73338
73354
|
youtubeProfile?: XOR<YoutubeProfileNullableRelationFilter, YoutubeProfileWhereInput> | null
|
|
@@ -73372,6 +73388,7 @@ export namespace Prisma {
|
|
|
73372
73388
|
extraData?: SortOrder
|
|
73373
73389
|
specialistId?: SortOrderInput | SortOrder
|
|
73374
73390
|
parentBrandId?: SortOrderInput | SortOrder
|
|
73391
|
+
searchName?: SortOrderInput | SortOrder
|
|
73375
73392
|
_count?: BrandCountOrderByAggregateInput
|
|
73376
73393
|
_avg?: BrandAvgOrderByAggregateInput
|
|
73377
73394
|
_max?: BrandMaxOrderByAggregateInput
|
|
@@ -73396,6 +73413,7 @@ export namespace Prisma {
|
|
|
73396
73413
|
extraData?: JsonWithAggregatesFilter<"Brand">
|
|
73397
73414
|
specialistId?: IntNullableWithAggregatesFilter<"Brand"> | number | null
|
|
73398
73415
|
parentBrandId?: IntNullableWithAggregatesFilter<"Brand"> | number | null
|
|
73416
|
+
searchName?: StringNullableWithAggregatesFilter<"Brand"> | string | null
|
|
73399
73417
|
}
|
|
73400
73418
|
|
|
73401
73419
|
export type SearchContactsWhereInput = {
|
|
@@ -78479,6 +78497,7 @@ export namespace Prisma {
|
|
|
78479
78497
|
affiliateBaseUrl?: string | null
|
|
78480
78498
|
affiliateCommission?: number | null
|
|
78481
78499
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
78500
|
+
searchName?: string | null
|
|
78482
78501
|
dedicatedSpecialist?: UserCreateNestedOneWithoutAssignedBrandsInput
|
|
78483
78502
|
instagramProfile?: InstagramProfileCreateNestedOneWithoutBrandInput
|
|
78484
78503
|
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutBrandInput
|
|
@@ -78518,6 +78537,7 @@ export namespace Prisma {
|
|
|
78518
78537
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
78519
78538
|
specialistId?: number | null
|
|
78520
78539
|
parentBrandId?: number | null
|
|
78540
|
+
searchName?: string | null
|
|
78521
78541
|
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
78522
78542
|
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
78523
78543
|
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
@@ -78552,6 +78572,7 @@ export namespace Prisma {
|
|
|
78552
78572
|
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
78553
78573
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
78554
78574
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
78575
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
78555
78576
|
dedicatedSpecialist?: UserUpdateOneWithoutAssignedBrandsNestedInput
|
|
78556
78577
|
instagramProfile?: InstagramProfileUpdateOneWithoutBrandNestedInput
|
|
78557
78578
|
youtubeProfile?: YoutubeProfileUpdateOneWithoutBrandNestedInput
|
|
@@ -78591,6 +78612,7 @@ export namespace Prisma {
|
|
|
78591
78612
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
78592
78613
|
specialistId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
78593
78614
|
parentBrandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
78615
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
78594
78616
|
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
78595
78617
|
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
78596
78618
|
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
@@ -78628,6 +78650,7 @@ export namespace Prisma {
|
|
|
78628
78650
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
78629
78651
|
specialistId?: number | null
|
|
78630
78652
|
parentBrandId?: number | null
|
|
78653
|
+
searchName?: string | null
|
|
78631
78654
|
}
|
|
78632
78655
|
|
|
78633
78656
|
export type BrandUpdateManyMutationInput = {
|
|
@@ -78641,6 +78664,7 @@ export namespace Prisma {
|
|
|
78641
78664
|
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
78642
78665
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
78643
78666
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
78667
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
78644
78668
|
}
|
|
78645
78669
|
|
|
78646
78670
|
export type BrandUncheckedUpdateManyInput = {
|
|
@@ -78657,6 +78681,7 @@ export namespace Prisma {
|
|
|
78657
78681
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
78658
78682
|
specialistId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
78659
78683
|
parentBrandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
78684
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
78660
78685
|
}
|
|
78661
78686
|
|
|
78662
78687
|
export type SearchContactsCreateInput = {
|
|
@@ -83734,6 +83759,7 @@ export namespace Prisma {
|
|
|
83734
83759
|
extraData?: SortOrder
|
|
83735
83760
|
specialistId?: SortOrder
|
|
83736
83761
|
parentBrandId?: SortOrder
|
|
83762
|
+
searchName?: SortOrder
|
|
83737
83763
|
}
|
|
83738
83764
|
|
|
83739
83765
|
export type BrandAvgOrderByAggregateInput = {
|
|
@@ -83758,6 +83784,7 @@ export namespace Prisma {
|
|
|
83758
83784
|
affiliateCommission?: SortOrder
|
|
83759
83785
|
specialistId?: SortOrder
|
|
83760
83786
|
parentBrandId?: SortOrder
|
|
83787
|
+
searchName?: SortOrder
|
|
83761
83788
|
}
|
|
83762
83789
|
|
|
83763
83790
|
export type BrandMinOrderByAggregateInput = {
|
|
@@ -83773,6 +83800,7 @@ export namespace Prisma {
|
|
|
83773
83800
|
affiliateCommission?: SortOrder
|
|
83774
83801
|
specialistId?: SortOrder
|
|
83775
83802
|
parentBrandId?: SortOrder
|
|
83803
|
+
searchName?: SortOrder
|
|
83776
83804
|
}
|
|
83777
83805
|
|
|
83778
83806
|
export type BrandSumOrderByAggregateInput = {
|
|
@@ -92744,6 +92772,7 @@ export namespace Prisma {
|
|
|
92744
92772
|
affiliateBaseUrl?: string | null
|
|
92745
92773
|
affiliateCommission?: number | null
|
|
92746
92774
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
92775
|
+
searchName?: string | null
|
|
92747
92776
|
instagramProfile?: InstagramProfileCreateNestedOneWithoutBrandInput
|
|
92748
92777
|
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutBrandInput
|
|
92749
92778
|
tiktokProfile?: TiktokProfileCreateNestedOneWithoutBrandInput
|
|
@@ -92781,6 +92810,7 @@ export namespace Prisma {
|
|
|
92781
92810
|
affiliateCommission?: number | null
|
|
92782
92811
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
92783
92812
|
parentBrandId?: number | null
|
|
92813
|
+
searchName?: string | null
|
|
92784
92814
|
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
92785
92815
|
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
92786
92816
|
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
@@ -93739,6 +93769,7 @@ export namespace Prisma {
|
|
|
93739
93769
|
extraData?: JsonFilter<"Brand">
|
|
93740
93770
|
specialistId?: IntNullableFilter<"Brand"> | number | null
|
|
93741
93771
|
parentBrandId?: IntNullableFilter<"Brand"> | number | null
|
|
93772
|
+
searchName?: StringNullableFilter<"Brand"> | string | null
|
|
93742
93773
|
}
|
|
93743
93774
|
|
|
93744
93775
|
export type MessageUpsertWithWhereUniqueWithoutUserInput = {
|
|
@@ -94511,6 +94542,7 @@ export namespace Prisma {
|
|
|
94511
94542
|
affiliateBaseUrl?: string | null
|
|
94512
94543
|
affiliateCommission?: number | null
|
|
94513
94544
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
94545
|
+
searchName?: string | null
|
|
94514
94546
|
dedicatedSpecialist?: UserCreateNestedOneWithoutAssignedBrandsInput
|
|
94515
94547
|
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutBrandInput
|
|
94516
94548
|
tiktokProfile?: TiktokProfileCreateNestedOneWithoutBrandInput
|
|
@@ -94549,6 +94581,7 @@ export namespace Prisma {
|
|
|
94549
94581
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
94550
94582
|
specialistId?: number | null
|
|
94551
94583
|
parentBrandId?: number | null
|
|
94584
|
+
searchName?: string | null
|
|
94552
94585
|
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
94553
94586
|
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
94554
94587
|
campaigns?: CampaignUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -94690,6 +94723,7 @@ export namespace Prisma {
|
|
|
94690
94723
|
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94691
94724
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
94692
94725
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
94726
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94693
94727
|
dedicatedSpecialist?: UserUpdateOneWithoutAssignedBrandsNestedInput
|
|
94694
94728
|
youtubeProfile?: YoutubeProfileUpdateOneWithoutBrandNestedInput
|
|
94695
94729
|
tiktokProfile?: TiktokProfileUpdateOneWithoutBrandNestedInput
|
|
@@ -94728,6 +94762,7 @@ export namespace Prisma {
|
|
|
94728
94762
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
94729
94763
|
specialistId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
94730
94764
|
parentBrandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
94765
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
94731
94766
|
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
94732
94767
|
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
94733
94768
|
campaigns?: CampaignUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -94847,6 +94882,7 @@ export namespace Prisma {
|
|
|
94847
94882
|
affiliateBaseUrl?: string | null
|
|
94848
94883
|
affiliateCommission?: number | null
|
|
94849
94884
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
94885
|
+
searchName?: string | null
|
|
94850
94886
|
dedicatedSpecialist?: UserCreateNestedOneWithoutAssignedBrandsInput
|
|
94851
94887
|
instagramProfile?: InstagramProfileCreateNestedOneWithoutBrandInput
|
|
94852
94888
|
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutBrandInput
|
|
@@ -94885,6 +94921,7 @@ export namespace Prisma {
|
|
|
94885
94921
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
94886
94922
|
specialistId?: number | null
|
|
94887
94923
|
parentBrandId?: number | null
|
|
94924
|
+
searchName?: string | null
|
|
94888
94925
|
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
94889
94926
|
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
94890
94927
|
campaigns?: CampaignUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -95026,6 +95063,7 @@ export namespace Prisma {
|
|
|
95026
95063
|
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95027
95064
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
95028
95065
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
95066
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95029
95067
|
dedicatedSpecialist?: UserUpdateOneWithoutAssignedBrandsNestedInput
|
|
95030
95068
|
instagramProfile?: InstagramProfileUpdateOneWithoutBrandNestedInput
|
|
95031
95069
|
youtubeProfile?: YoutubeProfileUpdateOneWithoutBrandNestedInput
|
|
@@ -95064,6 +95102,7 @@ export namespace Prisma {
|
|
|
95064
95102
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
95065
95103
|
specialistId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
95066
95104
|
parentBrandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
95105
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95067
95106
|
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
95068
95107
|
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
95069
95108
|
campaigns?: CampaignUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -95183,6 +95222,7 @@ export namespace Prisma {
|
|
|
95183
95222
|
affiliateBaseUrl?: string | null
|
|
95184
95223
|
affiliateCommission?: number | null
|
|
95185
95224
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
95225
|
+
searchName?: string | null
|
|
95186
95226
|
dedicatedSpecialist?: UserCreateNestedOneWithoutAssignedBrandsInput
|
|
95187
95227
|
instagramProfile?: InstagramProfileCreateNestedOneWithoutBrandInput
|
|
95188
95228
|
tiktokProfile?: TiktokProfileCreateNestedOneWithoutBrandInput
|
|
@@ -95221,6 +95261,7 @@ export namespace Prisma {
|
|
|
95221
95261
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
95222
95262
|
specialistId?: number | null
|
|
95223
95263
|
parentBrandId?: number | null
|
|
95264
|
+
searchName?: string | null
|
|
95224
95265
|
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
95225
95266
|
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
95226
95267
|
campaigns?: CampaignUncheckedCreateNestedManyWithoutBrandInput
|
|
@@ -95362,6 +95403,7 @@ export namespace Prisma {
|
|
|
95362
95403
|
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95363
95404
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
95364
95405
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
95406
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95365
95407
|
dedicatedSpecialist?: UserUpdateOneWithoutAssignedBrandsNestedInput
|
|
95366
95408
|
instagramProfile?: InstagramProfileUpdateOneWithoutBrandNestedInput
|
|
95367
95409
|
tiktokProfile?: TiktokProfileUpdateOneWithoutBrandNestedInput
|
|
@@ -95400,6 +95442,7 @@ export namespace Prisma {
|
|
|
95400
95442
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
95401
95443
|
specialistId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
95402
95444
|
parentBrandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
95445
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
95403
95446
|
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
95404
95447
|
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
95405
95448
|
campaigns?: CampaignUncheckedUpdateManyWithoutBrandNestedInput
|
|
@@ -96053,6 +96096,7 @@ export namespace Prisma {
|
|
|
96053
96096
|
affiliateBaseUrl?: string | null
|
|
96054
96097
|
affiliateCommission?: number | null
|
|
96055
96098
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
96099
|
+
searchName?: string | null
|
|
96056
96100
|
dedicatedSpecialist?: UserCreateNestedOneWithoutAssignedBrandsInput
|
|
96057
96101
|
instagramProfile?: InstagramProfileCreateNestedOneWithoutBrandInput
|
|
96058
96102
|
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutBrandInput
|
|
@@ -96091,6 +96135,7 @@ export namespace Prisma {
|
|
|
96091
96135
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
96092
96136
|
specialistId?: number | null
|
|
96093
96137
|
parentBrandId?: number | null
|
|
96138
|
+
searchName?: string | null
|
|
96094
96139
|
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
96095
96140
|
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
96096
96141
|
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
@@ -96232,6 +96277,7 @@ export namespace Prisma {
|
|
|
96232
96277
|
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96233
96278
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
96234
96279
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
96280
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96235
96281
|
dedicatedSpecialist?: UserUpdateOneWithoutAssignedBrandsNestedInput
|
|
96236
96282
|
instagramProfile?: InstagramProfileUpdateOneWithoutBrandNestedInput
|
|
96237
96283
|
youtubeProfile?: YoutubeProfileUpdateOneWithoutBrandNestedInput
|
|
@@ -96270,6 +96316,7 @@ export namespace Prisma {
|
|
|
96270
96316
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
96271
96317
|
specialistId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
96272
96318
|
parentBrandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
96319
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
96273
96320
|
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
96274
96321
|
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
96275
96322
|
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
@@ -97155,6 +97202,7 @@ export namespace Prisma {
|
|
|
97155
97202
|
affiliateBaseUrl?: string | null
|
|
97156
97203
|
affiliateCommission?: number | null
|
|
97157
97204
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
97205
|
+
searchName?: string | null
|
|
97158
97206
|
dedicatedSpecialist?: UserCreateNestedOneWithoutAssignedBrandsInput
|
|
97159
97207
|
instagramProfile?: InstagramProfileCreateNestedOneWithoutBrandInput
|
|
97160
97208
|
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutBrandInput
|
|
@@ -97193,6 +97241,7 @@ export namespace Prisma {
|
|
|
97193
97241
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
97194
97242
|
specialistId?: number | null
|
|
97195
97243
|
parentBrandId?: number | null
|
|
97244
|
+
searchName?: string | null
|
|
97196
97245
|
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
97197
97246
|
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
97198
97247
|
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
@@ -97231,6 +97280,7 @@ export namespace Prisma {
|
|
|
97231
97280
|
affiliateBaseUrl?: string | null
|
|
97232
97281
|
affiliateCommission?: number | null
|
|
97233
97282
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
97283
|
+
searchName?: string | null
|
|
97234
97284
|
dedicatedSpecialist?: UserCreateNestedOneWithoutAssignedBrandsInput
|
|
97235
97285
|
instagramProfile?: InstagramProfileCreateNestedOneWithoutBrandInput
|
|
97236
97286
|
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutBrandInput
|
|
@@ -97268,6 +97318,7 @@ export namespace Prisma {
|
|
|
97268
97318
|
affiliateCommission?: number | null
|
|
97269
97319
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
97270
97320
|
specialistId?: number | null
|
|
97321
|
+
searchName?: string | null
|
|
97271
97322
|
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
97272
97323
|
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
97273
97324
|
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
@@ -98101,6 +98152,7 @@ export namespace Prisma {
|
|
|
98101
98152
|
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98102
98153
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
98103
98154
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
98155
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98104
98156
|
dedicatedSpecialist?: UserUpdateOneWithoutAssignedBrandsNestedInput
|
|
98105
98157
|
instagramProfile?: InstagramProfileUpdateOneWithoutBrandNestedInput
|
|
98106
98158
|
youtubeProfile?: YoutubeProfileUpdateOneWithoutBrandNestedInput
|
|
@@ -98139,6 +98191,7 @@ export namespace Prisma {
|
|
|
98139
98191
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
98140
98192
|
specialistId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
98141
98193
|
parentBrandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
98194
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98142
98195
|
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
98143
98196
|
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
98144
98197
|
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
@@ -98240,6 +98293,7 @@ export namespace Prisma {
|
|
|
98240
98293
|
affiliateBaseUrl?: string | null
|
|
98241
98294
|
affiliateCommission?: number | null
|
|
98242
98295
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
98296
|
+
searchName?: string | null
|
|
98243
98297
|
dedicatedSpecialist?: UserCreateNestedOneWithoutAssignedBrandsInput
|
|
98244
98298
|
instagramProfile?: InstagramProfileCreateNestedOneWithoutBrandInput
|
|
98245
98299
|
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutBrandInput
|
|
@@ -98278,6 +98332,7 @@ export namespace Prisma {
|
|
|
98278
98332
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
98279
98333
|
specialistId?: number | null
|
|
98280
98334
|
parentBrandId?: number | null
|
|
98335
|
+
searchName?: string | null
|
|
98281
98336
|
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
98282
98337
|
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
98283
98338
|
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
@@ -98391,6 +98446,7 @@ export namespace Prisma {
|
|
|
98391
98446
|
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98392
98447
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
98393
98448
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
98449
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98394
98450
|
dedicatedSpecialist?: UserUpdateOneWithoutAssignedBrandsNestedInput
|
|
98395
98451
|
instagramProfile?: InstagramProfileUpdateOneWithoutBrandNestedInput
|
|
98396
98452
|
youtubeProfile?: YoutubeProfileUpdateOneWithoutBrandNestedInput
|
|
@@ -98429,6 +98485,7 @@ export namespace Prisma {
|
|
|
98429
98485
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
98430
98486
|
specialistId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
98431
98487
|
parentBrandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
98488
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98432
98489
|
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
98433
98490
|
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
98434
98491
|
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
@@ -98514,6 +98571,7 @@ export namespace Prisma {
|
|
|
98514
98571
|
affiliateBaseUrl?: string | null
|
|
98515
98572
|
affiliateCommission?: number | null
|
|
98516
98573
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
98574
|
+
searchName?: string | null
|
|
98517
98575
|
dedicatedSpecialist?: UserCreateNestedOneWithoutAssignedBrandsInput
|
|
98518
98576
|
instagramProfile?: InstagramProfileCreateNestedOneWithoutBrandInput
|
|
98519
98577
|
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutBrandInput
|
|
@@ -98552,6 +98610,7 @@ export namespace Prisma {
|
|
|
98552
98610
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
98553
98611
|
specialistId?: number | null
|
|
98554
98612
|
parentBrandId?: number | null
|
|
98613
|
+
searchName?: string | null
|
|
98555
98614
|
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
98556
98615
|
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
98557
98616
|
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
@@ -98665,6 +98724,7 @@ export namespace Prisma {
|
|
|
98665
98724
|
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98666
98725
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
98667
98726
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
98727
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98668
98728
|
dedicatedSpecialist?: UserUpdateOneWithoutAssignedBrandsNestedInput
|
|
98669
98729
|
instagramProfile?: InstagramProfileUpdateOneWithoutBrandNestedInput
|
|
98670
98730
|
youtubeProfile?: YoutubeProfileUpdateOneWithoutBrandNestedInput
|
|
@@ -98703,6 +98763,7 @@ export namespace Prisma {
|
|
|
98703
98763
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
98704
98764
|
specialistId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
98705
98765
|
parentBrandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
98766
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98706
98767
|
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
98707
98768
|
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
98708
98769
|
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
@@ -98736,6 +98797,7 @@ export namespace Prisma {
|
|
|
98736
98797
|
affiliateBaseUrl?: string | null
|
|
98737
98798
|
affiliateCommission?: number | null
|
|
98738
98799
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
98800
|
+
searchName?: string | null
|
|
98739
98801
|
dedicatedSpecialist?: UserCreateNestedOneWithoutAssignedBrandsInput
|
|
98740
98802
|
instagramProfile?: InstagramProfileCreateNestedOneWithoutBrandInput
|
|
98741
98803
|
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutBrandInput
|
|
@@ -98774,6 +98836,7 @@ export namespace Prisma {
|
|
|
98774
98836
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
98775
98837
|
specialistId?: number | null
|
|
98776
98838
|
parentBrandId?: number | null
|
|
98839
|
+
searchName?: string | null
|
|
98777
98840
|
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
98778
98841
|
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
98779
98842
|
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
@@ -98844,6 +98907,7 @@ export namespace Prisma {
|
|
|
98844
98907
|
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98845
98908
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
98846
98909
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
98910
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98847
98911
|
dedicatedSpecialist?: UserUpdateOneWithoutAssignedBrandsNestedInput
|
|
98848
98912
|
instagramProfile?: InstagramProfileUpdateOneWithoutBrandNestedInput
|
|
98849
98913
|
youtubeProfile?: YoutubeProfileUpdateOneWithoutBrandNestedInput
|
|
@@ -98882,6 +98946,7 @@ export namespace Prisma {
|
|
|
98882
98946
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
98883
98947
|
specialistId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
98884
98948
|
parentBrandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
98949
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
98885
98950
|
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
98886
98951
|
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
98887
98952
|
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
@@ -98941,6 +99006,7 @@ export namespace Prisma {
|
|
|
98941
99006
|
affiliateBaseUrl?: string | null
|
|
98942
99007
|
affiliateCommission?: number | null
|
|
98943
99008
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
99009
|
+
searchName?: string | null
|
|
98944
99010
|
dedicatedSpecialist?: UserCreateNestedOneWithoutAssignedBrandsInput
|
|
98945
99011
|
instagramProfile?: InstagramProfileCreateNestedOneWithoutBrandInput
|
|
98946
99012
|
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutBrandInput
|
|
@@ -98979,6 +99045,7 @@ export namespace Prisma {
|
|
|
98979
99045
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
98980
99046
|
specialistId?: number | null
|
|
98981
99047
|
parentBrandId?: number | null
|
|
99048
|
+
searchName?: string | null
|
|
98982
99049
|
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
98983
99050
|
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
98984
99051
|
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
@@ -99048,6 +99115,7 @@ export namespace Prisma {
|
|
|
99048
99115
|
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99049
99116
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
99050
99117
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
99118
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99051
99119
|
dedicatedSpecialist?: UserUpdateOneWithoutAssignedBrandsNestedInput
|
|
99052
99120
|
instagramProfile?: InstagramProfileUpdateOneWithoutBrandNestedInput
|
|
99053
99121
|
youtubeProfile?: YoutubeProfileUpdateOneWithoutBrandNestedInput
|
|
@@ -99086,6 +99154,7 @@ export namespace Prisma {
|
|
|
99086
99154
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
99087
99155
|
specialistId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
99088
99156
|
parentBrandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
99157
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
99089
99158
|
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
99090
99159
|
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
99091
99160
|
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
@@ -99979,6 +100048,7 @@ export namespace Prisma {
|
|
|
99979
100048
|
affiliateBaseUrl?: string | null
|
|
99980
100049
|
affiliateCommission?: number | null
|
|
99981
100050
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
100051
|
+
searchName?: string | null
|
|
99982
100052
|
dedicatedSpecialist?: UserCreateNestedOneWithoutAssignedBrandsInput
|
|
99983
100053
|
instagramProfile?: InstagramProfileCreateNestedOneWithoutBrandInput
|
|
99984
100054
|
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutBrandInput
|
|
@@ -100017,6 +100087,7 @@ export namespace Prisma {
|
|
|
100017
100087
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
100018
100088
|
specialistId?: number | null
|
|
100019
100089
|
parentBrandId?: number | null
|
|
100090
|
+
searchName?: string | null
|
|
100020
100091
|
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
100021
100092
|
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
100022
100093
|
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
@@ -100351,6 +100422,7 @@ export namespace Prisma {
|
|
|
100351
100422
|
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
100352
100423
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
100353
100424
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
100425
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
100354
100426
|
dedicatedSpecialist?: UserUpdateOneWithoutAssignedBrandsNestedInput
|
|
100355
100427
|
instagramProfile?: InstagramProfileUpdateOneWithoutBrandNestedInput
|
|
100356
100428
|
youtubeProfile?: YoutubeProfileUpdateOneWithoutBrandNestedInput
|
|
@@ -100389,6 +100461,7 @@ export namespace Prisma {
|
|
|
100389
100461
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
100390
100462
|
specialistId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
100391
100463
|
parentBrandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
100464
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
100392
100465
|
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
100393
100466
|
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
100394
100467
|
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
@@ -104969,6 +105042,7 @@ export namespace Prisma {
|
|
|
104969
105042
|
affiliateBaseUrl?: string | null
|
|
104970
105043
|
affiliateCommission?: number | null
|
|
104971
105044
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
105045
|
+
searchName?: string | null
|
|
104972
105046
|
dedicatedSpecialist?: UserCreateNestedOneWithoutAssignedBrandsInput
|
|
104973
105047
|
instagramProfile?: InstagramProfileCreateNestedOneWithoutBrandInput
|
|
104974
105048
|
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutBrandInput
|
|
@@ -105007,6 +105081,7 @@ export namespace Prisma {
|
|
|
105007
105081
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
105008
105082
|
specialistId?: number | null
|
|
105009
105083
|
parentBrandId?: number | null
|
|
105084
|
+
searchName?: string | null
|
|
105010
105085
|
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
105011
105086
|
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
105012
105087
|
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
@@ -105206,6 +105281,7 @@ export namespace Prisma {
|
|
|
105206
105281
|
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
105207
105282
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
105208
105283
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
105284
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
105209
105285
|
dedicatedSpecialist?: UserUpdateOneWithoutAssignedBrandsNestedInput
|
|
105210
105286
|
instagramProfile?: InstagramProfileUpdateOneWithoutBrandNestedInput
|
|
105211
105287
|
youtubeProfile?: YoutubeProfileUpdateOneWithoutBrandNestedInput
|
|
@@ -105244,6 +105320,7 @@ export namespace Prisma {
|
|
|
105244
105320
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
105245
105321
|
specialistId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
105246
105322
|
parentBrandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
105323
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
105247
105324
|
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
105248
105325
|
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
105249
105326
|
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
@@ -105470,6 +105547,7 @@ export namespace Prisma {
|
|
|
105470
105547
|
affiliateBaseUrl?: string | null
|
|
105471
105548
|
affiliateCommission?: number | null
|
|
105472
105549
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
105550
|
+
searchName?: string | null
|
|
105473
105551
|
dedicatedSpecialist?: UserCreateNestedOneWithoutAssignedBrandsInput
|
|
105474
105552
|
instagramProfile?: InstagramProfileCreateNestedOneWithoutBrandInput
|
|
105475
105553
|
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutBrandInput
|
|
@@ -105508,6 +105586,7 @@ export namespace Prisma {
|
|
|
105508
105586
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
105509
105587
|
specialistId?: number | null
|
|
105510
105588
|
parentBrandId?: number | null
|
|
105589
|
+
searchName?: string | null
|
|
105511
105590
|
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
105512
105591
|
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
105513
105592
|
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
@@ -105573,6 +105652,7 @@ export namespace Prisma {
|
|
|
105573
105652
|
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
105574
105653
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
105575
105654
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
105655
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
105576
105656
|
dedicatedSpecialist?: UserUpdateOneWithoutAssignedBrandsNestedInput
|
|
105577
105657
|
instagramProfile?: InstagramProfileUpdateOneWithoutBrandNestedInput
|
|
105578
105658
|
youtubeProfile?: YoutubeProfileUpdateOneWithoutBrandNestedInput
|
|
@@ -105611,6 +105691,7 @@ export namespace Prisma {
|
|
|
105611
105691
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
105612
105692
|
specialistId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
105613
105693
|
parentBrandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
105694
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
105614
105695
|
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
105615
105696
|
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
105616
105697
|
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
@@ -106085,6 +106166,7 @@ export namespace Prisma {
|
|
|
106085
106166
|
affiliateBaseUrl?: string | null
|
|
106086
106167
|
affiliateCommission?: number | null
|
|
106087
106168
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
106169
|
+
searchName?: string | null
|
|
106088
106170
|
dedicatedSpecialist?: UserCreateNestedOneWithoutAssignedBrandsInput
|
|
106089
106171
|
instagramProfile?: InstagramProfileCreateNestedOneWithoutBrandInput
|
|
106090
106172
|
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutBrandInput
|
|
@@ -106123,6 +106205,7 @@ export namespace Prisma {
|
|
|
106123
106205
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
106124
106206
|
specialistId?: number | null
|
|
106125
106207
|
parentBrandId?: number | null
|
|
106208
|
+
searchName?: string | null
|
|
106126
106209
|
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
106127
106210
|
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
106128
106211
|
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
@@ -106172,6 +106255,7 @@ export namespace Prisma {
|
|
|
106172
106255
|
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106173
106256
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
106174
106257
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
106258
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106175
106259
|
dedicatedSpecialist?: UserUpdateOneWithoutAssignedBrandsNestedInput
|
|
106176
106260
|
instagramProfile?: InstagramProfileUpdateOneWithoutBrandNestedInput
|
|
106177
106261
|
youtubeProfile?: YoutubeProfileUpdateOneWithoutBrandNestedInput
|
|
@@ -106210,6 +106294,7 @@ export namespace Prisma {
|
|
|
106210
106294
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
106211
106295
|
specialistId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
106212
106296
|
parentBrandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
106297
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106213
106298
|
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
106214
106299
|
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
106215
106300
|
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
@@ -106243,6 +106328,7 @@ export namespace Prisma {
|
|
|
106243
106328
|
affiliateBaseUrl?: string | null
|
|
106244
106329
|
affiliateCommission?: number | null
|
|
106245
106330
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
106331
|
+
searchName?: string | null
|
|
106246
106332
|
dedicatedSpecialist?: UserCreateNestedOneWithoutAssignedBrandsInput
|
|
106247
106333
|
instagramProfile?: InstagramProfileCreateNestedOneWithoutBrandInput
|
|
106248
106334
|
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutBrandInput
|
|
@@ -106281,6 +106367,7 @@ export namespace Prisma {
|
|
|
106281
106367
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
106282
106368
|
specialistId?: number | null
|
|
106283
106369
|
parentBrandId?: number | null
|
|
106370
|
+
searchName?: string | null
|
|
106284
106371
|
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
106285
106372
|
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
106286
106373
|
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
@@ -106562,6 +106649,7 @@ export namespace Prisma {
|
|
|
106562
106649
|
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106563
106650
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
106564
106651
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
106652
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106565
106653
|
dedicatedSpecialist?: UserUpdateOneWithoutAssignedBrandsNestedInput
|
|
106566
106654
|
instagramProfile?: InstagramProfileUpdateOneWithoutBrandNestedInput
|
|
106567
106655
|
youtubeProfile?: YoutubeProfileUpdateOneWithoutBrandNestedInput
|
|
@@ -106600,6 +106688,7 @@ export namespace Prisma {
|
|
|
106600
106688
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
106601
106689
|
specialistId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
106602
106690
|
parentBrandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
106691
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
106603
106692
|
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
106604
106693
|
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
106605
106694
|
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
@@ -106920,6 +107009,7 @@ export namespace Prisma {
|
|
|
106920
107009
|
affiliateBaseUrl?: string | null
|
|
106921
107010
|
affiliateCommission?: number | null
|
|
106922
107011
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
107012
|
+
searchName?: string | null
|
|
106923
107013
|
dedicatedSpecialist?: UserCreateNestedOneWithoutAssignedBrandsInput
|
|
106924
107014
|
instagramProfile?: InstagramProfileCreateNestedOneWithoutBrandInput
|
|
106925
107015
|
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutBrandInput
|
|
@@ -106958,6 +107048,7 @@ export namespace Prisma {
|
|
|
106958
107048
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
106959
107049
|
specialistId?: number | null
|
|
106960
107050
|
parentBrandId?: number | null
|
|
107051
|
+
searchName?: string | null
|
|
106961
107052
|
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
106962
107053
|
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
106963
107054
|
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
@@ -107211,6 +107302,7 @@ export namespace Prisma {
|
|
|
107211
107302
|
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107212
107303
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
107213
107304
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
107305
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107214
107306
|
dedicatedSpecialist?: UserUpdateOneWithoutAssignedBrandsNestedInput
|
|
107215
107307
|
instagramProfile?: InstagramProfileUpdateOneWithoutBrandNestedInput
|
|
107216
107308
|
youtubeProfile?: YoutubeProfileUpdateOneWithoutBrandNestedInput
|
|
@@ -107249,6 +107341,7 @@ export namespace Prisma {
|
|
|
107249
107341
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
107250
107342
|
specialistId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
107251
107343
|
parentBrandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
107344
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
107252
107345
|
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
107253
107346
|
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
107254
107347
|
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
@@ -108027,6 +108120,7 @@ export namespace Prisma {
|
|
|
108027
108120
|
affiliateBaseUrl?: string | null
|
|
108028
108121
|
affiliateCommission?: number | null
|
|
108029
108122
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
108123
|
+
searchName?: string | null
|
|
108030
108124
|
dedicatedSpecialist?: UserCreateNestedOneWithoutAssignedBrandsInput
|
|
108031
108125
|
instagramProfile?: InstagramProfileCreateNestedOneWithoutBrandInput
|
|
108032
108126
|
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutBrandInput
|
|
@@ -108065,6 +108159,7 @@ export namespace Prisma {
|
|
|
108065
108159
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
108066
108160
|
specialistId?: number | null
|
|
108067
108161
|
parentBrandId?: number | null
|
|
108162
|
+
searchName?: string | null
|
|
108068
108163
|
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
108069
108164
|
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
108070
108165
|
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
@@ -108114,6 +108209,7 @@ export namespace Prisma {
|
|
|
108114
108209
|
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
108115
108210
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
108116
108211
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
108212
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
108117
108213
|
dedicatedSpecialist?: UserUpdateOneWithoutAssignedBrandsNestedInput
|
|
108118
108214
|
instagramProfile?: InstagramProfileUpdateOneWithoutBrandNestedInput
|
|
108119
108215
|
youtubeProfile?: YoutubeProfileUpdateOneWithoutBrandNestedInput
|
|
@@ -108152,6 +108248,7 @@ export namespace Prisma {
|
|
|
108152
108248
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
108153
108249
|
specialistId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
108154
108250
|
parentBrandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
108251
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
108155
108252
|
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
108156
108253
|
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
108157
108254
|
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
@@ -108185,6 +108282,7 @@ export namespace Prisma {
|
|
|
108185
108282
|
affiliateBaseUrl?: string | null
|
|
108186
108283
|
affiliateCommission?: number | null
|
|
108187
108284
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
108285
|
+
searchName?: string | null
|
|
108188
108286
|
dedicatedSpecialist?: UserCreateNestedOneWithoutAssignedBrandsInput
|
|
108189
108287
|
instagramProfile?: InstagramProfileCreateNestedOneWithoutBrandInput
|
|
108190
108288
|
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutBrandInput
|
|
@@ -108223,6 +108321,7 @@ export namespace Prisma {
|
|
|
108223
108321
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
108224
108322
|
specialistId?: number | null
|
|
108225
108323
|
parentBrandId?: number | null
|
|
108324
|
+
searchName?: string | null
|
|
108226
108325
|
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
108227
108326
|
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
108228
108327
|
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
@@ -108301,6 +108400,7 @@ export namespace Prisma {
|
|
|
108301
108400
|
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
108302
108401
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
108303
108402
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
108403
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
108304
108404
|
dedicatedSpecialist?: UserUpdateOneWithoutAssignedBrandsNestedInput
|
|
108305
108405
|
instagramProfile?: InstagramProfileUpdateOneWithoutBrandNestedInput
|
|
108306
108406
|
youtubeProfile?: YoutubeProfileUpdateOneWithoutBrandNestedInput
|
|
@@ -108339,6 +108439,7 @@ export namespace Prisma {
|
|
|
108339
108439
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
108340
108440
|
specialistId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
108341
108441
|
parentBrandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
108442
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
108342
108443
|
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
108343
108444
|
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
108344
108445
|
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
@@ -108401,6 +108502,7 @@ export namespace Prisma {
|
|
|
108401
108502
|
affiliateBaseUrl?: string | null
|
|
108402
108503
|
affiliateCommission?: number | null
|
|
108403
108504
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
108505
|
+
searchName?: string | null
|
|
108404
108506
|
dedicatedSpecialist?: UserCreateNestedOneWithoutAssignedBrandsInput
|
|
108405
108507
|
instagramProfile?: InstagramProfileCreateNestedOneWithoutBrandInput
|
|
108406
108508
|
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutBrandInput
|
|
@@ -108439,6 +108541,7 @@ export namespace Prisma {
|
|
|
108439
108541
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
108440
108542
|
specialistId?: number | null
|
|
108441
108543
|
parentBrandId?: number | null
|
|
108544
|
+
searchName?: string | null
|
|
108442
108545
|
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
108443
108546
|
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
108444
108547
|
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
@@ -108507,6 +108610,7 @@ export namespace Prisma {
|
|
|
108507
108610
|
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
108508
108611
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
108509
108612
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
108613
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
108510
108614
|
dedicatedSpecialist?: UserUpdateOneWithoutAssignedBrandsNestedInput
|
|
108511
108615
|
instagramProfile?: InstagramProfileUpdateOneWithoutBrandNestedInput
|
|
108512
108616
|
youtubeProfile?: YoutubeProfileUpdateOneWithoutBrandNestedInput
|
|
@@ -108545,6 +108649,7 @@ export namespace Prisma {
|
|
|
108545
108649
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
108546
108650
|
specialistId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
108547
108651
|
parentBrandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
108652
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
108548
108653
|
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
108549
108654
|
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
108550
108655
|
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
@@ -109364,6 +109469,7 @@ export namespace Prisma {
|
|
|
109364
109469
|
affiliateBaseUrl?: string | null
|
|
109365
109470
|
affiliateCommission?: number | null
|
|
109366
109471
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
109472
|
+
searchName?: string | null
|
|
109367
109473
|
dedicatedSpecialist?: UserCreateNestedOneWithoutAssignedBrandsInput
|
|
109368
109474
|
instagramProfile?: InstagramProfileCreateNestedOneWithoutBrandInput
|
|
109369
109475
|
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutBrandInput
|
|
@@ -109402,6 +109508,7 @@ export namespace Prisma {
|
|
|
109402
109508
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
109403
109509
|
specialistId?: number | null
|
|
109404
109510
|
parentBrandId?: number | null
|
|
109511
|
+
searchName?: string | null
|
|
109405
109512
|
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
109406
109513
|
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
109407
109514
|
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
@@ -109543,6 +109650,7 @@ export namespace Prisma {
|
|
|
109543
109650
|
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109544
109651
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
109545
109652
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
109653
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109546
109654
|
dedicatedSpecialist?: UserUpdateOneWithoutAssignedBrandsNestedInput
|
|
109547
109655
|
instagramProfile?: InstagramProfileUpdateOneWithoutBrandNestedInput
|
|
109548
109656
|
youtubeProfile?: YoutubeProfileUpdateOneWithoutBrandNestedInput
|
|
@@ -109581,6 +109689,7 @@ export namespace Prisma {
|
|
|
109581
109689
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
109582
109690
|
specialistId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
109583
109691
|
parentBrandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
109692
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109584
109693
|
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
109585
109694
|
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
109586
109695
|
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
@@ -109614,6 +109723,7 @@ export namespace Prisma {
|
|
|
109614
109723
|
affiliateBaseUrl?: string | null
|
|
109615
109724
|
affiliateCommission?: number | null
|
|
109616
109725
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
109726
|
+
searchName?: string | null
|
|
109617
109727
|
dedicatedSpecialist?: UserCreateNestedOneWithoutAssignedBrandsInput
|
|
109618
109728
|
instagramProfile?: InstagramProfileCreateNestedOneWithoutBrandInput
|
|
109619
109729
|
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutBrandInput
|
|
@@ -109652,6 +109762,7 @@ export namespace Prisma {
|
|
|
109652
109762
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
109653
109763
|
specialistId?: number | null
|
|
109654
109764
|
parentBrandId?: number | null
|
|
109765
|
+
searchName?: string | null
|
|
109655
109766
|
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
109656
109767
|
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
109657
109768
|
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
@@ -109701,6 +109812,7 @@ export namespace Prisma {
|
|
|
109701
109812
|
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109702
109813
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
109703
109814
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
109815
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109704
109816
|
dedicatedSpecialist?: UserUpdateOneWithoutAssignedBrandsNestedInput
|
|
109705
109817
|
instagramProfile?: InstagramProfileUpdateOneWithoutBrandNestedInput
|
|
109706
109818
|
youtubeProfile?: YoutubeProfileUpdateOneWithoutBrandNestedInput
|
|
@@ -109739,6 +109851,7 @@ export namespace Prisma {
|
|
|
109739
109851
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
109740
109852
|
specialistId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
109741
109853
|
parentBrandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
109854
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
109742
109855
|
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
109743
109856
|
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
109744
109857
|
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
@@ -109934,6 +110047,7 @@ export namespace Prisma {
|
|
|
109934
110047
|
affiliateBaseUrl?: string | null
|
|
109935
110048
|
affiliateCommission?: number | null
|
|
109936
110049
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
110050
|
+
searchName?: string | null
|
|
109937
110051
|
dedicatedSpecialist?: UserCreateNestedOneWithoutAssignedBrandsInput
|
|
109938
110052
|
instagramProfile?: InstagramProfileCreateNestedOneWithoutBrandInput
|
|
109939
110053
|
youtubeProfile?: YoutubeProfileCreateNestedOneWithoutBrandInput
|
|
@@ -109972,6 +110086,7 @@ export namespace Prisma {
|
|
|
109972
110086
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
109973
110087
|
specialistId?: number | null
|
|
109974
110088
|
parentBrandId?: number | null
|
|
110089
|
+
searchName?: string | null
|
|
109975
110090
|
instagramProfile?: InstagramProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
109976
110091
|
youtubeProfile?: YoutubeProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
109977
110092
|
tiktokProfile?: TiktokProfileUncheckedCreateNestedOneWithoutBrandInput
|
|
@@ -110294,6 +110409,7 @@ export namespace Prisma {
|
|
|
110294
110409
|
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110295
110410
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
110296
110411
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
110412
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110297
110413
|
dedicatedSpecialist?: UserUpdateOneWithoutAssignedBrandsNestedInput
|
|
110298
110414
|
instagramProfile?: InstagramProfileUpdateOneWithoutBrandNestedInput
|
|
110299
110415
|
youtubeProfile?: YoutubeProfileUpdateOneWithoutBrandNestedInput
|
|
@@ -110332,6 +110448,7 @@ export namespace Prisma {
|
|
|
110332
110448
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
110333
110449
|
specialistId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
110334
110450
|
parentBrandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
110451
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
110335
110452
|
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
110336
110453
|
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
110337
110454
|
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
@@ -111114,6 +111231,7 @@ export namespace Prisma {
|
|
|
111114
111231
|
affiliateCommission?: number | null
|
|
111115
111232
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
111116
111233
|
parentBrandId?: number | null
|
|
111234
|
+
searchName?: string | null
|
|
111117
111235
|
}
|
|
111118
111236
|
|
|
111119
111237
|
export type MessageCreateManyUserInput = {
|
|
@@ -111436,6 +111554,7 @@ export namespace Prisma {
|
|
|
111436
111554
|
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111437
111555
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
111438
111556
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
111557
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111439
111558
|
instagramProfile?: InstagramProfileUpdateOneWithoutBrandNestedInput
|
|
111440
111559
|
youtubeProfile?: YoutubeProfileUpdateOneWithoutBrandNestedInput
|
|
111441
111560
|
tiktokProfile?: TiktokProfileUpdateOneWithoutBrandNestedInput
|
|
@@ -111473,6 +111592,7 @@ export namespace Prisma {
|
|
|
111473
111592
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
111474
111593
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
111475
111594
|
parentBrandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
111595
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111476
111596
|
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
111477
111597
|
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
111478
111598
|
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
@@ -111509,6 +111629,7 @@ export namespace Prisma {
|
|
|
111509
111629
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
111510
111630
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
111511
111631
|
parentBrandId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
111632
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
111512
111633
|
}
|
|
111513
111634
|
|
|
111514
111635
|
export type MessageUpdateWithoutUserInput = {
|
|
@@ -112083,6 +112204,7 @@ export namespace Prisma {
|
|
|
112083
112204
|
affiliateCommission?: number | null
|
|
112084
112205
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
112085
112206
|
specialistId?: number | null
|
|
112207
|
+
searchName?: string | null
|
|
112086
112208
|
}
|
|
112087
112209
|
|
|
112088
112210
|
export type CampaignUpdateWithoutBrandInput = {
|
|
@@ -112712,6 +112834,7 @@ export namespace Prisma {
|
|
|
112712
112834
|
affiliateBaseUrl?: NullableStringFieldUpdateOperationsInput | string | null
|
|
112713
112835
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
112714
112836
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
112837
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
112715
112838
|
dedicatedSpecialist?: UserUpdateOneWithoutAssignedBrandsNestedInput
|
|
112716
112839
|
instagramProfile?: InstagramProfileUpdateOneWithoutBrandNestedInput
|
|
112717
112840
|
youtubeProfile?: YoutubeProfileUpdateOneWithoutBrandNestedInput
|
|
@@ -112749,6 +112872,7 @@ export namespace Prisma {
|
|
|
112749
112872
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
112750
112873
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
112751
112874
|
specialistId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
112875
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
112752
112876
|
instagramProfile?: InstagramProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
112753
112877
|
youtubeProfile?: YoutubeProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
112754
112878
|
tiktokProfile?: TiktokProfileUncheckedUpdateOneWithoutBrandNestedInput
|
|
@@ -112785,6 +112909,7 @@ export namespace Prisma {
|
|
|
112785
112909
|
affiliateCommission?: NullableFloatFieldUpdateOperationsInput | number | null
|
|
112786
112910
|
extraData?: JsonNullValueInput | InputJsonValue
|
|
112787
112911
|
specialistId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
112912
|
+
searchName?: NullableStringFieldUpdateOperationsInput | string | null
|
|
112788
112913
|
}
|
|
112789
112914
|
|
|
112790
112915
|
export type BrandImageCreateManyBrandImageInput = {
|