Skip to content

Commit

Permalink
avniproject/avni-client#1172 - optional fields because of previously …
Browse files Browse the repository at this point in the history
…existing data.
  • Loading branch information
petmongrels committed Dec 22, 2023
1 parent fd22668 commit 93ca0f1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/RuleFailureTelemetry.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@ class RuleFailureTelemetry extends BaseEntity {
stacktrace: "string",
closed: {type: "bool", default: false},
errorDateTime: "date",
sourceType: "string",
sourceId: "string",
entityType: "string",
entityId: "string",
sourceType: {type: "string", optional: true},
sourceId: {type: "string", optional: true},
entityType: {type: "string", optional: true},
entityId: {type: "string", optional: true},
appType: "string",
},
};
Expand Down

0 comments on commit 93ca0f1

Please sign in to comment.