@pellux/goodvibes-tui 0.23.0 → 0.24.1
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/CHANGELOG.md +34 -0
- package/README.md +20 -12
- package/docs/foundation-artifacts/operator-contract.json +304 -230
- package/package.json +2 -2
- package/src/cli/management.ts +80 -10
- package/src/core/long-task-notifier.ts +145 -0
- package/src/core/session-recovery.ts +147 -0
- package/src/core/stream-event-wiring.ts +77 -3
- package/src/core/transcript-journal.ts +339 -0
- package/src/core/turn-event-wiring.ts +67 -4
- package/src/input/commands/control-room-runtime.ts +0 -2
- package/src/input/commands/diff-runtime.ts +1 -1
- package/src/input/commands/eval.ts +1 -1
- package/src/input/commands/health-runtime.ts +23 -4
- package/src/input/commands/knowledge.ts +1 -1
- package/src/input/commands/local-runtime.ts +1 -2
- package/src/input/commands/memory-product-runtime.ts +2 -2
- package/src/input/commands/memory.ts +1 -1
- package/src/input/commands/onboarding-runtime.ts +0 -1
- package/src/input/commands/policy.ts +1 -1
- package/src/input/commands/profile-sync-runtime.ts +4 -3
- package/src/input/commands/provider.ts +1 -1
- package/src/input/commands/qrcode-runtime.ts +0 -1
- package/src/input/commands/session-content.ts +2 -2
- package/src/input/commands/session-workflow.ts +32 -2
- package/src/input/commands/session.ts +1 -1
- package/src/input/commands/settings-sync-runtime.ts +9 -9
- package/src/input/commands/shell-core.ts +2 -2
- package/src/input/commands/work-plan-runtime.ts +8 -8
- package/src/input/feed-context-factory.ts +6 -0
- package/src/input/handler-feed-routes.ts +19 -1
- package/src/input/handler-feed.ts +11 -0
- package/src/input/handler-prompt-buffer.ts +28 -0
- package/src/input/handler-shortcuts.ts +88 -2
- package/src/input/handler-ui-state.ts +2 -2
- package/src/input/handler.ts +39 -3
- package/src/input/keybindings.ts +33 -3
- package/src/input/kill-ring.ts +134 -0
- package/src/input/model-picker.ts +18 -1
- package/src/input/search.ts +18 -6
- package/src/input/settings-modal-activation.ts +134 -0
- package/src/input/settings-modal-adjustment.ts +124 -0
- package/src/input/settings-modal-data.ts +53 -0
- package/src/input/settings-modal.ts +48 -145
- package/src/main.ts +33 -33
- package/src/panels/base-panel.ts +2 -1
- package/src/panels/provider-health-domains.ts +3 -3
- package/src/panels/provider-health-panel.ts +13 -9
- package/src/panels/provider-health-tracker.ts +7 -4
- package/src/panels/settings-sync-panel.ts +3 -3
- package/src/panels/work-plan-panel.ts +2 -2
- package/src/renderer/diff-view.ts +2 -2
- package/src/renderer/help-overlay.ts +1 -0
- package/src/renderer/model-picker-overlay.ts +23 -11
- package/src/renderer/progress.ts +3 -3
- package/src/renderer/search-overlay.ts +8 -5
- package/src/renderer/settings-modal.ts +1 -1
- package/src/renderer/ui-factory.ts +11 -0
- package/src/runtime/bootstrap-hook-bridge.ts +18 -0
- package/src/runtime/bootstrap-shell.ts +1 -0
- package/src/shell/blocking-input.ts +32 -0
- package/src/shell/recovery-input-helpers.ts +71 -0
- package/src/utils/terminal-width.ts +10 -3
- package/src/version.ts +1 -1
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"product": {
|
|
4
4
|
"id": "goodvibes",
|
|
5
5
|
"surface": "operator",
|
|
6
|
-
"version": "0.33.
|
|
6
|
+
"version": "0.33.38"
|
|
7
7
|
},
|
|
8
8
|
"auth": {
|
|
9
9
|
"modes": [
|
|
@@ -5862,7 +5862,7 @@
|
|
|
5862
5862
|
{
|
|
5863
5863
|
"id": "automation.jobs.list",
|
|
5864
5864
|
"title": "List Automation Jobs",
|
|
5865
|
-
"description": "Return automation jobs and recent runs.",
|
|
5865
|
+
"description": "Return automation jobs and recent runs. Without ?limit/?cursor returns { jobs: [...] } (backward compatible). With ?limit=N (1–500, default 100) and optional ?cursor=<opaque> returns a PaginatedResponse envelope { items, hasMore, nextCursor? }. Invalid cursors return HTTP 400.",
|
|
5866
5866
|
"category": "automation",
|
|
5867
5867
|
"source": "builtin",
|
|
5868
5868
|
"access": "authenticated",
|
|
@@ -5882,7 +5882,14 @@
|
|
|
5882
5882
|
],
|
|
5883
5883
|
"inputSchema": {
|
|
5884
5884
|
"type": "object",
|
|
5885
|
-
"properties": {
|
|
5885
|
+
"properties": {
|
|
5886
|
+
"limit": {
|
|
5887
|
+
"type": "number"
|
|
5888
|
+
},
|
|
5889
|
+
"cursor": {
|
|
5890
|
+
"type": "string"
|
|
5891
|
+
}
|
|
5892
|
+
},
|
|
5886
5893
|
"additionalProperties": false
|
|
5887
5894
|
},
|
|
5888
5895
|
"outputSchema": {
|
|
@@ -10275,7 +10282,7 @@
|
|
|
10275
10282
|
{
|
|
10276
10283
|
"id": "automation.runs.list",
|
|
10277
10284
|
"title": "List Automation Runs",
|
|
10278
|
-
"description": "Return automation run history.",
|
|
10285
|
+
"description": "Return automation run history. Without ?limit/?cursor returns { runs: [...] } (backward compatible). With ?limit=N (1–500, default 100) and optional ?cursor=<opaque> returns a PaginatedResponse envelope { items, hasMore, nextCursor? }. Invalid cursors return HTTP 400.",
|
|
10279
10286
|
"category": "automation",
|
|
10280
10287
|
"source": "builtin",
|
|
10281
10288
|
"access": "authenticated",
|
|
@@ -10292,7 +10299,14 @@
|
|
|
10292
10299
|
},
|
|
10293
10300
|
"inputSchema": {
|
|
10294
10301
|
"type": "object",
|
|
10295
|
-
"properties": {
|
|
10302
|
+
"properties": {
|
|
10303
|
+
"limit": {
|
|
10304
|
+
"type": "number"
|
|
10305
|
+
},
|
|
10306
|
+
"cursor": {
|
|
10307
|
+
"type": "string"
|
|
10308
|
+
}
|
|
10309
|
+
},
|
|
10296
10310
|
"additionalProperties": false
|
|
10297
10311
|
},
|
|
10298
10312
|
"outputSchema": {
|
|
@@ -40511,7 +40525,7 @@
|
|
|
40511
40525
|
{
|
|
40512
40526
|
"id": "knowledge.nodes.list",
|
|
40513
40527
|
"title": "List Knowledge Nodes",
|
|
40514
|
-
"description": "Return compiled knowledge nodes.",
|
|
40528
|
+
"description": "Return compiled knowledge nodes. Without ?limit/?cursor returns { nodes: [...] } (backward compatible). With ?limit=N (1–1000, default 100) and optional ?cursor=<opaque> returns a PaginatedResponse envelope { items, hasMore, nextCursor? }. Fetch cap is 5 000 items per request (knowledge store does not support cursor/offset range queries natively). Invalid cursors return HTTP 400.",
|
|
40515
40529
|
"category": "knowledge",
|
|
40516
40530
|
"source": "builtin",
|
|
40517
40531
|
"access": "authenticated",
|
|
@@ -40532,6 +40546,9 @@
|
|
|
40532
40546
|
"limit": {
|
|
40533
40547
|
"type": "number"
|
|
40534
40548
|
},
|
|
40549
|
+
"cursor": {
|
|
40550
|
+
"type": "string"
|
|
40551
|
+
},
|
|
40535
40552
|
"knowledgeSpaceId": {
|
|
40536
40553
|
"type": "string"
|
|
40537
40554
|
},
|
|
@@ -44519,7 +44536,7 @@
|
|
|
44519
44536
|
{
|
|
44520
44537
|
"id": "knowledge.sources.list",
|
|
44521
44538
|
"title": "List Knowledge Sources",
|
|
44522
|
-
"description": "Return ingested structured knowledge sources.",
|
|
44539
|
+
"description": "Return ingested structured knowledge sources. Without ?limit/?cursor returns { sources: [...] } (backward compatible). With ?limit=N (1–1000, default 100) and optional ?cursor=<opaque> returns a PaginatedResponse envelope { items, hasMore, nextCursor? }. Fetch cap is 5 000 items per request (knowledge store does not support cursor/offset range queries natively). Invalid cursors return HTTP 400.",
|
|
44523
44540
|
"category": "knowledge",
|
|
44524
44541
|
"source": "builtin",
|
|
44525
44542
|
"access": "authenticated",
|
|
@@ -44540,6 +44557,9 @@
|
|
|
44540
44557
|
"limit": {
|
|
44541
44558
|
"type": "number"
|
|
44542
44559
|
},
|
|
44560
|
+
"cursor": {
|
|
44561
|
+
"type": "string"
|
|
44562
|
+
},
|
|
44543
44563
|
"knowledgeSpaceId": {
|
|
44544
44564
|
"type": "string"
|
|
44545
44565
|
},
|
|
@@ -56669,6 +56689,60 @@
|
|
|
56669
56689
|
},
|
|
56670
56690
|
"invokable": true
|
|
56671
56691
|
},
|
|
56692
|
+
{
|
|
56693
|
+
"id": "memory.review-queue",
|
|
56694
|
+
"title": "Memory Review Queue",
|
|
56695
|
+
"description": "Return memory records prioritised for review. Accepts optional limit (?limit=N) and scope filter (?scope=session|project|team). A scope query parameter that is present but not one of the three valid values returns 400.",
|
|
56696
|
+
"category": "memory",
|
|
56697
|
+
"source": "builtin",
|
|
56698
|
+
"access": "authenticated",
|
|
56699
|
+
"transport": [
|
|
56700
|
+
"http",
|
|
56701
|
+
"ws"
|
|
56702
|
+
],
|
|
56703
|
+
"scopes": [
|
|
56704
|
+
"read:memory"
|
|
56705
|
+
],
|
|
56706
|
+
"http": {
|
|
56707
|
+
"method": "GET",
|
|
56708
|
+
"path": "/api/memory/review-queue"
|
|
56709
|
+
},
|
|
56710
|
+
"inputSchema": {
|
|
56711
|
+
"type": "object",
|
|
56712
|
+
"properties": {
|
|
56713
|
+
"limit": {
|
|
56714
|
+
"type": "number"
|
|
56715
|
+
},
|
|
56716
|
+
"scope": {
|
|
56717
|
+
"type": "string",
|
|
56718
|
+
"enum": [
|
|
56719
|
+
"session",
|
|
56720
|
+
"project",
|
|
56721
|
+
"team"
|
|
56722
|
+
]
|
|
56723
|
+
}
|
|
56724
|
+
},
|
|
56725
|
+
"additionalProperties": false
|
|
56726
|
+
},
|
|
56727
|
+
"outputSchema": {
|
|
56728
|
+
"type": "object",
|
|
56729
|
+
"properties": {
|
|
56730
|
+
"records": {
|
|
56731
|
+
"type": "array",
|
|
56732
|
+
"items": {
|
|
56733
|
+
"type": "object",
|
|
56734
|
+
"properties": {},
|
|
56735
|
+
"additionalProperties": true
|
|
56736
|
+
}
|
|
56737
|
+
}
|
|
56738
|
+
},
|
|
56739
|
+
"required": [
|
|
56740
|
+
"records"
|
|
56741
|
+
],
|
|
56742
|
+
"additionalProperties": false
|
|
56743
|
+
},
|
|
56744
|
+
"invokable": true
|
|
56745
|
+
},
|
|
56672
56746
|
{
|
|
56673
56747
|
"id": "memory.vector.rebuild",
|
|
56674
56748
|
"title": "Rebuild Memory Vector Index",
|
|
@@ -57939,13 +58013,13 @@
|
|
|
57939
58013
|
{
|
|
57940
58014
|
"type": "object",
|
|
57941
58015
|
"additionalProperties": {
|
|
57942
|
-
"$ref": "$.operator.methods[
|
|
58016
|
+
"$ref": "$.operator.methods[208].outputSchema.properties.contract.properties.endpoints.items.properties.inputSchema.additionalProperties"
|
|
57943
58017
|
}
|
|
57944
58018
|
},
|
|
57945
58019
|
{
|
|
57946
58020
|
"type": "array",
|
|
57947
58021
|
"items": {
|
|
57948
|
-
"$ref": "$.operator.methods[
|
|
58022
|
+
"$ref": "$.operator.methods[208].outputSchema.properties.contract.properties.endpoints.items.properties.inputSchema.additionalProperties"
|
|
57949
58023
|
}
|
|
57950
58024
|
}
|
|
57951
58025
|
]
|
|
@@ -57970,13 +58044,13 @@
|
|
|
57970
58044
|
{
|
|
57971
58045
|
"type": "object",
|
|
57972
58046
|
"additionalProperties": {
|
|
57973
|
-
"$ref": "$.operator.methods[
|
|
58047
|
+
"$ref": "$.operator.methods[208].outputSchema.properties.contract.properties.endpoints.items.properties.outputSchema.additionalProperties"
|
|
57974
58048
|
}
|
|
57975
58049
|
},
|
|
57976
58050
|
{
|
|
57977
58051
|
"type": "array",
|
|
57978
58052
|
"items": {
|
|
57979
|
-
"$ref": "$.operator.methods[
|
|
58053
|
+
"$ref": "$.operator.methods[208].outputSchema.properties.contract.properties.endpoints.items.properties.outputSchema.additionalProperties"
|
|
57980
58054
|
}
|
|
57981
58055
|
}
|
|
57982
58056
|
]
|
|
@@ -58026,13 +58100,13 @@
|
|
|
58026
58100
|
{
|
|
58027
58101
|
"type": "object",
|
|
58028
58102
|
"additionalProperties": {
|
|
58029
|
-
"$ref": "$.operator.methods[
|
|
58103
|
+
"$ref": "$.operator.methods[208].outputSchema.properties.contract.properties.metadata.additionalProperties"
|
|
58030
58104
|
}
|
|
58031
58105
|
},
|
|
58032
58106
|
{
|
|
58033
58107
|
"type": "array",
|
|
58034
58108
|
"items": {
|
|
58035
|
-
"$ref": "$.operator.methods[
|
|
58109
|
+
"$ref": "$.operator.methods[208].outputSchema.properties.contract.properties.metadata.additionalProperties"
|
|
58036
58110
|
}
|
|
58037
58111
|
}
|
|
58038
58112
|
]
|
|
@@ -58111,13 +58185,13 @@
|
|
|
58111
58185
|
{
|
|
58112
58186
|
"type": "object",
|
|
58113
58187
|
"additionalProperties": {
|
|
58114
|
-
"$ref": "$.operator.methods[
|
|
58188
|
+
"$ref": "$.operator.methods[209].inputSchema.properties.metadata.additionalProperties"
|
|
58115
58189
|
}
|
|
58116
58190
|
},
|
|
58117
58191
|
{
|
|
58118
58192
|
"type": "array",
|
|
58119
58193
|
"items": {
|
|
58120
|
-
"$ref": "$.operator.methods[
|
|
58194
|
+
"$ref": "$.operator.methods[209].inputSchema.properties.metadata.additionalProperties"
|
|
58121
58195
|
}
|
|
58122
58196
|
}
|
|
58123
58197
|
]
|
|
@@ -58238,13 +58312,13 @@
|
|
|
58238
58312
|
{
|
|
58239
58313
|
"type": "object",
|
|
58240
58314
|
"additionalProperties": {
|
|
58241
|
-
"$ref": "$.operator.methods[
|
|
58315
|
+
"$ref": "$.operator.methods[209].outputSchema.properties.request.properties.metadata.additionalProperties"
|
|
58242
58316
|
}
|
|
58243
58317
|
},
|
|
58244
58318
|
{
|
|
58245
58319
|
"type": "array",
|
|
58246
58320
|
"items": {
|
|
58247
|
-
"$ref": "$.operator.methods[
|
|
58321
|
+
"$ref": "$.operator.methods[209].outputSchema.properties.request.properties.metadata.additionalProperties"
|
|
58248
58322
|
}
|
|
58249
58323
|
}
|
|
58250
58324
|
]
|
|
@@ -58410,13 +58484,13 @@
|
|
|
58410
58484
|
{
|
|
58411
58485
|
"type": "object",
|
|
58412
58486
|
"additionalProperties": {
|
|
58413
|
-
"$ref": "$.operator.methods[
|
|
58487
|
+
"$ref": "$.operator.methods[209].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
58414
58488
|
}
|
|
58415
58489
|
},
|
|
58416
58490
|
{
|
|
58417
58491
|
"type": "array",
|
|
58418
58492
|
"items": {
|
|
58419
|
-
"$ref": "$.operator.methods[
|
|
58493
|
+
"$ref": "$.operator.methods[209].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
58420
58494
|
}
|
|
58421
58495
|
}
|
|
58422
58496
|
]
|
|
@@ -58580,13 +58654,13 @@
|
|
|
58580
58654
|
{
|
|
58581
58655
|
"type": "object",
|
|
58582
58656
|
"additionalProperties": {
|
|
58583
|
-
"$ref": "$.operator.methods[
|
|
58657
|
+
"$ref": "$.operator.methods[210].outputSchema.properties.requests.items.properties.metadata.additionalProperties"
|
|
58584
58658
|
}
|
|
58585
58659
|
},
|
|
58586
58660
|
{
|
|
58587
58661
|
"type": "array",
|
|
58588
58662
|
"items": {
|
|
58589
|
-
"$ref": "$.operator.methods[
|
|
58663
|
+
"$ref": "$.operator.methods[210].outputSchema.properties.requests.items.properties.metadata.additionalProperties"
|
|
58590
58664
|
}
|
|
58591
58665
|
}
|
|
58592
58666
|
]
|
|
@@ -58668,13 +58742,13 @@
|
|
|
58668
58742
|
{
|
|
58669
58743
|
"type": "object",
|
|
58670
58744
|
"additionalProperties": {
|
|
58671
|
-
"$ref": "$.operator.methods[
|
|
58745
|
+
"$ref": "$.operator.methods[211].inputSchema.properties.metadata.additionalProperties"
|
|
58672
58746
|
}
|
|
58673
58747
|
},
|
|
58674
58748
|
{
|
|
58675
58749
|
"type": "array",
|
|
58676
58750
|
"items": {
|
|
58677
|
-
"$ref": "$.operator.methods[
|
|
58751
|
+
"$ref": "$.operator.methods[211].inputSchema.properties.metadata.additionalProperties"
|
|
58678
58752
|
}
|
|
58679
58753
|
}
|
|
58680
58754
|
]
|
|
@@ -58795,13 +58869,13 @@
|
|
|
58795
58869
|
{
|
|
58796
58870
|
"type": "object",
|
|
58797
58871
|
"additionalProperties": {
|
|
58798
|
-
"$ref": "$.operator.methods[
|
|
58872
|
+
"$ref": "$.operator.methods[211].outputSchema.properties.request.properties.metadata.additionalProperties"
|
|
58799
58873
|
}
|
|
58800
58874
|
},
|
|
58801
58875
|
{
|
|
58802
58876
|
"type": "array",
|
|
58803
58877
|
"items": {
|
|
58804
|
-
"$ref": "$.operator.methods[
|
|
58878
|
+
"$ref": "$.operator.methods[211].outputSchema.properties.request.properties.metadata.additionalProperties"
|
|
58805
58879
|
}
|
|
58806
58880
|
}
|
|
58807
58881
|
]
|
|
@@ -59014,13 +59088,13 @@
|
|
|
59014
59088
|
{
|
|
59015
59089
|
"type": "object",
|
|
59016
59090
|
"additionalProperties": {
|
|
59017
|
-
"$ref": "$.operator.methods[
|
|
59091
|
+
"$ref": "$.operator.methods[212].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
59018
59092
|
}
|
|
59019
59093
|
},
|
|
59020
59094
|
{
|
|
59021
59095
|
"type": "array",
|
|
59022
59096
|
"items": {
|
|
59023
|
-
"$ref": "$.operator.methods[
|
|
59097
|
+
"$ref": "$.operator.methods[212].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
59024
59098
|
}
|
|
59025
59099
|
}
|
|
59026
59100
|
]
|
|
@@ -59093,13 +59167,13 @@
|
|
|
59093
59167
|
{
|
|
59094
59168
|
"type": "object",
|
|
59095
59169
|
"additionalProperties": {
|
|
59096
|
-
"$ref": "$.operator.methods[
|
|
59170
|
+
"$ref": "$.operator.methods[213].inputSchema.properties.payload"
|
|
59097
59171
|
}
|
|
59098
59172
|
},
|
|
59099
59173
|
{
|
|
59100
59174
|
"type": "array",
|
|
59101
59175
|
"items": {
|
|
59102
|
-
"$ref": "$.operator.methods[
|
|
59176
|
+
"$ref": "$.operator.methods[213].inputSchema.properties.payload"
|
|
59103
59177
|
}
|
|
59104
59178
|
}
|
|
59105
59179
|
]
|
|
@@ -59152,13 +59226,13 @@
|
|
|
59152
59226
|
{
|
|
59153
59227
|
"type": "object",
|
|
59154
59228
|
"additionalProperties": {
|
|
59155
|
-
"$ref": "$.operator.methods[
|
|
59229
|
+
"$ref": "$.operator.methods[213].inputSchema.properties.metadata.additionalProperties"
|
|
59156
59230
|
}
|
|
59157
59231
|
},
|
|
59158
59232
|
{
|
|
59159
59233
|
"type": "array",
|
|
59160
59234
|
"items": {
|
|
59161
|
-
"$ref": "$.operator.methods[
|
|
59235
|
+
"$ref": "$.operator.methods[213].inputSchema.properties.metadata.additionalProperties"
|
|
59162
59236
|
}
|
|
59163
59237
|
}
|
|
59164
59238
|
]
|
|
@@ -59239,13 +59313,13 @@
|
|
|
59239
59313
|
{
|
|
59240
59314
|
"type": "object",
|
|
59241
59315
|
"additionalProperties": {
|
|
59242
|
-
"$ref": "$.operator.methods[
|
|
59316
|
+
"$ref": "$.operator.methods[213].outputSchema.properties.work.properties.payload"
|
|
59243
59317
|
}
|
|
59244
59318
|
},
|
|
59245
59319
|
{
|
|
59246
59320
|
"type": "array",
|
|
59247
59321
|
"items": {
|
|
59248
|
-
"$ref": "$.operator.methods[
|
|
59322
|
+
"$ref": "$.operator.methods[213].outputSchema.properties.work.properties.payload"
|
|
59249
59323
|
}
|
|
59250
59324
|
}
|
|
59251
59325
|
]
|
|
@@ -59306,13 +59380,13 @@
|
|
|
59306
59380
|
{
|
|
59307
59381
|
"type": "object",
|
|
59308
59382
|
"additionalProperties": {
|
|
59309
|
-
"$ref": "$.operator.methods[
|
|
59383
|
+
"$ref": "$.operator.methods[213].outputSchema.properties.work.properties.result"
|
|
59310
59384
|
}
|
|
59311
59385
|
},
|
|
59312
59386
|
{
|
|
59313
59387
|
"type": "array",
|
|
59314
59388
|
"items": {
|
|
59315
|
-
"$ref": "$.operator.methods[
|
|
59389
|
+
"$ref": "$.operator.methods[213].outputSchema.properties.work.properties.result"
|
|
59316
59390
|
}
|
|
59317
59391
|
}
|
|
59318
59392
|
]
|
|
@@ -59402,13 +59476,13 @@
|
|
|
59402
59476
|
{
|
|
59403
59477
|
"type": "object",
|
|
59404
59478
|
"additionalProperties": {
|
|
59405
|
-
"$ref": "$.operator.methods[
|
|
59479
|
+
"$ref": "$.operator.methods[213].outputSchema.properties.work.properties.metadata.additionalProperties"
|
|
59406
59480
|
}
|
|
59407
59481
|
},
|
|
59408
59482
|
{
|
|
59409
59483
|
"type": "array",
|
|
59410
59484
|
"items": {
|
|
59411
|
-
"$ref": "$.operator.methods[
|
|
59485
|
+
"$ref": "$.operator.methods[213].outputSchema.properties.work.properties.metadata.additionalProperties"
|
|
59412
59486
|
}
|
|
59413
59487
|
}
|
|
59414
59488
|
]
|
|
@@ -59612,13 +59686,13 @@
|
|
|
59612
59686
|
{
|
|
59613
59687
|
"type": "object",
|
|
59614
59688
|
"additionalProperties": {
|
|
59615
|
-
"$ref": "$.operator.methods[
|
|
59689
|
+
"$ref": "$.operator.methods[214].outputSchema.properties.peers.items.properties.metadata.additionalProperties"
|
|
59616
59690
|
}
|
|
59617
59691
|
},
|
|
59618
59692
|
{
|
|
59619
59693
|
"type": "array",
|
|
59620
59694
|
"items": {
|
|
59621
|
-
"$ref": "$.operator.methods[
|
|
59695
|
+
"$ref": "$.operator.methods[214].outputSchema.properties.peers.items.properties.metadata.additionalProperties"
|
|
59622
59696
|
}
|
|
59623
59697
|
}
|
|
59624
59698
|
]
|
|
@@ -59829,13 +59903,13 @@
|
|
|
59829
59903
|
{
|
|
59830
59904
|
"type": "object",
|
|
59831
59905
|
"additionalProperties": {
|
|
59832
|
-
"$ref": "$.operator.methods[
|
|
59906
|
+
"$ref": "$.operator.methods[215].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
59833
59907
|
}
|
|
59834
59908
|
},
|
|
59835
59909
|
{
|
|
59836
59910
|
"type": "array",
|
|
59837
59911
|
"items": {
|
|
59838
|
-
"$ref": "$.operator.methods[
|
|
59912
|
+
"$ref": "$.operator.methods[215].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
59839
59913
|
}
|
|
59840
59914
|
}
|
|
59841
59915
|
]
|
|
@@ -60048,13 +60122,13 @@
|
|
|
60048
60122
|
{
|
|
60049
60123
|
"type": "object",
|
|
60050
60124
|
"additionalProperties": {
|
|
60051
|
-
"$ref": "$.operator.methods[
|
|
60125
|
+
"$ref": "$.operator.methods[216].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
60052
60126
|
}
|
|
60053
60127
|
},
|
|
60054
60128
|
{
|
|
60055
60129
|
"type": "array",
|
|
60056
60130
|
"items": {
|
|
60057
|
-
"$ref": "$.operator.methods[
|
|
60131
|
+
"$ref": "$.operator.methods[216].outputSchema.properties.peer.properties.metadata.additionalProperties"
|
|
60058
60132
|
}
|
|
60059
60133
|
}
|
|
60060
60134
|
]
|
|
@@ -60531,13 +60605,13 @@
|
|
|
60531
60605
|
{
|
|
60532
60606
|
"type": "object",
|
|
60533
60607
|
"additionalProperties": {
|
|
60534
|
-
"$ref": "$.operator.methods[
|
|
60608
|
+
"$ref": "$.operator.methods[217].outputSchema.properties.distributed.properties.pairRequests.items.properties.metadata.additionalProperties"
|
|
60535
60609
|
}
|
|
60536
60610
|
},
|
|
60537
60611
|
{
|
|
60538
60612
|
"type": "array",
|
|
60539
60613
|
"items": {
|
|
60540
|
-
"$ref": "$.operator.methods[
|
|
60614
|
+
"$ref": "$.operator.methods[217].outputSchema.properties.distributed.properties.pairRequests.items.properties.metadata.additionalProperties"
|
|
60541
60615
|
}
|
|
60542
60616
|
}
|
|
60543
60617
|
]
|
|
@@ -60706,13 +60780,13 @@
|
|
|
60706
60780
|
{
|
|
60707
60781
|
"type": "object",
|
|
60708
60782
|
"additionalProperties": {
|
|
60709
|
-
"$ref": "$.operator.methods[
|
|
60783
|
+
"$ref": "$.operator.methods[217].outputSchema.properties.distributed.properties.peers.items.properties.metadata.additionalProperties"
|
|
60710
60784
|
}
|
|
60711
60785
|
},
|
|
60712
60786
|
{
|
|
60713
60787
|
"type": "array",
|
|
60714
60788
|
"items": {
|
|
60715
|
-
"$ref": "$.operator.methods[
|
|
60789
|
+
"$ref": "$.operator.methods[217].outputSchema.properties.distributed.properties.peers.items.properties.metadata.additionalProperties"
|
|
60716
60790
|
}
|
|
60717
60791
|
}
|
|
60718
60792
|
]
|
|
@@ -60801,13 +60875,13 @@
|
|
|
60801
60875
|
{
|
|
60802
60876
|
"type": "object",
|
|
60803
60877
|
"additionalProperties": {
|
|
60804
|
-
"$ref": "$.operator.methods[
|
|
60878
|
+
"$ref": "$.operator.methods[217].outputSchema.properties.distributed.properties.work.items.properties.payload"
|
|
60805
60879
|
}
|
|
60806
60880
|
},
|
|
60807
60881
|
{
|
|
60808
60882
|
"type": "array",
|
|
60809
60883
|
"items": {
|
|
60810
|
-
"$ref": "$.operator.methods[
|
|
60884
|
+
"$ref": "$.operator.methods[217].outputSchema.properties.distributed.properties.work.items.properties.payload"
|
|
60811
60885
|
}
|
|
60812
60886
|
}
|
|
60813
60887
|
]
|
|
@@ -60868,13 +60942,13 @@
|
|
|
60868
60942
|
{
|
|
60869
60943
|
"type": "object",
|
|
60870
60944
|
"additionalProperties": {
|
|
60871
|
-
"$ref": "$.operator.methods[
|
|
60945
|
+
"$ref": "$.operator.methods[217].outputSchema.properties.distributed.properties.work.items.properties.result"
|
|
60872
60946
|
}
|
|
60873
60947
|
},
|
|
60874
60948
|
{
|
|
60875
60949
|
"type": "array",
|
|
60876
60950
|
"items": {
|
|
60877
|
-
"$ref": "$.operator.methods[
|
|
60951
|
+
"$ref": "$.operator.methods[217].outputSchema.properties.distributed.properties.work.items.properties.result"
|
|
60878
60952
|
}
|
|
60879
60953
|
}
|
|
60880
60954
|
]
|
|
@@ -60964,13 +61038,13 @@
|
|
|
60964
61038
|
{
|
|
60965
61039
|
"type": "object",
|
|
60966
61040
|
"additionalProperties": {
|
|
60967
|
-
"$ref": "$.operator.methods[
|
|
61041
|
+
"$ref": "$.operator.methods[217].outputSchema.properties.distributed.properties.work.items.properties.metadata.additionalProperties"
|
|
60968
61042
|
}
|
|
60969
61043
|
},
|
|
60970
61044
|
{
|
|
60971
61045
|
"type": "array",
|
|
60972
61046
|
"items": {
|
|
60973
|
-
"$ref": "$.operator.methods[
|
|
61047
|
+
"$ref": "$.operator.methods[217].outputSchema.properties.distributed.properties.work.items.properties.metadata.additionalProperties"
|
|
60974
61048
|
}
|
|
60975
61049
|
}
|
|
60976
61050
|
]
|
|
@@ -61058,13 +61132,13 @@
|
|
|
61058
61132
|
{
|
|
61059
61133
|
"type": "object",
|
|
61060
61134
|
"additionalProperties": {
|
|
61061
|
-
"$ref": "$.operator.methods[
|
|
61135
|
+
"$ref": "$.operator.methods[217].outputSchema.properties.distributed.properties.audit.items.properties.metadata.additionalProperties"
|
|
61062
61136
|
}
|
|
61063
61137
|
},
|
|
61064
61138
|
{
|
|
61065
61139
|
"type": "array",
|
|
61066
61140
|
"items": {
|
|
61067
|
-
"$ref": "$.operator.methods[
|
|
61141
|
+
"$ref": "$.operator.methods[217].outputSchema.properties.distributed.properties.audit.items.properties.metadata.additionalProperties"
|
|
61068
61142
|
}
|
|
61069
61143
|
}
|
|
61070
61144
|
]
|
|
@@ -61203,13 +61277,13 @@
|
|
|
61203
61277
|
{
|
|
61204
61278
|
"type": "object",
|
|
61205
61279
|
"additionalProperties": {
|
|
61206
|
-
"$ref": "$.operator.methods[
|
|
61280
|
+
"$ref": "$.operator.methods[218].outputSchema.properties.work.properties.payload"
|
|
61207
61281
|
}
|
|
61208
61282
|
},
|
|
61209
61283
|
{
|
|
61210
61284
|
"type": "array",
|
|
61211
61285
|
"items": {
|
|
61212
|
-
"$ref": "$.operator.methods[
|
|
61286
|
+
"$ref": "$.operator.methods[218].outputSchema.properties.work.properties.payload"
|
|
61213
61287
|
}
|
|
61214
61288
|
}
|
|
61215
61289
|
]
|
|
@@ -61270,13 +61344,13 @@
|
|
|
61270
61344
|
{
|
|
61271
61345
|
"type": "object",
|
|
61272
61346
|
"additionalProperties": {
|
|
61273
|
-
"$ref": "$.operator.methods[
|
|
61347
|
+
"$ref": "$.operator.methods[218].outputSchema.properties.work.properties.result"
|
|
61274
61348
|
}
|
|
61275
61349
|
},
|
|
61276
61350
|
{
|
|
61277
61351
|
"type": "array",
|
|
61278
61352
|
"items": {
|
|
61279
|
-
"$ref": "$.operator.methods[
|
|
61353
|
+
"$ref": "$.operator.methods[218].outputSchema.properties.work.properties.result"
|
|
61280
61354
|
}
|
|
61281
61355
|
}
|
|
61282
61356
|
]
|
|
@@ -61366,13 +61440,13 @@
|
|
|
61366
61440
|
{
|
|
61367
61441
|
"type": "object",
|
|
61368
61442
|
"additionalProperties": {
|
|
61369
|
-
"$ref": "$.operator.methods[
|
|
61443
|
+
"$ref": "$.operator.methods[218].outputSchema.properties.work.properties.metadata.additionalProperties"
|
|
61370
61444
|
}
|
|
61371
61445
|
},
|
|
61372
61446
|
{
|
|
61373
61447
|
"type": "array",
|
|
61374
61448
|
"items": {
|
|
61375
|
-
"$ref": "$.operator.methods[
|
|
61449
|
+
"$ref": "$.operator.methods[218].outputSchema.properties.work.properties.metadata.additionalProperties"
|
|
61376
61450
|
}
|
|
61377
61451
|
}
|
|
61378
61452
|
]
|
|
@@ -61495,13 +61569,13 @@
|
|
|
61495
61569
|
{
|
|
61496
61570
|
"type": "object",
|
|
61497
61571
|
"additionalProperties": {
|
|
61498
|
-
"$ref": "$.operator.methods[
|
|
61572
|
+
"$ref": "$.operator.methods[219].outputSchema.properties.work.items.properties.payload"
|
|
61499
61573
|
}
|
|
61500
61574
|
},
|
|
61501
61575
|
{
|
|
61502
61576
|
"type": "array",
|
|
61503
61577
|
"items": {
|
|
61504
|
-
"$ref": "$.operator.methods[
|
|
61578
|
+
"$ref": "$.operator.methods[219].outputSchema.properties.work.items.properties.payload"
|
|
61505
61579
|
}
|
|
61506
61580
|
}
|
|
61507
61581
|
]
|
|
@@ -61562,13 +61636,13 @@
|
|
|
61562
61636
|
{
|
|
61563
61637
|
"type": "object",
|
|
61564
61638
|
"additionalProperties": {
|
|
61565
|
-
"$ref": "$.operator.methods[
|
|
61639
|
+
"$ref": "$.operator.methods[219].outputSchema.properties.work.items.properties.result"
|
|
61566
61640
|
}
|
|
61567
61641
|
},
|
|
61568
61642
|
{
|
|
61569
61643
|
"type": "array",
|
|
61570
61644
|
"items": {
|
|
61571
|
-
"$ref": "$.operator.methods[
|
|
61645
|
+
"$ref": "$.operator.methods[219].outputSchema.properties.work.items.properties.result"
|
|
61572
61646
|
}
|
|
61573
61647
|
}
|
|
61574
61648
|
]
|
|
@@ -61658,13 +61732,13 @@
|
|
|
61658
61732
|
{
|
|
61659
61733
|
"type": "object",
|
|
61660
61734
|
"additionalProperties": {
|
|
61661
|
-
"$ref": "$.operator.methods[
|
|
61735
|
+
"$ref": "$.operator.methods[219].outputSchema.properties.work.items.properties.metadata.additionalProperties"
|
|
61662
61736
|
}
|
|
61663
61737
|
},
|
|
61664
61738
|
{
|
|
61665
61739
|
"type": "array",
|
|
61666
61740
|
"items": {
|
|
61667
|
-
"$ref": "$.operator.methods[
|
|
61741
|
+
"$ref": "$.operator.methods[219].outputSchema.properties.work.items.properties.metadata.additionalProperties"
|
|
61668
61742
|
}
|
|
61669
61743
|
}
|
|
61670
61744
|
]
|
|
@@ -61847,13 +61921,13 @@
|
|
|
61847
61921
|
{
|
|
61848
61922
|
"type": "object",
|
|
61849
61923
|
"additionalProperties": {
|
|
61850
|
-
"$ref": "$.operator.methods[
|
|
61924
|
+
"$ref": "$.operator.methods[221].inputSchema.properties.metadata.additionalProperties"
|
|
61851
61925
|
}
|
|
61852
61926
|
},
|
|
61853
61927
|
{
|
|
61854
61928
|
"type": "array",
|
|
61855
61929
|
"items": {
|
|
61856
|
-
"$ref": "$.operator.methods[
|
|
61930
|
+
"$ref": "$.operator.methods[221].inputSchema.properties.metadata.additionalProperties"
|
|
61857
61931
|
}
|
|
61858
61932
|
}
|
|
61859
61933
|
]
|
|
@@ -61981,13 +62055,13 @@
|
|
|
61981
62055
|
{
|
|
61982
62056
|
"type": "object",
|
|
61983
62057
|
"additionalProperties": {
|
|
61984
|
-
"$ref": "$.operator.methods[
|
|
62058
|
+
"$ref": "$.operator.methods[221].outputSchema.properties.metadata.additionalProperties"
|
|
61985
62059
|
}
|
|
61986
62060
|
},
|
|
61987
62061
|
{
|
|
61988
62062
|
"type": "array",
|
|
61989
62063
|
"items": {
|
|
61990
|
-
"$ref": "$.operator.methods[
|
|
62064
|
+
"$ref": "$.operator.methods[221].outputSchema.properties.metadata.additionalProperties"
|
|
61991
62065
|
}
|
|
61992
62066
|
}
|
|
61993
62067
|
]
|
|
@@ -62204,13 +62278,13 @@
|
|
|
62204
62278
|
{
|
|
62205
62279
|
"type": "object",
|
|
62206
62280
|
"additionalProperties": {
|
|
62207
|
-
"$ref": "$.operator.methods[
|
|
62281
|
+
"$ref": "$.operator.methods[223].outputSchema.properties.bindings.items.properties.metadata.additionalProperties"
|
|
62208
62282
|
}
|
|
62209
62283
|
},
|
|
62210
62284
|
{
|
|
62211
62285
|
"type": "array",
|
|
62212
62286
|
"items": {
|
|
62213
|
-
"$ref": "$.operator.methods[
|
|
62287
|
+
"$ref": "$.operator.methods[223].outputSchema.properties.bindings.items.properties.metadata.additionalProperties"
|
|
62214
62288
|
}
|
|
62215
62289
|
}
|
|
62216
62290
|
]
|
|
@@ -62312,13 +62386,13 @@
|
|
|
62312
62386
|
{
|
|
62313
62387
|
"type": "object",
|
|
62314
62388
|
"additionalProperties": {
|
|
62315
|
-
"$ref": "$.operator.methods[
|
|
62389
|
+
"$ref": "$.operator.methods[224].inputSchema.properties.metadata.additionalProperties"
|
|
62316
62390
|
}
|
|
62317
62391
|
},
|
|
62318
62392
|
{
|
|
62319
62393
|
"type": "array",
|
|
62320
62394
|
"items": {
|
|
62321
|
-
"$ref": "$.operator.methods[
|
|
62395
|
+
"$ref": "$.operator.methods[224].inputSchema.properties.metadata.additionalProperties"
|
|
62322
62396
|
}
|
|
62323
62397
|
}
|
|
62324
62398
|
]
|
|
@@ -62440,13 +62514,13 @@
|
|
|
62440
62514
|
{
|
|
62441
62515
|
"type": "object",
|
|
62442
62516
|
"additionalProperties": {
|
|
62443
|
-
"$ref": "$.operator.methods[
|
|
62517
|
+
"$ref": "$.operator.methods[224].outputSchema.properties.metadata.additionalProperties"
|
|
62444
62518
|
}
|
|
62445
62519
|
},
|
|
62446
62520
|
{
|
|
62447
62521
|
"type": "array",
|
|
62448
62522
|
"items": {
|
|
62449
|
-
"$ref": "$.operator.methods[
|
|
62523
|
+
"$ref": "$.operator.methods[224].outputSchema.properties.metadata.additionalProperties"
|
|
62450
62524
|
}
|
|
62451
62525
|
}
|
|
62452
62526
|
]
|
|
@@ -62621,13 +62695,13 @@
|
|
|
62621
62695
|
{
|
|
62622
62696
|
"type": "object",
|
|
62623
62697
|
"additionalProperties": {
|
|
62624
|
-
"$ref": "$.operator.methods[
|
|
62698
|
+
"$ref": "$.operator.methods[225].outputSchema.properties.bindings.items.properties.metadata.additionalProperties"
|
|
62625
62699
|
}
|
|
62626
62700
|
},
|
|
62627
62701
|
{
|
|
62628
62702
|
"type": "array",
|
|
62629
62703
|
"items": {
|
|
62630
|
-
"$ref": "$.operator.methods[
|
|
62704
|
+
"$ref": "$.operator.methods[225].outputSchema.properties.bindings.items.properties.metadata.additionalProperties"
|
|
62631
62705
|
}
|
|
62632
62706
|
}
|
|
62633
62707
|
]
|
|
@@ -62745,13 +62819,13 @@
|
|
|
62745
62819
|
{
|
|
62746
62820
|
"type": "object",
|
|
62747
62821
|
"additionalProperties": {
|
|
62748
|
-
"$ref": "$.operator.methods[
|
|
62822
|
+
"$ref": "$.operator.methods[226].outputSchema.properties.surfaces.items.properties.metadata.additionalProperties"
|
|
62749
62823
|
}
|
|
62750
62824
|
},
|
|
62751
62825
|
{
|
|
62752
62826
|
"type": "array",
|
|
62753
62827
|
"items": {
|
|
62754
|
-
"$ref": "$.operator.methods[
|
|
62828
|
+
"$ref": "$.operator.methods[226].outputSchema.properties.surfaces.items.properties.metadata.additionalProperties"
|
|
62755
62829
|
}
|
|
62756
62830
|
}
|
|
62757
62831
|
]
|
|
@@ -64819,13 +64893,13 @@
|
|
|
64819
64893
|
{
|
|
64820
64894
|
"type": "object",
|
|
64821
64895
|
"additionalProperties": {
|
|
64822
|
-
"$ref": "$.operator.methods[
|
|
64896
|
+
"$ref": "$.operator.methods[234].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
64823
64897
|
}
|
|
64824
64898
|
},
|
|
64825
64899
|
{
|
|
64826
64900
|
"type": "array",
|
|
64827
64901
|
"items": {
|
|
64828
|
-
"$ref": "$.operator.methods[
|
|
64902
|
+
"$ref": "$.operator.methods[234].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
64829
64903
|
}
|
|
64830
64904
|
}
|
|
64831
64905
|
]
|
|
@@ -65013,13 +65087,13 @@
|
|
|
65013
65087
|
{
|
|
65014
65088
|
"type": "object",
|
|
65015
65089
|
"additionalProperties": {
|
|
65016
|
-
"$ref": "$.operator.methods[
|
|
65090
|
+
"$ref": "$.operator.methods[235].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
65017
65091
|
}
|
|
65018
65092
|
},
|
|
65019
65093
|
{
|
|
65020
65094
|
"type": "array",
|
|
65021
65095
|
"items": {
|
|
65022
|
-
"$ref": "$.operator.methods[
|
|
65096
|
+
"$ref": "$.operator.methods[235].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
65023
65097
|
}
|
|
65024
65098
|
}
|
|
65025
65099
|
]
|
|
@@ -65311,13 +65385,13 @@
|
|
|
65311
65385
|
{
|
|
65312
65386
|
"type": "object",
|
|
65313
65387
|
"additionalProperties": {
|
|
65314
|
-
"$ref": "$.operator.methods[
|
|
65388
|
+
"$ref": "$.operator.methods[236].outputSchema.properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
65315
65389
|
}
|
|
65316
65390
|
},
|
|
65317
65391
|
{
|
|
65318
65392
|
"type": "array",
|
|
65319
65393
|
"items": {
|
|
65320
|
-
"$ref": "$.operator.methods[
|
|
65394
|
+
"$ref": "$.operator.methods[236].outputSchema.properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
65321
65395
|
}
|
|
65322
65396
|
}
|
|
65323
65397
|
]
|
|
@@ -65406,13 +65480,13 @@
|
|
|
65406
65480
|
{
|
|
65407
65481
|
"type": "object",
|
|
65408
65482
|
"additionalProperties": {
|
|
65409
|
-
"$ref": "$.operator.methods[
|
|
65483
|
+
"$ref": "$.operator.methods[236].outputSchema.properties.message.properties.metadata.additionalProperties"
|
|
65410
65484
|
}
|
|
65411
65485
|
},
|
|
65412
65486
|
{
|
|
65413
65487
|
"type": "array",
|
|
65414
65488
|
"items": {
|
|
65415
|
-
"$ref": "$.operator.methods[
|
|
65489
|
+
"$ref": "$.operator.methods[236].outputSchema.properties.message.properties.metadata.additionalProperties"
|
|
65416
65490
|
}
|
|
65417
65491
|
}
|
|
65418
65492
|
]
|
|
@@ -65516,13 +65590,13 @@
|
|
|
65516
65590
|
{
|
|
65517
65591
|
"type": "object",
|
|
65518
65592
|
"additionalProperties": {
|
|
65519
|
-
"$ref": "$.operator.methods[
|
|
65593
|
+
"$ref": "$.operator.methods[236].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
65520
65594
|
}
|
|
65521
65595
|
},
|
|
65522
65596
|
{
|
|
65523
65597
|
"type": "array",
|
|
65524
65598
|
"items": {
|
|
65525
|
-
"$ref": "$.operator.methods[
|
|
65599
|
+
"$ref": "$.operator.methods[236].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
65526
65600
|
}
|
|
65527
65601
|
}
|
|
65528
65602
|
]
|
|
@@ -65828,13 +65902,13 @@
|
|
|
65828
65902
|
{
|
|
65829
65903
|
"type": "object",
|
|
65830
65904
|
"additionalProperties": {
|
|
65831
|
-
"$ref": "$.operator.methods[
|
|
65905
|
+
"$ref": "$.operator.methods[237].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
65832
65906
|
}
|
|
65833
65907
|
},
|
|
65834
65908
|
{
|
|
65835
65909
|
"type": "array",
|
|
65836
65910
|
"items": {
|
|
65837
|
-
"$ref": "$.operator.methods[
|
|
65911
|
+
"$ref": "$.operator.methods[237].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
65838
65912
|
}
|
|
65839
65913
|
}
|
|
65840
65914
|
]
|
|
@@ -65920,13 +65994,13 @@
|
|
|
65920
65994
|
{
|
|
65921
65995
|
"type": "object",
|
|
65922
65996
|
"additionalProperties": {
|
|
65923
|
-
"$ref": "$.operator.methods[
|
|
65997
|
+
"$ref": "$.operator.methods[237].outputSchema.properties.messages.items.properties.metadata.additionalProperties"
|
|
65924
65998
|
}
|
|
65925
65999
|
},
|
|
65926
66000
|
{
|
|
65927
66001
|
"type": "array",
|
|
65928
66002
|
"items": {
|
|
65929
|
-
"$ref": "$.operator.methods[
|
|
66003
|
+
"$ref": "$.operator.methods[237].outputSchema.properties.messages.items.properties.metadata.additionalProperties"
|
|
65930
66004
|
}
|
|
65931
66005
|
}
|
|
65932
66006
|
]
|
|
@@ -66077,13 +66151,13 @@
|
|
|
66077
66151
|
{
|
|
66078
66152
|
"type": "object",
|
|
66079
66153
|
"additionalProperties": {
|
|
66080
|
-
"$ref": "$.operator.methods[
|
|
66154
|
+
"$ref": "$.operator.methods[238].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
66081
66155
|
}
|
|
66082
66156
|
},
|
|
66083
66157
|
{
|
|
66084
66158
|
"type": "array",
|
|
66085
66159
|
"items": {
|
|
66086
|
-
"$ref": "$.operator.methods[
|
|
66160
|
+
"$ref": "$.operator.methods[238].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
66087
66161
|
}
|
|
66088
66162
|
}
|
|
66089
66163
|
]
|
|
@@ -66369,13 +66443,13 @@
|
|
|
66369
66443
|
{
|
|
66370
66444
|
"type": "object",
|
|
66371
66445
|
"additionalProperties": {
|
|
66372
|
-
"$ref": "$.operator.methods[
|
|
66446
|
+
"$ref": "$.operator.methods[239].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
66373
66447
|
}
|
|
66374
66448
|
},
|
|
66375
66449
|
{
|
|
66376
66450
|
"type": "array",
|
|
66377
66451
|
"items": {
|
|
66378
|
-
"$ref": "$.operator.methods[
|
|
66452
|
+
"$ref": "$.operator.methods[239].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
66379
66453
|
}
|
|
66380
66454
|
}
|
|
66381
66455
|
]
|
|
@@ -66488,13 +66562,13 @@
|
|
|
66488
66562
|
{
|
|
66489
66563
|
"type": "object",
|
|
66490
66564
|
"additionalProperties": {
|
|
66491
|
-
"$ref": "$.operator.methods[
|
|
66565
|
+
"$ref": "$.operator.methods[239].outputSchema.properties.inputs.items.properties.metadata.additionalProperties"
|
|
66492
66566
|
}
|
|
66493
66567
|
},
|
|
66494
66568
|
{
|
|
66495
66569
|
"type": "array",
|
|
66496
66570
|
"items": {
|
|
66497
|
-
"$ref": "$.operator.methods[
|
|
66571
|
+
"$ref": "$.operator.methods[239].outputSchema.properties.inputs.items.properties.metadata.additionalProperties"
|
|
66498
66572
|
}
|
|
66499
66573
|
}
|
|
66500
66574
|
]
|
|
@@ -66871,13 +66945,13 @@
|
|
|
66871
66945
|
{
|
|
66872
66946
|
"type": "object",
|
|
66873
66947
|
"additionalProperties": {
|
|
66874
|
-
"$ref": "$.operator.methods[
|
|
66948
|
+
"$ref": "$.operator.methods[241].outputSchema.properties.sessions.items.properties.metadata.additionalProperties"
|
|
66875
66949
|
}
|
|
66876
66950
|
},
|
|
66877
66951
|
{
|
|
66878
66952
|
"type": "array",
|
|
66879
66953
|
"items": {
|
|
66880
|
-
"$ref": "$.operator.methods[
|
|
66954
|
+
"$ref": "$.operator.methods[241].outputSchema.properties.sessions.items.properties.metadata.additionalProperties"
|
|
66881
66955
|
}
|
|
66882
66956
|
}
|
|
66883
66957
|
]
|
|
@@ -67196,13 +67270,13 @@
|
|
|
67196
67270
|
{
|
|
67197
67271
|
"type": "object",
|
|
67198
67272
|
"additionalProperties": {
|
|
67199
|
-
"$ref": "$.operator.methods[
|
|
67273
|
+
"$ref": "$.operator.methods[242].outputSchema.anyOf[1].properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
67200
67274
|
}
|
|
67201
67275
|
},
|
|
67202
67276
|
{
|
|
67203
67277
|
"type": "array",
|
|
67204
67278
|
"items": {
|
|
67205
|
-
"$ref": "$.operator.methods[
|
|
67279
|
+
"$ref": "$.operator.methods[242].outputSchema.anyOf[1].properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
67206
67280
|
}
|
|
67207
67281
|
}
|
|
67208
67282
|
]
|
|
@@ -67291,13 +67365,13 @@
|
|
|
67291
67365
|
{
|
|
67292
67366
|
"type": "object",
|
|
67293
67367
|
"additionalProperties": {
|
|
67294
|
-
"$ref": "$.operator.methods[
|
|
67368
|
+
"$ref": "$.operator.methods[242].outputSchema.anyOf[1].properties.message.properties.metadata.additionalProperties"
|
|
67295
67369
|
}
|
|
67296
67370
|
},
|
|
67297
67371
|
{
|
|
67298
67372
|
"type": "array",
|
|
67299
67373
|
"items": {
|
|
67300
|
-
"$ref": "$.operator.methods[
|
|
67374
|
+
"$ref": "$.operator.methods[242].outputSchema.anyOf[1].properties.message.properties.metadata.additionalProperties"
|
|
67301
67375
|
}
|
|
67302
67376
|
}
|
|
67303
67377
|
]
|
|
@@ -67401,13 +67475,13 @@
|
|
|
67401
67475
|
{
|
|
67402
67476
|
"type": "object",
|
|
67403
67477
|
"additionalProperties": {
|
|
67404
|
-
"$ref": "$.operator.methods[
|
|
67478
|
+
"$ref": "$.operator.methods[242].outputSchema.anyOf[1].properties.input.properties.metadata.additionalProperties"
|
|
67405
67479
|
}
|
|
67406
67480
|
},
|
|
67407
67481
|
{
|
|
67408
67482
|
"type": "array",
|
|
67409
67483
|
"items": {
|
|
67410
|
-
"$ref": "$.operator.methods[
|
|
67484
|
+
"$ref": "$.operator.methods[242].outputSchema.anyOf[1].properties.input.properties.metadata.additionalProperties"
|
|
67411
67485
|
}
|
|
67412
67486
|
}
|
|
67413
67487
|
]
|
|
@@ -67721,13 +67795,13 @@
|
|
|
67721
67795
|
{
|
|
67722
67796
|
"type": "object",
|
|
67723
67797
|
"additionalProperties": {
|
|
67724
|
-
"$ref": "$.operator.methods[
|
|
67798
|
+
"$ref": "$.operator.methods[243].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
67725
67799
|
}
|
|
67726
67800
|
},
|
|
67727
67801
|
{
|
|
67728
67802
|
"type": "array",
|
|
67729
67803
|
"items": {
|
|
67730
|
-
"$ref": "$.operator.methods[
|
|
67804
|
+
"$ref": "$.operator.methods[243].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
67731
67805
|
}
|
|
67732
67806
|
}
|
|
67733
67807
|
]
|
|
@@ -67813,13 +67887,13 @@
|
|
|
67813
67887
|
{
|
|
67814
67888
|
"type": "object",
|
|
67815
67889
|
"additionalProperties": {
|
|
67816
|
-
"$ref": "$.operator.methods[
|
|
67890
|
+
"$ref": "$.operator.methods[243].outputSchema.properties.messages.items.properties.metadata.additionalProperties"
|
|
67817
67891
|
}
|
|
67818
67892
|
},
|
|
67819
67893
|
{
|
|
67820
67894
|
"type": "array",
|
|
67821
67895
|
"items": {
|
|
67822
|
-
"$ref": "$.operator.methods[
|
|
67896
|
+
"$ref": "$.operator.methods[243].outputSchema.properties.messages.items.properties.metadata.additionalProperties"
|
|
67823
67897
|
}
|
|
67824
67898
|
}
|
|
67825
67899
|
]
|
|
@@ -67999,13 +68073,13 @@
|
|
|
67999
68073
|
{
|
|
68000
68074
|
"type": "object",
|
|
68001
68075
|
"additionalProperties": {
|
|
68002
|
-
"$ref": "$.operator.methods[
|
|
68076
|
+
"$ref": "$.operator.methods[244].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
68003
68077
|
}
|
|
68004
68078
|
},
|
|
68005
68079
|
{
|
|
68006
68080
|
"type": "array",
|
|
68007
68081
|
"items": {
|
|
68008
|
-
"$ref": "$.operator.methods[
|
|
68082
|
+
"$ref": "$.operator.methods[244].outputSchema.properties.session.properties.metadata.additionalProperties"
|
|
68009
68083
|
}
|
|
68010
68084
|
}
|
|
68011
68085
|
]
|
|
@@ -68300,13 +68374,13 @@
|
|
|
68300
68374
|
{
|
|
68301
68375
|
"type": "object",
|
|
68302
68376
|
"additionalProperties": {
|
|
68303
|
-
"$ref": "$.operator.methods[
|
|
68377
|
+
"$ref": "$.operator.methods[245].outputSchema.properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
68304
68378
|
}
|
|
68305
68379
|
},
|
|
68306
68380
|
{
|
|
68307
68381
|
"type": "array",
|
|
68308
68382
|
"items": {
|
|
68309
|
-
"$ref": "$.operator.methods[
|
|
68383
|
+
"$ref": "$.operator.methods[245].outputSchema.properties.session.anyOf[0].properties.metadata.additionalProperties"
|
|
68310
68384
|
}
|
|
68311
68385
|
}
|
|
68312
68386
|
]
|
|
@@ -68395,13 +68469,13 @@
|
|
|
68395
68469
|
{
|
|
68396
68470
|
"type": "object",
|
|
68397
68471
|
"additionalProperties": {
|
|
68398
|
-
"$ref": "$.operator.methods[
|
|
68472
|
+
"$ref": "$.operator.methods[245].outputSchema.properties.message.properties.metadata.additionalProperties"
|
|
68399
68473
|
}
|
|
68400
68474
|
},
|
|
68401
68475
|
{
|
|
68402
68476
|
"type": "array",
|
|
68403
68477
|
"items": {
|
|
68404
|
-
"$ref": "$.operator.methods[
|
|
68478
|
+
"$ref": "$.operator.methods[245].outputSchema.properties.message.properties.metadata.additionalProperties"
|
|
68405
68479
|
}
|
|
68406
68480
|
}
|
|
68407
68481
|
]
|
|
@@ -68505,13 +68579,13 @@
|
|
|
68505
68579
|
{
|
|
68506
68580
|
"type": "object",
|
|
68507
68581
|
"additionalProperties": {
|
|
68508
|
-
"$ref": "$.operator.methods[
|
|
68582
|
+
"$ref": "$.operator.methods[245].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
68509
68583
|
}
|
|
68510
68584
|
},
|
|
68511
68585
|
{
|
|
68512
68586
|
"type": "array",
|
|
68513
68587
|
"items": {
|
|
68514
|
-
"$ref": "$.operator.methods[
|
|
68588
|
+
"$ref": "$.operator.methods[245].outputSchema.properties.input.properties.metadata.additionalProperties"
|
|
68515
68589
|
}
|
|
68516
68590
|
}
|
|
68517
68591
|
]
|
|
@@ -68846,13 +68920,13 @@
|
|
|
68846
68920
|
{
|
|
68847
68921
|
"type": "object",
|
|
68848
68922
|
"additionalProperties": {
|
|
68849
|
-
"$ref": "$.operator.methods[
|
|
68923
|
+
"$ref": "$.operator.methods[247].outputSchema.anyOf[1].properties.conflicts.items.properties.localValue"
|
|
68850
68924
|
}
|
|
68851
68925
|
},
|
|
68852
68926
|
{
|
|
68853
68927
|
"type": "array",
|
|
68854
68928
|
"items": {
|
|
68855
|
-
"$ref": "$.operator.methods[
|
|
68929
|
+
"$ref": "$.operator.methods[247].outputSchema.anyOf[1].properties.conflicts.items.properties.localValue"
|
|
68856
68930
|
}
|
|
68857
68931
|
}
|
|
68858
68932
|
]
|
|
@@ -68874,13 +68948,13 @@
|
|
|
68874
68948
|
{
|
|
68875
68949
|
"type": "object",
|
|
68876
68950
|
"additionalProperties": {
|
|
68877
|
-
"$ref": "$.operator.methods[
|
|
68951
|
+
"$ref": "$.operator.methods[247].outputSchema.anyOf[1].properties.conflicts.items.properties.incomingValue"
|
|
68878
68952
|
}
|
|
68879
68953
|
},
|
|
68880
68954
|
{
|
|
68881
68955
|
"type": "array",
|
|
68882
68956
|
"items": {
|
|
68883
|
-
"$ref": "$.operator.methods[
|
|
68957
|
+
"$ref": "$.operator.methods[247].outputSchema.anyOf[1].properties.conflicts.items.properties.incomingValue"
|
|
68884
68958
|
}
|
|
68885
68959
|
}
|
|
68886
68960
|
]
|
|
@@ -68983,13 +69057,13 @@
|
|
|
68983
69057
|
{
|
|
68984
69058
|
"type": "object",
|
|
68985
69059
|
"additionalProperties": {
|
|
68986
|
-
"$ref": "$.operator.methods[
|
|
69060
|
+
"$ref": "$.operator.methods[247].outputSchema.anyOf[1].properties.stagedManagedBundle.properties.changes.items.properties.previousValue"
|
|
68987
69061
|
}
|
|
68988
69062
|
},
|
|
68989
69063
|
{
|
|
68990
69064
|
"type": "array",
|
|
68991
69065
|
"items": {
|
|
68992
|
-
"$ref": "$.operator.methods[
|
|
69066
|
+
"$ref": "$.operator.methods[247].outputSchema.anyOf[1].properties.stagedManagedBundle.properties.changes.items.properties.previousValue"
|
|
68993
69067
|
}
|
|
68994
69068
|
}
|
|
68995
69069
|
]
|
|
@@ -69011,13 +69085,13 @@
|
|
|
69011
69085
|
{
|
|
69012
69086
|
"type": "object",
|
|
69013
69087
|
"additionalProperties": {
|
|
69014
|
-
"$ref": "$.operator.methods[
|
|
69088
|
+
"$ref": "$.operator.methods[247].outputSchema.anyOf[1].properties.stagedManagedBundle.properties.changes.items.properties.nextValue"
|
|
69015
69089
|
}
|
|
69016
69090
|
},
|
|
69017
69091
|
{
|
|
69018
69092
|
"type": "array",
|
|
69019
69093
|
"items": {
|
|
69020
|
-
"$ref": "$.operator.methods[
|
|
69094
|
+
"$ref": "$.operator.methods[247].outputSchema.anyOf[1].properties.stagedManagedBundle.properties.changes.items.properties.nextValue"
|
|
69021
69095
|
}
|
|
69022
69096
|
}
|
|
69023
69097
|
]
|
|
@@ -69101,13 +69175,13 @@
|
|
|
69101
69175
|
{
|
|
69102
69176
|
"type": "object",
|
|
69103
69177
|
"additionalProperties": {
|
|
69104
|
-
"$ref": "$.operator.methods[
|
|
69178
|
+
"$ref": "$.operator.methods[247].outputSchema.anyOf[1].properties.rollbackHistory.items.properties.previousValues.additionalProperties"
|
|
69105
69179
|
}
|
|
69106
69180
|
},
|
|
69107
69181
|
{
|
|
69108
69182
|
"type": "array",
|
|
69109
69183
|
"items": {
|
|
69110
|
-
"$ref": "$.operator.methods[
|
|
69184
|
+
"$ref": "$.operator.methods[247].outputSchema.anyOf[1].properties.rollbackHistory.items.properties.previousValues.additionalProperties"
|
|
69111
69185
|
}
|
|
69112
69186
|
}
|
|
69113
69187
|
]
|
|
@@ -69308,13 +69382,13 @@
|
|
|
69308
69382
|
{
|
|
69309
69383
|
"type": "object",
|
|
69310
69384
|
"additionalProperties": {
|
|
69311
|
-
"$ref": "$.operator.methods[
|
|
69385
|
+
"$ref": "$.operator.methods[248].outputSchema.properties.task.properties.result"
|
|
69312
69386
|
}
|
|
69313
69387
|
},
|
|
69314
69388
|
{
|
|
69315
69389
|
"type": "array",
|
|
69316
69390
|
"items": {
|
|
69317
|
-
"$ref": "$.operator.methods[
|
|
69391
|
+
"$ref": "$.operator.methods[248].outputSchema.properties.task.properties.result"
|
|
69318
69392
|
}
|
|
69319
69393
|
}
|
|
69320
69394
|
]
|
|
@@ -69533,13 +69607,13 @@
|
|
|
69533
69607
|
{
|
|
69534
69608
|
"type": "object",
|
|
69535
69609
|
"additionalProperties": {
|
|
69536
|
-
"$ref": "$.operator.methods[
|
|
69610
|
+
"$ref": "$.operator.methods[249].inputSchema.properties.metadata.additionalProperties"
|
|
69537
69611
|
}
|
|
69538
69612
|
},
|
|
69539
69613
|
{
|
|
69540
69614
|
"type": "array",
|
|
69541
69615
|
"items": {
|
|
69542
|
-
"$ref": "$.operator.methods[
|
|
69616
|
+
"$ref": "$.operator.methods[249].inputSchema.properties.metadata.additionalProperties"
|
|
69543
69617
|
}
|
|
69544
69618
|
}
|
|
69545
69619
|
]
|
|
@@ -69766,13 +69840,13 @@
|
|
|
69766
69840
|
{
|
|
69767
69841
|
"type": "object",
|
|
69768
69842
|
"additionalProperties": {
|
|
69769
|
-
"$ref": "$.operator.methods[
|
|
69843
|
+
"$ref": "$.operator.methods[250].outputSchema.properties.task.properties.result"
|
|
69770
69844
|
}
|
|
69771
69845
|
},
|
|
69772
69846
|
{
|
|
69773
69847
|
"type": "array",
|
|
69774
69848
|
"items": {
|
|
69775
|
-
"$ref": "$.operator.methods[
|
|
69849
|
+
"$ref": "$.operator.methods[250].outputSchema.properties.task.properties.result"
|
|
69776
69850
|
}
|
|
69777
69851
|
}
|
|
69778
69852
|
]
|
|
@@ -70106,13 +70180,13 @@
|
|
|
70106
70180
|
{
|
|
70107
70181
|
"type": "object",
|
|
70108
70182
|
"additionalProperties": {
|
|
70109
|
-
"$ref": "$.operator.methods[
|
|
70183
|
+
"$ref": "$.operator.methods[252].outputSchema.properties.task.properties.result"
|
|
70110
70184
|
}
|
|
70111
70185
|
},
|
|
70112
70186
|
{
|
|
70113
70187
|
"type": "array",
|
|
70114
70188
|
"items": {
|
|
70115
|
-
"$ref": "$.operator.methods[
|
|
70189
|
+
"$ref": "$.operator.methods[252].outputSchema.properties.task.properties.result"
|
|
70116
70190
|
}
|
|
70117
70191
|
}
|
|
70118
70192
|
]
|
|
@@ -70400,13 +70474,13 @@
|
|
|
70400
70474
|
{
|
|
70401
70475
|
"type": "object",
|
|
70402
70476
|
"additionalProperties": {
|
|
70403
|
-
"$ref": "$.operator.methods[
|
|
70477
|
+
"$ref": "$.operator.methods[254].outputSchema.properties.items.items.properties.payload"
|
|
70404
70478
|
}
|
|
70405
70479
|
},
|
|
70406
70480
|
{
|
|
70407
70481
|
"type": "array",
|
|
70408
70482
|
"items": {
|
|
70409
|
-
"$ref": "$.operator.methods[
|
|
70483
|
+
"$ref": "$.operator.methods[254].outputSchema.properties.items.items.properties.payload"
|
|
70410
70484
|
}
|
|
70411
70485
|
}
|
|
70412
70486
|
]
|
|
@@ -70430,13 +70504,13 @@
|
|
|
70430
70504
|
{
|
|
70431
70505
|
"type": "object",
|
|
70432
70506
|
"additionalProperties": {
|
|
70433
|
-
"$ref": "$.operator.methods[
|
|
70507
|
+
"$ref": "$.operator.methods[254].outputSchema.properties.items.items.properties.attributes.additionalProperties"
|
|
70434
70508
|
}
|
|
70435
70509
|
},
|
|
70436
70510
|
{
|
|
70437
70511
|
"type": "array",
|
|
70438
70512
|
"items": {
|
|
70439
|
-
"$ref": "$.operator.methods[
|
|
70513
|
+
"$ref": "$.operator.methods[254].outputSchema.properties.items.items.properties.attributes.additionalProperties"
|
|
70440
70514
|
}
|
|
70441
70515
|
}
|
|
70442
70516
|
]
|
|
@@ -70740,13 +70814,13 @@
|
|
|
70740
70814
|
{
|
|
70741
70815
|
"type": "object",
|
|
70742
70816
|
"additionalProperties": {
|
|
70743
|
-
"$ref": "$.operator.methods[
|
|
70817
|
+
"$ref": "$.operator.methods[255].outputSchema.properties.items.items.properties.payload"
|
|
70744
70818
|
}
|
|
70745
70819
|
},
|
|
70746
70820
|
{
|
|
70747
70821
|
"type": "array",
|
|
70748
70822
|
"items": {
|
|
70749
|
-
"$ref": "$.operator.methods[
|
|
70823
|
+
"$ref": "$.operator.methods[255].outputSchema.properties.items.items.properties.payload"
|
|
70750
70824
|
}
|
|
70751
70825
|
}
|
|
70752
70826
|
]
|
|
@@ -70770,13 +70844,13 @@
|
|
|
70770
70844
|
{
|
|
70771
70845
|
"type": "object",
|
|
70772
70846
|
"additionalProperties": {
|
|
70773
|
-
"$ref": "$.operator.methods[
|
|
70847
|
+
"$ref": "$.operator.methods[255].outputSchema.properties.items.items.properties.attributes.additionalProperties"
|
|
70774
70848
|
}
|
|
70775
70849
|
},
|
|
70776
70850
|
{
|
|
70777
70851
|
"type": "array",
|
|
70778
70852
|
"items": {
|
|
70779
|
-
"$ref": "$.operator.methods[
|
|
70853
|
+
"$ref": "$.operator.methods[255].outputSchema.properties.items.items.properties.attributes.additionalProperties"
|
|
70780
70854
|
}
|
|
70781
70855
|
}
|
|
70782
70856
|
]
|
|
@@ -71333,12 +71407,12 @@
|
|
|
71333
71407
|
"type": "null"
|
|
71334
71408
|
},
|
|
71335
71409
|
{
|
|
71336
|
-
"$ref": "$.operator.methods[
|
|
71410
|
+
"$ref": "$.operator.methods[257].outputSchema.properties.resourceLogs.items"
|
|
71337
71411
|
},
|
|
71338
71412
|
{
|
|
71339
71413
|
"type": "array",
|
|
71340
71414
|
"items": {
|
|
71341
|
-
"$ref": "$.operator.methods[
|
|
71415
|
+
"$ref": "$.operator.methods[257].outputSchema.properties.resourceLogs.items.additionalProperties"
|
|
71342
71416
|
}
|
|
71343
71417
|
}
|
|
71344
71418
|
]
|
|
@@ -71448,12 +71522,12 @@
|
|
|
71448
71522
|
"type": "null"
|
|
71449
71523
|
},
|
|
71450
71524
|
{
|
|
71451
|
-
"$ref": "$.operator.methods[
|
|
71525
|
+
"$ref": "$.operator.methods[258].outputSchema.properties.resourceMetrics.items"
|
|
71452
71526
|
},
|
|
71453
71527
|
{
|
|
71454
71528
|
"type": "array",
|
|
71455
71529
|
"items": {
|
|
71456
|
-
"$ref": "$.operator.methods[
|
|
71530
|
+
"$ref": "$.operator.methods[258].outputSchema.properties.resourceMetrics.items.additionalProperties"
|
|
71457
71531
|
}
|
|
71458
71532
|
}
|
|
71459
71533
|
]
|
|
@@ -71563,12 +71637,12 @@
|
|
|
71563
71637
|
"type": "null"
|
|
71564
71638
|
},
|
|
71565
71639
|
{
|
|
71566
|
-
"$ref": "$.operator.methods[
|
|
71640
|
+
"$ref": "$.operator.methods[259].outputSchema.properties.resourceSpans.items"
|
|
71567
71641
|
},
|
|
71568
71642
|
{
|
|
71569
71643
|
"type": "array",
|
|
71570
71644
|
"items": {
|
|
71571
|
-
"$ref": "$.operator.methods[
|
|
71645
|
+
"$ref": "$.operator.methods[259].outputSchema.properties.resourceSpans.items.additionalProperties"
|
|
71572
71646
|
}
|
|
71573
71647
|
}
|
|
71574
71648
|
]
|
|
@@ -72050,13 +72124,13 @@
|
|
|
72050
72124
|
{
|
|
72051
72125
|
"type": "object",
|
|
72052
72126
|
"additionalProperties": {
|
|
72053
|
-
"$ref": "$.operator.methods[
|
|
72127
|
+
"$ref": "$.operator.methods[260].outputSchema.properties.recent.properties.events.properties.items.items.properties.payload"
|
|
72054
72128
|
}
|
|
72055
72129
|
},
|
|
72056
72130
|
{
|
|
72057
72131
|
"type": "array",
|
|
72058
72132
|
"items": {
|
|
72059
|
-
"$ref": "$.operator.methods[
|
|
72133
|
+
"$ref": "$.operator.methods[260].outputSchema.properties.recent.properties.events.properties.items.items.properties.payload"
|
|
72060
72134
|
}
|
|
72061
72135
|
}
|
|
72062
72136
|
]
|
|
@@ -72080,13 +72154,13 @@
|
|
|
72080
72154
|
{
|
|
72081
72155
|
"type": "object",
|
|
72082
72156
|
"additionalProperties": {
|
|
72083
|
-
"$ref": "$.operator.methods[
|
|
72157
|
+
"$ref": "$.operator.methods[260].outputSchema.properties.recent.properties.events.properties.items.items.properties.attributes.additionalProperties"
|
|
72084
72158
|
}
|
|
72085
72159
|
},
|
|
72086
72160
|
{
|
|
72087
72161
|
"type": "array",
|
|
72088
72162
|
"items": {
|
|
72089
|
-
"$ref": "$.operator.methods[
|
|
72163
|
+
"$ref": "$.operator.methods[260].outputSchema.properties.recent.properties.events.properties.items.items.properties.attributes.additionalProperties"
|
|
72090
72164
|
}
|
|
72091
72165
|
}
|
|
72092
72166
|
]
|
|
@@ -72315,13 +72389,13 @@
|
|
|
72315
72389
|
{
|
|
72316
72390
|
"type": "object",
|
|
72317
72391
|
"additionalProperties": {
|
|
72318
|
-
"$ref": "$.operator.methods[
|
|
72392
|
+
"$ref": "$.operator.methods[260].outputSchema.properties.recent.properties.errors.properties.items.items.properties.payload"
|
|
72319
72393
|
}
|
|
72320
72394
|
},
|
|
72321
72395
|
{
|
|
72322
72396
|
"type": "array",
|
|
72323
72397
|
"items": {
|
|
72324
|
-
"$ref": "$.operator.methods[
|
|
72398
|
+
"$ref": "$.operator.methods[260].outputSchema.properties.recent.properties.errors.properties.items.items.properties.payload"
|
|
72325
72399
|
}
|
|
72326
72400
|
}
|
|
72327
72401
|
]
|
|
@@ -72345,13 +72419,13 @@
|
|
|
72345
72419
|
{
|
|
72346
72420
|
"type": "object",
|
|
72347
72421
|
"additionalProperties": {
|
|
72348
|
-
"$ref": "$.operator.methods[
|
|
72422
|
+
"$ref": "$.operator.methods[260].outputSchema.properties.recent.properties.errors.properties.items.items.properties.attributes.additionalProperties"
|
|
72349
72423
|
}
|
|
72350
72424
|
},
|
|
72351
72425
|
{
|
|
72352
72426
|
"type": "array",
|
|
72353
72427
|
"items": {
|
|
72354
|
-
"$ref": "$.operator.methods[
|
|
72428
|
+
"$ref": "$.operator.methods[260].outputSchema.properties.recent.properties.errors.properties.items.items.properties.attributes.additionalProperties"
|
|
72355
72429
|
}
|
|
72356
72430
|
}
|
|
72357
72431
|
]
|
|
@@ -72578,13 +72652,13 @@
|
|
|
72578
72652
|
{
|
|
72579
72653
|
"type": "object",
|
|
72580
72654
|
"additionalProperties": {
|
|
72581
|
-
"$ref": "$.operator.methods[
|
|
72655
|
+
"$ref": "$.operator.methods[260].outputSchema.properties.recent.properties.spans.properties.items.items.properties.attributes.additionalProperties"
|
|
72582
72656
|
}
|
|
72583
72657
|
},
|
|
72584
72658
|
{
|
|
72585
72659
|
"type": "array",
|
|
72586
72660
|
"items": {
|
|
72587
|
-
"$ref": "$.operator.methods[
|
|
72661
|
+
"$ref": "$.operator.methods[260].outputSchema.properties.recent.properties.spans.properties.items.items.properties.attributes.additionalProperties"
|
|
72588
72662
|
}
|
|
72589
72663
|
}
|
|
72590
72664
|
]
|
|
@@ -72620,13 +72694,13 @@
|
|
|
72620
72694
|
{
|
|
72621
72695
|
"type": "object",
|
|
72622
72696
|
"additionalProperties": {
|
|
72623
|
-
"$ref": "$.operator.methods[
|
|
72697
|
+
"$ref": "$.operator.methods[260].outputSchema.properties.recent.properties.spans.properties.items.items.properties.events.items.properties.attributes.additionalProperties"
|
|
72624
72698
|
}
|
|
72625
72699
|
},
|
|
72626
72700
|
{
|
|
72627
72701
|
"type": "array",
|
|
72628
72702
|
"items": {
|
|
72629
|
-
"$ref": "$.operator.methods[
|
|
72703
|
+
"$ref": "$.operator.methods[260].outputSchema.properties.recent.properties.spans.properties.items.items.properties.events.items.properties.attributes.additionalProperties"
|
|
72630
72704
|
}
|
|
72631
72705
|
}
|
|
72632
72706
|
]
|
|
@@ -73064,13 +73138,13 @@
|
|
|
73064
73138
|
{
|
|
73065
73139
|
"type": "object",
|
|
73066
73140
|
"additionalProperties": {
|
|
73067
|
-
"$ref": "$.operator.methods[
|
|
73141
|
+
"$ref": "$.operator.methods[262].outputSchema.properties.items.items.properties.attributes.additionalProperties"
|
|
73068
73142
|
}
|
|
73069
73143
|
},
|
|
73070
73144
|
{
|
|
73071
73145
|
"type": "array",
|
|
73072
73146
|
"items": {
|
|
73073
|
-
"$ref": "$.operator.methods[
|
|
73147
|
+
"$ref": "$.operator.methods[262].outputSchema.properties.items.items.properties.attributes.additionalProperties"
|
|
73074
73148
|
}
|
|
73075
73149
|
}
|
|
73076
73150
|
]
|
|
@@ -73106,13 +73180,13 @@
|
|
|
73106
73180
|
{
|
|
73107
73181
|
"type": "object",
|
|
73108
73182
|
"additionalProperties": {
|
|
73109
|
-
"$ref": "$.operator.methods[
|
|
73183
|
+
"$ref": "$.operator.methods[262].outputSchema.properties.items.items.properties.events.items.properties.attributes.additionalProperties"
|
|
73110
73184
|
}
|
|
73111
73185
|
},
|
|
73112
73186
|
{
|
|
73113
73187
|
"type": "array",
|
|
73114
73188
|
"items": {
|
|
73115
|
-
"$ref": "$.operator.methods[
|
|
73189
|
+
"$ref": "$.operator.methods[262].outputSchema.properties.items.items.properties.events.items.properties.attributes.additionalProperties"
|
|
73116
73190
|
}
|
|
73117
73191
|
}
|
|
73118
73192
|
]
|
|
@@ -73316,13 +73390,13 @@
|
|
|
73316
73390
|
{
|
|
73317
73391
|
"type": "object",
|
|
73318
73392
|
"additionalProperties": {
|
|
73319
|
-
"$ref": "$.operator.methods[
|
|
73393
|
+
"$ref": "$.operator.methods[264].inputSchema.properties.metadata.additionalProperties"
|
|
73320
73394
|
}
|
|
73321
73395
|
},
|
|
73322
73396
|
{
|
|
73323
73397
|
"type": "array",
|
|
73324
73398
|
"items": {
|
|
73325
|
-
"$ref": "$.operator.methods[
|
|
73399
|
+
"$ref": "$.operator.methods[264].inputSchema.properties.metadata.additionalProperties"
|
|
73326
73400
|
}
|
|
73327
73401
|
}
|
|
73328
73402
|
]
|
|
@@ -73374,13 +73448,13 @@
|
|
|
73374
73448
|
{
|
|
73375
73449
|
"type": "object",
|
|
73376
73450
|
"additionalProperties": {
|
|
73377
|
-
"$ref": "$.operator.methods[
|
|
73451
|
+
"$ref": "$.operator.methods[264].outputSchema.properties.metadata.additionalProperties"
|
|
73378
73452
|
}
|
|
73379
73453
|
},
|
|
73380
73454
|
{
|
|
73381
73455
|
"type": "array",
|
|
73382
73456
|
"items": {
|
|
73383
|
-
"$ref": "$.operator.methods[
|
|
73457
|
+
"$ref": "$.operator.methods[264].outputSchema.properties.metadata.additionalProperties"
|
|
73384
73458
|
}
|
|
73385
73459
|
}
|
|
73386
73460
|
]
|
|
@@ -73474,13 +73548,13 @@
|
|
|
73474
73548
|
{
|
|
73475
73549
|
"type": "object",
|
|
73476
73550
|
"additionalProperties": {
|
|
73477
|
-
"$ref": "$.operator.methods[
|
|
73551
|
+
"$ref": "$.operator.methods[265].outputSchema.properties.providers.items.properties.metadata.additionalProperties"
|
|
73478
73552
|
}
|
|
73479
73553
|
},
|
|
73480
73554
|
{
|
|
73481
73555
|
"type": "array",
|
|
73482
73556
|
"items": {
|
|
73483
|
-
"$ref": "$.operator.methods[
|
|
73557
|
+
"$ref": "$.operator.methods[265].outputSchema.properties.providers.items.properties.metadata.additionalProperties"
|
|
73484
73558
|
}
|
|
73485
73559
|
}
|
|
73486
73560
|
]
|
|
@@ -73576,13 +73650,13 @@
|
|
|
73576
73650
|
{
|
|
73577
73651
|
"type": "object",
|
|
73578
73652
|
"additionalProperties": {
|
|
73579
|
-
"$ref": "$.operator.methods[
|
|
73653
|
+
"$ref": "$.operator.methods[266].inputSchema.properties.audio.properties.metadata.additionalProperties"
|
|
73580
73654
|
}
|
|
73581
73655
|
},
|
|
73582
73656
|
{
|
|
73583
73657
|
"type": "array",
|
|
73584
73658
|
"items": {
|
|
73585
|
-
"$ref": "$.operator.methods[
|
|
73659
|
+
"$ref": "$.operator.methods[266].inputSchema.properties.audio.properties.metadata.additionalProperties"
|
|
73586
73660
|
}
|
|
73587
73661
|
}
|
|
73588
73662
|
]
|
|
@@ -73624,13 +73698,13 @@
|
|
|
73624
73698
|
{
|
|
73625
73699
|
"type": "object",
|
|
73626
73700
|
"additionalProperties": {
|
|
73627
|
-
"$ref": "$.operator.methods[
|
|
73701
|
+
"$ref": "$.operator.methods[266].inputSchema.properties.metadata.additionalProperties"
|
|
73628
73702
|
}
|
|
73629
73703
|
},
|
|
73630
73704
|
{
|
|
73631
73705
|
"type": "array",
|
|
73632
73706
|
"items": {
|
|
73633
|
-
"$ref": "$.operator.methods[
|
|
73707
|
+
"$ref": "$.operator.methods[266].inputSchema.properties.metadata.additionalProperties"
|
|
73634
73708
|
}
|
|
73635
73709
|
}
|
|
73636
73710
|
]
|
|
@@ -73697,13 +73771,13 @@
|
|
|
73697
73771
|
{
|
|
73698
73772
|
"type": "object",
|
|
73699
73773
|
"additionalProperties": {
|
|
73700
|
-
"$ref": "$.operator.methods[
|
|
73774
|
+
"$ref": "$.operator.methods[266].outputSchema.properties.metadata.additionalProperties"
|
|
73701
73775
|
}
|
|
73702
73776
|
},
|
|
73703
73777
|
{
|
|
73704
73778
|
"type": "array",
|
|
73705
73779
|
"items": {
|
|
73706
|
-
"$ref": "$.operator.methods[
|
|
73780
|
+
"$ref": "$.operator.methods[266].outputSchema.properties.metadata.additionalProperties"
|
|
73707
73781
|
}
|
|
73708
73782
|
}
|
|
73709
73783
|
]
|
|
@@ -73777,13 +73851,13 @@
|
|
|
73777
73851
|
{
|
|
73778
73852
|
"type": "object",
|
|
73779
73853
|
"additionalProperties": {
|
|
73780
|
-
"$ref": "$.operator.methods[
|
|
73854
|
+
"$ref": "$.operator.methods[267].inputSchema.properties.metadata.additionalProperties"
|
|
73781
73855
|
}
|
|
73782
73856
|
},
|
|
73783
73857
|
{
|
|
73784
73858
|
"type": "array",
|
|
73785
73859
|
"items": {
|
|
73786
|
-
"$ref": "$.operator.methods[
|
|
73860
|
+
"$ref": "$.operator.methods[267].inputSchema.properties.metadata.additionalProperties"
|
|
73787
73861
|
}
|
|
73788
73862
|
}
|
|
73789
73863
|
]
|
|
@@ -73841,13 +73915,13 @@
|
|
|
73841
73915
|
{
|
|
73842
73916
|
"type": "object",
|
|
73843
73917
|
"additionalProperties": {
|
|
73844
|
-
"$ref": "$.operator.methods[
|
|
73918
|
+
"$ref": "$.operator.methods[267].outputSchema.properties.audio.properties.metadata.additionalProperties"
|
|
73845
73919
|
}
|
|
73846
73920
|
},
|
|
73847
73921
|
{
|
|
73848
73922
|
"type": "array",
|
|
73849
73923
|
"items": {
|
|
73850
|
-
"$ref": "$.operator.methods[
|
|
73924
|
+
"$ref": "$.operator.methods[267].outputSchema.properties.audio.properties.metadata.additionalProperties"
|
|
73851
73925
|
}
|
|
73852
73926
|
}
|
|
73853
73927
|
]
|
|
@@ -73880,13 +73954,13 @@
|
|
|
73880
73954
|
{
|
|
73881
73955
|
"type": "object",
|
|
73882
73956
|
"additionalProperties": {
|
|
73883
|
-
"$ref": "$.operator.methods[
|
|
73957
|
+
"$ref": "$.operator.methods[267].outputSchema.properties.metadata.additionalProperties"
|
|
73884
73958
|
}
|
|
73885
73959
|
},
|
|
73886
73960
|
{
|
|
73887
73961
|
"type": "array",
|
|
73888
73962
|
"items": {
|
|
73889
|
-
"$ref": "$.operator.methods[
|
|
73963
|
+
"$ref": "$.operator.methods[267].outputSchema.properties.metadata.additionalProperties"
|
|
73890
73964
|
}
|
|
73891
73965
|
}
|
|
73892
73966
|
]
|
|
@@ -73959,13 +74033,13 @@
|
|
|
73959
74033
|
{
|
|
73960
74034
|
"type": "object",
|
|
73961
74035
|
"additionalProperties": {
|
|
73962
|
-
"$ref": "$.operator.methods[
|
|
74036
|
+
"$ref": "$.operator.methods[268].inputSchema.properties.metadata.additionalProperties"
|
|
73963
74037
|
}
|
|
73964
74038
|
},
|
|
73965
74039
|
{
|
|
73966
74040
|
"type": "array",
|
|
73967
74041
|
"items": {
|
|
73968
|
-
"$ref": "$.operator.methods[
|
|
74042
|
+
"$ref": "$.operator.methods[268].inputSchema.properties.metadata.additionalProperties"
|
|
73969
74043
|
}
|
|
73970
74044
|
}
|
|
73971
74045
|
]
|
|
@@ -74068,13 +74142,13 @@
|
|
|
74068
74142
|
{
|
|
74069
74143
|
"type": "object",
|
|
74070
74144
|
"additionalProperties": {
|
|
74071
|
-
"$ref": "$.operator.methods[
|
|
74145
|
+
"$ref": "$.operator.methods[269].outputSchema.properties.voices.items.properties.metadata.additionalProperties"
|
|
74072
74146
|
}
|
|
74073
74147
|
},
|
|
74074
74148
|
{
|
|
74075
74149
|
"type": "array",
|
|
74076
74150
|
"items": {
|
|
74077
|
-
"$ref": "$.operator.methods[
|
|
74151
|
+
"$ref": "$.operator.methods[269].outputSchema.properties.voices.items.properties.metadata.additionalProperties"
|
|
74078
74152
|
}
|
|
74079
74153
|
}
|
|
74080
74154
|
]
|
|
@@ -74158,13 +74232,13 @@
|
|
|
74158
74232
|
{
|
|
74159
74233
|
"type": "object",
|
|
74160
74234
|
"additionalProperties": {
|
|
74161
|
-
"$ref": "$.operator.methods[
|
|
74235
|
+
"$ref": "$.operator.methods[270].inputSchema.properties.metadata.additionalProperties"
|
|
74162
74236
|
}
|
|
74163
74237
|
},
|
|
74164
74238
|
{
|
|
74165
74239
|
"type": "array",
|
|
74166
74240
|
"items": {
|
|
74167
|
-
"$ref": "$.operator.methods[
|
|
74241
|
+
"$ref": "$.operator.methods[270].inputSchema.properties.metadata.additionalProperties"
|
|
74168
74242
|
}
|
|
74169
74243
|
}
|
|
74170
74244
|
]
|
|
@@ -74255,13 +74329,13 @@
|
|
|
74255
74329
|
{
|
|
74256
74330
|
"type": "object",
|
|
74257
74331
|
"additionalProperties": {
|
|
74258
|
-
"$ref": "$.operator.methods[
|
|
74332
|
+
"$ref": "$.operator.methods[270].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
74259
74333
|
}
|
|
74260
74334
|
},
|
|
74261
74335
|
{
|
|
74262
74336
|
"type": "array",
|
|
74263
74337
|
"items": {
|
|
74264
|
-
"$ref": "$.operator.methods[
|
|
74338
|
+
"$ref": "$.operator.methods[270].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
74265
74339
|
}
|
|
74266
74340
|
}
|
|
74267
74341
|
]
|
|
@@ -74319,13 +74393,13 @@
|
|
|
74319
74393
|
{
|
|
74320
74394
|
"type": "object",
|
|
74321
74395
|
"additionalProperties": {
|
|
74322
|
-
"$ref": "$.operator.methods[
|
|
74396
|
+
"$ref": "$.operator.methods[270].outputSchema.properties.metadata.additionalProperties"
|
|
74323
74397
|
}
|
|
74324
74398
|
},
|
|
74325
74399
|
{
|
|
74326
74400
|
"type": "array",
|
|
74327
74401
|
"items": {
|
|
74328
|
-
"$ref": "$.operator.methods[
|
|
74402
|
+
"$ref": "$.operator.methods[270].outputSchema.properties.metadata.additionalProperties"
|
|
74329
74403
|
}
|
|
74330
74404
|
}
|
|
74331
74405
|
]
|
|
@@ -74481,13 +74555,13 @@
|
|
|
74481
74555
|
{
|
|
74482
74556
|
"type": "object",
|
|
74483
74557
|
"additionalProperties": {
|
|
74484
|
-
"$ref": "$.operator.methods[
|
|
74558
|
+
"$ref": "$.operator.methods[272].outputSchema.properties.watchers.items.properties.source.properties.metadata.additionalProperties"
|
|
74485
74559
|
}
|
|
74486
74560
|
},
|
|
74487
74561
|
{
|
|
74488
74562
|
"type": "array",
|
|
74489
74563
|
"items": {
|
|
74490
|
-
"$ref": "$.operator.methods[
|
|
74564
|
+
"$ref": "$.operator.methods[272].outputSchema.properties.watchers.items.properties.source.properties.metadata.additionalProperties"
|
|
74491
74565
|
}
|
|
74492
74566
|
}
|
|
74493
74567
|
]
|
|
@@ -74545,13 +74619,13 @@
|
|
|
74545
74619
|
{
|
|
74546
74620
|
"type": "object",
|
|
74547
74621
|
"additionalProperties": {
|
|
74548
|
-
"$ref": "$.operator.methods[
|
|
74622
|
+
"$ref": "$.operator.methods[272].outputSchema.properties.watchers.items.properties.metadata.additionalProperties"
|
|
74549
74623
|
}
|
|
74550
74624
|
},
|
|
74551
74625
|
{
|
|
74552
74626
|
"type": "array",
|
|
74553
74627
|
"items": {
|
|
74554
|
-
"$ref": "$.operator.methods[
|
|
74628
|
+
"$ref": "$.operator.methods[272].outputSchema.properties.watchers.items.properties.metadata.additionalProperties"
|
|
74555
74629
|
}
|
|
74556
74630
|
}
|
|
74557
74631
|
]
|
|
@@ -74641,13 +74715,13 @@
|
|
|
74641
74715
|
{
|
|
74642
74716
|
"type": "object",
|
|
74643
74717
|
"additionalProperties": {
|
|
74644
|
-
"$ref": "$.operator.methods[
|
|
74718
|
+
"$ref": "$.operator.methods[273].inputSchema.properties.metadata.additionalProperties"
|
|
74645
74719
|
}
|
|
74646
74720
|
},
|
|
74647
74721
|
{
|
|
74648
74722
|
"type": "array",
|
|
74649
74723
|
"items": {
|
|
74650
|
-
"$ref": "$.operator.methods[
|
|
74724
|
+
"$ref": "$.operator.methods[273].inputSchema.properties.metadata.additionalProperties"
|
|
74651
74725
|
}
|
|
74652
74726
|
}
|
|
74653
74727
|
]
|
|
@@ -74735,13 +74809,13 @@
|
|
|
74735
74809
|
{
|
|
74736
74810
|
"type": "object",
|
|
74737
74811
|
"additionalProperties": {
|
|
74738
|
-
"$ref": "$.operator.methods[
|
|
74812
|
+
"$ref": "$.operator.methods[273].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
74739
74813
|
}
|
|
74740
74814
|
},
|
|
74741
74815
|
{
|
|
74742
74816
|
"type": "array",
|
|
74743
74817
|
"items": {
|
|
74744
|
-
"$ref": "$.operator.methods[
|
|
74818
|
+
"$ref": "$.operator.methods[273].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
74745
74819
|
}
|
|
74746
74820
|
}
|
|
74747
74821
|
]
|
|
@@ -74799,13 +74873,13 @@
|
|
|
74799
74873
|
{
|
|
74800
74874
|
"type": "object",
|
|
74801
74875
|
"additionalProperties": {
|
|
74802
|
-
"$ref": "$.operator.methods[
|
|
74876
|
+
"$ref": "$.operator.methods[273].outputSchema.properties.metadata.additionalProperties"
|
|
74803
74877
|
}
|
|
74804
74878
|
},
|
|
74805
74879
|
{
|
|
74806
74880
|
"type": "array",
|
|
74807
74881
|
"items": {
|
|
74808
|
-
"$ref": "$.operator.methods[
|
|
74882
|
+
"$ref": "$.operator.methods[273].outputSchema.properties.metadata.additionalProperties"
|
|
74809
74883
|
}
|
|
74810
74884
|
}
|
|
74811
74885
|
]
|
|
@@ -74912,13 +74986,13 @@
|
|
|
74912
74986
|
{
|
|
74913
74987
|
"type": "object",
|
|
74914
74988
|
"additionalProperties": {
|
|
74915
|
-
"$ref": "$.operator.methods[
|
|
74989
|
+
"$ref": "$.operator.methods[274].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
74916
74990
|
}
|
|
74917
74991
|
},
|
|
74918
74992
|
{
|
|
74919
74993
|
"type": "array",
|
|
74920
74994
|
"items": {
|
|
74921
|
-
"$ref": "$.operator.methods[
|
|
74995
|
+
"$ref": "$.operator.methods[274].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
74922
74996
|
}
|
|
74923
74997
|
}
|
|
74924
74998
|
]
|
|
@@ -74976,13 +75050,13 @@
|
|
|
74976
75050
|
{
|
|
74977
75051
|
"type": "object",
|
|
74978
75052
|
"additionalProperties": {
|
|
74979
|
-
"$ref": "$.operator.methods[
|
|
75053
|
+
"$ref": "$.operator.methods[274].outputSchema.properties.metadata.additionalProperties"
|
|
74980
75054
|
}
|
|
74981
75055
|
},
|
|
74982
75056
|
{
|
|
74983
75057
|
"type": "array",
|
|
74984
75058
|
"items": {
|
|
74985
|
-
"$ref": "$.operator.methods[
|
|
75059
|
+
"$ref": "$.operator.methods[274].outputSchema.properties.metadata.additionalProperties"
|
|
74986
75060
|
}
|
|
74987
75061
|
}
|
|
74988
75062
|
]
|
|
@@ -75089,13 +75163,13 @@
|
|
|
75089
75163
|
{
|
|
75090
75164
|
"type": "object",
|
|
75091
75165
|
"additionalProperties": {
|
|
75092
|
-
"$ref": "$.operator.methods[
|
|
75166
|
+
"$ref": "$.operator.methods[275].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
75093
75167
|
}
|
|
75094
75168
|
},
|
|
75095
75169
|
{
|
|
75096
75170
|
"type": "array",
|
|
75097
75171
|
"items": {
|
|
75098
|
-
"$ref": "$.operator.methods[
|
|
75172
|
+
"$ref": "$.operator.methods[275].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
75099
75173
|
}
|
|
75100
75174
|
}
|
|
75101
75175
|
]
|
|
@@ -75153,13 +75227,13 @@
|
|
|
75153
75227
|
{
|
|
75154
75228
|
"type": "object",
|
|
75155
75229
|
"additionalProperties": {
|
|
75156
|
-
"$ref": "$.operator.methods[
|
|
75230
|
+
"$ref": "$.operator.methods[275].outputSchema.properties.metadata.additionalProperties"
|
|
75157
75231
|
}
|
|
75158
75232
|
},
|
|
75159
75233
|
{
|
|
75160
75234
|
"type": "array",
|
|
75161
75235
|
"items": {
|
|
75162
|
-
"$ref": "$.operator.methods[
|
|
75236
|
+
"$ref": "$.operator.methods[275].outputSchema.properties.metadata.additionalProperties"
|
|
75163
75237
|
}
|
|
75164
75238
|
}
|
|
75165
75239
|
]
|
|
@@ -75266,13 +75340,13 @@
|
|
|
75266
75340
|
{
|
|
75267
75341
|
"type": "object",
|
|
75268
75342
|
"additionalProperties": {
|
|
75269
|
-
"$ref": "$.operator.methods[
|
|
75343
|
+
"$ref": "$.operator.methods[276].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
75270
75344
|
}
|
|
75271
75345
|
},
|
|
75272
75346
|
{
|
|
75273
75347
|
"type": "array",
|
|
75274
75348
|
"items": {
|
|
75275
|
-
"$ref": "$.operator.methods[
|
|
75349
|
+
"$ref": "$.operator.methods[276].outputSchema.properties.source.properties.metadata.additionalProperties"
|
|
75276
75350
|
}
|
|
75277
75351
|
}
|
|
75278
75352
|
]
|
|
@@ -75330,13 +75404,13 @@
|
|
|
75330
75404
|
{
|
|
75331
75405
|
"type": "object",
|
|
75332
75406
|
"additionalProperties": {
|
|
75333
|
-
"$ref": "$.operator.methods[
|
|
75407
|
+
"$ref": "$.operator.methods[276].outputSchema.properties.metadata.additionalProperties"
|
|
75334
75408
|
}
|
|
75335
75409
|
},
|
|
75336
75410
|
{
|
|
75337
75411
|
"type": "array",
|
|
75338
75412
|
"items": {
|
|
75339
|
-
"$ref": "$.operator.methods[
|
|
75413
|
+
"$ref": "$.operator.methods[276].outputSchema.properties.metadata.additionalProperties"
|
|
75340
75414
|
}
|
|
75341
75415
|
}
|
|
75342
75416
|
]
|
|
@@ -75549,13 +75623,13 @@
|
|
|
75549
75623
|
{
|
|
75550
75624
|
"type": "object",
|
|
75551
75625
|
"additionalProperties": {
|
|
75552
|
-
"$ref": "$.operator.methods[
|
|
75626
|
+
"$ref": "$.operator.methods[278].outputSchema.properties.results.items.properties.metadata.additionalProperties"
|
|
75553
75627
|
}
|
|
75554
75628
|
},
|
|
75555
75629
|
{
|
|
75556
75630
|
"type": "array",
|
|
75557
75631
|
"items": {
|
|
75558
|
-
"$ref": "$.operator.methods[
|
|
75632
|
+
"$ref": "$.operator.methods[278].outputSchema.properties.results.items.properties.metadata.additionalProperties"
|
|
75559
75633
|
}
|
|
75560
75634
|
}
|
|
75561
75635
|
]
|
|
@@ -75606,13 +75680,13 @@
|
|
|
75606
75680
|
{
|
|
75607
75681
|
"type": "object",
|
|
75608
75682
|
"additionalProperties": {
|
|
75609
|
-
"$ref": "$.operator.methods[
|
|
75683
|
+
"$ref": "$.operator.methods[278].outputSchema.properties.results.items.properties.evidence.items.properties.metadata.additionalProperties"
|
|
75610
75684
|
}
|
|
75611
75685
|
},
|
|
75612
75686
|
{
|
|
75613
75687
|
"type": "array",
|
|
75614
75688
|
"items": {
|
|
75615
|
-
"$ref": "$.operator.methods[
|
|
75689
|
+
"$ref": "$.operator.methods[278].outputSchema.properties.results.items.properties.evidence.items.properties.metadata.additionalProperties"
|
|
75616
75690
|
}
|
|
75617
75691
|
}
|
|
75618
75692
|
]
|
|
@@ -75702,13 +75776,13 @@
|
|
|
75702
75776
|
{
|
|
75703
75777
|
"type": "object",
|
|
75704
75778
|
"additionalProperties": {
|
|
75705
|
-
"$ref": "$.operator.methods[
|
|
75779
|
+
"$ref": "$.operator.methods[278].outputSchema.properties.instantAnswer.properties.metadata.additionalProperties"
|
|
75706
75780
|
}
|
|
75707
75781
|
},
|
|
75708
75782
|
{
|
|
75709
75783
|
"type": "array",
|
|
75710
75784
|
"items": {
|
|
75711
|
-
"$ref": "$.operator.methods[
|
|
75785
|
+
"$ref": "$.operator.methods[278].outputSchema.properties.instantAnswer.properties.metadata.additionalProperties"
|
|
75712
75786
|
}
|
|
75713
75787
|
}
|
|
75714
75788
|
]
|
|
@@ -75741,13 +75815,13 @@
|
|
|
75741
75815
|
{
|
|
75742
75816
|
"type": "object",
|
|
75743
75817
|
"additionalProperties": {
|
|
75744
|
-
"$ref": "$.operator.methods[
|
|
75818
|
+
"$ref": "$.operator.methods[278].outputSchema.properties.metadata.additionalProperties"
|
|
75745
75819
|
}
|
|
75746
75820
|
},
|
|
75747
75821
|
{
|
|
75748
75822
|
"type": "array",
|
|
75749
75823
|
"items": {
|
|
75750
|
-
"$ref": "$.operator.methods[
|
|
75824
|
+
"$ref": "$.operator.methods[278].outputSchema.properties.metadata.additionalProperties"
|
|
75751
75825
|
}
|
|
75752
75826
|
}
|
|
75753
75827
|
]
|
|
@@ -77467,10 +77541,10 @@
|
|
|
77467
77541
|
}
|
|
77468
77542
|
],
|
|
77469
77543
|
"schemaCoverage": {
|
|
77470
|
-
"methods":
|
|
77471
|
-
"typedInputs":
|
|
77544
|
+
"methods": 280,
|
|
77545
|
+
"typedInputs": 280,
|
|
77472
77546
|
"genericInputs": 0,
|
|
77473
|
-
"typedOutputs":
|
|
77547
|
+
"typedOutputs": 280,
|
|
77474
77548
|
"genericOutputs": 0
|
|
77475
77549
|
},
|
|
77476
77550
|
"eventCoverage": {
|