@creator.co/creatorco-prisma-client 1.0.19 → 1.0.20-alpha-995a7a0
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 +50 -5
- package/index-browser.js +46 -1
- package/index.d.ts +3998 -141
- package/index.js +50 -5
- package/package.json +1 -1
- package/schema.prisma +45 -1
- package/wasm.js +46 -1
package/index-browser.js
CHANGED
|
@@ -633,6 +633,7 @@ exports.Prisma.AffiliateClickScalarFieldEnum = {
|
|
|
633
633
|
id: 'id',
|
|
634
634
|
created: 'created',
|
|
635
635
|
visitorIp: 'visitorIp',
|
|
636
|
+
optInId: 'optInId',
|
|
636
637
|
metaData: 'metaData',
|
|
637
638
|
affiliateLinkId: 'affiliateLinkId'
|
|
638
639
|
};
|
|
@@ -835,6 +836,32 @@ exports.Prisma.SequenceImapCheckpointScalarFieldEnum = {
|
|
|
835
836
|
updatedAt: 'updatedAt'
|
|
836
837
|
};
|
|
837
838
|
|
|
839
|
+
exports.Prisma.ShopifyStoreScalarFieldEnum = {
|
|
840
|
+
id: 'id',
|
|
841
|
+
shopifyId: 'shopifyId',
|
|
842
|
+
name: 'name',
|
|
843
|
+
url: 'url',
|
|
844
|
+
accessToken: 'accessToken',
|
|
845
|
+
metaData: 'metaData',
|
|
846
|
+
brandId: 'brandId'
|
|
847
|
+
};
|
|
848
|
+
|
|
849
|
+
exports.Prisma.ShopifyProductScalarFieldEnum = {
|
|
850
|
+
id: 'id',
|
|
851
|
+
shopifyId: 'shopifyId',
|
|
852
|
+
title: 'title',
|
|
853
|
+
handle: 'handle',
|
|
854
|
+
createdAt: 'createdAt',
|
|
855
|
+
updatedAt: 'updatedAt',
|
|
856
|
+
description: 'description',
|
|
857
|
+
price: 'price',
|
|
858
|
+
tags: 'tags',
|
|
859
|
+
status: 'status',
|
|
860
|
+
metaData: 'metaData',
|
|
861
|
+
lastSynced: 'lastSynced',
|
|
862
|
+
shopifyStoreId: 'shopifyStoreId'
|
|
863
|
+
};
|
|
864
|
+
|
|
838
865
|
exports.Prisma.SortOrder = {
|
|
839
866
|
asc: 'asc',
|
|
840
867
|
desc: 'desc'
|
|
@@ -1161,6 +1188,22 @@ exports.Prisma.SequenceOrderByRelevanceFieldEnum = {
|
|
|
1161
1188
|
exports.Prisma.SequenceInboundEmailOrderByRelevanceFieldEnum = {
|
|
1162
1189
|
msgHash: 'msgHash'
|
|
1163
1190
|
};
|
|
1191
|
+
|
|
1192
|
+
exports.Prisma.ShopifyStoreOrderByRelevanceFieldEnum = {
|
|
1193
|
+
shopifyId: 'shopifyId',
|
|
1194
|
+
name: 'name',
|
|
1195
|
+
url: 'url',
|
|
1196
|
+
accessToken: 'accessToken'
|
|
1197
|
+
};
|
|
1198
|
+
|
|
1199
|
+
exports.Prisma.ShopifyProductOrderByRelevanceFieldEnum = {
|
|
1200
|
+
shopifyId: 'shopifyId',
|
|
1201
|
+
title: 'title',
|
|
1202
|
+
handle: 'handle',
|
|
1203
|
+
description: 'description',
|
|
1204
|
+
tags: 'tags',
|
|
1205
|
+
status: 'status'
|
|
1206
|
+
};
|
|
1164
1207
|
exports.trolleyPaymentType = exports.$Enums.trolleyPaymentType = {
|
|
1165
1208
|
optIn: 'optIn',
|
|
1166
1209
|
tip: 'tip',
|
|
@@ -1235,7 +1278,9 @@ exports.Prisma.ModelName = {
|
|
|
1235
1278
|
SequenceStep: 'SequenceStep',
|
|
1236
1279
|
SequenceOutboundEmail: 'SequenceOutboundEmail',
|
|
1237
1280
|
SequenceInboundEmail: 'SequenceInboundEmail',
|
|
1238
|
-
SequenceImapCheckpoint: 'SequenceImapCheckpoint'
|
|
1281
|
+
SequenceImapCheckpoint: 'SequenceImapCheckpoint',
|
|
1282
|
+
ShopifyStore: 'ShopifyStore',
|
|
1283
|
+
ShopifyProduct: 'ShopifyProduct'
|
|
1239
1284
|
};
|
|
1240
1285
|
|
|
1241
1286
|
/**
|