@devrev/typescript-sdk 1.1.72 → 1.1.73
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.
|
@@ -3455,6 +3455,52 @@ export declare enum ConfigurationProrationBehavior {
|
|
|
3455
3455
|
CreateProrations = "create_prorations",
|
|
3456
3456
|
None = "none"
|
|
3457
3457
|
}
|
|
3458
|
+
/** console-log-data */
|
|
3459
|
+
export interface ConsoleLogData {
|
|
3460
|
+
/** The type of console log. */
|
|
3461
|
+
type: ConsoleLogType;
|
|
3462
|
+
/**
|
|
3463
|
+
* Full URL of the console log.
|
|
3464
|
+
* @format text
|
|
3465
|
+
*/
|
|
3466
|
+
full_url: string;
|
|
3467
|
+
properties: ConsoleLogProperties;
|
|
3468
|
+
/**
|
|
3469
|
+
* Timestamp of the log entry.
|
|
3470
|
+
* @format date-time
|
|
3471
|
+
* @example "2023-01-01T12:00:00.000Z"
|
|
3472
|
+
*/
|
|
3473
|
+
timestamp: string;
|
|
3474
|
+
/**
|
|
3475
|
+
* Value/content of the console log.
|
|
3476
|
+
* @format text
|
|
3477
|
+
*/
|
|
3478
|
+
value: string;
|
|
3479
|
+
}
|
|
3480
|
+
/** console-log-properties */
|
|
3481
|
+
export interface ConsoleLogProperties {
|
|
3482
|
+
/**
|
|
3483
|
+
* Normalized URL of the page.
|
|
3484
|
+
* @format text
|
|
3485
|
+
*/
|
|
3486
|
+
normalized_url: string;
|
|
3487
|
+
/**
|
|
3488
|
+
* Name of the page where the log occurred.
|
|
3489
|
+
* @format text
|
|
3490
|
+
*/
|
|
3491
|
+
page_name: string;
|
|
3492
|
+
/**
|
|
3493
|
+
* URL of the page where the log occurred.
|
|
3494
|
+
* @format text
|
|
3495
|
+
*/
|
|
3496
|
+
page_url: string;
|
|
3497
|
+
}
|
|
3498
|
+
/** The type of console log. */
|
|
3499
|
+
export declare enum ConsoleLogType {
|
|
3500
|
+
Error = "error",
|
|
3501
|
+
Log = "log",
|
|
3502
|
+
Warn = "warn"
|
|
3503
|
+
}
|
|
3458
3504
|
/** content-template-base */
|
|
3459
3505
|
export type ContentTemplateBase = AtomBase;
|
|
3460
3506
|
/** content-template-base-summary */
|
|
@@ -6139,6 +6185,11 @@ export interface DevUsersSelfUpdateRequest {
|
|
|
6139
6185
|
* @format text
|
|
6140
6186
|
*/
|
|
6141
6187
|
full_name?: string;
|
|
6188
|
+
/**
|
|
6189
|
+
* The job function of the Dev user.
|
|
6190
|
+
* @format text
|
|
6191
|
+
*/
|
|
6192
|
+
job_function?: string;
|
|
6142
6193
|
/** Job history of the Dev user. */
|
|
6143
6194
|
job_history?: DevUsersUpdateJobHistoryItem[];
|
|
6144
6195
|
/** Job title of the Dev User. */
|
|
@@ -6279,6 +6330,11 @@ export interface DevUsersUpdateRequest {
|
|
|
6279
6330
|
* @format id
|
|
6280
6331
|
*/
|
|
6281
6332
|
id: string;
|
|
6333
|
+
/**
|
|
6334
|
+
* The job function of the Dev user.
|
|
6335
|
+
* @format text
|
|
6336
|
+
*/
|
|
6337
|
+
job_function?: string;
|
|
6282
6338
|
/** Job history of the Dev user. */
|
|
6283
6339
|
job_history?: DevUsersUpdateJobHistoryItem[];
|
|
6284
6340
|
/** Job title of the Dev User. */
|
|
@@ -9224,6 +9280,11 @@ export type Issue = WorkBase & {
|
|
|
9224
9280
|
actual_start_date?: string;
|
|
9225
9281
|
/** Parts associated based on git events. */
|
|
9226
9282
|
developed_with?: PartSummary[];
|
|
9283
|
+
/**
|
|
9284
|
+
* The space scoped display ID alias of the issue.
|
|
9285
|
+
* @format text
|
|
9286
|
+
*/
|
|
9287
|
+
display_id_alias?: string;
|
|
9227
9288
|
/**
|
|
9228
9289
|
* Estimated effort to complete the issue.
|
|
9229
9290
|
* @format double
|
|
@@ -9267,6 +9328,11 @@ export declare enum IssuePriority {
|
|
|
9267
9328
|
}
|
|
9268
9329
|
/** issue-summary */
|
|
9269
9330
|
export type IssueSummary = WorkBaseSummary & {
|
|
9331
|
+
/**
|
|
9332
|
+
* The space scoped display ID alias of the issue.
|
|
9333
|
+
* @format text
|
|
9334
|
+
*/
|
|
9335
|
+
display_id_alias?: string;
|
|
9270
9336
|
/** Priority of the work based upon impact and criticality. */
|
|
9271
9337
|
priority?: IssuePriority;
|
|
9272
9338
|
/** The properties of an enum value. */
|
|
@@ -9332,6 +9398,7 @@ export declare enum JobCategory {
|
|
|
9332
9398
|
MergeRevorg = "merge_revorg",
|
|
9333
9399
|
MergeRevuser = "merge_revuser",
|
|
9334
9400
|
MergeTicket = "merge_ticket",
|
|
9401
|
+
MigrateVistaReports = "migrate_vista_reports",
|
|
9335
9402
|
MoveRevorg = "move_revorg",
|
|
9336
9403
|
MoveRevuser = "move_revuser",
|
|
9337
9404
|
OasisDataExport = "oasis_data_export",
|
|
@@ -10023,6 +10090,14 @@ export type MarketplaceItemSummary = AtomBaseSummary & {
|
|
|
10023
10090
|
* (e.g. Jira AirSync).
|
|
10024
10091
|
*/
|
|
10025
10092
|
item_type?: MarketplaceItemItemType;
|
|
10093
|
+
/**
|
|
10094
|
+
* Meta score of the marketplace items. Its value must be in range
|
|
10095
|
+
* from 1 to 100000. It is used for ranking marketplace items on the
|
|
10096
|
+
* Marketplace home page. Items with higher meta_score will be placed
|
|
10097
|
+
* on the top of the list.
|
|
10098
|
+
* @format int64
|
|
10099
|
+
*/
|
|
10100
|
+
meta_score?: number;
|
|
10026
10101
|
/**
|
|
10027
10102
|
* Name of the marketplace listing. The value for a name can be any
|
|
10028
10103
|
* string with a minimum length of 3 and a maximum length of 128.
|
|
@@ -10049,7 +10124,9 @@ export type MarketplaceItemSummary = AtomBaseSummary & {
|
|
|
10049
10124
|
};
|
|
10050
10125
|
/**
|
|
10051
10126
|
* meerkat-widget-column-function
|
|
10052
|
-
*
|
|
10127
|
+
* Deprecated: Use widget_query_column_config with type=function on
|
|
10128
|
+
* widget_query.measure_configs or dimension_configs instead. A meerkat
|
|
10129
|
+
* specific column function.
|
|
10053
10130
|
*/
|
|
10054
10131
|
export interface MeerkatWidgetColumnFunction {
|
|
10055
10132
|
/** The type of the function. */
|
|
@@ -10076,7 +10153,11 @@ export declare enum MeerkatWidgetColumnFunctionType {
|
|
|
10076
10153
|
export interface MeerkatWidgetColumnProjection {
|
|
10077
10154
|
/** The data type of the column generated by the SQL expression. */
|
|
10078
10155
|
type: MeerkatWidgetColumnProjectionType;
|
|
10079
|
-
/**
|
|
10156
|
+
/**
|
|
10157
|
+
* Deprecated: Use widget_query_column_config with type=function on
|
|
10158
|
+
* widget_query.measure_configs or dimension_configs instead. A meerkat
|
|
10159
|
+
* specific column function.
|
|
10160
|
+
*/
|
|
10080
10161
|
function?: MeerkatWidgetColumnFunction;
|
|
10081
10162
|
/**
|
|
10082
10163
|
* The SQL expression used to extract or transform the column from the
|
|
@@ -10084,10 +10165,18 @@ export interface MeerkatWidgetColumnProjection {
|
|
|
10084
10165
|
* @format text
|
|
10085
10166
|
*/
|
|
10086
10167
|
sql_expression: string;
|
|
10087
|
-
/**
|
|
10168
|
+
/**
|
|
10169
|
+
* Deprecated: Use widget_query_column_config with type=timestamp on
|
|
10170
|
+
* widget_query.dimension_configs instead. The rollup granularity for the
|
|
10171
|
+
* timestamp.
|
|
10172
|
+
*/
|
|
10088
10173
|
timestamp_rollup?: MeerkatWidgetColumnProjectionTimestampRollup;
|
|
10089
10174
|
}
|
|
10090
|
-
/**
|
|
10175
|
+
/**
|
|
10176
|
+
* Deprecated: Use widget_query_column_config with type=timestamp on
|
|
10177
|
+
* widget_query.dimension_configs instead. The rollup granularity for the
|
|
10178
|
+
* timestamp.
|
|
10179
|
+
*/
|
|
10091
10180
|
export declare enum MeerkatWidgetColumnProjectionTimestampRollup {
|
|
10092
10181
|
Day = "day",
|
|
10093
10182
|
Hour = "hour",
|
|
@@ -10148,7 +10237,7 @@ export type Meeting = AtomBase & {
|
|
|
10148
10237
|
*/
|
|
10149
10238
|
external_url?: string;
|
|
10150
10239
|
/** The members in the meeting. */
|
|
10151
|
-
members
|
|
10240
|
+
members?: AtomSummary[];
|
|
10152
10241
|
organizer?: AtomSummary;
|
|
10153
10242
|
parent?: AtomSummary;
|
|
10154
10243
|
recording?: ArtifactSummary;
|
|
@@ -10327,7 +10416,7 @@ export interface MeetingsCreateRequest {
|
|
|
10327
10416
|
external_url?: string;
|
|
10328
10417
|
/**
|
|
10329
10418
|
* IDs of the users or groups that were part of the meeting.
|
|
10330
|
-
* @maxItems
|
|
10419
|
+
* @maxItems 2000
|
|
10331
10420
|
* @minItems 1
|
|
10332
10421
|
* @example ["DEVU-12345"]
|
|
10333
10422
|
*/
|
|
@@ -11329,6 +11418,16 @@ export interface Money {
|
|
|
11329
11418
|
*/
|
|
11330
11419
|
currency?: string;
|
|
11331
11420
|
}
|
|
11421
|
+
/** network-log */
|
|
11422
|
+
export interface NetworkLog {
|
|
11423
|
+
/**
|
|
11424
|
+
* Type of the network log.
|
|
11425
|
+
* @format text
|
|
11426
|
+
*/
|
|
11427
|
+
type: string;
|
|
11428
|
+
request: ObservabilityNetworkRequest;
|
|
11429
|
+
response: ObservabilityNetworkResponse;
|
|
11430
|
+
}
|
|
11332
11431
|
/** notification-content-template */
|
|
11333
11432
|
export type NotificationContentTemplate = ContentTemplateBase;
|
|
11334
11433
|
/** notification-content-template-summary */
|
|
@@ -11345,6 +11444,39 @@ export type ObjectMemberSummary = AtomBaseSummary & {
|
|
|
11345
11444
|
/** Sync information for records synced into/from DevRev. */
|
|
11346
11445
|
sync_metadata?: SyncMetadataSummary;
|
|
11347
11446
|
};
|
|
11447
|
+
/** observability-network-request */
|
|
11448
|
+
export interface ObservabilityNetworkRequest {
|
|
11449
|
+
/**
|
|
11450
|
+
* HTTP method of the request.
|
|
11451
|
+
* @format text
|
|
11452
|
+
*/
|
|
11453
|
+
method: string;
|
|
11454
|
+
/**
|
|
11455
|
+
* Start time of the request.
|
|
11456
|
+
* @format date-time
|
|
11457
|
+
* @example "2023-01-01T12:00:00.000Z"
|
|
11458
|
+
*/
|
|
11459
|
+
start_time: string;
|
|
11460
|
+
/**
|
|
11461
|
+
* URL of the network request.
|
|
11462
|
+
* @format text
|
|
11463
|
+
*/
|
|
11464
|
+
url: string;
|
|
11465
|
+
}
|
|
11466
|
+
/** observability-network-response */
|
|
11467
|
+
export interface ObservabilityNetworkResponse {
|
|
11468
|
+
/**
|
|
11469
|
+
* End time of the response.
|
|
11470
|
+
* @format date-time
|
|
11471
|
+
* @example "2023-01-01T12:00:00.000Z"
|
|
11472
|
+
*/
|
|
11473
|
+
end_time: string;
|
|
11474
|
+
/**
|
|
11475
|
+
* HTTP status code of the response.
|
|
11476
|
+
* @format int32
|
|
11477
|
+
*/
|
|
11478
|
+
status: number;
|
|
11479
|
+
}
|
|
11348
11480
|
/** observability-session */
|
|
11349
11481
|
export type ObservabilitySession = (UtilRequiredKeys<MobileSession, 'session_id'> | UtilRequiredKeys<WebSession, 'session_id'>) & {
|
|
11350
11482
|
type: ObservabilitySessionType;
|
|
@@ -11360,6 +11492,214 @@ export declare enum ObservabilitySessionType {
|
|
|
11360
11492
|
Mobile = "mobile",
|
|
11361
11493
|
Web = "web"
|
|
11362
11494
|
}
|
|
11495
|
+
/** observability-sessions-aggregate-request */
|
|
11496
|
+
export type ObservabilitySessionsAggregateRequest = (MobileSessionsFilter | WebSessionsFilter) & {
|
|
11497
|
+
type: ObservabilitySessionsAggregateRequestType;
|
|
11498
|
+
/**
|
|
11499
|
+
* List of aggregation configurations. Each aggregation has a key
|
|
11500
|
+
* field for identification.
|
|
11501
|
+
*/
|
|
11502
|
+
aggregations?: ObservabilitySessionsAggregateRequestAggregationConfig[];
|
|
11503
|
+
/** To filter indexes by partition fields. */
|
|
11504
|
+
partition_filters?: Record<string, string>;
|
|
11505
|
+
schema_type: ObservabilitySessionsAggregateRequestSchemaType;
|
|
11506
|
+
/** Provides ways to specify date ranges on objects. */
|
|
11507
|
+
time_range: DateFilter;
|
|
11508
|
+
/**
|
|
11509
|
+
* The unique app ID to which the session belongs.
|
|
11510
|
+
* @format text
|
|
11511
|
+
* @minLength 1
|
|
11512
|
+
*/
|
|
11513
|
+
version_key: string;
|
|
11514
|
+
};
|
|
11515
|
+
/** observability-sessions-aggregate-request-aggregation-config */
|
|
11516
|
+
export type ObservabilitySessionsAggregateRequestAggregationConfig = (ObservabilitySessionsAggregateRequestAvgAggregation | ObservabilitySessionsAggregateRequestCountAggregation | ObservabilitySessionsAggregateRequestDateHistogramAggregation | ObservabilitySessionsAggregateRequestMaxAggregation | ObservabilitySessionsAggregateRequestMinAggregation | ObservabilitySessionsAggregateRequestPercentilesAggregation | ObservabilitySessionsAggregateRequestSumAggregation | ObservabilitySessionsAggregateRequestTermsAggregation) & {
|
|
11517
|
+
type: ObservabilitySessionsAggregateRequestAggregationConfigType;
|
|
11518
|
+
/**
|
|
11519
|
+
* Unique identifier for this aggregation.
|
|
11520
|
+
* @format text
|
|
11521
|
+
*/
|
|
11522
|
+
key: string;
|
|
11523
|
+
/** Nested aggregations to perform within each bucket. */
|
|
11524
|
+
sub_aggregations?: ObservabilitySessionsAggregateRequestAggregationConfig[];
|
|
11525
|
+
};
|
|
11526
|
+
export declare enum ObservabilitySessionsAggregateRequestAggregationConfigType {
|
|
11527
|
+
Avg = "avg",
|
|
11528
|
+
Count = "count",
|
|
11529
|
+
DateHistogram = "date_histogram",
|
|
11530
|
+
Max = "max",
|
|
11531
|
+
Min = "min",
|
|
11532
|
+
Percentiles = "percentiles",
|
|
11533
|
+
Sum = "sum",
|
|
11534
|
+
Terms = "terms"
|
|
11535
|
+
}
|
|
11536
|
+
/** observability-sessions-aggregate-request-avg-aggregation */
|
|
11537
|
+
export interface ObservabilitySessionsAggregateRequestAvgAggregation {
|
|
11538
|
+
/**
|
|
11539
|
+
* Field to compute the average on.
|
|
11540
|
+
* @format text
|
|
11541
|
+
*/
|
|
11542
|
+
field: string;
|
|
11543
|
+
}
|
|
11544
|
+
/** observability-sessions-aggregate-request-count-aggregation */
|
|
11545
|
+
export interface ObservabilitySessionsAggregateRequestCountAggregation {
|
|
11546
|
+
/**
|
|
11547
|
+
* Field to count.
|
|
11548
|
+
* @format text
|
|
11549
|
+
*/
|
|
11550
|
+
field: string;
|
|
11551
|
+
}
|
|
11552
|
+
/** observability-sessions-aggregate-request-date-histogram-aggregation */
|
|
11553
|
+
export interface ObservabilitySessionsAggregateRequestDateHistogramAggregation {
|
|
11554
|
+
/**
|
|
11555
|
+
* Date field to aggregate on.
|
|
11556
|
+
* @format text
|
|
11557
|
+
*/
|
|
11558
|
+
field: string;
|
|
11559
|
+
/**
|
|
11560
|
+
* Time interval in milliseconds for histogram buckets.
|
|
11561
|
+
* @format int64
|
|
11562
|
+
*/
|
|
11563
|
+
interval_ms: number;
|
|
11564
|
+
}
|
|
11565
|
+
/** observability-sessions-aggregate-request-max-aggregation */
|
|
11566
|
+
export interface ObservabilitySessionsAggregateRequestMaxAggregation {
|
|
11567
|
+
/**
|
|
11568
|
+
* Field to compute the maximum on.
|
|
11569
|
+
* @format text
|
|
11570
|
+
*/
|
|
11571
|
+
field: string;
|
|
11572
|
+
}
|
|
11573
|
+
/** observability-sessions-aggregate-request-min-aggregation */
|
|
11574
|
+
export interface ObservabilitySessionsAggregateRequestMinAggregation {
|
|
11575
|
+
/**
|
|
11576
|
+
* Field to compute the minimum on.
|
|
11577
|
+
* @format text
|
|
11578
|
+
*/
|
|
11579
|
+
field: string;
|
|
11580
|
+
}
|
|
11581
|
+
/** observability-sessions-aggregate-request-percentiles-aggregation */
|
|
11582
|
+
export interface ObservabilitySessionsAggregateRequestPercentilesAggregation {
|
|
11583
|
+
/**
|
|
11584
|
+
* Field to compute percentiles on.
|
|
11585
|
+
* @format text
|
|
11586
|
+
*/
|
|
11587
|
+
field: string;
|
|
11588
|
+
/**
|
|
11589
|
+
* Percentile values to compute (e.g., [50.0, 90.0, 95.0, 99.0]).
|
|
11590
|
+
* @min 0
|
|
11591
|
+
* @max 100
|
|
11592
|
+
*/
|
|
11593
|
+
percents?: number[];
|
|
11594
|
+
}
|
|
11595
|
+
export declare enum ObservabilitySessionsAggregateRequestSchemaType {
|
|
11596
|
+
MobileCustomEvents = "mobile_custom_events",
|
|
11597
|
+
MobileNetwork = "mobile_network",
|
|
11598
|
+
WebConsole = "web_console",
|
|
11599
|
+
WebCustomEvents = "web_custom_events",
|
|
11600
|
+
WebEvent = "web_event",
|
|
11601
|
+
WebNetwork = "web_network"
|
|
11602
|
+
}
|
|
11603
|
+
/** observability-sessions-aggregate-request-sum-aggregation */
|
|
11604
|
+
export interface ObservabilitySessionsAggregateRequestSumAggregation {
|
|
11605
|
+
/**
|
|
11606
|
+
* Field to compute the sum on.
|
|
11607
|
+
* @format text
|
|
11608
|
+
*/
|
|
11609
|
+
field: string;
|
|
11610
|
+
}
|
|
11611
|
+
/** observability-sessions-aggregate-request-terms-aggregation */
|
|
11612
|
+
export interface ObservabilitySessionsAggregateRequestTermsAggregation {
|
|
11613
|
+
/**
|
|
11614
|
+
* Field to group by.
|
|
11615
|
+
* @format text
|
|
11616
|
+
*/
|
|
11617
|
+
field: string;
|
|
11618
|
+
/**
|
|
11619
|
+
* Maximum number of buckets to return.
|
|
11620
|
+
* @min 1
|
|
11621
|
+
* @max 5000
|
|
11622
|
+
*/
|
|
11623
|
+
size?: number;
|
|
11624
|
+
}
|
|
11625
|
+
export declare enum ObservabilitySessionsAggregateRequestType {
|
|
11626
|
+
Mobile = "mobile",
|
|
11627
|
+
Web = "web"
|
|
11628
|
+
}
|
|
11629
|
+
/** observability-sessions-aggregate-response */
|
|
11630
|
+
export interface ObservabilitySessionsAggregateResponse {
|
|
11631
|
+
/** List of aggregation results. */
|
|
11632
|
+
aggregations: ObservabilitySessionsAggregateResponseAggregationResult[];
|
|
11633
|
+
}
|
|
11634
|
+
/** observability-sessions-aggregate-response-aggregation-result */
|
|
11635
|
+
export type ObservabilitySessionsAggregateResponseAggregationResult = (ObservabilitySessionsAggregateResponseBucketResults | ObservabilitySessionsAggregateResponseMetricResult) & {
|
|
11636
|
+
/**
|
|
11637
|
+
* The key identifying this aggregation result.
|
|
11638
|
+
* @format text
|
|
11639
|
+
*/
|
|
11640
|
+
key: string;
|
|
11641
|
+
result_type: ObservabilitySessionsAggregateResponseAggregationResultResultType;
|
|
11642
|
+
};
|
|
11643
|
+
export declare enum ObservabilitySessionsAggregateResponseAggregationResultResultType {
|
|
11644
|
+
BucketResults = "bucket_results",
|
|
11645
|
+
MetricResult = "metric_result"
|
|
11646
|
+
}
|
|
11647
|
+
/** observability-sessions-aggregate-response-bucket */
|
|
11648
|
+
export interface ObservabilitySessionsAggregateResponseBucket {
|
|
11649
|
+
/**
|
|
11650
|
+
* Number of documents in this bucket.
|
|
11651
|
+
* @min 0
|
|
11652
|
+
* @max 18446744073709552000
|
|
11653
|
+
*/
|
|
11654
|
+
doc_count: number;
|
|
11655
|
+
/**
|
|
11656
|
+
* The bucket key (canonical value - can be string, number, bool,
|
|
11657
|
+
* etc.).
|
|
11658
|
+
*/
|
|
11659
|
+
key: any;
|
|
11660
|
+
/** Results of aggregations within this bucket. */
|
|
11661
|
+
sub_aggregations: ObservabilitySessionsAggregateResponseAggregationResult[];
|
|
11662
|
+
}
|
|
11663
|
+
/** observability-sessions-aggregate-response-bucket-item */
|
|
11664
|
+
export type ObservabilitySessionsAggregateResponseBucketItem = ObservabilitySessionsAggregateResponseBucket & {
|
|
11665
|
+
bucket_type: ObservabilitySessionsAggregateResponseBucketItemBucketType;
|
|
11666
|
+
};
|
|
11667
|
+
export declare enum ObservabilitySessionsAggregateResponseBucketItemBucketType {
|
|
11668
|
+
Bucket = "bucket"
|
|
11669
|
+
}
|
|
11670
|
+
/** observability-sessions-aggregate-response-bucket-results */
|
|
11671
|
+
export interface ObservabilitySessionsAggregateResponseBucketResults {
|
|
11672
|
+
/** List of buckets from the aggregation. */
|
|
11673
|
+
buckets: ObservabilitySessionsAggregateResponseBucketItem[];
|
|
11674
|
+
}
|
|
11675
|
+
/** observability-sessions-aggregate-response-metric-result */
|
|
11676
|
+
export type ObservabilitySessionsAggregateResponseMetricResult = (ObservabilitySessionsAggregateResponsePercentilesResult | ObservabilitySessionsAggregateResponseValueResult) & {
|
|
11677
|
+
metric_type: ObservabilitySessionsAggregateResponseMetricResultMetricType;
|
|
11678
|
+
};
|
|
11679
|
+
export declare enum ObservabilitySessionsAggregateResponseMetricResultMetricType {
|
|
11680
|
+
Avg = "avg",
|
|
11681
|
+
Count = "count",
|
|
11682
|
+
Max = "max",
|
|
11683
|
+
Min = "min",
|
|
11684
|
+
Percentiles = "percentiles",
|
|
11685
|
+
Sum = "sum"
|
|
11686
|
+
}
|
|
11687
|
+
/** observability-sessions-aggregate-response-percentiles-result */
|
|
11688
|
+
export interface ObservabilitySessionsAggregateResponsePercentilesResult {
|
|
11689
|
+
/**
|
|
11690
|
+
* Map of percentile to value (e.g., {'50.0': 123.45, '90.0':
|
|
11691
|
+
* 456.78}).
|
|
11692
|
+
*/
|
|
11693
|
+
values: Record<string, number>;
|
|
11694
|
+
}
|
|
11695
|
+
/** observability-sessions-aggregate-response-value-result */
|
|
11696
|
+
export interface ObservabilitySessionsAggregateResponseValueResult {
|
|
11697
|
+
/**
|
|
11698
|
+
* The computed metric value.
|
|
11699
|
+
* @format double
|
|
11700
|
+
*/
|
|
11701
|
+
value?: number;
|
|
11702
|
+
}
|
|
11363
11703
|
/** observability-sessions-data-get-request */
|
|
11364
11704
|
export interface ObservabilitySessionsDataGetRequest {
|
|
11365
11705
|
/** Whether to include replay data in the response. Defaults to true. */
|
|
@@ -11395,6 +11735,41 @@ export declare enum ObservabilitySessionsDataGetResponseRecording {
|
|
|
11395
11735
|
MobileRecording = "mobile_recording",
|
|
11396
11736
|
WebRecording = "web_recording"
|
|
11397
11737
|
}
|
|
11738
|
+
/** observability-sessions-developer-info-get-request */
|
|
11739
|
+
export interface ObservabilitySessionsDeveloperInfoGetRequest {
|
|
11740
|
+
/** Filter console logs by type. If empty, all types are returned. */
|
|
11741
|
+
console_log_types?: ConsoleLogType[];
|
|
11742
|
+
/**
|
|
11743
|
+
* The unique identifier of the session.
|
|
11744
|
+
* @format text
|
|
11745
|
+
* @minLength 1
|
|
11746
|
+
*/
|
|
11747
|
+
session_id: string;
|
|
11748
|
+
/**
|
|
11749
|
+
* Filter network logs by HTTP status code class. If empty, all
|
|
11750
|
+
* classes are returned.
|
|
11751
|
+
*/
|
|
11752
|
+
status_code_classes?: StatusCodeClass[];
|
|
11753
|
+
/**
|
|
11754
|
+
* unique tab id of the web session.
|
|
11755
|
+
* @format text
|
|
11756
|
+
* @minLength 1
|
|
11757
|
+
*/
|
|
11758
|
+
tab_id: string;
|
|
11759
|
+
/**
|
|
11760
|
+
* version key of the app.
|
|
11761
|
+
* @format text
|
|
11762
|
+
* @minLength 1
|
|
11763
|
+
*/
|
|
11764
|
+
version_key: string;
|
|
11765
|
+
}
|
|
11766
|
+
/** observability-sessions-developer-info-get-response */
|
|
11767
|
+
export interface ObservabilitySessionsDeveloperInfoGetResponse {
|
|
11768
|
+
/** Console data containing error logs and console information. */
|
|
11769
|
+
console_data?: ConsoleLogData[];
|
|
11770
|
+
/** Network data containing request/response information. */
|
|
11771
|
+
network_data?: NetworkLog[];
|
|
11772
|
+
}
|
|
11398
11773
|
/** observability-sessions-get-request */
|
|
11399
11774
|
export interface ObservabilitySessionsGetRequest {
|
|
11400
11775
|
/** The platform type for the device. */
|
|
@@ -15498,6 +15873,23 @@ export type SnapInSummary = AtomBaseSummary;
|
|
|
15498
15873
|
export type SnapInVersion = AtomBase;
|
|
15499
15874
|
/** snap-in-version-summary */
|
|
15500
15875
|
export type SnapInVersionSummary = AtomBaseSummary;
|
|
15876
|
+
/**
|
|
15877
|
+
* snap-kit-action-execute-deferred-function-result
|
|
15878
|
+
* Result returned by the snap-in when handling a deferred snap-kit
|
|
15879
|
+
* action.
|
|
15880
|
+
*/
|
|
15881
|
+
export interface SnapKitActionExecuteDeferredFunctionResult {
|
|
15882
|
+
/**
|
|
15883
|
+
* Detail message from the snap-in function execution.
|
|
15884
|
+
* @format text
|
|
15885
|
+
*/
|
|
15886
|
+
detail?: string;
|
|
15887
|
+
/**
|
|
15888
|
+
* Status of the snap-in function execution (e.g. 'error', 'success').
|
|
15889
|
+
* @format text
|
|
15890
|
+
*/
|
|
15891
|
+
status?: string;
|
|
15892
|
+
}
|
|
15501
15893
|
/** snap-kit-action-execute-deferred-request */
|
|
15502
15894
|
export interface SnapKitActionExecuteDeferredRequest {
|
|
15503
15895
|
/**
|
|
@@ -15512,7 +15904,13 @@ export interface SnapKitActionExecuteDeferredRequest {
|
|
|
15512
15904
|
id: string;
|
|
15513
15905
|
}
|
|
15514
15906
|
/** snap-kit-action-execute-deferred-response */
|
|
15515
|
-
export
|
|
15907
|
+
export interface SnapKitActionExecuteDeferredResponse {
|
|
15908
|
+
/**
|
|
15909
|
+
* Result returned by the snap-in when handling a deferred snap-kit
|
|
15910
|
+
* action.
|
|
15911
|
+
*/
|
|
15912
|
+
function_result?: SnapKitActionExecuteDeferredFunctionResult;
|
|
15913
|
+
}
|
|
15516
15914
|
/** snap-kit-action-request */
|
|
15517
15915
|
export type SnapKitActionRequest = (SnapKitActionRequestButton | SnapKitActionRequestForm) & {
|
|
15518
15916
|
type: SnapKitActionRequestElementTypeValue;
|
|
@@ -15571,6 +15969,11 @@ export declare enum SnapKitBaseWidgetSnapKitExecution {
|
|
|
15571
15969
|
/** snap-widget */
|
|
15572
15970
|
export type SnapWidget = (EmailPreviewWidget | StarterMessageNudgeWidget) & {
|
|
15573
15971
|
type: SnapWidgetType;
|
|
15972
|
+
/**
|
|
15973
|
+
* The ID of the parent object associated with this widget.
|
|
15974
|
+
* @format id
|
|
15975
|
+
*/
|
|
15976
|
+
parent_id?: string;
|
|
15574
15977
|
};
|
|
15575
15978
|
/** snap-widget-base */
|
|
15576
15979
|
export type SnapWidgetBase = AtomBase & {
|
|
@@ -15973,6 +16376,14 @@ export interface StarterMessageNudgeWidget {
|
|
|
15973
16376
|
starter_message_nudge_type: StarterMessageNudgeWidgetStarterMessageNudgeType;
|
|
15974
16377
|
}
|
|
15975
16378
|
export type StarterMessageNudgeWidgetStarterMessageNudgeType = string;
|
|
16379
|
+
/** HTTP response status code class. */
|
|
16380
|
+
export declare enum StatusCodeClass {
|
|
16381
|
+
Value1Xx = "1xx",
|
|
16382
|
+
Value2Xx = "2xx",
|
|
16383
|
+
Value3Xx = "3xx",
|
|
16384
|
+
Value4Xx = "4xx",
|
|
16385
|
+
Value5Xx = "5xx"
|
|
16386
|
+
}
|
|
15976
16387
|
/**
|
|
15977
16388
|
* stock-field-override
|
|
15978
16389
|
* A stock field override.
|
|
@@ -16226,6 +16637,17 @@ export type SurveyResponse = AtomBase & {
|
|
|
16226
16637
|
};
|
|
16227
16638
|
/** surveys-create-request */
|
|
16228
16639
|
export interface SurveysCreateRequest {
|
|
16640
|
+
/** Application-defined custom fields. */
|
|
16641
|
+
custom_fields?: object;
|
|
16642
|
+
/**
|
|
16643
|
+
* Custom schemas described using identifiers. Each custom field in the
|
|
16644
|
+
* request must have the corresponding schema specified; omission results
|
|
16645
|
+
* in a Bad Request error. If a custom schema is not included in the
|
|
16646
|
+
* specifier, it remains unchanged. For surfaces with human interactors,
|
|
16647
|
+
* it is recommended to provide tenant_fragment: true and
|
|
16648
|
+
* validate_required_fields: true.
|
|
16649
|
+
*/
|
|
16650
|
+
custom_schema_spec?: CustomSchemaSpec;
|
|
16229
16651
|
/**
|
|
16230
16652
|
* Description about the survey.
|
|
16231
16653
|
* @format text
|
|
@@ -16523,6 +16945,17 @@ export interface SurveysSubmitRequest {
|
|
|
16523
16945
|
export type SurveysSubmitResponse = object;
|
|
16524
16946
|
/** surveys-update-request */
|
|
16525
16947
|
export interface SurveysUpdateRequest {
|
|
16948
|
+
/** Application-defined custom fields. */
|
|
16949
|
+
custom_fields?: object;
|
|
16950
|
+
/**
|
|
16951
|
+
* Custom schemas described using identifiers. Each custom field in the
|
|
16952
|
+
* request must have the corresponding schema specified; omission results
|
|
16953
|
+
* in a Bad Request error. If a custom schema is not included in the
|
|
16954
|
+
* specifier, it remains unchanged. For surfaces with human interactors,
|
|
16955
|
+
* it is recommended to provide tenant_fragment: true and
|
|
16956
|
+
* validate_required_fields: true.
|
|
16957
|
+
*/
|
|
16958
|
+
custom_schema_spec?: CustomSchemaSpec;
|
|
16526
16959
|
/**
|
|
16527
16960
|
* The updated description about the survey.
|
|
16528
16961
|
* @format text
|
|
@@ -17649,6 +18082,7 @@ export interface TimelineEntriesGetResponse {
|
|
|
17649
18082
|
* The request to list timeline entries for an object.
|
|
17650
18083
|
*/
|
|
17651
18084
|
export interface TimelineEntriesListRequest {
|
|
18085
|
+
bias?: TimelineEntriesListRequestBias;
|
|
17652
18086
|
/**
|
|
17653
18087
|
* The collection(s) to list entries from, otherwise if not provided,
|
|
17654
18088
|
* all entries are returned.
|
|
@@ -17699,6 +18133,10 @@ export interface TimelineEntriesListRequest {
|
|
|
17699
18133
|
*/
|
|
17700
18134
|
visibility?: TimelineEntryVisibility[];
|
|
17701
18135
|
}
|
|
18136
|
+
export declare enum TimelineEntriesListRequestBias {
|
|
18137
|
+
Quantity = "quantity",
|
|
18138
|
+
Speed = "speed"
|
|
18139
|
+
}
|
|
17702
18140
|
/**
|
|
17703
18141
|
* timeline-entries-list-response
|
|
17704
18142
|
* The response to listing timeline entries for an object.
|
|
@@ -19903,6 +20341,11 @@ export interface WidgetPvpConfig {
|
|
|
19903
20341
|
* visualized.
|
|
19904
20342
|
*/
|
|
19905
20343
|
export interface WidgetQuery {
|
|
20344
|
+
/**
|
|
20345
|
+
* Extended dimension configurations that pair column references with
|
|
20346
|
+
* query-time operations like rollups and aggregation functions.
|
|
20347
|
+
*/
|
|
20348
|
+
dimension_configs?: WidgetQueryColumnConfig[];
|
|
19906
20349
|
/**
|
|
19907
20350
|
* The dimensions for the query, which are the categories to group or
|
|
19908
20351
|
* segment the measures. Usually these are the X-axis values in a
|
|
@@ -19922,6 +20365,11 @@ export interface WidgetQuery {
|
|
|
19922
20365
|
* @format int32
|
|
19923
20366
|
*/
|
|
19924
20367
|
limit?: number;
|
|
20368
|
+
/**
|
|
20369
|
+
* Extended measure configurations that pair column references with
|
|
20370
|
+
* query-time operations like aggregation functions and rollups.
|
|
20371
|
+
*/
|
|
20372
|
+
measure_configs?: WidgetQueryColumnConfig[];
|
|
19925
20373
|
/**
|
|
19926
20374
|
* The measures for the query, which are the numerical values to be
|
|
19927
20375
|
* analyzed. Usually these are the Y-axis values in a visualization.
|
|
@@ -19933,6 +20381,70 @@ export interface WidgetQuery {
|
|
|
19933
20381
|
*/
|
|
19934
20382
|
order_by?: WidgetQueryOrderBy[];
|
|
19935
20383
|
}
|
|
20384
|
+
/**
|
|
20385
|
+
* widget-query-column-config
|
|
20386
|
+
* Configuration for a column in a query. Combines a column reference with
|
|
20387
|
+
* a query-time operation (rollup or aggregation). The reference_name is a
|
|
20388
|
+
* deterministic hash of column_name + type + value, serving as a unique
|
|
20389
|
+
* identifier for downstream references (visualization axes, order_by,
|
|
20390
|
+
* filters).
|
|
20391
|
+
*/
|
|
20392
|
+
export interface WidgetQueryColumnConfig {
|
|
20393
|
+
/**
|
|
20394
|
+
* The category of the query-time operation. Time_granularity buckets
|
|
20395
|
+
* timestamp values by granularity. Aggregation applies an aggregate
|
|
20396
|
+
* function to the column. When omitted the column is a plain reference.
|
|
20397
|
+
*/
|
|
20398
|
+
type?: WidgetQueryColumnConfigType;
|
|
20399
|
+
/** The aggregation function type. Set when type is aggregation. */
|
|
20400
|
+
aggregation?: WidgetQueryColumnConfigAggregation;
|
|
20401
|
+
/**
|
|
20402
|
+
* The name of the source column from the data source.
|
|
20403
|
+
* @format text
|
|
20404
|
+
*/
|
|
20405
|
+
column_name: string;
|
|
20406
|
+
/**
|
|
20407
|
+
* A deterministic unique identifier derived from column_name, type,
|
|
20408
|
+
* and the active value field. Used to reference this column+operation
|
|
20409
|
+
* in visualization axes, order_by, filters, and other downstream
|
|
20410
|
+
* configurations.
|
|
20411
|
+
* @format text
|
|
20412
|
+
*/
|
|
20413
|
+
reference_name: string;
|
|
20414
|
+
/** The time granularity for bucketing. Set when type is time_granularity. */
|
|
20415
|
+
time_granularity?: WidgetQueryColumnConfigTimeGranularity;
|
|
20416
|
+
}
|
|
20417
|
+
/** The aggregation function type. Set when type is aggregation. */
|
|
20418
|
+
export declare enum WidgetQueryColumnConfigAggregation {
|
|
20419
|
+
Avg = "avg",
|
|
20420
|
+
Count = "count",
|
|
20421
|
+
CountDistinct = "count_distinct",
|
|
20422
|
+
Max = "max",
|
|
20423
|
+
Median = "median",
|
|
20424
|
+
Min = "min",
|
|
20425
|
+
P50 = "p50",
|
|
20426
|
+
P90 = "p90",
|
|
20427
|
+
P95 = "p95",
|
|
20428
|
+
P99 = "p99",
|
|
20429
|
+
Sum = "sum"
|
|
20430
|
+
}
|
|
20431
|
+
/** The time granularity for bucketing. Set when type is time_granularity. */
|
|
20432
|
+
export declare enum WidgetQueryColumnConfigTimeGranularity {
|
|
20433
|
+
Day = "day",
|
|
20434
|
+
Hour = "hour",
|
|
20435
|
+
Month = "month",
|
|
20436
|
+
Week = "week",
|
|
20437
|
+
Year = "year"
|
|
20438
|
+
}
|
|
20439
|
+
/**
|
|
20440
|
+
* The category of the query-time operation. Time_granularity buckets
|
|
20441
|
+
* timestamp values by granularity. Aggregation applies an aggregate
|
|
20442
|
+
* function to the column. When omitted the column is a plain reference.
|
|
20443
|
+
*/
|
|
20444
|
+
export declare enum WidgetQueryColumnConfigType {
|
|
20445
|
+
Aggregation = "aggregation",
|
|
20446
|
+
TimeGranularity = "time_granularity"
|
|
20447
|
+
}
|
|
19936
20448
|
/**
|
|
19937
20449
|
* widget-query-joins
|
|
19938
20450
|
* A list of possible joins for the data source. Follows foreign key
|
|
@@ -20932,6 +21444,13 @@ export interface WorksUpdateRequestArtifacts {
|
|
|
20932
21444
|
/** works-update-request-issue */
|
|
20933
21445
|
export interface WorksUpdateRequestIssue {
|
|
20934
21446
|
developed_with?: WorksUpdateRequestIssueDevelopedWith;
|
|
21447
|
+
/**
|
|
21448
|
+
* Updates the timestamp of the last code activity (e.g. latest commit
|
|
21449
|
+
* on all PRs with this issue).
|
|
21450
|
+
* @format date-time
|
|
21451
|
+
* @example "2023-01-01T12:00:00.000Z"
|
|
21452
|
+
*/
|
|
21453
|
+
last_code_activity?: string | null;
|
|
20935
21454
|
/** Priority of the work based upon impact and criticality. */
|
|
20936
21455
|
priority?: IssuePriority;
|
|
20937
21456
|
/**
|
|
@@ -21879,7 +22398,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
21879
22398
|
*/
|
|
21880
22399
|
artifactsVersionsPrepare: (data: ArtifactsVersionsPrepareRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsVersionsPrepareResponse, any, {}>>;
|
|
21881
22400
|
/**
|
|
21882
|
-
* @description Gets the specified object.
|
|
22401
|
+
* @description Gets the specified object. **Required scopes:** Depends on the object type identified by the `id` field. Pattern: `{object_type}:read` — e.g. `issue:read`, `ticket:read`.
|
|
21883
22402
|
*
|
|
21884
22403
|
* @tags atoms
|
|
21885
22404
|
* @name AtomsGet
|
|
@@ -21895,7 +22414,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
21895
22414
|
id: string;
|
|
21896
22415
|
}, params?: RequestParams) => Promise<AxiosResponse<AtomsGetResponse, any, {}>>;
|
|
21897
22416
|
/**
|
|
21898
|
-
* @description Gets the specified object.
|
|
22417
|
+
* @description Gets the specified object. **Required scopes:** Depends on the object type identified by the `id` field. Pattern: `{object_type}:read` — e.g. `issue:read`, `ticket:read`.
|
|
21899
22418
|
*
|
|
21900
22419
|
* @tags atoms
|
|
21901
22420
|
* @name AtomsGetPost
|
|
@@ -22602,7 +23121,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22602
23121
|
*/
|
|
22603
23122
|
customObjectsUpdate: (data: CustomObjectsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsUpdateResponse, any, {}>>;
|
|
22604
23123
|
/**
|
|
22605
|
-
* @description Creates a new enterprise authentication connection for a Dev organization. This authentication connection will not be enabled by default for the organization and the user will need to explicitly enable this. Only 5 authentication connections can be created by an organization.
|
|
23124
|
+
* @description Creates a new enterprise authentication connection for a Dev organization. This authentication connection will not be enabled by default for the organization and the user will need to explicitly enable this. Only 5 authentication connections can be created by an organization. **Required scopes:** - `dev_org:write`
|
|
22606
23125
|
*
|
|
22607
23126
|
* @tags auth-connections, dev-orgs
|
|
22608
23127
|
* @name DevOrgAuthConnectionsCreate
|
|
@@ -22612,7 +23131,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22612
23131
|
*/
|
|
22613
23132
|
devOrgAuthConnectionsCreate: (data: DevOrgAuthConnectionsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsCreateResponse, any, {}>>;
|
|
22614
23133
|
/**
|
|
22615
|
-
* @description Deletes an authentication connection. Only enterprise connections which are explicitly set up for a Dev organization can be deleted. Default connections can not be deleted using this method.
|
|
23134
|
+
* @description Deletes an authentication connection. Only enterprise connections which are explicitly set up for a Dev organization can be deleted. Default connections can not be deleted using this method. **Required scopes:** - `dev_org:all`
|
|
22616
23135
|
*
|
|
22617
23136
|
* @tags auth-connections, dev-orgs
|
|
22618
23137
|
* @name DevOrgAuthConnectionsDelete
|
|
@@ -22622,7 +23141,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22622
23141
|
*/
|
|
22623
23142
|
devOrgAuthConnectionsDelete: (data: DevOrgAuthConnectionsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
22624
23143
|
/**
|
|
22625
|
-
* @description Retrieves the details for an authentication connection.
|
|
23144
|
+
* @description Retrieves the details for an authentication connection. **Required scopes:** - `dev_org:read`
|
|
22626
23145
|
*
|
|
22627
23146
|
* @tags auth-connections, dev-orgs
|
|
22628
23147
|
* @name DevOrgAuthConnectionsGet
|
|
@@ -22638,7 +23157,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22638
23157
|
id: string;
|
|
22639
23158
|
}, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsGetResponse, any, {}>>;
|
|
22640
23159
|
/**
|
|
22641
|
-
* @description Retrieves the details for an authentication connection.
|
|
23160
|
+
* @description Retrieves the details for an authentication connection. **Required scopes:** - `dev_org:read`
|
|
22642
23161
|
*
|
|
22643
23162
|
* @tags auth-connections, dev-orgs
|
|
22644
23163
|
* @name DevOrgAuthConnectionsGetPost
|
|
@@ -22648,7 +23167,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22648
23167
|
*/
|
|
22649
23168
|
devOrgAuthConnectionsGetPost: (data: DevOrgAuthConnectionsGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsGetResponse, any, {}>>;
|
|
22650
23169
|
/**
|
|
22651
|
-
* @description Lists all the authentication connections available for a Dev organization. This list will include both social and enterprise connections which are either available by default or are explicitly created by the user.
|
|
23170
|
+
* @description Lists all the authentication connections available for a Dev organization. This list will include both social and enterprise connections which are either available by default or are explicitly created by the user. **Required scopes:** - `dev_org:read`
|
|
22652
23171
|
*
|
|
22653
23172
|
* @tags auth-connections, dev-orgs
|
|
22654
23173
|
* @name DevOrgAuthConnectionsList
|
|
@@ -22658,7 +23177,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22658
23177
|
*/
|
|
22659
23178
|
devOrgAuthConnectionsList: (params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsListResponse, any, {}>>;
|
|
22660
23179
|
/**
|
|
22661
|
-
* @description Lists all the authentication connections available for a Dev organization. This list will include both social and enterprise connections which are either available by default or are explicitly created by the user.
|
|
23180
|
+
* @description Lists all the authentication connections available for a Dev organization. This list will include both social and enterprise connections which are either available by default or are explicitly created by the user. **Required scopes:** - `dev_org:read`
|
|
22662
23181
|
*
|
|
22663
23182
|
* @tags auth-connections, dev-orgs
|
|
22664
23183
|
* @name DevOrgAuthConnectionsListPost
|
|
@@ -22668,7 +23187,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22668
23187
|
*/
|
|
22669
23188
|
devOrgAuthConnectionsListPost: (data: Empty, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsListResponse, any, {}>>;
|
|
22670
23189
|
/**
|
|
22671
|
-
* @description Enable or disable an authentication connection for a Dev organization. Atleast one authentication connection must be enabled for a Dev organization.
|
|
23190
|
+
* @description Enable or disable an authentication connection for a Dev organization. Atleast one authentication connection must be enabled for a Dev organization. **Required scopes:** - `dev_org:write`
|
|
22672
23191
|
*
|
|
22673
23192
|
* @tags auth-connections, dev-orgs
|
|
22674
23193
|
* @name DevOrgAuthConnectionsToggle
|
|
@@ -22678,7 +23197,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22678
23197
|
*/
|
|
22679
23198
|
devOrgAuthConnectionsToggle: (data: DevOrgAuthConnectionsToggleRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
22680
23199
|
/**
|
|
22681
|
-
* @description Updates an authentication connection.
|
|
23200
|
+
* @description Updates an authentication connection. **Required scopes:** - `dev_org:write`
|
|
22682
23201
|
*
|
|
22683
23202
|
* @tags auth-connections, dev-orgs
|
|
22684
23203
|
* @name DevOrgAuthConnectionsUpdate
|
|
@@ -22688,7 +23207,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22688
23207
|
*/
|
|
22689
23208
|
devOrgAuthConnectionsUpdate: (data: DevOrgAuthConnectionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsUpdateResponse, any, {}>>;
|
|
22690
23209
|
/**
|
|
22691
|
-
* @description Gets the Dev organization's information of the authenticated user.
|
|
23210
|
+
* @description Gets the Dev organization's information of the authenticated user. **Required scopes:** - `dev_org:read`
|
|
22692
23211
|
*
|
|
22693
23212
|
* @tags dev-orgs
|
|
22694
23213
|
* @name DevOrgsGet
|
|
@@ -22698,7 +23217,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22698
23217
|
*/
|
|
22699
23218
|
devOrgsGet: (params?: RequestParams) => Promise<AxiosResponse<DevOrgsGetResponse, any, {}>>;
|
|
22700
23219
|
/**
|
|
22701
|
-
* @description Gets the Dev organization's information of the authenticated user.
|
|
23220
|
+
* @description Gets the Dev organization's information of the authenticated user. **Required scopes:** - `dev_org:read`
|
|
22702
23221
|
*
|
|
22703
23222
|
* @tags dev-orgs
|
|
22704
23223
|
* @name DevOrgsGetPost
|
|
@@ -22708,7 +23227,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22708
23227
|
*/
|
|
22709
23228
|
devOrgsGetPost: (data: DevOrgsGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgsGetResponse, any, {}>>;
|
|
22710
23229
|
/**
|
|
22711
|
-
* @description Activates the requested user.
|
|
23230
|
+
* @description Activates the requested user. **Required scopes:** - `dev_user:write`
|
|
22712
23231
|
*
|
|
22713
23232
|
* @tags dev-users
|
|
22714
23233
|
* @name DevUsersActivate
|
|
@@ -22718,7 +23237,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22718
23237
|
*/
|
|
22719
23238
|
devUsersActivate: (data: DevUsersActivateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersActivateResponse, any, {}>>;
|
|
22720
23239
|
/**
|
|
22721
|
-
* @description Creates a Dev user for a Dev organization.
|
|
23240
|
+
* @description Creates a Dev user for a Dev organization. **Required scopes:** - `dev_user:write`
|
|
22722
23241
|
*
|
|
22723
23242
|
* @tags dev-users
|
|
22724
23243
|
* @name DevUsersCreate
|
|
@@ -22728,7 +23247,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22728
23247
|
*/
|
|
22729
23248
|
devUsersCreate: (data: DevUsersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersCreateResponse, any, {}>>;
|
|
22730
23249
|
/**
|
|
22731
|
-
* @description Deactivates the requested user.
|
|
23250
|
+
* @description Deactivates the requested user. **Required scopes:** - `dev_user:all`
|
|
22732
23251
|
*
|
|
22733
23252
|
* @tags dev-users
|
|
22734
23253
|
* @name DevUsersDeactivate
|
|
@@ -22738,7 +23257,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22738
23257
|
*/
|
|
22739
23258
|
devUsersDeactivate: (data: DevUsersDeactivateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
22740
23259
|
/**
|
|
22741
|
-
* @description Gets the requested user's information.
|
|
23260
|
+
* @description Gets the requested user's information. **Required scopes:** - `dev_user:read`
|
|
22742
23261
|
*
|
|
22743
23262
|
* @tags dev-users
|
|
22744
23263
|
* @name DevUsersGet
|
|
@@ -22754,7 +23273,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22754
23273
|
id: string;
|
|
22755
23274
|
}, params?: RequestParams) => Promise<AxiosResponse<DevUsersGetResponse, any, {}>>;
|
|
22756
23275
|
/**
|
|
22757
|
-
* @description Gets the requested user's information.
|
|
23276
|
+
* @description Gets the requested user's information. **Required scopes:** - `dev_user:read`
|
|
22758
23277
|
*
|
|
22759
23278
|
* @tags dev-users
|
|
22760
23279
|
* @name DevUsersGetPost
|
|
@@ -22764,7 +23283,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22764
23283
|
*/
|
|
22765
23284
|
devUsersGetPost: (data: DevUsersGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersGetResponse, any, {}>>;
|
|
22766
23285
|
/**
|
|
22767
|
-
* @description Links an external/secondary identity to the Dev user.
|
|
23286
|
+
* @description Links an external/secondary identity to the Dev user. **Required scopes:** - `dev_user:write`
|
|
22768
23287
|
*
|
|
22769
23288
|
* @tags dev-users
|
|
22770
23289
|
* @name DevUsersIdentitiesLink
|
|
@@ -22774,7 +23293,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22774
23293
|
*/
|
|
22775
23294
|
devUsersIdentitiesLink: (data: DevUsersIdentitiesLinkRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersIdentitiesLinkResponse, any, {}>>;
|
|
22776
23295
|
/**
|
|
22777
|
-
* @description Unlinks an external/secondary identity from the Dev user.
|
|
23296
|
+
* @description Unlinks an external/secondary identity from the Dev user. **Required scopes:** - `dev_user:write`
|
|
22778
23297
|
*
|
|
22779
23298
|
* @tags dev-users
|
|
22780
23299
|
* @name DevUsersIdentitiesUnlink
|
|
@@ -22784,7 +23303,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22784
23303
|
*/
|
|
22785
23304
|
devUsersIdentitiesUnlink: (data: DevUsersIdentitiesUnlinkRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersIdentitiesUnlinkResponse, any, {}>>;
|
|
22786
23305
|
/**
|
|
22787
|
-
* @description Lists users within your organization.
|
|
23306
|
+
* @description Lists users within your organization. **Required scopes:** - `dev_user:read`
|
|
22788
23307
|
*
|
|
22789
23308
|
* @tags dev-users
|
|
22790
23309
|
* @name DevUsersList
|
|
@@ -22838,7 +23357,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22838
23357
|
timezone?: string[];
|
|
22839
23358
|
}, params?: RequestParams) => Promise<AxiosResponse<DevUsersListResponse, any, {}>>;
|
|
22840
23359
|
/**
|
|
22841
|
-
* @description Lists users within your organization.
|
|
23360
|
+
* @description Lists users within your organization. **Required scopes:** - `dev_user:read`
|
|
22842
23361
|
*
|
|
22843
23362
|
* @tags dev-users
|
|
22844
23363
|
* @name DevUsersListPost
|
|
@@ -22848,7 +23367,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22848
23367
|
*/
|
|
22849
23368
|
devUsersListPost: (data: DevUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersListResponse, any, {}>>;
|
|
22850
23369
|
/**
|
|
22851
|
-
* @description Merges the identity of a secondary Dev user with the primary Dev user. The account of the secondary Dev user will be deactivated and will no longer be able to log into DevRev. All objects - issues, tickets, parts etc. owned by the secondary Dev user will be transferred to the primary Dev user.
|
|
23370
|
+
* @description Merges the identity of a secondary Dev user with the primary Dev user. The account of the secondary Dev user will be deactivated and will no longer be able to log into DevRev. All objects - issues, tickets, parts etc. owned by the secondary Dev user will be transferred to the primary Dev user. **Required scopes:** - `dev_user:all`
|
|
22852
23371
|
*
|
|
22853
23372
|
* @tags dev-users
|
|
22854
23373
|
* @name DevUsersMerge
|
|
@@ -22858,7 +23377,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22858
23377
|
*/
|
|
22859
23378
|
devUsersMerge: (data: DevUsersMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
22860
23379
|
/**
|
|
22861
|
-
* @description Gets the authenticated user's information.
|
|
23380
|
+
* @description Gets the authenticated user's information. **Required scopes:** No scopes required
|
|
22862
23381
|
*
|
|
22863
23382
|
* @tags dev-users
|
|
22864
23383
|
* @name DevUsersSelf
|
|
@@ -22868,7 +23387,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22868
23387
|
*/
|
|
22869
23388
|
devUsersSelf: (params?: RequestParams) => Promise<AxiosResponse<DevUsersSelfResponse, any, {}>>;
|
|
22870
23389
|
/**
|
|
22871
|
-
* @description Gets the authenticated user's information.
|
|
23390
|
+
* @description Gets the authenticated user's information. **Required scopes:** No scopes required
|
|
22872
23391
|
*
|
|
22873
23392
|
* @tags dev-users
|
|
22874
23393
|
* @name DevUsersSelfPost
|
|
@@ -22878,7 +23397,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22878
23397
|
*/
|
|
22879
23398
|
devUsersSelfPost: (data: DevUsersSelfRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersSelfResponse, any, {}>>;
|
|
22880
23399
|
/**
|
|
22881
|
-
* @description Updates the authenticated user.
|
|
23400
|
+
* @description Updates the authenticated user. **Required scopes:** No scopes required
|
|
22882
23401
|
*
|
|
22883
23402
|
* @tags dev-users
|
|
22884
23403
|
* @name DevUsersSelfUpdate
|
|
@@ -22888,7 +23407,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22888
23407
|
*/
|
|
22889
23408
|
devUsersSelfUpdate: (data: DevUsersSelfUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersUpdateResponse, any, {}>>;
|
|
22890
23409
|
/**
|
|
22891
|
-
* @description Updates the user corresponding to the input Id.
|
|
23410
|
+
* @description Updates the user corresponding to the input Id. **Required scopes:** - `dev_user:write`
|
|
22892
23411
|
*
|
|
22893
23412
|
* @tags dev-users
|
|
22894
23413
|
* @name DevUsersUpdate
|
|
@@ -23032,7 +23551,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23032
23551
|
*/
|
|
23033
23552
|
directoriesUpdate: (data: DirectoriesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesUpdateResponse, any, {}>>;
|
|
23034
23553
|
/**
|
|
23035
|
-
* @description Creates a new group. A group is a collection of users.
|
|
23554
|
+
* @description Creates a new group. A group is a collection of users. **Required scopes:** - `group:write`
|
|
23036
23555
|
*
|
|
23037
23556
|
* @tags groups
|
|
23038
23557
|
* @name GroupsCreate
|
|
@@ -23042,7 +23561,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23042
23561
|
*/
|
|
23043
23562
|
groupsCreate: (data: GroupsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsCreateResponse, any, {}>>;
|
|
23044
23563
|
/**
|
|
23045
|
-
* @description Gets the requested group.
|
|
23564
|
+
* @description Gets the requested group. **Required scopes:** - `group:read`
|
|
23046
23565
|
*
|
|
23047
23566
|
* @tags groups
|
|
23048
23567
|
* @name GroupsGet
|
|
@@ -23058,7 +23577,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23058
23577
|
id: string;
|
|
23059
23578
|
}, params?: RequestParams) => Promise<AxiosResponse<GroupsGetResponse, any, {}>>;
|
|
23060
23579
|
/**
|
|
23061
|
-
* @description Gets the requested group.
|
|
23580
|
+
* @description Gets the requested group. **Required scopes:** - `group:read`
|
|
23062
23581
|
*
|
|
23063
23582
|
* @tags groups
|
|
23064
23583
|
* @name GroupsGetPost
|
|
@@ -23068,7 +23587,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23068
23587
|
*/
|
|
23069
23588
|
groupsGetPost: (data: GroupsGetRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsGetResponse, any, {}>>;
|
|
23070
23589
|
/**
|
|
23071
|
-
* @description Lists the available groups.
|
|
23590
|
+
* @description Lists the available groups. **Required scopes:** - `group:read`
|
|
23072
23591
|
*
|
|
23073
23592
|
* @tags groups
|
|
23074
23593
|
* @name GroupsList
|
|
@@ -23139,7 +23658,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23139
23658
|
'sync_metadata.origin_system'?: string[];
|
|
23140
23659
|
}, params?: RequestParams) => Promise<AxiosResponse<GroupsListResponse, any, {}>>;
|
|
23141
23660
|
/**
|
|
23142
|
-
* @description Lists the available groups.
|
|
23661
|
+
* @description Lists the available groups. **Required scopes:** - `group:read`
|
|
23143
23662
|
*
|
|
23144
23663
|
* @tags groups
|
|
23145
23664
|
* @name GroupsListPost
|
|
@@ -23149,7 +23668,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23149
23668
|
*/
|
|
23150
23669
|
groupsListPost: (data: GroupsListRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsListResponse, any, {}>>;
|
|
23151
23670
|
/**
|
|
23152
|
-
* @description Adds a member to a group.
|
|
23671
|
+
* @description Adds a member to a group. **Required scopes:** - `group_membership:write`
|
|
23153
23672
|
*
|
|
23154
23673
|
* @tags groups
|
|
23155
23674
|
* @name GroupMembersAdd
|
|
@@ -23159,7 +23678,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23159
23678
|
*/
|
|
23160
23679
|
groupMembersAdd: (data: GroupMembersAddRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
23161
23680
|
/**
|
|
23162
|
-
* @description Lists the members in a group.
|
|
23681
|
+
* @description Lists the members in a group. **Required scopes:** - `group_membership:read`
|
|
23163
23682
|
*
|
|
23164
23683
|
* @tags groups
|
|
23165
23684
|
* @name GroupMembersList
|
|
@@ -23194,7 +23713,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23194
23713
|
sort_by?: string[];
|
|
23195
23714
|
}, params?: RequestParams) => Promise<AxiosResponse<GroupMembersListResponse, any, {}>>;
|
|
23196
23715
|
/**
|
|
23197
|
-
* @description Lists the members in a group.
|
|
23716
|
+
* @description Lists the members in a group. **Required scopes:** - `group_membership:read`
|
|
23198
23717
|
*
|
|
23199
23718
|
* @tags groups
|
|
23200
23719
|
* @name GroupMembersListPost
|
|
@@ -23204,7 +23723,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23204
23723
|
*/
|
|
23205
23724
|
groupMembersListPost: (data: GroupMembersListRequest, params?: RequestParams) => Promise<AxiosResponse<GroupMembersListResponse, any, {}>>;
|
|
23206
23725
|
/**
|
|
23207
|
-
* @description Removes a member from a group.
|
|
23726
|
+
* @description Removes a member from a group. **Required scopes:** - `group_membership:write`
|
|
23208
23727
|
*
|
|
23209
23728
|
* @tags groups
|
|
23210
23729
|
* @name GroupMembersRemove
|
|
@@ -23214,7 +23733,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23214
23733
|
*/
|
|
23215
23734
|
groupMembersRemove: (data: GroupMembersRemoveRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
23216
23735
|
/**
|
|
23217
|
-
* @description Updates the requested group.
|
|
23736
|
+
* @description Updates the requested group. **Required scopes:** - `group:write`
|
|
23218
23737
|
*
|
|
23219
23738
|
* @tags groups
|
|
23220
23739
|
* @name GroupsUpdate
|
|
@@ -23339,7 +23858,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23339
23858
|
*/
|
|
23340
23859
|
linksCreate: (data: LinksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<LinksCreateResponse, any, {}>>;
|
|
23341
23860
|
/**
|
|
23342
|
-
* @description Deletes a link.
|
|
23861
|
+
* @description Deletes a link between two objects. Note that for part hierarchy links (e.g. enhancement to capability), deleting a link may leave an orphan object with no parent. If the intent is to re-parent an object rather than unlink it entirely, use `links.replace` instead, which atomically removes the old link and creates a new one in a single transaction.
|
|
23343
23862
|
*
|
|
23344
23863
|
* @tags links
|
|
23345
23864
|
* @name LinksDelete
|
|
@@ -23444,7 +23963,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23444
23963
|
*/
|
|
23445
23964
|
linksListPost: (data: LinksListRequest, params?: RequestParams) => Promise<AxiosResponse<LinksListResponse, any, {}>>;
|
|
23446
23965
|
/**
|
|
23447
|
-
* @description Replaces a link.
|
|
23966
|
+
* @description Replaces an existing link with a new one. This is useful when an object must always remain linked to a parent — for example, re-parenting an enhancement under a different capability or product part — because it avoids the intermediate unlinked (orphan) state that would otherwise occur if you deleted the old link and created a new one as two separate steps. The existing link identified by `id` is removed and a new link is created from `source` to `target`. Optionally, a different `link_type` or `custom_link_type` can be specified for the new link. For links between parts using a default (non-custom) link type, the replacement is performed atomically. For all other cases (custom link types or non-part endpoints), the replacement is performed as a non-atomic delete followed by a create; in these cases, the new link must have the same link type (or the same `custom_link_type` DON) as the existing link, and must share at least one of the source or target with the existing link, otherwise the request is rejected.
|
|
23448
23967
|
*
|
|
23449
23968
|
* @tags links
|
|
23450
23969
|
* @name LinksReplace
|
|
@@ -23847,6 +24366,16 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23847
24366
|
* @secure
|
|
23848
24367
|
*/
|
|
23849
24368
|
metricTrackersGetPost: (data: MetricTrackersGetRequest, params?: RequestParams) => Promise<AxiosResponse<MetricTrackersGetResponse, any, {}>>;
|
|
24369
|
+
/**
|
|
24370
|
+
* @description Aggregates the sessions data.
|
|
24371
|
+
*
|
|
24372
|
+
* @tags observability
|
|
24373
|
+
* @name ObservabilitySessionsAggregate
|
|
24374
|
+
* @summary Aggregate Observability Sessions
|
|
24375
|
+
* @request POST:/observability.sessions.aggregate
|
|
24376
|
+
* @secure
|
|
24377
|
+
*/
|
|
24378
|
+
observabilitySessionsAggregate: (data: ObservabilitySessionsAggregateRequest, params?: RequestParams) => Promise<AxiosResponse<ObservabilitySessionsAggregateResponse, any, {}>>;
|
|
23850
24379
|
/**
|
|
23851
24380
|
* @description Retrieves the recording data for a specific session ID and recording ID. For mobile sessions, requires both session_id and recording_id. For web sessions, requires both session_id and tab_id.
|
|
23852
24381
|
*
|
|
@@ -23891,6 +24420,52 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23891
24420
|
* @secure
|
|
23892
24421
|
*/
|
|
23893
24422
|
observabilitySessionsDataGetPost: (data: ObservabilitySessionsDataGetRequest, params?: RequestParams) => Promise<AxiosResponse<ObservabilitySessionsDataGetResponse, any, {}>>;
|
|
24423
|
+
/**
|
|
24424
|
+
* @description Retrieves detailed console and network data for debugging.
|
|
24425
|
+
*
|
|
24426
|
+
* @tags observability
|
|
24427
|
+
* @name ObservabilitySessionsDeveloperInfoGet
|
|
24428
|
+
* @summary Get Observability Sessions Developer Info
|
|
24429
|
+
* @request GET:/observability.sessions.developer-info.get
|
|
24430
|
+
* @secure
|
|
24431
|
+
*/
|
|
24432
|
+
observabilitySessionsDeveloperInfoGet: (query: {
|
|
24433
|
+
/**
|
|
24434
|
+
* The unique identifier of the session.
|
|
24435
|
+
* @format text
|
|
24436
|
+
* @minLength 1
|
|
24437
|
+
*/
|
|
24438
|
+
session_id: string;
|
|
24439
|
+
/**
|
|
24440
|
+
* unique tab id of the web session.
|
|
24441
|
+
* @format text
|
|
24442
|
+
* @minLength 1
|
|
24443
|
+
*/
|
|
24444
|
+
tab_id: string;
|
|
24445
|
+
/**
|
|
24446
|
+
* version key of the app.
|
|
24447
|
+
* @format text
|
|
24448
|
+
* @minLength 1
|
|
24449
|
+
*/
|
|
24450
|
+
version_key: string;
|
|
24451
|
+
/** Filter console logs by type. If empty, all types are returned. */
|
|
24452
|
+
console_log_types?: ConsoleLogType[];
|
|
24453
|
+
/**
|
|
24454
|
+
* Filter network logs by HTTP status code class. If empty, all classes
|
|
24455
|
+
* are returned.
|
|
24456
|
+
*/
|
|
24457
|
+
status_code_classes?: StatusCodeClass[];
|
|
24458
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ObservabilitySessionsDeveloperInfoGetResponse, any, {}>>;
|
|
24459
|
+
/**
|
|
24460
|
+
* @description Retrieves detailed console and network data for debugging.
|
|
24461
|
+
*
|
|
24462
|
+
* @tags observability
|
|
24463
|
+
* @name ObservabilitySessionsDeveloperInfoGetPost
|
|
24464
|
+
* @summary Get Observability Sessions Developer Info (POST)
|
|
24465
|
+
* @request POST:/observability.sessions.developer-info.get
|
|
24466
|
+
* @secure
|
|
24467
|
+
*/
|
|
24468
|
+
observabilitySessionsDeveloperInfoGetPost: (data: ObservabilitySessionsDeveloperInfoGetRequest, params?: RequestParams) => Promise<AxiosResponse<ObservabilitySessionsDeveloperInfoGetResponse, any, {}>>;
|
|
23894
24469
|
/**
|
|
23895
24470
|
* @description Gets a specific session metadata by ID.
|
|
23896
24471
|
*
|
|
@@ -24414,7 +24989,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24414
24989
|
*/
|
|
24415
24990
|
partsUpdate: (data: PartsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<PartsUpdateResponse, any, {}>>;
|
|
24416
24991
|
/**
|
|
24417
|
-
* @description Pings the DevRev service.
|
|
24992
|
+
* @description Pings the DevRev service. **Required scopes:** No scopes required.
|
|
24418
24993
|
*
|
|
24419
24994
|
* @name Ping
|
|
24420
24995
|
* @summary Ping
|
|
@@ -24429,7 +25004,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24429
25004
|
devrev_partition?: string;
|
|
24430
25005
|
}, params?: RequestParams) => Promise<AxiosResponse<PingResponse, any, {}>>;
|
|
24431
25006
|
/**
|
|
24432
|
-
* @description Pings the DevRev service.
|
|
25007
|
+
* @description Pings the DevRev service. **Required scopes:** No scopes required.
|
|
24433
25008
|
*
|
|
24434
25009
|
* @name PingPost
|
|
24435
25010
|
* @summary Ping (POST)
|
|
@@ -24493,7 +25068,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24493
25068
|
*/
|
|
24494
25069
|
reactionsUpdate: (data: ReactionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
24495
25070
|
/**
|
|
24496
|
-
* @description Creates a Rev organization in the authenticated user's Dev organization.
|
|
25071
|
+
* @description Creates a Rev organization in the authenticated user's Dev organization. **Required scopes:** - `rev_org:write`
|
|
24497
25072
|
*
|
|
24498
25073
|
* @tags rev-orgs
|
|
24499
25074
|
* @name RevOrgsCreate
|
|
@@ -24503,7 +25078,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24503
25078
|
*/
|
|
24504
25079
|
revOrgsCreate: (data: RevOrgsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsCreateResponse, any, {}>>;
|
|
24505
25080
|
/**
|
|
24506
|
-
* @description Deletes the Rev organization.
|
|
25081
|
+
* @description Deletes the Rev organization. **Required scopes:** - `rev_org:all`
|
|
24507
25082
|
*
|
|
24508
25083
|
* @tags rev-orgs
|
|
24509
25084
|
* @name RevOrgsDelete
|
|
@@ -24513,7 +25088,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24513
25088
|
*/
|
|
24514
25089
|
revOrgsDelete: (data: RevOrgsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
24515
25090
|
/**
|
|
24516
|
-
* @description Retrieves the Rev organization's information.
|
|
25091
|
+
* @description Retrieves the Rev organization's information. **Required scopes:** - `rev_org:read`
|
|
24517
25092
|
*
|
|
24518
25093
|
* @tags rev-orgs
|
|
24519
25094
|
* @name RevOrgsGet
|
|
@@ -24537,7 +25112,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24537
25112
|
id?: string;
|
|
24538
25113
|
}, params?: RequestParams) => Promise<AxiosResponse<RevOrgsGetResponse, any, {}>>;
|
|
24539
25114
|
/**
|
|
24540
|
-
* @description Retrieves the Rev organization's information.
|
|
25115
|
+
* @description Retrieves the Rev organization's information. **Required scopes:** - `rev_org:read`
|
|
24541
25116
|
*
|
|
24542
25117
|
* @tags rev-orgs
|
|
24543
25118
|
* @name RevOrgsGetPost
|
|
@@ -24547,7 +25122,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24547
25122
|
*/
|
|
24548
25123
|
revOrgsGetPost: (data: RevOrgsGetRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsGetResponse, any, {}>>;
|
|
24549
25124
|
/**
|
|
24550
|
-
* @description Gets the list of Rev organizations' information belonging to the authenticated user's Dev Organization which the user is also authorized to access.
|
|
25125
|
+
* @description Gets the list of Rev organizations' information belonging to the authenticated user's Dev Organization which the user is also authorized to access. **Required scopes:** - `rev_org:read`
|
|
24551
25126
|
*
|
|
24552
25127
|
* @tags rev-orgs
|
|
24553
25128
|
* @name RevOrgsList
|
|
@@ -24625,7 +25200,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24625
25200
|
tags?: string[];
|
|
24626
25201
|
}, params?: RequestParams) => Promise<AxiosResponse<RevOrgsListResponse, any, {}>>;
|
|
24627
25202
|
/**
|
|
24628
|
-
* @description Gets the list of Rev organizations' information belonging to the authenticated user's Dev Organization which the user is also authorized to access.
|
|
25203
|
+
* @description Gets the list of Rev organizations' information belonging to the authenticated user's Dev Organization which the user is also authorized to access. **Required scopes:** - `rev_org:read`
|
|
24629
25204
|
*
|
|
24630
25205
|
* @tags rev-orgs
|
|
24631
25206
|
* @name RevOrgsListPost
|
|
@@ -24635,7 +25210,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24635
25210
|
*/
|
|
24636
25211
|
revOrgsListPost: (data: RevOrgsListRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsListResponse, any, {}>>;
|
|
24637
25212
|
/**
|
|
24638
|
-
* @description Updates the Rev organization's information.
|
|
25213
|
+
* @description Updates the Rev organization's information. **Required scopes:** - `rev_org:write`
|
|
24639
25214
|
*
|
|
24640
25215
|
* @tags rev-orgs
|
|
24641
25216
|
* @name RevOrgsUpdate
|
|
@@ -24645,7 +25220,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24645
25220
|
*/
|
|
24646
25221
|
revOrgsUpdate: (data: RevOrgsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsUpdateResponse, any, {}>>;
|
|
24647
25222
|
/**
|
|
24648
|
-
* @description Creates a Rev user for a Rev organization. Rev user can be a customer or a lead of an organization.
|
|
25223
|
+
* @description Creates a Rev user for a Rev organization. Rev user can be a customer or a lead of an organization. **Required scopes:** - `rev_user:write`
|
|
24649
25224
|
*
|
|
24650
25225
|
* @tags rev-users
|
|
24651
25226
|
* @name RevUsersCreate
|
|
@@ -24655,7 +25230,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24655
25230
|
*/
|
|
24656
25231
|
revUsersCreate: (data: RevUsersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersCreateResponse, any, {}>>;
|
|
24657
25232
|
/**
|
|
24658
|
-
* @description Deletes a Rev user.
|
|
25233
|
+
* @description Deletes a Rev user. **Required scopes:** - `rev_user:all`
|
|
24659
25234
|
*
|
|
24660
25235
|
* @tags rev-users
|
|
24661
25236
|
* @name RevUsersDelete
|
|
@@ -24665,7 +25240,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24665
25240
|
*/
|
|
24666
25241
|
revUsersDelete: (data: RevUsersDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
24667
25242
|
/**
|
|
24668
|
-
* @description Returns the Rev user of a Rev organization by its ID.
|
|
25243
|
+
* @description Returns the Rev user of a Rev organization by its ID. **Required scopes:** - `rev_user:read`
|
|
24669
25244
|
*
|
|
24670
25245
|
* @tags rev-users
|
|
24671
25246
|
* @name RevUsersGet
|
|
@@ -24681,7 +25256,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24681
25256
|
id: string;
|
|
24682
25257
|
}, params?: RequestParams) => Promise<AxiosResponse<RevUsersGetResponse, any, {}>>;
|
|
24683
25258
|
/**
|
|
24684
|
-
* @description Returns the Rev user of a Rev organization by its ID.
|
|
25259
|
+
* @description Returns the Rev user of a Rev organization by its ID. **Required scopes:** - `rev_user:read`
|
|
24685
25260
|
*
|
|
24686
25261
|
* @tags rev-users
|
|
24687
25262
|
* @name RevUsersGetPost
|
|
@@ -24691,7 +25266,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24691
25266
|
*/
|
|
24692
25267
|
revUsersGetPost: (data: RevUsersGetRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersGetResponse, any, {}>>;
|
|
24693
25268
|
/**
|
|
24694
|
-
* @description Returns a list of all Rev Users belonging to the authenticated user's Dev organization.
|
|
25269
|
+
* @description Returns a list of all Rev Users belonging to the authenticated user's Dev organization. **Required scopes:** - `rev_user:read`
|
|
24695
25270
|
*
|
|
24696
25271
|
* @tags rev-users
|
|
24697
25272
|
* @name RevUsersList
|
|
@@ -24772,7 +25347,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24772
25347
|
tags?: string[];
|
|
24773
25348
|
}, params?: RequestParams) => Promise<AxiosResponse<RevUsersListResponse, any, {}>>;
|
|
24774
25349
|
/**
|
|
24775
|
-
* @description Returns a list of all Rev Users belonging to the authenticated user's Dev organization.
|
|
25350
|
+
* @description Returns a list of all Rev Users belonging to the authenticated user's Dev organization. **Required scopes:** - `rev_user:read`
|
|
24776
25351
|
*
|
|
24777
25352
|
* @tags rev-users
|
|
24778
25353
|
* @name RevUsersListPost
|
|
@@ -24782,7 +25357,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24782
25357
|
*/
|
|
24783
25358
|
revUsersListPost: (data: RevUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersListResponse, any, {}>>;
|
|
24784
25359
|
/**
|
|
24785
|
-
* @description Merges the secondary Rev user into the primary Rev user.
|
|
25360
|
+
* @description Merges the secondary Rev user into the primary Rev user. **Required scopes:** - `rev_user:all`
|
|
24786
25361
|
*
|
|
24787
25362
|
* @tags rev-users
|
|
24788
25363
|
* @name RevUsersMerge
|
|
@@ -24792,7 +25367,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24792
25367
|
*/
|
|
24793
25368
|
revUsersMerge: (data: RevUsersMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
24794
25369
|
/**
|
|
24795
|
-
* @description Scans through all Rev users.
|
|
25370
|
+
* @description Scans through all Rev users. **Required scopes:** - `rev_user:read`
|
|
24796
25371
|
*
|
|
24797
25372
|
* @tags rev-users
|
|
24798
25373
|
* @name RevUsersScan
|
|
@@ -24861,7 +25436,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24861
25436
|
tags?: string[];
|
|
24862
25437
|
}, params?: RequestParams) => Promise<AxiosResponse<RevUsersScanResponse, any, {}>>;
|
|
24863
25438
|
/**
|
|
24864
|
-
* @description Scans through all Rev users.
|
|
25439
|
+
* @description Scans through all Rev users. **Required scopes:** - `rev_user:read`
|
|
24865
25440
|
*
|
|
24866
25441
|
* @tags rev-users
|
|
24867
25442
|
* @name RevUsersScanPost
|
|
@@ -24871,7 +25446,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24871
25446
|
*/
|
|
24872
25447
|
revUsersScanPost: (data: RevUsersScanRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersScanResponse, any, {}>>;
|
|
24873
25448
|
/**
|
|
24874
|
-
* @description Updates a Rev user.
|
|
25449
|
+
* @description Updates a Rev user. **Required scopes:** - `rev_user:write`
|
|
24875
25450
|
*
|
|
24876
25451
|
* @tags rev-users
|
|
24877
25452
|
* @name RevUsersUpdate
|
|
@@ -25382,7 +25957,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25382
25957
|
* @request POST:/snap-kit-action.execute.deferred
|
|
25383
25958
|
* @secure
|
|
25384
25959
|
*/
|
|
25385
|
-
snapKitActionExecuteDeferred: (data: SnapKitActionExecuteDeferredRequest, params?: RequestParams) => Promise<AxiosResponse<
|
|
25960
|
+
snapKitActionExecuteDeferred: (data: SnapKitActionExecuteDeferredRequest, params?: RequestParams) => Promise<AxiosResponse<SnapKitActionExecuteDeferredResponse, any, {}>>;
|
|
25386
25961
|
/**
|
|
25387
25962
|
* @description Create a snap widget object.
|
|
25388
25963
|
*
|
|
@@ -25858,7 +26433,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25858
26433
|
*/
|
|
25859
26434
|
surveysUpdate: (data: SurveysUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysUpdateResponse, any, {}>>;
|
|
25860
26435
|
/**
|
|
25861
|
-
* @description Lists system users within your organization.
|
|
26436
|
+
* @description Lists system users within your organization. **Required scopes:** - `dev_user:read`
|
|
25862
26437
|
*
|
|
25863
26438
|
* @tags sys-users
|
|
25864
26439
|
* @name SysUsersList
|
|
@@ -25888,7 +26463,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25888
26463
|
sort_by?: string[];
|
|
25889
26464
|
}, params?: RequestParams) => Promise<AxiosResponse<SysUsersListResponse, any, {}>>;
|
|
25890
26465
|
/**
|
|
25891
|
-
* @description Lists system users within your organization.
|
|
26466
|
+
* @description Lists system users within your organization. **Required scopes:** - `dev_user:read`
|
|
25892
26467
|
*
|
|
25893
26468
|
* @tags sys-users
|
|
25894
26469
|
* @name SysUsersListPost
|
|
@@ -25898,7 +26473,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25898
26473
|
*/
|
|
25899
26474
|
sysUsersListPost: (data: SysUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<SysUsersListResponse, any, {}>>;
|
|
25900
26475
|
/**
|
|
25901
|
-
* @description Updates the system user.
|
|
26476
|
+
* @description Updates the system user. **Required scopes:** - `dev_user:write`
|
|
25902
26477
|
*
|
|
25903
26478
|
* @tags sys-users
|
|
25904
26479
|
* @name SysUsersUpdate
|
|
@@ -26076,6 +26651,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26076
26651
|
* @example "PROD-12345"
|
|
26077
26652
|
*/
|
|
26078
26653
|
object: string;
|
|
26654
|
+
/** The bias for request processing. The default is 'speed'. */
|
|
26655
|
+
bias?: TimelineEntriesListRequestBias;
|
|
26079
26656
|
/**
|
|
26080
26657
|
* The collection(s) to list entries from, otherwise if not provided,
|
|
26081
26658
|
* all entries are returned.
|