@creator.co/creatorco-kysely-types 1.0.62 → 1.0.64-alpha-499941e
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 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -306,6 +306,7 @@ export type CreatorList = {
|
|
|
306
306
|
archived: Timestamp | null;
|
|
307
307
|
title: string;
|
|
308
308
|
metaData: Generated<Json | null>;
|
|
309
|
+
createdByUserId: number | null;
|
|
309
310
|
};
|
|
310
311
|
export type CreatorListItem = {
|
|
311
312
|
id: GeneratedAlways<number>;
|
|
@@ -349,6 +350,15 @@ export type CreatorToCategory = {
|
|
|
349
350
|
creatorProfileId: number;
|
|
350
351
|
categoryId: number;
|
|
351
352
|
};
|
|
353
|
+
export type CreditRefundBatch = {
|
|
354
|
+
id: GeneratedAlways<number>;
|
|
355
|
+
createdAt: Generated<Timestamp>;
|
|
356
|
+
closedAt: Timestamp | null;
|
|
357
|
+
};
|
|
358
|
+
export type CreditRefundBatchToSocialProfile = {
|
|
359
|
+
A: number;
|
|
360
|
+
B: number;
|
|
361
|
+
};
|
|
352
362
|
export type EmailTemplate = {
|
|
353
363
|
id: GeneratedAlways<number>;
|
|
354
364
|
label: string | null;
|
|
@@ -896,6 +906,7 @@ export type YoutubeProfile = {
|
|
|
896
906
|
brandId: number | null;
|
|
897
907
|
};
|
|
898
908
|
export type DB = {
|
|
909
|
+
_CreditRefundBatchToSocialProfile: CreditRefundBatchToSocialProfile;
|
|
899
910
|
affiliatePayoutBatch: AffiliatePayoutBatch;
|
|
900
911
|
AffiliateClick: AffiliateClick;
|
|
901
912
|
AffiliateEvent: AffiliateEvent;
|
|
@@ -929,6 +940,7 @@ export type DB = {
|
|
|
929
940
|
creatorprofile: CreatorProfile;
|
|
930
941
|
creatorsearchfilter: CreatorSearchFilter;
|
|
931
942
|
CreatorToCategory: CreatorToCategory;
|
|
943
|
+
creditRefundBatch: CreditRefundBatch;
|
|
932
944
|
EmailTemplate: EmailTemplate;
|
|
933
945
|
externalAffiliateClick: ExternalAffiliateClick;
|
|
934
946
|
facebookprofile: FacebookProfile;
|