@creator.co/creatorco-kysely-types 1.0.65 → 1.0.66
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 +4 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -112,11 +112,14 @@ export type BrandContract = {
|
|
|
112
112
|
createdAt: Generated<Timestamp>;
|
|
113
113
|
updatedAt: Timestamp;
|
|
114
114
|
fileId: string | null;
|
|
115
|
+
chargebeeSubscriptionId: string | null;
|
|
115
116
|
contractType: string;
|
|
117
|
+
addOns: string | null;
|
|
116
118
|
startDate: Timestamp;
|
|
117
119
|
endDate: Timestamp | null;
|
|
120
|
+
status: string | null;
|
|
118
121
|
archivedAt: Timestamp | null;
|
|
119
|
-
createdByUserId: number;
|
|
122
|
+
createdByUserId: number | null;
|
|
120
123
|
editedByUserId: number | null;
|
|
121
124
|
};
|
|
122
125
|
export type BrandImage = {
|