Skip to content

Commit

Permalink
Merge pull request #3 from situmtech/feature/remove-api-email-require…
Browse files Browse the repository at this point in the history
…ment

Remove the requirement of email with apikey
  • Loading branch information
AdrianReimunde authored Aug 22, 2023
2 parents c536720 + faa58ee commit 744ec62
Show file tree
Hide file tree
Showing 8 changed files with 2 additions and 30,270 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.PHONY: build
.PHONY: build test
build:
@echo -e "Building service… \n"
npm install
Expand Down
3 changes: 0 additions & 3 deletions examples/1-authentication.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@ import SitumSDK from "../src";
const sdkAPiKeyAuth = new SitumSDK({
auth: {
apiKey: "YOUR_API_KEY",
email: "example@example.com",
},
});

Expand All @@ -20,7 +19,6 @@ const sdkBasicAuth = new SitumSDK({
const sdkWithTimeouts = new SitumSDK({
auth: {
apiKey: "YOUR_API_KEY",
email: "example@example.com",
},
timeouts: {
default: 100, // ms
Expand All @@ -31,7 +29,6 @@ const sdkWithTimeouts = new SitumSDK({
const sdkWithCustomDomain = new SitumSDK({
auth: {
apiKey: "YOUR_API_KEY",
email: "example@example.com",
},
domain: "http://dashboard.situm.com",
});
Loading

0 comments on commit 744ec62

Please sign in to comment.