@creator.co/creatorco-prisma-client 1.0.46-alpha-cbcafab → 1.0.46
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/edge.js +9 -4
- package/index-browser.js +5 -0
- package/index.d.ts +174 -49
- package/index.js +9 -4
- package/package.json +1 -1
- package/schema.prisma +6 -5
- package/wasm.js +5 -0
package/index-browser.js
CHANGED
|
@@ -884,6 +884,7 @@ exports.Prisma.ImpactRadiusEventScalarFieldEnum = {
|
|
|
884
884
|
|
|
885
885
|
exports.Prisma.ShareASaleEventScalarFieldEnum = {
|
|
886
886
|
id: 'id',
|
|
887
|
+
transactionId: 'transactionId',
|
|
887
888
|
created: 'created',
|
|
888
889
|
saleAmount: 'saleAmount',
|
|
889
890
|
commission: 'commission',
|
|
@@ -1328,6 +1329,10 @@ exports.Prisma.ImpactRadiusEventOrderByRelevanceFieldEnum = {
|
|
|
1328
1329
|
type: 'type'
|
|
1329
1330
|
};
|
|
1330
1331
|
|
|
1332
|
+
exports.Prisma.ShareASaleEventOrderByRelevanceFieldEnum = {
|
|
1333
|
+
transactionId: 'transactionId'
|
|
1334
|
+
};
|
|
1335
|
+
|
|
1331
1336
|
exports.Prisma.CreatorSearchFilterOrderByRelevanceFieldEnum = {
|
|
1332
1337
|
title: 'title'
|
|
1333
1338
|
};
|
package/index.d.ts
CHANGED
|
@@ -76287,36 +76287,39 @@ export namespace Prisma {
|
|
|
76287
76287
|
|
|
76288
76288
|
export type ShareASaleEventAvgAggregateOutputType = {
|
|
76289
76289
|
id: number | null
|
|
76290
|
-
saleAmount:
|
|
76291
|
-
commission:
|
|
76290
|
+
saleAmount: Decimal | null
|
|
76291
|
+
commission: Decimal | null
|
|
76292
76292
|
optInId: number | null
|
|
76293
76293
|
}
|
|
76294
76294
|
|
|
76295
76295
|
export type ShareASaleEventSumAggregateOutputType = {
|
|
76296
76296
|
id: number | null
|
|
76297
|
-
saleAmount:
|
|
76298
|
-
commission:
|
|
76297
|
+
saleAmount: Decimal | null
|
|
76298
|
+
commission: Decimal | null
|
|
76299
76299
|
optInId: number | null
|
|
76300
76300
|
}
|
|
76301
76301
|
|
|
76302
76302
|
export type ShareASaleEventMinAggregateOutputType = {
|
|
76303
76303
|
id: number | null
|
|
76304
|
+
transactionId: string | null
|
|
76304
76305
|
created: Date | null
|
|
76305
|
-
saleAmount:
|
|
76306
|
-
commission:
|
|
76306
|
+
saleAmount: Decimal | null
|
|
76307
|
+
commission: Decimal | null
|
|
76307
76308
|
optInId: number | null
|
|
76308
76309
|
}
|
|
76309
76310
|
|
|
76310
76311
|
export type ShareASaleEventMaxAggregateOutputType = {
|
|
76311
76312
|
id: number | null
|
|
76313
|
+
transactionId: string | null
|
|
76312
76314
|
created: Date | null
|
|
76313
|
-
saleAmount:
|
|
76314
|
-
commission:
|
|
76315
|
+
saleAmount: Decimal | null
|
|
76316
|
+
commission: Decimal | null
|
|
76315
76317
|
optInId: number | null
|
|
76316
76318
|
}
|
|
76317
76319
|
|
|
76318
76320
|
export type ShareASaleEventCountAggregateOutputType = {
|
|
76319
76321
|
id: number
|
|
76322
|
+
transactionId: number
|
|
76320
76323
|
created: number
|
|
76321
76324
|
saleAmount: number
|
|
76322
76325
|
commission: number
|
|
@@ -76342,6 +76345,7 @@ export namespace Prisma {
|
|
|
76342
76345
|
|
|
76343
76346
|
export type ShareASaleEventMinAggregateInputType = {
|
|
76344
76347
|
id?: true
|
|
76348
|
+
transactionId?: true
|
|
76345
76349
|
created?: true
|
|
76346
76350
|
saleAmount?: true
|
|
76347
76351
|
commission?: true
|
|
@@ -76350,6 +76354,7 @@ export namespace Prisma {
|
|
|
76350
76354
|
|
|
76351
76355
|
export type ShareASaleEventMaxAggregateInputType = {
|
|
76352
76356
|
id?: true
|
|
76357
|
+
transactionId?: true
|
|
76353
76358
|
created?: true
|
|
76354
76359
|
saleAmount?: true
|
|
76355
76360
|
commission?: true
|
|
@@ -76358,6 +76363,7 @@ export namespace Prisma {
|
|
|
76358
76363
|
|
|
76359
76364
|
export type ShareASaleEventCountAggregateInputType = {
|
|
76360
76365
|
id?: true
|
|
76366
|
+
transactionId?: true
|
|
76361
76367
|
created?: true
|
|
76362
76368
|
saleAmount?: true
|
|
76363
76369
|
commission?: true
|
|
@@ -76454,9 +76460,10 @@ export namespace Prisma {
|
|
|
76454
76460
|
|
|
76455
76461
|
export type ShareASaleEventGroupByOutputType = {
|
|
76456
76462
|
id: number
|
|
76463
|
+
transactionId: string | null
|
|
76457
76464
|
created: Date
|
|
76458
|
-
saleAmount:
|
|
76459
|
-
commission:
|
|
76465
|
+
saleAmount: Decimal | null
|
|
76466
|
+
commission: Decimal | null
|
|
76460
76467
|
metaData: JsonValue
|
|
76461
76468
|
optInId: number | null
|
|
76462
76469
|
_count: ShareASaleEventCountAggregateOutputType | null
|
|
@@ -76482,6 +76489,7 @@ export namespace Prisma {
|
|
|
76482
76489
|
|
|
76483
76490
|
export type ShareASaleEventSelect<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
76484
76491
|
id?: boolean
|
|
76492
|
+
transactionId?: boolean
|
|
76485
76493
|
created?: boolean
|
|
76486
76494
|
saleAmount?: boolean
|
|
76487
76495
|
commission?: boolean
|
|
@@ -76492,6 +76500,7 @@ export namespace Prisma {
|
|
|
76492
76500
|
|
|
76493
76501
|
export type ShareASaleEventSelectCreateManyAndReturn<ExtArgs extends $Extensions.InternalArgs = $Extensions.DefaultArgs> = $Extensions.GetSelect<{
|
|
76494
76502
|
id?: boolean
|
|
76503
|
+
transactionId?: boolean
|
|
76495
76504
|
created?: boolean
|
|
76496
76505
|
saleAmount?: boolean
|
|
76497
76506
|
commission?: boolean
|
|
@@ -76502,6 +76511,7 @@ export namespace Prisma {
|
|
|
76502
76511
|
|
|
76503
76512
|
export type ShareASaleEventSelectScalar = {
|
|
76504
76513
|
id?: boolean
|
|
76514
|
+
transactionId?: boolean
|
|
76505
76515
|
created?: boolean
|
|
76506
76516
|
saleAmount?: boolean
|
|
76507
76517
|
commission?: boolean
|
|
@@ -76523,9 +76533,10 @@ export namespace Prisma {
|
|
|
76523
76533
|
}
|
|
76524
76534
|
scalars: $Extensions.GetPayloadResult<{
|
|
76525
76535
|
id: number
|
|
76536
|
+
transactionId: string | null
|
|
76526
76537
|
created: Date
|
|
76527
|
-
saleAmount:
|
|
76528
|
-
commission:
|
|
76538
|
+
saleAmount: Prisma.Decimal | null
|
|
76539
|
+
commission: Prisma.Decimal | null
|
|
76529
76540
|
metaData: Prisma.JsonValue
|
|
76530
76541
|
optInId: number | null
|
|
76531
76542
|
}, ExtArgs["result"]["shareASaleEvent"]>
|
|
@@ -76949,9 +76960,10 @@ export namespace Prisma {
|
|
|
76949
76960
|
*/
|
|
76950
76961
|
interface ShareASaleEventFieldRefs {
|
|
76951
76962
|
readonly id: FieldRef<"ShareASaleEvent", 'Int'>
|
|
76963
|
+
readonly transactionId: FieldRef<"ShareASaleEvent", 'String'>
|
|
76952
76964
|
readonly created: FieldRef<"ShareASaleEvent", 'DateTime'>
|
|
76953
|
-
readonly saleAmount: FieldRef<"ShareASaleEvent", '
|
|
76954
|
-
readonly commission: FieldRef<"ShareASaleEvent", '
|
|
76965
|
+
readonly saleAmount: FieldRef<"ShareASaleEvent", 'Decimal'>
|
|
76966
|
+
readonly commission: FieldRef<"ShareASaleEvent", 'Decimal'>
|
|
76955
76967
|
readonly metaData: FieldRef<"ShareASaleEvent", 'Json'>
|
|
76956
76968
|
readonly optInId: FieldRef<"ShareASaleEvent", 'Int'>
|
|
76957
76969
|
}
|
|
@@ -88640,6 +88652,7 @@ export namespace Prisma {
|
|
|
88640
88652
|
|
|
88641
88653
|
export const ShareASaleEventScalarFieldEnum: {
|
|
88642
88654
|
id: 'id',
|
|
88655
|
+
transactionId: 'transactionId',
|
|
88643
88656
|
created: 'created',
|
|
88644
88657
|
saleAmount: 'saleAmount',
|
|
88645
88658
|
commission: 'commission',
|
|
@@ -89276,6 +89289,13 @@ export namespace Prisma {
|
|
|
89276
89289
|
export type ImpactRadiusEventOrderByRelevanceFieldEnum = (typeof ImpactRadiusEventOrderByRelevanceFieldEnum)[keyof typeof ImpactRadiusEventOrderByRelevanceFieldEnum]
|
|
89277
89290
|
|
|
89278
89291
|
|
|
89292
|
+
export const ShareASaleEventOrderByRelevanceFieldEnum: {
|
|
89293
|
+
transactionId: 'transactionId'
|
|
89294
|
+
};
|
|
89295
|
+
|
|
89296
|
+
export type ShareASaleEventOrderByRelevanceFieldEnum = (typeof ShareASaleEventOrderByRelevanceFieldEnum)[keyof typeof ShareASaleEventOrderByRelevanceFieldEnum]
|
|
89297
|
+
|
|
89298
|
+
|
|
89279
89299
|
export const CreatorSearchFilterOrderByRelevanceFieldEnum: {
|
|
89280
89300
|
title: 'title'
|
|
89281
89301
|
};
|
|
@@ -89428,6 +89448,20 @@ export namespace Prisma {
|
|
|
89428
89448
|
|
|
89429
89449
|
|
|
89430
89450
|
|
|
89451
|
+
/**
|
|
89452
|
+
* Reference to a field of type 'Decimal'
|
|
89453
|
+
*/
|
|
89454
|
+
export type DecimalFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Decimal'>
|
|
89455
|
+
|
|
89456
|
+
|
|
89457
|
+
|
|
89458
|
+
/**
|
|
89459
|
+
* Reference to a field of type 'Decimal[]'
|
|
89460
|
+
*/
|
|
89461
|
+
export type ListDecimalFieldRefInput<$PrismaModel> = FieldRefInputType<$PrismaModel, 'Decimal[]'>
|
|
89462
|
+
|
|
89463
|
+
|
|
89464
|
+
|
|
89431
89465
|
/**
|
|
89432
89466
|
* Reference to a field of type 'ShopifyStoreSyncStatus'
|
|
89433
89467
|
*/
|
|
@@ -94765,9 +94799,10 @@ export namespace Prisma {
|
|
|
94765
94799
|
OR?: ShareASaleEventWhereInput[]
|
|
94766
94800
|
NOT?: ShareASaleEventWhereInput | ShareASaleEventWhereInput[]
|
|
94767
94801
|
id?: IntFilter<"ShareASaleEvent"> | number
|
|
94802
|
+
transactionId?: StringNullableFilter<"ShareASaleEvent"> | string | null
|
|
94768
94803
|
created?: DateTimeFilter<"ShareASaleEvent"> | Date | string
|
|
94769
|
-
saleAmount?:
|
|
94770
|
-
commission?:
|
|
94804
|
+
saleAmount?: DecimalNullableFilter<"ShareASaleEvent"> | Decimal | DecimalJsLike | number | string | null
|
|
94805
|
+
commission?: DecimalNullableFilter<"ShareASaleEvent"> | Decimal | DecimalJsLike | number | string | null
|
|
94771
94806
|
metaData?: JsonFilter<"ShareASaleEvent">
|
|
94772
94807
|
optInId?: IntNullableFilter<"ShareASaleEvent"> | number | null
|
|
94773
94808
|
optIn?: XOR<OptInNullableRelationFilter, OptInWhereInput> | null
|
|
@@ -94775,29 +94810,33 @@ export namespace Prisma {
|
|
|
94775
94810
|
|
|
94776
94811
|
export type ShareASaleEventOrderByWithRelationAndSearchRelevanceInput = {
|
|
94777
94812
|
id?: SortOrder
|
|
94813
|
+
transactionId?: SortOrderInput | SortOrder
|
|
94778
94814
|
created?: SortOrder
|
|
94779
94815
|
saleAmount?: SortOrderInput | SortOrder
|
|
94780
94816
|
commission?: SortOrderInput | SortOrder
|
|
94781
94817
|
metaData?: SortOrder
|
|
94782
94818
|
optInId?: SortOrderInput | SortOrder
|
|
94783
94819
|
optIn?: OptInOrderByWithRelationAndSearchRelevanceInput
|
|
94820
|
+
_relevance?: ShareASaleEventOrderByRelevanceInput
|
|
94784
94821
|
}
|
|
94785
94822
|
|
|
94786
94823
|
export type ShareASaleEventWhereUniqueInput = Prisma.AtLeast<{
|
|
94787
94824
|
id?: number
|
|
94825
|
+
transactionId?: string
|
|
94788
94826
|
AND?: ShareASaleEventWhereInput | ShareASaleEventWhereInput[]
|
|
94789
94827
|
OR?: ShareASaleEventWhereInput[]
|
|
94790
94828
|
NOT?: ShareASaleEventWhereInput | ShareASaleEventWhereInput[]
|
|
94791
94829
|
created?: DateTimeFilter<"ShareASaleEvent"> | Date | string
|
|
94792
|
-
saleAmount?:
|
|
94793
|
-
commission?:
|
|
94830
|
+
saleAmount?: DecimalNullableFilter<"ShareASaleEvent"> | Decimal | DecimalJsLike | number | string | null
|
|
94831
|
+
commission?: DecimalNullableFilter<"ShareASaleEvent"> | Decimal | DecimalJsLike | number | string | null
|
|
94794
94832
|
metaData?: JsonFilter<"ShareASaleEvent">
|
|
94795
94833
|
optInId?: IntNullableFilter<"ShareASaleEvent"> | number | null
|
|
94796
94834
|
optIn?: XOR<OptInNullableRelationFilter, OptInWhereInput> | null
|
|
94797
|
-
}, "id">
|
|
94835
|
+
}, "id" | "transactionId">
|
|
94798
94836
|
|
|
94799
94837
|
export type ShareASaleEventOrderByWithAggregationInput = {
|
|
94800
94838
|
id?: SortOrder
|
|
94839
|
+
transactionId?: SortOrderInput | SortOrder
|
|
94801
94840
|
created?: SortOrder
|
|
94802
94841
|
saleAmount?: SortOrderInput | SortOrder
|
|
94803
94842
|
commission?: SortOrderInput | SortOrder
|
|
@@ -94815,9 +94854,10 @@ export namespace Prisma {
|
|
|
94815
94854
|
OR?: ShareASaleEventScalarWhereWithAggregatesInput[]
|
|
94816
94855
|
NOT?: ShareASaleEventScalarWhereWithAggregatesInput | ShareASaleEventScalarWhereWithAggregatesInput[]
|
|
94817
94856
|
id?: IntWithAggregatesFilter<"ShareASaleEvent"> | number
|
|
94857
|
+
transactionId?: StringNullableWithAggregatesFilter<"ShareASaleEvent"> | string | null
|
|
94818
94858
|
created?: DateTimeWithAggregatesFilter<"ShareASaleEvent"> | Date | string
|
|
94819
|
-
saleAmount?:
|
|
94820
|
-
commission?:
|
|
94859
|
+
saleAmount?: DecimalNullableWithAggregatesFilter<"ShareASaleEvent"> | Decimal | DecimalJsLike | number | string | null
|
|
94860
|
+
commission?: DecimalNullableWithAggregatesFilter<"ShareASaleEvent"> | Decimal | DecimalJsLike | number | string | null
|
|
94821
94861
|
metaData?: JsonWithAggregatesFilter<"ShareASaleEvent">
|
|
94822
94862
|
optInId?: IntNullableWithAggregatesFilter<"ShareASaleEvent"> | number | null
|
|
94823
94863
|
}
|
|
@@ -101005,60 +101045,67 @@ export namespace Prisma {
|
|
|
101005
101045
|
}
|
|
101006
101046
|
|
|
101007
101047
|
export type ShareASaleEventCreateInput = {
|
|
101048
|
+
transactionId?: string | null
|
|
101008
101049
|
created?: Date | string
|
|
101009
|
-
saleAmount?: number | null
|
|
101010
|
-
commission?: number | null
|
|
101050
|
+
saleAmount?: Decimal | DecimalJsLike | number | string | null
|
|
101051
|
+
commission?: Decimal | DecimalJsLike | number | string | null
|
|
101011
101052
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
101012
101053
|
optIn?: OptInCreateNestedOneWithoutShareASaleEventsInput
|
|
101013
101054
|
}
|
|
101014
101055
|
|
|
101015
101056
|
export type ShareASaleEventUncheckedCreateInput = {
|
|
101016
101057
|
id?: number
|
|
101058
|
+
transactionId?: string | null
|
|
101017
101059
|
created?: Date | string
|
|
101018
|
-
saleAmount?: number | null
|
|
101019
|
-
commission?: number | null
|
|
101060
|
+
saleAmount?: Decimal | DecimalJsLike | number | string | null
|
|
101061
|
+
commission?: Decimal | DecimalJsLike | number | string | null
|
|
101020
101062
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
101021
101063
|
optInId?: number | null
|
|
101022
101064
|
}
|
|
101023
101065
|
|
|
101024
101066
|
export type ShareASaleEventUpdateInput = {
|
|
101067
|
+
transactionId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101025
101068
|
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101026
|
-
saleAmount?:
|
|
101027
|
-
commission?:
|
|
101069
|
+
saleAmount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
101070
|
+
commission?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
101028
101071
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
101029
101072
|
optIn?: OptInUpdateOneWithoutShareASaleEventsNestedInput
|
|
101030
101073
|
}
|
|
101031
101074
|
|
|
101032
101075
|
export type ShareASaleEventUncheckedUpdateInput = {
|
|
101033
101076
|
id?: IntFieldUpdateOperationsInput | number
|
|
101077
|
+
transactionId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101034
101078
|
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101035
|
-
saleAmount?:
|
|
101036
|
-
commission?:
|
|
101079
|
+
saleAmount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
101080
|
+
commission?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
101037
101081
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
101038
101082
|
optInId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
101039
101083
|
}
|
|
101040
101084
|
|
|
101041
101085
|
export type ShareASaleEventCreateManyInput = {
|
|
101042
101086
|
id?: number
|
|
101087
|
+
transactionId?: string | null
|
|
101043
101088
|
created?: Date | string
|
|
101044
|
-
saleAmount?: number | null
|
|
101045
|
-
commission?: number | null
|
|
101089
|
+
saleAmount?: Decimal | DecimalJsLike | number | string | null
|
|
101090
|
+
commission?: Decimal | DecimalJsLike | number | string | null
|
|
101046
101091
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
101047
101092
|
optInId?: number | null
|
|
101048
101093
|
}
|
|
101049
101094
|
|
|
101050
101095
|
export type ShareASaleEventUpdateManyMutationInput = {
|
|
101096
|
+
transactionId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101051
101097
|
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101052
|
-
saleAmount?:
|
|
101053
|
-
commission?:
|
|
101098
|
+
saleAmount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
101099
|
+
commission?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
101054
101100
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
101055
101101
|
}
|
|
101056
101102
|
|
|
101057
101103
|
export type ShareASaleEventUncheckedUpdateManyInput = {
|
|
101058
101104
|
id?: IntFieldUpdateOperationsInput | number
|
|
101105
|
+
transactionId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
101059
101106
|
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
101060
|
-
saleAmount?:
|
|
101061
|
-
commission?:
|
|
101107
|
+
saleAmount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
101108
|
+
commission?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
101062
101109
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
101063
101110
|
optInId?: NullableIntFieldUpdateOperationsInput | number | null
|
|
101064
101111
|
}
|
|
@@ -106208,8 +106255,26 @@ export namespace Prisma {
|
|
|
106208
106255
|
optInId?: SortOrder
|
|
106209
106256
|
}
|
|
106210
106257
|
|
|
106258
|
+
export type DecimalNullableFilter<$PrismaModel = never> = {
|
|
106259
|
+
equals?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel> | null
|
|
106260
|
+
in?: Decimal[] | DecimalJsLike[] | number[] | string[] | ListDecimalFieldRefInput<$PrismaModel> | null
|
|
106261
|
+
notIn?: Decimal[] | DecimalJsLike[] | number[] | string[] | ListDecimalFieldRefInput<$PrismaModel> | null
|
|
106262
|
+
lt?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
106263
|
+
lte?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
106264
|
+
gt?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
106265
|
+
gte?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
106266
|
+
not?: NestedDecimalNullableFilter<$PrismaModel> | Decimal | DecimalJsLike | number | string | null
|
|
106267
|
+
}
|
|
106268
|
+
|
|
106269
|
+
export type ShareASaleEventOrderByRelevanceInput = {
|
|
106270
|
+
fields: ShareASaleEventOrderByRelevanceFieldEnum | ShareASaleEventOrderByRelevanceFieldEnum[]
|
|
106271
|
+
sort: SortOrder
|
|
106272
|
+
search: string
|
|
106273
|
+
}
|
|
106274
|
+
|
|
106211
106275
|
export type ShareASaleEventCountOrderByAggregateInput = {
|
|
106212
106276
|
id?: SortOrder
|
|
106277
|
+
transactionId?: SortOrder
|
|
106213
106278
|
created?: SortOrder
|
|
106214
106279
|
saleAmount?: SortOrder
|
|
106215
106280
|
commission?: SortOrder
|
|
@@ -106226,6 +106291,7 @@ export namespace Prisma {
|
|
|
106226
106291
|
|
|
106227
106292
|
export type ShareASaleEventMaxOrderByAggregateInput = {
|
|
106228
106293
|
id?: SortOrder
|
|
106294
|
+
transactionId?: SortOrder
|
|
106229
106295
|
created?: SortOrder
|
|
106230
106296
|
saleAmount?: SortOrder
|
|
106231
106297
|
commission?: SortOrder
|
|
@@ -106234,6 +106300,7 @@ export namespace Prisma {
|
|
|
106234
106300
|
|
|
106235
106301
|
export type ShareASaleEventMinOrderByAggregateInput = {
|
|
106236
106302
|
id?: SortOrder
|
|
106303
|
+
transactionId?: SortOrder
|
|
106237
106304
|
created?: SortOrder
|
|
106238
106305
|
saleAmount?: SortOrder
|
|
106239
106306
|
commission?: SortOrder
|
|
@@ -106247,6 +106314,22 @@ export namespace Prisma {
|
|
|
106247
106314
|
optInId?: SortOrder
|
|
106248
106315
|
}
|
|
106249
106316
|
|
|
106317
|
+
export type DecimalNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
106318
|
+
equals?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel> | null
|
|
106319
|
+
in?: Decimal[] | DecimalJsLike[] | number[] | string[] | ListDecimalFieldRefInput<$PrismaModel> | null
|
|
106320
|
+
notIn?: Decimal[] | DecimalJsLike[] | number[] | string[] | ListDecimalFieldRefInput<$PrismaModel> | null
|
|
106321
|
+
lt?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
106322
|
+
lte?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
106323
|
+
gt?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
106324
|
+
gte?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
106325
|
+
not?: NestedDecimalNullableWithAggregatesFilter<$PrismaModel> | Decimal | DecimalJsLike | number | string | null
|
|
106326
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
106327
|
+
_avg?: NestedDecimalNullableFilter<$PrismaModel>
|
|
106328
|
+
_sum?: NestedDecimalNullableFilter<$PrismaModel>
|
|
106329
|
+
_min?: NestedDecimalNullableFilter<$PrismaModel>
|
|
106330
|
+
_max?: NestedDecimalNullableFilter<$PrismaModel>
|
|
106331
|
+
}
|
|
106332
|
+
|
|
106250
106333
|
export type CreatorSearchFilterOrderByRelevanceInput = {
|
|
106251
106334
|
fields: CreatorSearchFilterOrderByRelevanceFieldEnum | CreatorSearchFilterOrderByRelevanceFieldEnum[]
|
|
106252
106335
|
sort: SortOrder
|
|
@@ -112413,6 +112496,14 @@ export namespace Prisma {
|
|
|
112413
112496
|
connect?: OptInWhereUniqueInput
|
|
112414
112497
|
}
|
|
112415
112498
|
|
|
112499
|
+
export type NullableDecimalFieldUpdateOperationsInput = {
|
|
112500
|
+
set?: Decimal | DecimalJsLike | number | string | null
|
|
112501
|
+
increment?: Decimal | DecimalJsLike | number | string
|
|
112502
|
+
decrement?: Decimal | DecimalJsLike | number | string
|
|
112503
|
+
multiply?: Decimal | DecimalJsLike | number | string
|
|
112504
|
+
divide?: Decimal | DecimalJsLike | number | string
|
|
112505
|
+
}
|
|
112506
|
+
|
|
112416
112507
|
export type OptInUpdateOneWithoutShareASaleEventsNestedInput = {
|
|
112417
112508
|
create?: XOR<OptInCreateWithoutShareASaleEventsInput, OptInUncheckedCreateWithoutShareASaleEventsInput>
|
|
112418
112509
|
connectOrCreate?: OptInCreateOrConnectWithoutShareASaleEventsInput
|
|
@@ -113345,6 +113436,33 @@ export namespace Prisma {
|
|
|
113345
113436
|
_max?: NestedEnumtrolleyPaymentStatusFilter<$PrismaModel>
|
|
113346
113437
|
}
|
|
113347
113438
|
|
|
113439
|
+
export type NestedDecimalNullableFilter<$PrismaModel = never> = {
|
|
113440
|
+
equals?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel> | null
|
|
113441
|
+
in?: Decimal[] | DecimalJsLike[] | number[] | string[] | ListDecimalFieldRefInput<$PrismaModel> | null
|
|
113442
|
+
notIn?: Decimal[] | DecimalJsLike[] | number[] | string[] | ListDecimalFieldRefInput<$PrismaModel> | null
|
|
113443
|
+
lt?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
113444
|
+
lte?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
113445
|
+
gt?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
113446
|
+
gte?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
113447
|
+
not?: NestedDecimalNullableFilter<$PrismaModel> | Decimal | DecimalJsLike | number | string | null
|
|
113448
|
+
}
|
|
113449
|
+
|
|
113450
|
+
export type NestedDecimalNullableWithAggregatesFilter<$PrismaModel = never> = {
|
|
113451
|
+
equals?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel> | null
|
|
113452
|
+
in?: Decimal[] | DecimalJsLike[] | number[] | string[] | ListDecimalFieldRefInput<$PrismaModel> | null
|
|
113453
|
+
notIn?: Decimal[] | DecimalJsLike[] | number[] | string[] | ListDecimalFieldRefInput<$PrismaModel> | null
|
|
113454
|
+
lt?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
113455
|
+
lte?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
113456
|
+
gt?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
113457
|
+
gte?: Decimal | DecimalJsLike | number | string | DecimalFieldRefInput<$PrismaModel>
|
|
113458
|
+
not?: NestedDecimalNullableWithAggregatesFilter<$PrismaModel> | Decimal | DecimalJsLike | number | string | null
|
|
113459
|
+
_count?: NestedIntNullableFilter<$PrismaModel>
|
|
113460
|
+
_avg?: NestedDecimalNullableFilter<$PrismaModel>
|
|
113461
|
+
_sum?: NestedDecimalNullableFilter<$PrismaModel>
|
|
113462
|
+
_min?: NestedDecimalNullableFilter<$PrismaModel>
|
|
113463
|
+
_max?: NestedDecimalNullableFilter<$PrismaModel>
|
|
113464
|
+
}
|
|
113465
|
+
|
|
113348
113466
|
export type NestedEnumShopifyStoreSyncStatusFilter<$PrismaModel = never> = {
|
|
113349
113467
|
equals?: $Enums.ShopifyStoreSyncStatus | EnumShopifyStoreSyncStatusFieldRefInput<$PrismaModel>
|
|
113350
113468
|
in?: $Enums.ShopifyStoreSyncStatus[] | ListEnumShopifyStoreSyncStatusFieldRefInput<$PrismaModel>
|
|
@@ -126890,17 +127008,19 @@ export namespace Prisma {
|
|
|
126890
127008
|
}
|
|
126891
127009
|
|
|
126892
127010
|
export type ShareASaleEventCreateWithoutOptInInput = {
|
|
127011
|
+
transactionId?: string | null
|
|
126893
127012
|
created?: Date | string
|
|
126894
|
-
saleAmount?: number | null
|
|
126895
|
-
commission?: number | null
|
|
127013
|
+
saleAmount?: Decimal | DecimalJsLike | number | string | null
|
|
127014
|
+
commission?: Decimal | DecimalJsLike | number | string | null
|
|
126896
127015
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
126897
127016
|
}
|
|
126898
127017
|
|
|
126899
127018
|
export type ShareASaleEventUncheckedCreateWithoutOptInInput = {
|
|
126900
127019
|
id?: number
|
|
127020
|
+
transactionId?: string | null
|
|
126901
127021
|
created?: Date | string
|
|
126902
|
-
saleAmount?: number | null
|
|
126903
|
-
commission?: number | null
|
|
127022
|
+
saleAmount?: Decimal | DecimalJsLike | number | string | null
|
|
127023
|
+
commission?: Decimal | DecimalJsLike | number | string | null
|
|
126904
127024
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
126905
127025
|
}
|
|
126906
127026
|
|
|
@@ -127401,9 +127521,10 @@ export namespace Prisma {
|
|
|
127401
127521
|
OR?: ShareASaleEventScalarWhereInput[]
|
|
127402
127522
|
NOT?: ShareASaleEventScalarWhereInput | ShareASaleEventScalarWhereInput[]
|
|
127403
127523
|
id?: IntFilter<"ShareASaleEvent"> | number
|
|
127524
|
+
transactionId?: StringNullableFilter<"ShareASaleEvent"> | string | null
|
|
127404
127525
|
created?: DateTimeFilter<"ShareASaleEvent"> | Date | string
|
|
127405
|
-
saleAmount?:
|
|
127406
|
-
commission?:
|
|
127526
|
+
saleAmount?: DecimalNullableFilter<"ShareASaleEvent"> | Decimal | DecimalJsLike | number | string | null
|
|
127527
|
+
commission?: DecimalNullableFilter<"ShareASaleEvent"> | Decimal | DecimalJsLike | number | string | null
|
|
127407
127528
|
metaData?: JsonFilter<"ShareASaleEvent">
|
|
127408
127529
|
optInId?: IntNullableFilter<"ShareASaleEvent"> | number | null
|
|
127409
127530
|
}
|
|
@@ -139597,9 +139718,10 @@ export namespace Prisma {
|
|
|
139597
139718
|
|
|
139598
139719
|
export type ShareASaleEventCreateManyOptInInput = {
|
|
139599
139720
|
id?: number
|
|
139721
|
+
transactionId?: string | null
|
|
139600
139722
|
created?: Date | string
|
|
139601
|
-
saleAmount?: number | null
|
|
139602
|
-
commission?: number | null
|
|
139723
|
+
saleAmount?: Decimal | DecimalJsLike | number | string | null
|
|
139724
|
+
commission?: Decimal | DecimalJsLike | number | string | null
|
|
139603
139725
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
139604
139726
|
}
|
|
139605
139727
|
|
|
@@ -139809,25 +139931,28 @@ export namespace Prisma {
|
|
|
139809
139931
|
}
|
|
139810
139932
|
|
|
139811
139933
|
export type ShareASaleEventUpdateWithoutOptInInput = {
|
|
139934
|
+
transactionId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
139812
139935
|
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
139813
|
-
saleAmount?:
|
|
139814
|
-
commission?:
|
|
139936
|
+
saleAmount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
139937
|
+
commission?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
139815
139938
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
139816
139939
|
}
|
|
139817
139940
|
|
|
139818
139941
|
export type ShareASaleEventUncheckedUpdateWithoutOptInInput = {
|
|
139819
139942
|
id?: IntFieldUpdateOperationsInput | number
|
|
139943
|
+
transactionId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
139820
139944
|
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
139821
|
-
saleAmount?:
|
|
139822
|
-
commission?:
|
|
139945
|
+
saleAmount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
139946
|
+
commission?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
139823
139947
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
139824
139948
|
}
|
|
139825
139949
|
|
|
139826
139950
|
export type ShareASaleEventUncheckedUpdateManyWithoutOptInInput = {
|
|
139827
139951
|
id?: IntFieldUpdateOperationsInput | number
|
|
139952
|
+
transactionId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
139828
139953
|
created?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
139829
|
-
saleAmount?:
|
|
139830
|
-
commission?:
|
|
139954
|
+
saleAmount?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
139955
|
+
commission?: NullableDecimalFieldUpdateOperationsInput | Decimal | DecimalJsLike | number | string | null
|
|
139831
139956
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
139832
139957
|
}
|
|
139833
139958
|
|