@creator.co/creatorco-prisma-client 1.0.21-alpha-f0d1b14 → 1.0.22-alpha-6b3aed6
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 +12 -12
- package/index-browser.js +8 -8
- package/index.d.ts +1812 -754
- package/index.js +12 -12
- package/package.json +1 -1
- package/schema.prisma +13 -6
- package/wasm.js +8 -8
package/index-browser.js
CHANGED
|
@@ -851,15 +851,16 @@ exports.Prisma.ShopifyProductScalarFieldEnum = {
|
|
|
851
851
|
shopifyId: 'shopifyId',
|
|
852
852
|
title: 'title',
|
|
853
853
|
handle: 'handle',
|
|
854
|
-
createdAt: 'createdAt',
|
|
855
|
-
updatedAt: 'updatedAt',
|
|
856
|
-
tags: 'tags',
|
|
857
|
-
status: 'status',
|
|
858
854
|
metaData: 'metaData',
|
|
859
855
|
lastSynced: 'lastSynced',
|
|
860
856
|
shopifyStoreId: 'shopifyStoreId'
|
|
861
857
|
};
|
|
862
858
|
|
|
859
|
+
exports.Prisma.CampaignToShopifyProductScalarFieldEnum = {
|
|
860
|
+
campaignId: 'campaignId',
|
|
861
|
+
shopifyProductId: 'shopifyProductId'
|
|
862
|
+
};
|
|
863
|
+
|
|
863
864
|
exports.Prisma.SortOrder = {
|
|
864
865
|
asc: 'asc',
|
|
865
866
|
desc: 'desc'
|
|
@@ -1197,9 +1198,7 @@ exports.Prisma.ShopifyStoreOrderByRelevanceFieldEnum = {
|
|
|
1197
1198
|
exports.Prisma.ShopifyProductOrderByRelevanceFieldEnum = {
|
|
1198
1199
|
shopifyId: 'shopifyId',
|
|
1199
1200
|
title: 'title',
|
|
1200
|
-
handle: 'handle'
|
|
1201
|
-
tags: 'tags',
|
|
1202
|
-
status: 'status'
|
|
1201
|
+
handle: 'handle'
|
|
1203
1202
|
};
|
|
1204
1203
|
exports.trolleyPaymentType = exports.$Enums.trolleyPaymentType = {
|
|
1205
1204
|
optIn: 'optIn',
|
|
@@ -1277,7 +1276,8 @@ exports.Prisma.ModelName = {
|
|
|
1277
1276
|
SequenceInboundEmail: 'SequenceInboundEmail',
|
|
1278
1277
|
SequenceImapCheckpoint: 'SequenceImapCheckpoint',
|
|
1279
1278
|
ShopifyStore: 'ShopifyStore',
|
|
1280
|
-
ShopifyProduct: 'ShopifyProduct'
|
|
1279
|
+
ShopifyProduct: 'ShopifyProduct',
|
|
1280
|
+
CampaignToShopifyProduct: 'CampaignToShopifyProduct'
|
|
1281
1281
|
};
|
|
1282
1282
|
|
|
1283
1283
|
/**
|