@creator.co/creatorco-prisma-client 1.0.69 → 1.0.71

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/index-browser.js CHANGED
@@ -625,6 +625,8 @@ exports.Prisma.SocialPostScalarFieldEnum = {
625
625
  exports.Prisma.PublicSocialPostScalarFieldEnum = {
626
626
  id: 'id',
627
627
  socialPostId: 'socialPostId',
628
+ lastFetched: 'lastFetched',
629
+ posted: 'posted',
628
630
  views: 'views',
629
631
  likes: 'likes',
630
632
  comments: 'comments',
package/index.d.ts CHANGED
@@ -53419,6 +53419,8 @@ export namespace Prisma {
53419
53419
  export type PublicSocialPostMinAggregateOutputType = {
53420
53420
  id: number | null
53421
53421
  socialPostId: number | null
53422
+ lastFetched: Date | null
53423
+ posted: Date | null
53422
53424
  views: number | null
53423
53425
  likes: number | null
53424
53426
  comments: number | null
@@ -53429,6 +53431,8 @@ export namespace Prisma {
53429
53431
  export type PublicSocialPostMaxAggregateOutputType = {
53430
53432
  id: number | null
53431
53433
  socialPostId: number | null
53434
+ lastFetched: Date | null
53435
+ posted: Date | null
53432
53436
  views: number | null
53433
53437
  likes: number | null
53434
53438
  comments: number | null
@@ -53439,6 +53443,8 @@ export namespace Prisma {
53439
53443
  export type PublicSocialPostCountAggregateOutputType = {
53440
53444
  id: number
53441
53445
  socialPostId: number
53446
+ lastFetched: number
53447
+ posted: number
53442
53448
  views: number
53443
53449
  likes: number
53444
53450
  comments: number
@@ -53471,6 +53477,8 @@ export namespace Prisma {
53471
53477
  export type PublicSocialPostMinAggregateInputType = {
53472
53478
  id?: true
53473
53479
  socialPostId?: true
53480
+ lastFetched?: true
53481
+ posted?: true
53474
53482
  views?: true
53475
53483
  likes?: true
53476
53484
  comments?: true
@@ -53481,6 +53489,8 @@ export namespace Prisma {
53481
53489
  export type PublicSocialPostMaxAggregateInputType = {
53482
53490
  id?: true
53483
53491
  socialPostId?: true
53492
+ lastFetched?: true
53493
+ posted?: true
53484
53494
  views?: true
53485
53495
  likes?: true
53486
53496
  comments?: true
@@ -53491,6 +53501,8 @@ export namespace Prisma {
53491
53501
  export type PublicSocialPostCountAggregateInputType = {
53492
53502
  id?: true
53493
53503
  socialPostId?: true
53504
+ lastFetched?: true
53505
+ posted?: true
53494
53506
  views?: true
53495
53507
  likes?: true
53496
53508
  comments?: true
@@ -53588,6 +53600,8 @@ export namespace Prisma {
53588
53600
  export type PublicSocialPostGroupByOutputType = {
53589
53601
  id: number
53590
53602
  socialPostId: number
53603
+ lastFetched: Date | null
53604
+ posted: Date | null
53591
53605
  views: number | null
53592
53606
  likes: number | null
53593
53607
  comments: number | null
@@ -53617,6 +53631,8 @@ export namespace Prisma {
53617
53631
  export type PublicSocialPostSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
53618
53632
  id?: boolean
53619
53633
  socialPostId?: boolean
53634
+ lastFetched?: boolean
53635
+ posted?: boolean
53620
53636
  views?: boolean
53621
53637
  likes?: boolean
53622
53638
  comments?: boolean
@@ -53628,6 +53644,8 @@ export namespace Prisma {
53628
53644
  export type PublicSocialPostSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
53629
53645
  id?: boolean
53630
53646
  socialPostId?: boolean
53647
+ lastFetched?: boolean
53648
+ posted?: boolean
53631
53649
  views?: boolean
53632
53650
  likes?: boolean
53633
53651
  comments?: boolean
@@ -53639,6 +53657,8 @@ export namespace Prisma {
53639
53657
  export type PublicSocialPostSelectScalar = {
53640
53658
  id?: boolean
53641
53659
  socialPostId?: boolean
53660
+ lastFetched?: boolean
53661
+ posted?: boolean
53642
53662
  views?: boolean
53643
53663
  likes?: boolean
53644
53664
  comments?: boolean
@@ -53661,6 +53681,8 @@ export namespace Prisma {
53661
53681
  scalars: $Extensions.GetPayloadResult<{
53662
53682
  id: number
53663
53683
  socialPostId: number
53684
+ lastFetched: Date | null
53685
+ posted: Date | null
53664
53686
  views: number | null
53665
53687
  likes: number | null
53666
53688
  comments: number | null
@@ -54088,6 +54110,8 @@ export namespace Prisma {
54088
54110
  interface PublicSocialPostFieldRefs {
54089
54111
  readonly id: FieldRef<"PublicSocialPost", 'Int'>
54090
54112
  readonly socialPostId: FieldRef<"PublicSocialPost", 'Int'>
54113
+ readonly lastFetched: FieldRef<"PublicSocialPost", 'DateTime'>
54114
+ readonly posted: FieldRef<"PublicSocialPost", 'DateTime'>
54091
54115
  readonly views: FieldRef<"PublicSocialPost", 'Int'>
54092
54116
  readonly likes: FieldRef<"PublicSocialPost", 'Int'>
54093
54117
  readonly comments: FieldRef<"PublicSocialPost", 'Int'>
@@ -101952,6 +101976,8 @@ export namespace Prisma {
101952
101976
  export const PublicSocialPostScalarFieldEnum: {
101953
101977
  id: 'id',
101954
101978
  socialPostId: 'socialPostId',
101979
+ lastFetched: 'lastFetched',
101980
+ posted: 'posted',
101955
101981
  views: 'views',
101956
101982
  likes: 'likes',
101957
101983
  comments: 'comments',
@@ -106949,6 +106975,8 @@ export namespace Prisma {
106949
106975
  NOT?: PublicSocialPostWhereInput | PublicSocialPostWhereInput[]
106950
106976
  id?: IntFilter<"PublicSocialPost"> | number
106951
106977
  socialPostId?: IntFilter<"PublicSocialPost"> | number
106978
+ lastFetched?: DateTimeNullableFilter<"PublicSocialPost"> | Date | string | null
106979
+ posted?: DateTimeNullableFilter<"PublicSocialPost"> | Date | string | null
106952
106980
  views?: IntNullableFilter<"PublicSocialPost"> | number | null
106953
106981
  likes?: IntNullableFilter<"PublicSocialPost"> | number | null
106954
106982
  comments?: IntNullableFilter<"PublicSocialPost"> | number | null
@@ -106960,6 +106988,8 @@ export namespace Prisma {
106960
106988
  export type PublicSocialPostOrderByWithRelationAndSearchRelevanceInput = {
106961
106989
  id?: SortOrder
106962
106990
  socialPostId?: SortOrder
106991
+ lastFetched?: SortOrderInput | SortOrder
106992
+ posted?: SortOrderInput | SortOrder
106963
106993
  views?: SortOrderInput | SortOrder
106964
106994
  likes?: SortOrderInput | SortOrder
106965
106995
  comments?: SortOrderInput | SortOrder
@@ -106974,6 +107004,8 @@ export namespace Prisma {
106974
107004
  AND?: PublicSocialPostWhereInput | PublicSocialPostWhereInput[]
106975
107005
  OR?: PublicSocialPostWhereInput[]
106976
107006
  NOT?: PublicSocialPostWhereInput | PublicSocialPostWhereInput[]
107007
+ lastFetched?: DateTimeNullableFilter<"PublicSocialPost"> | Date | string | null
107008
+ posted?: DateTimeNullableFilter<"PublicSocialPost"> | Date | string | null
106977
107009
  views?: IntNullableFilter<"PublicSocialPost"> | number | null
106978
107010
  likes?: IntNullableFilter<"PublicSocialPost"> | number | null
106979
107011
  comments?: IntNullableFilter<"PublicSocialPost"> | number | null
@@ -106985,6 +107017,8 @@ export namespace Prisma {
106985
107017
  export type PublicSocialPostOrderByWithAggregationInput = {
106986
107018
  id?: SortOrder
106987
107019
  socialPostId?: SortOrder
107020
+ lastFetched?: SortOrderInput | SortOrder
107021
+ posted?: SortOrderInput | SortOrder
106988
107022
  views?: SortOrderInput | SortOrder
106989
107023
  likes?: SortOrderInput | SortOrder
106990
107024
  comments?: SortOrderInput | SortOrder
@@ -107003,6 +107037,8 @@ export namespace Prisma {
107003
107037
  NOT?: PublicSocialPostScalarWhereWithAggregatesInput | PublicSocialPostScalarWhereWithAggregatesInput[]
107004
107038
  id?: IntWithAggregatesFilter<"PublicSocialPost"> | number
107005
107039
  socialPostId?: IntWithAggregatesFilter<"PublicSocialPost"> | number
107040
+ lastFetched?: DateTimeNullableWithAggregatesFilter<"PublicSocialPost"> | Date | string | null
107041
+ posted?: DateTimeNullableWithAggregatesFilter<"PublicSocialPost"> | Date | string | null
107006
107042
  views?: IntNullableWithAggregatesFilter<"PublicSocialPost"> | number | null
107007
107043
  likes?: IntNullableWithAggregatesFilter<"PublicSocialPost"> | number | null
107008
107044
  comments?: IntNullableWithAggregatesFilter<"PublicSocialPost"> | number | null
@@ -114172,6 +114208,8 @@ export namespace Prisma {
114172
114208
  }
114173
114209
 
114174
114210
  export type PublicSocialPostCreateInput = {
114211
+ lastFetched?: Date | string | null
114212
+ posted?: Date | string | null
114175
114213
  views?: number | null
114176
114214
  likes?: number | null
114177
114215
  comments?: number | null
@@ -114183,6 +114221,8 @@ export namespace Prisma {
114183
114221
  export type PublicSocialPostUncheckedCreateInput = {
114184
114222
  id?: number
114185
114223
  socialPostId: number
114224
+ lastFetched?: Date | string | null
114225
+ posted?: Date | string | null
114186
114226
  views?: number | null
114187
114227
  likes?: number | null
114188
114228
  comments?: number | null
@@ -114191,6 +114231,8 @@ export namespace Prisma {
114191
114231
  }
114192
114232
 
114193
114233
  export type PublicSocialPostUpdateInput = {
114234
+ lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
114235
+ posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
114194
114236
  views?: NullableIntFieldUpdateOperationsInput | number | null
114195
114237
  likes?: NullableIntFieldUpdateOperationsInput | number | null
114196
114238
  comments?: NullableIntFieldUpdateOperationsInput | number | null
@@ -114202,6 +114244,8 @@ export namespace Prisma {
114202
114244
  export type PublicSocialPostUncheckedUpdateInput = {
114203
114245
  id?: IntFieldUpdateOperationsInput | number
114204
114246
  socialPostId?: IntFieldUpdateOperationsInput | number
114247
+ lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
114248
+ posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
114205
114249
  views?: NullableIntFieldUpdateOperationsInput | number | null
114206
114250
  likes?: NullableIntFieldUpdateOperationsInput | number | null
114207
114251
  comments?: NullableIntFieldUpdateOperationsInput | number | null
@@ -114212,6 +114256,8 @@ export namespace Prisma {
114212
114256
  export type PublicSocialPostCreateManyInput = {
114213
114257
  id?: number
114214
114258
  socialPostId: number
114259
+ lastFetched?: Date | string | null
114260
+ posted?: Date | string | null
114215
114261
  views?: number | null
114216
114262
  likes?: number | null
114217
114263
  comments?: number | null
@@ -114220,6 +114266,8 @@ export namespace Prisma {
114220
114266
  }
114221
114267
 
114222
114268
  export type PublicSocialPostUpdateManyMutationInput = {
114269
+ lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
114270
+ posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
114223
114271
  views?: NullableIntFieldUpdateOperationsInput | number | null
114224
114272
  likes?: NullableIntFieldUpdateOperationsInput | number | null
114225
114273
  comments?: NullableIntFieldUpdateOperationsInput | number | null
@@ -114230,6 +114278,8 @@ export namespace Prisma {
114230
114278
  export type PublicSocialPostUncheckedUpdateManyInput = {
114231
114279
  id?: IntFieldUpdateOperationsInput | number
114232
114280
  socialPostId?: IntFieldUpdateOperationsInput | number
114281
+ lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
114282
+ posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
114233
114283
  views?: NullableIntFieldUpdateOperationsInput | number | null
114234
114284
  likes?: NullableIntFieldUpdateOperationsInput | number | null
114235
114285
  comments?: NullableIntFieldUpdateOperationsInput | number | null
@@ -120834,6 +120884,8 @@ export namespace Prisma {
120834
120884
  export type PublicSocialPostCountOrderByAggregateInput = {
120835
120885
  id?: SortOrder
120836
120886
  socialPostId?: SortOrder
120887
+ lastFetched?: SortOrder
120888
+ posted?: SortOrder
120837
120889
  views?: SortOrder
120838
120890
  likes?: SortOrder
120839
120891
  comments?: SortOrder
@@ -120854,6 +120906,8 @@ export namespace Prisma {
120854
120906
  export type PublicSocialPostMaxOrderByAggregateInput = {
120855
120907
  id?: SortOrder
120856
120908
  socialPostId?: SortOrder
120909
+ lastFetched?: SortOrder
120910
+ posted?: SortOrder
120857
120911
  views?: SortOrder
120858
120912
  likes?: SortOrder
120859
120913
  comments?: SortOrder
@@ -120864,6 +120918,8 @@ export namespace Prisma {
120864
120918
  export type PublicSocialPostMinOrderByAggregateInput = {
120865
120919
  id?: SortOrder
120866
120920
  socialPostId?: SortOrder
120921
+ lastFetched?: SortOrder
120922
+ posted?: SortOrder
120867
120923
  views?: SortOrder
120868
120924
  likes?: SortOrder
120869
120925
  comments?: SortOrder
@@ -148198,6 +148254,8 @@ export namespace Prisma {
148198
148254
  }
148199
148255
 
148200
148256
  export type PublicSocialPostCreateWithoutSocialPostInput = {
148257
+ lastFetched?: Date | string | null
148258
+ posted?: Date | string | null
148201
148259
  views?: number | null
148202
148260
  likes?: number | null
148203
148261
  comments?: number | null
@@ -148207,6 +148265,8 @@ export namespace Prisma {
148207
148265
 
148208
148266
  export type PublicSocialPostUncheckedCreateWithoutSocialPostInput = {
148209
148267
  id?: number
148268
+ lastFetched?: Date | string | null
148269
+ posted?: Date | string | null
148210
148270
  views?: number | null
148211
148271
  likes?: number | null
148212
148272
  comments?: number | null
@@ -148544,6 +148604,8 @@ export namespace Prisma {
148544
148604
  }
148545
148605
 
148546
148606
  export type PublicSocialPostUpdateWithoutSocialPostInput = {
148607
+ lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
148608
+ posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
148547
148609
  views?: NullableIntFieldUpdateOperationsInput | number | null
148548
148610
  likes?: NullableIntFieldUpdateOperationsInput | number | null
148549
148611
  comments?: NullableIntFieldUpdateOperationsInput | number | null
@@ -148553,6 +148615,8 @@ export namespace Prisma {
148553
148615
 
148554
148616
  export type PublicSocialPostUncheckedUpdateWithoutSocialPostInput = {
148555
148617
  id?: IntFieldUpdateOperationsInput | number
148618
+ lastFetched?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
148619
+ posted?: NullableDateTimeFieldUpdateOperationsInput | Date | string | null
148556
148620
  views?: NullableIntFieldUpdateOperationsInput | number | null
148557
148621
  likes?: NullableIntFieldUpdateOperationsInput | number | null
148558
148622
  comments?: NullableIntFieldUpdateOperationsInput | number | null