@almadar/std 16.21.2 → 16.21.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/behaviors/registry/agent/atoms/std-agent-activity-log.orb +5 -0
- package/behaviors/registry/agent/atoms/std-agent-classifier.orb +5 -0
- package/behaviors/registry/agent/atoms/std-agent-completion.orb +8 -0
- package/behaviors/registry/agent/atoms/std-agent-context-window.orb +9 -0
- package/behaviors/registry/agent/atoms/std-agent-memory.orb +5 -0
- package/behaviors/registry/agent/atoms/std-agent-provider.orb +8 -0
- package/behaviors/registry/agent/atoms/std-agent-search.orb +5 -0
- package/behaviors/registry/agent/atoms/std-agent-tool-call.orb +5 -0
- package/behaviors/registry/core/atoms/std-event-log.orb +15 -0
- package/behaviors/registry/core/atoms/std-filter.orb +8 -0
- package/behaviors/registry/core/atoms/std-push.orb +7 -0
- package/behaviors/registry/core/atoms/std-recurrence.orb +17 -0
- package/behaviors/registry/core/atoms/std-search.orb +7 -0
- package/behaviors/registry/core/atoms/std-wizard.orb +20 -0
- package/dist/behaviors/registry/agent/atoms/std-agent-activity-log.orb +5 -0
- package/dist/behaviors/registry/agent/atoms/std-agent-classifier.orb +5 -0
- package/dist/behaviors/registry/agent/atoms/std-agent-completion.orb +8 -0
- package/dist/behaviors/registry/agent/atoms/std-agent-context-window.orb +9 -0
- package/dist/behaviors/registry/agent/atoms/std-agent-memory.orb +5 -0
- package/dist/behaviors/registry/agent/atoms/std-agent-provider.orb +8 -0
- package/dist/behaviors/registry/agent/atoms/std-agent-search.orb +5 -0
- package/dist/behaviors/registry/agent/atoms/std-agent-tool-call.orb +5 -0
- package/dist/behaviors/registry/core/atoms/std-event-log.orb +15 -0
- package/dist/behaviors/registry/core/atoms/std-filter.orb +8 -0
- package/dist/behaviors/registry/core/atoms/std-push.orb +7 -0
- package/dist/behaviors/registry/core/atoms/std-recurrence.orb +17 -0
- package/dist/behaviors/registry/core/atoms/std-search.orb +7 -0
- package/dist/behaviors/registry/core/atoms/std-wizard.orb +20 -0
- package/dist/registry/agent/atoms/std-agent-activity-log.orb +5 -0
- package/dist/registry/agent/atoms/std-agent-classifier.orb +5 -0
- package/dist/registry/agent/atoms/std-agent-completion.orb +8 -0
- package/dist/registry/agent/atoms/std-agent-context-window.orb +9 -0
- package/dist/registry/agent/atoms/std-agent-memory.orb +5 -0
- package/dist/registry/agent/atoms/std-agent-provider.orb +8 -0
- package/dist/registry/agent/atoms/std-agent-search.orb +5 -0
- package/dist/registry/agent/atoms/std-agent-tool-call.orb +5 -0
- package/dist/registry/core/atoms/std-event-log.orb +15 -0
- package/dist/registry/core/atoms/std-filter.orb +8 -0
- package/dist/registry/core/atoms/std-push.orb +7 -0
- package/dist/registry/core/atoms/std-recurrence.orb +17 -0
- package/dist/registry/core/atoms/std-search.orb +7 -0
- package/dist/registry/core/atoms/std-wizard.orb +20 -0
- package/package.json +1 -1
|
@@ -85,6 +85,11 @@
|
|
|
85
85
|
"name": "AgentActivityLogLog",
|
|
86
86
|
"category": "interaction",
|
|
87
87
|
"linkedEntity": "AgentActivityLog",
|
|
88
|
+
"entityRebindable": true,
|
|
89
|
+
"entityContract": {
|
|
90
|
+
"requires": [],
|
|
91
|
+
"provides": []
|
|
92
|
+
},
|
|
88
93
|
"emits": [
|
|
89
94
|
{
|
|
90
95
|
"event": "AgentActivityLogLoaded",
|
|
@@ -97,6 +97,11 @@
|
|
|
97
97
|
"name": "AgentClassifierModal",
|
|
98
98
|
"category": "interaction",
|
|
99
99
|
"linkedEntity": "AgentClassifier",
|
|
100
|
+
"entityRebindable": true,
|
|
101
|
+
"entityContract": {
|
|
102
|
+
"requires": [],
|
|
103
|
+
"provides": []
|
|
104
|
+
},
|
|
100
105
|
"emits": [
|
|
101
106
|
{
|
|
102
107
|
"event": "CLASSIFIED",
|
|
@@ -105,6 +105,14 @@
|
|
|
105
105
|
"name": "AgentCompletionModal",
|
|
106
106
|
"category": "interaction",
|
|
107
107
|
"linkedEntity": "AgentCompletion",
|
|
108
|
+
"entityRebindable": true,
|
|
109
|
+
"entityContract": {
|
|
110
|
+
"requires": [],
|
|
111
|
+
"provides": [
|
|
112
|
+
"model",
|
|
113
|
+
"provider"
|
|
114
|
+
]
|
|
115
|
+
},
|
|
108
116
|
"emits": [
|
|
109
117
|
{
|
|
110
118
|
"event": "GENERATED",
|
|
@@ -118,6 +118,15 @@
|
|
|
118
118
|
"name": "AgentContextWindowGauge",
|
|
119
119
|
"category": "interaction",
|
|
120
120
|
"linkedEntity": "AgentContextWindow",
|
|
121
|
+
"entityRebindable": true,
|
|
122
|
+
"entityContract": {
|
|
123
|
+
"requires": [],
|
|
124
|
+
"provides": [
|
|
125
|
+
"current",
|
|
126
|
+
"lastCompactedAt",
|
|
127
|
+
"max"
|
|
128
|
+
]
|
|
129
|
+
},
|
|
121
130
|
"emits": [
|
|
122
131
|
{
|
|
123
132
|
"event": "COMPACT"
|
|
@@ -97,6 +97,14 @@
|
|
|
97
97
|
"name": "AgentProviderModal",
|
|
98
98
|
"category": "interaction",
|
|
99
99
|
"linkedEntity": "AgentProvider",
|
|
100
|
+
"entityRebindable": true,
|
|
101
|
+
"entityContract": {
|
|
102
|
+
"requires": [],
|
|
103
|
+
"provides": [
|
|
104
|
+
"currentModel",
|
|
105
|
+
"currentProvider"
|
|
106
|
+
]
|
|
107
|
+
},
|
|
100
108
|
"emits": [
|
|
101
109
|
{
|
|
102
110
|
"event": "SWITCHED",
|
|
@@ -106,6 +106,11 @@
|
|
|
106
106
|
"name": "AgentToolCallModal",
|
|
107
107
|
"category": "interaction",
|
|
108
108
|
"linkedEntity": "AgentToolCall",
|
|
109
|
+
"entityRebindable": true,
|
|
110
|
+
"entityContract": {
|
|
111
|
+
"requires": [],
|
|
112
|
+
"provides": []
|
|
113
|
+
},
|
|
109
114
|
"emits": [
|
|
110
115
|
{
|
|
111
116
|
"event": "INVOKED",
|
|
@@ -232,6 +232,21 @@
|
|
|
232
232
|
"name": "EventLogTimeline",
|
|
233
233
|
"category": "interaction",
|
|
234
234
|
"linkedEntity": "EventLogView",
|
|
235
|
+
"entityRebindable": true,
|
|
236
|
+
"entityContract": {
|
|
237
|
+
"requires": [],
|
|
238
|
+
"provides": [
|
|
239
|
+
"allEntries",
|
|
240
|
+
"backfillDate",
|
|
241
|
+
"backfillDescription",
|
|
242
|
+
"backfillKind",
|
|
243
|
+
"backfillTitle",
|
|
244
|
+
"entries",
|
|
245
|
+
"errorMessage",
|
|
246
|
+
"filterChips",
|
|
247
|
+
"filterKind"
|
|
248
|
+
]
|
|
249
|
+
},
|
|
235
250
|
"emits": [
|
|
236
251
|
{
|
|
237
252
|
"event": "APPLY_FILTER",
|
|
@@ -33,6 +33,14 @@
|
|
|
33
33
|
"name": "FilterTargetFilter",
|
|
34
34
|
"category": "interaction",
|
|
35
35
|
"linkedEntity": "FilterTarget",
|
|
36
|
+
"entityRebindable": true,
|
|
37
|
+
"entityContract": {
|
|
38
|
+
"requires": [],
|
|
39
|
+
"provides": [
|
|
40
|
+
"field",
|
|
41
|
+
"value"
|
|
42
|
+
]
|
|
43
|
+
},
|
|
36
44
|
"emits": [
|
|
37
45
|
{
|
|
38
46
|
"event": "FILTER",
|
|
@@ -27,6 +27,13 @@
|
|
|
27
27
|
"name": "PushSubscriberIndicator",
|
|
28
28
|
"category": "interaction",
|
|
29
29
|
"linkedEntity": "PushSubscriber",
|
|
30
|
+
"entityRebindable": true,
|
|
31
|
+
"entityContract": {
|
|
32
|
+
"requires": [],
|
|
33
|
+
"provides": [
|
|
34
|
+
"status"
|
|
35
|
+
]
|
|
36
|
+
},
|
|
30
37
|
"emits": [
|
|
31
38
|
{
|
|
32
39
|
"event": "PUSH_RECEIVED",
|
|
@@ -186,6 +186,23 @@
|
|
|
186
186
|
"name": "RecurrenceEditor",
|
|
187
187
|
"category": "interaction",
|
|
188
188
|
"linkedEntity": "RecurrenceView",
|
|
189
|
+
"entityRebindable": true,
|
|
190
|
+
"entityContract": {
|
|
191
|
+
"requires": [],
|
|
192
|
+
"provides": [
|
|
193
|
+
"currentOccurrenceDate",
|
|
194
|
+
"currentOccurrenceId",
|
|
195
|
+
"currentOccurrenceLabel",
|
|
196
|
+
"endAfterCount",
|
|
197
|
+
"endDate",
|
|
198
|
+
"errorMessage",
|
|
199
|
+
"frequency",
|
|
200
|
+
"interval",
|
|
201
|
+
"occurrences",
|
|
202
|
+
"rescheduleDate",
|
|
203
|
+
"startDate"
|
|
204
|
+
]
|
|
205
|
+
},
|
|
189
206
|
"emits": [
|
|
190
207
|
{
|
|
191
208
|
"event": "EDIT_RULE",
|
|
@@ -27,6 +27,13 @@
|
|
|
27
27
|
"name": "SearchResultSearch",
|
|
28
28
|
"category": "interaction",
|
|
29
29
|
"linkedEntity": "SearchResult",
|
|
30
|
+
"entityRebindable": true,
|
|
31
|
+
"entityContract": {
|
|
32
|
+
"requires": [],
|
|
33
|
+
"provides": [
|
|
34
|
+
"searchTerm"
|
|
35
|
+
]
|
|
36
|
+
},
|
|
30
37
|
"emits": [
|
|
31
38
|
{
|
|
32
39
|
"event": "SEARCH",
|
|
@@ -191,6 +191,26 @@
|
|
|
191
191
|
"name": "WizardForm",
|
|
192
192
|
"category": "interaction",
|
|
193
193
|
"linkedEntity": "WizardView",
|
|
194
|
+
"entityRebindable": true,
|
|
195
|
+
"entityContract": {
|
|
196
|
+
"requires": [],
|
|
197
|
+
"provides": [
|
|
198
|
+
"cancelReason",
|
|
199
|
+
"completionMessage",
|
|
200
|
+
"currentFields",
|
|
201
|
+
"currentStepDescription",
|
|
202
|
+
"currentStepIcon",
|
|
203
|
+
"currentStepIndex",
|
|
204
|
+
"currentStepLabel",
|
|
205
|
+
"errorMessage",
|
|
206
|
+
"isFirstStep",
|
|
207
|
+
"isLastStep",
|
|
208
|
+
"primaryActionIcon",
|
|
209
|
+
"primaryActionLabel",
|
|
210
|
+
"totalSteps",
|
|
211
|
+
"wizardSteps"
|
|
212
|
+
]
|
|
213
|
+
},
|
|
194
214
|
"emits": [
|
|
195
215
|
{
|
|
196
216
|
"event": "ADVANCE",
|
|
@@ -85,6 +85,11 @@
|
|
|
85
85
|
"name": "AgentActivityLogLog",
|
|
86
86
|
"category": "interaction",
|
|
87
87
|
"linkedEntity": "AgentActivityLog",
|
|
88
|
+
"entityRebindable": true,
|
|
89
|
+
"entityContract": {
|
|
90
|
+
"requires": [],
|
|
91
|
+
"provides": []
|
|
92
|
+
},
|
|
88
93
|
"emits": [
|
|
89
94
|
{
|
|
90
95
|
"event": "AgentActivityLogLoaded",
|
|
@@ -97,6 +97,11 @@
|
|
|
97
97
|
"name": "AgentClassifierModal",
|
|
98
98
|
"category": "interaction",
|
|
99
99
|
"linkedEntity": "AgentClassifier",
|
|
100
|
+
"entityRebindable": true,
|
|
101
|
+
"entityContract": {
|
|
102
|
+
"requires": [],
|
|
103
|
+
"provides": []
|
|
104
|
+
},
|
|
100
105
|
"emits": [
|
|
101
106
|
{
|
|
102
107
|
"event": "CLASSIFIED",
|
|
@@ -105,6 +105,14 @@
|
|
|
105
105
|
"name": "AgentCompletionModal",
|
|
106
106
|
"category": "interaction",
|
|
107
107
|
"linkedEntity": "AgentCompletion",
|
|
108
|
+
"entityRebindable": true,
|
|
109
|
+
"entityContract": {
|
|
110
|
+
"requires": [],
|
|
111
|
+
"provides": [
|
|
112
|
+
"model",
|
|
113
|
+
"provider"
|
|
114
|
+
]
|
|
115
|
+
},
|
|
108
116
|
"emits": [
|
|
109
117
|
{
|
|
110
118
|
"event": "GENERATED",
|
|
@@ -118,6 +118,15 @@
|
|
|
118
118
|
"name": "AgentContextWindowGauge",
|
|
119
119
|
"category": "interaction",
|
|
120
120
|
"linkedEntity": "AgentContextWindow",
|
|
121
|
+
"entityRebindable": true,
|
|
122
|
+
"entityContract": {
|
|
123
|
+
"requires": [],
|
|
124
|
+
"provides": [
|
|
125
|
+
"current",
|
|
126
|
+
"lastCompactedAt",
|
|
127
|
+
"max"
|
|
128
|
+
]
|
|
129
|
+
},
|
|
121
130
|
"emits": [
|
|
122
131
|
{
|
|
123
132
|
"event": "COMPACT"
|
|
@@ -97,6 +97,14 @@
|
|
|
97
97
|
"name": "AgentProviderModal",
|
|
98
98
|
"category": "interaction",
|
|
99
99
|
"linkedEntity": "AgentProvider",
|
|
100
|
+
"entityRebindable": true,
|
|
101
|
+
"entityContract": {
|
|
102
|
+
"requires": [],
|
|
103
|
+
"provides": [
|
|
104
|
+
"currentModel",
|
|
105
|
+
"currentProvider"
|
|
106
|
+
]
|
|
107
|
+
},
|
|
100
108
|
"emits": [
|
|
101
109
|
{
|
|
102
110
|
"event": "SWITCHED",
|
|
@@ -106,6 +106,11 @@
|
|
|
106
106
|
"name": "AgentToolCallModal",
|
|
107
107
|
"category": "interaction",
|
|
108
108
|
"linkedEntity": "AgentToolCall",
|
|
109
|
+
"entityRebindable": true,
|
|
110
|
+
"entityContract": {
|
|
111
|
+
"requires": [],
|
|
112
|
+
"provides": []
|
|
113
|
+
},
|
|
109
114
|
"emits": [
|
|
110
115
|
{
|
|
111
116
|
"event": "INVOKED",
|
|
@@ -232,6 +232,21 @@
|
|
|
232
232
|
"name": "EventLogTimeline",
|
|
233
233
|
"category": "interaction",
|
|
234
234
|
"linkedEntity": "EventLogView",
|
|
235
|
+
"entityRebindable": true,
|
|
236
|
+
"entityContract": {
|
|
237
|
+
"requires": [],
|
|
238
|
+
"provides": [
|
|
239
|
+
"allEntries",
|
|
240
|
+
"backfillDate",
|
|
241
|
+
"backfillDescription",
|
|
242
|
+
"backfillKind",
|
|
243
|
+
"backfillTitle",
|
|
244
|
+
"entries",
|
|
245
|
+
"errorMessage",
|
|
246
|
+
"filterChips",
|
|
247
|
+
"filterKind"
|
|
248
|
+
]
|
|
249
|
+
},
|
|
235
250
|
"emits": [
|
|
236
251
|
{
|
|
237
252
|
"event": "APPLY_FILTER",
|
|
@@ -33,6 +33,14 @@
|
|
|
33
33
|
"name": "FilterTargetFilter",
|
|
34
34
|
"category": "interaction",
|
|
35
35
|
"linkedEntity": "FilterTarget",
|
|
36
|
+
"entityRebindable": true,
|
|
37
|
+
"entityContract": {
|
|
38
|
+
"requires": [],
|
|
39
|
+
"provides": [
|
|
40
|
+
"field",
|
|
41
|
+
"value"
|
|
42
|
+
]
|
|
43
|
+
},
|
|
36
44
|
"emits": [
|
|
37
45
|
{
|
|
38
46
|
"event": "FILTER",
|
|
@@ -27,6 +27,13 @@
|
|
|
27
27
|
"name": "PushSubscriberIndicator",
|
|
28
28
|
"category": "interaction",
|
|
29
29
|
"linkedEntity": "PushSubscriber",
|
|
30
|
+
"entityRebindable": true,
|
|
31
|
+
"entityContract": {
|
|
32
|
+
"requires": [],
|
|
33
|
+
"provides": [
|
|
34
|
+
"status"
|
|
35
|
+
]
|
|
36
|
+
},
|
|
30
37
|
"emits": [
|
|
31
38
|
{
|
|
32
39
|
"event": "PUSH_RECEIVED",
|
|
@@ -186,6 +186,23 @@
|
|
|
186
186
|
"name": "RecurrenceEditor",
|
|
187
187
|
"category": "interaction",
|
|
188
188
|
"linkedEntity": "RecurrenceView",
|
|
189
|
+
"entityRebindable": true,
|
|
190
|
+
"entityContract": {
|
|
191
|
+
"requires": [],
|
|
192
|
+
"provides": [
|
|
193
|
+
"currentOccurrenceDate",
|
|
194
|
+
"currentOccurrenceId",
|
|
195
|
+
"currentOccurrenceLabel",
|
|
196
|
+
"endAfterCount",
|
|
197
|
+
"endDate",
|
|
198
|
+
"errorMessage",
|
|
199
|
+
"frequency",
|
|
200
|
+
"interval",
|
|
201
|
+
"occurrences",
|
|
202
|
+
"rescheduleDate",
|
|
203
|
+
"startDate"
|
|
204
|
+
]
|
|
205
|
+
},
|
|
189
206
|
"emits": [
|
|
190
207
|
{
|
|
191
208
|
"event": "EDIT_RULE",
|
|
@@ -27,6 +27,13 @@
|
|
|
27
27
|
"name": "SearchResultSearch",
|
|
28
28
|
"category": "interaction",
|
|
29
29
|
"linkedEntity": "SearchResult",
|
|
30
|
+
"entityRebindable": true,
|
|
31
|
+
"entityContract": {
|
|
32
|
+
"requires": [],
|
|
33
|
+
"provides": [
|
|
34
|
+
"searchTerm"
|
|
35
|
+
]
|
|
36
|
+
},
|
|
30
37
|
"emits": [
|
|
31
38
|
{
|
|
32
39
|
"event": "SEARCH",
|
|
@@ -191,6 +191,26 @@
|
|
|
191
191
|
"name": "WizardForm",
|
|
192
192
|
"category": "interaction",
|
|
193
193
|
"linkedEntity": "WizardView",
|
|
194
|
+
"entityRebindable": true,
|
|
195
|
+
"entityContract": {
|
|
196
|
+
"requires": [],
|
|
197
|
+
"provides": [
|
|
198
|
+
"cancelReason",
|
|
199
|
+
"completionMessage",
|
|
200
|
+
"currentFields",
|
|
201
|
+
"currentStepDescription",
|
|
202
|
+
"currentStepIcon",
|
|
203
|
+
"currentStepIndex",
|
|
204
|
+
"currentStepLabel",
|
|
205
|
+
"errorMessage",
|
|
206
|
+
"isFirstStep",
|
|
207
|
+
"isLastStep",
|
|
208
|
+
"primaryActionIcon",
|
|
209
|
+
"primaryActionLabel",
|
|
210
|
+
"totalSteps",
|
|
211
|
+
"wizardSteps"
|
|
212
|
+
]
|
|
213
|
+
},
|
|
194
214
|
"emits": [
|
|
195
215
|
{
|
|
196
216
|
"event": "ADVANCE",
|
|
@@ -85,6 +85,11 @@
|
|
|
85
85
|
"name": "AgentActivityLogLog",
|
|
86
86
|
"category": "interaction",
|
|
87
87
|
"linkedEntity": "AgentActivityLog",
|
|
88
|
+
"entityRebindable": true,
|
|
89
|
+
"entityContract": {
|
|
90
|
+
"requires": [],
|
|
91
|
+
"provides": []
|
|
92
|
+
},
|
|
88
93
|
"emits": [
|
|
89
94
|
{
|
|
90
95
|
"event": "AgentActivityLogLoaded",
|
|
@@ -97,6 +97,11 @@
|
|
|
97
97
|
"name": "AgentClassifierModal",
|
|
98
98
|
"category": "interaction",
|
|
99
99
|
"linkedEntity": "AgentClassifier",
|
|
100
|
+
"entityRebindable": true,
|
|
101
|
+
"entityContract": {
|
|
102
|
+
"requires": [],
|
|
103
|
+
"provides": []
|
|
104
|
+
},
|
|
100
105
|
"emits": [
|
|
101
106
|
{
|
|
102
107
|
"event": "CLASSIFIED",
|
|
@@ -105,6 +105,14 @@
|
|
|
105
105
|
"name": "AgentCompletionModal",
|
|
106
106
|
"category": "interaction",
|
|
107
107
|
"linkedEntity": "AgentCompletion",
|
|
108
|
+
"entityRebindable": true,
|
|
109
|
+
"entityContract": {
|
|
110
|
+
"requires": [],
|
|
111
|
+
"provides": [
|
|
112
|
+
"model",
|
|
113
|
+
"provider"
|
|
114
|
+
]
|
|
115
|
+
},
|
|
108
116
|
"emits": [
|
|
109
117
|
{
|
|
110
118
|
"event": "GENERATED",
|
|
@@ -118,6 +118,15 @@
|
|
|
118
118
|
"name": "AgentContextWindowGauge",
|
|
119
119
|
"category": "interaction",
|
|
120
120
|
"linkedEntity": "AgentContextWindow",
|
|
121
|
+
"entityRebindable": true,
|
|
122
|
+
"entityContract": {
|
|
123
|
+
"requires": [],
|
|
124
|
+
"provides": [
|
|
125
|
+
"current",
|
|
126
|
+
"lastCompactedAt",
|
|
127
|
+
"max"
|
|
128
|
+
]
|
|
129
|
+
},
|
|
121
130
|
"emits": [
|
|
122
131
|
{
|
|
123
132
|
"event": "COMPACT"
|
|
@@ -97,6 +97,14 @@
|
|
|
97
97
|
"name": "AgentProviderModal",
|
|
98
98
|
"category": "interaction",
|
|
99
99
|
"linkedEntity": "AgentProvider",
|
|
100
|
+
"entityRebindable": true,
|
|
101
|
+
"entityContract": {
|
|
102
|
+
"requires": [],
|
|
103
|
+
"provides": [
|
|
104
|
+
"currentModel",
|
|
105
|
+
"currentProvider"
|
|
106
|
+
]
|
|
107
|
+
},
|
|
100
108
|
"emits": [
|
|
101
109
|
{
|
|
102
110
|
"event": "SWITCHED",
|
|
@@ -106,6 +106,11 @@
|
|
|
106
106
|
"name": "AgentToolCallModal",
|
|
107
107
|
"category": "interaction",
|
|
108
108
|
"linkedEntity": "AgentToolCall",
|
|
109
|
+
"entityRebindable": true,
|
|
110
|
+
"entityContract": {
|
|
111
|
+
"requires": [],
|
|
112
|
+
"provides": []
|
|
113
|
+
},
|
|
109
114
|
"emits": [
|
|
110
115
|
{
|
|
111
116
|
"event": "INVOKED",
|
|
@@ -232,6 +232,21 @@
|
|
|
232
232
|
"name": "EventLogTimeline",
|
|
233
233
|
"category": "interaction",
|
|
234
234
|
"linkedEntity": "EventLogView",
|
|
235
|
+
"entityRebindable": true,
|
|
236
|
+
"entityContract": {
|
|
237
|
+
"requires": [],
|
|
238
|
+
"provides": [
|
|
239
|
+
"allEntries",
|
|
240
|
+
"backfillDate",
|
|
241
|
+
"backfillDescription",
|
|
242
|
+
"backfillKind",
|
|
243
|
+
"backfillTitle",
|
|
244
|
+
"entries",
|
|
245
|
+
"errorMessage",
|
|
246
|
+
"filterChips",
|
|
247
|
+
"filterKind"
|
|
248
|
+
]
|
|
249
|
+
},
|
|
235
250
|
"emits": [
|
|
236
251
|
{
|
|
237
252
|
"event": "APPLY_FILTER",
|
|
@@ -33,6 +33,14 @@
|
|
|
33
33
|
"name": "FilterTargetFilter",
|
|
34
34
|
"category": "interaction",
|
|
35
35
|
"linkedEntity": "FilterTarget",
|
|
36
|
+
"entityRebindable": true,
|
|
37
|
+
"entityContract": {
|
|
38
|
+
"requires": [],
|
|
39
|
+
"provides": [
|
|
40
|
+
"field",
|
|
41
|
+
"value"
|
|
42
|
+
]
|
|
43
|
+
},
|
|
36
44
|
"emits": [
|
|
37
45
|
{
|
|
38
46
|
"event": "FILTER",
|
|
@@ -27,6 +27,13 @@
|
|
|
27
27
|
"name": "PushSubscriberIndicator",
|
|
28
28
|
"category": "interaction",
|
|
29
29
|
"linkedEntity": "PushSubscriber",
|
|
30
|
+
"entityRebindable": true,
|
|
31
|
+
"entityContract": {
|
|
32
|
+
"requires": [],
|
|
33
|
+
"provides": [
|
|
34
|
+
"status"
|
|
35
|
+
]
|
|
36
|
+
},
|
|
30
37
|
"emits": [
|
|
31
38
|
{
|
|
32
39
|
"event": "PUSH_RECEIVED",
|
|
@@ -186,6 +186,23 @@
|
|
|
186
186
|
"name": "RecurrenceEditor",
|
|
187
187
|
"category": "interaction",
|
|
188
188
|
"linkedEntity": "RecurrenceView",
|
|
189
|
+
"entityRebindable": true,
|
|
190
|
+
"entityContract": {
|
|
191
|
+
"requires": [],
|
|
192
|
+
"provides": [
|
|
193
|
+
"currentOccurrenceDate",
|
|
194
|
+
"currentOccurrenceId",
|
|
195
|
+
"currentOccurrenceLabel",
|
|
196
|
+
"endAfterCount",
|
|
197
|
+
"endDate",
|
|
198
|
+
"errorMessage",
|
|
199
|
+
"frequency",
|
|
200
|
+
"interval",
|
|
201
|
+
"occurrences",
|
|
202
|
+
"rescheduleDate",
|
|
203
|
+
"startDate"
|
|
204
|
+
]
|
|
205
|
+
},
|
|
189
206
|
"emits": [
|
|
190
207
|
{
|
|
191
208
|
"event": "EDIT_RULE",
|
|
@@ -27,6 +27,13 @@
|
|
|
27
27
|
"name": "SearchResultSearch",
|
|
28
28
|
"category": "interaction",
|
|
29
29
|
"linkedEntity": "SearchResult",
|
|
30
|
+
"entityRebindable": true,
|
|
31
|
+
"entityContract": {
|
|
32
|
+
"requires": [],
|
|
33
|
+
"provides": [
|
|
34
|
+
"searchTerm"
|
|
35
|
+
]
|
|
36
|
+
},
|
|
30
37
|
"emits": [
|
|
31
38
|
{
|
|
32
39
|
"event": "SEARCH",
|
|
@@ -191,6 +191,26 @@
|
|
|
191
191
|
"name": "WizardForm",
|
|
192
192
|
"category": "interaction",
|
|
193
193
|
"linkedEntity": "WizardView",
|
|
194
|
+
"entityRebindable": true,
|
|
195
|
+
"entityContract": {
|
|
196
|
+
"requires": [],
|
|
197
|
+
"provides": [
|
|
198
|
+
"cancelReason",
|
|
199
|
+
"completionMessage",
|
|
200
|
+
"currentFields",
|
|
201
|
+
"currentStepDescription",
|
|
202
|
+
"currentStepIcon",
|
|
203
|
+
"currentStepIndex",
|
|
204
|
+
"currentStepLabel",
|
|
205
|
+
"errorMessage",
|
|
206
|
+
"isFirstStep",
|
|
207
|
+
"isLastStep",
|
|
208
|
+
"primaryActionIcon",
|
|
209
|
+
"primaryActionLabel",
|
|
210
|
+
"totalSteps",
|
|
211
|
+
"wizardSteps"
|
|
212
|
+
]
|
|
213
|
+
},
|
|
194
214
|
"emits": [
|
|
195
215
|
{
|
|
196
216
|
"event": "ADVANCE",
|