Skip to content

Commit

Permalink
Merge pull request #52 from thoughtspot/SCAL-218113
Browse files Browse the repository at this point in the history
SCAL-218113 Added CustomerId
  • Loading branch information
yashvardhan-n authored Aug 6, 2024
2 parents 5c9baf0 + 7b494de commit 4b19213
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"prepublishOnly": "npm run ci; npm run build; npm run bundle-dts;",
"about:publish-dev": "echo '===== patch dev workflow ====='",
"patch-dev": "npm version prerelease --no-git-tag-version",
"publish-dev": "npm publish --tag dev --access public",
"publish-dev": "npm publish --tag latest --access public",
"about:publish-prod": "echo '===== patch prod workflow ====='",
"patch-prod": "npm version prepatch --no-git-tag-version",
"publish-prod": "npm publish --access public"
Expand Down
5 changes: 5 additions & 0 deletions src/types/common.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -262,4 +262,9 @@ export interface AppConfig {
* @hidden
*/
customCalendarConfig?: any; // this is to initialize custom calendar service

/**
* Unique identifier for the customer. This is used to identify the customer
*/
customerId?: string;
}

0 comments on commit 4b19213

Please sign in to comment.