Skip to content

Commit abccf0d

Browse files
authored
fix(monocle-types): Make service field optional on MonocleAssessment type (#39)
1 parent 74d2cb6 commit abccf0d

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/neat-eggs-clap.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
'@spur.us/types': patch
3+
---
4+
5+
Make `service` field optional on `MonocleAssessment` type.

packages/types/src/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export interface MonocleAssessment {
2828
/** The name of the Monocle Application. */
2929
sid: string;
3030
/** If Monocle is able to identify the service in use, it will be labeled here. This value corresponds to the service tags found here. This field is only exposed to Enterprise Monocle users. */
31-
service: string;
31+
service?: string;
3232
}
3333

3434
/**

0 commit comments

Comments
 (0)