diff --git a/.github/workflows/documentation-prod.yaml b/.github/workflows/documentation-prod.yaml index 1dfe203..ed839d5 100644 --- a/.github/workflows/documentation-prod.yaml +++ b/.github/workflows/documentation-prod.yaml @@ -60,7 +60,7 @@ jobs: - name: Extract package and semantic version from release tag if: ${{ github.ref_type == 'tag' }} id: extract-tag - uses: ./format-tag/action.yaml + uses: ./format-tag with: tag: ${{ github.ref_name }} diff --git a/.github/workflows/formatTag/action.yml b/.github/workflows/format-tag/action.yml similarity index 100% rename from .github/workflows/formatTag/action.yml rename to .github/workflows/format-tag/action.yml diff --git a/.github/workflows/formatTag/formatTag.js b/.github/workflows/format-tag/formatTag.js similarity index 100% rename from .github/workflows/formatTag/formatTag.js rename to .github/workflows/format-tag/formatTag.js diff --git a/.github/workflows/formatTag/index.js b/.github/workflows/format-tag/index.js similarity index 100% rename from .github/workflows/formatTag/index.js rename to .github/workflows/format-tag/index.js diff --git a/packages/create-wapi-app/package.json b/packages/create-wapi-app/package.json index 389f13a..41b9f63 100644 --- a/packages/create-wapi-app/package.json +++ b/packages/create-wapi-app/package.json @@ -1,7 +1,8 @@ { "name": "create-wapi-app", - "version": "0.0.1", + "version": "0.0.2", "description": "a utility to quickly initiate a whatsapp bot", + "type": "module", "author": { "name": "Sarthak", "email": "sarthak@softlancer.co", diff --git a/packages/wapi.js/package.json b/packages/wapi.js/package.json index 53b260c..31bae6f 100644 --- a/packages/wapi.js/package.json +++ b/packages/wapi.js/package.json @@ -1,6 +1,6 @@ { "name": "@wapijs/wapi.js", - "version": "0.0.5", + "version": "0.0.6", "description": "a typescript based client library to build whatsapp cloud api based chat bots", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", diff --git a/packages/wapi.js/src/manager/message/index.ts b/packages/wapi.js/src/manager/message/index.ts index 8a35e63..9985a43 100644 --- a/packages/wapi.js/src/manager/message/index.ts +++ b/packages/wapi.js/src/manager/message/index.ts @@ -13,7 +13,8 @@ import { type WapiMessageResponseSchemaType } from "../../client/schema"; */ export class MessageManager extends BaseManager - implements MessageManagerInterface { + implements MessageManagerInterface +{ client: Client; constructor(props: { client: Client }) { super(props.client);