@creator.co/creatorco-prisma-client 1.0.23 → 1.0.24-alpha-b01aec2
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 +70 -5
- package/index-browser.js +66 -1
- package/index.d.ts +7244 -398
- package/index.js +70 -5
- package/package.json +1 -1
- package/schema.prisma +75 -0
- package/wasm.js +66 -1
package/index-browser.js
CHANGED
|
@@ -384,6 +384,7 @@ exports.Prisma.CampaignScalarFieldEnum = {
|
|
|
384
384
|
status: 'status',
|
|
385
385
|
date: 'date',
|
|
386
386
|
publishDate: 'publishDate',
|
|
387
|
+
sfSyncDate: 'sfSyncDate',
|
|
387
388
|
description: 'description',
|
|
388
389
|
productDescription: 'productDescription',
|
|
389
390
|
prizeDescription: 'prizeDescription',
|
|
@@ -849,6 +850,41 @@ exports.Prisma.SequenceImapCheckpointScalarFieldEnum = {
|
|
|
849
850
|
updatedAt: 'updatedAt'
|
|
850
851
|
};
|
|
851
852
|
|
|
853
|
+
exports.Prisma.ShopifyStoreScalarFieldEnum = {
|
|
854
|
+
id: 'id',
|
|
855
|
+
name: 'name',
|
|
856
|
+
url: 'url',
|
|
857
|
+
accessToken: 'accessToken',
|
|
858
|
+
syncStatus: 'syncStatus',
|
|
859
|
+
lastSynced: 'lastSynced',
|
|
860
|
+
metaData: 'metaData',
|
|
861
|
+
brandId: 'brandId'
|
|
862
|
+
};
|
|
863
|
+
|
|
864
|
+
exports.Prisma.ShopifyProductScalarFieldEnum = {
|
|
865
|
+
id: 'id',
|
|
866
|
+
shopifyId: 'shopifyId',
|
|
867
|
+
title: 'title',
|
|
868
|
+
handle: 'handle',
|
|
869
|
+
imageUrl: 'imageUrl',
|
|
870
|
+
metaData: 'metaData',
|
|
871
|
+
shopifyStoreId: 'shopifyStoreId'
|
|
872
|
+
};
|
|
873
|
+
|
|
874
|
+
exports.Prisma.ShopifyProductVariationScalarFieldEnum = {
|
|
875
|
+
id: 'id',
|
|
876
|
+
shopifyId: 'shopifyId',
|
|
877
|
+
title: 'title',
|
|
878
|
+
imageUrl: 'imageUrl',
|
|
879
|
+
metaData: 'metaData',
|
|
880
|
+
shopifyProductId: 'shopifyProductId'
|
|
881
|
+
};
|
|
882
|
+
|
|
883
|
+
exports.Prisma.CampaignToShopifyProductScalarFieldEnum = {
|
|
884
|
+
campaignId: 'campaignId',
|
|
885
|
+
shopifyProductId: 'shopifyProductId'
|
|
886
|
+
};
|
|
887
|
+
|
|
852
888
|
exports.Prisma.SortOrder = {
|
|
853
889
|
asc: 'asc',
|
|
854
890
|
desc: 'desc'
|
|
@@ -1175,6 +1211,25 @@ exports.Prisma.SequenceOrderByRelevanceFieldEnum = {
|
|
|
1175
1211
|
exports.Prisma.SequenceInboundEmailOrderByRelevanceFieldEnum = {
|
|
1176
1212
|
msgHash: 'msgHash'
|
|
1177
1213
|
};
|
|
1214
|
+
|
|
1215
|
+
exports.Prisma.ShopifyStoreOrderByRelevanceFieldEnum = {
|
|
1216
|
+
name: 'name',
|
|
1217
|
+
url: 'url',
|
|
1218
|
+
accessToken: 'accessToken'
|
|
1219
|
+
};
|
|
1220
|
+
|
|
1221
|
+
exports.Prisma.ShopifyProductOrderByRelevanceFieldEnum = {
|
|
1222
|
+
shopifyId: 'shopifyId',
|
|
1223
|
+
title: 'title',
|
|
1224
|
+
handle: 'handle',
|
|
1225
|
+
imageUrl: 'imageUrl'
|
|
1226
|
+
};
|
|
1227
|
+
|
|
1228
|
+
exports.Prisma.ShopifyProductVariationOrderByRelevanceFieldEnum = {
|
|
1229
|
+
shopifyId: 'shopifyId',
|
|
1230
|
+
title: 'title',
|
|
1231
|
+
imageUrl: 'imageUrl'
|
|
1232
|
+
};
|
|
1178
1233
|
exports.trolleyPaymentType = exports.$Enums.trolleyPaymentType = {
|
|
1179
1234
|
optIn: 'optIn',
|
|
1180
1235
|
tip: 'tip',
|
|
@@ -1189,6 +1244,12 @@ exports.trolleyPaymentStatus = exports.$Enums.trolleyPaymentStatus = {
|
|
|
1189
1244
|
returned: 'returned'
|
|
1190
1245
|
};
|
|
1191
1246
|
|
|
1247
|
+
exports.ShopifyStoreSyncStatus = exports.$Enums.ShopifyStoreSyncStatus = {
|
|
1248
|
+
syncing: 'syncing',
|
|
1249
|
+
synced: 'synced',
|
|
1250
|
+
error: 'error'
|
|
1251
|
+
};
|
|
1252
|
+
|
|
1192
1253
|
exports.Prisma.ModelName = {
|
|
1193
1254
|
User: 'User',
|
|
1194
1255
|
Log: 'Log',
|
|
@@ -1249,7 +1310,11 @@ exports.Prisma.ModelName = {
|
|
|
1249
1310
|
SequenceStep: 'SequenceStep',
|
|
1250
1311
|
SequenceOutboundEmail: 'SequenceOutboundEmail',
|
|
1251
1312
|
SequenceInboundEmail: 'SequenceInboundEmail',
|
|
1252
|
-
SequenceImapCheckpoint: 'SequenceImapCheckpoint'
|
|
1313
|
+
SequenceImapCheckpoint: 'SequenceImapCheckpoint',
|
|
1314
|
+
ShopifyStore: 'ShopifyStore',
|
|
1315
|
+
ShopifyProduct: 'ShopifyProduct',
|
|
1316
|
+
ShopifyProductVariation: 'ShopifyProductVariation',
|
|
1317
|
+
CampaignToShopifyProduct: 'CampaignToShopifyProduct'
|
|
1253
1318
|
};
|
|
1254
1319
|
|
|
1255
1320
|
/**
|