@creator.co/creatorco-prisma-client 1.0.47 → 1.0.48

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
@@ -993,7 +993,8 @@ exports.Prisma.ShopifySaleScalarFieldEnum = {
993
993
  id: 'id',
994
994
  amount: 'amount',
995
995
  metaData: 'metaData',
996
- discountCodeId: 'discountCodeId'
996
+ discountCodeId: 'discountCodeId',
997
+ created: 'created'
997
998
  };
998
999
 
999
1000
  exports.Prisma.SortOrder = {
package/index.d.ts CHANGED
@@ -87949,7 +87949,7 @@ export namespace Prisma {
87949
87949
  export type ShopifyDiscountCodeSumAggregateOutputType = {
87950
87950
  id: number | null
87951
87951
  shopifyDiscountCodeId: number | null
87952
- shopifyPriceRuleId: number | null
87952
+ shopifyPriceRuleId: bigint | null
87953
87953
  optInId: number | null
87954
87954
  }
87955
87955
 
@@ -87957,7 +87957,7 @@ export namespace Prisma {
87957
87957
  id: number | null
87958
87958
  code: string | null
87959
87959
  shopifyDiscountCodeId: number | null
87960
- shopifyPriceRuleId: number | null
87960
+ shopifyPriceRuleId: bigint | null
87961
87961
  optInId: number | null
87962
87962
  }
87963
87963
 
@@ -87965,7 +87965,7 @@ export namespace Prisma {
87965
87965
  id: number | null
87966
87966
  code: string | null
87967
87967
  shopifyDiscountCodeId: number | null
87968
- shopifyPriceRuleId: number | null
87968
+ shopifyPriceRuleId: bigint | null
87969
87969
  optInId: number | null
87970
87970
  }
87971
87971
 
@@ -88108,7 +88108,7 @@ export namespace Prisma {
88108
88108
  id: number
88109
88109
  code: string
88110
88110
  shopifyDiscountCodeId: number | null
88111
- shopifyPriceRuleId: number | null
88111
+ shopifyPriceRuleId: bigint | null
88112
88112
  optInId: number
88113
88113
  _count: ShopifyDiscountCodeCountAggregateOutputType | null
88114
88114
  _avg: ShopifyDiscountCodeAvgAggregateOutputType | null
@@ -88178,7 +88178,7 @@ export namespace Prisma {
88178
88178
  id: number
88179
88179
  code: string
88180
88180
  shopifyDiscountCodeId: number | null
88181
- shopifyPriceRuleId: number | null
88181
+ shopifyPriceRuleId: bigint | null
88182
88182
  optInId: number
88183
88183
  }, ExtArgs["result"]["shopifyDiscountCode"]>
88184
88184
  composites: {}
@@ -88605,7 +88605,7 @@ export namespace Prisma {
88605
88605
  readonly id: FieldRef<"ShopifyDiscountCode", 'Int'>
88606
88606
  readonly code: FieldRef<"ShopifyDiscountCode", 'String'>
88607
88607
  readonly shopifyDiscountCodeId: FieldRef<"ShopifyDiscountCode", 'Int'>
88608
- readonly shopifyPriceRuleId: FieldRef<"ShopifyDiscountCode", 'Int'>
88608
+ readonly shopifyPriceRuleId: FieldRef<"ShopifyDiscountCode", 'BigInt'>
88609
88609
  readonly optInId: FieldRef<"ShopifyDiscountCode", 'Int'>
88610
88610
  }
88611
88611
 
@@ -88987,12 +88987,14 @@ export namespace Prisma {
88987
88987
  id: number | null
88988
88988
  amount: number | null
88989
88989
  discountCodeId: number | null
88990
+ created: Date | null
88990
88991
  }
88991
88992
 
88992
88993
  export type ShopifySaleMaxAggregateOutputType = {
88993
88994
  id: number | null
88994
88995
  amount: number | null
88995
88996
  discountCodeId: number | null
88997
+ created: Date | null
88996
88998
  }
88997
88999
 
88998
89000
  export type ShopifySaleCountAggregateOutputType = {
@@ -89000,6 +89002,7 @@ export namespace Prisma {
89000
89002
  amount: number
89001
89003
  metaData: number
89002
89004
  discountCodeId: number
89005
+ created: number
89003
89006
  _all: number
89004
89007
  }
89005
89008
 
@@ -89020,12 +89023,14 @@ export namespace Prisma {
89020
89023
  id?: true
89021
89024
  amount?: true
89022
89025
  discountCodeId?: true
89026
+ created?: true
89023
89027
  }
89024
89028
 
89025
89029
  export type ShopifySaleMaxAggregateInputType = {
89026
89030
  id?: true
89027
89031
  amount?: true
89028
89032
  discountCodeId?: true
89033
+ created?: true
89029
89034
  }
89030
89035
 
89031
89036
  export type ShopifySaleCountAggregateInputType = {
@@ -89033,6 +89038,7 @@ export namespace Prisma {
89033
89038
  amount?: true
89034
89039
  metaData?: true
89035
89040
  discountCodeId?: true
89041
+ created?: true
89036
89042
  _all?: true
89037
89043
  }
89038
89044
 
@@ -89127,6 +89133,7 @@ export namespace Prisma {
89127
89133
  amount: number
89128
89134
  metaData: JsonValue | null
89129
89135
  discountCodeId: number
89136
+ created: Date
89130
89137
  _count: ShopifySaleCountAggregateOutputType | null
89131
89138
  _avg: ShopifySaleAvgAggregateOutputType | null
89132
89139
  _sum: ShopifySaleSumAggregateOutputType | null
@@ -89153,6 +89160,7 @@ export namespace Prisma {
89153
89160
  amount?: boolean
89154
89161
  metaData?: boolean
89155
89162
  discountCodeId?: boolean
89163
+ created?: boolean
89156
89164
  discountCode?: boolean | ShopifyDiscountCodeDefaultArgs<ExtArgs>
89157
89165
  }, ExtArgs["result"]["shopifySale"]>
89158
89166
 
@@ -89161,6 +89169,7 @@ export namespace Prisma {
89161
89169
  amount?: boolean
89162
89170
  metaData?: boolean
89163
89171
  discountCodeId?: boolean
89172
+ created?: boolean
89164
89173
  discountCode?: boolean | ShopifyDiscountCodeDefaultArgs<ExtArgs>
89165
89174
  }, ExtArgs["result"]["shopifySale"]>
89166
89175
 
@@ -89169,6 +89178,7 @@ export namespace Prisma {
89169
89178
  amount?: boolean
89170
89179
  metaData?: boolean
89171
89180
  discountCodeId?: boolean
89181
+ created?: boolean
89172
89182
  }
89173
89183
 
89174
89184
  export type ShopifySaleInclude<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = {
@@ -89188,6 +89198,7 @@ export namespace Prisma {
89188
89198
  amount: number
89189
89199
  metaData: Prisma.JsonValue | null
89190
89200
  discountCodeId: number
89201
+ created: Date
89191
89202
  }, ExtArgs["result"]["shopifySale"]>
89192
89203
  composites: {}
89193
89204
  }
@@ -89612,6 +89623,7 @@ export namespace Prisma {
89612
89623
  readonly amount: FieldRef<"ShopifySale", 'Float'>
89613
89624
  readonly metaData: FieldRef<"ShopifySale", 'Json'>
89614
89625
  readonly discountCodeId: FieldRef<"ShopifySale", 'Int'>
89626
+ readonly created: FieldRef<"ShopifySale", 'DateTime'>
89615
89627
  }
89616
89628
 
89617
89629
 
@@ -91051,7 +91063,8 @@ export namespace Prisma {
91051
91063
  id: 'id',
91052
91064
  amount: 'amount',
91053
91065
  metaData: 'metaData',
91054
- discountCodeId: 'discountCodeId'
91066
+ discountCodeId: 'discountCodeId',
91067
+ created: 'created'
91055
91068
  };
91056
91069
 
91057
91070
  export type ShopifySaleScalarFieldEnum = (typeof ShopifySaleScalarFieldEnum)[keyof typeof ShopifySaleScalarFieldEnum]
@@ -91756,6 +91769,20 @@ export namespace Prisma {
91756
91769
  */
91757
91770
  export type ListEnumShopifyStoreSyncStatusFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'ShopifyStoreSyncStatus[]'>
91758
91771
 
91772
+
91773
+
91774
+ /**
91775
+ * Reference to a field of type 'BigInt'
91776
+ */
91777
+ export type BigIntFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'BigInt'>
91778
+
91779
+
91780
+
91781
+ /**
91782
+ * Reference to a field of type 'BigInt[]'
91783
+ */
91784
+ export type ListBigIntFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'BigInt[]'>
91785
+
91759
91786
  /**
91760
91787
  * Deep Input Types
91761
91788
  */
@@ -97825,7 +97852,7 @@ export namespace Prisma {
97825
97852
  id?: IntFilter<"ShopifyDiscountCode"> | number
97826
97853
  code?: StringFilter<"ShopifyDiscountCode"> | string
97827
97854
  shopifyDiscountCodeId?: IntNullableFilter<"ShopifyDiscountCode"> | number | null
97828
- shopifyPriceRuleId?: IntNullableFilter<"ShopifyDiscountCode"> | number | null
97855
+ shopifyPriceRuleId?: BigIntNullableFilter<"ShopifyDiscountCode"> | bigint | number | null
97829
97856
  optInId?: IntFilter<"ShopifyDiscountCode"> | number
97830
97857
  optIn?: XOR<OptInRelationFilter, OptInWhereInput>
97831
97858
  shopifySales?: ShopifySaleListRelationFilter
@@ -97849,7 +97876,7 @@ export namespace Prisma {
97849
97876
  AND?: ShopifyDiscountCodeWhereInput | ShopifyDiscountCodeWhereInput[]
97850
97877
  OR?: ShopifyDiscountCodeWhereInput[]
97851
97878
  NOT?: ShopifyDiscountCodeWhereInput | ShopifyDiscountCodeWhereInput[]
97852
- shopifyPriceRuleId?: IntNullableFilter<"ShopifyDiscountCode"> | number | null
97879
+ shopifyPriceRuleId?: BigIntNullableFilter<"ShopifyDiscountCode"> | bigint | number | null
97853
97880
  optInId?: IntFilter<"ShopifyDiscountCode"> | number
97854
97881
  optIn?: XOR<OptInRelationFilter, OptInWhereInput>
97855
97882
  shopifySales?: ShopifySaleListRelationFilter
@@ -97875,7 +97902,7 @@ export namespace Prisma {
97875
97902
  id?: IntWithAggregatesFilter<"ShopifyDiscountCode"> | number
97876
97903
  code?: StringWithAggregatesFilter<"ShopifyDiscountCode"> | string
97877
97904
  shopifyDiscountCodeId?: IntNullableWithAggregatesFilter<"ShopifyDiscountCode"> | number | null
97878
- shopifyPriceRuleId?: IntNullableWithAggregatesFilter<"ShopifyDiscountCode"> | number | null
97905
+ shopifyPriceRuleId?: BigIntNullableWithAggregatesFilter<"ShopifyDiscountCode"> | bigint | number | null
97879
97906
  optInId?: IntWithAggregatesFilter<"ShopifyDiscountCode"> | number
97880
97907
  }
97881
97908
 
@@ -97887,6 +97914,7 @@ export namespace Prisma {
97887
97914
  amount?: FloatFilter<"ShopifySale"> | number
97888
97915
  metaData?: JsonNullableFilter<"ShopifySale">
97889
97916
  discountCodeId?: IntFilter<"ShopifySale"> | number
97917
+ created?: DateTimeFilter<"ShopifySale"> | Date | string
97890
97918
  discountCode?: XOR<ShopifyDiscountCodeRelationFilter, ShopifyDiscountCodeWhereInput>
97891
97919
  }
97892
97920
 
@@ -97895,6 +97923,7 @@ export namespace Prisma {
97895
97923
  amount?: SortOrder
97896
97924
  metaData?: SortOrderInput | SortOrder
97897
97925
  discountCodeId?: SortOrder
97926
+ created?: SortOrder
97898
97927
  discountCode?: ShopifyDiscountCodeOrderByWithRelationAndSearchRelevanceInput
97899
97928
  }
97900
97929
 
@@ -97906,6 +97935,7 @@ export namespace Prisma {
97906
97935
  amount?: FloatFilter<"ShopifySale"> | number
97907
97936
  metaData?: JsonNullableFilter<"ShopifySale">
97908
97937
  discountCodeId?: IntFilter<"ShopifySale"> | number
97938
+ created?: DateTimeFilter<"ShopifySale"> | Date | string
97909
97939
  discountCode?: XOR<ShopifyDiscountCodeRelationFilter, ShopifyDiscountCodeWhereInput>
97910
97940
  }, "id">
97911
97941
 
@@ -97914,6 +97944,7 @@ export namespace Prisma {
97914
97944
  amount?: SortOrder
97915
97945
  metaData?: SortOrderInput | SortOrder
97916
97946
  discountCodeId?: SortOrder
97947
+ created?: SortOrder
97917
97948
  _count?: ShopifySaleCountOrderByAggregateInput
97918
97949
  _avg?: ShopifySaleAvgOrderByAggregateInput
97919
97950
  _max?: ShopifySaleMaxOrderByAggregateInput
@@ -97929,6 +97960,7 @@ export namespace Prisma {
97929
97960
  amount?: FloatWithAggregatesFilter<"ShopifySale"> | number
97930
97961
  metaData?: JsonNullableWithAggregatesFilter<"ShopifySale">
97931
97962
  discountCodeId?: IntWithAggregatesFilter<"ShopifySale"> | number
97963
+ created?: DateTimeWithAggregatesFilter<"ShopifySale"> | Date | string
97932
97964
  }
97933
97965
 
97934
97966
  export type UserCreateInput = {
@@ -104129,7 +104161,7 @@ export namespace Prisma {
104129
104161
  export type ShopifyDiscountCodeCreateInput = {
104130
104162
  code: string
104131
104163
  shopifyDiscountCodeId?: number | null
104132
- shopifyPriceRuleId?: number | null
104164
+ shopifyPriceRuleId?: bigint | number | null
104133
104165
  optIn: OptInCreateNestedOneWithoutShopifyDiscountCodesInput
104134
104166
  shopifySales?: ShopifySaleCreateNestedManyWithoutDiscountCodeInput
104135
104167
  }
@@ -104138,7 +104170,7 @@ export namespace Prisma {
104138
104170
  id?: number
104139
104171
  code: string
104140
104172
  shopifyDiscountCodeId?: number | null
104141
- shopifyPriceRuleId?: number | null
104173
+ shopifyPriceRuleId?: bigint | number | null
104142
104174
  optInId: number
104143
104175
  shopifySales?: ShopifySaleUncheckedCreateNestedManyWithoutDiscountCodeInput
104144
104176
  }
@@ -104146,7 +104178,7 @@ export namespace Prisma {
104146
104178
  export type ShopifyDiscountCodeUpdateInput = {
104147
104179
  code?: StringFieldUpdateOperationsInput | string
104148
104180
  shopifyDiscountCodeId?: NullableIntFieldUpdateOperationsInput | number | null
104149
- shopifyPriceRuleId?: NullableIntFieldUpdateOperationsInput | number | null
104181
+ shopifyPriceRuleId?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null
104150
104182
  optIn?: OptInUpdateOneRequiredWithoutShopifyDiscountCodesNestedInput
104151
104183
  shopifySales?: ShopifySaleUpdateManyWithoutDiscountCodeNestedInput
104152
104184
  }
@@ -104155,7 +104187,7 @@ export namespace Prisma {
104155
104187
  id?: IntFieldUpdateOperationsInput | number
104156
104188
  code?: StringFieldUpdateOperationsInput | string
104157
104189
  shopifyDiscountCodeId?: NullableIntFieldUpdateOperationsInput | number | null
104158
- shopifyPriceRuleId?: NullableIntFieldUpdateOperationsInput | number | null
104190
+ shopifyPriceRuleId?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null
104159
104191
  optInId?: IntFieldUpdateOperationsInput | number
104160
104192
  shopifySales?: ShopifySaleUncheckedUpdateManyWithoutDiscountCodeNestedInput
104161
104193
  }
@@ -104164,27 +104196,28 @@ export namespace Prisma {
104164
104196
  id?: number
104165
104197
  code: string
104166
104198
  shopifyDiscountCodeId?: number | null
104167
- shopifyPriceRuleId?: number | null
104199
+ shopifyPriceRuleId?: bigint | number | null
104168
104200
  optInId: number
104169
104201
  }
104170
104202
 
104171
104203
  export type ShopifyDiscountCodeUpdateManyMutationInput = {
104172
104204
  code?: StringFieldUpdateOperationsInput | string
104173
104205
  shopifyDiscountCodeId?: NullableIntFieldUpdateOperationsInput | number | null
104174
- shopifyPriceRuleId?: NullableIntFieldUpdateOperationsInput | number | null
104206
+ shopifyPriceRuleId?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null
104175
104207
  }
104176
104208
 
104177
104209
  export type ShopifyDiscountCodeUncheckedUpdateManyInput = {
104178
104210
  id?: IntFieldUpdateOperationsInput | number
104179
104211
  code?: StringFieldUpdateOperationsInput | string
104180
104212
  shopifyDiscountCodeId?: NullableIntFieldUpdateOperationsInput | number | null
104181
- shopifyPriceRuleId?: NullableIntFieldUpdateOperationsInput | number | null
104213
+ shopifyPriceRuleId?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null
104182
104214
  optInId?: IntFieldUpdateOperationsInput | number
104183
104215
  }
104184
104216
 
104185
104217
  export type ShopifySaleCreateInput = {
104186
104218
  amount: number
104187
104219
  metaData?: NullableJsonNullValueInput | InputJsonValue
104220
+ created?: Date | string
104188
104221
  discountCode: ShopifyDiscountCodeCreateNestedOneWithoutShopifySalesInput
104189
104222
  }
104190
104223
 
@@ -104193,11 +104226,13 @@ export namespace Prisma {
104193
104226
  amount: number
104194
104227
  metaData?: NullableJsonNullValueInput | InputJsonValue
104195
104228
  discountCodeId: number
104229
+ created?: Date | string
104196
104230
  }
104197
104231
 
104198
104232
  export type ShopifySaleUpdateInput = {
104199
104233
  amount?: FloatFieldUpdateOperationsInput | number
104200
104234
  metaData?: NullableJsonNullValueInput | InputJsonValue
104235
+ created?: DateTimeFieldUpdateOperationsInput | Date | string
104201
104236
  discountCode?: ShopifyDiscountCodeUpdateOneRequiredWithoutShopifySalesNestedInput
104202
104237
  }
104203
104238
 
@@ -104206,6 +104241,7 @@ export namespace Prisma {
104206
104241
  amount?: FloatFieldUpdateOperationsInput | number
104207
104242
  metaData?: NullableJsonNullValueInput | InputJsonValue
104208
104243
  discountCodeId?: IntFieldUpdateOperationsInput | number
104244
+ created?: DateTimeFieldUpdateOperationsInput | Date | string
104209
104245
  }
104210
104246
 
104211
104247
  export type ShopifySaleCreateManyInput = {
@@ -104213,11 +104249,13 @@ export namespace Prisma {
104213
104249
  amount: number
104214
104250
  metaData?: NullableJsonNullValueInput | InputJsonValue
104215
104251
  discountCodeId: number
104252
+ created?: Date | string
104216
104253
  }
104217
104254
 
104218
104255
  export type ShopifySaleUpdateManyMutationInput = {
104219
104256
  amount?: FloatFieldUpdateOperationsInput | number
104220
104257
  metaData?: NullableJsonNullValueInput | InputJsonValue
104258
+ created?: DateTimeFieldUpdateOperationsInput | Date | string
104221
104259
  }
104222
104260
 
104223
104261
  export type ShopifySaleUncheckedUpdateManyInput = {
@@ -104225,6 +104263,7 @@ export namespace Prisma {
104225
104263
  amount?: FloatFieldUpdateOperationsInput | number
104226
104264
  metaData?: NullableJsonNullValueInput | InputJsonValue
104227
104265
  discountCodeId?: IntFieldUpdateOperationsInput | number
104266
+ created?: DateTimeFieldUpdateOperationsInput | Date | string
104228
104267
  }
104229
104268
 
104230
104269
  export type IntFilter<$PrismaModel = never> = {
@@ -109333,6 +109372,17 @@ export namespace Prisma {
109333
109372
  shopifyProductId?: SortOrder
109334
109373
  }
109335
109374
 
109375
+ export type BigIntNullableFilter<$PrismaModel = never> = {
109376
+ equals?: bigint | number | BigIntFieldRefInput<$PrismaModel> | null
109377
+ in?: bigint[] | number[] | ListBigIntFieldRefInput<$PrismaModel> | null
109378
+ notIn?: bigint[] | number[] | ListBigIntFieldRefInput<$PrismaModel> | null
109379
+ lt?: bigint | number | BigIntFieldRefInput<$PrismaModel>
109380
+ lte?: bigint | number | BigIntFieldRefInput<$PrismaModel>
109381
+ gt?: bigint | number | BigIntFieldRefInput<$PrismaModel>
109382
+ gte?: bigint | number | BigIntFieldRefInput<$PrismaModel>
109383
+ not?: NestedBigIntNullableFilter<$PrismaModel> | bigint | number | null
109384
+ }
109385
+
109336
109386
  export type ShopifySaleListRelationFilter = {
109337
109387
  every?: ShopifySaleWhereInput
109338
109388
  some?: ShopifySaleWhereInput
@@ -109387,6 +109437,22 @@ export namespace Prisma {
109387
109437
  optInId?: SortOrder
109388
109438
  }
109389
109439
 
109440
+ export type BigIntNullableWithAggregatesFilter<$PrismaModel = never> = {
109441
+ equals?: bigint | number | BigIntFieldRefInput<$PrismaModel> | null
109442
+ in?: bigint[] | number[] | ListBigIntFieldRefInput<$PrismaModel> | null
109443
+ notIn?: bigint[] | number[] | ListBigIntFieldRefInput<$PrismaModel> | null
109444
+ lt?: bigint | number | BigIntFieldRefInput<$PrismaModel>
109445
+ lte?: bigint | number | BigIntFieldRefInput<$PrismaModel>
109446
+ gt?: bigint | number | BigIntFieldRefInput<$PrismaModel>
109447
+ gte?: bigint | number | BigIntFieldRefInput<$PrismaModel>
109448
+ not?: NestedBigIntNullableWithAggregatesFilter<$PrismaModel> | bigint | number | null
109449
+ _count?: NestedIntNullableFilter<$PrismaModel>
109450
+ _avg?: NestedFloatNullableFilter<$PrismaModel>
109451
+ _sum?: NestedBigIntNullableFilter<$PrismaModel>
109452
+ _min?: NestedBigIntNullableFilter<$PrismaModel>
109453
+ _max?: NestedBigIntNullableFilter<$PrismaModel>
109454
+ }
109455
+
109390
109456
  export type ShopifyDiscountCodeRelationFilter = {
109391
109457
  is?: ShopifyDiscountCodeWhereInput
109392
109458
  isNot?: ShopifyDiscountCodeWhereInput
@@ -109397,6 +109463,7 @@ export namespace Prisma {
109397
109463
  amount?: SortOrder
109398
109464
  metaData?: SortOrder
109399
109465
  discountCodeId?: SortOrder
109466
+ created?: SortOrder
109400
109467
  }
109401
109468
 
109402
109469
  export type ShopifySaleAvgOrderByAggregateInput = {
@@ -109409,12 +109476,14 @@ export namespace Prisma {
109409
109476
  id?: SortOrder
109410
109477
  amount?: SortOrder
109411
109478
  discountCodeId?: SortOrder
109479
+ created?: SortOrder
109412
109480
  }
109413
109481
 
109414
109482
  export type ShopifySaleMinOrderByAggregateInput = {
109415
109483
  id?: SortOrder
109416
109484
  amount?: SortOrder
109417
109485
  discountCodeId?: SortOrder
109486
+ created?: SortOrder
109418
109487
  }
109419
109488
 
109420
109489
  export type ShopifySaleSumOrderByAggregateInput = {
@@ -115773,6 +115842,14 @@ export namespace Prisma {
115773
115842
  connect?: ShopifySaleWhereUniqueInput | ShopifySaleWhereUniqueInput[]
115774
115843
  }
115775
115844
 
115845
+ export type NullableBigIntFieldUpdateOperationsInput = {
115846
+ set?: bigint | number | null
115847
+ increment?: bigint | number
115848
+ decrement?: bigint | number
115849
+ multiply?: bigint | number
115850
+ divide?: bigint | number
115851
+ }
115852
+
115776
115853
  export type OptInUpdateOneRequiredWithoutShopifyDiscountCodesNestedInput = {
115777
115854
  create?: XOR<OptInCreateWithoutShopifyDiscountCodesInput, OptInUncheckedCreateWithoutShopifyDiscountCodesInput>
115778
115855
  connectOrCreate?: OptInCreateOrConnectWithoutShopifyDiscountCodesInput
@@ -116195,6 +116272,33 @@ export namespace Prisma {
116195
116272
  _max?: NestedEnumShopifyStoreSyncStatusFilter<$PrismaModel>
116196
116273
  }
116197
116274
 
116275
+ export type NestedBigIntNullableFilter<$PrismaModel = never> = {
116276
+ equals?: bigint | number | BigIntFieldRefInput<$PrismaModel> | null
116277
+ in?: bigint[] | number[] | ListBigIntFieldRefInput<$PrismaModel> | null
116278
+ notIn?: bigint[] | number[] | ListBigIntFieldRefInput<$PrismaModel> | null
116279
+ lt?: bigint | number | BigIntFieldRefInput<$PrismaModel>
116280
+ lte?: bigint | number | BigIntFieldRefInput<$PrismaModel>
116281
+ gt?: bigint | number | BigIntFieldRefInput<$PrismaModel>
116282
+ gte?: bigint | number | BigIntFieldRefInput<$PrismaModel>
116283
+ not?: NestedBigIntNullableFilter<$PrismaModel> | bigint | number | null
116284
+ }
116285
+
116286
+ export type NestedBigIntNullableWithAggregatesFilter<$PrismaModel = never> = {
116287
+ equals?: bigint | number | BigIntFieldRefInput<$PrismaModel> | null
116288
+ in?: bigint[] | number[] | ListBigIntFieldRefInput<$PrismaModel> | null
116289
+ notIn?: bigint[] | number[] | ListBigIntFieldRefInput<$PrismaModel> | null
116290
+ lt?: bigint | number | BigIntFieldRefInput<$PrismaModel>
116291
+ lte?: bigint | number | BigIntFieldRefInput<$PrismaModel>
116292
+ gt?: bigint | number | BigIntFieldRefInput<$PrismaModel>
116293
+ gte?: bigint | number | BigIntFieldRefInput<$PrismaModel>
116294
+ not?: NestedBigIntNullableWithAggregatesFilter<$PrismaModel> | bigint | number | null
116295
+ _count?: NestedIntNullableFilter<$PrismaModel>
116296
+ _avg?: NestedFloatNullableFilter<$PrismaModel>
116297
+ _sum?: NestedBigIntNullableFilter<$PrismaModel>
116298
+ _min?: NestedBigIntNullableFilter<$PrismaModel>
116299
+ _max?: NestedBigIntNullableFilter<$PrismaModel>
116300
+ }
116301
+
116198
116302
  export type UserCreateWithoutReferredUsersInput = {
116199
116303
  role: string
116200
116304
  email?: string | null
@@ -129770,7 +129874,7 @@ export namespace Prisma {
129770
129874
  export type ShopifyDiscountCodeCreateWithoutOptInInput = {
129771
129875
  code: string
129772
129876
  shopifyDiscountCodeId?: number | null
129773
- shopifyPriceRuleId?: number | null
129877
+ shopifyPriceRuleId?: bigint | number | null
129774
129878
  shopifySales?: ShopifySaleCreateNestedManyWithoutDiscountCodeInput
129775
129879
  }
129776
129880
 
@@ -129778,7 +129882,7 @@ export namespace Prisma {
129778
129882
  id?: number
129779
129883
  code: string
129780
129884
  shopifyDiscountCodeId?: number | null
129781
- shopifyPriceRuleId?: number | null
129885
+ shopifyPriceRuleId?: bigint | number | null
129782
129886
  shopifySales?: ShopifySaleUncheckedCreateNestedManyWithoutDiscountCodeInput
129783
129887
  }
129784
129888
 
@@ -130310,7 +130414,7 @@ export namespace Prisma {
130310
130414
  id?: IntFilter<"ShopifyDiscountCode"> | number
130311
130415
  code?: StringFilter<"ShopifyDiscountCode"> | string
130312
130416
  shopifyDiscountCodeId?: IntNullableFilter<"ShopifyDiscountCode"> | number | null
130313
- shopifyPriceRuleId?: IntNullableFilter<"ShopifyDiscountCode"> | number | null
130417
+ shopifyPriceRuleId?: BigIntNullableFilter<"ShopifyDiscountCode"> | bigint | number | null
130314
130418
  optInId?: IntFilter<"ShopifyDiscountCode"> | number
130315
130419
  }
130316
130420
 
@@ -139541,12 +139645,14 @@ export namespace Prisma {
139541
139645
  export type ShopifySaleCreateWithoutDiscountCodeInput = {
139542
139646
  amount: number
139543
139647
  metaData?: NullableJsonNullValueInput | InputJsonValue
139648
+ created?: Date | string
139544
139649
  }
139545
139650
 
139546
139651
  export type ShopifySaleUncheckedCreateWithoutDiscountCodeInput = {
139547
139652
  id?: number
139548
139653
  amount: number
139549
139654
  metaData?: NullableJsonNullValueInput | InputJsonValue
139655
+ created?: Date | string
139550
139656
  }
139551
139657
 
139552
139658
  export type ShopifySaleCreateOrConnectWithoutDiscountCodeInput = {
@@ -139655,12 +139761,13 @@ export namespace Prisma {
139655
139761
  amount?: FloatFilter<"ShopifySale"> | number
139656
139762
  metaData?: JsonNullableFilter<"ShopifySale">
139657
139763
  discountCodeId?: IntFilter<"ShopifySale"> | number
139764
+ created?: DateTimeFilter<"ShopifySale"> | Date | string
139658
139765
  }
139659
139766
 
139660
139767
  export type ShopifyDiscountCodeCreateWithoutShopifySalesInput = {
139661
139768
  code: string
139662
139769
  shopifyDiscountCodeId?: number | null
139663
- shopifyPriceRuleId?: number | null
139770
+ shopifyPriceRuleId?: bigint | number | null
139664
139771
  optIn: OptInCreateNestedOneWithoutShopifyDiscountCodesInput
139665
139772
  }
139666
139773
 
@@ -139668,7 +139775,7 @@ export namespace Prisma {
139668
139775
  id?: number
139669
139776
  code: string
139670
139777
  shopifyDiscountCodeId?: number | null
139671
- shopifyPriceRuleId?: number | null
139778
+ shopifyPriceRuleId?: bigint | number | null
139672
139779
  optInId: number
139673
139780
  }
139674
139781
 
@@ -139691,7 +139798,7 @@ export namespace Prisma {
139691
139798
  export type ShopifyDiscountCodeUpdateWithoutShopifySalesInput = {
139692
139799
  code?: StringFieldUpdateOperationsInput | string
139693
139800
  shopifyDiscountCodeId?: NullableIntFieldUpdateOperationsInput | number | null
139694
- shopifyPriceRuleId?: NullableIntFieldUpdateOperationsInput | number | null
139801
+ shopifyPriceRuleId?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null
139695
139802
  optIn?: OptInUpdateOneRequiredWithoutShopifyDiscountCodesNestedInput
139696
139803
  }
139697
139804
 
@@ -139699,7 +139806,7 @@ export namespace Prisma {
139699
139806
  id?: IntFieldUpdateOperationsInput | number
139700
139807
  code?: StringFieldUpdateOperationsInput | string
139701
139808
  shopifyDiscountCodeId?: NullableIntFieldUpdateOperationsInput | number | null
139702
- shopifyPriceRuleId?: NullableIntFieldUpdateOperationsInput | number | null
139809
+ shopifyPriceRuleId?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null
139703
139810
  optInId?: IntFieldUpdateOperationsInput | number
139704
139811
  }
139705
139812
 
@@ -142779,7 +142886,7 @@ export namespace Prisma {
142779
142886
  id?: number
142780
142887
  code: string
142781
142888
  shopifyDiscountCodeId?: number | null
142782
- shopifyPriceRuleId?: number | null
142889
+ shopifyPriceRuleId?: bigint | number | null
142783
142890
  }
142784
142891
 
142785
142892
  export type OptInVariableUpdateWithoutOptInInput = {
@@ -143016,7 +143123,7 @@ export namespace Prisma {
143016
143123
  export type ShopifyDiscountCodeUpdateWithoutOptInInput = {
143017
143124
  code?: StringFieldUpdateOperationsInput | string
143018
143125
  shopifyDiscountCodeId?: NullableIntFieldUpdateOperationsInput | number | null
143019
- shopifyPriceRuleId?: NullableIntFieldUpdateOperationsInput | number | null
143126
+ shopifyPriceRuleId?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null
143020
143127
  shopifySales?: ShopifySaleUpdateManyWithoutDiscountCodeNestedInput
143021
143128
  }
143022
143129
 
@@ -143024,7 +143131,7 @@ export namespace Prisma {
143024
143131
  id?: IntFieldUpdateOperationsInput | number
143025
143132
  code?: StringFieldUpdateOperationsInput | string
143026
143133
  shopifyDiscountCodeId?: NullableIntFieldUpdateOperationsInput | number | null
143027
- shopifyPriceRuleId?: NullableIntFieldUpdateOperationsInput | number | null
143134
+ shopifyPriceRuleId?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null
143028
143135
  shopifySales?: ShopifySaleUncheckedUpdateManyWithoutDiscountCodeNestedInput
143029
143136
  }
143030
143137
 
@@ -143032,7 +143139,7 @@ export namespace Prisma {
143032
143139
  id?: IntFieldUpdateOperationsInput | number
143033
143140
  code?: StringFieldUpdateOperationsInput | string
143034
143141
  shopifyDiscountCodeId?: NullableIntFieldUpdateOperationsInput | number | null
143035
- shopifyPriceRuleId?: NullableIntFieldUpdateOperationsInput | number | null
143142
+ shopifyPriceRuleId?: NullableBigIntFieldUpdateOperationsInput | bigint | number | null
143036
143143
  }
143037
143144
 
143038
143145
  export type ListToSocialPostCreateManySocialPostInput = {
@@ -143788,23 +143895,27 @@ export namespace Prisma {
143788
143895
  id?: number
143789
143896
  amount: number
143790
143897
  metaData?: NullableJsonNullValueInput | InputJsonValue
143898
+ created?: Date | string
143791
143899
  }
143792
143900
 
143793
143901
  export type ShopifySaleUpdateWithoutDiscountCodeInput = {
143794
143902
  amount?: FloatFieldUpdateOperationsInput | number
143795
143903
  metaData?: NullableJsonNullValueInput | InputJsonValue
143904
+ created?: DateTimeFieldUpdateOperationsInput | Date | string
143796
143905
  }
143797
143906
 
143798
143907
  export type ShopifySaleUncheckedUpdateWithoutDiscountCodeInput = {
143799
143908
  id?: IntFieldUpdateOperationsInput | number
143800
143909
  amount?: FloatFieldUpdateOperationsInput | number
143801
143910
  metaData?: NullableJsonNullValueInput | InputJsonValue
143911
+ created?: DateTimeFieldUpdateOperationsInput | Date | string
143802
143912
  }
143803
143913
 
143804
143914
  export type ShopifySaleUncheckedUpdateManyWithoutDiscountCodeInput = {
143805
143915
  id?: IntFieldUpdateOperationsInput | number
143806
143916
  amount?: FloatFieldUpdateOperationsInput | number
143807
143917
  metaData?: NullableJsonNullValueInput | InputJsonValue
143918
+ created?: DateTimeFieldUpdateOperationsInput | Date | string
143808
143919
  }
143809
143920
 
143810
143921