@creator.co/creatorco-kysely-types 1.0.34 → 1.0.36-alpha-953b543
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 +37 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -35,6 +35,40 @@ export type AffiliateLink = {
|
|
|
35
35
|
userId: number;
|
|
36
36
|
brandAffiliateLinkId: number;
|
|
37
37
|
};
|
|
38
|
+
export type ArchivedSocialPost = {
|
|
39
|
+
id: GeneratedAlways<number>;
|
|
40
|
+
phylloId: string | null;
|
|
41
|
+
metaData: Generated<Json>;
|
|
42
|
+
lastFetched: Timestamp | null;
|
|
43
|
+
lastWebhook: Timestamp | null;
|
|
44
|
+
posted: Timestamp | null;
|
|
45
|
+
title: string | null;
|
|
46
|
+
description: string | null;
|
|
47
|
+
url: string | null;
|
|
48
|
+
urlPath: string | null;
|
|
49
|
+
format: string | null;
|
|
50
|
+
type: string | null;
|
|
51
|
+
platform: string | null;
|
|
52
|
+
visibility: string | null;
|
|
53
|
+
isSponsored: boolean | null;
|
|
54
|
+
hasCollaborators: boolean | null;
|
|
55
|
+
isOwnedByUser: boolean | null;
|
|
56
|
+
views: number | null;
|
|
57
|
+
impressions: number | null;
|
|
58
|
+
impressionsOrganic: number | null;
|
|
59
|
+
impressionsPaid: number | null;
|
|
60
|
+
reach: number | null;
|
|
61
|
+
reachOrganic: number | null;
|
|
62
|
+
reachPaid: number | null;
|
|
63
|
+
watchHours: number | null;
|
|
64
|
+
likes: number | null;
|
|
65
|
+
dislikes: number | null;
|
|
66
|
+
comments: number | null;
|
|
67
|
+
saves: number | null;
|
|
68
|
+
shares: number | null;
|
|
69
|
+
userId: number | null;
|
|
70
|
+
campaignId: number | null;
|
|
71
|
+
};
|
|
38
72
|
export type Brand = {
|
|
39
73
|
id: GeneratedAlways<number>;
|
|
40
74
|
name: string;
|
|
@@ -421,6 +455,7 @@ export type ProductList = {
|
|
|
421
455
|
title: string;
|
|
422
456
|
description: string | null;
|
|
423
457
|
metaData: Generated<Json>;
|
|
458
|
+
deactivated: Timestamp | null;
|
|
424
459
|
brandId: number;
|
|
425
460
|
};
|
|
426
461
|
export type ProductListItem = {
|
|
@@ -428,6 +463,7 @@ export type ProductListItem = {
|
|
|
428
463
|
title: string;
|
|
429
464
|
description: string | null;
|
|
430
465
|
metaData: Generated<Json>;
|
|
466
|
+
deactivated: Timestamp | null;
|
|
431
467
|
productListId: number;
|
|
432
468
|
};
|
|
433
469
|
export type RakutenActivity = {
|
|
@@ -739,6 +775,7 @@ export type DB = {
|
|
|
739
775
|
AffiliateClick: AffiliateClick;
|
|
740
776
|
AffiliateEvent: AffiliateEvent;
|
|
741
777
|
AffiliateLink: AffiliateLink;
|
|
778
|
+
archivedSocialPost: ArchivedSocialPost;
|
|
742
779
|
brand: Brand;
|
|
743
780
|
BrandAffiliateLink: BrandAffiliateLink;
|
|
744
781
|
brandimage: BrandImage;
|