Skip to content

Commit 9ace083

Browse files
Regan WolfromRegan Wolfrom
authored andcommitted
removed sample connection values
1 parent b004d01 commit 9ace083

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,14 @@ FormKiQ Client SDK - JavaScript
1414
1515
// specify Host, Cognito User Pool Id, and Cognito Client Id
1616
formkiqClient = new FormkiqClient(
17-
'api-demo.tryformkiq.com',
18-
'us-east-1_1nXLy3soH',
19-
'4b9bl9mkvbhpn0g0mjpj0hnhb7'
17+
'{FormKiQHttpApiUrl',
18+
'{userPoolId}',
19+
'{clientId}'
2020
);
2121
2222
// obviously this would not be hard-coded for non-public creds
2323
// NOTE: these public credentials for [email protected] are for read-only access
24-
formkiqClient.login('[email protected]', 'Tryformkiq1!');
24+
formkiqClient.login('{email}', '{password}');
2525
2626
// get current version of FormKiQ
2727
formkiqClient.VersionApi.getVersion().then((response) => {

build/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ Note: while these instructions are for including this SDK in a script tag, you c
2323
2424
// specify Host, Cognito User Pool Id, and Cognito Client Id
2525
formkiqClient = new FormkiqClient(
26-
'api-demo.tryformkiq.com',
27-
'us-east-1_1nXLy3soH',
28-
'4b9bl9mkvbhpn0g0mjpj0hnhb7'
26+
'{FormKiQHttpApiUrl',
27+
'{userPoolId}',
28+
'{clientId}'
2929
);
3030
3131
// obviously this would not be hard-coded for non-public creds
3232
// NOTE: these public credentials for [email protected] are for read-only access
33-
formkiqClient.login('[email protected]', 'Tryformkiq1!');
33+
formkiqClient.login('{email}', '{password}');
3434
3535
// get current version of FormKiQ
3636
formkiqClient.VersionApi.getVersion().then((response) => {

build/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "formkiq-client-sdk-javascript",
33
"description": "FormKiQ Client SDK for JavaScript",
4-
"version": "1.0.2",
4+
"version": "1.0.3",
55
"license": "MIT",
66
"main": "./dist/web-cjs/formkiq-client-sdk-cjs.js",
77
"author": {

0 commit comments

Comments
 (0)