@creator.co/creatorco-kysely-types 1.0.66 → 1.0.68
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 +12 -2
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -280,7 +280,7 @@ export type CjEvent = {
|
|
|
280
280
|
amount: number | null;
|
|
281
281
|
commission: number | null;
|
|
282
282
|
metaData: Generated<Json>;
|
|
283
|
-
userId: number;
|
|
283
|
+
userId: number | null;
|
|
284
284
|
brandId: number | null;
|
|
285
285
|
optInId: number | null;
|
|
286
286
|
};
|
|
@@ -424,7 +424,7 @@ export type ImpactRadiusEvent = {
|
|
|
424
424
|
amount: number | null;
|
|
425
425
|
commission: number | null;
|
|
426
426
|
metaData: Generated<Json>;
|
|
427
|
-
userId: number;
|
|
427
|
+
userId: number | null;
|
|
428
428
|
brandId: number | null;
|
|
429
429
|
optInId: number | null;
|
|
430
430
|
};
|
|
@@ -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;
|