@corva/ui 3.62.0-4 → 3.62.0-5
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/cjs-bundle/components/DevCenter/DevCenterAppContainer/DevCenterAppContainer.js +1 -1
- package/cjs-bundle/components/DevCenter/DevCenterAppContainer/DevCenterAppContainer.js.map +1 -1
- package/cjs-bundle/components/DevCenter/DevCenterAppContainer/components/AppSettingsDialog/AppSettingsDialog.js +1 -1
- package/cjs-bundle/components/DevCenter/DevCenterAppContainer/components/AppSettingsDialog/AppSettingsDialog.js.map +1 -1
- package/components/DevCenter/DevCenterAppContainer/DevCenterAppContainer.d.ts +2 -1
- package/components/DevCenter/DevCenterAppContainer/DevCenterAppContainer.d.ts.map +1 -1
- package/components/DevCenter/DevCenterAppContainer/DevCenterAppContainer.js +1 -1
- package/components/DevCenter/DevCenterAppContainer/DevCenterAppContainer.js.map +1 -1
- package/components/DevCenter/DevCenterAppContainer/components/AppSettingsDialog/AppSettingsDialog.d.ts +4 -1
- package/components/DevCenter/DevCenterAppContainer/components/AppSettingsDialog/AppSettingsDialog.d.ts.map +1 -1
- package/components/DevCenter/DevCenterAppContainer/components/AppSettingsDialog/AppSettingsDialog.js +1 -1
- package/components/DevCenter/DevCenterAppContainer/components/AppSettingsDialog/AppSettingsDialog.js.map +1 -1
- package/mcp-server/server.mjs +306 -2
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
package/mcp-server/server.mjs
CHANGED
|
@@ -230,7 +230,7 @@ const validateDsn = (dsn) => {
|
|
|
230
230
|
|
|
231
231
|
const MCP_SERVER_VERSION = '1.2.0';
|
|
232
232
|
|
|
233
|
-
var version = "3.62.0-
|
|
233
|
+
var version = "3.62.0-5";
|
|
234
234
|
|
|
235
235
|
const CORVA_UI_VERSION = version;
|
|
236
236
|
|
|
@@ -19340,6 +19340,8 @@ var clientsData = [
|
|
|
19340
19340
|
"acknowledge",
|
|
19341
19341
|
"classify",
|
|
19342
19342
|
"transition",
|
|
19343
|
+
"escalate",
|
|
19344
|
+
"deescalate",
|
|
19343
19345
|
"totals",
|
|
19344
19346
|
"details",
|
|
19345
19347
|
"alertworkflows",
|
|
@@ -19626,6 +19628,7 @@ var clientsData = [
|
|
|
19626
19628
|
"column_fields_list",
|
|
19627
19629
|
"flat",
|
|
19628
19630
|
"activity_code_mappings",
|
|
19631
|
+
"metrics_definitions",
|
|
19629
19632
|
"countries",
|
|
19630
19633
|
"country_list",
|
|
19631
19634
|
"revoltchat",
|
|
@@ -21648,6 +21651,20 @@ var clientsData = [
|
|
|
21648
21651
|
required: false,
|
|
21649
21652
|
description: "Levels could be a string or a comma-delimited list of strings"
|
|
21650
21653
|
},
|
|
21654
|
+
{
|
|
21655
|
+
name: "sort",
|
|
21656
|
+
"in": "query",
|
|
21657
|
+
type: "string",
|
|
21658
|
+
required: false,
|
|
21659
|
+
description: "Column to sort by, one of [alert_at, last_alert_at, created_at, status, status_changed_at, level, occurrences, acknowledged, validated, alert_classification, name]. Unrecognized values fall back to the default sort (alert_at descending)."
|
|
21660
|
+
},
|
|
21661
|
+
{
|
|
21662
|
+
name: "order",
|
|
21663
|
+
"in": "query",
|
|
21664
|
+
type: "string",
|
|
21665
|
+
required: false,
|
|
21666
|
+
description: "Sort direction, asc or desc. Applies only when sort is provided and defaults to asc; without sort, results are returned alert_at descending."
|
|
21667
|
+
},
|
|
21651
21668
|
{
|
|
21652
21669
|
name: "serializer",
|
|
21653
21670
|
"in": "query",
|
|
@@ -21864,6 +21881,86 @@ var clientsData = [
|
|
|
21864
21881
|
}
|
|
21865
21882
|
}
|
|
21866
21883
|
},
|
|
21884
|
+
{
|
|
21885
|
+
path: "/v1/alerts/{alert_id}/escalate",
|
|
21886
|
+
method: "POST",
|
|
21887
|
+
summary: "Escalate alert to specific users",
|
|
21888
|
+
tags: [
|
|
21889
|
+
"Alerts"
|
|
21890
|
+
],
|
|
21891
|
+
parameters: [
|
|
21892
|
+
{
|
|
21893
|
+
name: "alert_id",
|
|
21894
|
+
"in": "path",
|
|
21895
|
+
type: "integer",
|
|
21896
|
+
required: true,
|
|
21897
|
+
description: "Alert ID"
|
|
21898
|
+
}
|
|
21899
|
+
],
|
|
21900
|
+
requestBody: {
|
|
21901
|
+
contentType: "application/json",
|
|
21902
|
+
schema: "any",
|
|
21903
|
+
required: true
|
|
21904
|
+
},
|
|
21905
|
+
responses: {
|
|
21906
|
+
"200": {
|
|
21907
|
+
description: "Alert with new active escalation",
|
|
21908
|
+
schema: "any"
|
|
21909
|
+
},
|
|
21910
|
+
"401": {
|
|
21911
|
+
description: "Authentication error",
|
|
21912
|
+
schema: "any"
|
|
21913
|
+
},
|
|
21914
|
+
"403": {
|
|
21915
|
+
description: "Authorization error",
|
|
21916
|
+
schema: "any"
|
|
21917
|
+
},
|
|
21918
|
+
"404": {
|
|
21919
|
+
description: "Not found error",
|
|
21920
|
+
schema: "any"
|
|
21921
|
+
},
|
|
21922
|
+
"422": {
|
|
21923
|
+
description: "Invalid request (empty user_ids, users outside company, or alert in terminal state)"
|
|
21924
|
+
}
|
|
21925
|
+
}
|
|
21926
|
+
},
|
|
21927
|
+
{
|
|
21928
|
+
path: "/v1/alerts/{alert_id}/deescalate",
|
|
21929
|
+
method: "POST",
|
|
21930
|
+
summary: "Close active escalation on alert",
|
|
21931
|
+
tags: [
|
|
21932
|
+
"Alerts"
|
|
21933
|
+
],
|
|
21934
|
+
parameters: [
|
|
21935
|
+
{
|
|
21936
|
+
name: "alert_id",
|
|
21937
|
+
"in": "path",
|
|
21938
|
+
type: "integer",
|
|
21939
|
+
required: true,
|
|
21940
|
+
description: "Alert ID"
|
|
21941
|
+
}
|
|
21942
|
+
],
|
|
21943
|
+
responses: {
|
|
21944
|
+
"200": {
|
|
21945
|
+
description: "Alert with escalation closed",
|
|
21946
|
+
schema: "any"
|
|
21947
|
+
},
|
|
21948
|
+
"401": {
|
|
21949
|
+
description: "Authentication error",
|
|
21950
|
+
schema: "any"
|
|
21951
|
+
},
|
|
21952
|
+
"403": {
|
|
21953
|
+
description: "Only the escalated user or an admin can de-escalate"
|
|
21954
|
+
},
|
|
21955
|
+
"404": {
|
|
21956
|
+
description: "Not found error",
|
|
21957
|
+
schema: "any"
|
|
21958
|
+
},
|
|
21959
|
+
"422": {
|
|
21960
|
+
description: "Alert is not escalated"
|
|
21961
|
+
}
|
|
21962
|
+
}
|
|
21963
|
+
},
|
|
21867
21964
|
{
|
|
21868
21965
|
path: "/v1/alerts/totals",
|
|
21869
21966
|
method: "GET",
|
|
@@ -22081,6 +22178,20 @@ var clientsData = [
|
|
|
22081
22178
|
type: "any",
|
|
22082
22179
|
required: false,
|
|
22083
22180
|
description: "Levels could be a string or a comma-delimited list of strings"
|
|
22181
|
+
},
|
|
22182
|
+
{
|
|
22183
|
+
name: "sort",
|
|
22184
|
+
"in": "query",
|
|
22185
|
+
type: "string",
|
|
22186
|
+
required: false,
|
|
22187
|
+
description: "Column to sort by, one of [alert_at, last_alert_at, created_at, status, status_changed_at, level, occurrences, acknowledged, validated, alert_classification, name]. Unrecognized values fall back to the default sort (alert_at descending)."
|
|
22188
|
+
},
|
|
22189
|
+
{
|
|
22190
|
+
name: "order",
|
|
22191
|
+
"in": "query",
|
|
22192
|
+
type: "string",
|
|
22193
|
+
required: false,
|
|
22194
|
+
description: "Sort direction, asc or desc. Applies only when sort is provided and defaults to asc; without sort, results are returned alert_at descending."
|
|
22084
22195
|
}
|
|
22085
22196
|
],
|
|
22086
22197
|
responses: {
|
|
@@ -49214,6 +49325,47 @@ var clientsData = [
|
|
|
49214
49325
|
}
|
|
49215
49326
|
}
|
|
49216
49327
|
},
|
|
49328
|
+
{
|
|
49329
|
+
path: "/v2/data_export_app/metrics_definitions",
|
|
49330
|
+
method: "GET",
|
|
49331
|
+
summary: "Get dynamic metric definitions for a company",
|
|
49332
|
+
description: "Returns per-company dynamic metric metadata from the `corva#metrics.definitions`\nMongoDB collection. The FE uses this to render custom metrics (name, category,\nunit, ILT icon/color) without hardcoding them per company.\n\nNotes:\n- One entry per segment; only the **latest** document per segment is returned.\n- Backend-internal fields (`rules`, `restrict`, `description`) are stripped.\n- `usage_rules` is included as-is when present; FE matches wells by program name.\n- Metric **values** flow through the existing `/v2/data_export_app/flat` endpoint —\n no separate fetch is required.\n",
|
|
49333
|
+
tags: [
|
|
49334
|
+
"Data Export App"
|
|
49335
|
+
],
|
|
49336
|
+
parameters: [
|
|
49337
|
+
{
|
|
49338
|
+
name: "company_id",
|
|
49339
|
+
"in": "query",
|
|
49340
|
+
type: "integer",
|
|
49341
|
+
required: true,
|
|
49342
|
+
description: "Company ID to fetch metric definitions for"
|
|
49343
|
+
}
|
|
49344
|
+
],
|
|
49345
|
+
responses: {
|
|
49346
|
+
"200": {
|
|
49347
|
+
description: "Successful response with definitions(or empty array if none exist)",
|
|
49348
|
+
schema: "MetricsDefinitionsList"
|
|
49349
|
+
},
|
|
49350
|
+
"400": {
|
|
49351
|
+
description: "Bad request - company_id is required"
|
|
49352
|
+
},
|
|
49353
|
+
"401": {
|
|
49354
|
+
description: "Authentication error",
|
|
49355
|
+
schema: "AuthenticationError"
|
|
49356
|
+
},
|
|
49357
|
+
"403": {
|
|
49358
|
+
description: "Forbidden - user has no access to wells in this company"
|
|
49359
|
+
},
|
|
49360
|
+
"404": {
|
|
49361
|
+
description: "Not found error",
|
|
49362
|
+
schema: "NotFoundError"
|
|
49363
|
+
},
|
|
49364
|
+
"503": {
|
|
49365
|
+
description: "Service unavailable - upstream MongoDB error"
|
|
49366
|
+
}
|
|
49367
|
+
}
|
|
49368
|
+
},
|
|
49217
49369
|
{
|
|
49218
49370
|
path: "/v2/country_list",
|
|
49219
49371
|
method: "GET",
|
|
@@ -50505,6 +50657,20 @@ var clientsData = [
|
|
|
50505
50657
|
required: false,
|
|
50506
50658
|
description: "Levels could be a string or a comma-delimited list of strings"
|
|
50507
50659
|
},
|
|
50660
|
+
{
|
|
50661
|
+
name: "sort",
|
|
50662
|
+
"in": "query",
|
|
50663
|
+
type: "string",
|
|
50664
|
+
required: false,
|
|
50665
|
+
description: "Column to sort by, one of [alert_at, last_alert_at, created_at, status, status_changed_at, level, occurrences, acknowledged, validated, alert_classification, name]. Unrecognized values fall back to the default sort (alert_at descending)."
|
|
50666
|
+
},
|
|
50667
|
+
{
|
|
50668
|
+
name: "order",
|
|
50669
|
+
"in": "query",
|
|
50670
|
+
type: "string",
|
|
50671
|
+
required: false,
|
|
50672
|
+
description: "Sort direction, asc or desc. Applies only when sort is provided and defaults to asc; without sort, results are returned alert_at descending."
|
|
50673
|
+
},
|
|
50508
50674
|
{
|
|
50509
50675
|
name: "serializer",
|
|
50510
50676
|
"in": "query",
|
|
@@ -50893,6 +51059,86 @@ var clientsData = [
|
|
|
50893
51059
|
}
|
|
50894
51060
|
}
|
|
50895
51061
|
},
|
|
51062
|
+
{
|
|
51063
|
+
path: "/v1/alerts/{alert_id}/deescalate",
|
|
51064
|
+
method: "POST",
|
|
51065
|
+
summary: "Close active escalation on alert",
|
|
51066
|
+
tags: [
|
|
51067
|
+
"Alerts"
|
|
51068
|
+
],
|
|
51069
|
+
parameters: [
|
|
51070
|
+
{
|
|
51071
|
+
name: "alert_id",
|
|
51072
|
+
"in": "path",
|
|
51073
|
+
type: "integer",
|
|
51074
|
+
required: true,
|
|
51075
|
+
description: "Alert ID"
|
|
51076
|
+
}
|
|
51077
|
+
],
|
|
51078
|
+
responses: {
|
|
51079
|
+
"200": {
|
|
51080
|
+
description: "Alert with escalation closed",
|
|
51081
|
+
schema: "any"
|
|
51082
|
+
},
|
|
51083
|
+
"401": {
|
|
51084
|
+
description: "Authentication error",
|
|
51085
|
+
schema: "any"
|
|
51086
|
+
},
|
|
51087
|
+
"403": {
|
|
51088
|
+
description: "Only the escalated user or an admin can de-escalate"
|
|
51089
|
+
},
|
|
51090
|
+
"404": {
|
|
51091
|
+
description: "Not found error",
|
|
51092
|
+
schema: "any"
|
|
51093
|
+
},
|
|
51094
|
+
"422": {
|
|
51095
|
+
description: "Alert is not escalated"
|
|
51096
|
+
}
|
|
51097
|
+
}
|
|
51098
|
+
},
|
|
51099
|
+
{
|
|
51100
|
+
path: "/v1/alerts/{alert_id}/escalate",
|
|
51101
|
+
method: "POST",
|
|
51102
|
+
summary: "Escalate alert to specific users",
|
|
51103
|
+
tags: [
|
|
51104
|
+
"Alerts"
|
|
51105
|
+
],
|
|
51106
|
+
parameters: [
|
|
51107
|
+
{
|
|
51108
|
+
name: "alert_id",
|
|
51109
|
+
"in": "path",
|
|
51110
|
+
type: "integer",
|
|
51111
|
+
required: true,
|
|
51112
|
+
description: "Alert ID"
|
|
51113
|
+
}
|
|
51114
|
+
],
|
|
51115
|
+
requestBody: {
|
|
51116
|
+
contentType: "application/json",
|
|
51117
|
+
schema: "any",
|
|
51118
|
+
required: true
|
|
51119
|
+
},
|
|
51120
|
+
responses: {
|
|
51121
|
+
"200": {
|
|
51122
|
+
description: "Alert with new active escalation",
|
|
51123
|
+
schema: "any"
|
|
51124
|
+
},
|
|
51125
|
+
"401": {
|
|
51126
|
+
description: "Authentication error",
|
|
51127
|
+
schema: "any"
|
|
51128
|
+
},
|
|
51129
|
+
"403": {
|
|
51130
|
+
description: "Authorization error",
|
|
51131
|
+
schema: "any"
|
|
51132
|
+
},
|
|
51133
|
+
"404": {
|
|
51134
|
+
description: "Not found error",
|
|
51135
|
+
schema: "any"
|
|
51136
|
+
},
|
|
51137
|
+
"422": {
|
|
51138
|
+
description: "Invalid request (empty user_ids, users outside company, or alert in terminal state)"
|
|
51139
|
+
}
|
|
51140
|
+
}
|
|
51141
|
+
},
|
|
50896
51142
|
{
|
|
50897
51143
|
path: "/v1/alerts/{alert_id}/likes",
|
|
50898
51144
|
method: "GET",
|
|
@@ -51482,6 +51728,20 @@ var clientsData = [
|
|
|
51482
51728
|
type: "any",
|
|
51483
51729
|
required: false,
|
|
51484
51730
|
description: "Levels could be a string or a comma-delimited list of strings"
|
|
51731
|
+
},
|
|
51732
|
+
{
|
|
51733
|
+
name: "sort",
|
|
51734
|
+
"in": "query",
|
|
51735
|
+
type: "string",
|
|
51736
|
+
required: false,
|
|
51737
|
+
description: "Column to sort by, one of [alert_at, last_alert_at, created_at, status, status_changed_at, level, occurrences, acknowledged, validated, alert_classification, name]. Unrecognized values fall back to the default sort (alert_at descending)."
|
|
51738
|
+
},
|
|
51739
|
+
{
|
|
51740
|
+
name: "order",
|
|
51741
|
+
"in": "query",
|
|
51742
|
+
type: "string",
|
|
51743
|
+
required: false,
|
|
51744
|
+
description: "Sort direction, asc or desc. Applies only when sort is provided and defaults to asc; without sort, results are returned alert_at descending."
|
|
51485
51745
|
}
|
|
51486
51746
|
],
|
|
51487
51747
|
responses: {
|
|
@@ -68361,6 +68621,47 @@ var clientsData = [
|
|
|
68361
68621
|
schema: "any"
|
|
68362
68622
|
}
|
|
68363
68623
|
}
|
|
68624
|
+
},
|
|
68625
|
+
{
|
|
68626
|
+
path: "/v2/data_export_app/metrics_definitions",
|
|
68627
|
+
method: "GET",
|
|
68628
|
+
summary: "Get dynamic metric definitions for a company",
|
|
68629
|
+
description: "Returns per-company dynamic metric metadata from the `corva#metrics.definitions`\nMongoDB collection. The FE uses this to render custom metrics (name, category,\nunit, ILT icon/color) without hardcoding them per company.\n\nNotes:\n- One entry per segment; only the **latest** document per segment is returned.\n- Backend-internal fields (`rules`, `restrict`, `description`) are stripped.\n- `usage_rules` is included as-is when present; FE matches wells by program name.\n- Metric **values** flow through the existing `/v2/data_export_app/flat` endpoint —\n no separate fetch is required.\n",
|
|
68630
|
+
tags: [
|
|
68631
|
+
"Data Export App"
|
|
68632
|
+
],
|
|
68633
|
+
parameters: [
|
|
68634
|
+
{
|
|
68635
|
+
name: "company_id",
|
|
68636
|
+
"in": "query",
|
|
68637
|
+
type: "integer",
|
|
68638
|
+
required: true,
|
|
68639
|
+
description: "Company ID to fetch metric definitions for"
|
|
68640
|
+
}
|
|
68641
|
+
],
|
|
68642
|
+
responses: {
|
|
68643
|
+
"200": {
|
|
68644
|
+
description: "Successful response with definitions(or empty array if none exist)",
|
|
68645
|
+
schema: "MetricsDefinitionsList"
|
|
68646
|
+
},
|
|
68647
|
+
"400": {
|
|
68648
|
+
description: "Bad request - company_id is required"
|
|
68649
|
+
},
|
|
68650
|
+
"401": {
|
|
68651
|
+
description: "Authentication error",
|
|
68652
|
+
schema: "AuthenticationError"
|
|
68653
|
+
},
|
|
68654
|
+
"403": {
|
|
68655
|
+
description: "Forbidden - user has no access to wells in this company"
|
|
68656
|
+
},
|
|
68657
|
+
"404": {
|
|
68658
|
+
description: "Not found error",
|
|
68659
|
+
schema: "NotFoundError"
|
|
68660
|
+
},
|
|
68661
|
+
"503": {
|
|
68662
|
+
description: "Service unavailable - upstream MongoDB error"
|
|
68663
|
+
}
|
|
68664
|
+
}
|
|
68364
68665
|
}
|
|
68365
68666
|
],
|
|
68366
68667
|
DatasetTypes: [
|
|
@@ -91657,6 +91958,8 @@ var entries = [
|
|
|
91657
91958
|
"acknowledge",
|
|
91658
91959
|
"classify",
|
|
91659
91960
|
"transition",
|
|
91961
|
+
"escalate",
|
|
91962
|
+
"deescalate",
|
|
91660
91963
|
"totals",
|
|
91661
91964
|
"details",
|
|
91662
91965
|
"alertworkflows",
|
|
@@ -91943,6 +92246,7 @@ var entries = [
|
|
|
91943
92246
|
"column_fields_list",
|
|
91944
92247
|
"flat",
|
|
91945
92248
|
"activity_code_mappings",
|
|
92249
|
+
"metrics_definitions",
|
|
91946
92250
|
"countries",
|
|
91947
92251
|
"country_list",
|
|
91948
92252
|
"revoltchat",
|
|
@@ -91954,7 +92258,7 @@ var entries = [
|
|
|
91954
92258
|
],
|
|
91955
92259
|
category: "clients",
|
|
91956
92260
|
importPath: "@corva/ui/clients",
|
|
91957
|
-
searchText: "corvaapi main api client for corva platform. provides methods for get, put, patch, post, delete requests. api http request fetch rest get post put delete patch abilitycheck v2 ability_check check_feature check_permission feed activities alerts v1 comments likes toggle definitions context trigger close check templates enable disable alertdefinitions alertgroups alert_groups alert_group_users alert_group_assets alert_group_configurations occurrences acknowledge classify transition totals details alertworkflows alert_workflows appreviews app_reviews approve decline assets favorites settings type_wells type_well reruns ancestor_ids resolve autocomplete programs clusters pads frac_fleets app_wells wells active_wells rigs active_well well_cache drillout_units frac fleets wirelines dashboardappannotations dashboard_app_annotations last_annotations dashboards users dashboard_apps bulk_create batch_update dashboard_folders dashboard_shares dashboard_folder_shares use clone use_template available_timezones well planning dashboards well_planning_dashboards data data_filters data_filters#2 files file sign preview download download_link url security groups assign_users copy_users wellview integration ingest bha frac_stage_design frac_stage_summary frac_stage_summary_calculated job_settings plugs .well-known jwks.json jwks messageproducer message_producer notifications acknowledge_all count unread security_policies companies permissions bulk_destroy grouped picklists items tasks user_token#1 user_token#2 user_token#3 user_token#4 sessions verification schemas export streaks identity_verifiers api_keys deactivate apps install packages upload app_categories categories featured types secrets appdatasets app_datasets mark_followable app_help_contents signed_url applogs app_logs events search apptypes app_types appsettingstemplates app_settings_templates share unshare copy publish appstreamtemplate app_stream_templates appstreamtemplateapp add_app update_app remove_app datasettypes dataset_types datset_types documents document_sections rig_templates aggregated_values rig aggregated values rig_template_categories rig_template_items tiers productsubscriptions product_subscriptions cancel deny platformsubscriptions platform_subscriptions resume provisioningsubscriptions provisioning_subscriptions app_streams purchasesubscriptions purchase_subscriptions subscriptionfeatures subscription_features wellcache corva blacklisteddatasets blacklisted_datasets app metrics app_metrics for_selected_apps appassets packagereviews package_reviews apppurchases app_purchases datasets filtered_by_apps appruns app_runs stop duplicate_check appstream idle_worker_stats create_backfill_stream force_resume batch_destroy update_edr_provider_connection_status appconnection app_connections update_package apperroralert app_error_alerts subscribe unsubscribe usage summaries workflows workflow_content_blocks workflow_apps workflowroles workflow_roles columnmappertemplates column_mapper_templates add_asset remove_asset columnmappertemplatechannels column_mapper_template_channels columnmappertemplaterules column_mapper_template_rules dashboard_workflows ungroup ungroup_all change_asset competitoranalysis competitor_analysis statistics company app_companies appstoretemplates app_store_templates appstoretemplatesections app_store_template_sections app_store_template_section appstorearticles app_store_articles remove_section signedurl audits dataset_audits permission_audits group_membership_audits provisioning_subscription_audits platform_subscription_audits purchase_subscription_audits event audit appusage usage_analytics app_usage usage_list view_date_list top_apps top_users total_usage_trend partialwellreruns partial_reruns list start_merging fail restart app_progress partialwellrerunappprogresses app_progresses searchsuggestions search_suggestions goals projects projectfolders project_folders projectfiles project_files registeredmodels registered_models appschedule app_schedules bulk_update_status package_audits apikey api_keys_management activate edrproviders edr_providers test_connection api_key_audits typewells padfracfleets pad_frac_fleets fracfleetcontracts frac_fleet_contracts interventionunits intervention_units interventionunitevents intervention_unit_events data export app data_export_app column_fields column_fields_list flat activity_code_mappings countries country_list revoltchat revolt_chat_sessions interventionunitreruns intervention_unit_reruns"
|
|
92261
|
+
searchText: "corvaapi main api client for corva platform. provides methods for get, put, patch, post, delete requests. api http request fetch rest get post put delete patch abilitycheck v2 ability_check check_feature check_permission feed activities alerts v1 comments likes toggle definitions context trigger close check templates enable disable alertdefinitions alertgroups alert_groups alert_group_users alert_group_assets alert_group_configurations occurrences acknowledge classify transition escalate deescalate totals details alertworkflows alert_workflows appreviews app_reviews approve decline assets favorites settings type_wells type_well reruns ancestor_ids resolve autocomplete programs clusters pads frac_fleets app_wells wells active_wells rigs active_well well_cache drillout_units frac fleets wirelines dashboardappannotations dashboard_app_annotations last_annotations dashboards users dashboard_apps bulk_create batch_update dashboard_folders dashboard_shares dashboard_folder_shares use clone use_template available_timezones well planning dashboards well_planning_dashboards data data_filters data_filters#2 files file sign preview download download_link url security groups assign_users copy_users wellview integration ingest bha frac_stage_design frac_stage_summary frac_stage_summary_calculated job_settings plugs .well-known jwks.json jwks messageproducer message_producer notifications acknowledge_all count unread security_policies companies permissions bulk_destroy grouped picklists items tasks user_token#1 user_token#2 user_token#3 user_token#4 sessions verification schemas export streaks identity_verifiers api_keys deactivate apps install packages upload app_categories categories featured types secrets appdatasets app_datasets mark_followable app_help_contents signed_url applogs app_logs events search apptypes app_types appsettingstemplates app_settings_templates share unshare copy publish appstreamtemplate app_stream_templates appstreamtemplateapp add_app update_app remove_app datasettypes dataset_types datset_types documents document_sections rig_templates aggregated_values rig aggregated values rig_template_categories rig_template_items tiers productsubscriptions product_subscriptions cancel deny platformsubscriptions platform_subscriptions resume provisioningsubscriptions provisioning_subscriptions app_streams purchasesubscriptions purchase_subscriptions subscriptionfeatures subscription_features wellcache corva blacklisteddatasets blacklisted_datasets app metrics app_metrics for_selected_apps appassets packagereviews package_reviews apppurchases app_purchases datasets filtered_by_apps appruns app_runs stop duplicate_check appstream idle_worker_stats create_backfill_stream force_resume batch_destroy update_edr_provider_connection_status appconnection app_connections update_package apperroralert app_error_alerts subscribe unsubscribe usage summaries workflows workflow_content_blocks workflow_apps workflowroles workflow_roles columnmappertemplates column_mapper_templates add_asset remove_asset columnmappertemplatechannels column_mapper_template_channels columnmappertemplaterules column_mapper_template_rules dashboard_workflows ungroup ungroup_all change_asset competitoranalysis competitor_analysis statistics company app_companies appstoretemplates app_store_templates appstoretemplatesections app_store_template_sections app_store_template_section appstorearticles app_store_articles remove_section signedurl audits dataset_audits permission_audits group_membership_audits provisioning_subscription_audits platform_subscription_audits purchase_subscription_audits event audit appusage usage_analytics app_usage usage_list view_date_list top_apps top_users total_usage_trend partialwellreruns partial_reruns list start_merging fail restart app_progress partialwellrerunappprogresses app_progresses searchsuggestions search_suggestions goals projects projectfolders project_folders projectfiles project_files registeredmodels registered_models appschedule app_schedules bulk_update_status package_audits apikey api_keys_management activate edrproviders edr_providers test_connection api_key_audits typewells padfracfleets pad_frac_fleets fracfleetcontracts frac_fleet_contracts interventionunits intervention_units interventionunitevents intervention_unit_events data export app data_export_app column_fields column_fields_list flat activity_code_mappings metrics_definitions countries country_list revoltchat revolt_chat_sessions interventionunitreruns intervention_unit_reruns"
|
|
91958
92262
|
},
|
|
91959
92263
|
{
|
|
91960
92264
|
id: "client-corvaDataAPI",
|