@creator.co/creatorco-kysely-types 1.0.20-alpha-995a7a0 → 1.0.21

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 CHANGED
@@ -481,30 +481,6 @@ export type SequenceStep = {
481
481
  order: number;
482
482
  stepId: number;
483
483
  };
484
- export type ShopifyProduct = {
485
- id: GeneratedAlways<number>;
486
- shopifyId: string;
487
- title: string;
488
- handle: string;
489
- createdAt: Timestamp | null;
490
- updatedAt: Timestamp | null;
491
- description: string | null;
492
- price: number;
493
- tags: string | null;
494
- status: string;
495
- metaData: Generated<Json>;
496
- lastSynced: Generated<Timestamp>;
497
- shopifyStoreId: number;
498
- };
499
- export type ShopifyStore = {
500
- id: GeneratedAlways<number>;
501
- shopifyId: string;
502
- name: string;
503
- url: string;
504
- accessToken: string;
505
- metaData: Generated<Json>;
506
- brandId: number;
507
- };
508
484
  export type SocialListeningList = {
509
485
  id: GeneratedAlways<number>;
510
486
  brandId: number;
@@ -748,8 +724,6 @@ export type DB = {
748
724
  sequenceinboundemail: SequenceInboundEmail;
749
725
  sequenceoutboundemail: SequenceOutboundEmail;
750
726
  sequencestep: SequenceStep;
751
- shopify_product: ShopifyProduct;
752
- shopify_store: ShopifyStore;
753
727
  sociallisteninglist: SocialListeningList;
754
728
  socialpost: SocialPost;
755
729
  socialprofile: SocialProfile;
package/kyselyJson.d.ts CHANGED
@@ -1,6 +1,6 @@
1
1
  import { ColumnType } from 'kysely'
2
2
 
3
- export type Json = ColumnType<JsonValue, string, string>
3
+ export type Json = ColumnType<JsonValue, JsonValue, JsonValue>
4
4
 
5
5
  export type JsonArray = JsonValue[]
6
6
 
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@creator.co/creatorco-kysely-types",
3
- "version": "1.0.20-alpha-995a7a0",
3
+ "version": "1.0.21",
4
4
  "types": "./index.d.ts",
5
5
  "type": "module",
6
6
  "devDependencies": {
7
7
  "typescript": "^5.2.2"
8
8
  },
9
- "dependencies": {
10
- "kysely": "^0.26.3"
9
+ "peerDependencies": {
10
+ "kysely": "^0.x.x"
11
11
  },
12
12
  "description": "Kysely types for creatorco Database"
13
13
  }