@creator.co/creatorco-kysely-types 1.0.58 → 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 +11 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -511,6 +511,16 @@ export type PaymentTransaction = {
|
|
|
511
511
|
creatorId: number | null;
|
|
512
512
|
prevTransactionId: number | null;
|
|
513
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
|
+
};
|
|
514
524
|
export type ProductList = {
|
|
515
525
|
id: GeneratedAlways<number>;
|
|
516
526
|
title: string;
|
|
@@ -906,6 +916,7 @@ export type DB = {
|
|
|
906
916
|
OptInVariable: OptInVariable;
|
|
907
917
|
optinview: OptInView;
|
|
908
918
|
PaymentTransaction: PaymentTransaction;
|
|
919
|
+
PendingBrandInvoicePayment: PendingBrandInvoicePayment;
|
|
909
920
|
productList: ProductList;
|
|
910
921
|
productListItem: ProductListItem;
|
|
911
922
|
rakutenactivity: RakutenActivity;
|