@creator.co/creatorco-prisma-client 1.0.39-alpha-0fc3e98 → 1.0.40

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.d.ts CHANGED
@@ -32901,31 +32901,26 @@ export namespace Prisma {
32901
32901
  }
32902
32902
 
32903
32903
  export type CampaignToBrandAffiliateLinkAvgAggregateOutputType = {
32904
- id: number | null
32905
32904
  campaignId: number | null
32906
32905
  brandAffiliateLinkId: number | null
32907
32906
  }
32908
32907
 
32909
32908
  export type CampaignToBrandAffiliateLinkSumAggregateOutputType = {
32910
- id: number | null
32911
32909
  campaignId: number | null
32912
32910
  brandAffiliateLinkId: number | null
32913
32911
  }
32914
32912
 
32915
32913
  export type CampaignToBrandAffiliateLinkMinAggregateOutputType = {
32916
- id: number | null
32917
32914
  campaignId: number | null
32918
32915
  brandAffiliateLinkId: number | null
32919
32916
  }
32920
32917
 
32921
32918
  export type CampaignToBrandAffiliateLinkMaxAggregateOutputType = {
32922
- id: number | null
32923
32919
  campaignId: number | null
32924
32920
  brandAffiliateLinkId: number | null
32925
32921
  }
32926
32922
 
