@creator.co/creatorco-kysely-types 1.0.22-alpha-6b3aed6 → 1.0.22
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/index.d.ts +1 -25
- package/kyselyJson.d.ts +1 -1
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -177,10 +177,6 @@ export type CampaignToImage = {
|
|
|
177
177
|
campaignId: number;
|
|
178
178
|
type: string;
|
|
179
179
|
};
|
|
180
|
-
export type CampaignToShopifyProduct = {
|
|
181
|
-
campaign_id: number;
|
|
182
|
-
shopify_product_id: number;
|
|
183
|
-
};
|
|
184
180
|
export type Category = {
|
|
185
181
|
id: GeneratedAlways<number>;
|
|
186
182
|
slug: string;
|
|
@@ -367,6 +363,7 @@ export type OptIn = {
|
|
|
367
363
|
paymentAmount: number | null;
|
|
368
364
|
paymentStatus: Generated<string>;
|
|
369
365
|
extraData: Generated<Json>;
|
|
366
|
+
favoritedDate: Timestamp | null;
|
|
370
367
|
userId: number;
|
|
371
368
|
campaignId: number;
|
|
372
369
|
currentStepId: number | null;
|
|
@@ -485,24 +482,6 @@ export type SequenceStep = {
|
|
|
485
482
|
order: number;
|
|
486
483
|
stepId: number;
|
|
487
484
|
};
|
|
488
|
-
export type ShopifyProduct = {
|
|
489
|
-
id: GeneratedAlways<number>;
|
|
490
|
-
shopify_id: string;
|
|
491
|
-
title: string;
|
|
492
|
-
handle: string;
|
|
493
|
-
meta_data: Generated<Json>;
|
|
494
|
-
last_synced: Generated<Timestamp>;
|
|
495
|
-
shopify_store_id: number;
|
|
496
|
-
};
|
|
497
|
-
export type ShopifyStore = {
|
|
498
|
-
id: GeneratedAlways<number>;
|
|
499
|
-
shopify_id: string | null;
|
|
500
|
-
name: string | null;
|
|
501
|
-
url: string;
|
|
502
|
-
access_token: string;
|
|
503
|
-
meta_data: Generated<Json>;
|
|
504
|
-
brand_id: number;
|
|
505
|
-
};
|
|
506
485
|
export type SocialListeningList = {
|
|
507
486
|
id: GeneratedAlways<number>;
|
|
508
487
|
brandId: number;
|
|
@@ -709,7 +688,6 @@ export type DB = {
|
|
|
709
688
|
brandtoimage: BrandToImage;
|
|
710
689
|
branduserprofile: BrandUserProfile;
|
|
711
690
|
campaign: Campaign;
|
|
712
|
-
campaign_to_shopify_product: CampaignToShopifyProduct;
|
|
713
691
|
CampaignInvite: CampaignInvite;
|
|
714
692
|
campaignpin: CampaignPin;
|
|
715
693
|
campaignstep: CampaignStep;
|
|
@@ -747,8 +725,6 @@ export type DB = {
|
|
|
747
725
|
sequenceinboundemail: SequenceInboundEmail;
|
|
748
726
|
sequenceoutboundemail: SequenceOutboundEmail;
|
|
749
727
|
sequencestep: SequenceStep;
|
|
750
|
-
shopify_product: ShopifyProduct;
|
|
751
|
-
shopify_store: ShopifyStore;
|
|
752
728
|
sociallisteninglist: SocialListeningList;
|
|
753
729
|
socialpost: SocialPost;
|
|
754
730
|
socialprofile: SocialProfile;
|
package/kyselyJson.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@creator.co/creatorco-kysely-types",
|
|
3
|
-
"version": "1.0.22
|
|
3
|
+
"version": "1.0.22",
|
|
4
4
|
"types": "./index.d.ts",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"devDependencies": {
|
|
7
7
|
"typescript": "^5.2.2"
|
|
8
8
|
},
|
|
9
|
-
"
|
|
10
|
-
"kysely": "^0.
|
|
9
|
+
"peerDependencies": {
|
|
10
|
+
"kysely": "^0.x.x"
|
|
11
11
|
},
|
|
12
12
|
"description": "Kysely types for creatorco Database"
|
|
13
13
|
}
|