@creator.co/creatorco-kysely-types 1.0.67 → 1.0.69
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 +10 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -579,6 +579,15 @@ export type ProductListItem = {
|
|
|
579
579
|
deactivated: Timestamp | null;
|
|
580
580
|
productListId: number;
|
|
581
581
|
};
|
|
582
|
+
export type PublicSocialPost = {
|
|
583
|
+
id: GeneratedAlways<number>;
|
|
584
|
+
socialPostId: number;
|
|
585
|
+
views: number | null;
|
|
586
|
+
likes: number | null;
|
|
587
|
+
comments: number | null;
|
|
588
|
+
saves: number | null;
|
|
589
|
+
shares: number | null;
|
|
590
|
+
};
|
|
582
591
|
export type RakutenActivity = {
|
|
583
592
|
id: GeneratedAlways<number>;
|
|
584
593
|
orderId: string | null;
|
|
@@ -965,6 +974,7 @@ export type DB = {
|
|
|
965
974
|
PendingBrandInvoicePayment: PendingBrandInvoicePayment;
|
|
966
975
|
productList: ProductList;
|
|
967
976
|
productListItem: ProductListItem;
|
|
977
|
+
publicSocialPost: PublicSocialPost;
|
|
968
978
|
rakutenactivity: RakutenActivity;
|
|
969
979
|
reportcredits: ReportCredits;
|
|
970
980
|
savedfile: SavedFile;
|