harness-mcp-v2 3.0.2 → 3.0.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/README.md +78 -14
- package/build/config.d.ts +18 -6
- package/build/config.d.ts.map +1 -1
- package/build/config.js +22 -5
- package/build/config.js.map +1 -1
- package/build/data/schemas/v0/pipeline.d.ts.map +1 -1
- package/build/data/schemas/v0/pipeline.js +159 -66
- package/build/data/schemas/v0/pipeline.js.map +1 -1
- package/build/data/schemas/v0/template.d.ts.map +1 -1
- package/build/data/schemas/v0/template.js +159 -66
- package/build/data/schemas/v0/template.js.map +1 -1
- package/build/index.js +30 -11
- package/build/index.js.map +1 -1
- package/build/prompts/bulk-exemption-create.d.ts +3 -0
- package/build/prompts/bulk-exemption-create.d.ts.map +1 -0
- package/build/prompts/bulk-exemption-create.js +132 -0
- package/build/prompts/bulk-exemption-create.js.map +1 -0
- package/build/prompts/index.d.ts.map +1 -1
- package/build/prompts/index.js +2 -0
- package/build/prompts/index.js.map +1 -1
- package/build/registry/toolsets/repositories.d.ts.map +1 -1
- package/build/registry/toolsets/repositories.js +23 -1
- package/build/registry/toolsets/repositories.js.map +1 -1
- package/build/registry/toolsets/sto.d.ts.map +1 -1
- package/build/registry/toolsets/sto.js +55 -0
- package/build/registry/toolsets/sto.js.map +1 -1
- package/build/registry/toolsets/templates.d.ts.map +1 -1
- package/build/registry/toolsets/templates.js +11 -77
- package/build/registry/toolsets/templates.js.map +1 -1
- package/build/tools/harness-execute.d.ts.map +1 -1
- package/build/tools/harness-execute.js +132 -14
- package/build/tools/harness-execute.js.map +1 -1
- package/build/utils/http-auth.d.ts +10 -0
- package/build/utils/http-auth.d.ts.map +1 -0
- package/build/utils/http-auth.js +51 -0
- package/build/utils/http-auth.js.map +1 -0
- package/build/utils/log-resolver.d.ts.map +1 -1
- package/build/utils/log-resolver.js +41 -11
- package/build/utils/log-resolver.js.map +1 -1
- package/build/utils/poll-execution.d.ts +76 -0
- package/build/utils/poll-execution.d.ts.map +1 -0
- package/build/utils/poll-execution.js +187 -0
- package/build/utils/poll-execution.js.map +1 -0
- package/build/utils/session-headers.d.ts +11 -0
- package/build/utils/session-headers.d.ts.map +1 -1
- package/build/utils/session-headers.js +65 -2
- package/build/utils/session-headers.js.map +1 -1
- package/package.json +1 -1
|
@@ -43862,6 +43862,9 @@ const schema = {
|
|
|
43862
43862
|
},
|
|
43863
43863
|
{
|
|
43864
43864
|
"type": "object",
|
|
43865
|
+
"required": [
|
|
43866
|
+
"apiKey"
|
|
43867
|
+
],
|
|
43865
43868
|
"properties": {
|
|
43866
43869
|
"evalId": {
|
|
43867
43870
|
"description": "Eval identifier to run (creates a new run automatically)",
|
|
@@ -43962,39 +43965,6 @@ const schema = {
|
|
|
43962
43965
|
"$ref": "#/definitions/pipeline/steps/common/common-jexl"
|
|
43963
43966
|
}
|
|
43964
43967
|
]
|
|
43965
|
-
},
|
|
43966
|
-
"otlpEnabled": {
|
|
43967
|
-
"description": "Enable exporting eval scores to an OTLP endpoint",
|
|
43968
|
-
"oneOf": [
|
|
43969
|
-
{
|
|
43970
|
-
"type": "boolean"
|
|
43971
|
-
},
|
|
43972
|
-
{
|
|
43973
|
-
"$ref": "#/definitions/pipeline/steps/common/common-jexl"
|
|
43974
|
-
}
|
|
43975
|
-
]
|
|
43976
|
-
},
|
|
43977
|
-
"otlpEndpoint": {
|
|
43978
|
-
"description": "OTLP collector base URL",
|
|
43979
|
-
"oneOf": [
|
|
43980
|
-
{
|
|
43981
|
-
"$ref": "#/definitions/pipeline/steps/common/string-without-jexl"
|
|
43982
|
-
},
|
|
43983
|
-
{
|
|
43984
|
-
"$ref": "#/definitions/pipeline/steps/common/common-jexl"
|
|
43985
|
-
}
|
|
43986
|
-
]
|
|
43987
|
-
},
|
|
43988
|
-
"otlpApiKey": {
|
|
43989
|
-
"description": "OTLP API key secret reference",
|
|
43990
|
-
"oneOf": [
|
|
43991
|
-
{
|
|
43992
|
-
"$ref": "#/definitions/pipeline/steps/common/string-without-jexl"
|
|
43993
|
-
},
|
|
43994
|
-
{
|
|
43995
|
-
"$ref": "#/definitions/pipeline/steps/common/common-jexl"
|
|
43996
|
-
}
|
|
43997
|
-
]
|
|
43998
43968
|
}
|
|
43999
43969
|
}
|
|
44000
43970
|
}
|
|
@@ -44102,39 +44072,6 @@ const schema = {
|
|
|
44102
44072
|
}
|
|
44103
44073
|
]
|
|
44104
44074
|
},
|
|
44105
|
-
"otlpEnabled": {
|
|
44106
|
-
"description": "Enable exporting eval scores to an OTLP endpoint",
|
|
44107
|
-
"oneOf": [
|
|
44108
|
-
{
|
|
44109
|
-
"type": "boolean"
|
|
44110
|
-
},
|
|
44111
|
-
{
|
|
44112
|
-
"$ref": "#/definitions/pipeline/steps/common/common-jexl"
|
|
44113
|
-
}
|
|
44114
|
-
]
|
|
44115
|
-
},
|
|
44116
|
-
"otlpEndpoint": {
|
|
44117
|
-
"description": "OTLP collector base URL",
|
|
44118
|
-
"oneOf": [
|
|
44119
|
-
{
|
|
44120
|
-
"$ref": "#/definitions/pipeline/steps/common/string-without-jexl"
|
|
44121
|
-
},
|
|
44122
|
-
{
|
|
44123
|
-
"$ref": "#/definitions/pipeline/steps/common/common-jexl"
|
|
44124
|
-
}
|
|
44125
|
-
]
|
|
44126
|
-
},
|
|
44127
|
-
"otlpApiKey": {
|
|
44128
|
-
"description": "OTLP API key secret reference",
|
|
44129
|
-
"oneOf": [
|
|
44130
|
-
{
|
|
44131
|
-
"$ref": "#/definitions/pipeline/steps/common/string-without-jexl"
|
|
44132
|
-
},
|
|
44133
|
-
{
|
|
44134
|
-
"$ref": "#/definitions/pipeline/steps/common/common-jexl"
|
|
44135
|
-
}
|
|
44136
|
-
]
|
|
44137
|
-
},
|
|
44138
44075
|
"description": {
|
|
44139
44076
|
"desc": "This is the description for AiEvalsRunStepInfo"
|
|
44140
44077
|
}
|
|
@@ -44485,6 +44422,39 @@ const schema = {
|
|
|
44485
44422
|
"configOverride": {
|
|
44486
44423
|
"type": "string",
|
|
44487
44424
|
"description": "Configuration override as JSON string"
|
|
44425
|
+
},
|
|
44426
|
+
"variables": {
|
|
44427
|
+
"type": "array",
|
|
44428
|
+
"description": "Per-execution variable overrides (variable_scope='build_run', highest precedence)",
|
|
44429
|
+
"items": {
|
|
44430
|
+
"type": "object",
|
|
44431
|
+
"required": [
|
|
44432
|
+
"key",
|
|
44433
|
+
"valueType"
|
|
44434
|
+
],
|
|
44435
|
+
"properties": {
|
|
44436
|
+
"id": {
|
|
44437
|
+
"type": "string",
|
|
44438
|
+
"description": "Variable identifier (carried back from the alias defaults)"
|
|
44439
|
+
},
|
|
44440
|
+
"key": {
|
|
44441
|
+
"type": "string",
|
|
44442
|
+
"description": "Variable key"
|
|
44443
|
+
},
|
|
44444
|
+
"value": {
|
|
44445
|
+
"type": "string",
|
|
44446
|
+
"description": "Variable value (literal string for string, secret reference for secret)"
|
|
44447
|
+
},
|
|
44448
|
+
"valueType": {
|
|
44449
|
+
"type": "string",
|
|
44450
|
+
"enum": [
|
|
44451
|
+
"string",
|
|
44452
|
+
"secret"
|
|
44453
|
+
],
|
|
44454
|
+
"description": "Variable value type"
|
|
44455
|
+
}
|
|
44456
|
+
}
|
|
44457
|
+
}
|
|
44488
44458
|
}
|
|
44489
44459
|
}
|
|
44490
44460
|
}
|
|
@@ -44531,6 +44501,39 @@ const schema = {
|
|
|
44531
44501
|
"type": "string",
|
|
44532
44502
|
"description": "Configuration override as JSON string"
|
|
44533
44503
|
},
|
|
44504
|
+
"variables": {
|
|
44505
|
+
"type": "array",
|
|
44506
|
+
"description": "Per-execution variable overrides (variable_scope='build_run', highest precedence)",
|
|
44507
|
+
"items": {
|
|
44508
|
+
"type": "object",
|
|
44509
|
+
"required": [
|
|
44510
|
+
"key",
|
|
44511
|
+
"valueType"
|
|
44512
|
+
],
|
|
44513
|
+
"properties": {
|
|
44514
|
+
"id": {
|
|
44515
|
+
"type": "string",
|
|
44516
|
+
"description": "Variable identifier (carried back from the alias defaults)"
|
|
44517
|
+
},
|
|
44518
|
+
"key": {
|
|
44519
|
+
"type": "string",
|
|
44520
|
+
"description": "Variable key"
|
|
44521
|
+
},
|
|
44522
|
+
"value": {
|
|
44523
|
+
"type": "string",
|
|
44524
|
+
"description": "Variable value (literal string for string, secret reference for secret)"
|
|
44525
|
+
},
|
|
44526
|
+
"valueType": {
|
|
44527
|
+
"type": "string",
|
|
44528
|
+
"enum": [
|
|
44529
|
+
"string",
|
|
44530
|
+
"secret"
|
|
44531
|
+
],
|
|
44532
|
+
"description": "Variable value type"
|
|
44533
|
+
}
|
|
44534
|
+
}
|
|
44535
|
+
}
|
|
44536
|
+
},
|
|
44534
44537
|
"description": {
|
|
44535
44538
|
"desc": "This is the description for AiTestAutomationStepInfo"
|
|
44536
44539
|
}
|
|
@@ -78196,6 +78199,18 @@ const schema = {
|
|
|
78196
78199
|
"minLength": 1
|
|
78197
78200
|
}
|
|
78198
78201
|
]
|
|
78202
|
+
},
|
|
78203
|
+
"skipApplicationScaling": {
|
|
78204
|
+
"oneOf": [
|
|
78205
|
+
{
|
|
78206
|
+
"type": "boolean"
|
|
78207
|
+
},
|
|
78208
|
+
{
|
|
78209
|
+
"type": "string",
|
|
78210
|
+
"pattern": "(<\\+.+>.*)",
|
|
78211
|
+
"minLength": 1
|
|
78212
|
+
}
|
|
78213
|
+
]
|
|
78199
78214
|
}
|
|
78200
78215
|
}
|
|
78201
78216
|
}
|
|
@@ -78242,6 +78257,18 @@ const schema = {
|
|
|
78242
78257
|
}
|
|
78243
78258
|
]
|
|
78244
78259
|
},
|
|
78260
|
+
"skipApplicationScaling": {
|
|
78261
|
+
"oneOf": [
|
|
78262
|
+
{
|
|
78263
|
+
"type": "boolean"
|
|
78264
|
+
},
|
|
78265
|
+
{
|
|
78266
|
+
"type": "string",
|
|
78267
|
+
"pattern": "(<\\+.+>.*)",
|
|
78268
|
+
"minLength": 1
|
|
78269
|
+
}
|
|
78270
|
+
]
|
|
78271
|
+
},
|
|
78245
78272
|
"description": {
|
|
78246
78273
|
"desc": "This is the description for EcsRollingDeployStepInfo"
|
|
78247
78274
|
}
|
|
@@ -80405,6 +80432,39 @@ const schema = {
|
|
|
80405
80432
|
"configOverride": {
|
|
80406
80433
|
"type": "string",
|
|
80407
80434
|
"description": "Configuration override as JSON string"
|
|
80435
|
+
},
|
|
80436
|
+
"variables": {
|
|
80437
|
+
"type": "array",
|
|
80438
|
+
"description": "Per-execution variable overrides (variable_scope='build_run', highest precedence)",
|
|
80439
|
+
"items": {
|
|
80440
|
+
"type": "object",
|
|
80441
|
+
"required": [
|
|
80442
|
+
"key",
|
|
80443
|
+
"valueType"
|
|
80444
|
+
],
|
|
80445
|
+
"properties": {
|
|
80446
|
+
"id": {
|
|
80447
|
+
"type": "string",
|
|
80448
|
+
"description": "Variable identifier (carried back from the alias defaults)"
|
|
80449
|
+
},
|
|
80450
|
+
"key": {
|
|
80451
|
+
"type": "string",
|
|
80452
|
+
"description": "Variable key"
|
|
80453
|
+
},
|
|
80454
|
+
"value": {
|
|
80455
|
+
"type": "string",
|
|
80456
|
+
"description": "Variable value (literal string for string, secret reference for secret)"
|
|
80457
|
+
},
|
|
80458
|
+
"valueType": {
|
|
80459
|
+
"type": "string",
|
|
80460
|
+
"enum": [
|
|
80461
|
+
"string",
|
|
80462
|
+
"secret"
|
|
80463
|
+
],
|
|
80464
|
+
"description": "Variable value type"
|
|
80465
|
+
}
|
|
80466
|
+
}
|
|
80467
|
+
}
|
|
80408
80468
|
}
|
|
80409
80469
|
}
|
|
80410
80470
|
}
|
|
@@ -80450,6 +80510,39 @@ const schema = {
|
|
|
80450
80510
|
"configOverride": {
|
|
80451
80511
|
"type": "string",
|
|
80452
80512
|
"description": "Configuration override as JSON string"
|
|
80513
|
+
},
|
|
80514
|
+
"variables": {
|
|
80515
|
+
"type": "array",
|
|
80516
|
+
"description": "Per-execution variable overrides (variable_scope='build_run', highest precedence)",
|
|
80517
|
+
"items": {
|
|
80518
|
+
"type": "object",
|
|
80519
|
+
"required": [
|
|
80520
|
+
"key",
|
|
80521
|
+
"valueType"
|
|
80522
|
+
],
|
|
80523
|
+
"properties": {
|
|
80524
|
+
"id": {
|
|
80525
|
+
"type": "string",
|
|
80526
|
+
"description": "Variable identifier (carried back from the alias defaults)"
|
|
80527
|
+
},
|
|
80528
|
+
"key": {
|
|
80529
|
+
"type": "string",
|
|
80530
|
+
"description": "Variable key"
|
|
80531
|
+
},
|
|
80532
|
+
"value": {
|
|
80533
|
+
"type": "string",
|
|
80534
|
+
"description": "Variable value (literal string for string, secret reference for secret)"
|
|
80535
|
+
},
|
|
80536
|
+
"valueType": {
|
|
80537
|
+
"type": "string",
|
|
80538
|
+
"enum": [
|
|
80539
|
+
"string",
|
|
80540
|
+
"secret"
|
|
80541
|
+
],
|
|
80542
|
+
"description": "Variable value type"
|
|
80543
|
+
}
|
|
80544
|
+
}
|
|
80545
|
+
}
|
|
80453
80546
|
}
|
|
80454
80547
|
}
|
|
80455
80548
|
},
|