@creator.co/creatorco-kysely-types 1.0.33-alpha-dde3fcf → 1.0.34-alpha-925d6bb

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 +6 -1
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -184,6 +184,10 @@ export type CampaignToShopifyProduct = {
184
184
  campaignId: number;
185
185
  shopifyProductId: number;
186
186
  };
187
+ export type CampaignToVariable = {
188
+ campaignId: number;
189
+ variableId: number;
190
+ };
187
191
  export type Category = {
188
192
  id: GeneratedAlways<number>;
189
193
  slug: string;
@@ -680,7 +684,7 @@ export type Variable = {
680
684
  title: string;
681
685
  description: string | null;
682
686
  metaData: Generated<Json>;
683
- campaignId: number;
687
+ brandId: number;
684
688
  };
685
689
  export type VariableOption = {
686
690
  id: GeneratedAlways<number>;
@@ -731,6 +735,7 @@ export type DB = {
731
735
  campaigntocategory: CampaignToCategory;
732
736
  campaigntocountry: CampaignToCountry;
733
737
  campaigntoimage: CampaignToImage;
738
+ campaigntovariable: CampaignToVariable;
734
739
  category: Category;
735
740
  chat: Chat;
736
741
  country: Country;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@creator.co/creatorco-kysely-types",
3
- "version": "1.0.33-alpha-dde3fcf",
3
+ "version": "1.0.34-alpha-925d6bb",
4
4
  "types": "./index.d.ts",
5
5
  "type": "commonjs",
6
6
  "devDependencies": {