@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/package.json CHANGED
@@ -68,7 +68,7 @@
68
68
  },
69
69
  "./*": "./*"
70
70
  },
71
- "version": "1.0.22-alpha-6b3aed6",
71
+ "version": "1.0.22-alpha-c4b16cb",
72
72
  "sideEffects": false,
73
73
  "description": "Prisma client for creatorco Database"
74
74
  }
package/schema.prisma CHANGED
@@ -1228,7 +1228,7 @@ model ShopifyStore {
1228
1228
  shopifyId String? @unique @map("shopify_id")
1229
1229
  name String?
1230
1230
  url String
1231
- accessToken String @map("access_token")
1231
+ accessToken String? @map("access_token")
1232
1232
  metaData Json @default("{}") @map("meta_data")
1233
1233
 
1234
1234
  brandId Int @map("brand_id")
@@ -1244,7 +1244,8 @@ model ShopifyProduct {
1244
1244
  shopifyId String @unique @map("shopify_id")
1245
1245
  title String
1246
1246
  handle String
1247
-
1247
+ imageUrl String @db.Text @map("image_url")
1248
+
1248
1249
  metaData Json @default("{}") @map("meta_data")
1249
1250
 
1250
1251
  lastSynced DateTime @default(now()) @map("last_synced")
package/wasm.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',