@creator.co/creatorco-prisma-client 1.0.22-alpha-0163da4 → 1.0.22-alpha-a3bca2f
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 +73 -5
- package/index-browser.js +69 -1
- package/index.d.ts +7240 -398
- package/index.js +73 -5
- package/package.json +1 -1
- package/schema.prisma +73 -0
- package/wasm.js +69 -1
package/index-browser.js
CHANGED
|
@@ -849,6 +849,43 @@ exports.Prisma.SequenceImapCheckpointScalarFieldEnum = {
|
|
|
849
849
|
updatedAt: 'updatedAt'
|
|
850
850
|
};
|
|
851
851
|
|
|
852
|
+
exports.Prisma.ShopifyStoreScalarFieldEnum = {
|
|
853
|
+
id: 'id',
|
|
854
|
+
shopifyId: 'shopifyId',
|
|
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
|
+
shopifyProductId: 'shopifyProductId',
|
|
871
|
+
metaData: 'metaData',
|
|
872
|
+
shopifyStoreId: 'shopifyStoreId'
|
|
873
|
+
};
|
|
874
|
+
|
|
875
|
+
exports.Prisma.ShopifyProductVariationScalarFieldEnum = {
|
|
876
|
+
id: 'id',
|
|
877
|
+
shopifyId: 'shopifyId',
|
|
878
|
+
title: 'title',
|
|
879
|
+
imageUrl: 'imageUrl',
|
|
880
|
+
metaData: 'metaData',
|
|
881
|
+
shopifyProductId: 'shopifyProductId'
|
|
882
|
+
};
|
|
883
|
+
|
|
884
|
+
exports.Prisma.CampaignToShopifyProductScalarFieldEnum = {
|
|
885
|
+
campaignId: 'campaignId',
|
|
886
|
+
shopifyProductId: 'shopifyProductId'
|
|
887
|
+
};
|
|
888
|
+
|
|
852
889
|
exports.Prisma.SortOrder = {
|
|
853
890
|
asc: 'asc',
|
|
854
891
|
desc: 'desc'
|
|
@@ -1175,6 +1212,27 @@ exports.Prisma.SequenceOrderByRelevanceFieldEnum = {
|
|
|
1175
1212
|
exports.Prisma.SequenceInboundEmailOrderByRelevanceFieldEnum = {
|
|
1176
1213
|
msgHash: 'msgHash'
|
|
1177
1214
|
};
|
|
1215
|
+
|
|
1216
|
+
exports.Prisma.ShopifyStoreOrderByRelevanceFieldEnum = {
|
|
1217
|
+
shopifyId: 'shopifyId',
|
|
1218
|
+
name: 'name',
|
|
1219
|
+
url: 'url',
|
|
1220
|
+
accessToken: 'accessToken'
|
|
1221
|
+
};
|
|
1222
|
+
|
|
1223
|
+
exports.Prisma.ShopifyProductOrderByRelevanceFieldEnum = {
|
|
1224
|
+
shopifyId: 'shopifyId',
|
|
1225
|
+
title: 'title',
|
|
1226
|
+
handle: 'handle',
|
|
1227
|
+
imageUrl: 'imageUrl',
|
|
1228
|
+
shopifyProductId: 'shopifyProductId'
|
|
1229
|
+
};
|
|
1230
|
+
|
|
1231
|
+
exports.Prisma.ShopifyProductVariationOrderByRelevanceFieldEnum = {
|
|
1232
|
+
shopifyId: 'shopifyId',
|
|
1233
|
+
title: 'title',
|
|
1234
|
+
imageUrl: 'imageUrl'
|
|
1235
|
+
};
|
|
1178
1236
|
exports.trolleyPaymentType = exports.$Enums.trolleyPaymentType = {
|
|
1179
1237
|
optIn: 'optIn',
|
|
1180
1238
|
tip: 'tip',
|
|
@@ -1189,6 +1247,12 @@ exports.trolleyPaymentStatus = exports.$Enums.trolleyPaymentStatus = {
|
|
|
1189
1247
|
returned: 'returned'
|
|
1190
1248
|
};
|
|
1191
1249
|
|
|
1250
|
+
exports.ShopifyStoreSyncStatus = exports.$Enums.ShopifyStoreSyncStatus = {
|
|
1251
|
+
syncing: 'syncing',
|
|
1252
|
+
synced: 'synced',
|
|
1253
|
+
error: 'error'
|
|
1254
|
+
};
|
|
1255
|
+
|
|
1192
1256
|
exports.Prisma.ModelName = {
|
|
1193
1257
|
User: 'User',
|
|
1194
1258
|
Log: 'Log',
|
|
@@ -1249,7 +1313,11 @@ exports.Prisma.ModelName = {
|
|
|
1249
1313
|
SequenceStep: 'SequenceStep',
|
|
1250
1314
|
SequenceOutboundEmail: 'SequenceOutboundEmail',
|
|
1251
1315
|
SequenceInboundEmail: 'SequenceInboundEmail',
|
|
1252
|
-
SequenceImapCheckpoint: 'SequenceImapCheckpoint'
|
|
1316
|
+
SequenceImapCheckpoint: 'SequenceImapCheckpoint',
|
|
1317
|
+
ShopifyStore: 'ShopifyStore',
|
|
1318
|
+
ShopifyProduct: 'ShopifyProduct',
|
|
1319
|
+
ShopifyProductVariation: 'ShopifyProductVariation',
|
|
1320
|
+
CampaignToShopifyProduct: 'CampaignToShopifyProduct'
|
|
1253
1321
|
};
|
|
1254
1322
|
|
|
1255
1323
|
/**
|