Skip to content

Commit e99fca5

Browse files
committed
Add a couple fields to resources/payloads
1 parent 017729f commit e99fca5

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@envoy/envoy-integrations-sdk",
3-
"version": "2.3.2",
3+
"version": "2.3.3",
44
"description": "SDK for building Envoy integrations.",
55
"main": "dist/index.js",
66
"types": "dist/index.d.ts",

src/payloads/InvitePayload.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ type InvitePayload = {
2424
value: string | null;
2525
}>;
2626
nda?: string;
27+
'changed-fields'?: Array<string>;
2728
'secret-token': string;
2829
'edit-token': string;
2930
'photo-url': string | null;

src/resources/TakeoverResource.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ export interface TakeoverAttributes {
88
title: string;
99
message: string;
1010
created_at: string;
11+
type: 'critical' | 'normal';
1112
};
1213
'start-at': number;
1314
'end-at': number | null;

0 commit comments

Comments
 (0)