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

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 +12 -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;
@@ -1113,6 +1124,7 @@ export type DB = {
1113
1124
  instagramprofile: InstagramProfile;
1114
1125
  latestCreatorPaymentTransaction: LatestCreatorPaymentTransaction;
1115
1126
  listtosocialpost: ListToSocialPost;
1127
+ llmPrompt: LLMPrompt;
1116
1128
  Log: Log;
1117
1129
  message: Message;
1118
1130
  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.90",
4
4
  "types": "./index.d.ts",
5
5
  "type": "commonjs",
6
6
  "devDependencies": {