@devrev/typescript-sdk 1.1.71 → 1.1.72
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 +1671 -96
- package/dist/auto-generated/beta/beta-devrev-sdk.js +374 -6
- package/dist/auto-generated/public-devrev-sdk.d.ts +647 -91
- package/dist/auto-generated/public-devrev-sdk.js +111 -4
- 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 +1 -1
|
@@ -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. */
|
|
@@ -3678,6 +3732,8 @@ export interface ConversationsListRequest {
|
|
|
3678
3732
|
* channels.
|
|
3679
3733
|
*/
|
|
3680
3734
|
channels?: string[];
|
|
3735
|
+
/** Provides ways to specify date ranges on objects. */
|
|
3736
|
+
created_date_new?: DateFilter;
|
|
3681
3737
|
/**
|
|
3682
3738
|
* The cursor to resume iteration from. If not provided, then
|
|
3683
3739
|
* iteration starts from the beginning.
|
|
@@ -3735,6 +3791,8 @@ export interface ConversationsListRequest {
|
|
|
3735
3791
|
rev_orgs?: string[];
|
|
3736
3792
|
/** The filter for SLA summary. */
|
|
3737
3793
|
sla_summary?: SlaSummaryFilter;
|
|
3794
|
+
/** Fields to sort the conversations by and the direction to sort them. */
|
|
3795
|
+
sort_by?: string[];
|
|
3738
3796
|
/** Filters for conversations with any of the provided source channels. */
|
|
3739
3797
|
source_channel?: string[];
|
|
3740
3798
|
/**
|
|
@@ -4753,6 +4811,11 @@ export interface CustomSchemaFragmentsSetRequestTenantFragment {
|
|
|
4753
4811
|
* @pattern ^[A-Z]{2,10}$
|
|
4754
4812
|
*/
|
|
4755
4813
|
id_prefix?: string;
|
|
4814
|
+
/**
|
|
4815
|
+
* The display name of the custom leaf type.
|
|
4816
|
+
* @format text
|
|
4817
|
+
*/
|
|
4818
|
+
leaf_type_display_name?: string;
|
|
4756
4819
|
/** List of Per-DevOrg stock field overrides. */
|
|
4757
4820
|
stock_field_overrides?: StockFieldOverride[];
|
|
4758
4821
|
}
|
|
@@ -5096,6 +5159,21 @@ export type Dashboard = AtomBase;
|
|
|
5096
5159
|
* and widgets.
|
|
5097
5160
|
*/
|
|
5098
5161
|
export type DashboardFilter = object;
|
|
5162
|
+
/**
|
|
5163
|
+
* data-label-config
|
|
5164
|
+
* The configuration for data labels.
|
|
5165
|
+
*/
|
|
5166
|
+
export interface DataLabelConfig {
|
|
5167
|
+
/** The display mode for data labels. */
|
|
5168
|
+
display_mode?: DataLabelConfigDisplayMode;
|
|
5169
|
+
/** Whether data labels are enabled. */
|
|
5170
|
+
enable?: boolean;
|
|
5171
|
+
}
|
|
5172
|
+
/** The display mode for data labels. */
|
|
5173
|
+
export declare enum DataLabelConfigDisplayMode {
|
|
5174
|
+
Percentage = "percentage",
|
|
5175
|
+
Value = "value"
|
|
5176
|
+
}
|
|
5099
5177
|
/**
|
|
5100
5178
|
* data-source-join
|
|
5101
5179
|
* A list of possible joins for the data source. Follows foreign key
|
|
@@ -6909,7 +6987,7 @@ export interface Error {
|
|
|
6909
6987
|
* error-bad-request
|
|
6910
6988
|
* Describes a error due to a bad request by the client.
|
|
6911
6989
|
*/
|
|
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) & {
|
|
6990
|
+
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
6991
|
type: ErrorBadRequestType;
|
|
6914
6992
|
};
|
|
6915
6993
|
/** error-bad-request-artifact-already-attached-to-a-parent */
|
|
@@ -7026,6 +7104,19 @@ export declare enum ErrorBadRequestGroupHierarchyInvalidParentReason {
|
|
|
7026
7104
|
MultipleParents = "multiple_parents",
|
|
7027
7105
|
ParentNotLinkedToSpace = "parent_not_linked_to_space"
|
|
7028
7106
|
}
|
|
7107
|
+
/** error-bad-request-id-not-found */
|
|
7108
|
+
export interface ErrorBadRequestIdNotFound {
|
|
7109
|
+
/**
|
|
7110
|
+
* The field for which the object wasn't found.
|
|
7111
|
+
* @format text
|
|
7112
|
+
*/
|
|
7113
|
+
field_name?: string;
|
|
7114
|
+
/**
|
|
7115
|
+
* The ID of the object that wasn't found.
|
|
7116
|
+
* @format id
|
|
7117
|
+
*/
|
|
7118
|
+
id: string;
|
|
7119
|
+
}
|
|
7029
7120
|
/** error-bad-request-invalid-api-version */
|
|
7030
7121
|
export interface ErrorBadRequestInvalidApiVersion {
|
|
7031
7122
|
/**
|
|
@@ -7200,6 +7291,83 @@ export interface ErrorBadRequestMissingRequiredField {
|
|
|
7200
7291
|
}
|
|
7201
7292
|
/** error-bad-request-parse-error */
|
|
7202
7293
|
export type ErrorBadRequestParseError = object;
|
|
7294
|
+
/**
|
|
7295
|
+
* error-bad-request-space-group-already-linked
|
|
7296
|
+
* The group is already linked to another space.
|
|
7297
|
+
*/
|
|
7298
|
+
export type ErrorBadRequestSpaceGroupAlreadyLinked = object;
|
|
7299
|
+
/**
|
|
7300
|
+
* error-bad-request-space-group-hierarchy-depth-exceeded
|
|
7301
|
+
* Linking the group would exceed the maximum group hierarchy depth.
|
|
7302
|
+
*/
|
|
7303
|
+
export type ErrorBadRequestSpaceGroupHierarchyDepthExceeded = object;
|
|
7304
|
+
/**
|
|
7305
|
+
* error-bad-request-space-group-hierarchy-invalid-parent
|
|
7306
|
+
* The group has multiple parents, which is not allowed.
|
|
7307
|
+
*/
|
|
7308
|
+
export type ErrorBadRequestSpaceGroupHierarchyInvalidParent = object;
|
|
7309
|
+
/**
|
|
7310
|
+
* error-bad-request-space-group-not-found
|
|
7311
|
+
* The group does not exist or is deleted.
|
|
7312
|
+
*/
|
|
7313
|
+
export type ErrorBadRequestSpaceGroupNotFound = object;
|
|
7314
|
+
/**
|
|
7315
|
+
* error-bad-request-space-group-parent-not-linked-to-space
|
|
7316
|
+
* The parent group is not linked to a space.
|
|
7317
|
+
*/
|
|
7318
|
+
export type ErrorBadRequestSpaceGroupParentNotLinkedToSpace = object;
|
|
7319
|
+
/**
|
|
7320
|
+
* error-bad-request-space-key-change-limit-exceeded
|
|
7321
|
+
* The key change limit has been reached.
|
|
7322
|
+
*/
|
|
7323
|
+
export type ErrorBadRequestSpaceKeyChangeLimitExceeded = object;
|
|
7324
|
+
/**
|
|
7325
|
+
* error-bad-request-space-key-change-rate-limited
|
|
7326
|
+
* The key was changed too recently; rate limit not elapsed.
|
|
7327
|
+
*/
|
|
7328
|
+
export type ErrorBadRequestSpaceKeyChangeRateLimited = object;
|
|
7329
|
+
/**
|
|
7330
|
+
* error-bad-request-space-key-count-limit-exceeded
|
|
7331
|
+
* Adding a new key would exceed the maximum allowed key count.
|
|
7332
|
+
*/
|
|
7333
|
+
export type ErrorBadRequestSpaceKeyCountLimitExceeded = object;
|
|
7334
|
+
/**
|
|
7335
|
+
* error-bad-request-space-management-disabled
|
|
7336
|
+
* Space management is not enabled for this organization.
|
|
7337
|
+
*/
|
|
7338
|
+
export type ErrorBadRequestSpaceManagementDisabled = object;
|
|
7339
|
+
/**
|
|
7340
|
+
* error-bad-request-space-reserved-key
|
|
7341
|
+
* The requested space key is reserved by the system.
|
|
7342
|
+
*/
|
|
7343
|
+
export type ErrorBadRequestSpaceReservedKey = object;
|
|
7344
|
+
/**
|
|
7345
|
+
* error-bad-request-space-validation-error
|
|
7346
|
+
* A space validation error.
|
|
7347
|
+
*/
|
|
7348
|
+
export type ErrorBadRequestSpaceValidationError = (ErrorBadRequestSpaceGroupAlreadyLinked | ErrorBadRequestSpaceGroupHierarchyDepthExceeded | ErrorBadRequestSpaceGroupHierarchyInvalidParent | ErrorBadRequestSpaceGroupNotFound | ErrorBadRequestSpaceGroupParentNotLinkedToSpace | ErrorBadRequestSpaceKeyChangeLimitExceeded | ErrorBadRequestSpaceKeyChangeRateLimited | ErrorBadRequestSpaceKeyCountLimitExceeded | ErrorBadRequestSpaceManagementDisabled | ErrorBadRequestSpaceReservedKey) & {
|
|
7349
|
+
type: ErrorBadRequestSpaceValidationErrorType;
|
|
7350
|
+
};
|
|
7351
|
+
export declare enum ErrorBadRequestSpaceValidationErrorType {
|
|
7352
|
+
SpaceGroupAlreadyLinked = "space_group_already_linked",
|
|
7353
|
+
SpaceGroupHierarchyDepthExceeded = "space_group_hierarchy_depth_exceeded",
|
|
7354
|
+
SpaceGroupHierarchyInvalidParent = "space_group_hierarchy_invalid_parent",
|
|
7355
|
+
SpaceGroupNotFound = "space_group_not_found",
|
|
7356
|
+
SpaceGroupParentNotLinkedToSpace = "space_group_parent_not_linked_to_space",
|
|
7357
|
+
SpaceKeyChangeLimitExceeded = "space_key_change_limit_exceeded",
|
|
7358
|
+
SpaceKeyChangeRateLimited = "space_key_change_rate_limited",
|
|
7359
|
+
SpaceKeyCountLimitExceeded = "space_key_count_limit_exceeded",
|
|
7360
|
+
SpaceManagementDisabled = "space_management_disabled",
|
|
7361
|
+
SpaceReservedKey = "space_reserved_key"
|
|
7362
|
+
}
|
|
7363
|
+
/**
|
|
7364
|
+
* error-bad-request-space-validation-errors
|
|
7365
|
+
* Error indicating one or more space validation failures.
|
|
7366
|
+
*/
|
|
7367
|
+
export interface ErrorBadRequestSpaceValidationErrors {
|
|
7368
|
+
/** The list of space validation errors. */
|
|
7369
|
+
errors?: ErrorBadRequestSpaceValidationError[];
|
|
7370
|
+
}
|
|
7203
7371
|
/**
|
|
7204
7372
|
* error-bad-request-stale-schema-fragments
|
|
7205
7373
|
* Error indicating that the request contained one or more stale schema
|
|
@@ -7216,6 +7384,7 @@ export declare enum ErrorBadRequestType {
|
|
|
7216
7384
|
GroupHierarchyCircularDependency = "group_hierarchy_circular_dependency",
|
|
7217
7385
|
GroupHierarchyDepthExceeded = "group_hierarchy_depth_exceeded",
|
|
7218
7386
|
GroupHierarchyInvalidParent = "group_hierarchy_invalid_parent",
|
|
7387
|
+
IdNotFound = "id_not_found",
|
|
7219
7388
|
InvalidApiVersion = "invalid_api_version",
|
|
7220
7389
|
InvalidContentType = "invalid_content_type",
|
|
7221
7390
|
InvalidEnumValue = "invalid_enum_value",
|
|
@@ -7225,6 +7394,7 @@ export declare enum ErrorBadRequestType {
|
|
|
7225
7394
|
MissingDependency = "missing_dependency",
|
|
7226
7395
|
MissingRequiredField = "missing_required_field",
|
|
7227
7396
|
ParseError = "parse_error",
|
|
7397
|
+
SpaceValidationErrors = "space_validation_errors",
|
|
7228
7398
|
StaleSchemaFragments = "stale_schema_fragments",
|
|
7229
7399
|
UnexpectedIdType = "unexpected_id_type",
|
|
7230
7400
|
UnexpectedJsonType = "unexpected_json_type",
|
|
@@ -7399,7 +7569,10 @@ export type ErrorForbidden = ErrorBase & ErrorForbiddenForbidden & {
|
|
|
7399
7569
|
type: ErrorForbiddenType;
|
|
7400
7570
|
};
|
|
7401
7571
|
/** error-forbidden-forbidden */
|
|
7402
|
-
export
|
|
7572
|
+
export interface ErrorForbiddenForbidden {
|
|
7573
|
+
/** The ID(s) of the objects that were forbidden to the user. */
|
|
7574
|
+
object_ids?: string[];
|
|
7575
|
+
}
|
|
7403
7576
|
export declare enum ErrorForbiddenType {
|
|
7404
7577
|
Forbidden = "forbidden"
|
|
7405
7578
|
}
|
|
@@ -7442,6 +7615,20 @@ export interface ErrorRequestEntityTooLargeRequestEntityTooLarge {
|
|
|
7442
7615
|
export declare enum ErrorRequestEntityTooLargeType {
|
|
7443
7616
|
RequestEntityTooLarge = "request_entity_too_large"
|
|
7444
7617
|
}
|
|
7618
|
+
/** error-see-other */
|
|
7619
|
+
export type ErrorSeeOther = ErrorBase & ErrorSeeOtherSeeOther & {
|
|
7620
|
+
type: ErrorSeeOtherType;
|
|
7621
|
+
/**
|
|
7622
|
+
* The URL to redirect to.
|
|
7623
|
+
* @format text
|
|
7624
|
+
*/
|
|
7625
|
+
location: string;
|
|
7626
|
+
};
|
|
7627
|
+
/** error-see-other-see-other */
|
|
7628
|
+
export type ErrorSeeOtherSeeOther = object;
|
|
7629
|
+
export declare enum ErrorSeeOtherType {
|
|
7630
|
+
SeeOther = "see_other"
|
|
7631
|
+
}
|
|
7445
7632
|
/** error-service-unavailable */
|
|
7446
7633
|
export type ErrorServiceUnavailable = ErrorBase & ErrorServiceUnavailableServiceUnavailable & {
|
|
7447
7634
|
type: ErrorServiceUnavailableType;
|
|
@@ -8056,6 +8243,7 @@ export declare enum ExternalSystemType {
|
|
|
8056
8243
|
SalesforceSales = "salesforce_sales",
|
|
8057
8244
|
SalesforceService = "salesforce_service",
|
|
8058
8245
|
Servicenow = "servicenow",
|
|
8246
|
+
Sim = "sim",
|
|
8059
8247
|
Zendesk = "zendesk"
|
|
8060
8248
|
}
|
|
8061
8249
|
/** feature */
|
|
@@ -8638,6 +8826,10 @@ export type GroupedVista = VistaBase & {
|
|
|
8638
8826
|
filter_type: GroupedVistaFilterType;
|
|
8639
8827
|
/** Denotes the use case of the grouped vista. */
|
|
8640
8828
|
flavor?: GroupedVistaFlavor;
|
|
8829
|
+
/** Automations specific to the Sprint Board vistas. */
|
|
8830
|
+
sprint_board_automation?: SprintBoardAutomation;
|
|
8831
|
+
/** Settings specific to sprint board vistas. */
|
|
8832
|
+
sprint_board_config?: SprintBoardConfig;
|
|
8641
8833
|
};
|
|
8642
8834
|
/** Type of DevRev object for which the grouped vista is applicable. */
|
|
8643
8835
|
export declare enum GroupedVistaFilterType {
|
|
@@ -8739,11 +8931,6 @@ export interface GroupsListRequest {
|
|
|
8739
8931
|
mode?: ListMode;
|
|
8740
8932
|
/** Filters the groups on the basis of group name. */
|
|
8741
8933
|
name?: string[];
|
|
8742
|
-
/**
|
|
8743
|
-
* Filters the groups on the basis of parent group(s).
|
|
8744
|
-
* @deprecated
|
|
8745
|
-
*/
|
|
8746
|
-
parents?: string[];
|
|
8747
8934
|
/** Comma-separated fields to sort the groups by. */
|
|
8748
8935
|
sort_by?: string[];
|
|
8749
8936
|
space?: SpaceFilter;
|
|
@@ -9042,6 +9229,14 @@ export type Issue = WorkBase & {
|
|
|
9042
9229
|
* @format double
|
|
9043
9230
|
*/
|
|
9044
9231
|
estimated_effort?: number;
|
|
9232
|
+
/**
|
|
9233
|
+
* Timestamp of the last code push (e.g. latest commit on all PRs with
|
|
9234
|
+
* this issue). Note the Git-based snap-in populates this field, and
|
|
9235
|
+
* should be installed in the org for auto-population.
|
|
9236
|
+
* @format date-time
|
|
9237
|
+
* @example "2023-01-01T12:00:00.000Z"
|
|
9238
|
+
*/
|
|
9239
|
+
last_code_activity?: string;
|
|
9045
9240
|
/** Priority of the work based upon impact and criticality. */
|
|
9046
9241
|
priority?: IssuePriority;
|
|
9047
9242
|
/** The properties of an enum value. */
|
|
@@ -9049,6 +9244,11 @@ export type Issue = WorkBase & {
|
|
|
9049
9244
|
/** SLA summary for the object. */
|
|
9050
9245
|
sla_summary?: ArchetypeSlaSummary;
|
|
9051
9246
|
sla_tracker?: SlaTrackerSummary;
|
|
9247
|
+
/**
|
|
9248
|
+
* The space associated with the object.
|
|
9249
|
+
* @format id
|
|
9250
|
+
*/
|
|
9251
|
+
space?: string;
|
|
9052
9252
|
/** Vista group item. */
|
|
9053
9253
|
sprint?: VistaGroupItemSummary;
|
|
9054
9254
|
/**
|
|
@@ -9071,6 +9271,11 @@ export type IssueSummary = WorkBaseSummary & {
|
|
|
9071
9271
|
priority?: IssuePriority;
|
|
9072
9272
|
/** The properties of an enum value. */
|
|
9073
9273
|
priority_v2?: EnumValueSummary;
|
|
9274
|
+
/**
|
|
9275
|
+
* The space associated with the object.
|
|
9276
|
+
* @format id
|
|
9277
|
+
*/
|
|
9278
|
+
space?: string;
|
|
9074
9279
|
/** Vista group item. */
|
|
9075
9280
|
sprint?: VistaGroupItemSummary;
|
|
9076
9281
|
};
|
|
@@ -9117,6 +9322,7 @@ export declare enum JobCategory {
|
|
|
9117
9322
|
ExportCustomObject = "export_custom_object",
|
|
9118
9323
|
ExportDevuser = "export_devuser",
|
|
9119
9324
|
ExportIncident = "export_incident",
|
|
9325
|
+
ExportMeeting = "export_meeting",
|
|
9120
9326
|
ExportPart = "export_part",
|
|
9121
9327
|
ExportRevuser = "export_revuser",
|
|
9122
9328
|
ExportWork = "export_work",
|
|
@@ -9528,7 +9734,7 @@ export interface LinksCreateRequest {
|
|
|
9528
9734
|
*/
|
|
9529
9735
|
custom_link_type?: string;
|
|
9530
9736
|
/** Type of link used to define the relationship. */
|
|
9531
|
-
link_type
|
|
9737
|
+
link_type?: LinkType;
|
|
9532
9738
|
/**
|
|
9533
9739
|
* The ID of the source object.
|
|
9534
9740
|
* @format id
|
|
@@ -9673,13 +9879,18 @@ export interface LinksListResponse {
|
|
|
9673
9879
|
* The request to replace a link.
|
|
9674
9880
|
*/
|
|
9675
9881
|
export interface LinksReplaceRequest {
|
|
9882
|
+
/**
|
|
9883
|
+
* The ID of the custom link type, for the new link to be created.
|
|
9884
|
+
* @format id
|
|
9885
|
+
*/
|
|
9886
|
+
custom_link_type?: string;
|
|
9676
9887
|
/**
|
|
9677
9888
|
* The ID of the link to be replaced.
|
|
9678
9889
|
* @format id
|
|
9679
9890
|
*/
|
|
9680
9891
|
id: string;
|
|
9681
9892
|
/** Type of link used to define the relationship. */
|
|
9682
|
-
link_type
|
|
9893
|
+
link_type?: LinkType;
|
|
9683
9894
|
/**
|
|
9684
9895
|
* The ID of the source object.
|
|
9685
9896
|
* @format id
|
|
@@ -9709,6 +9920,133 @@ export declare enum ListMode {
|
|
|
9709
9920
|
After = "after",
|
|
9710
9921
|
Before = "before"
|
|
9711
9922
|
}
|
|
9923
|
+
/** marketplace-item-feature-base */
|
|
9924
|
+
export type MarketplaceItemFeatureBase = AtomBase & {
|
|
9925
|
+
/**
|
|
9926
|
+
* Description of the marketplace item feature.
|
|
9927
|
+
* @format text
|
|
9928
|
+
*/
|
|
9929
|
+
description?: string;
|
|
9930
|
+
/** Type of the marketplace item feature. */
|
|
9931
|
+
feature_type?: MarketplaceItemFeatureFeatureType;
|
|
9932
|
+
marketplace_item?: MarketplaceItemSummary;
|
|
9933
|
+
/**
|
|
9934
|
+
* Name of the marketplace item feature.
|
|
9935
|
+
* @format text
|
|
9936
|
+
*/
|
|
9937
|
+
name?: string;
|
|
9938
|
+
};
|
|
9939
|
+
/** marketplace-item-feature-base-summary */
|
|
9940
|
+
export type MarketplaceItemFeatureBaseSummary = AtomBaseSummary & {
|
|
9941
|
+
/**
|
|
9942
|
+
* Name of the marketplace item feature.
|
|
9943
|
+
* @format text
|
|
9944
|
+
*/
|
|
9945
|
+
name?: string;
|
|
9946
|
+
};
|
|
9947
|
+
/** Type of the marketplace item feature. */
|
|
9948
|
+
export declare enum MarketplaceItemFeatureFeatureType {
|
|
9949
|
+
Import = "import",
|
|
9950
|
+
McpServer = "mcp_server",
|
|
9951
|
+
Operation = "operation"
|
|
9952
|
+
}
|
|
9953
|
+
/** marketplace-item-import-feature */
|
|
9954
|
+
export type MarketplaceItemImportFeature = MarketplaceItemFeatureBase & {
|
|
9955
|
+
/** Capabilities of the import feature (e.g. TIME_SCOPED_SYNCS, etc.). */
|
|
9956
|
+
capabilities?: string[];
|
|
9957
|
+
};
|
|
9958
|
+
/** marketplace-item-import-feature-summary */
|
|
9959
|
+
export type MarketplaceItemImportFeatureSummary = MarketplaceItemFeatureBaseSummary;
|
|
9960
|
+
/**
|
|
9961
|
+
* Marketplace listing type defines what backing service will be used when
|
|
9962
|
+
* validating a create marketplace submission request, installing
|
|
9963
|
+
* marketplace items in some organizations, etc. It is important to note
|
|
9964
|
+
* that marketplace listings of type app are not backed by any service and
|
|
9965
|
+
* are only placeholders for existing functionality in the DevRev platform
|
|
9966
|
+
* (e.g. Jira AirSync).
|
|
9967
|
+
*/
|
|
9968
|
+
export declare enum MarketplaceItemItemType {
|
|
9969
|
+
App = "app",
|
|
9970
|
+
External = "external",
|
|
9971
|
+
Snapin = "snapin"
|
|
9972
|
+
}
|
|
9973
|
+
/** marketplace-item-mcp-server-feature */
|
|
9974
|
+
export type MarketplaceItemMcpServerFeature = MarketplaceItemFeatureBase & {
|
|
9975
|
+
/**
|
|
9976
|
+
* Server type represents the type of the MCP server. The server type can
|
|
9977
|
+
* be either 'local' or 'remote'.
|
|
9978
|
+
*/
|
|
9979
|
+
server_type?: MarketplaceItemMcpServerFeatureServerType;
|
|
9980
|
+
/**
|
|
9981
|
+
* URL of the remote MCP server.
|
|
9982
|
+
* @format text
|
|
9983
|
+
*/
|
|
9984
|
+
url?: string;
|
|
9985
|
+
};
|
|
9986
|
+
/**
|
|
9987
|
+
* Server type represents the type of the MCP server. The server type can
|
|
9988
|
+
* be either 'local' or 'remote'.
|
|
9989
|
+
*/
|
|
9990
|
+
export declare enum MarketplaceItemMcpServerFeatureServerType {
|
|
9991
|
+
Local = "local",
|
|
9992
|
+
Remote = "remote"
|
|
9993
|
+
}
|
|
9994
|
+
/** marketplace-item-mcp-server-feature-summary */
|
|
9995
|
+
export type MarketplaceItemMcpServerFeatureSummary = MarketplaceItemFeatureBaseSummary;
|
|
9996
|
+
/** marketplace-item-operation-feature */
|
|
9997
|
+
export type MarketplaceItemOperationFeature = MarketplaceItemFeatureBase & {
|
|
9998
|
+
/**
|
|
9999
|
+
* Operation type represents the type of the workflow operation. The
|
|
10000
|
+
* operation type can be either 'action', 'trigger' or 'control'.
|
|
10001
|
+
*/
|
|
10002
|
+
operation_type?: MarketplaceItemOperationFeatureOperationType;
|
|
10003
|
+
};
|
|
10004
|
+
/**
|
|
10005
|
+
* Operation type represents the type of the workflow operation. The
|
|
10006
|
+
* operation type can be either 'action', 'trigger' or 'control'.
|
|
10007
|
+
*/
|
|
10008
|
+
export declare enum MarketplaceItemOperationFeatureOperationType {
|
|
10009
|
+
Action = "action",
|
|
10010
|
+
Control = "control",
|
|
10011
|
+
Trigger = "trigger"
|
|
10012
|
+
}
|
|
10013
|
+
/** marketplace-item-operation-feature-summary */
|
|
10014
|
+
export type MarketplaceItemOperationFeatureSummary = MarketplaceItemFeatureBaseSummary;
|
|
10015
|
+
/** marketplace-item-summary */
|
|
10016
|
+
export type MarketplaceItemSummary = AtomBaseSummary & {
|
|
10017
|
+
/**
|
|
10018
|
+
* Marketplace listing type defines what backing service will be used when
|
|
10019
|
+
* validating a create marketplace submission request, installing
|
|
10020
|
+
* marketplace items in some organizations, etc. It is important to note
|
|
10021
|
+
* that marketplace listings of type app are not backed by any service and
|
|
10022
|
+
* are only placeholders for existing functionality in the DevRev platform
|
|
10023
|
+
* (e.g. Jira AirSync).
|
|
10024
|
+
*/
|
|
10025
|
+
item_type?: MarketplaceItemItemType;
|
|
10026
|
+
/**
|
|
10027
|
+
* Name of the marketplace listing. The value for a name can be any
|
|
10028
|
+
* string with a minimum length of 3 and a maximum length of 128.
|
|
10029
|
+
* @format text
|
|
10030
|
+
*/
|
|
10031
|
+
name?: string;
|
|
10032
|
+
/**
|
|
10033
|
+
* URL slug of the marketplace item. Slug cannot be changed after it
|
|
10034
|
+
* has been set. Its' value needs to be in the right format and it has
|
|
10035
|
+
* to be unique per marketplace. Slug value must start with a
|
|
10036
|
+
* lowercase letter, followed by zero or more lowercase letters or
|
|
10037
|
+
* hyphens, and must end with a lowercase letter. For example, a valid
|
|
10038
|
+
* slug value might be 'my-automation', but an invalid value might be
|
|
10039
|
+
* 'MyAutomation' or 'my-automation-1'.
|
|
10040
|
+
* @format text
|
|
10041
|
+
*/
|
|
10042
|
+
slug?: string;
|
|
10043
|
+
/**
|
|
10044
|
+
* Tagline is a one-liner description of the marketplace listing. It
|
|
10045
|
+
* is used when presenting a marketplace listing on the home page.
|
|
10046
|
+
* @format text
|
|
10047
|
+
*/
|
|
10048
|
+
tagline?: string;
|
|
10049
|
+
};
|
|
9712
10050
|
/**
|
|
9713
10051
|
* meerkat-widget-column-function
|
|
9714
10052
|
* A meerkat specific column function.
|
|
@@ -9802,6 +10140,8 @@ export type Meeting = AtomBase & {
|
|
|
9802
10140
|
* @format text
|
|
9803
10141
|
*/
|
|
9804
10142
|
external_ref?: string;
|
|
10143
|
+
/** External reference IDs associated with the meeting. */
|
|
10144
|
+
external_refs?: string[];
|
|
9805
10145
|
/**
|
|
9806
10146
|
* External URL associated with the meeting.
|
|
9807
10147
|
* @format text
|
|
@@ -9809,7 +10149,7 @@ export type Meeting = AtomBase & {
|
|
|
9809
10149
|
external_url?: string;
|
|
9810
10150
|
/** The members in the meeting. */
|
|
9811
10151
|
members: AtomSummary[];
|
|
9812
|
-
organizer?:
|
|
10152
|
+
organizer?: AtomSummary;
|
|
9813
10153
|
parent?: AtomSummary;
|
|
9814
10154
|
recording?: ArtifactSummary;
|
|
9815
10155
|
/**
|
|
@@ -9852,6 +10192,7 @@ export type Meeting = AtomBase & {
|
|
|
9852
10192
|
*/
|
|
9853
10193
|
title?: string;
|
|
9854
10194
|
transcript?: ArtifactSummary;
|
|
10195
|
+
transcript_article?: ArticleSummary;
|
|
9855
10196
|
/** The properties of an enum value. */
|
|
9856
10197
|
visibility?: EnumValue;
|
|
9857
10198
|
};
|
|
@@ -10037,6 +10378,12 @@ export interface MeetingsCreateRequest {
|
|
|
10037
10378
|
* @example "ARTIFACT-12345"
|
|
10038
10379
|
*/
|
|
10039
10380
|
transcript?: string;
|
|
10381
|
+
/**
|
|
10382
|
+
* The article for the transcript of the meeting.
|
|
10383
|
+
* @format id
|
|
10384
|
+
* @example "ART-12345"
|
|
10385
|
+
*/
|
|
10386
|
+
transcript_article?: string;
|
|
10040
10387
|
}
|
|
10041
10388
|
/** meetings-create-response */
|
|
10042
10389
|
export interface MeetingsCreateResponse {
|
|
@@ -10065,6 +10412,7 @@ export interface MeetingsFilterLinkSummaryFilter {
|
|
|
10065
10412
|
/**
|
|
10066
10413
|
* Filters for target id in links associated with the meeting.
|
|
10067
10414
|
* @format id
|
|
10415
|
+
* @example "ACC-12345"
|
|
10068
10416
|
*/
|
|
10069
10417
|
target?: string;
|
|
10070
10418
|
/**
|
|
@@ -10244,6 +10592,12 @@ export interface MeetingsUpdateRequest {
|
|
|
10244
10592
|
* @example "ARTIFACT-12345"
|
|
10245
10593
|
*/
|
|
10246
10594
|
transcript?: string;
|
|
10595
|
+
/**
|
|
10596
|
+
* The article for the transcript of the meeting.
|
|
10597
|
+
* @format id
|
|
10598
|
+
* @example "ART-12345"
|
|
10599
|
+
*/
|
|
10600
|
+
transcript_article?: string;
|
|
10247
10601
|
}
|
|
10248
10602
|
/** meetings-update-request-artifact-ids */
|
|
10249
10603
|
export interface MeetingsUpdateRequestArtifactIds {
|
|
@@ -11008,6 +11362,8 @@ export declare enum ObservabilitySessionType {
|
|
|
11008
11362
|
}
|
|
11009
11363
|
/** observability-sessions-data-get-request */
|
|
11010
11364
|
export interface ObservabilitySessionsDataGetRequest {
|
|
11365
|
+
/** Whether to include replay data in the response. Defaults to true. */
|
|
11366
|
+
include_replay_data?: boolean;
|
|
11011
11367
|
/**
|
|
11012
11368
|
* The unique identifier of the recording to retrieve in case of
|
|
11013
11369
|
* mobile sessions.
|
|
@@ -11133,8 +11489,11 @@ export interface ObservabilityTimelineEvent {
|
|
|
11133
11489
|
* @format text
|
|
11134
11490
|
*/
|
|
11135
11491
|
event?: string;
|
|
11136
|
-
/**
|
|
11137
|
-
|
|
11492
|
+
/**
|
|
11493
|
+
* Custom event properties with native types (numbers, booleans,
|
|
11494
|
+
* objects, arrays).
|
|
11495
|
+
*/
|
|
11496
|
+
event_details?: any;
|
|
11138
11497
|
/** The type of timeline event. */
|
|
11139
11498
|
event_type?: ObservabilityTimelineEventType;
|
|
11140
11499
|
/** Whether this is a dead click event. */
|
|
@@ -11146,11 +11505,23 @@ export interface ObservabilityTimelineEvent {
|
|
|
11146
11505
|
* @format text
|
|
11147
11506
|
*/
|
|
11148
11507
|
label?: string;
|
|
11508
|
+
/**
|
|
11509
|
+
* Normalized URL of the page where the event occurred.
|
|
11510
|
+
* @format text
|
|
11511
|
+
*/
|
|
11512
|
+
normalized_url?: string;
|
|
11513
|
+
/**
|
|
11514
|
+
* Page name of the page where the event occurred.
|
|
11515
|
+
* @format text
|
|
11516
|
+
*/
|
|
11517
|
+
page_name?: string;
|
|
11149
11518
|
/**
|
|
11150
11519
|
* URL of the page where the event occurred.
|
|
11151
11520
|
* @format text
|
|
11152
11521
|
*/
|
|
11153
11522
|
page_url?: string;
|
|
11523
|
+
/** Web vitals performance metrics captured for auto-captured events */
|
|
11524
|
+
performance?: any;
|
|
11154
11525
|
/**
|
|
11155
11526
|
* Target element of the event.
|
|
11156
11527
|
* @format text
|
|
@@ -11995,6 +12366,37 @@ export interface PartsFilterEnhancement {
|
|
|
11995
12366
|
actual_start_date?: DateTimeFilter;
|
|
11996
12367
|
/** Provides ways to specify date ranges on objects. */
|
|
11997
12368
|
actual_start_date_v2?: DateFilter;
|
|
12369
|
+
/**
|
|
12370
|
+
* Filters for enhancement by its health status. The allowed ids can
|
|
12371
|
+
* be extended by the user. Stock allowed values:
|
|
12372
|
+
* ```
|
|
12373
|
+
* {
|
|
12374
|
+
* "id": 1,
|
|
12375
|
+
* "label": "On Track",
|
|
12376
|
+
* "ordinal": 1,
|
|
12377
|
+
* "overridable": true
|
|
12378
|
+
* },
|
|
12379
|
+
* {
|
|
12380
|
+
* "id": 2,
|
|
12381
|
+
* "label": "At Risk",
|
|
12382
|
+
* "ordinal": 2,
|
|
12383
|
+
* "overridable": true
|
|
12384
|
+
* },
|
|
12385
|
+
* {
|
|
12386
|
+
* "id": 3,
|
|
12387
|
+
* "label": "Off Track",
|
|
12388
|
+
* "ordinal": 3,
|
|
12389
|
+
* "overridable": true
|
|
12390
|
+
* },
|
|
12391
|
+
* {
|
|
12392
|
+
* "id": 4,
|
|
12393
|
+
* "label": "Not Applicable",
|
|
12394
|
+
* "ordinal": 4,
|
|
12395
|
+
* "overridable": true
|
|
12396
|
+
* }
|
|
12397
|
+
* ```
|
|
12398
|
+
*/
|
|
12399
|
+
health?: number[];
|
|
11998
12400
|
/**
|
|
11999
12401
|
* Filters for enhancement by its opportunities.
|
|
12000
12402
|
* @example ["OPP-12345"]
|
|
@@ -12002,6 +12404,7 @@ export interface PartsFilterEnhancement {
|
|
|
12002
12404
|
opportunities?: string[];
|
|
12003
12405
|
/** Filters for enhancement by its rev score tier. */
|
|
12004
12406
|
rev_score_tier?: EnhancementRevScoreTier[];
|
|
12407
|
+
space?: SpaceFilter;
|
|
12005
12408
|
/** List of IDs of the custom stages which will be used for filtering. */
|
|
12006
12409
|
stage_v2?: string[];
|
|
12007
12410
|
/** Filters for part with any of the provided custom states. */
|
|
@@ -12166,6 +12569,11 @@ export interface PartsUpdateRequestEnhancement {
|
|
|
12166
12569
|
* @maxLength 32768
|
|
12167
12570
|
*/
|
|
12168
12571
|
release_notes?: string;
|
|
12572
|
+
/**
|
|
12573
|
+
* Updates the space associated with the enhancement.
|
|
12574
|
+
* @format id
|
|
12575
|
+
*/
|
|
12576
|
+
space?: string | null;
|
|
12169
12577
|
/**
|
|
12170
12578
|
* Custom stage ID which will be used for updating the enhancement.
|
|
12171
12579
|
* @format id
|
|
@@ -12693,6 +13101,8 @@ export interface RevOrgsCreateRequest {
|
|
|
12693
13101
|
* @format text
|
|
12694
13102
|
*/
|
|
12695
13103
|
external_ref?: string;
|
|
13104
|
+
/** Members this Rev organization is shared with. */
|
|
13105
|
+
shared_with?: SetSharedWithMembership[];
|
|
12696
13106
|
/** Tags associated with the Rev organization. */
|
|
12697
13107
|
tags?: SetTagWithValue[];
|
|
12698
13108
|
/**
|
|
@@ -12873,6 +13283,7 @@ export interface RevOrgsUpdateRequest {
|
|
|
12873
13283
|
* @example "REV-AbCdEfGh"
|
|
12874
13284
|
*/
|
|
12875
13285
|
id: string;
|
|
13286
|
+
shared_with?: RevOrgsUpdateRequestSharedWith;
|
|
12876
13287
|
/** Tags associated with the Rev organization. */
|
|
12877
13288
|
tags?: SetTagWithValue[];
|
|
12878
13289
|
/**
|
|
@@ -12889,6 +13300,11 @@ export interface RevOrgsUpdateRequestArtifacts {
|
|
|
12889
13300
|
*/
|
|
12890
13301
|
set?: string[];
|
|
12891
13302
|
}
|
|
13303
|
+
/** rev-orgs-update-request-shared-with */
|
|
13304
|
+
export interface RevOrgsUpdateRequestSharedWith {
|
|
13305
|
+
/** Sets the list of members this Rev organization is shared with. */
|
|
13306
|
+
set?: SetSharedWithMembership[];
|
|
13307
|
+
}
|
|
12892
13308
|
/**
|
|
12893
13309
|
* rev-orgs-update-response
|
|
12894
13310
|
* Response object to updating Rev organization's information.
|
|
@@ -15284,6 +15700,47 @@ export interface SpaceFilter {
|
|
|
15284
15700
|
include_global?: boolean;
|
|
15285
15701
|
/** Whether to include parent spaces. */
|
|
15286
15702
|
include_parents?: boolean;
|
|
15703
|
+
op?: SpaceFilterSpaceIdOperatorType;
|
|
15704
|
+
}
|
|
15705
|
+
export declare enum SpaceFilterSpaceIdOperatorType {
|
|
15706
|
+
Any = "any",
|
|
15707
|
+
NotAny = "not_any",
|
|
15708
|
+
NotNull = "not_null",
|
|
15709
|
+
Null = "null"
|
|
15710
|
+
}
|
|
15711
|
+
/**
|
|
15712
|
+
* sprint-board-automation
|
|
15713
|
+
* Automations specific to the Sprint Board vistas.
|
|
15714
|
+
*/
|
|
15715
|
+
export interface SprintBoardAutomation {
|
|
15716
|
+
/**
|
|
15717
|
+
* Whether auto rollover of incomplete issues to the next sprint is
|
|
15718
|
+
* enabled or not.
|
|
15719
|
+
*/
|
|
15720
|
+
auto_issue_rollover_enabled?: boolean;
|
|
15721
|
+
/** Whether this sprintboard has opted for mid-sprint status updates. */
|
|
15722
|
+
sprint_status_update_enabled?: boolean;
|
|
15723
|
+
}
|
|
15724
|
+
/**
|
|
15725
|
+
* sprint-board-config
|
|
15726
|
+
* Settings specific to sprint board vistas.
|
|
15727
|
+
*/
|
|
15728
|
+
export interface SprintBoardConfig {
|
|
15729
|
+
/**
|
|
15730
|
+
* Cooldown period in days between sprints.
|
|
15731
|
+
* @format int32
|
|
15732
|
+
*/
|
|
15733
|
+
cooldown?: number;
|
|
15734
|
+
/**
|
|
15735
|
+
* Sprint duration in days.
|
|
15736
|
+
* @format int32
|
|
15737
|
+
*/
|
|
15738
|
+
duration?: number;
|
|
15739
|
+
/**
|
|
15740
|
+
* Number of planned sprints for the sprint board.
|
|
15741
|
+
* @format int32
|
|
15742
|
+
*/
|
|
15743
|
+
planned_sprints?: number;
|
|
15287
15744
|
}
|
|
15288
15745
|
/**
|
|
15289
15746
|
* stage
|
|
@@ -15308,7 +15765,7 @@ export type StageDiagram = AtomBase & {
|
|
|
15308
15765
|
* The name of the stage diagram.
|
|
15309
15766
|
* @format text
|
|
15310
15767
|
*/
|
|
15311
|
-
name
|
|
15768
|
+
name: string;
|
|
15312
15769
|
/**
|
|
15313
15770
|
* List of stages with their allowed transitions in this stage
|
|
15314
15771
|
* diagram.
|
|
@@ -15323,7 +15780,7 @@ export type StageDiagramSummary = AtomBaseSummary & {
|
|
|
15323
15780
|
* The name of the stage diagram.
|
|
15324
15781
|
* @format text
|
|
15325
15782
|
*/
|
|
15326
|
-
name
|
|
15783
|
+
name: string;
|
|
15327
15784
|
/** Sync information for records synced into/from DevRev. */
|
|
15328
15785
|
sync_metadata?: SyncMetadataSummary;
|
|
15329
15786
|
};
|
|
@@ -15527,7 +15984,7 @@ export interface StockFieldOverride {
|
|
|
15527
15984
|
* Name of the stock field to be overridden.
|
|
15528
15985
|
* @format text
|
|
15529
15986
|
*/
|
|
15530
|
-
name
|
|
15987
|
+
name: string;
|
|
15531
15988
|
/** Overridden allowed values for a unified enum. */
|
|
15532
15989
|
uenum_values?: SchemaFieldUenumValue[];
|
|
15533
15990
|
/** The schema of ui specific fields. */
|
|
@@ -16195,6 +16652,10 @@ export interface SyncMetadata {
|
|
|
16195
16652
|
}
|
|
16196
16653
|
/** sync-metadata-filter */
|
|
16197
16654
|
export interface SyncMetadataFilter {
|
|
16655
|
+
/** Filters for issues with this specific external record. */
|
|
16656
|
+
external_record?: string[];
|
|
16657
|
+
/** Filters for issues with this specific external record type. */
|
|
16658
|
+
external_record_type?: string[];
|
|
16198
16659
|
/** Filters for issues with this specific external reference. */
|
|
16199
16660
|
external_reference?: string[];
|
|
16200
16661
|
last_sync_in?: SyncMetadataFilterSyncInFilter;
|
|
@@ -17110,6 +17571,12 @@ export interface TimelineEntriesCreateRequestTimelineComment {
|
|
|
17110
17571
|
* @maxLength 512
|
|
17111
17572
|
*/
|
|
17112
17573
|
external_ref?: string;
|
|
17574
|
+
/**
|
|
17575
|
+
* The comment this comment is in reply to.
|
|
17576
|
+
* @format id
|
|
17577
|
+
* @example "don:core:dvrv-us-1:devo/example:ticket/123:comment/comment-id"
|
|
17578
|
+
*/
|
|
17579
|
+
in_reply_to?: string;
|
|
17113
17580
|
/**
|
|
17114
17581
|
* The IDs of the previews of the links posted in the comment.
|
|
17115
17582
|
* @example ["don:core:dvrv-us-1:devo/example:snap_widget/snap-widget-id"]
|
|
@@ -17883,6 +18350,12 @@ export interface VistaGroupBase {
|
|
|
17883
18350
|
* @example "2023-01-01T12:00:00.000Z"
|
|
17884
18351
|
*/
|
|
17885
18352
|
end_date?: string;
|
|
18353
|
+
/**
|
|
18354
|
+
* Goals of the vista group item.
|
|
18355
|
+
* @format text
|
|
18356
|
+
* @maxLength 16000
|
|
18357
|
+
*/
|
|
18358
|
+
goals?: string;
|
|
17886
18359
|
/**
|
|
17887
18360
|
* Globally unique object ID.
|
|
17888
18361
|
* @format id
|
|
@@ -18584,64 +19057,8 @@ export interface WebNetworkMetadata {
|
|
|
18584
19057
|
}
|
|
18585
19058
|
/** web-recording */
|
|
18586
19059
|
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
19060
|
/** RRWeb replay packets */
|
|
18622
19061
|
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
19062
|
timeline_data: WebTimelineData;
|
|
18646
19063
|
}
|
|
18647
19064
|
/** web-session */
|
|
@@ -18773,6 +19190,8 @@ export interface WebSessionsFilterCustomEventsFilter {
|
|
|
18773
19190
|
}
|
|
18774
19191
|
/** web-sessions-filter-events-filter */
|
|
18775
19192
|
export interface WebSessionsFilterEventsFilter {
|
|
19193
|
+
/** Filter by event type. */
|
|
19194
|
+
event_type?: string[];
|
|
18776
19195
|
/** Filter by dead click events. */
|
|
18777
19196
|
is_dead?: boolean;
|
|
18778
19197
|
/** Filter by rage click events. */
|
|
@@ -19544,6 +19963,8 @@ export declare enum WidgetQueryOrderByDirection {
|
|
|
19544
19963
|
}
|
|
19545
19964
|
/** widget-summary */
|
|
19546
19965
|
export type WidgetSummary = AtomBaseSummary & {
|
|
19966
|
+
/** Whether the widget is a system widget. */
|
|
19967
|
+
is_system?: boolean;
|
|
19547
19968
|
/**
|
|
19548
19969
|
* The title of the widget.
|
|
19549
19970
|
* @format text
|
|
@@ -19941,6 +20362,11 @@ export interface WorksCreateRequestIssue {
|
|
|
19941
20362
|
* @format int64
|
|
19942
20363
|
*/
|
|
19943
20364
|
priority_v2?: number;
|
|
20365
|
+
/**
|
|
20366
|
+
* The space that the issue belongs to.
|
|
20367
|
+
* @format id
|
|
20368
|
+
*/
|
|
20369
|
+
space?: string;
|
|
19944
20370
|
/**
|
|
19945
20371
|
* The sprint that the issue belongs to.
|
|
19946
20372
|
* @format id
|
|
@@ -20202,8 +20628,6 @@ export interface WorksFilterIssue {
|
|
|
20202
20628
|
accounts?: string[];
|
|
20203
20629
|
/** Provides ways to specify date ranges on objects. */
|
|
20204
20630
|
actual_start_date?: DateFilter;
|
|
20205
|
-
/** Filters for issues belonging to specific groups. */
|
|
20206
|
-
group?: string[];
|
|
20207
20631
|
/** Filters for issues with any of the provided priorities. */
|
|
20208
20632
|
priority?: IssuePriority[];
|
|
20209
20633
|
/** Filters for issues with any of the provided priority enum ids. */
|
|
@@ -20263,6 +20687,7 @@ export interface WorksFilterTicket {
|
|
|
20263
20687
|
channels_v2?: string[];
|
|
20264
20688
|
/** Filters for tickets belonging to specific groups. */
|
|
20265
20689
|
group?: string[];
|
|
20690
|
+
group_op?: WorksFilterTicketGroupsOpOperatorType;
|
|
20266
20691
|
/** Filters for frozen tickets. */
|
|
20267
20692
|
is_frozen?: boolean;
|
|
20268
20693
|
/** Filters for tickets that are spam. */
|
|
@@ -20293,6 +20718,13 @@ export interface WorksFilterTicket {
|
|
|
20293
20718
|
/** Visibility enum ID of the ticket. */
|
|
20294
20719
|
visibility?: number[];
|
|
20295
20720
|
}
|
|
20721
|
+
export declare enum WorksFilterTicketGroupsOpOperatorType {
|
|
20722
|
+
All = "all",
|
|
20723
|
+
Any = "any",
|
|
20724
|
+
Empty = "empty",
|
|
20725
|
+
NotAny = "not_any",
|
|
20726
|
+
NotEmpty = "not_empty"
|
|
20727
|
+
}
|
|
20296
20728
|
/** works-get-request */
|
|
20297
20729
|
export interface WorksGetRequest {
|
|
20298
20730
|
/**
|
|
@@ -20444,6 +20876,13 @@ export type WorksUpdateRequest = (Empty | WorksUpdateRequestIssue | WorksUpdateR
|
|
|
20444
20876
|
* @example "ISS-12345"
|
|
20445
20877
|
*/
|
|
20446
20878
|
id: string;
|
|
20879
|
+
/**
|
|
20880
|
+
* The object version of the work to be updated. If provided, the
|
|
20881
|
+
* update will be rejected if the object version does not match the
|
|
20882
|
+
* latest version.
|
|
20883
|
+
* @format int64
|
|
20884
|
+
*/
|
|
20885
|
+
object_version?: number;
|
|
20447
20886
|
owned_by?: WorksUpdateRequestOwnedBy;
|
|
20448
20887
|
reported_by?: WorksUpdateRequestReportedBy;
|
|
20449
20888
|
/** Updates an object's stage. */
|
|
@@ -20493,11 +20932,6 @@ export interface WorksUpdateRequestArtifacts {
|
|
|
20493
20932
|
/** works-update-request-issue */
|
|
20494
20933
|
export interface WorksUpdateRequestIssue {
|
|
20495
20934
|
developed_with?: WorksUpdateRequestIssueDevelopedWith;
|
|
20496
|
-
/**
|
|
20497
|
-
* Updates the group that the issue belongs to.
|
|
20498
|
-
* @format id
|
|
20499
|
-
*/
|
|
20500
|
-
group?: string;
|
|
20501
20935
|
/** Priority of the work based upon impact and criticality. */
|
|
20502
20936
|
priority?: IssuePriority;
|
|
20503
20937
|
/**
|
|
@@ -20532,6 +20966,11 @@ export interface WorksUpdateRequestIssue {
|
|
|
20532
20966
|
* @format int64
|
|
20533
20967
|
*/
|
|
20534
20968
|
priority_v2?: number;
|
|
20969
|
+
/**
|
|
20970
|
+
* Updates the space that the issue belongs to.
|
|
20971
|
+
* @format id
|
|
20972
|
+
*/
|
|
20973
|
+
space?: string;
|
|
20535
20974
|
/**
|
|
20536
20975
|
* Updates the sprint that the issue belongs to.
|
|
20537
20976
|
* @format id
|
|
@@ -21236,6 +21675,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
21236
21675
|
'shared_with.role'?: string;
|
|
21237
21676
|
/** Filters for status of the articles. */
|
|
21238
21677
|
status?: ArticleStatus[];
|
|
21678
|
+
/** Filters for issues with this specific external record. */
|
|
21679
|
+
'sync_metadata.external_record'?: string[];
|
|
21680
|
+
/** Filters for issues with this specific external record type. */
|
|
21681
|
+
'sync_metadata.external_record_type'?: string[];
|
|
21239
21682
|
/** Filters for issues with this specific external reference. */
|
|
21240
21683
|
'sync_metadata.external_reference'?: string[];
|
|
21241
21684
|
/** Filters for works with selected sync statuses. */
|
|
@@ -21278,6 +21721,43 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
21278
21721
|
* @secure
|
|
21279
21722
|
*/
|
|
21280
21723
|
updateArticle: (data: ArticlesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesUpdateResponse, any, {}>>;
|
|
21724
|
+
/**
|
|
21725
|
+
* @description Redirects to the artifact's download URL.
|
|
21726
|
+
*
|
|
21727
|
+
* @tags artifacts
|
|
21728
|
+
* @name ArtifactsDownload
|
|
21729
|
+
* @summary Download Artifacts
|
|
21730
|
+
* @request GET:/artifacts.download
|
|
21731
|
+
* @secure
|
|
21732
|
+
*/
|
|
21733
|
+
artifactsDownload: (query: {
|
|
21734
|
+
/**
|
|
21735
|
+
* The ID of the artifact to be downloaded.
|
|
21736
|
+
* @format id
|
|
21737
|
+
* @example "ARTIFACT-12345"
|
|
21738
|
+
*/
|
|
21739
|
+
id: string;
|
|
21740
|
+
/**
|
|
21741
|
+
* The access key for the artifact.
|
|
21742
|
+
* @format text
|
|
21743
|
+
*/
|
|
21744
|
+
key?: string;
|
|
21745
|
+
/**
|
|
21746
|
+
* The version of the artifact that needs to be downloaded.
|
|
21747
|
+
* @format text
|
|
21748
|
+
*/
|
|
21749
|
+
version?: string;
|
|
21750
|
+
}, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
21751
|
+
/**
|
|
21752
|
+
* @description Redirects to the artifact's download URL.
|
|
21753
|
+
*
|
|
21754
|
+
* @tags artifacts
|
|
21755
|
+
* @name ArtifactsDownloadPost
|
|
21756
|
+
* @summary Download Artifacts (POST)
|
|
21757
|
+
* @request POST:/artifacts.download
|
|
21758
|
+
* @secure
|
|
21759
|
+
*/
|
|
21760
|
+
artifactsDownloadPost: (data: ArtifactsDownloadRequest, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
21281
21761
|
/**
|
|
21282
21762
|
* @description Gets the requested artifact's information.
|
|
21283
21763
|
*
|
|
@@ -21927,6 +22407,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
21927
22407
|
rev_orgs?: string[];
|
|
21928
22408
|
/** Filters for records with any of the provided SLA stages. */
|
|
21929
22409
|
'sla_summary.stage'?: SlaSummaryStage[];
|
|
22410
|
+
/** Fields to sort the conversations by and the direction to sort them. */
|
|
22411
|
+
sort_by?: string[];
|
|
21930
22412
|
/** Filters for conversations with any of the provided source channels. */
|
|
21931
22413
|
source_channel?: string[];
|
|
21932
22414
|
/**
|
|
@@ -22623,11 +23105,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22623
23105
|
mode?: ListMode;
|
|
22624
23106
|
/** Filters the groups on the basis of group name. */
|
|
22625
23107
|
name?: string[];
|
|
22626
|
-
/**
|
|
22627
|
-
* Filters the groups on the basis of parent group(s).
|
|
22628
|
-
* @deprecated
|
|
22629
|
-
*/
|
|
22630
|
-
parents?: string[];
|
|
22631
23108
|
/** Comma-separated fields to sort the groups by. */
|
|
22632
23109
|
sort_by?: string[];
|
|
22633
23110
|
/** Filters for the provided space IDs. */
|
|
@@ -22638,6 +23115,12 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22638
23115
|
'space.include_global'?: boolean;
|
|
22639
23116
|
/** Whether to include parent spaces. */
|
|
22640
23117
|
'space.include_parents'?: boolean;
|
|
23118
|
+
/** The filter operator to be applied on space. */
|
|
23119
|
+
'space.op'?: SpaceFilterSpaceIdOperatorType;
|
|
23120
|
+
/** Filters for issues with this specific external record. */
|
|
23121
|
+
'sync_metadata.external_record'?: string[];
|
|
23122
|
+
/** Filters for issues with this specific external record type. */
|
|
23123
|
+
'sync_metadata.external_record_type'?: string[];
|
|
22641
23124
|
/** Filters for issues with this specific external reference. */
|
|
22642
23125
|
'sync_metadata.external_reference'?: string[];
|
|
22643
23126
|
/** Filters for works with selected sync statuses. */
|
|
@@ -22998,6 +23481,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22998
23481
|
/**
|
|
22999
23482
|
* Filters for target id in links associated with the meeting.
|
|
23000
23483
|
* @format id
|
|
23484
|
+
* @example "ACC-12345"
|
|
23001
23485
|
*/
|
|
23002
23486
|
'links.target'?: string;
|
|
23003
23487
|
/**
|
|
@@ -23019,6 +23503,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23019
23503
|
state?: MeetingState[];
|
|
23020
23504
|
/** Subtypes of meeting to be filtered. */
|
|
23021
23505
|
subtype?: string[];
|
|
23506
|
+
/** Filters for issues with this specific external record. */
|
|
23507
|
+
'sync_metadata.external_record'?: string[];
|
|
23508
|
+
/** Filters for issues with this specific external record type. */
|
|
23509
|
+
'sync_metadata.external_record_type'?: string[];
|
|
23022
23510
|
/** Filters for issues with this specific external reference. */
|
|
23023
23511
|
'sync_metadata.external_reference'?: string[];
|
|
23024
23512
|
/** Filters for works with selected sync statuses. */
|
|
@@ -23133,6 +23621,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23133
23621
|
/**
|
|
23134
23622
|
* Filters for target id in links associated with the meeting.
|
|
23135
23623
|
* @format id
|
|
23624
|
+
* @example "ACC-12345"
|
|
23136
23625
|
*/
|
|
23137
23626
|
'links.target'?: string;
|
|
23138
23627
|
/**
|
|
@@ -23161,6 +23650,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23161
23650
|
state?: MeetingState[];
|
|
23162
23651
|
/** Subtypes of meeting to be filtered. */
|
|
23163
23652
|
subtype?: string[];
|
|
23653
|
+
/** Filters for issues with this specific external record. */
|
|
23654
|
+
'sync_metadata.external_record'?: string[];
|
|
23655
|
+
/** Filters for issues with this specific external record type. */
|
|
23656
|
+
'sync_metadata.external_record_type'?: string[];
|
|
23164
23657
|
/** Filters for issues with this specific external reference. */
|
|
23165
23658
|
'sync_metadata.external_reference'?: string[];
|
|
23166
23659
|
/** Filters for works with selected sync statuses. */
|
|
@@ -23374,6 +23867,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23374
23867
|
* @format text
|
|
23375
23868
|
*/
|
|
23376
23869
|
version_key: string;
|
|
23870
|
+
/** Whether to include replay data in the response. Defaults to true. */
|
|
23871
|
+
include_replay_data?: boolean;
|
|
23377
23872
|
/**
|
|
23378
23873
|
* The unique identifier of the recording to retrieve in case of mobile
|
|
23379
23874
|
* sessions.
|
|
@@ -23771,6 +24266,37 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23771
24266
|
* @example "2023-01-01T12:00:00.000Z"
|
|
23772
24267
|
*/
|
|
23773
24268
|
'enhancement.actual_start_date.before'?: string;
|
|
24269
|
+
/**
|
|
24270
|
+
* Filters for enhancement by its health status. The allowed ids can be
|
|
24271
|
+
* extended by the user. Stock allowed values:
|
|
24272
|
+
* ```
|
|
24273
|
+
* {
|
|
24274
|
+
* "id": 1,
|
|
24275
|
+
* "label": "On Track",
|
|
24276
|
+
* "ordinal": 1,
|
|
24277
|
+
* "overridable": true
|
|
24278
|
+
* },
|
|
24279
|
+
* {
|
|
24280
|
+
* "id": 2,
|
|
24281
|
+
* "label": "At Risk",
|
|
24282
|
+
* "ordinal": 2,
|
|
24283
|
+
* "overridable": true
|
|
24284
|
+
* },
|
|
24285
|
+
* {
|
|
24286
|
+
* "id": 3,
|
|
24287
|
+
* "label": "Off Track",
|
|
24288
|
+
* "ordinal": 3,
|
|
24289
|
+
* "overridable": true
|
|
24290
|
+
* },
|
|
24291
|
+
* {
|
|
24292
|
+
* "id": 4,
|
|
24293
|
+
* "label": "Not Applicable",
|
|
24294
|
+
* "ordinal": 4,
|
|
24295
|
+
* "overridable": true
|
|
24296
|
+
* }
|
|
24297
|
+
* ```
|
|
24298
|
+
*/
|
|
24299
|
+
'enhancement.health'?: number[];
|
|
23774
24300
|
/**
|
|
23775
24301
|
* Filters for enhancement by its opportunities.
|
|
23776
24302
|
* @example ["OPP-12345"]
|
|
@@ -23778,6 +24304,16 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23778
24304
|
'enhancement.opportunities'?: string[];
|
|
23779
24305
|
/** Filters for enhancement by its rev score tier. */
|
|
23780
24306
|
'enhancement.rev_score_tier'?: EnhancementRevScoreTier[];
|
|
24307
|
+
/** Filters for the provided space IDs. */
|
|
24308
|
+
'enhancement.space.ids'?: string[];
|
|
24309
|
+
/** Whether to include child spaces. */
|
|
24310
|
+
'enhancement.space.include_children'?: boolean;
|
|
24311
|
+
/** Whether to include objects not associated with any space. */
|
|
24312
|
+
'enhancement.space.include_global'?: boolean;
|
|
24313
|
+
/** Whether to include parent spaces. */
|
|
24314
|
+
'enhancement.space.include_parents'?: boolean;
|
|
24315
|
+
/** The filter operator to be applied on space. */
|
|
24316
|
+
'enhancement.space.op'?: SpaceFilterSpaceIdOperatorType;
|
|
23781
24317
|
/** List of IDs of the custom stages which will be used for filtering. */
|
|
23782
24318
|
'enhancement.stage_v2'?: string[];
|
|
23783
24319
|
/** Filters for part with any of the provided custom states. */
|
|
@@ -24471,6 +25007,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24471
25007
|
'space.include_global'?: boolean;
|
|
24472
25008
|
/** Whether to include parent spaces. */
|
|
24473
25009
|
'space.include_parents'?: boolean;
|
|
25010
|
+
/** The filter operator to be applied on space. */
|
|
25011
|
+
'space.op'?: SpaceFilterSpaceIdOperatorType;
|
|
24474
25012
|
/** The list of subtypes. */
|
|
24475
25013
|
subtype?: string[];
|
|
24476
25014
|
/** Filters for custom schema fragment of the provided types. */
|
|
@@ -26035,8 +26573,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26035
26573
|
* @example ["ACC-12345"]
|
|
26036
26574
|
*/
|
|
26037
26575
|
'issue.accounts'?: string[];
|
|
26038
|
-
/** Filters for issues belonging to specific groups. */
|
|
26039
|
-
'issue.group'?: string[];
|
|
26040
26576
|
/** Filters for issues with any of the provided priorities. */
|
|
26041
26577
|
'issue.priority'?: IssuePriority[];
|
|
26042
26578
|
/** Filters for issues with any of the provided priority enum ids. */
|
|
@@ -26056,6 +26592,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26056
26592
|
'issue.space.include_global'?: boolean;
|
|
26057
26593
|
/** Whether to include parent spaces. */
|
|
26058
26594
|
'issue.space.include_parents'?: boolean;
|
|
26595
|
+
/** The filter operator to be applied on space. */
|
|
26596
|
+
'issue.space.op'?: SpaceFilterSpaceIdOperatorType;
|
|
26059
26597
|
/** Filters for issues with any of the sprint. */
|
|
26060
26598
|
'issue.sprint'?: string[];
|
|
26061
26599
|
/** Filters for issues with any of the provided sprint states. */
|
|
@@ -26099,6 +26637,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26099
26637
|
'staged_info.is_staged'?: boolean;
|
|
26100
26638
|
/** Filters for work with any of the provided states. */
|
|
26101
26639
|
state?: string[];
|
|
26640
|
+
/** Filters for issues with this specific external record. */
|
|
26641
|
+
'sync_metadata.external_record'?: string[];
|
|
26642
|
+
/** Filters for issues with this specific external record type. */
|
|
26643
|
+
'sync_metadata.external_record_type'?: string[];
|
|
26102
26644
|
/** Filters for issues with this specific external reference. */
|
|
26103
26645
|
'sync_metadata.external_reference'?: string[];
|
|
26104
26646
|
/** Filters for works with selected sync statuses. */
|
|
@@ -26133,6 +26675,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26133
26675
|
'ticket.channels_v2'?: string[];
|
|
26134
26676
|
/** Filters for tickets belonging to specific groups. */
|
|
26135
26677
|
'ticket.group'?: string[];
|
|
26678
|
+
/** The filter operator to be applied on group filter for tickets. */
|
|
26679
|
+
'ticket.group_op'?: WorksFilterTicketGroupsOpOperatorType;
|
|
26136
26680
|
/** Filters for frozen tickets. */
|
|
26137
26681
|
'ticket.is_frozen'?: boolean;
|
|
26138
26682
|
/** Filters for tickets that are spam. */
|
|
@@ -26234,8 +26778,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26234
26778
|
* @example ["ACC-12345"]
|
|
26235
26779
|
*/
|
|
26236
26780
|
'issue.accounts'?: string[];
|
|
26237
|
-
/** Filters for issues belonging to specific groups. */
|
|
26238
|
-
'issue.group'?: string[];
|
|
26239
26781
|
/** Filters for issues with any of the provided priorities. */
|
|
26240
26782
|
'issue.priority'?: IssuePriority[];
|
|
26241
26783
|
/** Filters for issues with any of the provided priority enum ids. */
|
|
@@ -26255,6 +26797,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26255
26797
|
'issue.space.include_global'?: boolean;
|
|
26256
26798
|
/** Whether to include parent spaces. */
|
|
26257
26799
|
'issue.space.include_parents'?: boolean;
|
|
26800
|
+
/** The filter operator to be applied on space. */
|
|
26801
|
+
'issue.space.op'?: SpaceFilterSpaceIdOperatorType;
|
|
26258
26802
|
/** Filters for issues with any of the sprint. */
|
|
26259
26803
|
'issue.sprint'?: string[];
|
|
26260
26804
|
/** Filters for issues with any of the provided sprint states. */
|
|
@@ -26300,6 +26844,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26300
26844
|
'staged_info.is_staged'?: boolean;
|
|
26301
26845
|
/** Filters for work with any of the provided states. */
|
|
26302
26846
|
state?: string[];
|
|
26847
|
+
/** Filters for issues with this specific external record. */
|
|
26848
|
+
'sync_metadata.external_record'?: string[];
|
|
26849
|
+
/** Filters for issues with this specific external record type. */
|
|
26850
|
+
'sync_metadata.external_record_type'?: string[];
|
|
26303
26851
|
/** Filters for issues with this specific external reference. */
|
|
26304
26852
|
'sync_metadata.external_reference'?: string[];
|
|
26305
26853
|
/** Filters for works with selected sync statuses. */
|
|
@@ -26334,6 +26882,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26334
26882
|
'ticket.channels_v2'?: string[];
|
|
26335
26883
|
/** Filters for tickets belonging to specific groups. */
|
|
26336
26884
|
'ticket.group'?: string[];
|
|
26885
|
+
/** The filter operator to be applied on group filter for tickets. */
|
|
26886
|
+
'ticket.group_op'?: WorksFilterTicketGroupsOpOperatorType;
|
|
26337
26887
|
/** Filters for frozen tickets. */
|
|
26338
26888
|
'ticket.is_frozen'?: boolean;
|
|
26339
26889
|
/** Filters for tickets that are spam. */
|
|
@@ -26442,8 +26992,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26442
26992
|
* @example ["ACC-12345"]
|
|
26443
26993
|
*/
|
|
26444
26994
|
'issue.accounts'?: string[];
|
|
26445
|
-
/** Filters for issues belonging to specific groups. */
|
|
26446
|
-
'issue.group'?: string[];
|
|
26447
26995
|
/** Filters for issues with any of the provided priorities. */
|
|
26448
26996
|
'issue.priority'?: IssuePriority[];
|
|
26449
26997
|
/** Filters for issues with any of the provided priority enum ids. */
|
|
@@ -26463,6 +27011,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26463
27011
|
'issue.space.include_global'?: boolean;
|
|
26464
27012
|
/** Whether to include parent spaces. */
|
|
26465
27013
|
'issue.space.include_parents'?: boolean;
|
|
27014
|
+
/** The filter operator to be applied on space. */
|
|
27015
|
+
'issue.space.op'?: SpaceFilterSpaceIdOperatorType;
|
|
26466
27016
|
/** Filters for issues with any of the sprint. */
|
|
26467
27017
|
'issue.sprint'?: string[];
|
|
26468
27018
|
/** Filters for issues with any of the provided sprint states. */
|
|
@@ -26518,6 +27068,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26518
27068
|
'staged_info.is_staged'?: boolean;
|
|
26519
27069
|
/** Filters for work with any of the provided states. */
|
|
26520
27070
|
state?: string[];
|
|
27071
|
+
/** Filters for issues with this specific external record. */
|
|
27072
|
+
'sync_metadata.external_record'?: string[];
|
|
27073
|
+
/** Filters for issues with this specific external record type. */
|
|
27074
|
+
'sync_metadata.external_record_type'?: string[];
|
|
26521
27075
|
/** Filters for issues with this specific external reference. */
|
|
26522
27076
|
'sync_metadata.external_reference'?: string[];
|
|
26523
27077
|
/** Filters for works with selected sync statuses. */
|
|
@@ -26552,6 +27106,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26552
27106
|
'ticket.channels_v2'?: string[];
|
|
26553
27107
|
/** Filters for tickets belonging to specific groups. */
|
|
26554
27108
|
'ticket.group'?: string[];
|
|
27109
|
+
/** The filter operator to be applied on group filter for tickets. */
|
|
27110
|
+
'ticket.group_op'?: WorksFilterTicketGroupsOpOperatorType;
|
|
26555
27111
|
/** Filters for frozen tickets. */
|
|
26556
27112
|
'ticket.is_frozen'?: boolean;
|
|
26557
27113
|
/** Filters for tickets that are spam. */
|