From 37ff8905ec202c9d9219d6a33fc0c68e73c4f416 Mon Sep 17 00:00:00 2001 From: veganbeef Date: Fri, 14 Jun 2024 18:27:03 -0700 Subject: [PATCH 1/4] feat(api-docs): export quest factory abi --- src/abi/index.ts | 1 + src/index.ts | 2 ++ 2 files changed, 3 insertions(+) create mode 100644 src/abi/index.ts diff --git a/src/abi/index.ts b/src/abi/index.ts new file mode 100644 index 0000000..fc1d80a --- /dev/null +++ b/src/abi/index.ts @@ -0,0 +1 @@ +export * from './quest-factory.js'; \ No newline at end of file diff --git a/src/index.ts b/src/index.ts index 9a557d5..213e712 100644 --- a/src/index.ts +++ b/src/index.ts @@ -6,6 +6,8 @@ export { export { PluginActionNotImplementedError } from './errors/plugin.js' +export * from './abi/quest-factory.js'; + export type { SwapActionParams, BurnActionParams, From e950673c9472956da04ba683a3cdfdb985bac636 Mon Sep 17 00:00:00 2001 From: veganbeef Date: Sat, 15 Jun 2024 01:27:45 +0000 Subject: [PATCH 2/4] chore: format --- src/abi/index.ts | 2 +- src/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/abi/index.ts b/src/abi/index.ts index fc1d80a..63d0b7d 100644 --- a/src/abi/index.ts +++ b/src/abi/index.ts @@ -1 +1 @@ -export * from './quest-factory.js'; \ No newline at end of file +export * from './quest-factory.js' diff --git a/src/index.ts b/src/index.ts index 213e712..d7eadcf 100644 --- a/src/index.ts +++ b/src/index.ts @@ -6,7 +6,7 @@ export { export { PluginActionNotImplementedError } from './errors/plugin.js' -export * from './abi/quest-factory.js'; +export * from './abi/quest-factory.js' export type { SwapActionParams, From a7277e534a20f05268beedaf9cc31e27f4ab2057 Mon Sep 17 00:00:00 2001 From: veganbeef Date: Fri, 14 Jun 2024 18:30:59 -0700 Subject: [PATCH 3/4] fix: add changeset --- .changeset/chilly-plums-ring.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/chilly-plums-ring.md diff --git a/.changeset/chilly-plums-ring.md b/.changeset/chilly-plums-ring.md new file mode 100644 index 0000000..8e60871 --- /dev/null +++ b/.changeset/chilly-plums-ring.md @@ -0,0 +1,5 @@ +--- +"@rabbitholegg/questdk": patch +--- + +update abi From 987abcb462105ac26a948cf947d853badf9b18a9 Mon Sep 17 00:00:00 2001 From: veganbeef Date: Fri, 14 Jun 2024 18:32:41 -0700 Subject: [PATCH 4/4] fix: bump package version --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index df0713e..f61266f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@rabbitholegg/questdk", - "version": "2.0.0-alpha.35", + "version": "2.0.0-alpha.36", "description": "", "type": "module", "main": "./dist/cjs/index.js",