32927
32923
  export type CampaignToBrandAffiliateLinkCountAggregateOutputType = {
32928
- id: number
32929
32924
  campaignId: number
32930
32925
  brandAffiliateLinkId: number
32931
32926
  _all: number
@@ -32933,31 +32928,26 @@ export namespace Prisma {
32933
32928
 
32934
32929
 
32935
32930
  export type CampaignToBrandAffiliateLinkAvgAggregateInputType = {
32936
- id?: true
32937
32931
  campaignId?: true
32938
32932
  brandAffiliateLinkId?: true
32939
32933
  }
32940
32934
 
32941
32935
  export type CampaignToBrandAffiliateLinkSumAggregateInputType = {
32942
- id?: true
32943
32936
  campaignId?: true
32944
32937
  brandAffiliateLinkId?: true
32945
32938
  }
32946
32939
 
32947
32940
  export type CampaignToBrandAffiliateLinkMinAggregateInputType = {
32948
- id?: true
32949
32941
  campaignId?: true
32950
32942
  brandAffiliateLinkId?: true
32951
32943
  }
32952
32944
 
32953
32945
  export type CampaignToBrandAffiliateLinkMaxAggregateInputType = {
32954
- id?: true
32955
32946
  campaignId?: true
32956
32947
  brandAffiliateLinkId?: true
32957
32948
  }
32958
32949
 
32959
32950
  export type CampaignToBrandAffiliateLinkCountAggregateInputType = {
32960
- id?: true
32961
32951
  campaignId?: true
32962
32952
  brandAffiliateLinkId?: true
32963
32953
  _all?: true
@@ -33050,7 +33040,6 @@ export namespace Prisma {
33050
33040
  }
33051
33041
 
33052
33042
  export type CampaignToBrandAffiliateLinkGroupByOutputType = {
33053
- id: number
33054
33043
  campaignId: number
33055
33044
  brandAffiliateLinkId: number
33056
33045
  _count: CampaignToBrandAffiliateLinkCountAggregateOutputType | null
@@ -33075,7 +33064,6 @@ export namespace Prisma {
33075
33064
 
33076
33065
 
33077
33066
  export type CampaignToBrandAffiliateLinkSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
33078
- id?: boolean
33079
33067
  campaignId?: boolean
33080
33068
  brandAffiliateLinkId?: boolean
33081
33069
  campaign?: boolean | CampaignDefaultArgs<ExtArgs>
@@ -33083,7 +33071,6 @@ export namespace Prisma {
33083
33071
  }, ExtArgs["result"]["campaignToBrandAffiliateLink"]>
33084
33072
 
33085
33073
  export type CampaignToBrandAffiliateLinkSelectScalar = {
33086
- id?: boolean
33087
33074
  campaignId?: boolean
33088
33075
  brandAffiliateLinkId?: boolean
33089
33076
  }
@@ -33102,7 +33089,6 @@ export namespace Prisma {
33102
33089
  brandAffiliateLink: Prisma.$BrandAffiliateLinkPayload<ExtArgs>
33103
33090
  }
33104
33091
  scalars: $Extensions.GetPayloadResult<{
33105
- id: number
33106
33092
  campaignId: number
33107
33093
  brandAffiliateLinkId: number
33108
33094
  }, ExtArgs["result"]["campaignToBrandAffiliateLink"]>
@@ -33197,8 +33183,8 @@ export namespace Prisma {
33197
33183
  * // Get first 10 CampaignToBrandAffiliateLinks
33198
33184
  * const campaignToBrandAffiliateLinks = await prisma.campaignToBrandAffiliateLink.findMany({ take: 10 })
33199
33185
  *
33200
- * // Only select the `id`
33201
- * const campaignToBrandAffiliateLinkWithIdOnly = await prisma.campaignToBrandAffiliateLink.findMany({ select: { id: true } })
33186
+ * // Only select the `campaignId`
33187
+ * const campaignToBrandAffiliateLinkWithCampaignIdOnly = await prisma.campaignToBrandAffiliateLink.findMany({ select: { campaignId: true } })
33202
33188
  *
33203
33189
  **/
33204
33190
  findMany<T extends CampaignToBrandAffiliateLinkFindManyArgs<ExtArgs>>(
@@ -33248,9 +33234,9 @@ export namespace Prisma {
33248
33234
  * ]
33249
33235
  * })
33250
33236
  *
33251
- * // Create many CampaignToBrandAffiliateLinks and only return the `id`
33252
- * const campaignToBrandAffiliateLinkWithIdOnly = await prisma.campaignToBrandAffiliateLink.createManyAndReturn({
33253
- * select: { id: true },
33237
+ * // Create many CampaignToBrandAffiliateLinks and only return the `campaignId`
33238
+ * const campaignToBrandAffiliateLinkWithCampaignIdOnly = await prisma.campaignToBrandAffiliateLink.createManyAndReturn({
33239
+ * select: { campaignId: true },
33254
33240
  * data: [
33255
33241
  * // ... provide data here
33256
33242
  * ]
@@ -33528,7 +33514,6 @@ export namespace Prisma {
33528
33514
  * Fields of the CampaignToBrandAffiliateLink model
33529
33515
  */
33530
33516
  interface CampaignToBrandAffiliateLinkFieldRefs {
33531
- readonly id: FieldRef<"CampaignToBrandAffiliateLink", 'Int'>
33532
33517
  readonly campaignId: FieldRef<"CampaignToBrandAffiliateLink", 'Int'>
33533
33518
  readonly brandAffiliateLinkId: FieldRef<"CampaignToBrandAffiliateLink", 'Int'>
33534
33519
  }
@@ -49386,6 +49371,7 @@ export namespace Prisma {
49386
49371
  title: string | null
49387
49372
  description: string | null
49388
49373
  url: string | null
49374
+ urlPath: string | null
49389
49375
  format: string | null
49390
49376
  type: string | null
49391
49377
  platform: string | null
@@ -49420,6 +49406,7 @@ export namespace Prisma {
49420
49406
  title: string | null
49421
49407
  description: string | null
49422
49408
  url: string | null
49409
+ urlPath: string | null
49423
49410
  format: string | null
49424
49411
  type: string | null
49425
49412
  platform: string | null
@@ -49449,12 +49436,14 @@ export namespace Prisma {
49449
49436
  externalId: number
49450
49437
  phylloId: number
49451
49438
  metaData: number
49439
+ data: number
49452
49440
  lastFetched: number
49453
49441
  lastWebhook: number
49454
49442
  posted: number
49455
49443
  title: number
49456
49444
  description: number
49457
49445
  url: number
49446
+ urlPath: number
49458
49447
  format: number
49459
49448
  type: number
49460
49449
  platform: number
@@ -49529,6 +49518,7 @@ export namespace Prisma {
49529
49518
  title?: true
49530
49519
  description?: true
49531
49520
  url?: true
49521
+ urlPath?: true
49532
49522
  format?: true
49533
49523
  type?: true
49534
49524
  platform?: true
@@ -49563,6 +49553,7 @@ export namespace Prisma {
49563
49553
  title?: true
49564
49554
  description?: true
49565
49555
  url?: true
49556
+ urlPath?: true
49566
49557
  format?: true
49567
49558
  type?: true
49568
49559
  platform?: true
@@ -49592,12 +49583,14 @@ export namespace Prisma {
49592
49583
  externalId?: true
49593
49584
  phylloId?: true
49594
49585
  metaData?: true
49586
+ data?: true
49595
49587
  lastFetched?: true
49596
49588
  lastWebhook?: true
49597
49589
  posted?: true
49598
49590
  title?: true
49599
49591
  description?: true
49600
49592
  url?: true
49593
+ urlPath?: true
49601
49594
  format?: true
49602
49595
  type?: true
49603
49596
  platform?: true
@@ -49711,15 +49704,17 @@ export namespace Prisma {
49711
49704
 
49712
49705
  export type SocialPostGroupByOutputType = {
49713
49706
  id: number
49714
- externalId: string
49707
+ externalId: string | null
49715
49708
  phylloId: string | null
49716
49709
  metaData: JsonValue
49710
+ data: JsonValue
49717
49711
  lastFetched: Date | null
49718
49712
  lastWebhook: Date | null
49719
49713
  posted: Date | null
49720
49714
  title: string | null
49721
49715
  description: string | null
49722
49716
  url: string | null
49717
+ urlPath: string | null
49723
49718
  format: string | null
49724
49719
  type: string | null
49725
49720
  platform: string | null
@@ -49768,12 +49763,14 @@ export namespace Prisma {
49768
49763
  externalId?: boolean
49769
49764
  phylloId?: boolean
49770
49765
  metaData?: boolean
49766
+ data?: boolean
49771
49767
  lastFetched?: boolean
49772
49768
  lastWebhook?: boolean
49773
49769
  posted?: boolean
49774
49770
  title?: boolean
49775
49771
  description?: boolean
49776
49772
  url?: boolean
49773
+ urlPath?: boolean
49777
49774
  format?: boolean
49778
49775
  type?: boolean
49779
49776
  platform?: boolean
@@ -49807,12 +49804,14 @@ export namespace Prisma {
49807
49804
  externalId?: boolean
49808
49805
  phylloId?: boolean
49809
49806
  metaData?: boolean
49807
+ data?: boolean
49810
49808
  lastFetched?: boolean
49811
49809
  lastWebhook?: boolean
49812
49810
  posted?: boolean
49813
49811
  title?: boolean
49814
49812
  description?: boolean
49815
49813
  url?: boolean
49814
+ urlPath?: boolean
49816
49815
  format?: boolean
49817
49816
  type?: boolean
49818
49817
  platform?: boolean
@@ -49855,15 +49854,17 @@ export namespace Prisma {
49855
49854
  }
49856
49855
  scalars: $Extensions.GetPayloadResult<{
49857
49856
  id: number
49858
- externalId: string
49857
+ externalId: string | null
49859
49858
  phylloId: string | null
49860
49859
  metaData: Prisma.JsonValue
49860
+ data: Prisma.JsonValue
49861
49861
  lastFetched: Date | null
49862
49862
  lastWebhook: Date | null
49863
49863
  posted: Date | null
49864
49864
  title: string | null
49865
49865
  description: string | null
49866
49866
  url: string | null
49867
+ urlPath: string | null
49867
49868
  format: string | null
49868
49869
  type: string | null
49869
49870
  platform: string | null
@@ -50315,12 +50316,14 @@ export namespace Prisma {
50315
50316
  readonly externalId: FieldRef<"SocialPost", 'String'>
50316
50317
  readonly phylloId: FieldRef<"SocialPost", 'String'>
50317
50318
  readonly metaData: FieldRef<"SocialPost", 'Json'>
50319
+ readonly data: FieldRef<"SocialPost", 'Json'>
50318
50320
  readonly lastFetched: FieldRef<"SocialPost", 'DateTime'>
50319
50321
  readonly lastWebhook: FieldRef<"SocialPost", 'DateTime'>
50320
50322
  readonly posted: FieldRef<"SocialPost", 'DateTime'>
50321
50323
  readonly title: FieldRef<"SocialPost", 'String'>
50322
50324
  readonly description: FieldRef<"SocialPost", 'String'>
50323
50325
  readonly url: FieldRef<"SocialPost", 'String'>
50326
+ readonly urlPath: FieldRef<"SocialPost", 'String'>
50324
50327
  readonly format: FieldRef<"SocialPost", 'String'>
50325
50328
  readonly type: FieldRef<"SocialPost", 'String'>
50326
50329
  readonly platform: FieldRef<"SocialPost", 'String'>
@@ -50537,7 +50540,7 @@ export namespace Prisma {
50537
50540
  /**
50538
50541
  * The data needed to create a SocialPost.
50539
50542
  */
50540
- data: XOR<SocialPostCreateInput, SocialPostUncheckedCreateInput>
50543
+ data?: XOR<SocialPostCreateInput, SocialPostUncheckedCreateInput>
50541
50544
  }
50542
50545
 
50543
50546
  /**
@@ -84668,7 +84671,6 @@ export namespace Prisma {
84668
84671
 
84669
84672
 
84670
84673
  export const CampaignToBrandAffiliateLinkScalarFieldEnum: {
84671
- id: 'id',
84672
84674
  campaignId: 'campaignId',
84673
84675
  brandAffiliateLinkId: 'brandAffiliateLinkId'
84674
84676
  };
@@ -84854,12 +84856,14 @@ export namespace Prisma {
84854
84856
  externalId: 'externalId',
84855
84857
  phylloId: 'phylloId',
84856
84858
  metaData: 'metaData',
84859
+ data: 'data',
84857
84860
  lastFetched: 'lastFetched',
84858
84861
  lastWebhook: 'lastWebhook',
84859
84862
  posted: 'posted',
84860
84863
  title: 'title',
84861
84864
  description: 'description',
84862
84865
  url: 'url',
84866
+ urlPath: 'urlPath',
84863
84867
  format: 'format',
84864
84868
  type: 'type',
84865
84869
  platform: 'platform',
@@ -85637,6 +85641,7 @@ export namespace Prisma {
85637
85641
  title: 'title',
85638
85642
  description: 'description',
85639
85643
  url: 'url',
85644
+ urlPath: 'urlPath',
85640
85645
  format: 'format',
85641
85646
  type: 'type',
85642
85647
  platform: 'platform',
@@ -88235,7 +88240,6 @@ export namespace Prisma {
88235
88240
  AND?: CampaignToBrandAffiliateLinkWhereInput | CampaignToBrandAffiliateLinkWhereInput[]
88236
88241
  OR?: CampaignToBrandAffiliateLinkWhereInput[]
88237
88242
  NOT?: CampaignToBrandAffiliateLinkWhereInput | CampaignToBrandAffiliateLinkWhereInput[]
88238
- id?: IntFilter<"CampaignToBrandAffiliateLink"> | number
88239
88243
  campaignId?: IntFilter<"CampaignToBrandAffiliateLink"> | number
88240
88244
  brandAffiliateLinkId?: IntFilter<"CampaignToBrandAffiliateLink"> | number
88241
88245
  campaign?: XOR<CampaignRelationFilter, CampaignWhereInput>
@@ -88243,7 +88247,6 @@ export namespace Prisma {
88243
88247
  }
88244
88248
 
88245
88249
  export type CampaignToBrandAffiliateLinkOrderByWithRelationAndSearchRelevanceInput = {
88246
- id?: SortOrder
88247
88250
  campaignId?: SortOrder
88248
88251
  brandAffiliateLinkId?: SortOrder
88249
88252
  campaign?: CampaignOrderByWithRelationAndSearchRelevanceInput
@@ -88251,7 +88254,7 @@ export namespace Prisma {
88251
88254
  }
88252
88255
 
88253
88256
  export type CampaignToBrandAffiliateLinkWhereUniqueInput = Prisma.AtLeast<{
88254
- id?: number
88257
+ campaignId_brandAffiliateLinkId?: CampaignToBrandAffiliateLinkCampaignIdBrandAffiliateLinkIdCompoundUniqueInput
88255
88258
  AND?: CampaignToBrandAffiliateLinkWhereInput | CampaignToBrandAffiliateLinkWhereInput[]
88256
88259
  OR?: CampaignToBrandAffiliateLinkWhereInput[]
88257
88260
  NOT?: CampaignToBrandAffiliateLinkWhereInput | CampaignToBrandAffiliateLinkWhereInput[]
@@ -88259,10 +88262,9 @@ export namespace Prisma {
88259
88262
  brandAffiliateLinkId?: IntFilter<"CampaignToBrandAffiliateLink"> | number
88260
88263
  campaign?: XOR<CampaignRelationFilter, CampaignWhereInput>
88261
88264
  brandAffiliateLink?: XOR<BrandAffiliateLinkRelationFilter, BrandAffiliateLinkWhereInput>
88262
- }, "id">
88265
+ }, "campaignId_brandAffiliateLinkId">
88263
88266
 
88264
88267
  export type CampaignToBrandAffiliateLinkOrderByWithAggregationInput = {
88265
- id?: SortOrder
88266
88268
  campaignId?: SortOrder
88267
88269
  brandAffiliateLinkId?: SortOrder
88268
88270
  _count?: CampaignToBrandAffiliateLinkCountOrderByAggregateInput
@@ -88276,7 +88278,6 @@ export namespace Prisma {
88276
88278
  AND?: CampaignToBrandAffiliateLinkScalarWhereWithAggregatesInput | CampaignToBrandAffiliateLinkScalarWhereWithAggregatesInput[]
88277
88279
  OR?: CampaignToBrandAffiliateLinkScalarWhereWithAggregatesInput[]
88278
88280
  NOT?: CampaignToBrandAffiliateLinkScalarWhereWithAggregatesInput | CampaignToBrandAffiliateLinkScalarWhereWithAggregatesInput[]
88279
- id?: IntWithAggregatesFilter<"CampaignToBrandAffiliateLink"> | number
88280
88281
  campaignId?: IntWithAggregatesFilter<"CampaignToBrandAffiliateLink"> | number
88281
88282
  brandAffiliateLinkId?: IntWithAggregatesFilter<"CampaignToBrandAffiliateLink"> | number
88282
88283
  }
@@ -89275,15 +89276,17 @@ export namespace Prisma {
89275
89276
  OR?: SocialPostWhereInput[]
89276
89277
  NOT?: SocialPostWhereInput | SocialPostWhereInput[]
89277
89278
  id?: IntFilter<"SocialPost"> | number
89278
- externalId?: StringFilter<"SocialPost"> | string
89279
+ externalId?: StringNullableFilter<"SocialPost"> | string | null
89279
89280
  phylloId?: StringNullableFilter<"SocialPost"> | string | null
89280
89281
  metaData?: JsonFilter<"SocialPost">
89282
+ data?: JsonFilter<"SocialPost">
89281
89283
  lastFetched?: DateTimeNullableFilter<"SocialPost"> | Date | string | null
89282
89284
  lastWebhook?: DateTimeNullableFilter<"SocialPost"> | Date | string | null
89283
89285
  posted?: DateTimeNullableFilter<"SocialPost"> | Date | string | null
89284
89286
  title?: StringNullableFilter<"SocialPost"> | string | null
89285
89287
  description?: StringNullableFilter<"SocialPost"> | string | null
89286
89288
  url?: StringNullableFilter<"SocialPost"> | string | null
89289
+ urlPath?: StringNullableFilter<"SocialPost"> | string | null
89287
89290
  format?: StringNullableFilter<"SocialPost"> | string | null
89288
89291
  type?: StringNullableFilter<"SocialPost"> | string | null
89289
89292
  platform?: StringNullableFilter<"SocialPost"> | string | null
@@ -89313,15 +89316,17 @@ export namespace Prisma {
89313
89316
 
89314
89317
  export type SocialPostOrderByWithRelationAndSearchRelevanceInput = {
89315
89318
  id?: SortOrder
89316
- externalId?: SortOrder
89319
+ externalId?: SortOrderInput | SortOrder
89317
89320
  phylloId?: SortOrderInput | SortOrder
89318
89321
  metaData?: SortOrder
89322
+ data?: SortOrder
89319
89323
  lastFetched?: SortOrderInput | SortOrder
89320
89324
  lastWebhook?: SortOrderInput | SortOrder
89321
89325
  posted?: SortOrderInput | SortOrder
89322
89326
  title?: SortOrderInput | SortOrder
89323
89327
  description?: SortOrderInput | SortOrder
89324
89328
  url?: SortOrderInput | SortOrder
89329
+ urlPath?: SortOrderInput | SortOrder
89325
89330
  format?: SortOrderInput | SortOrder
89326
89331
  type?: SortOrderInput | SortOrder
89327
89332
  platform?: SortOrderInput | SortOrder
@@ -89353,12 +89358,14 @@ export namespace Prisma {
89353
89358
  export type SocialPostWhereUniqueInput = Prisma.AtLeast<{
89354
89359
  id?: number
89355
89360
  phylloId?: string
89361
+ urlPath?: string
89356
89362
  platform_externalId?: SocialPostPlatformExternalIdCompoundUniqueInput
89357
89363
  AND?: SocialPostWhereInput | SocialPostWhereInput[]
89358
89364
  OR?: SocialPostWhereInput[]
89359
89365
  NOT?: SocialPostWhereInput | SocialPostWhereInput[]
89360
- externalId?: StringFilter<"SocialPost"> | string
89366
+ externalId?: StringNullableFilter<"SocialPost"> | string | null
89361
89367
  metaData?: JsonFilter<"SocialPost">
89368
+ data?: JsonFilter<"SocialPost">
89362
89369
  lastFetched?: DateTimeNullableFilter<"SocialPost"> | Date | string | null
89363
89370
  lastWebhook?: DateTimeNullableFilter<"SocialPost"> | Date | string | null
89364
89371
  posted?: DateTimeNullableFilter<"SocialPost"> | Date | string | null
@@ -89390,19 +89397,21 @@ export namespace Prisma {
89390
89397
  user?: XOR<UserNullableRelationFilter, UserWhereInput> | null
89391
89398
  campaign?: XOR<CampaignNullableRelationFilter, CampaignWhereInput> | null
89392
89399
  lists?: ListToSocialPostListRelationFilter
89393
- }, "id" | "phylloId" | "platform_externalId">
89400
+ }, "id" | "phylloId" | "urlPath" | "platform_externalId">
89394
89401
 
89395
89402
  export type SocialPostOrderByWithAggregationInput = {
89396
89403
  id?: SortOrder
89397
- externalId?: SortOrder
89404
+ externalId?: SortOrderInput | SortOrder
89398
89405
  phylloId?: SortOrderInput | SortOrder
89399
89406
  metaData?: SortOrder
89407
+ data?: SortOrder
89400
89408
  lastFetched?: SortOrderInput | SortOrder
89401
89409
  lastWebhook?: SortOrderInput | SortOrder
89402
89410
  posted?: SortOrderInput | SortOrder
89403
89411
  title?: SortOrderInput | SortOrder
89404
89412
  description?: SortOrderInput | SortOrder
89405
89413
  url?: SortOrderInput | SortOrder
89414
+ urlPath?: SortOrderInput | SortOrder
89406
89415
  format?: SortOrderInput | SortOrder
89407
89416
  type?: SortOrderInput | SortOrder
89408
89417
  platform?: SortOrderInput | SortOrder
@@ -89437,15 +89446,17 @@ export namespace Prisma {
89437
89446
  OR?: SocialPostScalarWhereWithAggregatesInput[]
89438
89447
  NOT?: SocialPostScalarWhereWithAggregatesInput | SocialPostScalarWhereWithAggregatesInput[]
89439
89448
  id?: IntWithAggregatesFilter<"SocialPost"> | number
89440
- externalId?: StringWithAggregatesFilter<"SocialPost"> | string
89449
+ externalId?: StringNullableWithAggregatesFilter<"SocialPost"> | string | null
89441
89450
  phylloId?: StringNullableWithAggregatesFilter<"SocialPost"> | string | null
89442
89451
  metaData?: JsonWithAggregatesFilter<"SocialPost">
89452
+ data?: JsonWithAggregatesFilter<"SocialPost">
89443
89453
  lastFetched?: DateTimeNullableWithAggregatesFilter<"SocialPost"> | Date | string | null
89444
89454
  lastWebhook?: DateTimeNullableWithAggregatesFilter<"SocialPost"> | Date | string | null
89445
89455
  posted?: DateTimeNullableWithAggregatesFilter<"SocialPost"> | Date | string | null
89446
89456
  title?: StringNullableWithAggregatesFilter<"SocialPost"> | string | null
89447
89457
  description?: StringNullableWithAggregatesFilter<"SocialPost"> | string | null
89448
89458
  url?: StringNullableWithAggregatesFilter<"SocialPost"> | string | null
89459
+ urlPath?: StringNullableWithAggregatesFilter<"SocialPost"> | string | null
89449
89460
  format?: StringNullableWithAggregatesFilter<"SocialPost"> | string | null
89450
89461
  type?: StringNullableWithAggregatesFilter<"SocialPost"> | string | null
89451
89462
  platform?: StringNullableWithAggregatesFilter<"SocialPost"> | string | null
@@ -94338,7 +94349,6 @@ export namespace Prisma {
94338
94349
  }
94339
94350
 
94340
94351
  export type CampaignToBrandAffiliateLinkUncheckedCreateInput = {
94341
- id?: number
94342
94352
  campaignId: number
94343
94353
  brandAffiliateLinkId: number
94344
94354
  }
@@ -94349,13 +94359,11 @@ export namespace Prisma {
94349
94359
  }
94350
94360
 
94351
94361
  export type CampaignToBrandAffiliateLinkUncheckedUpdateInput = {
94352
- id?: IntFieldUpdateOperationsInput | number
94353
94362
  campaignId?: IntFieldUpdateOperationsInput | number
94354
94363
  brandAffiliateLinkId?: IntFieldUpdateOperationsInput | number
94355
94364
  }
94356
94365
 
94357
94366
  export type CampaignToBrandAffiliateLinkCreateManyInput = {
94358
- id?: number
94359
94367
  campaignId: number
94360
94368
  brandAffiliateLinkId: number
94361
94369
  }
@@ -94365,7 +94373,6 @@ export namespace Prisma {
94365
94373
  }
94366
94374
 
94367
94375
  export type CampaignToBrandAffiliateLinkUncheckedUpdateManyInput = {
94368
- id?: IntFieldUpdateOperationsInput | number
94369
94376
  campaignId?: IntFieldUpdateOperationsInput | number
94370
94377
  brandAffiliateLinkId?: IntFieldUpdateOperationsInput | number
94371
94378
  }
@@ -95292,15 +95299,17 @@ export namespace Prisma {
95292
95299
  }
95293
95300
 
95294
95301
  export type SocialPostCreateInput = {
95295
- externalId: string
95302
+ externalId?: string | null
95296
95303
  phylloId?: string | null
95297
95304
  metaData?: JsonNullValueInput | InputJsonValue
95305
+ data?: JsonNullValueInput | InputJsonValue
95298
95306
  lastFetched?: Date | string | null
95299
95307
  lastWebhook?: Date | string | null
95300
95308
  posted?: Date | string | null
95301
95309
  title?: string | null
95302
95310
  description?: string | null
95303
95311
  url?: string | null
95312
+ urlPath?: string | null
95304
95313
  format?: string | null
95305
95314
  type?: string | null
95306
95315
  platform?: string | null
@@ -95328,15 +95337,17 @@ export namespace Prisma {
95328
95337
 
95329
95338
  export type SocialPostUncheckedCreateInput = {
95330
95339
  id?: number
95331
- externalId: string
95340
+ externalId?: string | null
95332
95341
  phylloId?: string | null
95333
95342
  metaData?: JsonNullValueInput | InputJsonValue
95343
+ data?: JsonNullValueInput | InputJsonValue
95334
95344
  lastFetched?: Date | string | null
95335
95345
  lastWebhook?: Date | string | null
95336
95346
  posted?: Date | string | null
95337
95347
  title?: string | null
95338
95348
  description?: string | null
95339
95349
  url?: string | null
95350
+ urlPath?: string | null
95340
95351
  format?: string | null
95341
95352
  type?: string | null
95342
95353
  platform?: string | null
@@ -95363,15 +95374,17 @@ export namespace Prisma {
95363
95374
  }
95364
95375
 
95365
95376
  export type SocialPostUpdateInput = {
95366
- externalId?: StringFieldUpdateOperationsInput | string
95377
+ externalId?: NullableStringFieldUpdateOperationsInput | string | null
95367
95378
  phylloId?: NullableStringFieldUpdateOperationsInput | string | null
95368
95379
  metaData?: JsonNullValueInput | InputJsonValue
95380
+ data?: JsonNullValueInput | InputJsonValue
95369
95381
  lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
95370
95382
  lastWebhook?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
95371
95383
  posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
95372
95384
  title?: NullableStringFieldUpdateOperationsInput | string | null
95373
95385
  description?: NullableStringFieldUpdateOperationsInput | string | null
95374
95386
  url?: NullableStringFieldUpdateOperationsInput | string | null
95387
+ urlPath?: NullableStringFieldUpdateOperationsInput | string | null
95375
95388
  format?: NullableStringFieldUpdateOperationsInput | string | null
95376
95389
  type?: NullableStringFieldUpdateOperationsInput | string | null
95377
95390
  platform?: NullableStringFieldUpdateOperationsInput | string | null
@@ -95399,15 +95412,17 @@ export namespace Prisma {
95399
95412
 
95400
95413
  export type SocialPostUncheckedUpdateInput = {
95401
95414
  id?: IntFieldUpdateOperationsInput | number
95402
- externalId?: StringFieldUpdateOperationsInput | string
95415
+ externalId?: NullableStringFieldUpdateOperationsInput | string | null
95403
95416
  phylloId?: NullableStringFieldUpdateOperationsInput | string | null
95404
95417
  metaData?: JsonNullValueInput | InputJsonValue
95418
+ data?: JsonNullValueInput | InputJsonValue
95405
95419
  lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
95406
95420
  lastWebhook?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
95407
95421
  posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
95408
95422
  title?: NullableStringFieldUpdateOperationsInput | string | null
95409
95423
  description?: NullableStringFieldUpdateOperationsInput | string | null
95410
95424
  url?: NullableStringFieldUpdateOperationsInput | string | null
95425
+ urlPath?: NullableStringFieldUpdateOperationsInput | string | null
95411
95426
  format?: NullableStringFieldUpdateOperationsInput | string | null
95412
95427
  type?: NullableStringFieldUpdateOperationsInput | string | null
95413
95428
  platform?: NullableStringFieldUpdateOperationsInput | string | null
@@ -95435,15 +95450,17 @@ export namespace Prisma {
95435
95450
 
95436
95451
  export type SocialPostCreateManyInput = {
95437
95452
  id?: number
95438
- externalId: string
95453
+ externalId?: string | null
95439
95454
  phylloId?: string | null
95440
95455
  metaData?: JsonNullValueInput | InputJsonValue
95456
+ data?: JsonNullValueInput | InputJsonValue
95441
95457
  lastFetched?: Date | string | null
95442
95458
  lastWebhook?: Date | string | null
95443
95459
  posted?: Date | string | null
95444
95460
  title?: string | null
95445
95461
  description?: string | null
95446
95462
  url?: string | null
95463
+ urlPath?: string | null
95447
95464
  format?: string | null
95448
95465
  type?: string | null
95449
95466
  platform?: string | null
@@ -95469,15 +95486,17 @@ export namespace Prisma {
95469
95486
  }
95470
95487
 
95471
95488
  export type SocialPostUpdateManyMutationInput = {
95472
- externalId?: StringFieldUpdateOperationsInput | string
95489
+ externalId?: NullableStringFieldUpdateOperationsInput | string | null
95473
95490
  phylloId?: NullableStringFieldUpdateOperationsInput | string | null
95474
95491
  metaData?: JsonNullValueInput | InputJsonValue
95492
+ data?: JsonNullValueInput | InputJsonValue
95475
95493
  lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
95476
95494
  lastWebhook?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
95477
95495
  posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
95478
95496
  title?: NullableStringFieldUpdateOperationsInput | string | null
95479
95497
  description?: NullableStringFieldUpdateOperationsInput | string | null
95480
95498
  url?: NullableStringFieldUpdateOperationsInput | string | null
95499
+ urlPath?: NullableStringFieldUpdateOperationsInput | string | null
95481
95500
  format?: NullableStringFieldUpdateOperationsInput | string | null
95482
95501
  type?: NullableStringFieldUpdateOperationsInput | string | null
95483
95502
  platform?: NullableStringFieldUpdateOperationsInput | string | null
@@ -95502,15 +95521,17 @@ export namespace Prisma {
95502
95521
 
95503
95522
  export type SocialPostUncheckedUpdateManyInput = {
95504
95523
  id?: IntFieldUpdateOperationsInput | number
95505
- externalId?: StringFieldUpdateOperationsInput | string
95524
+ externalId?: NullableStringFieldUpdateOperationsInput | string | null
95506
95525
  phylloId?: NullableStringFieldUpdateOperationsInput | string | null
95507
95526
  metaData?: JsonNullValueInput | InputJsonValue
95527
+ data?: JsonNullValueInput | InputJsonValue
95508
95528
  lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
95509
95529
  lastWebhook?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
95510
95530
  posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
95511
95531
  title?: NullableStringFieldUpdateOperationsInput | string | null
95512
95532
  description?: NullableStringFieldUpdateOperationsInput | string | null
95513
95533
  url?: NullableStringFieldUpdateOperationsInput | string | null
95534
+ urlPath?: NullableStringFieldUpdateOperationsInput | string | null
95514
95535
  format?: NullableStringFieldUpdateOperationsInput | string | null
95515
95536
  type?: NullableStringFieldUpdateOperationsInput | string | null
95516
95537
  platform?: NullableStringFieldUpdateOperationsInput | string | null
@@ -100110,32 +100131,32 @@ export namespace Prisma {
100110
100131
  isNot?: BrandAffiliateLinkWhereInput
100111
100132
  }
100112
100133
 
100134
+ export type CampaignToBrandAffiliateLinkCampaignIdBrandAffiliateLinkIdCompoundUniqueInput = {
100135
+ campaignId: number
100136
+ brandAffiliateLinkId: number
100137
+ }
100138
+
100113
100139
  export type CampaignToBrandAffiliateLinkCountOrderByAggregateInput = {
100114
- id?: SortOrder
100115
100140
  campaignId?: SortOrder
100116
100141
  brandAffiliateLinkId?: SortOrder
100117
100142
  }
100118
100143
 
100119
100144
  export type CampaignToBrandAffiliateLinkAvgOrderByAggregateInput = {
100120
- id?: SortOrder
100121
100145
  campaignId?: SortOrder
100122
100146
  brandAffiliateLinkId?: SortOrder
100123
100147
  }
100124
100148
 
100125
100149
  export type CampaignToBrandAffiliateLinkMaxOrderByAggregateInput = {
100126
- id?: SortOrder
100127
100150
  campaignId?: SortOrder
100128
100151
  brandAffiliateLinkId?: SortOrder
100129
100152
  }
100130
100153
 
100131
100154
  export type CampaignToBrandAffiliateLinkMinOrderByAggregateInput = {
100132
- id?: SortOrder
100133
100155
  campaignId?: SortOrder
100134
100156
  brandAffiliateLinkId?: SortOrder
100135
100157
  }
100136
100158
 
100137
100159
  export type CampaignToBrandAffiliateLinkSumOrderByAggregateInput = {
100138
- id?: SortOrder
100139
100160
  campaignId?: SortOrder
100140
100161
  brandAffiliateLinkId?: SortOrder
100141
100162
  }
@@ -100925,12 +100946,14 @@ export namespace Prisma {
100925
100946
  externalId?: SortOrder
100926
100947
  phylloId?: SortOrder
100927
100948
  metaData?: SortOrder
100949
+ data?: SortOrder
100928
100950
  lastFetched?: SortOrder
100929
100951
  lastWebhook?: SortOrder
100930
100952
  posted?: SortOrder
100931
100953
  title?: SortOrder
100932
100954
  description?: SortOrder
100933
100955
  url?: SortOrder
100956
+ urlPath?: SortOrder
100934
100957
  format?: SortOrder
100935
100958
  type?: SortOrder
100936
100959
  platform?: SortOrder
@@ -100984,6 +101007,7 @@ export namespace Prisma {
100984
101007
  title?: SortOrder
100985
101008
  description?: SortOrder
100986
101009
  url?: SortOrder
101010
+ urlPath?: SortOrder
100987
101011
  format?: SortOrder
100988
101012
  type?: SortOrder
100989
101013
  platform?: SortOrder
@@ -101018,6 +101042,7 @@ export namespace Prisma {
101018
101042
  title?: SortOrder
101019
101043
  description?: SortOrder
101020
101044
  url?: SortOrder
101045
+ urlPath?: SortOrder
101021
101046
  format?: SortOrder
101022
101047
  type?: SortOrder
101023
101048
  platform?: SortOrder
@@ -109910,15 +109935,17 @@ export namespace Prisma {
109910
109935
  }
109911
109936
 
109912
109937
  export type SocialPostCreateWithoutUserInput = {
109913
- externalId: string
109938
+ externalId?: string | null
109914
109939
  phylloId?: string | null
109915
109940
  metaData?: JsonNullValueInput | InputJsonValue
109941
+ data?: JsonNullValueInput | InputJsonValue
109916
109942
  lastFetched?: Date | string | null
109917
109943
  lastWebhook?: Date | string | null
109918
109944
  posted?: Date | string | null
109919
109945
  title?: string | null
109920
109946
  description?: string | null
109921
109947
  url?: string | null
109948
+ urlPath?: string | null
109922
109949
  format?: string | null
109923
109950
  type?: string | null
109924
109951
  platform?: string | null
@@ -109945,15 +109972,17 @@ export namespace Prisma {
109945
109972
 
109946
109973
  export type SocialPostUncheckedCreateWithoutUserInput = {
109947
109974
  id?: number
109948
- externalId: string
109975
+ externalId?: string | null
109949
109976
  phylloId?: string | null
109950
109977
  metaData?: JsonNullValueInput | InputJsonValue
109978
+ data?: JsonNullValueInput | InputJsonValue
109951
109979
  lastFetched?: Date | string | null
109952
109980
  lastWebhook?: Date | string | null
109953
109981
  posted?: Date | string | null
109954
109982
  title?: string | null
109955
109983
  description?: string | null
109956
109984
  url?: string | null
109985
+ urlPath?: string | null
109957
109986
  format?: string | null
109958
109987
  type?: string | null
109959
109988
  platform?: string | null
@@ -110856,15 +110885,17 @@ export namespace Prisma {
110856
110885
  OR?: SocialPostScalarWhereInput[]
110857
110886
  NOT?: SocialPostScalarWhereInput | SocialPostScalarWhereInput[]
110858
110887
  id?: IntFilter<"SocialPost"> | number
110859
- externalId?: StringFilter<"SocialPost"> | string
110888
+ externalId?: StringNullableFilter<"SocialPost"> | string | null
110860
110889
  phylloId?: StringNullableFilter<"SocialPost"> | string | null
110861
110890
  metaData?: JsonFilter<"SocialPost">
110891
+ data?: JsonFilter<"SocialPost">
110862
110892
  lastFetched?: DateTimeNullableFilter<"SocialPost"> | Date | string | null
110863
110893
  lastWebhook?: DateTimeNullableFilter<"SocialPost"> | Date | string | null
110864
110894
  posted?: DateTimeNullableFilter<"SocialPost"> | Date | string | null
110865
110895
  title?: StringNullableFilter<"SocialPost"> | string | null
110866
110896
  description?: StringNullableFilter<"SocialPost"> | string | null
110867
110897
  url?: StringNullableFilter<"SocialPost"> | string | null
110898
+ urlPath?: StringNullableFilter<"SocialPost"> | string | null
110868
110899
  format?: StringNullableFilter<"SocialPost"> | string | null
110869
110900
  type?: StringNullableFilter<"SocialPost"> | string | null
110870
110901
  platform?: StringNullableFilter<"SocialPost"> | string | null
@@ -117200,15 +117231,17 @@ export namespace Prisma {
117200
117231
  }
117201
117232
 
117202
117233
  export type SocialPostCreateWithoutCampaignInput = {
117203
- externalId: string
117234
+ externalId?: string | null
117204
117235
  phylloId?: string | null
117205
117236
  metaData?: JsonNullValueInput | InputJsonValue
117237
+ data?: JsonNullValueInput | InputJsonValue
117206
117238
  lastFetched?: Date | string | null
117207
117239
  lastWebhook?: Date | string | null
117208
117240
  posted?: Date | string | null
117209
117241
  title?: string | null
117210
117242
  description?: string | null
117211
117243
  url?: string | null
117244
+ urlPath?: string | null
117212
117245
  format?: string | null
117213
117246
  type?: string | null
117214
117247
  platform?: string | null
@@ -117235,15 +117268,17 @@ export namespace Prisma {
117235
117268
 
117236
117269
  export type SocialPostUncheckedCreateWithoutCampaignInput = {
117237
117270
  id?: number
117238
- externalId: string
117271
+ externalId?: string | null
117239
117272
  phylloId?: string | null
117240
117273
  metaData?: JsonNullValueInput | InputJsonValue
117274
+ data?: JsonNullValueInput | InputJsonValue
117241
117275
  lastFetched?: Date | string | null
117242
117276
  lastWebhook?: Date | string | null
117243
117277
  posted?: Date | string | null
117244
117278
  title?: string | null
117245
117279
  description?: string | null
117246
117280
  url?: string | null
117281
+ urlPath?: string | null
117247
117282
  format?: string | null
117248
117283
  type?: string | null
117249
117284
  platform?: string | null
@@ -117334,7 +117369,6 @@ export namespace Prisma {
117334
117369
  }
117335
117370
 
117336
117371
  export type CampaignToBrandAffiliateLinkUncheckedCreateWithoutCampaignInput = {
117337
- id?: number
117338
117372
  brandAffiliateLinkId: number
117339
117373
  }
117340
117374
 
@@ -117783,7 +117817,6 @@ export namespace Prisma {
117783
117817
  AND?: CampaignToBrandAffiliateLinkScalarWhereInput | CampaignToBrandAffiliateLinkScalarWhereInput[]
117784
117818
  OR?: CampaignToBrandAffiliateLinkScalarWhereInput[]
117785
117819
  NOT?: CampaignToBrandAffiliateLinkScalarWhereInput | CampaignToBrandAffiliateLinkScalarWhereInput[]
117786
- id?: IntFilter<"CampaignToBrandAffiliateLink"> | number
117787
117820
  campaignId?: IntFilter<"CampaignToBrandAffiliateLink"> | number
117788
117821
  brandAffiliateLinkId?: IntFilter<"CampaignToBrandAffiliateLink"> | number
117789
117822
  }
@@ -124393,7 +124426,6 @@ export namespace Prisma {
124393
124426
  }
124394
124427
 
124395
124428
  export type CampaignToBrandAffiliateLinkUncheckedCreateWithoutBrandAffiliateLinkInput = {
124396
- id?: number
124397
124429
  campaignId: number
124398
124430
  }
124399
124431
 
@@ -127843,15 +127875,17 @@ export namespace Prisma {
127843
127875
  }
127844
127876
 
127845
127877
  export type SocialPostCreateWithoutListsInput = {
127846
- externalId: string
127878
+ externalId?: string | null
127847
127879
  phylloId?: string | null
127848
127880
  metaData?: JsonNullValueInput | InputJsonValue
127881
+ data?: JsonNullValueInput | InputJsonValue
127849
127882
  lastFetched?: Date | string | null
127850
127883
  lastWebhook?: Date | string | null
127851
127884
  posted?: Date | string | null
127852
127885
  title?: string | null
127853
127886
  description?: string | null
127854
127887
  url?: string | null
127888
+ urlPath?: string | null
127855
127889
  format?: string | null
127856
127890
  type?: string | null
127857
127891
  platform?: string | null
@@ -127878,15 +127912,17 @@ export namespace Prisma {
127878
127912
 
127879
127913
  export type SocialPostUncheckedCreateWithoutListsInput = {
127880
127914
  id?: number
127881
- externalId: string
127915
+ externalId?: string | null
127882
127916
  phylloId?: string | null
127883
127917
  metaData?: JsonNullValueInput | InputJsonValue
127918
+ data?: JsonNullValueInput | InputJsonValue
127884
127919
  lastFetched?: Date | string | null
127885
127920
  lastWebhook?: Date | string | null
127886
127921
  posted?: Date | string | null
127887
127922
  title?: string | null
127888
127923
  description?: string | null
127889
127924
  url?: string | null
127925
+ urlPath?: string | null
127890
127926
  format?: string | null
127891
127927
  type?: string | null
127892
127928
  platform?: string | null
@@ -127962,15 +127998,17 @@ export namespace Prisma {
127962
127998
  }
127963
127999
 
127964
128000
  export type SocialPostUpdateWithoutListsInput = {
127965
- externalId?: StringFieldUpdateOperationsInput | string
128001
+ externalId?: NullableStringFieldUpdateOperationsInput | string | null
127966
128002
  phylloId?: NullableStringFieldUpdateOperationsInput | string | null
127967
128003
  metaData?: JsonNullValueInput | InputJsonValue
128004
+ data?: JsonNullValueInput | InputJsonValue
127968
128005
  lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
127969
128006
  lastWebhook?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
127970
128007
  posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
127971
128008
  title?: NullableStringFieldUpdateOperationsInput | string | null
127972
128009
  description?: NullableStringFieldUpdateOperationsInput | string | null
127973
128010
  url?: NullableStringFieldUpdateOperationsInput | string | null
128011
+ urlPath?: NullableStringFieldUpdateOperationsInput | string | null
127974
128012
  format?: NullableStringFieldUpdateOperationsInput | string | null
127975
128013
  type?: NullableStringFieldUpdateOperationsInput | string | null
127976
128014
  platform?: NullableStringFieldUpdateOperationsInput | string | null
@@ -127997,15 +128035,17 @@ export namespace Prisma {
127997
128035
 
127998
128036
  export type SocialPostUncheckedUpdateWithoutListsInput = {
127999
128037
  id?: IntFieldUpdateOperationsInput | number
128000
- externalId?: StringFieldUpdateOperationsInput | string
128038
+ externalId?: NullableStringFieldUpdateOperationsInput | string | null
128001
128039
  phylloId?: NullableStringFieldUpdateOperationsInput | string | null
128002
128040
  metaData?: JsonNullValueInput | InputJsonValue
128041
+ data?: JsonNullValueInput | InputJsonValue
128003
128042
  lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
128004
128043
  lastWebhook?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
128005
128044
  posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
128006
128045
  title?: NullableStringFieldUpdateOperationsInput | string | null
128007
128046
  description?: NullableStringFieldUpdateOperationsInput | string | null
128008
128047
  url?: NullableStringFieldUpdateOperationsInput | string | null
128048
+ urlPath?: NullableStringFieldUpdateOperationsInput | string | null
128009
128049
  format?: NullableStringFieldUpdateOperationsInput | string | null
128010
128050
  type?: NullableStringFieldUpdateOperationsInput | string | null
128011
128051
  platform?: NullableStringFieldUpdateOperationsInput | string | null
@@ -131204,15 +131244,17 @@ export namespace Prisma {
131204
131244
 
131205
131245
  export type SocialPostCreateManyUserInput = {
131206
131246
  id?: number
131207
- externalId: string
131247
+ externalId?: string | null
131208
131248
  phylloId?: string | null
131209
131249
  metaData?: JsonNullValueInput | InputJsonValue
131250
+ data?: JsonNullValueInput | InputJsonValue
131210
131251
  lastFetched?: Date | string | null
131211
131252
  lastWebhook?: Date | string | null
131212
131253
  posted?: Date | string | null
131213
131254
  title?: string | null
131214
131255
  description?: string | null
131215
131256
  url?: string | null
131257
+ urlPath?: string | null
131216
131258
  format?: string | null
131217
131259
  type?: string | null
131218
131260
  platform?: string | null
@@ -131637,15 +131679,17 @@ export namespace Prisma {
131637
131679
  }
131638
131680
 
131639
131681
  export type SocialPostUpdateWithoutUserInput = {
131640
- externalId?: StringFieldUpdateOperationsInput | string
131682
+ externalId?: NullableStringFieldUpdateOperationsInput | string | null
131641
131683
  phylloId?: NullableStringFieldUpdateOperationsInput | string | null
131642
131684
  metaData?: JsonNullValueInput | InputJsonValue
131685
+ data?: JsonNullValueInput | InputJsonValue
131643
131686
  lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
131644
131687
  lastWebhook?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
131645
131688
  posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
131646
131689
  title?: NullableStringFieldUpdateOperationsInput | string | null
131647
131690
  description?: NullableStringFieldUpdateOperationsInput | string | null
131648
131691
  url?: NullableStringFieldUpdateOperationsInput | string | null
131692
+ urlPath?: NullableStringFieldUpdateOperationsInput | string | null
131649
131693
  format?: NullableStringFieldUpdateOperationsInput | string | null
131650
131694
  type?: NullableStringFieldUpdateOperationsInput | string | null
131651
131695
  platform?: NullableStringFieldUpdateOperationsInput | string | null
@@ -131672,15 +131716,17 @@ export namespace Prisma {
131672
131716
 
131673
131717
  export type SocialPostUncheckedUpdateWithoutUserInput = {
131674
131718
  id?: IntFieldUpdateOperationsInput | number
131675
- externalId?: StringFieldUpdateOperationsInput | string
131719
+ externalId?: NullableStringFieldUpdateOperationsInput | string | null
131676
131720
  phylloId?: NullableStringFieldUpdateOperationsInput | string | null
131677
131721
  metaData?: JsonNullValueInput | InputJsonValue
131722
+ data?: JsonNullValueInput | InputJsonValue
131678
131723
  lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
131679
131724
  lastWebhook?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
131680
131725
  posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
131681
131726
  title?: NullableStringFieldUpdateOperationsInput | string | null
131682
131727
  description?: NullableStringFieldUpdateOperationsInput | string | null
131683
131728
  url?: NullableStringFieldUpdateOperationsInput | string | null
131729
+ urlPath?: NullableStringFieldUpdateOperationsInput | string | null
131684
131730
  format?: NullableStringFieldUpdateOperationsInput | string | null
131685
131731
  type?: NullableStringFieldUpdateOperationsInput | string | null
131686
131732
  platform?: NullableStringFieldUpdateOperationsInput | string | null
@@ -131707,15 +131753,17 @@ export namespace Prisma {
131707
131753
 
131708
131754
  export type SocialPostUncheckedUpdateManyWithoutUserInput = {
131709
131755
  id?: IntFieldUpdateOperationsInput | number
131710
- externalId?: StringFieldUpdateOperationsInput | string
131756
+ externalId?: NullableStringFieldUpdateOperationsInput | string | null
131711
131757
  phylloId?: NullableStringFieldUpdateOperationsInput | string | null
131712
131758
  metaData?: JsonNullValueInput | InputJsonValue
131759
+ data?: JsonNullValueInput | InputJsonValue
131713
131760
  lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
131714
131761
  lastWebhook?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
131715
131762
  posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
131716
131763
  title?: NullableStringFieldUpdateOperationsInput | string | null
131717
131764
  description?: NullableStringFieldUpdateOperationsInput | string | null
131718
131765
  url?: NullableStringFieldUpdateOperationsInput | string | null
131766
+ urlPath?: NullableStringFieldUpdateOperationsInput | string | null
131719
131767
  format?: NullableStringFieldUpdateOperationsInput | string | null
131720
131768
  type?: NullableStringFieldUpdateOperationsInput | string | null
131721
131769
  platform?: NullableStringFieldUpdateOperationsInput | string | null
@@ -133106,15 +133154,17 @@ export namespace Prisma {
133106
133154
 
133107
133155
  export type SocialPostCreateManyCampaignInput = {
133108
133156
  id?: number
133109
- externalId: string
133157
+ externalId?: string | null
133110
133158
  phylloId?: string | null
133111
133159
  metaData?: JsonNullValueInput | InputJsonValue
133160
+ data?: JsonNullValueInput | InputJsonValue
133112
133161
  lastFetched?: Date | string | null
133113
133162
  lastWebhook?: Date | string | null
133114
133163
  posted?: Date | string | null
133115
133164
  title?: string | null
133116
133165
  description?: string | null
133117
133166
  url?: string | null
133167
+ urlPath?: string | null
133118
133168
  format?: string | null
133119
133169
  type?: string | null
133120
133170
  platform?: string | null
@@ -133155,7 +133205,6 @@ export namespace Prisma {
133155
133205
  }
133156
133206
 
133157
133207
  export type CampaignToBrandAffiliateLinkCreateManyCampaignInput = {
133158
- id?: number
133159
133208
  brandAffiliateLinkId: number
133160
133209
  }
133161
133210
 
@@ -133393,15 +133442,17 @@ export namespace Prisma {
133393
133442
  }
133394
133443
 
133395
133444
  export type SocialPostUpdateWithoutCampaignInput = {
133396
- externalId?: StringFieldUpdateOperationsInput | string
133445
+ externalId?: NullableStringFieldUpdateOperationsInput | string | null
133397
133446
  phylloId?: NullableStringFieldUpdateOperationsInput | string | null
133398
133447
  metaData?: JsonNullValueInput | InputJsonValue
133448
+ data?: JsonNullValueInput | InputJsonValue
133399
133449
  lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
133400
133450
  lastWebhook?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
133401
133451
  posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
133402
133452
  title?: NullableStringFieldUpdateOperationsInput | string | null
133403
133453
  description?: NullableStringFieldUpdateOperationsInput | string | null
133404
133454
  url?: NullableStringFieldUpdateOperationsInput | string | null
133455
+ urlPath?: NullableStringFieldUpdateOperationsInput | string | null
133405
133456
  format?: NullableStringFieldUpdateOperationsInput | string | null
133406
133457
  type?: NullableStringFieldUpdateOperationsInput | string | null
133407
133458
  platform?: NullableStringFieldUpdateOperationsInput | string | null
@@ -133428,15 +133479,17 @@ export namespace Prisma {
133428
133479
 
133429
133480
  export type SocialPostUncheckedUpdateWithoutCampaignInput = {
133430
133481
  id?: IntFieldUpdateOperationsInput | number
133431
- externalId?: StringFieldUpdateOperationsInput | string
133482
+ externalId?: NullableStringFieldUpdateOperationsInput | string | null
133432
133483
  phylloId?: NullableStringFieldUpdateOperationsInput | string | null
133433
133484
  metaData?: JsonNullValueInput | InputJsonValue
133485
+ data?: JsonNullValueInput | InputJsonValue
133434
133486
  lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
133435
133487
  lastWebhook?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
133436
133488
  posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
133437
133489
  title?: NullableStringFieldUpdateOperationsInput | string | null
133438
133490
  description?: NullableStringFieldUpdateOperationsInput | string | null
133439
133491
  url?: NullableStringFieldUpdateOperationsInput | string | null
133492
+ urlPath?: NullableStringFieldUpdateOperationsInput | string | null
133440
133493
  format?: NullableStringFieldUpdateOperationsInput | string | null
133441
133494
  type?: NullableStringFieldUpdateOperationsInput | string | null
133442
133495
  platform?: NullableStringFieldUpdateOperationsInput | string | null
@@ -133463,15 +133516,17 @@ export namespace Prisma {
133463
133516
 
133464
133517
  export type SocialPostUncheckedUpdateManyWithoutCampaignInput = {
133465
133518
  id?: IntFieldUpdateOperationsInput | number
133466
- externalId?: StringFieldUpdateOperationsInput | string
133519
+ externalId?: NullableStringFieldUpdateOperationsInput | string | null
133467
133520
  phylloId?: NullableStringFieldUpdateOperationsInput | string | null
133468
133521
  metaData?: JsonNullValueInput | InputJsonValue
133522
+ data?: JsonNullValueInput | InputJsonValue
133469
133523
  lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
133470
133524
  lastWebhook?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
133471
133525
  posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
133472
133526
  title?: NullableStringFieldUpdateOperationsInput | string | null
133473
133527
  description?: NullableStringFieldUpdateOperationsInput | string | null
133474
133528
  url?: NullableStringFieldUpdateOperationsInput | string | null
133529
+ urlPath?: NullableStringFieldUpdateOperationsInput | string | null
133475
133530
  format?: NullableStringFieldUpdateOperationsInput | string | null
133476
133531
  type?: NullableStringFieldUpdateOperationsInput | string | null
133477
133532
  platform?: NullableStringFieldUpdateOperationsInput | string | null
@@ -133547,12 +133602,10 @@ export namespace Prisma {
133547
133602
  }
133548
133603
 
133549
133604
  export type CampaignToBrandAffiliateLinkUncheckedUpdateWithoutCampaignInput = {
133550
- id?: IntFieldUpdateOperationsInput | number
133551
133605
  brandAffiliateLinkId?: IntFieldUpdateOperationsInput | number
133552
133606
  }
133553
133607
 
133554
133608
  export type CampaignToBrandAffiliateLinkUncheckedUpdateManyWithoutCampaignInput = {
133555
- id?: IntFieldUpdateOperationsInput | number
133556
133609
  brandAffiliateLinkId?: IntFieldUpdateOperationsInput | number
133557
133610
  }
133558
133611
 
@@ -134281,7 +134334,6 @@ export namespace Prisma {
134281
134334
  }
134282
134335
 
134283
134336
  export type CampaignToBrandAffiliateLinkCreateManyBrandAffiliateLinkInput = {
134284
- id?: number
134285
134337
  campaignId: number
134286
134338
  }
134287
134339
 
@@ -134312,12 +134364,10 @@ export namespace Prisma {
134312
134364
  }
134313
134365
 
134314
134366
  export type CampaignToBrandAffiliateLinkUncheckedUpdateWithoutBrandAffiliateLinkInput = {
134315
- id?: IntFieldUpdateOperationsInput | number
134316
134367
  campaignId?: IntFieldUpdateOperationsInput | number
134317
134368
  }
134318
134369
 
134319
134370
  export type CampaignToBrandAffiliateLinkUncheckedUpdateManyWithoutBrandAffiliateLinkInput = {
134320
- id?: IntFieldUpdateOperationsInput | number
134321
134371
  campaignId?: IntFieldUpdateOperationsInput | number
134322
134372
  }
134323
134373