@creator.co/creatorco-kysely-types 1.0.57 → 1.0.59
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 +13 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -449,6 +449,8 @@ export type MessageTemplate = {
|
|
|
449
449
|
template: string;
|
|
450
450
|
brandId: number | null;
|
|
451
451
|
metaData: Generated<Json>;
|
|
452
|
+
createdAt: Generated<Timestamp | null>;
|
|
453
|
+
updatedAt: Timestamp | null;
|
|
452
454
|
};
|
|
453
455
|
export type OptIn = {
|
|
454
456
|
id: GeneratedAlways<number>;
|
|
@@ -509,6 +511,16 @@ export type PaymentTransaction = {
|
|
|
509
511
|
creatorId: number | null;
|
|
510
512
|
prevTransactionId: number | null;
|
|
511
513
|
};
|
|
514
|
+
export type PendingBrandInvoicePayment = {
|
|
515
|
+
id: GeneratedAlways<number>;
|
|
516
|
+
invoiceId: string;
|
|
517
|
+
type: string;
|
|
518
|
+
source: string;
|
|
519
|
+
brandId: number | null;
|
|
520
|
+
status: string;
|
|
521
|
+
createdAt: Generated<Timestamp>;
|
|
522
|
+
updatedAt: Timestamp;
|
|
523
|
+
};
|
|
512
524
|
export type ProductList = {
|
|
513
525
|
id: GeneratedAlways<number>;
|
|
514
526
|
title: string;
|
|
@@ -904,6 +916,7 @@ export type DB = {
|
|
|
904
916
|
OptInVariable: OptInVariable;
|
|
905
917
|
optinview: OptInView;
|
|
906
918
|
PaymentTransaction: PaymentTransaction;
|
|
919
|
+
PendingBrandInvoicePayment: PendingBrandInvoicePayment;
|
|
907
920
|
productList: ProductList;
|
|
908
921
|
productListItem: ProductListItem;
|
|
909
922
|
rakutenactivity: RakutenActivity;
|