@creator.co/creatorco-prisma-client 1.0.22-alpha-6b3aed6 → 1.0.22-alpha-c4b16cb
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 +7 -5
- package/index-browser.js +3 -1
- package/index.d.ts +65 -26
- package/index.js +7 -5
- package/package.json +1 -1
- package/schema.prisma +3 -2
- package/wasm.js +3 -1
package/index-browser.js
CHANGED
|
@@ -851,6 +851,7 @@ exports.Prisma.ShopifyProductScalarFieldEnum = {
|
|
|
851
851
|
shopifyId: 'shopifyId',
|
|
852
852
|
title: 'title',
|
|
853
853
|
handle: 'handle',
|
|
854
|
+
imageUrl: 'imageUrl',
|
|
854
855
|
metaData: 'metaData',
|
|
855
856
|
lastSynced: 'lastSynced',
|
|
856
857
|
shopifyStoreId: 'shopifyStoreId'
|
|
@@ -1198,7 +1199,8 @@ exports.Prisma.ShopifyStoreOrderByRelevanceFieldEnum = {
|
|
|
1198
1199
|
exports.Prisma.ShopifyProductOrderByRelevanceFieldEnum = {
|
|
1199
1200
|
shopifyId: 'shopifyId',
|
|
1200
1201
|
title: 'title',
|
|
1201
|
-
handle: 'handle'
|
|
1202
|
+
handle: 'handle',
|
|
1203
|
+
imageUrl: 'imageUrl'
|
|
1202
1204
|
};
|
|
1203
1205
|
exports.trolleyPaymentType = exports.$Enums.trolleyPaymentType = {
|
|
1204
1206
|
optIn: 'optIn',
|
package/index.d.ts
CHANGED
|
@@ -71292,7 +71292,7 @@ export namespace Prisma {
|
|
|
71292
71292
|
shopifyId: string | null
|
|
71293
71293
|
name: string | null
|
|
71294
71294
|
url: string
|
|
71295
|
-
accessToken: string
|
|
71295
|
+
accessToken: string | null
|
|
71296
71296
|
metaData: JsonValue
|
|
71297
71297
|
brandId: number
|
|
71298
71298
|
_count: ShopifyStoreCountAggregateOutputType | null
|
|
@@ -71357,7 +71357,7 @@ export namespace Prisma {
|
|
|
71357
71357
|
shopifyId: string | null
|
|
71358
71358
|
name: string | null
|
|
71359
71359
|
url: string
|
|
71360
|
-
accessToken: string
|
|
71360
|
+
accessToken: string | null
|
|
71361
71361
|
metaData: Prisma.JsonValue
|
|
71362
71362
|
brandId: number
|
|
71363
71363
|
}, ExtArgs["result"]["shopifyStore"]>
|
|
@@ -72155,6 +72155,7 @@ export namespace Prisma {
|
|
|
72155
72155
|
shopifyId: string | null
|
|
72156
72156
|
title: string | null
|
|
72157
72157
|
handle: string | null
|
|
72158
|
+
imageUrl: string | null
|
|
72158
72159
|
lastSynced: Date | null
|
|
72159
72160
|
shopifyStoreId: number | null
|
|
72160
72161
|
}
|
|
@@ -72164,6 +72165,7 @@ export namespace Prisma {
|
|
|
72164
72165
|
shopifyId: string | null
|
|
72165
72166
|
title: string | null
|
|
72166
72167
|
handle: string | null
|
|
72168
|
+
imageUrl: string | null
|
|
72167
72169
|
lastSynced: Date | null
|
|
72168
72170
|
shopifyStoreId: number | null
|
|
72169
72171
|
}
|
|
@@ -72173,6 +72175,7 @@ export namespace Prisma {
|
|
|
72173
72175
|
shopifyId: number
|
|
72174
72176
|
title: number
|
|
72175
72177
|
handle: number
|
|
72178
|
+
imageUrl: number
|
|
72176
72179
|
metaData: number
|
|
72177
72180
|
lastSynced: number
|
|
72178
72181
|
shopifyStoreId: number
|
|
@@ -72195,6 +72198,7 @@ export namespace Prisma {
|
|
|
72195
72198
|
shopifyId?: true
|
|
72196
72199
|
title?: true
|
|
72197
72200
|
handle?: true
|
|
72201
|
+
imageUrl?: true
|
|
72198
72202
|
lastSynced?: true
|
|
72199
72203
|
shopifyStoreId?: true
|
|
72200
72204
|
}
|
|
@@ -72204,6 +72208,7 @@ export namespace Prisma {
|
|
|
72204
72208
|
shopifyId?: true
|
|
72205
72209
|
title?: true
|
|
72206
72210
|
handle?: true
|
|
72211
|
+
imageUrl?: true
|
|
72207
72212
|
lastSynced?: true
|
|
72208
72213
|
shopifyStoreId?: true
|
|
72209
72214
|
}
|
|
@@ -72213,6 +72218,7 @@ export namespace Prisma {
|
|
|
72213
72218
|
shopifyId?: true
|
|
72214
72219
|
title?: true
|
|
72215
72220
|
handle?: true
|
|
72221
|
+
imageUrl?: true
|
|
72216
72222
|
metaData?: true
|
|
72217
72223
|
lastSynced?: true
|
|
72218
72224
|
shopifyStoreId?: true
|
|
@@ -72310,6 +72316,7 @@ export namespace Prisma {
|
|
|
72310
72316
|
shopifyId: string
|
|
72311
72317
|
title: string
|
|
72312
72318
|
handle: string
|
|
72319
|
+
imageUrl: string
|
|
72313
72320
|
metaData: JsonValue
|
|
72314
72321
|
lastSynced: Date
|
|
72315
72322
|
shopifyStoreId: number
|
|
@@ -72339,6 +72346,7 @@ export namespace Prisma {
|
|
|
72339
72346
|
shopifyId?: boolean
|
|
72340
72347
|
title?: boolean
|
|
72341
72348
|
handle?: boolean
|
|
72349
|
+
imageUrl?: boolean
|
|
72342
72350
|
metaData?: boolean
|
|
72343
72351
|
lastSynced?: boolean
|
|
72344
72352
|
shopifyStoreId?: boolean
|
|
@@ -72352,6 +72360,7 @@ export namespace Prisma {
|
|
|
72352
72360
|
shopifyId?: boolean
|
|
72353
72361
|
title?: boolean
|
|
72354
72362
|
handle?: boolean
|
|
72363
|
+
imageUrl?: boolean
|
|
72355
72364
|
metaData?: boolean
|
|
72356
72365
|
lastSynced?: boolean
|
|
72357
72366
|
shopifyStoreId?: boolean
|
|
@@ -72375,6 +72384,7 @@ export namespace Prisma {
|
|
|
72375
72384
|
shopifyId: string
|
|
72376
72385
|
title: string
|
|
72377
72386
|
handle: string
|
|
72387
|
+
imageUrl: string
|
|
72378
72388
|
metaData: Prisma.JsonValue
|
|
72379
72389
|
lastSynced: Date
|
|
72380
72390
|
shopifyStoreId: number
|
|
@@ -72779,6 +72789,7 @@ export namespace Prisma {
|
|
|
72779
72789
|
readonly shopifyId: FieldRef<"ShopifyProduct", 'String'>
|
|
72780
72790
|
readonly title: FieldRef<"ShopifyProduct", 'String'>
|
|
72781
72791
|
readonly handle: FieldRef<"ShopifyProduct", 'String'>
|
|
72792
|
+
readonly imageUrl: FieldRef<"ShopifyProduct", 'String'>
|
|
72782
72793
|
readonly metaData: FieldRef<"ShopifyProduct", 'Json'>
|
|
72783
72794
|
readonly lastSynced: FieldRef<"ShopifyProduct", 'DateTime'>
|
|
72784
72795
|
readonly shopifyStoreId: FieldRef<"ShopifyProduct", 'Int'>
|
|
@@ -74999,6 +75010,7 @@ export namespace Prisma {
|
|
|
74999
75010
|
shopifyId: 'shopifyId',
|
|
75000
75011
|
title: 'title',
|
|
75001
75012
|
handle: 'handle',
|
|
75013
|
+
imageUrl: 'imageUrl',
|
|
75002
75014
|
metaData: 'metaData',
|
|
75003
75015
|
lastSynced: 'lastSynced',
|
|
75004
75016
|
shopifyStoreId: 'shopifyStoreId'
|
|
@@ -75511,7 +75523,8 @@ export namespace Prisma {
|
|
|
75511
75523
|
export const ShopifyProductOrderByRelevanceFieldEnum: {
|
|
75512
75524
|
shopifyId: 'shopifyId',
|
|
75513
75525
|
title: 'title',
|
|
75514
|
-
handle: 'handle'
|
|
75526
|
+
handle: 'handle',
|
|
75527
|
+
imageUrl: 'imageUrl'
|
|
75515
75528
|
};
|
|
75516
75529
|
|
|
75517
75530
|
export type ShopifyProductOrderByRelevanceFieldEnum = (typeof ShopifyProductOrderByRelevanceFieldEnum)[keyof typeof ShopifyProductOrderByRelevanceFieldEnum]
|
|
@@ -80743,7 +80756,7 @@ export namespace Prisma {
|
|
|
80743
80756
|
shopifyId?: StringNullableFilter<"ShopifyStore"> | string | null
|
|
80744
80757
|
name?: StringNullableFilter<"ShopifyStore"> | string | null
|
|
80745
80758
|
url?: StringFilter<"ShopifyStore"> | string
|
|
80746
|
-
accessToken?:
|
|
80759
|
+
accessToken?: StringNullableFilter<"ShopifyStore"> | string | null
|
|
80747
80760
|
metaData?: JsonFilter<"ShopifyStore">
|
|
80748
80761
|
brandId?: IntFilter<"ShopifyStore"> | number
|
|
80749
80762
|
products?: ShopifyProductListRelationFilter
|
|
@@ -80755,7 +80768,7 @@ export namespace Prisma {
|
|
|
80755
80768
|
shopifyId?: SortOrderInput | SortOrder
|
|
80756
80769
|
name?: SortOrderInput | SortOrder
|
|
80757
80770
|
url?: SortOrder
|
|
80758
|
-
accessToken?: SortOrder
|
|
80771
|
+
accessToken?: SortOrderInput | SortOrder
|
|
80759
80772
|
metaData?: SortOrder
|
|
80760
80773
|
brandId?: SortOrder
|
|
80761
80774
|
products?: ShopifyProductOrderByRelationAggregateInput
|
|
@@ -80771,7 +80784,7 @@ export namespace Prisma {
|
|
|
80771
80784
|
NOT?: ShopifyStoreWhereInput | ShopifyStoreWhereInput[]
|
|
80772
80785
|
name?: StringNullableFilter<"ShopifyStore"> | string | null
|
|
80773
80786
|
url?: StringFilter<"ShopifyStore"> | string
|
|
80774
|
-
accessToken?:
|
|
80787
|
+
accessToken?: StringNullableFilter<"ShopifyStore"> | string | null
|
|
80775
80788
|
metaData?: JsonFilter<"ShopifyStore">
|
|
80776
80789
|
brandId?: IntFilter<"ShopifyStore"> | number
|
|
80777
80790
|
products?: ShopifyProductListRelationFilter
|
|
@@ -80783,7 +80796,7 @@ export namespace Prisma {
|
|
|
80783
80796
|
shopifyId?: SortOrderInput | SortOrder
|
|
80784
80797
|
name?: SortOrderInput | SortOrder
|
|
80785
80798
|
url?: SortOrder
|
|
80786
|
-
accessToken?: SortOrder
|
|
80799
|
+
accessToken?: SortOrderInput | SortOrder
|
|
80787
80800
|
metaData?: SortOrder
|
|
80788
80801
|
brandId?: SortOrder
|
|
80789
80802
|
_count?: ShopifyStoreCountOrderByAggregateInput
|
|
@@ -80801,7 +80814,7 @@ export namespace Prisma {
|
|
|
80801
80814
|
shopifyId?: StringNullableWithAggregatesFilter<"ShopifyStore"> | string | null
|
|
80802
80815
|
name?: StringNullableWithAggregatesFilter<"ShopifyStore"> | string | null
|
|
80803
80816
|
url?: StringWithAggregatesFilter<"ShopifyStore"> | string
|
|
80804
|
-
accessToken?:
|
|
80817
|
+
accessToken?: StringNullableWithAggregatesFilter<"ShopifyStore"> | string | null
|
|
80805
80818
|
metaData?: JsonWithAggregatesFilter<"ShopifyStore">
|
|
80806
80819
|
brandId?: IntWithAggregatesFilter<"ShopifyStore"> | number
|
|
80807
80820
|
}
|
|
@@ -80814,6 +80827,7 @@ export namespace Prisma {
|
|
|
80814
80827
|
shopifyId?: StringFilter<"ShopifyProduct"> | string
|
|
80815
80828
|
title?: StringFilter<"ShopifyProduct"> | string
|
|
80816
80829
|
handle?: StringFilter<"ShopifyProduct"> | string
|
|
80830
|
+
imageUrl?: StringFilter<"ShopifyProduct"> | string
|
|
80817
80831
|
metaData?: JsonFilter<"ShopifyProduct">
|
|
80818
80832
|
lastSynced?: DateTimeFilter<"ShopifyProduct"> | Date | string
|
|
80819
80833
|
shopifyStoreId?: IntFilter<"ShopifyProduct"> | number
|
|
@@ -80826,6 +80840,7 @@ export namespace Prisma {
|
|
|
80826
80840
|
shopifyId?: SortOrder
|
|
80827
80841
|
title?: SortOrder
|
|
80828
80842
|
handle?: SortOrder
|
|
80843
|
+
imageUrl?: SortOrder
|
|
80829
80844
|
metaData?: SortOrder
|
|
80830
80845
|
lastSynced?: SortOrder
|
|
80831
80846
|
shopifyStoreId?: SortOrder
|
|
@@ -80842,6 +80857,7 @@ export namespace Prisma {
|
|
|
80842
80857
|
NOT?: ShopifyProductWhereInput | ShopifyProductWhereInput[]
|
|
80843
80858
|
title?: StringFilter<"ShopifyProduct"> | string
|
|
80844
80859
|
handle?: StringFilter<"ShopifyProduct"> | string
|
|
80860
|
+
imageUrl?: StringFilter<"ShopifyProduct"> | string
|
|
80845
80861
|
metaData?: JsonFilter<"ShopifyProduct">
|
|
80846
80862
|
lastSynced?: DateTimeFilter<"ShopifyProduct"> | Date | string
|
|
80847
80863
|
shopifyStoreId?: IntFilter<"ShopifyProduct"> | number
|
|
@@ -80854,6 +80870,7 @@ export namespace Prisma {
|
|
|
80854
80870
|
shopifyId?: SortOrder
|
|
80855
80871
|
title?: SortOrder
|
|
80856
80872
|
handle?: SortOrder
|
|
80873
|
+
imageUrl?: SortOrder
|
|
80857
80874
|
metaData?: SortOrder
|
|
80858
80875
|
lastSynced?: SortOrder
|
|
80859
80876
|
shopifyStoreId?: SortOrder
|
|
@@ -80872,6 +80889,7 @@ export namespace Prisma {
|
|
|
80872
80889
|
shopifyId?: StringWithAggregatesFilter<"ShopifyProduct"> | string
|
|
80873
80890
|
title?: StringWithAggregatesFilter<"ShopifyProduct"> | string
|
|
80874
80891
|
handle?: StringWithAggregatesFilter<"ShopifyProduct"> | string
|
|
80892
|
+
imageUrl?: StringWithAggregatesFilter<"ShopifyProduct"> | string
|
|
80875
80893
|
metaData?: JsonWithAggregatesFilter<"ShopifyProduct">
|
|
80876
80894
|
lastSynced?: DateTimeWithAggregatesFilter<"ShopifyProduct"> | Date | string
|
|
80877
80895
|
shopifyStoreId?: IntWithAggregatesFilter<"ShopifyProduct"> | number
|
|
@@ -86165,7 +86183,7 @@ export namespace Prisma {
|
|
|
86165
86183
|
shopifyId?: string | null
|
|
86166
86184
|
name?: string | null
|
|
86167
86185
|
url: string
|
|
86168
|
-
accessToken
|
|
86186
|
+
accessToken?: string | null
|
|
86169
86187
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
86170
86188
|
products?: ShopifyProductCreateNestedManyWithoutShopifyStoreInput
|
|
86171
86189
|
brand?: BrandCreateNestedOneWithoutShopifyStoresInput
|
|
@@ -86176,7 +86194,7 @@ export namespace Prisma {
|
|
|
86176
86194
|
shopifyId?: string | null
|
|
86177
86195
|
name?: string | null
|
|
86178
86196
|
url: string
|
|
86179
|
-
accessToken
|
|
86197
|
+
accessToken?: string | null
|
|
86180
86198
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
86181
86199
|
brandId: number
|
|
86182
86200
|
products?: ShopifyProductUncheckedCreateNestedManyWithoutShopifyStoreInput
|
|
@@ -86186,7 +86204,7 @@ export namespace Prisma {
|
|
|
86186
86204
|
shopifyId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86187
86205
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86188
86206
|
url?: StringFieldUpdateOperationsInput | string
|
|
86189
|
-
accessToken?:
|
|
86207
|
+
accessToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86190
86208
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
86191
86209
|
products?: ShopifyProductUpdateManyWithoutShopifyStoreNestedInput
|
|
86192
86210
|
brand?: BrandUpdateOneWithoutShopifyStoresNestedInput
|
|
@@ -86197,7 +86215,7 @@ export namespace Prisma {
|
|
|
86197
86215
|
shopifyId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86198
86216
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86199
86217
|
url?: StringFieldUpdateOperationsInput | string
|
|
86200
|
-
accessToken?:
|
|
86218
|
+
accessToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86201
86219
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
86202
86220
|
brandId?: IntFieldUpdateOperationsInput | number
|
|
86203
86221
|
products?: ShopifyProductUncheckedUpdateManyWithoutShopifyStoreNestedInput
|
|
@@ -86208,7 +86226,7 @@ export namespace Prisma {
|
|
|
86208
86226
|
shopifyId?: string | null
|
|
86209
86227
|
name?: string | null
|
|
86210
86228
|
url: string
|
|
86211
|
-
accessToken
|
|
86229
|
+
accessToken?: string | null
|
|
86212
86230
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
86213
86231
|
brandId: number
|
|
86214
86232
|
}
|
|
@@ -86217,7 +86235,7 @@ export namespace Prisma {
|
|
|
86217
86235
|
shopifyId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86218
86236
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86219
86237
|
url?: StringFieldUpdateOperationsInput | string
|
|
86220
|
-
accessToken?:
|
|
86238
|
+
accessToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86221
86239
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
86222
86240
|
}
|
|
86223
86241
|
|
|
@@ -86226,7 +86244,7 @@ export namespace Prisma {
|
|
|
86226
86244
|
shopifyId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86227
86245
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86228
86246
|
url?: StringFieldUpdateOperationsInput | string
|
|
86229
|
-
accessToken?:
|
|
86247
|
+
accessToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
86230
86248
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
86231
86249
|
brandId?: IntFieldUpdateOperationsInput | number
|
|
86232
86250
|
}
|
|
@@ -86235,6 +86253,7 @@ export namespace Prisma {
|
|
|
86235
86253
|
shopifyId: string
|
|
86236
86254
|
title: string
|
|
86237
86255
|
handle: string
|
|
86256
|
+
imageUrl: string
|
|
86238
86257
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
86239
86258
|
lastSynced?: Date | string
|
|
86240
86259
|
campaignToShopifyProducts?: CampaignToShopifyProductCreateNestedManyWithoutShopifyProductInput
|
|
@@ -86246,6 +86265,7 @@ export namespace Prisma {
|
|
|
86246
86265
|
shopifyId: string
|
|
86247
86266
|
title: string
|
|
86248
86267
|
handle: string
|
|
86268
|
+
imageUrl: string
|
|
86249
86269
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
86250
86270
|
lastSynced?: Date | string
|
|
86251
86271
|
shopifyStoreId: number
|
|
@@ -86256,6 +86276,7 @@ export namespace Prisma {
|
|
|
86256
86276
|
shopifyId?: StringFieldUpdateOperationsInput | string
|
|
86257
86277
|
title?: StringFieldUpdateOperationsInput | string
|
|
86258
86278
|
handle?: StringFieldUpdateOperationsInput | string
|
|
86279
|
+
imageUrl?: StringFieldUpdateOperationsInput | string
|
|
86259
86280
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
86260
86281
|
lastSynced?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86261
86282
|
campaignToShopifyProducts?: CampaignToShopifyProductUpdateManyWithoutShopifyProductNestedInput
|
|
@@ -86267,6 +86288,7 @@ export namespace Prisma {
|
|
|
86267
86288
|
shopifyId?: StringFieldUpdateOperationsInput | string
|
|
86268
86289
|
title?: StringFieldUpdateOperationsInput | string
|
|
86269
86290
|
handle?: StringFieldUpdateOperationsInput | string
|
|
86291
|
+
imageUrl?: StringFieldUpdateOperationsInput | string
|
|
86270
86292
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
86271
86293
|
lastSynced?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86272
86294
|
shopifyStoreId?: IntFieldUpdateOperationsInput | number
|
|
@@ -86278,6 +86300,7 @@ export namespace Prisma {
|
|
|
86278
86300
|
shopifyId: string
|
|
86279
86301
|
title: string
|
|
86280
86302
|
handle: string
|
|
86303
|
+
imageUrl: string
|
|
86281
86304
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
86282
86305
|
lastSynced?: Date | string
|
|
86283
86306
|
shopifyStoreId: number
|
|
@@ -86287,6 +86310,7 @@ export namespace Prisma {
|
|
|
86287
86310
|
shopifyId?: StringFieldUpdateOperationsInput | string
|
|
86288
86311
|
title?: StringFieldUpdateOperationsInput | string
|
|
86289
86312
|
handle?: StringFieldUpdateOperationsInput | string
|
|
86313
|
+
imageUrl?: StringFieldUpdateOperationsInput | string
|
|
86290
86314
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
86291
86315
|
lastSynced?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86292
86316
|
}
|
|
@@ -86296,6 +86320,7 @@ export namespace Prisma {
|
|
|
86296
86320
|
shopifyId?: StringFieldUpdateOperationsInput | string
|
|
86297
86321
|
title?: StringFieldUpdateOperationsInput | string
|
|
86298
86322
|
handle?: StringFieldUpdateOperationsInput | string
|
|
86323
|
+
imageUrl?: StringFieldUpdateOperationsInput | string
|
|
86299
86324
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
86300
86325
|
lastSynced?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
86301
86326
|
shopifyStoreId?: IntFieldUpdateOperationsInput | number
|
|
@@ -90731,6 +90756,7 @@ export namespace Prisma {
|
|
|
90731
90756
|
shopifyId?: SortOrder
|
|
90732
90757
|
title?: SortOrder
|
|
90733
90758
|
handle?: SortOrder
|
|
90759
|
+
imageUrl?: SortOrder
|
|
90734
90760
|
metaData?: SortOrder
|
|
90735
90761
|
lastSynced?: SortOrder
|
|
90736
90762
|
shopifyStoreId?: SortOrder
|
|
@@ -90746,6 +90772,7 @@ export namespace Prisma {
|
|
|
90746
90772
|
shopifyId?: SortOrder
|
|
90747
90773
|
title?: SortOrder
|
|
90748
90774
|
handle?: SortOrder
|
|
90775
|
+
imageUrl?: SortOrder
|
|
90749
90776
|
lastSynced?: SortOrder
|
|
90750
90777
|
shopifyStoreId?: SortOrder
|
|
90751
90778
|
}
|
|
@@ -90755,6 +90782,7 @@ export namespace Prisma {
|
|
|
90755
90782
|
shopifyId?: SortOrder
|
|
90756
90783
|
title?: SortOrder
|
|
90757
90784
|
handle?: SortOrder
|
|
90785
|
+
imageUrl?: SortOrder
|
|
90758
90786
|
lastSynced?: SortOrder
|
|
90759
90787
|
shopifyStoreId?: SortOrder
|
|
90760
90788
|
}
|
|
@@ -101708,7 +101736,7 @@ export namespace Prisma {
|
|
|
101708
101736
|
shopifyId?: string | null
|
|
101709
101737
|
name?: string | null
|
|
101710
101738
|
url: string
|
|
101711
|
-
accessToken
|
|
101739
|
+
accessToken?: string | null
|
|
101712
101740
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
101713
101741
|
products?: ShopifyProductCreateNestedManyWithoutShopifyStoreInput
|
|
101714
101742
|
}
|
|
@@ -101718,7 +101746,7 @@ export namespace Prisma {
|
|
|
101718
101746
|
shopifyId?: string | null
|
|
101719
101747
|
name?: string | null
|
|
101720
101748
|
url: string
|
|
101721
|
-
accessToken
|
|
101749
|
+
accessToken?: string | null
|
|
101722
101750
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
101723
101751
|
products?: ShopifyProductUncheckedCreateNestedManyWithoutShopifyStoreInput
|
|
101724
101752
|
}
|
|
@@ -102700,7 +102728,7 @@ export namespace Prisma {
|
|
|
102700
102728
|
shopifyId?: StringNullableFilter<"ShopifyStore"> | string | null
|
|
102701
102729
|
name?: StringNullableFilter<"ShopifyStore"> | string | null
|
|
102702
102730
|
url?: StringFilter<"ShopifyStore"> | string
|
|
102703
|
-
accessToken?:
|
|
102731
|
+
accessToken?: StringNullableFilter<"ShopifyStore"> | string | null
|
|
102704
102732
|
metaData?: JsonFilter<"ShopifyStore">
|
|
102705
102733
|
brandId?: IntFilter<"ShopifyStore"> | number
|
|
102706
102734
|
}
|
|
@@ -116052,6 +116080,7 @@ export namespace Prisma {
|
|
|
116052
116080
|
shopifyId: string
|
|
116053
116081
|
title: string
|
|
116054
116082
|
handle: string
|
|
116083
|
+
imageUrl: string
|
|
116055
116084
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
116056
116085
|
lastSynced?: Date | string
|
|
116057
116086
|
campaignToShopifyProducts?: CampaignToShopifyProductCreateNestedManyWithoutShopifyProductInput
|
|
@@ -116062,6 +116091,7 @@ export namespace Prisma {
|
|
|
116062
116091
|
shopifyId: string
|
|
116063
116092
|
title: string
|
|
116064
116093
|
handle: string
|
|
116094
|
+
imageUrl: string
|
|
116065
116095
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
116066
116096
|
lastSynced?: Date | string
|
|
116067
116097
|
campaignToShopifyProducts?: CampaignToShopifyProductUncheckedCreateNestedManyWithoutShopifyProductInput
|
|
@@ -116181,6 +116211,7 @@ export namespace Prisma {
|
|
|
116181
116211
|
shopifyId?: StringFilter<"ShopifyProduct"> | string
|
|
116182
116212
|
title?: StringFilter<"ShopifyProduct"> | string
|
|
116183
116213
|
handle?: StringFilter<"ShopifyProduct"> | string
|
|
116214
|
+
imageUrl?: StringFilter<"ShopifyProduct"> | string
|
|
116184
116215
|
metaData?: JsonFilter<"ShopifyProduct">
|
|
116185
116216
|
lastSynced?: DateTimeFilter<"ShopifyProduct"> | Date | string
|
|
116186
116217
|
shopifyStoreId?: IntFilter<"ShopifyProduct"> | number
|
|
@@ -116294,7 +116325,7 @@ export namespace Prisma {
|
|
|
116294
116325
|
shopifyId?: string | null
|
|
116295
116326
|
name?: string | null
|
|
116296
116327
|
url: string
|
|
116297
|
-
accessToken
|
|
116328
|
+
accessToken?: string | null
|
|
116298
116329
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
116299
116330
|
brand?: BrandCreateNestedOneWithoutShopifyStoresInput
|
|
116300
116331
|
}
|
|
@@ -116304,7 +116335,7 @@ export namespace Prisma {
|
|
|
116304
116335
|
shopifyId?: string | null
|
|
116305
116336
|
name?: string | null
|
|
116306
116337
|
url: string
|
|
116307
|
-
accessToken
|
|
116338
|
+
accessToken?: string | null
|
|
116308
116339
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
116309
116340
|
brandId: number
|
|
116310
116341
|
}
|
|
@@ -116345,7 +116376,7 @@ export namespace Prisma {
|
|
|
116345
116376
|
shopifyId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
116346
116377
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
116347
116378
|
url?: StringFieldUpdateOperationsInput | string
|
|
116348
|
-
accessToken?:
|
|
116379
|
+
accessToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
116349
116380
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
116350
116381
|
brand?: BrandUpdateOneWithoutShopifyStoresNestedInput
|
|
116351
116382
|
}
|
|
@@ -116355,7 +116386,7 @@ export namespace Prisma {
|
|
|
116355
116386
|
shopifyId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
116356
116387
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
116357
116388
|
url?: StringFieldUpdateOperationsInput | string
|
|
116358
|
-
accessToken?:
|
|
116389
|
+
accessToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
116359
116390
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
116360
116391
|
brandId?: IntFieldUpdateOperationsInput | number
|
|
116361
116392
|
}
|
|
@@ -116502,6 +116533,7 @@ export namespace Prisma {
|
|
|
116502
116533
|
shopifyId: string
|
|
116503
116534
|
title: string
|
|
116504
116535
|
handle: string
|
|
116536
|
+
imageUrl: string
|
|
116505
116537
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
116506
116538
|
lastSynced?: Date | string
|
|
116507
116539
|
shopifyStore: ShopifyStoreCreateNestedOneWithoutProductsInput
|
|
@@ -116512,6 +116544,7 @@ export namespace Prisma {
|
|
|
116512
116544
|
shopifyId: string
|
|
116513
116545
|
title: string
|
|
116514
116546
|
handle: string
|
|
116547
|
+
imageUrl: string
|
|
116515
116548
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
116516
116549
|
lastSynced?: Date | string
|
|
116517
116550
|
shopifyStoreId: number
|
|
@@ -116681,6 +116714,7 @@ export namespace Prisma {
|
|
|
116681
116714
|
shopifyId?: StringFieldUpdateOperationsInput | string
|
|
116682
116715
|
title?: StringFieldUpdateOperationsInput | string
|
|
116683
116716
|
handle?: StringFieldUpdateOperationsInput | string
|
|
116717
|
+
imageUrl?: StringFieldUpdateOperationsInput | string
|
|
116684
116718
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
116685
116719
|
lastSynced?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116686
116720
|
shopifyStore?: ShopifyStoreUpdateOneRequiredWithoutProductsNestedInput
|
|
@@ -116691,6 +116725,7 @@ export namespace Prisma {
|
|
|
116691
116725
|
shopifyId?: StringFieldUpdateOperationsInput | string
|
|
116692
116726
|
title?: StringFieldUpdateOperationsInput | string
|
|
116693
116727
|
handle?: StringFieldUpdateOperationsInput | string
|
|
116728
|
+
imageUrl?: StringFieldUpdateOperationsInput | string
|
|
116694
116729
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
116695
116730
|
lastSynced?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
116696
116731
|
shopifyStoreId?: IntFieldUpdateOperationsInput | number
|
|
@@ -117724,7 +117759,7 @@ export namespace Prisma {
|
|
|
117724
117759
|
shopifyId?: string | null
|
|
117725
117760
|
name?: string | null
|
|
117726
117761
|
url: string
|
|
117727
|
-
accessToken
|
|
117762
|
+
accessToken?: string | null
|
|
117728
117763
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
117729
117764
|
}
|
|
117730
117765
|
|
|
@@ -118366,7 +118401,7 @@ export namespace Prisma {
|
|
|
118366
118401
|
shopifyId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118367
118402
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118368
118403
|
url?: StringFieldUpdateOperationsInput | string
|
|
118369
|
-
accessToken?:
|
|
118404
|
+
accessToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118370
118405
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
118371
118406
|
products?: ShopifyProductUpdateManyWithoutShopifyStoreNestedInput
|
|
118372
118407
|
}
|
|
@@ -118376,7 +118411,7 @@ export namespace Prisma {
|
|
|
118376
118411
|
shopifyId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118377
118412
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118378
118413
|
url?: StringFieldUpdateOperationsInput | string
|
|
118379
|
-
accessToken?:
|
|
118414
|
+
accessToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118380
118415
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
118381
118416
|
products?: ShopifyProductUncheckedUpdateManyWithoutShopifyStoreNestedInput
|
|
118382
118417
|
}
|
|
@@ -118386,7 +118421,7 @@ export namespace Prisma {
|
|
|
118386
118421
|
shopifyId?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118387
118422
|
name?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118388
118423
|
url?: StringFieldUpdateOperationsInput | string
|
|
118389
|
-
accessToken?:
|
|
118424
|
+
accessToken?: NullableStringFieldUpdateOperationsInput | string | null
|
|
118390
118425
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
118391
118426
|
}
|
|
118392
118427
|
|
|
@@ -120241,6 +120276,7 @@ export namespace Prisma {
|
|
|
120241
120276
|
shopifyId: string
|
|
120242
120277
|
title: string
|
|
120243
120278
|
handle: string
|
|
120279
|
+
imageUrl: string
|
|
120244
120280
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
120245
120281
|
lastSynced?: Date | string
|
|
120246
120282
|
}
|
|
@@ -120249,6 +120285,7 @@ export namespace Prisma {
|
|
|
120249
120285
|
shopifyId?: StringFieldUpdateOperationsInput | string
|
|
120250
120286
|
title?: StringFieldUpdateOperationsInput | string
|
|
120251
120287
|
handle?: StringFieldUpdateOperationsInput | string
|
|
120288
|
+
imageUrl?: StringFieldUpdateOperationsInput | string
|
|
120252
120289
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
120253
120290
|
lastSynced?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
120254
120291
|
campaignToShopifyProducts?: CampaignToShopifyProductUpdateManyWithoutShopifyProductNestedInput
|
|
@@ -120259,6 +120296,7 @@ export namespace Prisma {
|
|
|
120259
120296
|
shopifyId?: StringFieldUpdateOperationsInput | string
|
|
120260
120297
|
title?: StringFieldUpdateOperationsInput | string
|
|
120261
120298
|
handle?: StringFieldUpdateOperationsInput | string
|
|
120299
|
+
imageUrl?: StringFieldUpdateOperationsInput | string
|
|
120262
120300
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
120263
120301
|
lastSynced?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
120264
120302
|
campaignToShopifyProducts?: CampaignToShopifyProductUncheckedUpdateManyWithoutShopifyProductNestedInput
|
|
@@ -120269,6 +120307,7 @@ export namespace Prisma {
|
|
|
120269
120307
|
shopifyId?: StringFieldUpdateOperationsInput | string
|
|
120270
120308
|
title?: StringFieldUpdateOperationsInput | string
|
|
120271
120309
|
handle?: StringFieldUpdateOperationsInput | string
|
|
120310
|
+
imageUrl?: StringFieldUpdateOperationsInput | string
|
|
120272
120311
|
metaData?: JsonNullValueInput | InputJsonValue
|
|
120273
120312
|
lastSynced?: DateTimeFieldUpdateOperationsInput | Date | string
|
|
120274
120313
|
}
|