@devrev/typescript-sdk 1.1.71 → 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.
- package/dist/auto-generated/beta/beta-devrev-sdk.d.ts +4901 -489
- package/dist/auto-generated/beta/beta-devrev-sdk.js +861 -67
- package/dist/auto-generated/public-devrev-sdk.d.ts +1290 -157
- package/dist/auto-generated/public-devrev-sdk.js +306 -65
- package/dist/snap-ins/interfaces.d.ts +12 -1
- package/dist/snap-ins/schema.pb.d.ts +852 -11
- package/dist/snap-ins/schema.pb.js +958 -8
- package/package.json +2 -2
|
@@ -623,12 +623,22 @@ export interface AiAgentEventExecuteProgressSkillExecuted {
|
|
|
623
623
|
metadata?: object;
|
|
624
624
|
/** The output of the skill call. */
|
|
625
625
|
output: object;
|
|
626
|
+
/**
|
|
627
|
+
* The unique ID of this skill call instance.
|
|
628
|
+
* @format text
|
|
629
|
+
*/
|
|
630
|
+
skill_call_id?: string;
|
|
626
631
|
/**
|
|
627
632
|
* The name of the skill.
|
|
628
633
|
* @format text
|
|
629
634
|
* @maxLength 512
|
|
630
635
|
*/
|
|
631
636
|
skill_name: string;
|
|
637
|
+
/**
|
|
638
|
+
* The thought explaining why the skill was called.
|
|
639
|
+
* @format text
|
|
640
|
+
*/
|
|
641
|
+
thought?: string;
|
|
632
642
|
}
|
|
633
643
|
/**
|
|
634
644
|
* ai-agent-event-execute-progress-skill-triggered
|
|
@@ -1427,6 +1437,7 @@ export declare enum ArtifactConfigurationSet {
|
|
|
1427
1437
|
JobData = "job_data",
|
|
1428
1438
|
MarketplaceListingIcon = "marketplace_listing_icon",
|
|
1429
1439
|
MarketplaceMedia = "marketplace_media",
|
|
1440
|
+
MeetingRecordings = "meeting_recordings",
|
|
1430
1441
|
ObjectExport = "object_export",
|
|
1431
1442
|
OrgLogo = "org_logo",
|
|
1432
1443
|
PlugCss = "plug_css",
|
|
@@ -1503,6 +1514,28 @@ export interface ArtifactVersion {
|
|
|
1503
1514
|
*/
|
|
1504
1515
|
version: string;
|
|
1505
1516
|
}
|
|
1517
|
+
/**
|
|
1518
|
+
* artifacts-download-request
|
|
1519
|
+
* The request to download an artifact.
|
|
1520
|
+
*/
|
|
1521
|
+
export interface ArtifactsDownloadRequest {
|
|
1522
|
+
/**
|
|
1523
|
+
* The ID of the artifact to be downloaded.
|
|
1524
|
+
* @format id
|
|
1525
|
+
* @example "ARTIFACT-12345"
|
|
1526
|
+
*/
|
|
1527
|
+
id: string;
|
|
1528
|
+
/**
|
|
1529
|
+
* The access key for the artifact.
|
|
1530
|
+
* @format text
|
|
1531
|
+
*/
|
|
1532
|
+
key?: string;
|
|
1533
|
+
/**
|
|
1534
|
+
* The version of the artifact that needs to be downloaded.
|
|
1535
|
+
* @format text
|
|
1536
|
+
*/
|
|
1537
|
+
version?: string;
|
|
1538
|
+
}
|
|
1506
1539
|
/**
|
|
1507
1540
|
* artifacts-get-request
|
|
1508
1541
|
* The request to get an artifact's information.
|
|
@@ -1695,7 +1728,7 @@ export interface ArtifactsVersionsPrepareResponseFormData {
|
|
|
1695
1728
|
value: string;
|
|
1696
1729
|
}
|
|
1697
1730
|
/** atom */
|
|
1698
|
-
export type Atom = (Account | AppFragment | Article | AuthToken | Capability | CodeChange | Command | Conversation | CustomObject | CustomTypeFragment | DevOrg | DevUser | Dm | Engagement | Enhancement | Feature | Group | Incident | Issue | Link | Linkable | Meeting | NotificationContentTemplate | ObjectMember | Opportunity | Product | QuestionAnswer | RevOrg | RevUser | Runnable | ServiceAccount | Sla | SlaTracker | SnapIn | SnapInVersion | SysUser | Tag | Task | TenantFragment | Ticket | TimeMetricTracker | TimelineChangeEvent | TimelineComment | Uom | UserPreferences | Webhook | Widget) & {
|
|
1731
|
+
export type Atom = (Account | AppFragment | Article | AuthToken | Capability | CodeChange | Command | Conversation | CustomObject | CustomTypeFragment | DevOrg | DevUser | Dm | Engagement | Enhancement | Feature | Group | Incident | Issue | Link | Linkable | MarketplaceItemImportFeature | MarketplaceItemMcpServerFeature | MarketplaceItemOperationFeature | Meeting | NotificationContentTemplate | ObjectMember | Opportunity | Product | QuestionAnswer | RevOrg | RevUser | Runnable | ServiceAccount | Sla | SlaTracker | SnapIn | SnapInVersion | SysUser | Tag | Task | TenantFragment | Ticket | TimeMetricTracker | TimelineChangeEvent | TimelineComment | Uom | UserPreferences | Webhook | Widget) & {
|
|
1699
1732
|
type: AtomType;
|
|
1700
1733
|
};
|
|
1701
1734
|
/** atom-base */
|
|
@@ -1724,6 +1757,11 @@ export interface AtomBase {
|
|
|
1724
1757
|
* @example "2023-01-01T12:00:00.000Z"
|
|
1725
1758
|
*/
|
|
1726
1759
|
modified_date?: string;
|
|
1760
|
+
/**
|
|
1761
|
+
* Version of the object, increments on each update.
|
|
1762
|
+
* @format int64
|
|
1763
|
+
*/
|
|
1764
|
+
object_version?: number;
|
|
1727
1765
|
}
|
|
1728
1766
|
/** atom-base-summary */
|
|
1729
1767
|
export interface AtomBaseSummary {
|
|
@@ -1739,7 +1777,7 @@ export interface AtomBaseSummary {
|
|
|
1739
1777
|
id: string;
|
|
1740
1778
|
}
|
|
1741
1779
|
/** atom-summary */
|
|
1742
|
-
export type AtomSummary = (AccountSummary | AppFragmentSummary | ArticleSummary | AuthTokenSummary | CapabilitySummary | CodeChangeSummary | CommandSummary | ConversationSummary | CustomObjectSummary | CustomTypeFragmentSummary | DevOrgSummary | DevUserSummary | DmSummary | EngagementSummary | EnhancementSummary | FeatureSummary | GroupSummary | IncidentSummary | IssueSummary | LinkSummary | LinkableSummary | MeetingSummary | NotificationContentTemplateSummary | ObjectMemberSummary | OpportunitySummary | ProductSummary | QuestionAnswerSummary | RevOrgSummary | RevUserSummary | RunnableSummary | ServiceAccountSummary | SlaSummary | SlaTrackerSummary | SnapInSummary | SnapInVersionSummary | SysUserSummary | TagSummary | TaskSummary | TenantFragmentSummary | TicketSummary | TimeMetricTrackerSummary | TimelineChangeEventSummary | TimelineCommentSummary | UomSummary | UserPreferencesSummary | WebhookSummary | WidgetSummary) & {
|
|
1780
|
+
export type AtomSummary = (AccountSummary | AppFragmentSummary | ArticleSummary | AuthTokenSummary | CapabilitySummary | CodeChangeSummary | CommandSummary | ConversationSummary | CustomObjectSummary | CustomTypeFragmentSummary | DevOrgSummary | DevUserSummary | DmSummary | EngagementSummary | EnhancementSummary | FeatureSummary | GroupSummary | IncidentSummary | IssueSummary | LinkSummary | LinkableSummary | MarketplaceItemImportFeatureSummary | MarketplaceItemMcpServerFeatureSummary | MarketplaceItemOperationFeatureSummary | MeetingSummary | NotificationContentTemplateSummary | ObjectMemberSummary | OpportunitySummary | ProductSummary | QuestionAnswerSummary | RevOrgSummary | RevUserSummary | RunnableSummary | ServiceAccountSummary | SlaSummary | SlaTrackerSummary | SnapInSummary | SnapInVersionSummary | SysUserSummary | TagSummary | TaskSummary | TenantFragmentSummary | TicketSummary | TimeMetricTrackerSummary | TimelineChangeEventSummary | TimelineCommentSummary | UomSummary | UserPreferencesSummary | WebhookSummary | WidgetSummary) & {
|
|
1743
1781
|
type: AtomType;
|
|
1744
1782
|
};
|
|
1745
1783
|
export declare enum AtomType {
|
|
@@ -1764,6 +1802,9 @@ export declare enum AtomType {
|
|
|
1764
1802
|
Issue = "issue",
|
|
1765
1803
|
Link = "link",
|
|
1766
1804
|
Linkable = "linkable",
|
|
1805
|
+
MarketplaceItemImportFeature = "marketplace_item_import_feature",
|
|
1806
|
+
MarketplaceItemMcpServerFeature = "marketplace_item_mcp_server_feature",
|
|
1807
|
+
MarketplaceItemOperationFeature = "marketplace_item_operation_feature",
|
|
1767
1808
|
Meeting = "meeting",
|
|
1768
1809
|
NotificationContentTemplate = "notification_content_template",
|
|
1769
1810
|
ObjectMember = "object_member",
|
|
@@ -1993,6 +2034,7 @@ export declare enum AuthTokenRequestedTokenType {
|
|
|
1993
2034
|
UrnDevrevParamsOauthTokenTypeAatActAs = "urn:devrev:params:oauth:token-type:aat:act-as",
|
|
1994
2035
|
UrnDevrevParamsOauthTokenTypeAatPublic = "urn:devrev:params:oauth:token-type:aat:public",
|
|
1995
2036
|
UrnDevrevParamsOauthTokenTypeDev = "urn:devrev:params:oauth:token-type:dev",
|
|
2037
|
+
UrnDevrevParamsOauthTokenTypeDevActAsAgent = "urn:devrev:params:oauth:token-type:dev:act-as:agent",
|
|
1996
2038
|
UrnDevrevParamsOauthTokenTypeDevConnect = "urn:devrev:params:oauth:token-type:dev:connect",
|
|
1997
2039
|
UrnDevrevParamsOauthTokenTypeGat = "urn:devrev:params:oauth:token-type:gat",
|
|
1998
2040
|
UrnDevrevParamsOauthTokenTypePat = "urn:devrev:params:oauth:token-type:pat",
|
|
@@ -2509,6 +2551,8 @@ export interface BarVisualizationYAxis {
|
|
|
2509
2551
|
* bar charts.
|
|
2510
2552
|
*/
|
|
2511
2553
|
export interface BarWidgetVisualization {
|
|
2554
|
+
/** The configuration for data labels. */
|
|
2555
|
+
data_labels?: DataLabelConfig;
|
|
2512
2556
|
/** Whether the bar should be stacked. */
|
|
2513
2557
|
is_stacked?: boolean;
|
|
2514
2558
|
/** The scrollbar configuration for chart. */
|
|
@@ -2649,6 +2693,8 @@ export interface ChatsCreateRequestDm {
|
|
|
2649
2693
|
* @maxItems 16
|
|
2650
2694
|
*/
|
|
2651
2695
|
records?: string[];
|
|
2696
|
+
/** The list of members with whom the DM is shared. */
|
|
2697
|
+
shared_with?: SetSharedWithMembership[];
|
|
2652
2698
|
/**
|
|
2653
2699
|
* The users or groups to send direct messages to. The authenticated
|
|
2654
2700
|
* user must be included in this list.
|
|
@@ -2716,6 +2762,7 @@ export type ChatsUpdateRequest = (ChatsUpdateRequestDm | Empty) & {
|
|
|
2716
2762
|
/** chats-update-request-dm */
|
|
2717
2763
|
export interface ChatsUpdateRequestDm {
|
|
2718
2764
|
records?: ChatsUpdateRequestDmRecords;
|
|
2765
|
+
shared_with?: ChatsUpdateRequestDmSharedWith;
|
|
2719
2766
|
users?: ChatsUpdateRequestDmUsers;
|
|
2720
2767
|
}
|
|
2721
2768
|
/** chats-update-request-dm-records */
|
|
@@ -2726,6 +2773,11 @@ export interface ChatsUpdateRequestDmRecords {
|
|
|
2726
2773
|
*/
|
|
2727
2774
|
set?: string[];
|
|
2728
2775
|
}
|
|
2776
|
+
/** chats-update-request-dm-shared-with */
|
|
2777
|
+
export interface ChatsUpdateRequestDmSharedWith {
|
|
2778
|
+
/** Sets the field to the provided membership list. */
|
|
2779
|
+
set?: SetSharedWithMembership[];
|
|
2780
|
+
}
|
|
2729
2781
|
/** chats-update-request-dm-users */
|
|
2730
2782
|
export interface ChatsUpdateRequestDmUsers {
|
|
2731
2783
|
/**
|
|
@@ -3015,6 +3067,8 @@ export interface ColumnVisualizationYAxis {
|
|
|
3015
3067
|
* to column charts.
|
|
3016
3068
|
*/
|
|
3017
3069
|
export interface ColumnWidgetVisualization {
|
|
3070
|
+
/** The configuration for data labels. */
|
|
3071
|
+
data_labels?: DataLabelConfig;
|
|
3018
3072
|
/** Whether the columns should be stacked. */
|
|
3019
3073
|
is_stacked?: boolean;
|
|
3020
3074
|
/** The scrollbar configuration for chart. */
|
|
@@ -3401,6 +3455,52 @@ export declare enum ConfigurationProrationBehavior {
|
|
|
3401
3455
|
CreateProrations = "create_prorations",
|
|
3402
3456
|
None = "none"
|
|
3403
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
|
+
}
|
|
3404
3504
|
/** content-template-base */
|
|
3405
3505
|
export type ContentTemplateBase = AtomBase;
|
|
3406
3506
|
/** content-template-base-summary */
|
|
@@ -3678,6 +3778,8 @@ export interface ConversationsListRequest {
|
|
|
3678
3778
|
* channels.
|
|
3679
3779
|
*/
|
|
3680
3780
|
channels?: string[];
|
|
3781
|
+
/** Provides ways to specify date ranges on objects. */
|
|
3782
|
+
created_date_new?: DateFilter;
|
|
3681
3783
|
/**
|
|
3682
3784
|
* The cursor to resume iteration from. If not provided, then
|
|
3683
3785
|
* iteration starts from the beginning.
|
|
@@ -3735,6 +3837,8 @@ export interface ConversationsListRequest {
|
|
|
3735
3837
|
rev_orgs?: string[];
|
|
3736
3838
|
/** The filter for SLA summary. */
|
|
3737
3839
|
sla_summary?: SlaSummaryFilter;
|
|
3840
|
+
/** Fields to sort the conversations by and the direction to sort them. */
|
|
3841
|
+
sort_by?: string[];
|
|
3738
3842
|
/** Filters for conversations with any of the provided source channels. */
|
|
3739
3843
|
source_channel?: string[];
|
|
3740
3844
|
/**
|
|
@@ -4753,6 +4857,11 @@ export interface CustomSchemaFragmentsSetRequestTenantFragment {
|
|
|
4753
4857
|
* @pattern ^[A-Z]{2,10}$
|
|
4754
4858
|
*/
|
|
4755
4859
|
id_prefix?: string;
|
|
4860
|
+
/**
|
|
4861
|
+
* The display name of the custom leaf type.
|
|
4862
|
+
* @format text
|
|
4863
|
+
*/
|
|
4864
|
+
leaf_type_display_name?: string;
|
|
4756
4865
|
/** List of Per-DevOrg stock field overrides. */
|
|
4757
4866
|
stock_field_overrides?: StockFieldOverride[];
|
|
4758
4867
|
}
|
|
@@ -5096,6 +5205,21 @@ export type Dashboard = AtomBase;
|
|
|
5096
5205
|
* and widgets.
|
|
5097
5206
|
*/
|
|
5098
5207
|
export type DashboardFilter = object;
|
|
5208
|
+
/**
|
|
5209
|
+
* data-label-config
|
|
5210
|
+
* The configuration for data labels.
|
|
5211
|
+
*/
|
|
5212
|
+
export interface DataLabelConfig {
|
|
5213
|
+
/** The display mode for data labels. */
|
|
5214
|
+
display_mode?: DataLabelConfigDisplayMode;
|
|
5215
|
+
/** Whether data labels are enabled. */
|
|
5216
|
+
enable?: boolean;
|
|
5217
|
+
}
|
|
5218
|
+
/** The display mode for data labels. */
|
|
5219
|
+
export declare enum DataLabelConfigDisplayMode {
|
|
5220
|
+
Percentage = "percentage",
|
|
5221
|
+
Value = "value"
|
|
5222
|
+
}
|
|
5099
5223
|
/**
|
|
5100
5224
|
* data-source-join
|
|
5101
5225
|
* A list of possible joins for the data source. Follows foreign key
|
|
@@ -6061,6 +6185,11 @@ export interface DevUsersSelfUpdateRequest {
|
|
|
6061
6185
|
* @format text
|
|
6062
6186
|
*/
|
|
6063
6187
|
full_name?: string;
|
|
6188
|
+
/**
|
|
6189
|
+
* The job function of the Dev user.
|
|
6190
|
+
* @format text
|
|
6191
|
+
*/
|
|
6192
|
+
job_function?: string;
|
|
6064
6193
|
/** Job history of the Dev user. */
|
|
6065
6194
|
job_history?: DevUsersUpdateJobHistoryItem[];
|
|
6066
6195
|
/** Job title of the Dev User. */
|
|
@@ -6201,6 +6330,11 @@ export interface DevUsersUpdateRequest {
|
|
|
6201
6330
|
* @format id
|
|
6202
6331
|
*/
|
|
6203
6332
|
id: string;
|
|
6333
|
+
/**
|
|
6334
|
+
* The job function of the Dev user.
|
|
6335
|
+
* @format text
|
|
6336
|
+
*/
|
|
6337
|
+
job_function?: string;
|
|
6204
6338
|
/** Job history of the Dev user. */
|
|
6205
6339
|
job_history?: DevUsersUpdateJobHistoryItem[];
|
|
6206
6340
|
/** Job title of the Dev User. */
|
|
@@ -6909,7 +7043,7 @@ export interface Error {
|
|
|
6909
7043
|
* error-bad-request
|
|
6910
7044
|
* Describes a error due to a bad request by the client.
|
|
6911
7045
|
*/
|
|
6912
|
-
export type ErrorBadRequest = ErrorBase & (ErrorBadRequestArtifactAlreadyAttachedToAParent | ErrorBadRequestBadRequest | ErrorBadRequestCustomizationValidationError | ErrorBadRequestGroupHierarchyCircularDependency | ErrorBadRequestGroupHierarchyDepthExceeded | ErrorBadRequestGroupHierarchyInvalidParent | ErrorBadRequestInvalidApiVersion | ErrorBadRequestInvalidContentType | ErrorBadRequestInvalidEnumValue | ErrorBadRequestInvalidField | ErrorBadRequestInvalidId | ErrorBadRequestMergeWorksError | ErrorBadRequestMissingDependency | ErrorBadRequestMissingRequiredField | ErrorBadRequestParseError | ErrorBadRequestStaleSchemaFragments | ErrorBadRequestUnexpectedIdType | ErrorBadRequestUnexpectedJsonType | ErrorBadRequestValueNotPermitted | ErrorBadRequestWorkflowComponentValidationErrors) & {
|
|
7046
|
+
export type ErrorBadRequest = ErrorBase & (ErrorBadRequestArtifactAlreadyAttachedToAParent | ErrorBadRequestBadRequest | ErrorBadRequestCustomizationValidationError | ErrorBadRequestGroupHierarchyCircularDependency | ErrorBadRequestGroupHierarchyDepthExceeded | ErrorBadRequestGroupHierarchyInvalidParent | ErrorBadRequestIdNotFound | ErrorBadRequestInvalidApiVersion | ErrorBadRequestInvalidContentType | ErrorBadRequestInvalidEnumValue | ErrorBadRequestInvalidField | ErrorBadRequestInvalidId | ErrorBadRequestMergeWorksError | ErrorBadRequestMissingDependency | ErrorBadRequestMissingRequiredField | ErrorBadRequestParseError | ErrorBadRequestSpaceValidationErrors | ErrorBadRequestStaleSchemaFragments | ErrorBadRequestUnexpectedIdType | ErrorBadRequestUnexpectedJsonType | ErrorBadRequestValueNotPermitted | ErrorBadRequestWorkflowComponentValidationErrors) & {
|
|
6913
7047
|
type: ErrorBadRequestType;
|
|
6914
7048
|
};
|
|
6915
7049
|
/** error-bad-request-artifact-already-attached-to-a-parent */
|
|
@@ -7026,6 +7160,19 @@ export declare enum ErrorBadRequestGroupHierarchyInvalidParentReason {
|
|
|
7026
7160
|
MultipleParents = "multiple_parents",
|
|
7027
7161
|
ParentNotLinkedToSpace = "parent_not_linked_to_space"
|
|
7028
7162
|
}
|
|
7163
|
+
/** error-bad-request-id-not-found */
|
|
7164
|
+
export interface ErrorBadRequestIdNotFound {
|
|
7165
|
+
/**
|
|
7166
|
+
* The field for which the object wasn't found.
|
|
7167
|
+
* @format text
|
|
7168
|
+
*/
|
|
7169
|
+
field_name?: string;
|
|
7170
|
+
/**
|
|
7171
|
+
* The ID of the object that wasn't found.
|
|
7172
|
+
* @format id
|
|
7173
|
+
*/
|
|
7174
|
+
id: string;
|
|
7175
|
+
}
|
|
7029
7176
|
/** error-bad-request-invalid-api-version */
|
|
7030
7177
|
export interface ErrorBadRequestInvalidApiVersion {
|
|
7031
7178
|
/**
|
|
@@ -7200,6 +7347,83 @@ export interface ErrorBadRequestMissingRequiredField {
|
|
|
7200
7347
|
}
|
|
7201
7348
|
/** error-bad-request-parse-error */
|
|
7202
7349
|
export type ErrorBadRequestParseError = object;
|
|
7350
|
+
/**
|
|
7351
|
+
* error-bad-request-space-group-already-linked
|
|
7352
|
+
* The group is already linked to another space.
|
|
7353
|
+
*/
|
|
7354
|
+
export type ErrorBadRequestSpaceGroupAlreadyLinked = object;
|
|
7355
|
+
/**
|
|
7356
|
+
* error-bad-request-space-group-hierarchy-depth-exceeded
|
|
7357
|
+
* Linking the group would exceed the maximum group hierarchy depth.
|
|
7358
|
+
*/
|
|
7359
|
+
export type ErrorBadRequestSpaceGroupHierarchyDepthExceeded = object;
|
|
7360
|
+
/**
|
|
7361
|
+
* error-bad-request-space-group-hierarchy-invalid-parent
|
|
7362
|
+
* The group has multiple parents, which is not allowed.
|
|
7363
|
+
*/
|
|
7364
|
+
export type ErrorBadRequestSpaceGroupHierarchyInvalidParent = object;
|
|
7365
|
+
/**
|
|
7366
|
+
* error-bad-request-space-group-not-found
|
|
7367
|
+
* The group does not exist or is deleted.
|
|
7368
|
+
*/
|
|
7369
|
+
export type ErrorBadRequestSpaceGroupNotFound = object;
|
|
7370
|
+
/**
|
|
7371
|
+
* error-bad-request-space-group-parent-not-linked-to-space
|
|
7372
|
+
* The parent group is not linked to a space.
|
|
7373
|
+
*/
|
|
7374
|
+
export type ErrorBadRequestSpaceGroupParentNotLinkedToSpace = object;
|
|
7375
|
+
/**
|
|
7376
|
+
* error-bad-request-space-key-change-limit-exceeded
|
|
7377
|
+
* The key change limit has been reached.
|
|
7378
|
+
*/
|
|
7379
|
+
export type ErrorBadRequestSpaceKeyChangeLimitExceeded = object;
|
|
7380
|
+
/**
|
|
7381
|
+
* error-bad-request-space-key-change-rate-limited
|
|
7382
|
+
* The key was changed too recently; rate limit not elapsed.
|
|
7383
|
+
*/
|
|
7384
|
+
export type ErrorBadRequestSpaceKeyChangeRateLimited = object;
|
|
7385
|
+
/**
|
|
7386
|
+
* error-bad-request-space-key-count-limit-exceeded
|
|
7387
|
+
* Adding a new key would exceed the maximum allowed key count.
|
|
7388
|
+
*/
|
|
7389
|
+
export type ErrorBadRequestSpaceKeyCountLimitExceeded = object;
|
|
7390
|
+
/**
|
|
7391
|
+
* error-bad-request-space-management-disabled
|
|
7392
|
+
* Space management is not enabled for this organization.
|
|
7393
|
+
*/
|
|
7394
|
+
export type ErrorBadRequestSpaceManagementDisabled = object;
|
|
7395
|
+
/**
|
|
7396
|
+
* error-bad-request-space-reserved-key
|
|
7397
|
+
* The requested space key is reserved by the system.
|
|
7398
|
+
*/
|
|
7399
|
+
export type ErrorBadRequestSpaceReservedKey = object;
|
|
7400
|
+
/**
|
|
7401
|
+
* error-bad-request-space-validation-error
|
|
7402
|
+
* A space validation error.
|
|
7403
|
+
*/
|
|
7404
|
+
export type ErrorBadRequestSpaceValidationError = (ErrorBadRequestSpaceGroupAlreadyLinked | ErrorBadRequestSpaceGroupHierarchyDepthExceeded | ErrorBadRequestSpaceGroupHierarchyInvalidParent | ErrorBadRequestSpaceGroupNotFound | ErrorBadRequestSpaceGroupParentNotLinkedToSpace | ErrorBadRequestSpaceKeyChangeLimitExceeded | ErrorBadRequestSpaceKeyChangeRateLimited | ErrorBadRequestSpaceKeyCountLimitExceeded | ErrorBadRequestSpaceManagementDisabled | ErrorBadRequestSpaceReservedKey) & {
|
|
7405
|
+
type: ErrorBadRequestSpaceValidationErrorType;
|
|
7406
|
+
};
|
|
7407
|
+
export declare enum ErrorBadRequestSpaceValidationErrorType {
|
|
7408
|
+
SpaceGroupAlreadyLinked = "space_group_already_linked",
|
|
7409
|
+
SpaceGroupHierarchyDepthExceeded = "space_group_hierarchy_depth_exceeded",
|
|
7410
|
+
SpaceGroupHierarchyInvalidParent = "space_group_hierarchy_invalid_parent",
|
|
7411
|
+
SpaceGroupNotFound = "space_group_not_found",
|
|
7412
|
+
SpaceGroupParentNotLinkedToSpace = "space_group_parent_not_linked_to_space",
|
|
7413
|
+
SpaceKeyChangeLimitExceeded = "space_key_change_limit_exceeded",
|
|
7414
|
+
SpaceKeyChangeRateLimited = "space_key_change_rate_limited",
|
|
7415
|
+
SpaceKeyCountLimitExceeded = "space_key_count_limit_exceeded",
|
|
7416
|
+
SpaceManagementDisabled = "space_management_disabled",
|
|
7417
|
+
SpaceReservedKey = "space_reserved_key"
|
|
7418
|
+
}
|
|
7419
|
+
/**
|
|
7420
|
+
* error-bad-request-space-validation-errors
|
|
7421
|
+
* Error indicating one or more space validation failures.
|
|
7422
|
+
*/
|
|
7423
|
+
export interface ErrorBadRequestSpaceValidationErrors {
|
|
7424
|
+
/** The list of space validation errors. */
|
|
7425
|
+
errors?: ErrorBadRequestSpaceValidationError[];
|
|
7426
|
+
}
|
|
7203
7427
|
/**
|
|
7204
7428
|
* error-bad-request-stale-schema-fragments
|
|
7205
7429
|
* Error indicating that the request contained one or more stale schema
|
|
@@ -7216,6 +7440,7 @@ export declare enum ErrorBadRequestType {
|
|
|
7216
7440
|
GroupHierarchyCircularDependency = "group_hierarchy_circular_dependency",
|
|
7217
7441
|
GroupHierarchyDepthExceeded = "group_hierarchy_depth_exceeded",
|
|
7218
7442
|
GroupHierarchyInvalidParent = "group_hierarchy_invalid_parent",
|
|
7443
|
+
IdNotFound = "id_not_found",
|
|
7219
7444
|
InvalidApiVersion = "invalid_api_version",
|
|
7220
7445
|
InvalidContentType = "invalid_content_type",
|
|
7221
7446
|
InvalidEnumValue = "invalid_enum_value",
|
|
@@ -7225,6 +7450,7 @@ export declare enum ErrorBadRequestType {
|
|
|
7225
7450
|
MissingDependency = "missing_dependency",
|
|
7226
7451
|
MissingRequiredField = "missing_required_field",
|
|
7227
7452
|
ParseError = "parse_error",
|
|
7453
|
+
SpaceValidationErrors = "space_validation_errors",
|
|
7228
7454
|
StaleSchemaFragments = "stale_schema_fragments",
|
|
7229
7455
|
UnexpectedIdType = "unexpected_id_type",
|
|
7230
7456
|
UnexpectedJsonType = "unexpected_json_type",
|
|
@@ -7399,7 +7625,10 @@ export type ErrorForbidden = ErrorBase & ErrorForbiddenForbidden & {
|
|
|
7399
7625
|
type: ErrorForbiddenType;
|
|
7400
7626
|
};
|
|
7401
7627
|
/** error-forbidden-forbidden */
|
|
7402
|
-
export
|
|
7628
|
+
export interface ErrorForbiddenForbidden {
|
|
7629
|
+
/** The ID(s) of the objects that were forbidden to the user. */
|
|
7630
|
+
object_ids?: string[];
|
|
7631
|
+
}
|
|
7403
7632
|
export declare enum ErrorForbiddenType {
|
|
7404
7633
|
Forbidden = "forbidden"
|
|
7405
7634
|
}
|
|
@@ -7442,6 +7671,20 @@ export interface ErrorRequestEntityTooLargeRequestEntityTooLarge {
|
|
|
7442
7671
|
export declare enum ErrorRequestEntityTooLargeType {
|
|
7443
7672
|
RequestEntityTooLarge = "request_entity_too_large"
|
|
7444
7673
|
}
|
|
7674
|
+
/** error-see-other */
|
|
7675
|
+
export type ErrorSeeOther = ErrorBase & ErrorSeeOtherSeeOther & {
|
|
7676
|
+
type: ErrorSeeOtherType;
|
|
7677
|
+
/**
|
|
7678
|
+
* The URL to redirect to.
|
|
7679
|
+
* @format text
|
|
7680
|
+
*/
|
|
7681
|
+
location: string;
|
|
7682
|
+
};
|
|
7683
|
+
/** error-see-other-see-other */
|
|
7684
|
+
export type ErrorSeeOtherSeeOther = object;
|
|
7685
|
+
export declare enum ErrorSeeOtherType {
|
|
7686
|
+
SeeOther = "see_other"
|
|
7687
|
+
}
|
|
7445
7688
|
/** error-service-unavailable */
|
|
7446
7689
|
export type ErrorServiceUnavailable = ErrorBase & ErrorServiceUnavailableServiceUnavailable & {
|
|
7447
7690
|
type: ErrorServiceUnavailableType;
|
|
@@ -8056,6 +8299,7 @@ export declare enum ExternalSystemType {
|
|
|
8056
8299
|
SalesforceSales = "salesforce_sales",
|
|
8057
8300
|
SalesforceService = "salesforce_service",
|
|
8058
8301
|
Servicenow = "servicenow",
|
|
8302
|
+
Sim = "sim",
|
|
8059
8303
|
Zendesk = "zendesk"
|
|
8060
8304
|
}
|
|
8061
8305
|
/** feature */
|
|
@@ -8638,6 +8882,10 @@ export type GroupedVista = VistaBase & {
|
|
|
8638
8882
|
filter_type: GroupedVistaFilterType;
|
|
8639
8883
|
/** Denotes the use case of the grouped vista. */
|
|
8640
8884
|
flavor?: GroupedVistaFlavor;
|
|
8885
|
+
/** Automations specific to the Sprint Board vistas. */
|
|
8886
|
+
sprint_board_automation?: SprintBoardAutomation;
|
|
8887
|
+
/** Settings specific to sprint board vistas. */
|
|
8888
|
+
sprint_board_config?: SprintBoardConfig;
|
|
8641
8889
|
};
|
|
8642
8890
|
/** Type of DevRev object for which the grouped vista is applicable. */
|
|
8643
8891
|
export declare enum GroupedVistaFilterType {
|
|
@@ -8739,11 +8987,6 @@ export interface GroupsListRequest {
|
|
|
8739
8987
|
mode?: ListMode;
|
|
8740
8988
|
/** Filters the groups on the basis of group name. */
|
|
8741
8989
|
name?: string[];
|
|
8742
|
-
/**
|
|
8743
|
-
* Filters the groups on the basis of parent group(s).
|
|
8744
|
-
* @deprecated
|
|
8745
|
-
*/
|
|
8746
|
-
parents?: string[];
|
|
8747
8990
|
/** Comma-separated fields to sort the groups by. */
|
|
8748
8991
|
sort_by?: string[];
|
|
8749
8992
|
space?: SpaceFilter;
|
|
@@ -9037,11 +9280,24 @@ export type Issue = WorkBase & {
|
|
|
9037
9280
|
actual_start_date?: string;
|
|
9038
9281
|
/** Parts associated based on git events. */
|
|
9039
9282
|
developed_with?: PartSummary[];
|
|
9283
|
+
/**
|
|
9284
|
+
* The space scoped display ID alias of the issue.
|
|
9285
|
+
* @format text
|
|
9286
|
+
*/
|
|
9287
|
+
display_id_alias?: string;
|
|
9040
9288
|
/**
|
|
9041
9289
|
* Estimated effort to complete the issue.
|
|
9042
9290
|
* @format double
|
|
9043
9291
|
*/
|
|
9044
9292
|
estimated_effort?: number;
|
|
9293
|
+
/**
|
|
9294
|
+
* Timestamp of the last code push (e.g. latest commit on all PRs with
|
|
9295
|
+
* this issue). Note the Git-based snap-in populates this field, and
|
|
9296
|
+
* should be installed in the org for auto-population.
|
|
9297
|
+
* @format date-time
|
|
9298
|
+
* @example "2023-01-01T12:00:00.000Z"
|
|
9299
|
+
*/
|
|
9300
|
+
last_code_activity?: string;
|
|
9045
9301
|
/** Priority of the work based upon impact and criticality. */
|
|
9046
9302
|
priority?: IssuePriority;
|
|
9047
9303
|
/** The properties of an enum value. */
|
|
@@ -9049,6 +9305,11 @@ export type Issue = WorkBase & {
|
|
|
9049
9305
|
/** SLA summary for the object. */
|
|
9050
9306
|
sla_summary?: ArchetypeSlaSummary;
|
|
9051
9307
|
sla_tracker?: SlaTrackerSummary;
|
|
9308
|
+
/**
|
|
9309
|
+
* The space associated with the object.
|
|
9310
|
+
* @format id
|
|
9311
|
+
*/
|
|
9312
|
+
space?: string;
|
|
9052
9313
|
/** Vista group item. */
|
|
9053
9314
|
sprint?: VistaGroupItemSummary;
|
|
9054
9315
|
/**
|
|
@@ -9067,10 +9328,20 @@ export declare enum IssuePriority {
|
|
|
9067
9328
|
}
|
|
9068
9329
|
/** issue-summary */
|
|
9069
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;
|
|
9070
9336
|
/** Priority of the work based upon impact and criticality. */
|
|
9071
9337
|
priority?: IssuePriority;
|
|
9072
9338
|
/** The properties of an enum value. */
|
|
9073
9339
|
priority_v2?: EnumValueSummary;
|
|
9340
|
+
/**
|
|
9341
|
+
* The space associated with the object.
|
|
9342
|
+
* @format id
|
|
9343
|
+
*/
|
|
9344
|
+
space?: string;
|
|
9074
9345
|
/** Vista group item. */
|
|
9075
9346
|
sprint?: VistaGroupItemSummary;
|
|
9076
9347
|
};
|
|
@@ -9117,6 +9388,7 @@ export declare enum JobCategory {
|
|
|
9117
9388
|
ExportCustomObject = "export_custom_object",
|
|
9118
9389
|
ExportDevuser = "export_devuser",
|
|
9119
9390
|
ExportIncident = "export_incident",
|
|
9391
|
+
ExportMeeting = "export_meeting",
|
|
9120
9392
|
ExportPart = "export_part",
|
|
9121
9393
|
ExportRevuser = "export_revuser",
|
|
9122
9394
|
ExportWork = "export_work",
|
|
@@ -9126,6 +9398,7 @@ export declare enum JobCategory {
|
|
|
9126
9398
|
MergeRevorg = "merge_revorg",
|
|
9127
9399
|
MergeRevuser = "merge_revuser",
|
|
9128
9400
|
MergeTicket = "merge_ticket",
|
|
9401
|
+
MigrateVistaReports = "migrate_vista_reports",
|
|
9129
9402
|
MoveRevorg = "move_revorg",
|
|
9130
9403
|
MoveRevuser = "move_revuser",
|
|
9131
9404
|
OasisDataExport = "oasis_data_export",
|
|
@@ -9528,7 +9801,7 @@ export interface LinksCreateRequest {
|
|
|
9528
9801
|
*/
|
|
9529
9802
|
custom_link_type?: string;
|
|
9530
9803
|
/** Type of link used to define the relationship. */
|
|
9531
|
-
link_type
|
|
9804
|
+
link_type?: LinkType;
|
|
9532
9805
|
/**
|
|
9533
9806
|
* The ID of the source object.
|
|
9534
9807
|
* @format id
|
|
@@ -9673,13 +9946,18 @@ export interface LinksListResponse {
|
|
|
9673
9946
|
* The request to replace a link.
|
|
9674
9947
|
*/
|
|
9675
9948
|
export interface LinksReplaceRequest {
|
|
9949
|
+
/**
|
|
9950
|
+
* The ID of the custom link type, for the new link to be created.
|
|
9951
|
+
* @format id
|
|
9952
|
+
*/
|
|
9953
|
+
custom_link_type?: string;
|
|
9676
9954
|
/**
|
|
9677
9955
|
* The ID of the link to be replaced.
|
|
9678
9956
|
* @format id
|
|
9679
9957
|
*/
|
|
9680
9958
|
id: string;
|
|
9681
9959
|
/** Type of link used to define the relationship. */
|
|
9682
|
-
link_type
|
|
9960
|
+
link_type?: LinkType;
|
|
9683
9961
|
/**
|
|
9684
9962
|
* The ID of the source object.
|
|
9685
9963
|
* @format id
|
|
@@ -9709,9 +9987,146 @@ export declare enum ListMode {
|
|
|
9709
9987
|
After = "after",
|
|
9710
9988
|
Before = "before"
|
|
9711
9989
|
}
|
|
9990
|
+
/** marketplace-item-feature-base */
|
|
9991
|
+
export type MarketplaceItemFeatureBase = AtomBase & {
|
|
9992
|
+
/**
|
|
9993
|
+
* Description of the marketplace item feature.
|
|
9994
|
+
* @format text
|
|
9995
|
+
*/
|
|
9996
|
+
description?: string;
|
|
9997
|
+
/** Type of the marketplace item feature. */
|
|
9998
|
+
feature_type?: MarketplaceItemFeatureFeatureType;
|
|
9999
|
+
marketplace_item?: MarketplaceItemSummary;
|
|
10000
|
+
/**
|
|
10001
|
+
* Name of the marketplace item feature.
|
|
10002
|
+
* @format text
|
|
10003
|
+
*/
|
|
10004
|
+
name?: string;
|
|
10005
|
+
};
|
|
10006
|
+
/** marketplace-item-feature-base-summary */
|
|
10007
|
+
export type MarketplaceItemFeatureBaseSummary = AtomBaseSummary & {
|
|
10008
|
+
/**
|
|
10009
|
+
* Name of the marketplace item feature.
|
|
10010
|
+
* @format text
|
|
10011
|
+
*/
|
|
10012
|
+
name?: string;
|
|
10013
|
+
};
|
|
10014
|
+
/** Type of the marketplace item feature. */
|
|
10015
|
+
export declare enum MarketplaceItemFeatureFeatureType {
|
|
10016
|
+
Import = "import",
|
|
10017
|
+
McpServer = "mcp_server",
|
|
10018
|
+
Operation = "operation"
|
|
10019
|
+
}
|
|
10020
|
+
/** marketplace-item-import-feature */
|
|
10021
|
+
export type MarketplaceItemImportFeature = MarketplaceItemFeatureBase & {
|
|
10022
|
+
/** Capabilities of the import feature (e.g. TIME_SCOPED_SYNCS, etc.). */
|
|
10023
|
+
capabilities?: string[];
|
|
10024
|
+
};
|
|
10025
|
+
/** marketplace-item-import-feature-summary */
|
|
10026
|
+
export type MarketplaceItemImportFeatureSummary = MarketplaceItemFeatureBaseSummary;
|
|
10027
|
+
/**
|
|
10028
|
+
* Marketplace listing type defines what backing service will be used when
|
|
10029
|
+
* validating a create marketplace submission request, installing
|
|
10030
|
+
* marketplace items in some organizations, etc. It is important to note
|
|
10031
|
+
* that marketplace listings of type app are not backed by any service and
|
|
10032
|
+
* are only placeholders for existing functionality in the DevRev platform
|
|
10033
|
+
* (e.g. Jira AirSync).
|
|
10034
|
+
*/
|
|
10035
|
+
export declare enum MarketplaceItemItemType {
|
|
10036
|
+
App = "app",
|
|
10037
|
+
External = "external",
|
|
10038
|
+
Snapin = "snapin"
|
|
10039
|
+
}
|
|
10040
|
+
/** marketplace-item-mcp-server-feature */
|
|
10041
|
+
export type MarketplaceItemMcpServerFeature = MarketplaceItemFeatureBase & {
|
|
10042
|
+
/**
|
|
10043
|
+
* Server type represents the type of the MCP server. The server type can
|
|
10044
|
+
* be either 'local' or 'remote'.
|
|
10045
|
+
*/
|
|
10046
|
+
server_type?: MarketplaceItemMcpServerFeatureServerType;
|
|
10047
|
+
/**
|
|
10048
|
+
* URL of the remote MCP server.
|
|
10049
|
+
* @format text
|
|
10050
|
+
*/
|
|
10051
|
+
url?: string;
|
|
10052
|
+
};
|
|
10053
|
+
/**
|
|
10054
|
+
* Server type represents the type of the MCP server. The server type can
|
|
10055
|
+
* be either 'local' or 'remote'.
|
|
10056
|
+
*/
|
|
10057
|
+
export declare enum MarketplaceItemMcpServerFeatureServerType {
|
|
10058
|
+
Local = "local",
|
|
10059
|
+
Remote = "remote"
|
|
10060
|
+
}
|
|
10061
|
+
/** marketplace-item-mcp-server-feature-summary */
|
|
10062
|
+
export type MarketplaceItemMcpServerFeatureSummary = MarketplaceItemFeatureBaseSummary;
|
|
10063
|
+
/** marketplace-item-operation-feature */
|
|
10064
|
+
export type MarketplaceItemOperationFeature = MarketplaceItemFeatureBase & {
|
|
10065
|
+
/**
|
|
10066
|
+
* Operation type represents the type of the workflow operation. The
|
|
10067
|
+
* operation type can be either 'action', 'trigger' or 'control'.
|
|
10068
|
+
*/
|
|
10069
|
+
operation_type?: MarketplaceItemOperationFeatureOperationType;
|
|
10070
|
+
};
|
|
10071
|
+
/**
|
|
10072
|
+
* Operation type represents the type of the workflow operation. The
|
|
10073
|
+
* operation type can be either 'action', 'trigger' or 'control'.
|
|
10074
|
+
*/
|
|
10075
|
+
export declare enum MarketplaceItemOperationFeatureOperationType {
|
|
10076
|
+
Action = "action",
|
|
10077
|
+
Control = "control",
|
|
10078
|
+
Trigger = "trigger"
|
|
10079
|
+
}
|
|
10080
|
+
/** marketplace-item-operation-feature-summary */
|
|
10081
|
+
export type MarketplaceItemOperationFeatureSummary = MarketplaceItemFeatureBaseSummary;
|
|
10082
|
+
/** marketplace-item-summary */
|
|
10083
|
+
export type MarketplaceItemSummary = AtomBaseSummary & {
|
|
10084
|
+
/**
|
|
10085
|
+
* Marketplace listing type defines what backing service will be used when
|
|
10086
|
+
* validating a create marketplace submission request, installing
|
|
10087
|
+
* marketplace items in some organizations, etc. It is important to note
|
|
10088
|
+
* that marketplace listings of type app are not backed by any service and
|
|
10089
|
+
* are only placeholders for existing functionality in the DevRev platform
|
|
10090
|
+
* (e.g. Jira AirSync).
|
|
10091
|
+
*/
|
|
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;
|
|
10101
|
+
/**
|
|
10102
|
+
* Name of the marketplace listing. The value for a name can be any
|
|
10103
|
+
* string with a minimum length of 3 and a maximum length of 128.
|
|
10104
|
+
* @format text
|
|
10105
|
+
*/
|
|
10106
|
+
name?: string;
|
|
10107
|
+
/**
|
|
10108
|
+
* URL slug of the marketplace item. Slug cannot be changed after it
|
|
10109
|
+
* has been set. Its' value needs to be in the right format and it has
|
|
10110
|
+
* to be unique per marketplace. Slug value must start with a
|
|
10111
|
+
* lowercase letter, followed by zero or more lowercase letters or
|
|
10112
|
+
* hyphens, and must end with a lowercase letter. For example, a valid
|
|
10113
|
+
* slug value might be 'my-automation', but an invalid value might be
|
|
10114
|
+
* 'MyAutomation' or 'my-automation-1'.
|
|
10115
|
+
* @format text
|
|
10116
|
+
*/
|
|
10117
|
+
slug?: string;
|
|
10118
|
+
/**
|
|
10119
|
+
* Tagline is a one-liner description of the marketplace listing. It
|
|
10120
|
+
* is used when presenting a marketplace listing on the home page.
|
|
10121
|
+
* @format text
|
|
10122
|
+
*/
|
|
10123
|
+
tagline?: string;
|
|
10124
|
+
};
|
|
9712
10125
|
/**
|
|
9713
10126
|
* meerkat-widget-column-function
|
|
9714
|
-
*
|
|
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.
|
|
9715
10130
|
*/
|
|
9716
10131
|
export interface MeerkatWidgetColumnFunction {
|
|
9717
10132
|
/** The type of the function. */
|
|
@@ -9738,7 +10153,11 @@ export declare enum MeerkatWidgetColumnFunctionType {
|
|
|
9738
10153
|
export interface MeerkatWidgetColumnProjection {
|
|
9739
10154
|
/** The data type of the column generated by the SQL expression. */
|
|
9740
10155
|
type: MeerkatWidgetColumnProjectionType;
|
|
9741
|
-
/**
|
|
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
|
+
*/
|
|
9742
10161
|
function?: MeerkatWidgetColumnFunction;
|
|
9743
10162
|
/**
|
|
9744
10163
|
* The SQL expression used to extract or transform the column from the
|
|
@@ -9746,10 +10165,18 @@ export interface MeerkatWidgetColumnProjection {
|
|
|
9746
10165
|
* @format text
|
|
9747
10166
|
*/
|
|
9748
10167
|
sql_expression: string;
|
|
9749
|
-
/**
|
|
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
|
+
*/
|
|
9750
10173
|
timestamp_rollup?: MeerkatWidgetColumnProjectionTimestampRollup;
|
|
9751
10174
|
}
|
|
9752
|
-
/**
|
|
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
|
+
*/
|
|
9753
10180
|
export declare enum MeerkatWidgetColumnProjectionTimestampRollup {
|
|
9754
10181
|
Day = "day",
|
|
9755
10182
|
Hour = "hour",
|
|
@@ -9802,14 +10229,16 @@ export type Meeting = AtomBase & {
|
|
|
9802
10229
|
* @format text
|
|
9803
10230
|
*/
|
|
9804
10231
|
external_ref?: string;
|
|
10232
|
+
/** External reference IDs associated with the meeting. */
|
|
10233
|
+
external_refs?: string[];
|
|
9805
10234
|
/**
|
|
9806
10235
|
* External URL associated with the meeting.
|
|
9807
10236
|
* @format text
|
|
9808
10237
|
*/
|
|
9809
10238
|
external_url?: string;
|
|
9810
10239
|
/** The members in the meeting. */
|
|
9811
|
-
members
|
|
9812
|
-
organizer?:
|
|
10240
|
+
members?: AtomSummary[];
|
|
10241
|
+
organizer?: AtomSummary;
|
|
9813
10242
|
parent?: AtomSummary;
|
|
9814
10243
|
recording?: ArtifactSummary;
|
|
9815
10244
|
/**
|
|
@@ -9852,6 +10281,7 @@ export type Meeting = AtomBase & {
|
|
|
9852
10281
|
*/
|
|
9853
10282
|
title?: string;
|
|
9854
10283
|
transcript?: ArtifactSummary;
|
|
10284
|
+
transcript_article?: ArticleSummary;
|
|
9855
10285
|
/** The properties of an enum value. */
|
|
9856
10286
|
visibility?: EnumValue;
|
|
9857
10287
|
};
|
|
@@ -9986,7 +10416,7 @@ export interface MeetingsCreateRequest {
|
|
|
9986
10416
|
external_url?: string;
|
|
9987
10417
|
/**
|
|
9988
10418
|
* IDs of the users or groups that were part of the meeting.
|
|
9989
|
-
* @maxItems
|
|
10419
|
+
* @maxItems 2000
|
|
9990
10420
|
* @minItems 1
|
|
9991
10421
|
* @example ["DEVU-12345"]
|
|
9992
10422
|
*/
|
|
@@ -10037,6 +10467,12 @@ export interface MeetingsCreateRequest {
|
|
|
10037
10467
|
* @example "ARTIFACT-12345"
|
|
10038
10468
|
*/
|
|
10039
10469
|
transcript?: string;
|
|
10470
|
+
/**
|
|
10471
|
+
* The article for the transcript of the meeting.
|
|
10472
|
+
* @format id
|
|
10473
|
+
* @example "ART-12345"
|
|
10474
|
+
*/
|
|
10475
|
+
transcript_article?: string;
|
|
10040
10476
|
}
|
|
10041
10477
|
/** meetings-create-response */
|
|
10042
10478
|
export interface MeetingsCreateResponse {
|
|
@@ -10065,6 +10501,7 @@ export interface MeetingsFilterLinkSummaryFilter {
|
|
|
10065
10501
|
/**
|
|
10066
10502
|
* Filters for target id in links associated with the meeting.
|
|
10067
10503
|
* @format id
|
|
10504
|
+
* @example "ACC-12345"
|
|
10068
10505
|
*/
|
|
10069
10506
|
target?: string;
|
|
10070
10507
|
/**
|
|
@@ -10244,6 +10681,12 @@ export interface MeetingsUpdateRequest {
|
|
|
10244
10681
|
* @example "ARTIFACT-12345"
|
|
10245
10682
|
*/
|
|
10246
10683
|
transcript?: string;
|
|
10684
|
+
/**
|
|
10685
|
+
* The article for the transcript of the meeting.
|
|
10686
|
+
* @format id
|
|
10687
|
+
* @example "ART-12345"
|
|
10688
|
+
*/
|
|
10689
|
+
transcript_article?: string;
|
|
10247
10690
|
}
|
|
10248
10691
|
/** meetings-update-request-artifact-ids */
|
|
10249
10692
|
export interface MeetingsUpdateRequestArtifactIds {
|
|
@@ -10975,6 +11418,16 @@ export interface Money {
|
|
|
10975
11418
|
*/
|
|
10976
11419
|
currency?: string;
|
|
10977
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
|
+
}
|
|
10978
11431
|
/** notification-content-template */
|
|
10979
11432
|
export type NotificationContentTemplate = ContentTemplateBase;
|
|
10980
11433
|
/** notification-content-template-summary */
|
|
@@ -10991,6 +11444,39 @@ export type ObjectMemberSummary = AtomBaseSummary & {
|
|
|
10991
11444
|
/** Sync information for records synced into/from DevRev. */
|
|
10992
11445
|
sync_metadata?: SyncMetadataSummary;
|
|
10993
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
|
+
}
|
|
10994
11480
|
/** observability-session */
|
|
10995
11481
|
export type ObservabilitySession = (UtilRequiredKeys<MobileSession, 'session_id'> | UtilRequiredKeys<WebSession, 'session_id'>) & {
|
|
10996
11482
|
type: ObservabilitySessionType;
|
|
@@ -11006,8 +11492,218 @@ export declare enum ObservabilitySessionType {
|
|
|
11006
11492
|
Mobile = "mobile",
|
|
11007
11493
|
Web = "web"
|
|
11008
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
|
+
}
|
|
11009
11703
|
/** observability-sessions-data-get-request */
|
|
11010
11704
|
export interface ObservabilitySessionsDataGetRequest {
|
|
11705
|
+
/** Whether to include replay data in the response. Defaults to true. */
|
|
11706
|
+
include_replay_data?: boolean;
|
|
11011
11707
|
/**
|
|
11012
11708
|
* The unique identifier of the recording to retrieve in case of
|
|
11013
11709
|
* mobile sessions.
|
|
@@ -11039,6 +11735,41 @@ export declare enum ObservabilitySessionsDataGetResponseRecording {
|
|
|
11039
11735
|
MobileRecording = "mobile_recording",
|
|
11040
11736
|
WebRecording = "web_recording"
|
|
11041
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
|
+
}
|
|
11042
11773
|
/** observability-sessions-get-request */
|
|
11043
11774
|
export interface ObservabilitySessionsGetRequest {
|
|
11044
11775
|
/** The platform type for the device. */
|
|
@@ -11133,8 +11864,11 @@ export interface ObservabilityTimelineEvent {
|
|
|
11133
11864
|
* @format text
|
|
11134
11865
|
*/
|
|
11135
11866
|
event?: string;
|
|
11136
|
-
/**
|
|
11137
|
-
|
|
11867
|
+
/**
|
|
11868
|
+
* Custom event properties with native types (numbers, booleans,
|
|
11869
|
+
* objects, arrays).
|
|
11870
|
+
*/
|
|
11871
|
+
event_details?: any;
|
|
11138
11872
|
/** The type of timeline event. */
|
|
11139
11873
|
event_type?: ObservabilityTimelineEventType;
|
|
11140
11874
|
/** Whether this is a dead click event. */
|
|
@@ -11146,11 +11880,23 @@ export interface ObservabilityTimelineEvent {
|
|
|
11146
11880
|
* @format text
|
|
11147
11881
|
*/
|
|
11148
11882
|
label?: string;
|
|
11883
|
+
/**
|
|
11884
|
+
* Normalized URL of the page where the event occurred.
|
|
11885
|
+
* @format text
|
|
11886
|
+
*/
|
|
11887
|
+
normalized_url?: string;
|
|
11888
|
+
/**
|
|
11889
|
+
* Page name of the page where the event occurred.
|
|
11890
|
+
* @format text
|
|
11891
|
+
*/
|
|
11892
|
+
page_name?: string;
|
|
11149
11893
|
/**
|
|
11150
11894
|
* URL of the page where the event occurred.
|
|
11151
11895
|
* @format text
|
|
11152
11896
|
*/
|
|
11153
11897
|
page_url?: string;
|
|
11898
|
+
/** Web vitals performance metrics captured for auto-captured events */
|
|
11899
|
+
performance?: any;
|
|
11154
11900
|
/**
|
|
11155
11901
|
* Target element of the event.
|
|
11156
11902
|
* @format text
|
|
@@ -11995,6 +12741,37 @@ export interface PartsFilterEnhancement {
|
|
|
11995
12741
|
actual_start_date?: DateTimeFilter;
|
|
11996
12742
|
/** Provides ways to specify date ranges on objects. */
|
|
11997
12743
|
actual_start_date_v2?: DateFilter;
|
|
12744
|
+
/**
|
|
12745
|
+
* Filters for enhancement by its health status. The allowed ids can
|
|
12746
|
+
* be extended by the user. Stock allowed values:
|
|
12747
|
+
* ```
|
|
12748
|
+
* {
|
|
12749
|
+
* "id": 1,
|
|
12750
|
+
* "label": "On Track",
|
|
12751
|
+
* "ordinal": 1,
|
|
12752
|
+
* "overridable": true
|
|
12753
|
+
* },
|
|
12754
|
+
* {
|
|
12755
|
+
* "id": 2,
|
|
12756
|
+
* "label": "At Risk",
|
|
12757
|
+
* "ordinal": 2,
|
|
12758
|
+
* "overridable": true
|
|
12759
|
+
* },
|
|
12760
|
+
* {
|
|
12761
|
+
* "id": 3,
|
|
12762
|
+
* "label": "Off Track",
|
|
12763
|
+
* "ordinal": 3,
|
|
12764
|
+
* "overridable": true
|
|
12765
|
+
* },
|
|
12766
|
+
* {
|
|
12767
|
+
* "id": 4,
|
|
12768
|
+
* "label": "Not Applicable",
|
|
12769
|
+
* "ordinal": 4,
|
|
12770
|
+
* "overridable": true
|
|
12771
|
+
* }
|
|
12772
|
+
* ```
|
|
12773
|
+
*/
|
|
12774
|
+
health?: number[];
|
|
11998
12775
|
/**
|
|
11999
12776
|
* Filters for enhancement by its opportunities.
|
|
12000
12777
|
* @example ["OPP-12345"]
|
|
@@ -12002,6 +12779,7 @@ export interface PartsFilterEnhancement {
|
|
|
12002
12779
|
opportunities?: string[];
|
|
12003
12780
|
/** Filters for enhancement by its rev score tier. */
|
|
12004
12781
|
rev_score_tier?: EnhancementRevScoreTier[];
|
|
12782
|
+
space?: SpaceFilter;
|
|
12005
12783
|
/** List of IDs of the custom stages which will be used for filtering. */
|
|
12006
12784
|
stage_v2?: string[];
|
|
12007
12785
|
/** Filters for part with any of the provided custom states. */
|
|
@@ -12166,6 +12944,11 @@ export interface PartsUpdateRequestEnhancement {
|
|
|
12166
12944
|
* @maxLength 32768
|
|
12167
12945
|
*/
|
|
12168
12946
|
release_notes?: string;
|
|
12947
|
+
/**
|
|
12948
|
+
* Updates the space associated with the enhancement.
|
|
12949
|
+
* @format id
|
|
12950
|
+
*/
|
|
12951
|
+
space?: string | null;
|
|
12169
12952
|
/**
|
|
12170
12953
|
* Custom stage ID which will be used for updating the enhancement.
|
|
12171
12954
|
* @format id
|
|
@@ -12693,6 +13476,8 @@ export interface RevOrgsCreateRequest {
|
|
|
12693
13476
|
* @format text
|
|
12694
13477
|
*/
|
|
12695
13478
|
external_ref?: string;
|
|
13479
|
+
/** Members this Rev organization is shared with. */
|
|
13480
|
+
shared_with?: SetSharedWithMembership[];
|
|
12696
13481
|
/** Tags associated with the Rev organization. */
|
|
12697
13482
|
tags?: SetTagWithValue[];
|
|
12698
13483
|
/**
|
|
@@ -12873,6 +13658,7 @@ export interface RevOrgsUpdateRequest {
|
|
|
12873
13658
|
* @example "REV-AbCdEfGh"
|
|
12874
13659
|
*/
|
|
12875
13660
|
id: string;
|
|
13661
|
+
shared_with?: RevOrgsUpdateRequestSharedWith;
|
|
12876
13662
|
/** Tags associated with the Rev organization. */
|
|
12877
13663
|
tags?: SetTagWithValue[];
|
|
12878
13664
|
/**
|
|
@@ -12889,6 +13675,11 @@ export interface RevOrgsUpdateRequestArtifacts {
|
|
|
12889
13675
|
*/
|
|
12890
13676
|
set?: string[];
|
|
12891
13677
|
}
|
|
13678
|
+
/** rev-orgs-update-request-shared-with */
|
|
13679
|
+
export interface RevOrgsUpdateRequestSharedWith {
|
|
13680
|
+
/** Sets the list of members this Rev organization is shared with. */
|
|
13681
|
+
set?: SetSharedWithMembership[];
|
|
13682
|
+
}
|
|
12892
13683
|
/**
|
|
12893
13684
|
* rev-orgs-update-response
|
|
12894
13685
|
* Response object to updating Rev organization's information.
|
|
@@ -15082,6 +15873,23 @@ export type SnapInSummary = AtomBaseSummary;
|
|
|
15082
15873
|
export type SnapInVersion = AtomBase;
|
|
15083
15874
|
/** snap-in-version-summary */
|
|
15084
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
|
+
}
|
|
15085
15893
|
/** snap-kit-action-execute-deferred-request */
|
|
15086
15894
|
export interface SnapKitActionExecuteDeferredRequest {
|
|
15087
15895
|
/**
|
|
@@ -15096,7 +15904,13 @@ export interface SnapKitActionExecuteDeferredRequest {
|
|
|
15096
15904
|
id: string;
|
|
15097
15905
|
}
|
|
15098
15906
|
/** snap-kit-action-execute-deferred-response */
|
|
15099
|
-
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
|
+
}
|
|
15100
15914
|
/** snap-kit-action-request */
|
|
15101
15915
|
export type SnapKitActionRequest = (SnapKitActionRequestButton | SnapKitActionRequestForm) & {
|
|
15102
15916
|
type: SnapKitActionRequestElementTypeValue;
|
|
@@ -15155,6 +15969,11 @@ export declare enum SnapKitBaseWidgetSnapKitExecution {
|
|
|
15155
15969
|
/** snap-widget */
|
|
15156
15970
|
export type SnapWidget = (EmailPreviewWidget | StarterMessageNudgeWidget) & {
|
|
15157
15971
|
type: SnapWidgetType;
|
|
15972
|
+
/**
|
|
15973
|
+
* The ID of the parent object associated with this widget.
|
|
15974
|
+
* @format id
|
|
15975
|
+
*/
|
|
15976
|
+
parent_id?: string;
|
|
15158
15977
|
};
|
|
15159
15978
|
/** snap-widget-base */
|
|
15160
15979
|
export type SnapWidgetBase = AtomBase & {
|
|
@@ -15284,6 +16103,47 @@ export interface SpaceFilter {
|
|
|
15284
16103
|
include_global?: boolean;
|
|
15285
16104
|
/** Whether to include parent spaces. */
|
|
15286
16105
|
include_parents?: boolean;
|
|
16106
|
+
op?: SpaceFilterSpaceIdOperatorType;
|
|
16107
|
+
}
|
|
16108
|
+
export declare enum SpaceFilterSpaceIdOperatorType {
|
|
16109
|
+
Any = "any",
|
|
16110
|
+
NotAny = "not_any",
|
|
16111
|
+
NotNull = "not_null",
|
|
16112
|
+
Null = "null"
|
|
16113
|
+
}
|
|
16114
|
+
/**
|
|
16115
|
+
* sprint-board-automation
|
|
16116
|
+
* Automations specific to the Sprint Board vistas.
|
|
16117
|
+
*/
|
|
16118
|
+
export interface SprintBoardAutomation {
|
|
16119
|
+
/**
|
|
16120
|
+
* Whether auto rollover of incomplete issues to the next sprint is
|
|
16121
|
+
* enabled or not.
|
|
16122
|
+
*/
|
|
16123
|
+
auto_issue_rollover_enabled?: boolean;
|
|
16124
|
+
/** Whether this sprintboard has opted for mid-sprint status updates. */
|
|
16125
|
+
sprint_status_update_enabled?: boolean;
|
|
16126
|
+
}
|
|
16127
|
+
/**
|
|
16128
|
+
* sprint-board-config
|
|
16129
|
+
* Settings specific to sprint board vistas.
|
|
16130
|
+
*/
|
|
16131
|
+
export interface SprintBoardConfig {
|
|
16132
|
+
/**
|
|
16133
|
+
* Cooldown period in days between sprints.
|
|
16134
|
+
* @format int32
|
|
16135
|
+
*/
|
|
16136
|
+
cooldown?: number;
|
|
16137
|
+
/**
|
|
16138
|
+
* Sprint duration in days.
|
|
16139
|
+
* @format int32
|
|
16140
|
+
*/
|
|
16141
|
+
duration?: number;
|
|
16142
|
+
/**
|
|
16143
|
+
* Number of planned sprints for the sprint board.
|
|
16144
|
+
* @format int32
|
|
16145
|
+
*/
|
|
16146
|
+
planned_sprints?: number;
|
|
15287
16147
|
}
|
|
15288
16148
|
/**
|
|
15289
16149
|
* stage
|
|
@@ -15308,7 +16168,7 @@ export type StageDiagram = AtomBase & {
|
|
|
15308
16168
|
* The name of the stage diagram.
|
|
15309
16169
|
* @format text
|
|
15310
16170
|
*/
|
|
15311
|
-
name
|
|
16171
|
+
name: string;
|
|
15312
16172
|
/**
|
|
15313
16173
|
* List of stages with their allowed transitions in this stage
|
|
15314
16174
|
* diagram.
|
|
@@ -15323,7 +16183,7 @@ export type StageDiagramSummary = AtomBaseSummary & {
|
|
|
15323
16183
|
* The name of the stage diagram.
|
|
15324
16184
|
* @format text
|
|
15325
16185
|
*/
|
|
15326
|
-
name
|
|
16186
|
+
name: string;
|
|
15327
16187
|
/** Sync information for records synced into/from DevRev. */
|
|
15328
16188
|
sync_metadata?: SyncMetadataSummary;
|
|
15329
16189
|
};
|
|
@@ -15516,6 +16376,14 @@ export interface StarterMessageNudgeWidget {
|
|
|
15516
16376
|
starter_message_nudge_type: StarterMessageNudgeWidgetStarterMessageNudgeType;
|
|
15517
16377
|
}
|
|
15518
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
|
+
}
|
|
15519
16387
|
/**
|
|
15520
16388
|
* stock-field-override
|
|
15521
16389
|
* A stock field override.
|
|
@@ -15527,7 +16395,7 @@ export interface StockFieldOverride {
|
|
|
15527
16395
|
* Name of the stock field to be overridden.
|
|
15528
16396
|
* @format text
|
|
15529
16397
|
*/
|
|
15530
|
-
name
|
|
16398
|
+
name: string;
|
|
15531
16399
|
/** Overridden allowed values for a unified enum. */
|
|
15532
16400
|
uenum_values?: SchemaFieldUenumValue[];
|
|
15533
16401
|
/** The schema of ui specific fields. */
|
|
@@ -15769,6 +16637,17 @@ export type SurveyResponse = AtomBase & {
|
|
|
15769
16637
|
};
|
|
15770
16638
|
/** surveys-create-request */
|
|
15771
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;
|
|
15772
16651
|
/**
|
|
15773
16652
|
* Description about the survey.
|
|
15774
16653
|
* @format text
|
|
@@ -16066,6 +16945,17 @@ export interface SurveysSubmitRequest {
|
|
|
16066
16945
|
export type SurveysSubmitResponse = object;
|
|
16067
16946
|
/** surveys-update-request */
|
|
16068
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;
|
|
16069
16959
|
/**
|
|
16070
16960
|
* The updated description about the survey.
|
|
16071
16961
|
* @format text
|
|
@@ -16195,6 +17085,10 @@ export interface SyncMetadata {
|
|
|
16195
17085
|
}
|
|
16196
17086
|
/** sync-metadata-filter */
|
|
16197
17087
|
export interface SyncMetadataFilter {
|
|
17088
|
+
/** Filters for issues with this specific external record. */
|
|
17089
|
+
external_record?: string[];
|
|
17090
|
+
/** Filters for issues with this specific external record type. */
|
|
17091
|
+
external_record_type?: string[];
|
|
16198
17092
|
/** Filters for issues with this specific external reference. */
|
|
16199
17093
|
external_reference?: string[];
|
|
16200
17094
|
last_sync_in?: SyncMetadataFilterSyncInFilter;
|
|
@@ -17110,6 +18004,12 @@ export interface TimelineEntriesCreateRequestTimelineComment {
|
|
|
17110
18004
|
* @maxLength 512
|
|
17111
18005
|
*/
|
|
17112
18006
|
external_ref?: string;
|
|
18007
|
+
/**
|
|
18008
|
+
* The comment this comment is in reply to.
|
|
18009
|
+
* @format id
|
|
18010
|
+
* @example "don:core:dvrv-us-1:devo/example:ticket/123:comment/comment-id"
|
|
18011
|
+
*/
|
|
18012
|
+
in_reply_to?: string;
|
|
17113
18013
|
/**
|
|
17114
18014
|
* The IDs of the previews of the links posted in the comment.
|
|
17115
18015
|
* @example ["don:core:dvrv-us-1:devo/example:snap_widget/snap-widget-id"]
|
|
@@ -17182,6 +18082,7 @@ export interface TimelineEntriesGetResponse {
|
|
|
17182
18082
|
* The request to list timeline entries for an object.
|
|
17183
18083
|
*/
|
|
17184
18084
|
export interface TimelineEntriesListRequest {
|
|
18085
|
+
bias?: TimelineEntriesListRequestBias;
|
|
17185
18086
|
/**
|
|
17186
18087
|
* The collection(s) to list entries from, otherwise if not provided,
|
|
17187
18088
|
* all entries are returned.
|
|
@@ -17232,6 +18133,10 @@ export interface TimelineEntriesListRequest {
|
|
|
17232
18133
|
*/
|
|
17233
18134
|
visibility?: TimelineEntryVisibility[];
|
|
17234
18135
|
}
|
|
18136
|
+
export declare enum TimelineEntriesListRequestBias {
|
|
18137
|
+
Quantity = "quantity",
|
|
18138
|
+
Speed = "speed"
|
|
18139
|
+
}
|
|
17235
18140
|
/**
|
|
17236
18141
|
* timeline-entries-list-response
|
|
17237
18142
|
* The response to listing timeline entries for an object.
|
|
@@ -17883,6 +18788,12 @@ export interface VistaGroupBase {
|
|
|
17883
18788
|
* @example "2023-01-01T12:00:00.000Z"
|
|
17884
18789
|
*/
|
|
17885
18790
|
end_date?: string;
|
|
18791
|
+
/**
|
|
18792
|
+
* Goals of the vista group item.
|
|
18793
|
+
* @format text
|
|
18794
|
+
* @maxLength 16000
|
|
18795
|
+
*/
|
|
18796
|
+
goals?: string;
|
|
17886
18797
|
/**
|
|
17887
18798
|
* Globally unique object ID.
|
|
17888
18799
|
* @format id
|
|
@@ -18584,64 +19495,8 @@ export interface WebNetworkMetadata {
|
|
|
18584
19495
|
}
|
|
18585
19496
|
/** web-recording */
|
|
18586
19497
|
export interface WebRecording {
|
|
18587
|
-
console_metadata?: WebConsoleMetadata;
|
|
18588
|
-
/**
|
|
18589
|
-
* The recording creation timestamp.
|
|
18590
|
-
* @format date-time
|
|
18591
|
-
* @example "2023-01-01T12:00:00.000Z"
|
|
18592
|
-
*/
|
|
18593
|
-
created_at: string;
|
|
18594
|
-
/**
|
|
18595
|
-
* The number of dead clicks in the session.
|
|
18596
|
-
* @format int64
|
|
18597
|
-
*/
|
|
18598
|
-
dead_click_count: number;
|
|
18599
|
-
device_metadata: WebDeviceMetadata;
|
|
18600
|
-
/**
|
|
18601
|
-
* The title of the first page visited.
|
|
18602
|
-
* @format text
|
|
18603
|
-
*/
|
|
18604
|
-
first_page_title?: string;
|
|
18605
|
-
/**
|
|
18606
|
-
* The URL of the first page visited.
|
|
18607
|
-
* @format text
|
|
18608
|
-
*/
|
|
18609
|
-
first_page_url?: string;
|
|
18610
|
-
network_metadata?: WebNetworkMetadata;
|
|
18611
|
-
/**
|
|
18612
|
-
* The page load time in milliseconds.
|
|
18613
|
-
* @format int64
|
|
18614
|
-
*/
|
|
18615
|
-
page_load_time_ms?: number;
|
|
18616
|
-
/**
|
|
18617
|
-
* The number of rage clicks in the session.
|
|
18618
|
-
* @format int64
|
|
18619
|
-
*/
|
|
18620
|
-
rage_click_count: number;
|
|
18621
19498
|
/** RRWeb replay packets */
|
|
18622
19499
|
replay_data: ReplayData[];
|
|
18623
|
-
/**
|
|
18624
|
-
* The Rev organization ID associated with this recording.
|
|
18625
|
-
* @format id
|
|
18626
|
-
* @example "REV-AbCdEfGh"
|
|
18627
|
-
*/
|
|
18628
|
-
rev_org_id?: string;
|
|
18629
|
-
/**
|
|
18630
|
-
* The Rev user ID associated with this recording.
|
|
18631
|
-
* @format id
|
|
18632
|
-
*/
|
|
18633
|
-
rev_user_id?: string;
|
|
18634
|
-
session_attributes?: WebSessionAttributes;
|
|
18635
|
-
/**
|
|
18636
|
-
* The unique session identifier.
|
|
18637
|
-
* @format text
|
|
18638
|
-
*/
|
|
18639
|
-
session_id: string;
|
|
18640
|
-
/**
|
|
18641
|
-
* The unique tab identifier.
|
|
18642
|
-
* @format text
|
|
18643
|
-
*/
|
|
18644
|
-
tab_id: string;
|
|
18645
19500
|
timeline_data: WebTimelineData;
|
|
18646
19501
|
}
|
|
18647
19502
|
/** web-session */
|
|
@@ -18773,6 +19628,8 @@ export interface WebSessionsFilterCustomEventsFilter {
|
|
|
18773
19628
|
}
|
|
18774
19629
|
/** web-sessions-filter-events-filter */
|
|
18775
19630
|
export interface WebSessionsFilterEventsFilter {
|
|
19631
|
+
/** Filter by event type. */
|
|
19632
|
+
event_type?: string[];
|
|
18776
19633
|
/** Filter by dead click events. */
|
|
18777
19634
|
is_dead?: boolean;
|
|
18778
19635
|
/** Filter by rage click events. */
|
|
@@ -19484,6 +20341,11 @@ export interface WidgetPvpConfig {
|
|
|
19484
20341
|
* visualized.
|
|
19485
20342
|
*/
|
|
19486
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[];
|
|
19487
20349
|
/**
|
|
19488
20350
|
* The dimensions for the query, which are the categories to group or
|
|
19489
20351
|
* segment the measures. Usually these are the X-axis values in a
|
|
@@ -19503,6 +20365,11 @@ export interface WidgetQuery {
|
|
|
19503
20365
|
* @format int32
|
|
19504
20366
|
*/
|
|
19505
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[];
|
|
19506
20373
|
/**
|
|
19507
20374
|
* The measures for the query, which are the numerical values to be
|
|
19508
20375
|
* analyzed. Usually these are the Y-axis values in a visualization.
|
|
@@ -19514,6 +20381,70 @@ export interface WidgetQuery {
|
|
|
19514
20381
|
*/
|
|
19515
20382
|
order_by?: WidgetQueryOrderBy[];
|
|
19516
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
|
+
}
|
|
19517
20448
|
/**
|
|
19518
20449
|
* widget-query-joins
|
|
19519
20450
|
* A list of possible joins for the data source. Follows foreign key
|
|
@@ -19544,6 +20475,8 @@ export declare enum WidgetQueryOrderByDirection {
|
|
|
19544
20475
|
}
|
|
19545
20476
|
/** widget-summary */
|
|
19546
20477
|
export type WidgetSummary = AtomBaseSummary & {
|
|
20478
|
+
/** Whether the widget is a system widget. */
|
|
20479
|
+
is_system?: boolean;
|
|
19547
20480
|
/**
|
|
19548
20481
|
* The title of the widget.
|
|
19549
20482
|
* @format text
|
|
@@ -19941,6 +20874,11 @@ export interface WorksCreateRequestIssue {
|
|
|
19941
20874
|
* @format int64
|
|
19942
20875
|
*/
|
|
19943
20876
|
priority_v2?: number;
|
|
20877
|
+
/**
|
|
20878
|
+
* The space that the issue belongs to.
|
|
20879
|
+
* @format id
|
|
20880
|
+
*/
|
|
20881
|
+
space?: string;
|
|
19944
20882
|
/**
|
|
19945
20883
|
* The sprint that the issue belongs to.
|
|
19946
20884
|
* @format id
|
|
@@ -20202,8 +21140,6 @@ export interface WorksFilterIssue {
|
|
|
20202
21140
|
accounts?: string[];
|
|
20203
21141
|
/** Provides ways to specify date ranges on objects. */
|
|
20204
21142
|
actual_start_date?: DateFilter;
|
|
20205
|
-
/** Filters for issues belonging to specific groups. */
|
|
20206
|
-
group?: string[];
|
|
20207
21143
|
/** Filters for issues with any of the provided priorities. */
|
|
20208
21144
|
priority?: IssuePriority[];
|
|
20209
21145
|
/** Filters for issues with any of the provided priority enum ids. */
|
|
@@ -20263,6 +21199,7 @@ export interface WorksFilterTicket {
|
|
|
20263
21199
|
channels_v2?: string[];
|
|
20264
21200
|
/** Filters for tickets belonging to specific groups. */
|
|
20265
21201
|
group?: string[];
|
|
21202
|
+
group_op?: WorksFilterTicketGroupsOpOperatorType;
|
|
20266
21203
|
/** Filters for frozen tickets. */
|
|
20267
21204
|
is_frozen?: boolean;
|
|
20268
21205
|
/** Filters for tickets that are spam. */
|
|
@@ -20293,6 +21230,13 @@ export interface WorksFilterTicket {
|
|
|
20293
21230
|
/** Visibility enum ID of the ticket. */
|
|
20294
21231
|
visibility?: number[];
|
|
20295
21232
|
}
|
|
21233
|
+
export declare enum WorksFilterTicketGroupsOpOperatorType {
|
|
21234
|
+
All = "all",
|
|
21235
|
+
Any = "any",
|
|
21236
|
+
Empty = "empty",
|
|
21237
|
+
NotAny = "not_any",
|
|
21238
|
+
NotEmpty = "not_empty"
|
|
21239
|
+
}
|
|
20296
21240
|
/** works-get-request */
|
|
20297
21241
|
export interface WorksGetRequest {
|
|
20298
21242
|
/**
|
|
@@ -20444,6 +21388,13 @@ export type WorksUpdateRequest = (Empty | WorksUpdateRequestIssue | WorksUpdateR
|
|
|
20444
21388
|
* @example "ISS-12345"
|
|
20445
21389
|
*/
|
|
20446
21390
|
id: string;
|
|
21391
|
+
/**
|
|
21392
|
+
* The object version of the work to be updated. If provided, the
|
|
21393
|
+
* update will be rejected if the object version does not match the
|
|
21394
|
+
* latest version.
|
|
21395
|
+
* @format int64
|
|
21396
|
+
*/
|
|
21397
|
+
object_version?: number;
|
|
20447
21398
|
owned_by?: WorksUpdateRequestOwnedBy;
|
|
20448
21399
|
reported_by?: WorksUpdateRequestReportedBy;
|
|
20449
21400
|
/** Updates an object's stage. */
|
|
@@ -20494,10 +21445,12 @@ export interface WorksUpdateRequestArtifacts {
|
|
|
20494
21445
|
export interface WorksUpdateRequestIssue {
|
|
20495
21446
|
developed_with?: WorksUpdateRequestIssueDevelopedWith;
|
|
20496
21447
|
/**
|
|
20497
|
-
* Updates the
|
|
20498
|
-
*
|
|
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"
|
|
20499
21452
|
*/
|
|
20500
|
-
|
|
21453
|
+
last_code_activity?: string | null;
|
|
20501
21454
|
/** Priority of the work based upon impact and criticality. */
|
|
20502
21455
|
priority?: IssuePriority;
|
|
20503
21456
|
/**
|
|
@@ -20532,6 +21485,11 @@ export interface WorksUpdateRequestIssue {
|
|
|
20532
21485
|
* @format int64
|
|
20533
21486
|
*/
|
|
20534
21487
|
priority_v2?: number;
|
|
21488
|
+
/**
|
|
21489
|
+
* Updates the space that the issue belongs to.
|
|
21490
|
+
* @format id
|
|
21491
|
+
*/
|
|
21492
|
+
space?: string;
|
|
20535
21493
|
/**
|
|
20536
21494
|
* Updates the sprint that the issue belongs to.
|
|
20537
21495
|
* @format id
|
|
@@ -21236,6 +22194,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
21236
22194
|
'shared_with.role'?: string;
|
|
21237
22195
|
/** Filters for status of the articles. */
|
|
21238
22196
|
status?: ArticleStatus[];
|
|
22197
|
+
/** Filters for issues with this specific external record. */
|
|
22198
|
+
'sync_metadata.external_record'?: string[];
|
|
22199
|
+
/** Filters for issues with this specific external record type. */
|
|
22200
|
+
'sync_metadata.external_record_type'?: string[];
|
|
21239
22201
|
/** Filters for issues with this specific external reference. */
|
|
21240
22202
|
'sync_metadata.external_reference'?: string[];
|
|
21241
22203
|
/** Filters for works with selected sync statuses. */
|
|
@@ -21278,6 +22240,43 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
21278
22240
|
* @secure
|
|
21279
22241
|
*/
|
|
21280
22242
|
updateArticle: (data: ArticlesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesUpdateResponse, any, {}>>;
|
|
22243
|
+
/**
|
|
22244
|
+
* @description Redirects to the artifact's download URL.
|
|
22245
|
+
*
|
|
22246
|
+
* @tags artifacts
|
|
22247
|
+
* @name ArtifactsDownload
|
|
22248
|
+
* @summary Download Artifacts
|
|
22249
|
+
* @request GET:/artifacts.download
|
|
22250
|
+
* @secure
|
|
22251
|
+
*/
|
|
22252
|
+
artifactsDownload: (query: {
|
|
22253
|
+
/**
|
|
22254
|
+
* The ID of the artifact to be downloaded.
|
|
22255
|
+
* @format id
|
|
22256
|
+
* @example "ARTIFACT-12345"
|
|
22257
|
+
*/
|
|
22258
|
+
id: string;
|
|
22259
|
+
/**
|
|
22260
|
+
* The access key for the artifact.
|
|
22261
|
+
* @format text
|
|
22262
|
+
*/
|
|
22263
|
+
key?: string;
|
|
22264
|
+
/**
|
|
22265
|
+
* The version of the artifact that needs to be downloaded.
|
|
22266
|
+
* @format text
|
|
22267
|
+
*/
|
|
22268
|
+
version?: string;
|
|
22269
|
+
}, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
22270
|
+
/**
|
|
22271
|
+
* @description Redirects to the artifact's download URL.
|
|
22272
|
+
*
|
|
22273
|
+
* @tags artifacts
|
|
22274
|
+
* @name ArtifactsDownloadPost
|
|
22275
|
+
* @summary Download Artifacts (POST)
|
|
22276
|
+
* @request POST:/artifacts.download
|
|
22277
|
+
* @secure
|
|
22278
|
+
*/
|
|
22279
|
+
artifactsDownloadPost: (data: ArtifactsDownloadRequest, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
21281
22280
|
/**
|
|
21282
22281
|
* @description Gets the requested artifact's information.
|
|
21283
22282
|
*
|
|
@@ -21399,7 +22398,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
21399
22398
|
*/
|
|
21400
22399
|
artifactsVersionsPrepare: (data: ArtifactsVersionsPrepareRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsVersionsPrepareResponse, any, {}>>;
|
|
21401
22400
|
/**
|
|
21402
|
-
* @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`.
|
|
21403
22402
|
*
|
|
21404
22403
|
* @tags atoms
|
|
21405
22404
|
* @name AtomsGet
|
|
@@ -21415,7 +22414,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
21415
22414
|
id: string;
|
|
21416
22415
|
}, params?: RequestParams) => Promise<AxiosResponse<AtomsGetResponse, any, {}>>;
|
|
21417
22416
|
/**
|
|
21418
|
-
* @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`.
|
|
21419
22418
|
*
|
|
21420
22419
|
* @tags atoms
|
|
21421
22420
|
* @name AtomsGetPost
|
|
@@ -21927,6 +22926,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
21927
22926
|
rev_orgs?: string[];
|
|
21928
22927
|
/** Filters for records with any of the provided SLA stages. */
|
|
21929
22928
|
'sla_summary.stage'?: SlaSummaryStage[];
|
|
22929
|
+
/** Fields to sort the conversations by and the direction to sort them. */
|
|
22930
|
+
sort_by?: string[];
|
|
21930
22931
|
/** Filters for conversations with any of the provided source channels. */
|
|
21931
22932
|
source_channel?: string[];
|
|
21932
22933
|
/**
|
|
@@ -22120,7 +23121,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22120
23121
|
*/
|
|
22121
23122
|
customObjectsUpdate: (data: CustomObjectsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsUpdateResponse, any, {}>>;
|
|
22122
23123
|
/**
|
|
22123
|
-
* @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`
|
|
22124
23125
|
*
|
|
22125
23126
|
* @tags auth-connections, dev-orgs
|
|
22126
23127
|
* @name DevOrgAuthConnectionsCreate
|
|
@@ -22130,7 +23131,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22130
23131
|
*/
|
|
22131
23132
|
devOrgAuthConnectionsCreate: (data: DevOrgAuthConnectionsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsCreateResponse, any, {}>>;
|
|
22132
23133
|
/**
|
|
22133
|
-
* @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`
|
|
22134
23135
|
*
|
|
22135
23136
|
* @tags auth-connections, dev-orgs
|
|
22136
23137
|
* @name DevOrgAuthConnectionsDelete
|
|
@@ -22140,7 +23141,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22140
23141
|
*/
|
|
22141
23142
|
devOrgAuthConnectionsDelete: (data: DevOrgAuthConnectionsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
22142
23143
|
/**
|
|
22143
|
-
* @description Retrieves the details for an authentication connection.
|
|
23144
|
+
* @description Retrieves the details for an authentication connection. **Required scopes:** - `dev_org:read`
|
|
22144
23145
|
*
|
|
22145
23146
|
* @tags auth-connections, dev-orgs
|
|
22146
23147
|
* @name DevOrgAuthConnectionsGet
|
|
@@ -22156,7 +23157,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22156
23157
|
id: string;
|
|
22157
23158
|
}, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsGetResponse, any, {}>>;
|
|
22158
23159
|
/**
|
|
22159
|
-
* @description Retrieves the details for an authentication connection.
|
|
23160
|
+
* @description Retrieves the details for an authentication connection. **Required scopes:** - `dev_org:read`
|
|
22160
23161
|
*
|
|
22161
23162
|
* @tags auth-connections, dev-orgs
|
|
22162
23163
|
* @name DevOrgAuthConnectionsGetPost
|
|
@@ -22166,7 +23167,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22166
23167
|
*/
|
|
22167
23168
|
devOrgAuthConnectionsGetPost: (data: DevOrgAuthConnectionsGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsGetResponse, any, {}>>;
|
|
22168
23169
|
/**
|
|
22169
|
-
* @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`
|
|
22170
23171
|
*
|
|
22171
23172
|
* @tags auth-connections, dev-orgs
|
|
22172
23173
|
* @name DevOrgAuthConnectionsList
|
|
@@ -22176,7 +23177,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22176
23177
|
*/
|
|
22177
23178
|
devOrgAuthConnectionsList: (params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsListResponse, any, {}>>;
|
|
22178
23179
|
/**
|
|
22179
|
-
* @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`
|
|
22180
23181
|
*
|
|
22181
23182
|
* @tags auth-connections, dev-orgs
|
|
22182
23183
|
* @name DevOrgAuthConnectionsListPost
|
|
@@ -22186,7 +23187,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22186
23187
|
*/
|
|
22187
23188
|
devOrgAuthConnectionsListPost: (data: Empty, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsListResponse, any, {}>>;
|
|
22188
23189
|
/**
|
|
22189
|
-
* @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`
|
|
22190
23191
|
*
|
|
22191
23192
|
* @tags auth-connections, dev-orgs
|
|
22192
23193
|
* @name DevOrgAuthConnectionsToggle
|
|
@@ -22196,7 +23197,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22196
23197
|
*/
|
|
22197
23198
|
devOrgAuthConnectionsToggle: (data: DevOrgAuthConnectionsToggleRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
22198
23199
|
/**
|
|
22199
|
-
* @description Updates an authentication connection.
|
|
23200
|
+
* @description Updates an authentication connection. **Required scopes:** - `dev_org:write`
|
|
22200
23201
|
*
|
|
22201
23202
|
* @tags auth-connections, dev-orgs
|
|
22202
23203
|
* @name DevOrgAuthConnectionsUpdate
|
|
@@ -22206,7 +23207,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22206
23207
|
*/
|
|
22207
23208
|
devOrgAuthConnectionsUpdate: (data: DevOrgAuthConnectionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsUpdateResponse, any, {}>>;
|
|
22208
23209
|
/**
|
|
22209
|
-
* @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`
|
|
22210
23211
|
*
|
|
22211
23212
|
* @tags dev-orgs
|
|
22212
23213
|
* @name DevOrgsGet
|
|
@@ -22216,7 +23217,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22216
23217
|
*/
|
|
22217
23218
|
devOrgsGet: (params?: RequestParams) => Promise<AxiosResponse<DevOrgsGetResponse, any, {}>>;
|
|
22218
23219
|
/**
|
|
22219
|
-
* @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`
|
|
22220
23221
|
*
|
|
22221
23222
|
* @tags dev-orgs
|
|
22222
23223
|
* @name DevOrgsGetPost
|
|
@@ -22226,7 +23227,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22226
23227
|
*/
|
|
22227
23228
|
devOrgsGetPost: (data: DevOrgsGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgsGetResponse, any, {}>>;
|
|
22228
23229
|
/**
|
|
22229
|
-
* @description Activates the requested user.
|
|
23230
|
+
* @description Activates the requested user. **Required scopes:** - `dev_user:write`
|
|
22230
23231
|
*
|
|
22231
23232
|
* @tags dev-users
|
|
22232
23233
|
* @name DevUsersActivate
|
|
@@ -22236,7 +23237,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22236
23237
|
*/
|
|
22237
23238
|
devUsersActivate: (data: DevUsersActivateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersActivateResponse, any, {}>>;
|
|
22238
23239
|
/**
|
|
22239
|
-
* @description Creates a Dev user for a Dev organization.
|
|
23240
|
+
* @description Creates a Dev user for a Dev organization. **Required scopes:** - `dev_user:write`
|
|
22240
23241
|
*
|
|
22241
23242
|
* @tags dev-users
|
|
22242
23243
|
* @name DevUsersCreate
|
|
@@ -22246,7 +23247,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22246
23247
|
*/
|
|
22247
23248
|
devUsersCreate: (data: DevUsersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersCreateResponse, any, {}>>;
|
|
22248
23249
|
/**
|
|
22249
|
-
* @description Deactivates the requested user.
|
|
23250
|
+
* @description Deactivates the requested user. **Required scopes:** - `dev_user:all`
|
|
22250
23251
|
*
|
|
22251
23252
|
* @tags dev-users
|
|
22252
23253
|
* @name DevUsersDeactivate
|
|
@@ -22256,7 +23257,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22256
23257
|
*/
|
|
22257
23258
|
devUsersDeactivate: (data: DevUsersDeactivateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
22258
23259
|
/**
|
|
22259
|
-
* @description Gets the requested user's information.
|
|
23260
|
+
* @description Gets the requested user's information. **Required scopes:** - `dev_user:read`
|
|
22260
23261
|
*
|
|
22261
23262
|
* @tags dev-users
|
|
22262
23263
|
* @name DevUsersGet
|
|
@@ -22272,7 +23273,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22272
23273
|
id: string;
|
|
22273
23274
|
}, params?: RequestParams) => Promise<AxiosResponse<DevUsersGetResponse, any, {}>>;
|
|
22274
23275
|
/**
|
|
22275
|
-
* @description Gets the requested user's information.
|
|
23276
|
+
* @description Gets the requested user's information. **Required scopes:** - `dev_user:read`
|
|
22276
23277
|
*
|
|
22277
23278
|
* @tags dev-users
|
|
22278
23279
|
* @name DevUsersGetPost
|
|
@@ -22282,7 +23283,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22282
23283
|
*/
|
|
22283
23284
|
devUsersGetPost: (data: DevUsersGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersGetResponse, any, {}>>;
|
|
22284
23285
|
/**
|
|
22285
|
-
* @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`
|
|
22286
23287
|
*
|
|
22287
23288
|
* @tags dev-users
|
|
22288
23289
|
* @name DevUsersIdentitiesLink
|
|
@@ -22292,7 +23293,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22292
23293
|
*/
|
|
22293
23294
|
devUsersIdentitiesLink: (data: DevUsersIdentitiesLinkRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersIdentitiesLinkResponse, any, {}>>;
|
|
22294
23295
|
/**
|
|
22295
|
-
* @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`
|
|
22296
23297
|
*
|
|
22297
23298
|
* @tags dev-users
|
|
22298
23299
|
* @name DevUsersIdentitiesUnlink
|
|
@@ -22302,7 +23303,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22302
23303
|
*/
|
|
22303
23304
|
devUsersIdentitiesUnlink: (data: DevUsersIdentitiesUnlinkRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersIdentitiesUnlinkResponse, any, {}>>;
|
|
22304
23305
|
/**
|
|
22305
|
-
* @description Lists users within your organization.
|
|
23306
|
+
* @description Lists users within your organization. **Required scopes:** - `dev_user:read`
|
|
22306
23307
|
*
|
|
22307
23308
|
* @tags dev-users
|
|
22308
23309
|
* @name DevUsersList
|
|
@@ -22356,7 +23357,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22356
23357
|
timezone?: string[];
|
|
22357
23358
|
}, params?: RequestParams) => Promise<AxiosResponse<DevUsersListResponse, any, {}>>;
|
|
22358
23359
|
/**
|
|
22359
|
-
* @description Lists users within your organization.
|
|
23360
|
+
* @description Lists users within your organization. **Required scopes:** - `dev_user:read`
|
|
22360
23361
|
*
|
|
22361
23362
|
* @tags dev-users
|
|
22362
23363
|
* @name DevUsersListPost
|
|
@@ -22366,7 +23367,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22366
23367
|
*/
|
|
22367
23368
|
devUsersListPost: (data: DevUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersListResponse, any, {}>>;
|
|
22368
23369
|
/**
|
|
22369
|
-
* @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`
|
|
22370
23371
|
*
|
|
22371
23372
|
* @tags dev-users
|
|
22372
23373
|
* @name DevUsersMerge
|
|
@@ -22376,7 +23377,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22376
23377
|
*/
|
|
22377
23378
|
devUsersMerge: (data: DevUsersMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
22378
23379
|
/**
|
|
22379
|
-
* @description Gets the authenticated user's information.
|
|
23380
|
+
* @description Gets the authenticated user's information. **Required scopes:** No scopes required
|
|
22380
23381
|
*
|
|
22381
23382
|
* @tags dev-users
|
|
22382
23383
|
* @name DevUsersSelf
|
|
@@ -22386,7 +23387,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22386
23387
|
*/
|
|
22387
23388
|
devUsersSelf: (params?: RequestParams) => Promise<AxiosResponse<DevUsersSelfResponse, any, {}>>;
|
|
22388
23389
|
/**
|
|
22389
|
-
* @description Gets the authenticated user's information.
|
|
23390
|
+
* @description Gets the authenticated user's information. **Required scopes:** No scopes required
|
|
22390
23391
|
*
|
|
22391
23392
|
* @tags dev-users
|
|
22392
23393
|
* @name DevUsersSelfPost
|
|
@@ -22396,7 +23397,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22396
23397
|
*/
|
|
22397
23398
|
devUsersSelfPost: (data: DevUsersSelfRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersSelfResponse, any, {}>>;
|
|
22398
23399
|
/**
|
|
22399
|
-
* @description Updates the authenticated user.
|
|
23400
|
+
* @description Updates the authenticated user. **Required scopes:** No scopes required
|
|
22400
23401
|
*
|
|
22401
23402
|
* @tags dev-users
|
|
22402
23403
|
* @name DevUsersSelfUpdate
|
|
@@ -22406,7 +23407,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22406
23407
|
*/
|
|
22407
23408
|
devUsersSelfUpdate: (data: DevUsersSelfUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersUpdateResponse, any, {}>>;
|
|
22408
23409
|
/**
|
|
22409
|
-
* @description Updates the user corresponding to the input Id.
|
|
23410
|
+
* @description Updates the user corresponding to the input Id. **Required scopes:** - `dev_user:write`
|
|
22410
23411
|
*
|
|
22411
23412
|
* @tags dev-users
|
|
22412
23413
|
* @name DevUsersUpdate
|
|
@@ -22550,7 +23551,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22550
23551
|
*/
|
|
22551
23552
|
directoriesUpdate: (data: DirectoriesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesUpdateResponse, any, {}>>;
|
|
22552
23553
|
/**
|
|
22553
|
-
* @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`
|
|
22554
23555
|
*
|
|
22555
23556
|
* @tags groups
|
|
22556
23557
|
* @name GroupsCreate
|
|
@@ -22560,7 +23561,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22560
23561
|
*/
|
|
22561
23562
|
groupsCreate: (data: GroupsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsCreateResponse, any, {}>>;
|
|
22562
23563
|
/**
|
|
22563
|
-
* @description Gets the requested group.
|
|
23564
|
+
* @description Gets the requested group. **Required scopes:** - `group:read`
|
|
22564
23565
|
*
|
|
22565
23566
|
* @tags groups
|
|
22566
23567
|
* @name GroupsGet
|
|
@@ -22576,7 +23577,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22576
23577
|
id: string;
|
|
22577
23578
|
}, params?: RequestParams) => Promise<AxiosResponse<GroupsGetResponse, any, {}>>;
|
|
22578
23579
|
/**
|
|
22579
|
-
* @description Gets the requested group.
|
|
23580
|
+
* @description Gets the requested group. **Required scopes:** - `group:read`
|
|
22580
23581
|
*
|
|
22581
23582
|
* @tags groups
|
|
22582
23583
|
* @name GroupsGetPost
|
|
@@ -22586,7 +23587,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22586
23587
|
*/
|
|
22587
23588
|
groupsGetPost: (data: GroupsGetRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsGetResponse, any, {}>>;
|
|
22588
23589
|
/**
|
|
22589
|
-
* @description Lists the available groups.
|
|
23590
|
+
* @description Lists the available groups. **Required scopes:** - `group:read`
|
|
22590
23591
|
*
|
|
22591
23592
|
* @tags groups
|
|
22592
23593
|
* @name GroupsList
|
|
@@ -22623,11 +23624,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22623
23624
|
mode?: ListMode;
|
|
22624
23625
|
/** Filters the groups on the basis of group name. */
|
|
22625
23626
|
name?: string[];
|
|
22626
|
-
/**
|
|
22627
|
-
* Filters the groups on the basis of parent group(s).
|
|
22628
|
-
* @deprecated
|
|
22629
|
-
*/
|
|
22630
|
-
parents?: string[];
|
|
22631
23627
|
/** Comma-separated fields to sort the groups by. */
|
|
22632
23628
|
sort_by?: string[];
|
|
22633
23629
|
/** Filters for the provided space IDs. */
|
|
@@ -22638,6 +23634,12 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22638
23634
|
'space.include_global'?: boolean;
|
|
22639
23635
|
/** Whether to include parent spaces. */
|
|
22640
23636
|
'space.include_parents'?: boolean;
|
|
23637
|
+
/** The filter operator to be applied on space. */
|
|
23638
|
+
'space.op'?: SpaceFilterSpaceIdOperatorType;
|
|
23639
|
+
/** Filters for issues with this specific external record. */
|
|
23640
|
+
'sync_metadata.external_record'?: string[];
|
|
23641
|
+
/** Filters for issues with this specific external record type. */
|
|
23642
|
+
'sync_metadata.external_record_type'?: string[];
|
|
22641
23643
|
/** Filters for issues with this specific external reference. */
|
|
22642
23644
|
'sync_metadata.external_reference'?: string[];
|
|
22643
23645
|
/** Filters for works with selected sync statuses. */
|
|
@@ -22656,7 +23658,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22656
23658
|
'sync_metadata.origin_system'?: string[];
|
|
22657
23659
|
}, params?: RequestParams) => Promise<AxiosResponse<GroupsListResponse, any, {}>>;
|
|
22658
23660
|
/**
|
|
22659
|
-
* @description Lists the available groups.
|
|
23661
|
+
* @description Lists the available groups. **Required scopes:** - `group:read`
|
|
22660
23662
|
*
|
|
22661
23663
|
* @tags groups
|
|
22662
23664
|
* @name GroupsListPost
|
|
@@ -22666,7 +23668,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22666
23668
|
*/
|
|
22667
23669
|
groupsListPost: (data: GroupsListRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsListResponse, any, {}>>;
|
|
22668
23670
|
/**
|
|
22669
|
-
* @description Adds a member to a group.
|
|
23671
|
+
* @description Adds a member to a group. **Required scopes:** - `group_membership:write`
|
|
22670
23672
|
*
|
|
22671
23673
|
* @tags groups
|
|
22672
23674
|
* @name GroupMembersAdd
|
|
@@ -22676,7 +23678,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22676
23678
|
*/
|
|
22677
23679
|
groupMembersAdd: (data: GroupMembersAddRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
22678
23680
|
/**
|
|
22679
|
-
* @description Lists the members in a group.
|
|
23681
|
+
* @description Lists the members in a group. **Required scopes:** - `group_membership:read`
|
|
22680
23682
|
*
|
|
22681
23683
|
* @tags groups
|
|
22682
23684
|
* @name GroupMembersList
|
|
@@ -22711,7 +23713,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22711
23713
|
sort_by?: string[];
|
|
22712
23714
|
}, params?: RequestParams) => Promise<AxiosResponse<GroupMembersListResponse, any, {}>>;
|
|
22713
23715
|
/**
|
|
22714
|
-
* @description Lists the members in a group.
|
|
23716
|
+
* @description Lists the members in a group. **Required scopes:** - `group_membership:read`
|
|
22715
23717
|
*
|
|
22716
23718
|
* @tags groups
|
|
22717
23719
|
* @name GroupMembersListPost
|
|
@@ -22721,7 +23723,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22721
23723
|
*/
|
|
22722
23724
|
groupMembersListPost: (data: GroupMembersListRequest, params?: RequestParams) => Promise<AxiosResponse<GroupMembersListResponse, any, {}>>;
|
|
22723
23725
|
/**
|
|
22724
|
-
* @description Removes a member from a group.
|
|
23726
|
+
* @description Removes a member from a group. **Required scopes:** - `group_membership:write`
|
|
22725
23727
|
*
|
|
22726
23728
|
* @tags groups
|
|
22727
23729
|
* @name GroupMembersRemove
|
|
@@ -22731,7 +23733,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22731
23733
|
*/
|
|
22732
23734
|
groupMembersRemove: (data: GroupMembersRemoveRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
22733
23735
|
/**
|
|
22734
|
-
* @description Updates the requested group.
|
|
23736
|
+
* @description Updates the requested group. **Required scopes:** - `group:write`
|
|
22735
23737
|
*
|
|
22736
23738
|
* @tags groups
|
|
22737
23739
|
* @name GroupsUpdate
|
|
@@ -22856,7 +23858,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22856
23858
|
*/
|
|
22857
23859
|
linksCreate: (data: LinksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<LinksCreateResponse, any, {}>>;
|
|
22858
23860
|
/**
|
|
22859
|
-
* @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.
|
|
22860
23862
|
*
|
|
22861
23863
|
* @tags links
|
|
22862
23864
|
* @name LinksDelete
|
|
@@ -22961,7 +23963,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22961
23963
|
*/
|
|
22962
23964
|
linksListPost: (data: LinksListRequest, params?: RequestParams) => Promise<AxiosResponse<LinksListResponse, any, {}>>;
|
|
22963
23965
|
/**
|
|
22964
|
-
* @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.
|
|
22965
23967
|
*
|
|
22966
23968
|
* @tags links
|
|
22967
23969
|
* @name LinksReplace
|
|
@@ -22998,6 +24000,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22998
24000
|
/**
|
|
22999
24001
|
* Filters for target id in links associated with the meeting.
|
|
23000
24002
|
* @format id
|
|
24003
|
+
* @example "ACC-12345"
|
|
23001
24004
|
*/
|
|
23002
24005
|
'links.target'?: string;
|
|
23003
24006
|
/**
|
|
@@ -23019,6 +24022,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23019
24022
|
state?: MeetingState[];
|
|
23020
24023
|
/** Subtypes of meeting to be filtered. */
|
|
23021
24024
|
subtype?: string[];
|
|
24025
|
+
/** Filters for issues with this specific external record. */
|
|
24026
|
+
'sync_metadata.external_record'?: string[];
|
|
24027
|
+
/** Filters for issues with this specific external record type. */
|
|
24028
|
+
'sync_metadata.external_record_type'?: string[];
|
|
23022
24029
|
/** Filters for issues with this specific external reference. */
|
|
23023
24030
|
'sync_metadata.external_reference'?: string[];
|
|
23024
24031
|
/** Filters for works with selected sync statuses. */
|
|
@@ -23133,6 +24140,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23133
24140
|
/**
|
|
23134
24141
|
* Filters for target id in links associated with the meeting.
|
|
23135
24142
|
* @format id
|
|
24143
|
+
* @example "ACC-12345"
|
|
23136
24144
|
*/
|
|
23137
24145
|
'links.target'?: string;
|
|
23138
24146
|
/**
|
|
@@ -23161,6 +24169,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23161
24169
|
state?: MeetingState[];
|
|
23162
24170
|
/** Subtypes of meeting to be filtered. */
|
|
23163
24171
|
subtype?: string[];
|
|
24172
|
+
/** Filters for issues with this specific external record. */
|
|
24173
|
+
'sync_metadata.external_record'?: string[];
|
|
24174
|
+
/** Filters for issues with this specific external record type. */
|
|
24175
|
+
'sync_metadata.external_record_type'?: string[];
|
|
23164
24176
|
/** Filters for issues with this specific external reference. */
|
|
23165
24177
|
'sync_metadata.external_reference'?: string[];
|
|
23166
24178
|
/** Filters for works with selected sync statuses. */
|
|
@@ -23354,6 +24366,16 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23354
24366
|
* @secure
|
|
23355
24367
|
*/
|
|
23356
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, {}>>;
|
|
23357
24379
|
/**
|
|
23358
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.
|
|
23359
24381
|
*
|
|
@@ -23374,6 +24396,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23374
24396
|
* @format text
|
|
23375
24397
|
*/
|
|
23376
24398
|
version_key: string;
|
|
24399
|
+
/** Whether to include replay data in the response. Defaults to true. */
|
|
24400
|
+
include_replay_data?: boolean;
|
|
23377
24401
|
/**
|
|
23378
24402
|
* The unique identifier of the recording to retrieve in case of mobile
|
|
23379
24403
|
* sessions.
|
|
@@ -23396,6 +24420,52 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23396
24420
|
* @secure
|
|
23397
24421
|
*/
|
|
23398
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, {}>>;
|
|
23399
24469
|
/**
|
|
23400
24470
|
* @description Gets a specific session metadata by ID.
|
|
23401
24471
|
*
|
|
@@ -23771,6 +24841,37 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23771
24841
|
* @example "2023-01-01T12:00:00.000Z"
|
|
23772
24842
|
*/
|
|
23773
24843
|
'enhancement.actual_start_date.before'?: string;
|
|
24844
|
+
/**
|
|
24845
|
+
* Filters for enhancement by its health status. The allowed ids can be
|
|
24846
|
+
* extended by the user. Stock allowed values:
|
|
24847
|
+
* ```
|
|
24848
|
+
* {
|
|
24849
|
+
* "id": 1,
|
|
24850
|
+
* "label": "On Track",
|
|
24851
|
+
* "ordinal": 1,
|
|
24852
|
+
* "overridable": true
|
|
24853
|
+
* },
|
|
24854
|
+
* {
|
|
24855
|
+
* "id": 2,
|
|
24856
|
+
* "label": "At Risk",
|
|
24857
|
+
* "ordinal": 2,
|
|
24858
|
+
* "overridable": true
|
|
24859
|
+
* },
|
|
24860
|
+
* {
|
|
24861
|
+
* "id": 3,
|
|
24862
|
+
* "label": "Off Track",
|
|
24863
|
+
* "ordinal": 3,
|
|
24864
|
+
* "overridable": true
|
|
24865
|
+
* },
|
|
24866
|
+
* {
|
|
24867
|
+
* "id": 4,
|
|
24868
|
+
* "label": "Not Applicable",
|
|
24869
|
+
* "ordinal": 4,
|
|
24870
|
+
* "overridable": true
|
|
24871
|
+
* }
|
|
24872
|
+
* ```
|
|
24873
|
+
*/
|
|
24874
|
+
'enhancement.health'?: number[];
|
|
23774
24875
|
/**
|
|
23775
24876
|
* Filters for enhancement by its opportunities.
|
|
23776
24877
|
* @example ["OPP-12345"]
|
|
@@ -23778,6 +24879,16 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23778
24879
|
'enhancement.opportunities'?: string[];
|
|
23779
24880
|
/** Filters for enhancement by its rev score tier. */
|
|
23780
24881
|
'enhancement.rev_score_tier'?: EnhancementRevScoreTier[];
|
|
24882
|
+
/** Filters for the provided space IDs. */
|
|
24883
|
+
'enhancement.space.ids'?: string[];
|
|
24884
|
+
/** Whether to include child spaces. */
|
|
24885
|
+
'enhancement.space.include_children'?: boolean;
|
|
24886
|
+
/** Whether to include objects not associated with any space. */
|
|
24887
|
+
'enhancement.space.include_global'?: boolean;
|
|
24888
|
+
/** Whether to include parent spaces. */
|
|
24889
|
+
'enhancement.space.include_parents'?: boolean;
|
|
24890
|
+
/** The filter operator to be applied on space. */
|
|
24891
|
+
'enhancement.space.op'?: SpaceFilterSpaceIdOperatorType;
|
|
23781
24892
|
/** List of IDs of the custom stages which will be used for filtering. */
|
|
23782
24893
|
'enhancement.stage_v2'?: string[];
|
|
23783
24894
|
/** Filters for part with any of the provided custom states. */
|
|
@@ -23878,7 +24989,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23878
24989
|
*/
|
|
23879
24990
|
partsUpdate: (data: PartsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<PartsUpdateResponse, any, {}>>;
|
|
23880
24991
|
/**
|
|
23881
|
-
* @description Pings the DevRev service.
|
|
24992
|
+
* @description Pings the DevRev service. **Required scopes:** No scopes required.
|
|
23882
24993
|
*
|
|
23883
24994
|
* @name Ping
|
|
23884
24995
|
* @summary Ping
|
|
@@ -23893,7 +25004,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23893
25004
|
devrev_partition?: string;
|
|
23894
25005
|
}, params?: RequestParams) => Promise<AxiosResponse<PingResponse, any, {}>>;
|
|
23895
25006
|
/**
|
|
23896
|
-
* @description Pings the DevRev service.
|
|
25007
|
+
* @description Pings the DevRev service. **Required scopes:** No scopes required.
|
|
23897
25008
|
*
|
|
23898
25009
|
* @name PingPost
|
|
23899
25010
|
* @summary Ping (POST)
|
|
@@ -23957,7 +25068,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23957
25068
|
*/
|
|
23958
25069
|
reactionsUpdate: (data: ReactionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
23959
25070
|
/**
|
|
23960
|
-
* @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`
|
|
23961
25072
|
*
|
|
23962
25073
|
* @tags rev-orgs
|
|
23963
25074
|
* @name RevOrgsCreate
|
|
@@ -23967,7 +25078,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23967
25078
|
*/
|
|
23968
25079
|
revOrgsCreate: (data: RevOrgsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsCreateResponse, any, {}>>;
|
|
23969
25080
|
/**
|
|
23970
|
-
* @description Deletes the Rev organization.
|
|
25081
|
+
* @description Deletes the Rev organization. **Required scopes:** - `rev_org:all`
|
|
23971
25082
|
*
|
|
23972
25083
|
* @tags rev-orgs
|
|
23973
25084
|
* @name RevOrgsDelete
|
|
@@ -23977,7 +25088,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23977
25088
|
*/
|
|
23978
25089
|
revOrgsDelete: (data: RevOrgsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
23979
25090
|
/**
|
|
23980
|
-
* @description Retrieves the Rev organization's information.
|
|
25091
|
+
* @description Retrieves the Rev organization's information. **Required scopes:** - `rev_org:read`
|
|
23981
25092
|
*
|
|
23982
25093
|
* @tags rev-orgs
|
|
23983
25094
|
* @name RevOrgsGet
|
|
@@ -24001,7 +25112,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24001
25112
|
id?: string;
|
|
24002
25113
|
}, params?: RequestParams) => Promise<AxiosResponse<RevOrgsGetResponse, any, {}>>;
|
|
24003
25114
|
/**
|
|
24004
|
-
* @description Retrieves the Rev organization's information.
|
|
25115
|
+
* @description Retrieves the Rev organization's information. **Required scopes:** - `rev_org:read`
|
|
24005
25116
|
*
|
|
24006
25117
|
* @tags rev-orgs
|
|
24007
25118
|
* @name RevOrgsGetPost
|
|
@@ -24011,7 +25122,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24011
25122
|
*/
|
|
24012
25123
|
revOrgsGetPost: (data: RevOrgsGetRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsGetResponse, any, {}>>;
|
|
24013
25124
|
/**
|
|
24014
|
-
* @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`
|
|
24015
25126
|
*
|
|
24016
25127
|
* @tags rev-orgs
|
|
24017
25128
|
* @name RevOrgsList
|
|
@@ -24089,7 +25200,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24089
25200
|
tags?: string[];
|
|
24090
25201
|
}, params?: RequestParams) => Promise<AxiosResponse<RevOrgsListResponse, any, {}>>;
|
|
24091
25202
|
/**
|
|
24092
|
-
* @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`
|
|
24093
25204
|
*
|
|
24094
25205
|
* @tags rev-orgs
|
|
24095
25206
|
* @name RevOrgsListPost
|
|
@@ -24099,7 +25210,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24099
25210
|
*/
|
|
24100
25211
|
revOrgsListPost: (data: RevOrgsListRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsListResponse, any, {}>>;
|
|
24101
25212
|
/**
|
|
24102
|
-
* @description Updates the Rev organization's information.
|
|
25213
|
+
* @description Updates the Rev organization's information. **Required scopes:** - `rev_org:write`
|
|
24103
25214
|
*
|
|
24104
25215
|
* @tags rev-orgs
|
|
24105
25216
|
* @name RevOrgsUpdate
|
|
@@ -24109,7 +25220,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24109
25220
|
*/
|
|
24110
25221
|
revOrgsUpdate: (data: RevOrgsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsUpdateResponse, any, {}>>;
|
|
24111
25222
|
/**
|
|
24112
|
-
* @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`
|
|
24113
25224
|
*
|
|
24114
25225
|
* @tags rev-users
|
|
24115
25226
|
* @name RevUsersCreate
|
|
@@ -24119,7 +25230,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24119
25230
|
*/
|
|
24120
25231
|
revUsersCreate: (data: RevUsersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersCreateResponse, any, {}>>;
|
|
24121
25232
|
/**
|
|
24122
|
-
* @description Deletes a Rev user.
|
|
25233
|
+
* @description Deletes a Rev user. **Required scopes:** - `rev_user:all`
|
|
24123
25234
|
*
|
|
24124
25235
|
* @tags rev-users
|
|
24125
25236
|
* @name RevUsersDelete
|
|
@@ -24129,7 +25240,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24129
25240
|
*/
|
|
24130
25241
|
revUsersDelete: (data: RevUsersDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
24131
25242
|
/**
|
|
24132
|
-
* @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`
|
|
24133
25244
|
*
|
|
24134
25245
|
* @tags rev-users
|
|
24135
25246
|
* @name RevUsersGet
|
|
@@ -24145,7 +25256,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24145
25256
|
id: string;
|
|
24146
25257
|
}, params?: RequestParams) => Promise<AxiosResponse<RevUsersGetResponse, any, {}>>;
|
|
24147
25258
|
/**
|
|
24148
|
-
* @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`
|
|
24149
25260
|
*
|
|
24150
25261
|
* @tags rev-users
|
|
24151
25262
|
* @name RevUsersGetPost
|
|
@@ -24155,7 +25266,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24155
25266
|
*/
|
|
24156
25267
|
revUsersGetPost: (data: RevUsersGetRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersGetResponse, any, {}>>;
|
|
24157
25268
|
/**
|
|
24158
|
-
* @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`
|
|
24159
25270
|
*
|
|
24160
25271
|
* @tags rev-users
|
|
24161
25272
|
* @name RevUsersList
|
|
@@ -24236,7 +25347,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24236
25347
|
tags?: string[];
|
|
24237
25348
|
}, params?: RequestParams) => Promise<AxiosResponse<RevUsersListResponse, any, {}>>;
|
|
24238
25349
|
/**
|
|
24239
|
-
* @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`
|
|
24240
25351
|
*
|
|
24241
25352
|
* @tags rev-users
|
|
24242
25353
|
* @name RevUsersListPost
|
|
@@ -24246,7 +25357,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24246
25357
|
*/
|
|
24247
25358
|
revUsersListPost: (data: RevUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersListResponse, any, {}>>;
|
|
24248
25359
|
/**
|
|
24249
|
-
* @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`
|
|
24250
25361
|
*
|
|
24251
25362
|
* @tags rev-users
|
|
24252
25363
|
* @name RevUsersMerge
|
|
@@ -24256,7 +25367,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24256
25367
|
*/
|
|
24257
25368
|
revUsersMerge: (data: RevUsersMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
24258
25369
|
/**
|
|
24259
|
-
* @description Scans through all Rev users.
|
|
25370
|
+
* @description Scans through all Rev users. **Required scopes:** - `rev_user:read`
|
|
24260
25371
|
*
|
|
24261
25372
|
* @tags rev-users
|
|
24262
25373
|
* @name RevUsersScan
|
|
@@ -24325,7 +25436,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24325
25436
|
tags?: string[];
|
|
24326
25437
|
}, params?: RequestParams) => Promise<AxiosResponse<RevUsersScanResponse, any, {}>>;
|
|
24327
25438
|
/**
|
|
24328
|
-
* @description Scans through all Rev users.
|
|
25439
|
+
* @description Scans through all Rev users. **Required scopes:** - `rev_user:read`
|
|
24329
25440
|
*
|
|
24330
25441
|
* @tags rev-users
|
|
24331
25442
|
* @name RevUsersScanPost
|
|
@@ -24335,7 +25446,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24335
25446
|
*/
|
|
24336
25447
|
revUsersScanPost: (data: RevUsersScanRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersScanResponse, any, {}>>;
|
|
24337
25448
|
/**
|
|
24338
|
-
* @description Updates a Rev user.
|
|
25449
|
+
* @description Updates a Rev user. **Required scopes:** - `rev_user:write`
|
|
24339
25450
|
*
|
|
24340
25451
|
* @tags rev-users
|
|
24341
25452
|
* @name RevUsersUpdate
|
|
@@ -24471,6 +25582,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24471
25582
|
'space.include_global'?: boolean;
|
|
24472
25583
|
/** Whether to include parent spaces. */
|
|
24473
25584
|
'space.include_parents'?: boolean;
|
|
25585
|
+
/** The filter operator to be applied on space. */
|
|
25586
|
+
'space.op'?: SpaceFilterSpaceIdOperatorType;
|
|
24474
25587
|
/** The list of subtypes. */
|
|
24475
25588
|
subtype?: string[];
|
|
24476
25589
|
/** Filters for custom schema fragment of the provided types. */
|
|
@@ -24844,7 +25957,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24844
25957
|
* @request POST:/snap-kit-action.execute.deferred
|
|
24845
25958
|
* @secure
|
|
24846
25959
|
*/
|
|
24847
|
-
snapKitActionExecuteDeferred: (data: SnapKitActionExecuteDeferredRequest, params?: RequestParams) => Promise<AxiosResponse<
|
|
25960
|
+
snapKitActionExecuteDeferred: (data: SnapKitActionExecuteDeferredRequest, params?: RequestParams) => Promise<AxiosResponse<SnapKitActionExecuteDeferredResponse, any, {}>>;
|
|
24848
25961
|
/**
|
|
24849
25962
|
* @description Create a snap widget object.
|
|
24850
25963
|
*
|
|
@@ -25320,7 +26433,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25320
26433
|
*/
|
|
25321
26434
|
surveysUpdate: (data: SurveysUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysUpdateResponse, any, {}>>;
|
|
25322
26435
|
/**
|
|
25323
|
-
* @description Lists system users within your organization.
|
|
26436
|
+
* @description Lists system users within your organization. **Required scopes:** - `dev_user:read`
|
|
25324
26437
|
*
|
|
25325
26438
|
* @tags sys-users
|
|
25326
26439
|
* @name SysUsersList
|
|
@@ -25350,7 +26463,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25350
26463
|
sort_by?: string[];
|
|
25351
26464
|
}, params?: RequestParams) => Promise<AxiosResponse<SysUsersListResponse, any, {}>>;
|
|
25352
26465
|
/**
|
|
25353
|
-
* @description Lists system users within your organization.
|
|
26466
|
+
* @description Lists system users within your organization. **Required scopes:** - `dev_user:read`
|
|
25354
26467
|
*
|
|
25355
26468
|
* @tags sys-users
|
|
25356
26469
|
* @name SysUsersListPost
|
|
@@ -25360,7 +26473,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25360
26473
|
*/
|
|
25361
26474
|
sysUsersListPost: (data: SysUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<SysUsersListResponse, any, {}>>;
|
|
25362
26475
|
/**
|
|
25363
|
-
* @description Updates the system user.
|
|
26476
|
+
* @description Updates the system user. **Required scopes:** - `dev_user:write`
|
|
25364
26477
|
*
|
|
25365
26478
|
* @tags sys-users
|
|
25366
26479
|
* @name SysUsersUpdate
|
|
@@ -25538,6 +26651,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25538
26651
|
* @example "PROD-12345"
|
|
25539
26652
|
*/
|
|
25540
26653
|
object: string;
|
|
26654
|
+
/** The bias for request processing. The default is 'speed'. */
|
|
26655
|
+
bias?: TimelineEntriesListRequestBias;
|
|
25541
26656
|
/**
|
|
25542
26657
|
* The collection(s) to list entries from, otherwise if not provided,
|
|
25543
26658
|
* all entries are returned.
|
|
@@ -26035,8 +27150,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26035
27150
|
* @example ["ACC-12345"]
|
|
26036
27151
|
*/
|
|
26037
27152
|
'issue.accounts'?: string[];
|
|
26038
|
-
/** Filters for issues belonging to specific groups. */
|
|
26039
|
-
'issue.group'?: string[];
|
|
26040
27153
|
/** Filters for issues with any of the provided priorities. */
|
|
26041
27154
|
'issue.priority'?: IssuePriority[];
|
|
26042
27155
|
/** Filters for issues with any of the provided priority enum ids. */
|
|
@@ -26056,6 +27169,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26056
27169
|
'issue.space.include_global'?: boolean;
|
|
26057
27170
|
/** Whether to include parent spaces. */
|
|
26058
27171
|
'issue.space.include_parents'?: boolean;
|
|
27172
|
+
/** The filter operator to be applied on space. */
|
|
27173
|
+
'issue.space.op'?: SpaceFilterSpaceIdOperatorType;
|
|
26059
27174
|
/** Filters for issues with any of the sprint. */
|
|
26060
27175
|
'issue.sprint'?: string[];
|
|
26061
27176
|
/** Filters for issues with any of the provided sprint states. */
|
|
@@ -26099,6 +27214,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26099
27214
|
'staged_info.is_staged'?: boolean;
|
|
26100
27215
|
/** Filters for work with any of the provided states. */
|
|
26101
27216
|
state?: string[];
|
|
27217
|
+
/** Filters for issues with this specific external record. */
|
|
27218
|
+
'sync_metadata.external_record'?: string[];
|
|
27219
|
+
/** Filters for issues with this specific external record type. */
|
|
27220
|
+
'sync_metadata.external_record_type'?: string[];
|
|
26102
27221
|
/** Filters for issues with this specific external reference. */
|
|
26103
27222
|
'sync_metadata.external_reference'?: string[];
|
|
26104
27223
|
/** Filters for works with selected sync statuses. */
|
|
@@ -26133,6 +27252,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26133
27252
|
'ticket.channels_v2'?: string[];
|
|
26134
27253
|
/** Filters for tickets belonging to specific groups. */
|
|
26135
27254
|
'ticket.group'?: string[];
|
|
27255
|
+
/** The filter operator to be applied on group filter for tickets. */
|
|
27256
|
+
'ticket.group_op'?: WorksFilterTicketGroupsOpOperatorType;
|
|
26136
27257
|
/** Filters for frozen tickets. */
|
|
26137
27258
|
'ticket.is_frozen'?: boolean;
|
|
26138
27259
|
/** Filters for tickets that are spam. */
|
|
@@ -26234,8 +27355,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26234
27355
|
* @example ["ACC-12345"]
|
|
26235
27356
|
*/
|
|
26236
27357
|
'issue.accounts'?: string[];
|
|
26237
|
-
/** Filters for issues belonging to specific groups. */
|
|
26238
|
-
'issue.group'?: string[];
|
|
26239
27358
|
/** Filters for issues with any of the provided priorities. */
|
|
26240
27359
|
'issue.priority'?: IssuePriority[];
|
|
26241
27360
|
/** Filters for issues with any of the provided priority enum ids. */
|
|
@@ -26255,6 +27374,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26255
27374
|
'issue.space.include_global'?: boolean;
|
|
26256
27375
|
/** Whether to include parent spaces. */
|
|
26257
27376
|
'issue.space.include_parents'?: boolean;
|
|
27377
|
+
/** The filter operator to be applied on space. */
|
|
27378
|
+
'issue.space.op'?: SpaceFilterSpaceIdOperatorType;
|
|
26258
27379
|
/** Filters for issues with any of the sprint. */
|
|
26259
27380
|
'issue.sprint'?: string[];
|
|
26260
27381
|
/** Filters for issues with any of the provided sprint states. */
|
|
@@ -26300,6 +27421,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26300
27421
|
'staged_info.is_staged'?: boolean;
|
|
26301
27422
|
/** Filters for work with any of the provided states. */
|
|
26302
27423
|
state?: string[];
|
|
27424
|
+
/** Filters for issues with this specific external record. */
|
|
27425
|
+
'sync_metadata.external_record'?: string[];
|
|
27426
|
+
/** Filters for issues with this specific external record type. */
|
|
27427
|
+
'sync_metadata.external_record_type'?: string[];
|
|
26303
27428
|
/** Filters for issues with this specific external reference. */
|
|
26304
27429
|
'sync_metadata.external_reference'?: string[];
|
|
26305
27430
|
/** Filters for works with selected sync statuses. */
|
|
@@ -26334,6 +27459,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26334
27459
|
'ticket.channels_v2'?: string[];
|
|
26335
27460
|
/** Filters for tickets belonging to specific groups. */
|
|
26336
27461
|
'ticket.group'?: string[];
|
|
27462
|
+
/** The filter operator to be applied on group filter for tickets. */
|
|
27463
|
+
'ticket.group_op'?: WorksFilterTicketGroupsOpOperatorType;
|
|
26337
27464
|
/** Filters for frozen tickets. */
|
|
26338
27465
|
'ticket.is_frozen'?: boolean;
|
|
26339
27466
|
/** Filters for tickets that are spam. */
|
|
@@ -26442,8 +27569,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26442
27569
|
* @example ["ACC-12345"]
|
|
26443
27570
|
*/
|
|
26444
27571
|
'issue.accounts'?: string[];
|
|
26445
|
-
/** Filters for issues belonging to specific groups. */
|
|
26446
|
-
'issue.group'?: string[];
|
|
26447
27572
|
/** Filters for issues with any of the provided priorities. */
|
|
26448
27573
|
'issue.priority'?: IssuePriority[];
|
|
26449
27574
|
/** Filters for issues with any of the provided priority enum ids. */
|
|
@@ -26463,6 +27588,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26463
27588
|
'issue.space.include_global'?: boolean;
|
|
26464
27589
|
/** Whether to include parent spaces. */
|
|
26465
27590
|
'issue.space.include_parents'?: boolean;
|
|
27591
|
+
/** The filter operator to be applied on space. */
|
|
27592
|
+
'issue.space.op'?: SpaceFilterSpaceIdOperatorType;
|
|
26466
27593
|
/** Filters for issues with any of the sprint. */
|
|
26467
27594
|
'issue.sprint'?: string[];
|
|
26468
27595
|
/** Filters for issues with any of the provided sprint states. */
|
|
@@ -26518,6 +27645,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26518
27645
|
'staged_info.is_staged'?: boolean;
|
|
26519
27646
|
/** Filters for work with any of the provided states. */
|
|
26520
27647
|
state?: string[];
|
|
27648
|
+
/** Filters for issues with this specific external record. */
|
|
27649
|
+
'sync_metadata.external_record'?: string[];
|
|
27650
|
+
/** Filters for issues with this specific external record type. */
|
|
27651
|
+
'sync_metadata.external_record_type'?: string[];
|
|
26521
27652
|
/** Filters for issues with this specific external reference. */
|
|
26522
27653
|
'sync_metadata.external_reference'?: string[];
|
|
26523
27654
|
/** Filters for works with selected sync statuses. */
|
|
@@ -26552,6 +27683,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26552
27683
|
'ticket.channels_v2'?: string[];
|
|
26553
27684
|
/** Filters for tickets belonging to specific groups. */
|
|
26554
27685
|
'ticket.group'?: string[];
|
|
27686
|
+
/** The filter operator to be applied on group filter for tickets. */
|
|
27687
|
+
'ticket.group_op'?: WorksFilterTicketGroupsOpOperatorType;
|
|
26555
27688
|
/** Filters for frozen tickets. */
|
|
26556
27689
|
'ticket.is_frozen'?: boolean;
|
|
26557
27690
|
/** Filters for tickets that are spam. */
|