@creator.co/creatorco-kysely-types 1.0.63 → 1.0.64-alpha-86f6413

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.
Files changed (2) hide show
  1. package/index.d.ts +13 -0
  2. 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,16 @@ 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
+ brandId: number;
358
+ };
359
+ export type CreditRefundBatchToSocialProfile = {
360
+ A: number;
361
+ B: number;
362
+ };
352
363
  export type EmailTemplate = {
353
364
  id: GeneratedAlways<number>;
354
365
  label: string | null;
@@ -896,6 +907,7 @@ export type YoutubeProfile = {
896
907
  brandId: number | null;
897
908
  };
898
909
  export type DB = {
910
+ _CreditRefundBatchToSocialProfile: CreditRefundBatchToSocialProfile;
899
911
  affiliatePayoutBatch: AffiliatePayoutBatch;
900
912
  AffiliateClick: AffiliateClick;
901
913
  AffiliateEvent: AffiliateEvent;
@@ -929,6 +941,7 @@ export type DB = {
929
941
  creatorprofile: CreatorProfile;
930
942
  creatorsearchfilter: CreatorSearchFilter;
931
943
  CreatorToCategory: CreatorToCategory;
944
+ creditRefundBatch: CreditRefundBatch;
932
945
  EmailTemplate: EmailTemplate;
933
946
  externalAffiliateClick: ExternalAffiliateClick;
934
947
  facebookprofile: FacebookProfile;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@creator.co/creatorco-kysely-types",
3
- "version": "1.0.63",
3
+ "version": "1.0.64-alpha-86f6413",
4
4
  "types": "./index.d.ts",
5
5
  "type": "commonjs",
6
6
  "devDependencies": {