@creator.co/creatorco-kysely-types 1.0.89 → 1.0.91

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
@@ -572,6 +572,17 @@ export type ListToSocialPost = {
572
572
  listId: number;
573
573
  postId: number;
574
574
  };
575
+ export type LLMPrompt = {
576
+ id: GeneratedAlways<string>;
577
+ collectionName: string;
578
+ version: number;
579
+ steps: Json;
580
+ published: Generated<boolean>;
581
+ extraData: Generated<Json>;
582
+ editorUserId: number | null;
583
+ createdAt: Generated<Timestamp>;
584
+ updatedAt: Timestamp;
585
+ };
575
586
  export type Log = {
576
587
  id: GeneratedAlways<number>;
577
588
  userId: number | null;
@@ -924,6 +935,7 @@ export type SocialProfileContact = {
924
935
  type: string;
925
936
  value: string;
926
937
  source: Generated<SocialProfileContactSource>;
938
+ unsubscribe: Generated<string[]>;
927
939
  metaData: Generated<Json | null>;
928
940
  createdAt: Generated<Timestamp | null>;
929
941
  updatedAt: Timestamp | null;
@@ -1113,6 +1125,7 @@ export type DB = {
1113
1125
  instagramprofile: InstagramProfile;
1114
1126
  latestCreatorPaymentTransaction: LatestCreatorPaymentTransaction;
1115
1127
  listtosocialpost: ListToSocialPost;
1128
+ llmPrompt: LLMPrompt;
1116
1129
  Log: Log;
1117
1130
  message: Message;
1118
1131
  messagetemplate: MessageTemplate;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@creator.co/creatorco-kysely-types",
3
- "version": "1.0.89",
3
+ "version": "1.0.91",
4
4
  "types": "./index.d.ts",
5
5
  "type": "commonjs",
6
6
  "devDependencies": {