Skip to content

Commit

Permalink
Merge pull request #5 from bdxio/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
HubM authored Nov 1, 2023
2 parents 74e8ee4 + af2afcd commit 749a7c0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@bdxio/bdxio.types",
"version": "1.3.2",
"version": "1.3.3",
"types": "dist/index.d.ts",
"files": [
"/dist"
Expand Down
4 changes: 3 additions & 1 deletion types/Faq.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
export const FAQTargets = ["speakers", "sponsors", "participants"] as const;

export type FAQTarget = {
id: number;
target: "speakers" | "sponsors" | "participants";
target: (typeof FAQTargets)[number];
description?: string;
createdAt: string;
publishedAt: string;
Expand Down
1 change: 1 addition & 0 deletions types/index.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
export type { Category } from "./Category";
export type { Edition } from "./Edition";
export type { FAQQuestion, FAQTarget } from "./Faq";
export { FAQTargets } from "./Faq";
export type { Format } from "./Format";
export type { Media } from "./Media";
export type { Offer } from "./Offer";
Expand Down

0 comments on commit 749a7c0

Please sign in to comment.