@creator.co/creatorco-prisma-client 1.0.24-alpha-28b252a → 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 +5 -4
- package/index-browser.js +1 -0
- package/index.d.ts +86 -0
- package/index.js +5 -4
- package/package.json +1 -1
- package/schema.prisma +3 -0
- package/wasm.js +1 -0
package/package.json
CHANGED
package/schema.prisma
CHANGED
|
@@ -464,6 +464,7 @@ model Campaign {
|
|
|
464
464
|
status String @default("draft") // draft, paused, pending, private, publish, trash
|
|
465
465
|
date DateTime @default(now())
|
|
466
466
|
publishDate DateTime?
|
|
467
|
+
sfSyncDate DateTime?
|
|
467
468
|
description String? @db.Text
|
|
468
469
|
productDescription String? @db.Text
|
|
469
470
|
prizeDescription String? @db.Text
|
|
@@ -528,6 +529,7 @@ model Campaign {
|
|
|
528
529
|
sequences Sequence[]
|
|
529
530
|
|
|
530
531
|
@@index([brandId])
|
|
532
|
+
@@index([sfSyncDate])
|
|
531
533
|
@@map("campaign")
|
|
532
534
|
}
|
|
533
535
|
|
|
@@ -1241,6 +1243,7 @@ model ShopifyStore {
|
|
|
1241
1243
|
|
|
1242
1244
|
brand Brand? @relation(fields: [brandId], references: [id], onDelete: Cascade)
|
|
1243
1245
|
|
|
1246
|
+
@@index([brandId])
|
|
1244
1247
|
@@map("shopify_store")
|
|
1245
1248
|
}
|
|
1246
1249
|
|
package/wasm.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',
|