Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 8 additions & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,16 @@
# Devo App Developer Kit

## v1.3.4

Added telemetry URI in UserCredentials type.

## v1.3.3

Added service operations api url in UserCredentials type.

Remove marketplaceBundle field from UserCredentials type.

Better typing for UserCredentials type. Now it will
Better typing for UserCredentials type. Now it will

## v1.3.2

Expand All @@ -16,11 +20,11 @@ Add the ability to change the callback to unmount the dApp at any time, not just

## v1.3.1

Added activeboards api url in UserCredentials type
Added activeboards api url in UserCredentials type

## v1.3.0

Added the ability to create NotiPops with actions.
Added the ability to create NotiPops with actions.

## v1.2.0

Expand Down Expand Up @@ -48,4 +52,4 @@ Fix documentation issues

## v1.0.0

Initial version
Initial version
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@devoinc/app-developer-kit",
"version": "1.3.3",
"version": "1.3.4",
"description": "Devo Web Browser Applications Development Kit",
"main": "index.js",
"module": "index.esm.js",
Expand Down
1 change: 1 addition & 0 deletions src/devoApp/__tests__/DevoApp.tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ const mockedUserInfo: UserInfo = {
serviceopsURI: 'mock-serviceops-uri',
serrea: 'mock-serrea',
standAloneToken: 'mock-stand-alone-token',
telemetryURI: 'mock-telemetry-uri',
},
};

Expand Down
1 change: 1 addition & 0 deletions src/devoApp/__tests__/DevoAppBase.tests.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ const mockedUserInfo: UserInfo = {
activeboardsURI: 'mock-activeboards-uri',
serrea: 'mock-serrea',
standAloneToken: 'mock-stand-alone-token',
telemetryURI: 'mock-telemetry-uri',
},
};

Expand Down
1 change: 1 addition & 0 deletions src/helpers/__mocks__/WebCoreIntegration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ export const mockedWebCoreIntegrationUserInfo: UserInfo = {
activeboardsURI: 'mock-activeboards-uri',
serrea: 'mock-serrea',
standAloneToken: 'mock-stand-alone-token',
telemetryURI: 'mock-telemetry-uri',
},
};

Expand Down
4 changes: 4 additions & 0 deletions src/types/UserCredentials.ts
Original file line number Diff line number Diff line change
Expand Up @@ -65,4 +65,8 @@ export interface UserCredentials extends Readonly<Record<string, any>> {
* Serrea API url
*/
serrea: string;
/**
* Telemetry API url
*/
telemetryURI: string;
}