You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/endpoint/presentation.ts
+21Lines changed: 21 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -12,6 +12,26 @@ import {
12
12
CapabilityAutomationAction}from'./capabilities'
13
13
14
14
15
+
exportenumPatchItemOpEnum{
16
+
ADD='add',
17
+
REPLACE='replace',
18
+
REMOVE='remove'
19
+
}
20
+
exportinterfacePatchItem{
21
+
/**
22
+
* Operation objects MUST have exactly one \"op\" member, whose value indicates the operation to perform
23
+
*/
24
+
op: PatchItemOpEnum
25
+
26
+
/**
27
+
* path specifies a string format for identifying a specific value within a JSON document. It is used by all operations in patch to specify the part of the document to operate on.
0 commit comments