From 2c567e182a1524fccd742b636d8b309dec0534ab Mon Sep 17 00:00:00 2001 From: Riko Eksteen Date: Thu, 15 Apr 2021 00:06:13 +0100 Subject: [PATCH] fix: intents enum should contain StartChat instead of StartChart - bump package version to 1.1.1, set tag to latest --- package.json | 5 ++++- src/intents/Intents.ts | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 82730e42a..2127f6c50 100644 --- a/package.json +++ b/package.json @@ -1,12 +1,15 @@ { "name": "@finos/fdc3", - "version": "1.1.0", + "version": "1.1.1", "author": "Fintech Open Source Foundation (FINOS)", "homepage": "https://fdc3.finos.org", "repository": { "type": "git", "url": "https://github.com/finos/FDC3.git" }, + "publishConfig": { + "tag": "latest" + }, "license": "Apache-2.0", "main": "dist/index.js", "typings": "dist/index.d.ts", diff --git a/src/intents/Intents.ts b/src/intents/Intents.ts index 021e9a86e..b7db29acb 100644 --- a/src/intents/Intents.ts +++ b/src/intents/Intents.ts @@ -1,6 +1,6 @@ export enum Intents { StartCall = 'StartCall', - StartChart = 'StartChart', + StartChat = 'StartChat', ViewChart = 'ViewChart', ViewContact = 'ViewContact', ViewQuote = 'ViewQuote',