@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.
@@ -663,12 +663,22 @@ export interface AiAgentEventExecuteProgressSkillExecuted {
663
663
  metadata?: object;
664
664
  /** The output of the skill call. */
665
665
  output: object;
666
+ /**
667
+ * The unique ID of this skill call instance.
668
+ * @format text
669
+ */
670
+ skill_call_id?: string;
666
671
  /**
667
672
  * The name of the skill.
668
673
  * @format text
669
674
  * @maxLength 512
670
675
  */
671
676
  skill_name: string;
677
+ /**
678
+ * The thought explaining why the skill was called.
679
+ * @format text
680
+ */
681
+ thought?: string;
672
682
  }
673
683
  /**
674
684
  * ai-agent-event-execute-progress-skill-triggered
@@ -835,6 +845,191 @@ export interface AiAgentWebhookTarget {
835
845
  */
836
846
  webhook: string;
837
847
  }
848
+ /** airdrop-capabilities-get-request */
849
+ export interface AirdropCapabilitiesGetRequest {
850
+ /**
851
+ * List of external system capabilities of possible imports and their
852
+ * constraints.
853
+ */
854
+ external_system_capabilities?: ExternalSystemCapability[];
855
+ }
856
+ /**
857
+ * airdrop-capabilities-get-response
858
+ * Response containing all import capabilities.
859
+ */
860
+ export interface AirdropCapabilitiesGetResponse {
861
+ /**
862
+ * List of external system capabilities of possible imports and their
863
+ * constraints.
864
+ */
865
+ external_system_capabilities: ExternalSystemCapabilities[];
866
+ /** List of external system names. */
867
+ external_system_names: string[];
868
+ }
869
+ /**
870
+ * airdrop-external-sync-units-discover-request
871
+ * Request for external sync unit discovery on a given external system of
872
+ * records.
873
+ */
874
+ export interface AirdropExternalSyncUnitsDiscoverRequest {
875
+ /**
876
+ * External import slug which will perform external sync unit
877
+ * discovery, only populated for adaas external system type.
878
+ * @format text
879
+ */
880
+ external_import_slug?: string;
881
+ external_system_type: ExternalSystemType;
882
+ /**
883
+ * Import slug which will perform external sync unit discovery, only
884
+ * populated for adaas external system type.
885
+ * @format text
886
+ */
887
+ import_slug?: string;
888
+ /**
889
+ * Keyring that will be used for external sync unit discovery.
890
+ * @format id
891
+ */
892
+ keyring: string;
893
+ /**
894
+ * Snap in slug which will perform external sync unit discovery, only
895
+ * populated for adaas external system type.
896
+ * @format text
897
+ */
898
+ snap_in_slug?: string;
899
+ }
900
+ /** airdrop-external-sync-units-discover-response */
901
+ export type AirdropExternalSyncUnitsDiscoverResponse = object;
902
+ /** airdrop-external-sync-units-list-filter */
903
+ export interface AirdropExternalSyncUnitsListFilter {
904
+ /**
905
+ * External sync unit name.
906
+ * @format text
907
+ */
908
+ external_sync_unit_name?: string;
909
+ external_system_type?: ExternalSystemType;
910
+ /**
911
+ * Import slug of the connector.
912
+ * @format text
913
+ */
914
+ import_slug?: string;
915
+ /**
916
+ * Snap in slug of the connector.
917
+ * @format text
918
+ */
919
+ snap_in_slug?: string;
920
+ /** Filter for external sync units that are used. */
921
+ used?: boolean;
922
+ }
923
+ /**
924
+ * airdrop-external-sync-units-list-request
925
+ * Request to list external sync units.
926
+ */
927
+ export interface AirdropExternalSyncUnitsListRequest {
928
+ /**
929
+ * The cursor to resume iteration from. If not provided, then
930
+ * iteration starts from the beginning.
931
+ * @format text
932
+ */
933
+ cursor?: string;
934
+ filter?: AirdropExternalSyncUnitsListFilter;
935
+ /**
936
+ * Keyring that will be used for external sync unit listing.
937
+ * @format id
938
+ */
939
+ keyring: string;
940
+ /**
941
+ * The maximum number of items to return. The default is '50'.
942
+ * @format int32
943
+ */
944
+ limit?: number;
945
+ /**
946
+ * The iteration mode to use. If "after", then entries after the provided
947
+ * cursor will be returned, or if no cursor is provided, then from the
948
+ * beginning. If "before", then entries before the provided cursor will be
949
+ * returned, or if no cursor is provided, then from the end. Entries will
950
+ * always be returned in the specified sort-by order.
951
+ */
952
+ mode?: ListMode;
953
+ }
954
+ /**
955
+ * airdrop-external-sync-units-list-response
956
+ * List external sync units response.
957
+ */
958
+ export interface AirdropExternalSyncUnitsListResponse {
959
+ /** External sync units that were requested. */
960
+ external_sync_units: ExternalSyncUnit[];
961
+ /**
962
+ * The cursor used to iterate subsequent results in accordance to the
963
+ * sort order. If not set, then no later elements exist.
964
+ * @format text
965
+ */
966
+ next_cursor?: string;
967
+ /**
968
+ * The cursor used to iterate preceding results in accordance to the
969
+ * sort order. If not set, then no prior elements exist.
970
+ * @format text
971
+ */
972
+ prev_cursor?: string;
973
+ }
974
+ /**
975
+ * airdrop-periodic-sync-update
976
+ * Periodic sync configuration update.
977
+ */
978
+ export interface AirdropPeriodicSyncUpdate {
979
+ /** Allowed sync directions for the periodic sync configuration. */
980
+ periodic_sync_directions: SyncDirection[];
981
+ /**
982
+ * Periodic sync period in minutes.
983
+ * @format int32
984
+ */
985
+ periodic_sync_period_minutes?: number;
986
+ /** Type of sync preferences. */
987
+ sync_type: SyncUnitSyncType;
988
+ }
989
+ /** Recipe system version */
990
+ export declare enum AirdropSyncUnitRecipeVersion {
991
+ V2 = "v2",
992
+ V3 = "v3"
993
+ }
994
+ /** airdrop-sync-unit-subscriber-update-list */
995
+ export interface AirdropSyncUnitSubscriberUpdateList {
996
+ /** List of subscribers to add to the sync unit. */
997
+ add?: string[];
998
+ /** List of subscribers to remove from the sync unit. */
999
+ remove?: string[];
1000
+ /** List of subscribers to set in the sync unit. */
1001
+ set?: string[];
1002
+ }
1003
+ /**
1004
+ * airdrop-sync-units-create-bulk-request
1005
+ * Request to create sync units.
1006
+ */
1007
+ export interface AirdropSyncUnitsCreateBulkRequest {
1008
+ /** Sync unit create candidates. */
1009
+ sync_units: CreateSyncUnit[];
1010
+ }
1011
+ /**
1012
+ * airdrop-sync-units-create-bulk-response
1013
+ * Response containing all created sync units.
1014
+ */
1015
+ export interface AirdropSyncUnitsCreateBulkResponse {
1016
+ /** Sync units that were created. */
1017
+ sync_units: SyncUnit[];
1018
+ }
1019
+ /**
1020
+ * airdrop-sync-units-create-request
1021
+ * Request to create a sync unit.
1022
+ */
1023
+ export interface AirdropSyncUnitsCreateRequest {
1024
+ sync_unit: CreateSyncUnit;
1025
+ }
1026
+ /**
1027
+ * airdrop-sync-units-create-response
1028
+ * Response containing a created sync unit.
1029
+ */
1030
+ export interface AirdropSyncUnitsCreateResponse {
1031
+ sync_unit: SyncUnit;
1032
+ }
838
1033
  /**
839
1034
  * airdrop-sync-units-get-request
840
1035
  * Request to get a sync unit.
@@ -917,6 +1112,144 @@ export interface AirdropSyncUnitsHistoryResponse {
917
1112
  /** Historical records of syncs. */
918
1113
  sync_history: SyncHistory[];
919
1114
  }
1115
+ /** airdrop-sync-units-list-filter */
1116
+ export interface AirdropSyncUnitsListFilter {
1117
+ /** Filters for sync units with the provided external system names. */
1118
+ external_system_name?: string[];
1119
+ /** External system type. */
1120
+ external_system_type?: ExternalSystemType[];
1121
+ /** ID of the user who imported the sync unit. */
1122
+ imported_by_id?: string[];
1123
+ /**
1124
+ * Keyring ID associated with the import
1125
+ * @format id
1126
+ */
1127
+ keyring_id?: string;
1128
+ /** Provides ways to specify date ranges on objects. */
1129
+ modified_date?: DateFilter;
1130
+ /** Recipe system version */
1131
+ recipe_version?: AirdropSyncUnitRecipeVersion;
1132
+ /** State of the sync unit. */
1133
+ state?: SyncProgressState[];
1134
+ /**
1135
+ * Sync pack ID associated with the sync unit.
1136
+ * @format id
1137
+ */
1138
+ sync_pack_id?: string;
1139
+ /**
1140
+ * Sync unit name.
1141
+ * @format text
1142
+ */
1143
+ sync_unit_name?: string;
1144
+ }
1145
+ /**
1146
+ * airdrop-sync-units-list-request
1147
+ * Request to list sync units.
1148
+ */
1149
+ export interface AirdropSyncUnitsListRequest {
1150
+ /**
1151
+ * The cursor to resume iteration from. If not provided, then
1152
+ * iteration starts from the beginning.
1153
+ * @format text
1154
+ */
1155
+ cursor?: string;
1156
+ filter?: AirdropSyncUnitsListFilter;
1157
+ /**
1158
+ * The maximum number of sync units to return. The default is '50'.
1159
+ * @format int32
1160
+ */
1161
+ limit?: number;
1162
+ /**
1163
+ * The iteration mode to use. If "after", then entries after the provided
1164
+ * cursor will be returned, or if no cursor is provided, then from the
1165
+ * beginning. If "before", then entries before the provided cursor will be
1166
+ * returned, or if no cursor is provided, then from the end. Entries will
1167
+ * always be returned in the specified sort-by order.
1168
+ */
1169
+ mode?: ListMode;
1170
+ /** Comma-separated fields to sort the sync units by. */
1171
+ sort_by?: string[];
1172
+ }
1173
+ /**
1174
+ * airdrop-sync-units-list-response
1175
+ * List sync units response.
1176
+ */
1177
+ export interface AirdropSyncUnitsListResponse {
1178
+ /**
1179
+ * The cursor used to iterate subsequent results in accordance to the
1180
+ * sort order. If not set, then no later elements exist.
1181
+ * @format text
1182
+ */
1183
+ next_cursor?: string;
1184
+ /**
1185
+ * The cursor used to iterate preceding results in accordance to the
1186
+ * sort order. If not set, then no prior elements exist.
1187
+ * @format text
1188
+ */
1189
+ prev_cursor?: string;
1190
+ /** Sync units that were requested. */
1191
+ sync_units: SyncUnit[];
1192
+ }
1193
+ /**
1194
+ * airdrop-sync-units-update-request
1195
+ * Request to update a sync unit.
1196
+ */
1197
+ export interface AirdropSyncUnitsUpdateRequest {
1198
+ /**
1199
+ * Flag to indicate the archive status of the sync unit. If set to
1200
+ * true, the sync unit will be archived.
1201
+ */
1202
+ archive?: boolean;
1203
+ first_sync_direction?: SyncDirection;
1204
+ /**
1205
+ * Sync unit on which the update should be performed.
1206
+ * @format id
1207
+ */
1208
+ id: string;
1209
+ /**
1210
+ * New keyring with which the sync unit will be updated.
1211
+ * @format id
1212
+ */
1213
+ keyring?: string;
1214
+ /** Periodic sync configuration update. */
1215
+ periodic_sync?: AirdropPeriodicSyncUpdate;
1216
+ subscriber_ids?: AirdropSyncUnitSubscriberUpdateList;
1217
+ /** The Tier in which a sync should be run. */
1218
+ sync_tier?: SyncPreferenceSyncTier;
1219
+ }
1220
+ /**
1221
+ * airdrop-sync-units-update-response
1222
+ * Response containing an updated sync unit.
1223
+ */
1224
+ export interface AirdropSyncUnitsUpdateResponse {
1225
+ sync_unit: SyncUnit;
1226
+ }
1227
+ /**
1228
+ * airdrop-trigger-sync-units-action-request
1229
+ * Request for triggering an action on a sync unit.
1230
+ */
1231
+ export interface AirdropTriggerSyncUnitsActionRequest {
1232
+ /** Available actions for a given SyncUnit. */
1233
+ action: SyncUnitAvailableActions;
1234
+ /**
1235
+ * Date from which the sync unit should be extracted.
1236
+ * @format date-time
1237
+ * @example "2023-01-01T12:00:00.000Z"
1238
+ */
1239
+ extract_from_date?: string;
1240
+ /**
1241
+ * Sync unit on which the action should be triggered.
1242
+ * @format id
1243
+ */
1244
+ id: string;
1245
+ }
1246
+ /**
1247
+ * airdrop-trigger-sync-units-action-response
1248
+ * Response containing the sync unit on which the action was triggered.
1249
+ */
1250
+ export interface AirdropTriggerSyncUnitsActionResponse {
1251
+ sync_unit: SyncUnit;
1252
+ }
920
1253
  /** app-fragment */
921
1254
  export type AppFragment = CustomSchemaFragmentBase & {
922
1255
  /**
@@ -1725,6 +2058,7 @@ export declare enum ArtifactConfigurationSet {
1725
2058
  JobData = "job_data",
1726
2059
  MarketplaceListingIcon = "marketplace_listing_icon",
1727
2060
  MarketplaceMedia = "marketplace_media",
2061
+ MeetingRecordings = "meeting_recordings",
1728
2062
  ObjectExport = "object_export",
1729
2063
  OrgLogo = "org_logo",
1730
2064
  PlugCss = "plug_css",
@@ -1805,6 +2139,28 @@ export interface ArtifactVersion {
1805
2139
  */
1806
2140
  version: string;
1807
2141
  }
2142
+ /**
2143
+ * artifacts-download-request
2144
+ * The request to download an artifact.
2145
+ */
2146
+ export interface ArtifactsDownloadRequest {
2147
+ /**
2148
+ * The ID of the artifact to be downloaded.
2149
+ * @format id
2150
+ * @example "ARTIFACT-12345"
2151
+ */
2152
+ id: string;
2153
+ /**
2154
+ * The access key for the artifact.
2155
+ * @format text
2156
+ */
2157
+ key?: string;
2158
+ /**
2159
+ * The version of the artifact that needs to be downloaded.
2160
+ * @format text
2161
+ */
2162
+ version?: string;
2163
+ }
1808
2164
  /**
1809
2165
  * artifacts-get-request
1810
2166
  * The request to get an artifact's information.
@@ -2005,7 +2361,7 @@ export declare enum AssociatedToType {
2005
2361
  RevOrg = "rev_org"
2006
2362
  }
2007
2363
  /** atom */
2008
- 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) & {
2364
+ 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) & {
2009
2365
  type: AtomType;
2010
2366
  };
2011
2367
  /** atom-base */
@@ -2034,6 +2390,11 @@ export interface AtomBase {
2034
2390
  * @example "2023-01-01T12:00:00.000Z"
2035
2391
  */
2036
2392
  modified_date?: string;
2393
+ /**
2394
+ * Version of the object, increments on each update.
2395
+ * @format int64
2396
+ */
2397
+ object_version?: number;
2037
2398
  }
2038
2399
  /** atom-base-summary */
2039
2400
  export interface AtomBaseSummary {
@@ -2049,7 +2410,7 @@ export interface AtomBaseSummary {
2049
2410
  id: string;
2050
2411
  }
2051
2412
  /** atom-summary */
2052
- 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) & {
2413
+ 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) & {
2053
2414
  type: AtomType;
2054
2415
  };
2055
2416
  export declare enum AtomType {
@@ -2074,6 +2435,9 @@ export declare enum AtomType {
2074
2435
  Issue = "issue",
2075
2436
  Link = "link",
2076
2437
  Linkable = "linkable",
2438
+ MarketplaceItemImportFeature = "marketplace_item_import_feature",
2439
+ MarketplaceItemMcpServerFeature = "marketplace_item_mcp_server_feature",
2440
+ MarketplaceItemOperationFeature = "marketplace_item_operation_feature",
2077
2441
  Meeting = "meeting",
2078
2442
  NotificationContentTemplate = "notification_content_template",
2079
2443
  ObjectMember = "object_member",
@@ -2303,6 +2667,7 @@ export declare enum AuthTokenRequestedTokenType {
2303
2667
  UrnDevrevParamsOauthTokenTypeAatActAs = "urn:devrev:params:oauth:token-type:aat:act-as",
2304
2668
  UrnDevrevParamsOauthTokenTypeAatPublic = "urn:devrev:params:oauth:token-type:aat:public",
2305
2669
  UrnDevrevParamsOauthTokenTypeDev = "urn:devrev:params:oauth:token-type:dev",
2670
+ UrnDevrevParamsOauthTokenTypeDevActAsAgent = "urn:devrev:params:oauth:token-type:dev:act-as:agent",
2306
2671
  UrnDevrevParamsOauthTokenTypeDevConnect = "urn:devrev:params:oauth:token-type:dev:connect",
2307
2672
  UrnDevrevParamsOauthTokenTypeGat = "urn:devrev:params:oauth:token-type:gat",
2308
2673
  UrnDevrevParamsOauthTokenTypePat = "urn:devrev:params:oauth:token-type:pat",
@@ -2819,6 +3184,8 @@ export interface BarVisualizationYAxis {
2819
3184
  * bar charts.
2820
3185
  */
2821
3186
  export interface BarWidgetVisualization {
3187
+ /** The configuration for data labels. */
3188
+ data_labels?: DataLabelConfig;
2822
3189
  /** Whether the bar should be stacked. */
2823
3190
  is_stacked?: boolean;
2824
3191
  /** The scrollbar configuration for chart. */
@@ -3196,6 +3563,8 @@ export interface ChatsCreateRequestDm {
3196
3563
  * @maxItems 16
3197
3564
  */
3198
3565
  records?: string[];
3566
+ /** The list of members with whom the DM is shared. */
3567
+ shared_with?: SetSharedWithMembership[];
3199
3568
  /**
3200
3569
  * The users or groups to send direct messages to. The authenticated
3201
3570
  * user must be included in this list.
@@ -3263,6 +3632,7 @@ export type ChatsUpdateRequest = (ChatsUpdateRequestDm | Empty) & {
3263
3632
  /** chats-update-request-dm */
3264
3633
  export interface ChatsUpdateRequestDm {
3265
3634
  records?: ChatsUpdateRequestDmRecords;
3635
+ shared_with?: ChatsUpdateRequestDmSharedWith;
3266
3636
  users?: ChatsUpdateRequestDmUsers;
3267
3637
  }
3268
3638
  /** chats-update-request-dm-records */
@@ -3273,6 +3643,11 @@ export interface ChatsUpdateRequestDmRecords {
3273
3643
  */
3274
3644
  set?: string[];
3275
3645
  }
3646
+ /** chats-update-request-dm-shared-with */
3647
+ export interface ChatsUpdateRequestDmSharedWith {
3648
+ /** Sets the field to the provided membership list. */
3649
+ set?: SetSharedWithMembership[];
3650
+ }
3276
3651
  /** chats-update-request-dm-users */
3277
3652
  export interface ChatsUpdateRequestDmUsers {
3278
3653
  /**
@@ -3712,6 +4087,8 @@ export interface ColumnVisualizationYAxis {
3712
4087
  * to column charts.
3713
4088
  */
3714
4089
  export interface ColumnWidgetVisualization {
4090
+ /** The configuration for data labels. */
4091
+ data_labels?: DataLabelConfig;
3715
4092
  /** Whether the columns should be stacked. */
3716
4093
  is_stacked?: boolean;
3717
4094
  /** The scrollbar configuration for chart. */
@@ -4521,6 +4898,8 @@ export interface ConversationsExportRequest {
4521
4898
  * channels.
4522
4899
  */
4523
4900
  channels?: string[];
4901
+ /** Provides ways to specify date ranges on objects. */
4902
+ created_date_new?: DateFilter;
4524
4903
  /** Filters for custom fields. */
4525
4904
  custom_fields?: object;
4526
4905
  /**
@@ -4640,6 +5019,8 @@ export interface ConversationsListRequest {
4640
5019
  * channels.
4641
5020
  */
4642
5021
  channels?: string[];
5022
+ /** Provides ways to specify date ranges on objects. */
5023
+ created_date_new?: DateFilter;
4643
5024
  /**
4644
5025
  * The cursor to resume iteration from. If not provided, then
4645
5026
  * iteration starts from the beginning.
@@ -4697,6 +5078,8 @@ export interface ConversationsListRequest {
4697
5078
  rev_orgs?: string[];
4698
5079
  /** The filter for SLA summary. */
4699
5080
  sla_summary?: SlaSummaryFilter;
5081
+ /** Fields to sort the conversations by and the direction to sort them. */
5082
+ sort_by?: string[];
4700
5083
  /** Filters for conversations with any of the provided source channels. */
4701
5084
  source_channel?: string[];
4702
5085
  /**
@@ -5099,12 +5482,22 @@ export interface CreateExternalSourceDataComp {
5099
5482
  * @example "2023-01-01T12:00:00.000Z"
5100
5483
  */
5101
5484
  closed_date?: string;
5485
+ /**
5486
+ * ID of the user that created the object in the source system.
5487
+ * @format id
5488
+ */
5489
+ created_by?: string;
5102
5490
  /**
5103
5491
  * Timestamp when the object was created in the source system.
5104
5492
  * @format date-time
5105
5493
  * @example "2023-01-01T12:00:00.000Z"
5106
5494
  */
5107
5495
  created_date?: string;
5496
+ /**
5497
+ * ID of the user that last modified the object in the source system.
5498
+ * @format id
5499
+ */
5500
+ modified_by?: string;
5108
5501
  /**
5109
5502
  * Timestamp when the object was modified in the source system.
5110
5503
  * @format date-time
@@ -5315,6 +5708,100 @@ export interface CreateSyncOut {
5315
5708
  */
5316
5709
  sync_unit?: string;
5317
5710
  }
5711
+ /** create-sync-unit */
5712
+ export interface CreateSyncUnit {
5713
+ /**
5714
+ * Configuration for the computer scenario variant when creating a sync
5715
+ * unit.
5716
+ */
5717
+ computer_scenario?: CreateSyncUnitComputerScenario;
5718
+ /**
5719
+ * External import slug which will perform syncs, only populated for
5720
+ * adaas external system type.
5721
+ * @format text
5722
+ */
5723
+ external_import_slug?: string;
5724
+ /**
5725
+ * External sync unit that we will sync from.
5726
+ * @format id
5727
+ */
5728
+ external_sync_unit: string;
5729
+ /** Configuration for the full scenario variant when creating a sync unit. */
5730
+ full_scenario?: CreateSyncUnitFullScenario;
5731
+ /**
5732
+ * Import slug which will perform syncs, only populated for adaas
5733
+ * external system type.
5734
+ * @format text
5735
+ */
5736
+ import_slug?: string;
5737
+ /**
5738
+ * Keyring that will be used for syncs.
5739
+ * @format id
5740
+ */
5741
+ keyring: string;
5742
+ /**
5743
+ * Configuration for the limited scenario variant when creating a sync
5744
+ * unit.
5745
+ */
5746
+ limited_scenario?: CreateSyncUnitLimitedScenario;
5747
+ /** Recipe system version */
5748
+ recipe_version?: AirdropSyncUnitRecipeVersion;
5749
+ /**
5750
+ * Configuration for the reconciliation scenario variant when creating a
5751
+ * sync unit.
5752
+ */
5753
+ reconciliation_scenario?: CreateSyncUnitReconciliationScenario;
5754
+ scenario?: 'computer_scenario' | 'full_scenario' | 'limited_scenario' | 'reconciliation_scenario';
5755
+ /**
5756
+ * Snap in slug which will perform syncs, only populated for adaas
5757
+ * external system type.
5758
+ * @format text
5759
+ */
5760
+ snap_in_slug?: string;
5761
+ }
5762
+ /**
5763
+ * create-sync-unit-computer-scenario
5764
+ * Configuration for the computer scenario variant when creating a sync
5765
+ * unit.
5766
+ */
5767
+ export type CreateSyncUnitComputerScenario = object;
5768
+ /**
5769
+ * create-sync-unit-full-scenario
5770
+ * Configuration for the full scenario variant when creating a sync unit.
5771
+ */
5772
+ export type CreateSyncUnitFullScenario = object;
5773
+ /**
5774
+ * create-sync-unit-limited-scenario
5775
+ * Configuration for the limited scenario variant when creating a sync
5776
+ * unit.
5777
+ */
5778
+ export interface CreateSyncUnitLimitedScenario {
5779
+ /**
5780
+ * Start time for the limited sync.
5781
+ * @format date-time
5782
+ * @example "2023-01-01T12:00:00.000Z"
5783
+ */
5784
+ extract_from_date: string;
5785
+ }
5786
+ /**
5787
+ * create-sync-unit-reconciliation-scenario
5788
+ * Configuration for the reconciliation scenario variant when creating a
5789
+ * sync unit.
5790
+ */
5791
+ export interface CreateSyncUnitReconciliationScenario {
5792
+ /**
5793
+ * Start time for the reconciliation sync.
5794
+ * @format date-time
5795
+ * @example "2023-01-01T12:00:00.000Z"
5796
+ */
5797
+ extract_from_date: string;
5798
+ /**
5799
+ * End time for the reconciliation sync.
5800
+ * @format date-time
5801
+ * @example "2023-01-01T12:00:00.000Z"
5802
+ */
5803
+ extract_to_date: string;
5804
+ }
5318
5805
  /**
5319
5806
  * create-tag-with-value
5320
5807
  * Create object for tag_summary.
@@ -6102,6 +6589,11 @@ export interface CustomSchemaFragmentsSetRequestTenantFragment {
6102
6589
  * @pattern ^[A-Z]{2,10}$
6103
6590
  */
6104
6591
  id_prefix?: string;
6592
+ /**
6593
+ * The display name of the custom leaf type.
6594
+ * @format text
6595
+ */
6596
+ leaf_type_display_name?: string;
6105
6597
  /** List of Per-DevOrg stock field overrides. */
6106
6598
  stock_field_overrides?: StockFieldOverride[];
6107
6599
  }
@@ -6472,6 +6964,21 @@ export type DashboardSearchSummary = SearchSummaryBase & {
6472
6964
  };
6473
6965
  /** dashboard-summary */
6474
6966
  export type DashboardSummary = AtomBaseSummary;
6967
+ /**
6968
+ * data-label-config
6969
+ * The configuration for data labels.
6970
+ */
6971
+ export interface DataLabelConfig {
6972
+ /** The display mode for data labels. */
6973
+ display_mode?: DataLabelConfigDisplayMode;
6974
+ /** Whether data labels are enabled. */
6975
+ enable?: boolean;
6976
+ }
6977
+ /** The display mode for data labels. */
6978
+ export declare enum DataLabelConfigDisplayMode {
6979
+ Percentage = "percentage",
6980
+ Value = "value"
6981
+ }
6475
6982
  /**
6476
6983
  * data-source-join
6477
6984
  * A list of possible joins for the data source. Follows foreign key
@@ -8580,7 +9087,7 @@ export interface Error {
8580
9087
  * error-bad-request
8581
9088
  * Describes a error due to a bad request by the client.
8582
9089
  */
8583
- export type ErrorBadRequest = ErrorBase & (ErrorBadRequestArtifactAlreadyAttachedToAParent | ErrorBadRequestBadRequest | ErrorBadRequestCustomizationValidationError | ErrorBadRequestGroupHierarchyCircularDependency | ErrorBadRequestGroupHierarchyDepthExceeded | ErrorBadRequestGroupHierarchyInvalidParent | ErrorBadRequestInvalidApiVersion | ErrorBadRequestInvalidContentType | ErrorBadRequestInvalidEnumValue | ErrorBadRequestInvalidField | ErrorBadRequestInvalidId | ErrorBadRequestMergeWorksError | ErrorBadRequestMissingDependency | ErrorBadRequestMissingRequiredField | ErrorBadRequestParseError | ErrorBadRequestStaleSchemaFragments | ErrorBadRequestUnexpectedIdType | ErrorBadRequestUnexpectedJsonType | ErrorBadRequestValueNotPermitted | ErrorBadRequestWorkflowComponentValidationErrors) & {
9090
+ 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) & {
8584
9091
  type: ErrorBadRequestType;
8585
9092
  };
8586
9093
  /** error-bad-request-artifact-already-attached-to-a-parent */
@@ -8697,6 +9204,19 @@ export declare enum ErrorBadRequestGroupHierarchyInvalidParentReason {
8697
9204
  MultipleParents = "multiple_parents",
8698
9205
  ParentNotLinkedToSpace = "parent_not_linked_to_space"
8699
9206
  }
9207
+ /** error-bad-request-id-not-found */
9208
+ export interface ErrorBadRequestIdNotFound {
9209
+ /**
9210
+ * The field for which the object wasn't found.
9211
+ * @format text
9212
+ */
9213
+ field_name?: string;
9214
+ /**
9215
+ * The ID of the object that wasn't found.
9216
+ * @format id
9217
+ */
9218
+ id: string;
9219
+ }
8700
9220
  /** error-bad-request-invalid-api-version */
8701
9221
  export interface ErrorBadRequestInvalidApiVersion {
8702
9222
  /**
@@ -8871,6 +9391,83 @@ export interface ErrorBadRequestMissingRequiredField {
8871
9391
  }
8872
9392
  /** error-bad-request-parse-error */
8873
9393
  export type ErrorBadRequestParseError = object;
9394
+ /**
9395
+ * error-bad-request-space-group-already-linked
9396
+ * The group is already linked to another space.
9397
+ */
9398
+ export type ErrorBadRequestSpaceGroupAlreadyLinked = object;
9399
+ /**
9400
+ * error-bad-request-space-group-hierarchy-depth-exceeded
9401
+ * Linking the group would exceed the maximum group hierarchy depth.
9402
+ */
9403
+ export type ErrorBadRequestSpaceGroupHierarchyDepthExceeded = object;
9404
+ /**
9405
+ * error-bad-request-space-group-hierarchy-invalid-parent
9406
+ * The group has multiple parents, which is not allowed.
9407
+ */
9408
+ export type ErrorBadRequestSpaceGroupHierarchyInvalidParent = object;
9409
+ /**
9410
+ * error-bad-request-space-group-not-found
9411
+ * The group does not exist or is deleted.
9412
+ */
9413
+ export type ErrorBadRequestSpaceGroupNotFound = object;
9414
+ /**
9415
+ * error-bad-request-space-group-parent-not-linked-to-space
9416
+ * The parent group is not linked to a space.
9417
+ */
9418
+ export type ErrorBadRequestSpaceGroupParentNotLinkedToSpace = object;
9419
+ /**
9420
+ * error-bad-request-space-key-change-limit-exceeded
9421
+ * The key change limit has been reached.
9422
+ */
9423
+ export type ErrorBadRequestSpaceKeyChangeLimitExceeded = object;
9424
+ /**
9425
+ * error-bad-request-space-key-change-rate-limited
9426
+ * The key was changed too recently; rate limit not elapsed.
9427
+ */
9428
+ export type ErrorBadRequestSpaceKeyChangeRateLimited = object;
9429
+ /**
9430
+ * error-bad-request-space-key-count-limit-exceeded
9431
+ * Adding a new key would exceed the maximum allowed key count.
9432
+ */
9433
+ export type ErrorBadRequestSpaceKeyCountLimitExceeded = object;
9434
+ /**
9435
+ * error-bad-request-space-management-disabled
9436
+ * Space management is not enabled for this organization.
9437
+ */
9438
+ export type ErrorBadRequestSpaceManagementDisabled = object;
9439
+ /**
9440
+ * error-bad-request-space-reserved-key
9441
+ * The requested space key is reserved by the system.
9442
+ */
9443
+ export type ErrorBadRequestSpaceReservedKey = object;
9444
+ /**
9445
+ * error-bad-request-space-validation-error
9446
+ * A space validation error.
9447
+ */
9448
+ export type ErrorBadRequestSpaceValidationError = (ErrorBadRequestSpaceGroupAlreadyLinked | ErrorBadRequestSpaceGroupHierarchyDepthExceeded | ErrorBadRequestSpaceGroupHierarchyInvalidParent | ErrorBadRequestSpaceGroupNotFound | ErrorBadRequestSpaceGroupParentNotLinkedToSpace | ErrorBadRequestSpaceKeyChangeLimitExceeded | ErrorBadRequestSpaceKeyChangeRateLimited | ErrorBadRequestSpaceKeyCountLimitExceeded | ErrorBadRequestSpaceManagementDisabled | ErrorBadRequestSpaceReservedKey) & {
9449
+ type: ErrorBadRequestSpaceValidationErrorType;
9450
+ };
9451
+ export declare enum ErrorBadRequestSpaceValidationErrorType {
9452
+ SpaceGroupAlreadyLinked = "space_group_already_linked",
9453
+ SpaceGroupHierarchyDepthExceeded = "space_group_hierarchy_depth_exceeded",
9454
+ SpaceGroupHierarchyInvalidParent = "space_group_hierarchy_invalid_parent",
9455
+ SpaceGroupNotFound = "space_group_not_found",
9456
+ SpaceGroupParentNotLinkedToSpace = "space_group_parent_not_linked_to_space",
9457
+ SpaceKeyChangeLimitExceeded = "space_key_change_limit_exceeded",
9458
+ SpaceKeyChangeRateLimited = "space_key_change_rate_limited",
9459
+ SpaceKeyCountLimitExceeded = "space_key_count_limit_exceeded",
9460
+ SpaceManagementDisabled = "space_management_disabled",
9461
+ SpaceReservedKey = "space_reserved_key"
9462
+ }
9463
+ /**
9464
+ * error-bad-request-space-validation-errors
9465
+ * Error indicating one or more space validation failures.
9466
+ */
9467
+ export interface ErrorBadRequestSpaceValidationErrors {
9468
+ /** The list of space validation errors. */
9469
+ errors?: ErrorBadRequestSpaceValidationError[];
9470
+ }
8874
9471
  /**
8875
9472
  * error-bad-request-stale-schema-fragments
8876
9473
  * Error indicating that the request contained one or more stale schema
@@ -8887,6 +9484,7 @@ export declare enum ErrorBadRequestType {
8887
9484
  GroupHierarchyCircularDependency = "group_hierarchy_circular_dependency",
8888
9485
  GroupHierarchyDepthExceeded = "group_hierarchy_depth_exceeded",
8889
9486
  GroupHierarchyInvalidParent = "group_hierarchy_invalid_parent",
9487
+ IdNotFound = "id_not_found",
8890
9488
  InvalidApiVersion = "invalid_api_version",
8891
9489
  InvalidContentType = "invalid_content_type",
8892
9490
  InvalidEnumValue = "invalid_enum_value",
@@ -8896,6 +9494,7 @@ export declare enum ErrorBadRequestType {
8896
9494
  MissingDependency = "missing_dependency",
8897
9495
  MissingRequiredField = "missing_required_field",
8898
9496
  ParseError = "parse_error",
9497
+ SpaceValidationErrors = "space_validation_errors",
8899
9498
  StaleSchemaFragments = "stale_schema_fragments",
8900
9499
  UnexpectedIdType = "unexpected_id_type",
8901
9500
  UnexpectedJsonType = "unexpected_json_type",
@@ -9070,7 +9669,10 @@ export type ErrorForbidden = ErrorBase & ErrorForbiddenForbidden & {
9070
9669
  type: ErrorForbiddenType;
9071
9670
  };
9072
9671
  /** error-forbidden-forbidden */
9073
- export type ErrorForbiddenForbidden = object;
9672
+ export interface ErrorForbiddenForbidden {
9673
+ /** The ID(s) of the objects that were forbidden to the user. */
9674
+ object_ids?: string[];
9675
+ }
9074
9676
  export declare enum ErrorForbiddenType {
9075
9677
  Forbidden = "forbidden"
9076
9678
  }
@@ -9113,6 +9715,20 @@ export interface ErrorRequestEntityTooLargeRequestEntityTooLarge {
9113
9715
  export declare enum ErrorRequestEntityTooLargeType {
9114
9716
  RequestEntityTooLarge = "request_entity_too_large"
9115
9717
  }
9718
+ /** error-see-other */
9719
+ export type ErrorSeeOther = ErrorBase & ErrorSeeOtherSeeOther & {
9720
+ type: ErrorSeeOtherType;
9721
+ /**
9722
+ * The URL to redirect to.
9723
+ * @format text
9724
+ */
9725
+ location: string;
9726
+ };
9727
+ /** error-see-other-see-other */
9728
+ export type ErrorSeeOtherSeeOther = object;
9729
+ export declare enum ErrorSeeOtherType {
9730
+ SeeOther = "see_other"
9731
+ }
9116
9732
  /** error-service-unavailable */
9117
9733
  export type ErrorServiceUnavailable = ErrorBase & ErrorServiceUnavailableServiceUnavailable & {
9118
9734
  type: ErrorServiceUnavailableType;
@@ -9814,7 +10430,7 @@ export interface EventWorkflowUpdated {
9814
10430
  */
9815
10431
  export interface ExportAuditLogsRequest {
9816
10432
  /** Categories of the logs to filter by. */
9817
- categories?: string[];
10433
+ categories?: MethodOptionsTagValue[];
9818
10434
  /**
9819
10435
  * Time from which logs are to be retrieved.
9820
10436
  * @format date-time
@@ -9874,6 +10490,75 @@ export interface ExternalIdentity {
9874
10490
  */
9875
10491
  issuer?: string;
9876
10492
  }
10493
+ /** external-sync-unit */
10494
+ export type ExternalSyncUnit = AtomBase;
10495
+ /** external-system-capabilities */
10496
+ export interface ExternalSystemCapabilities {
10497
+ /**
10498
+ * Display name of the SoR of this migration.
10499
+ * @format text
10500
+ */
10501
+ display_name: string;
10502
+ /**
10503
+ * External import slug which will perform syncs, only populated for
10504
+ * adaas external system type.
10505
+ * @format text
10506
+ */
10507
+ external_import_slug?: string;
10508
+ /**
10509
+ * The name of the external system.
10510
+ * @format text
10511
+ */
10512
+ external_system_name?: string;
10513
+ external_system_type: ExternalSystemType;
10514
+ icon_artifact?: ArtifactSummary;
10515
+ /**
10516
+ * Import slug which will perform syncs, only populated for adaas
10517
+ * external system type.
10518
+ * @format text
10519
+ */
10520
+ import_slug?: string;
10521
+ /** List of keyring type IDs that can be used for this sync. */
10522
+ keyring_type_ids: string[];
10523
+ /**
10524
+ * Marketplace item slug which will be used for syncs.
10525
+ * @format text
10526
+ */
10527
+ marketplace_item_slug?: string;
10528
+ /**
10529
+ * Minimum value of minutes that can be set for periodic sync of this
10530
+ * external system type.
10531
+ * @format int32
10532
+ */
10533
+ min_sync_period: number;
10534
+ /** Allowed sync directions for the periodic sync configuration. */
10535
+ periodic_sync_directions: SyncDirection[];
10536
+ /**
10537
+ * The ID of the Snap-In, only populated for adaas external system
10538
+ * type.
10539
+ * @format text
10540
+ */
10541
+ snap_in_id?: string;
10542
+ /**
10543
+ * Name of the snapin.
10544
+ * @format text
10545
+ */
10546
+ snap_in_name?: string;
10547
+ /**
10548
+ * Snap in slug which will perform syncs, only populated for adaas
10549
+ * external system type.
10550
+ * @format text
10551
+ */
10552
+ snap_in_slug?: string;
10553
+ /** List of supported capabilities for this sync. */
10554
+ supported_capabilities: ExternalSystemCapability[];
10555
+ }
10556
+ /** The capability of an external system. */
10557
+ export declare enum ExternalSystemCapability {
10558
+ ComputerSync = "computer_sync",
10559
+ TimeScopedSync = "time_scoped_sync",
10560
+ TimeScopedSyncAdvanced = "time_scoped_sync_advanced"
10561
+ }
9877
10562
  export declare enum ExternalSystemType {
9878
10563
  Adaas = "adaas",
9879
10564
  Confluence = "confluence",
@@ -9887,6 +10572,7 @@ export declare enum ExternalSystemType {
9887
10572
  SalesforceSales = "salesforce_sales",
9888
10573
  SalesforceService = "salesforce_service",
9889
10574
  Servicenow = "servicenow",
10575
+ Sim = "sim",
9890
10576
  Zendesk = "zendesk"
9891
10577
  }
9892
10578
  /** feature */
@@ -10557,6 +11243,10 @@ export type GroupedVista = VistaBase & {
10557
11243
  filter_type: GroupedVistaFilterType;
10558
11244
  /** Denotes the use case of the grouped vista. */
10559
11245
  flavor?: GroupedVistaFlavor;
11246
+ /** Automations specific to the Sprint Board vistas. */
11247
+ sprint_board_automation?: SprintBoardAutomation;
11248
+ /** Settings specific to sprint board vistas. */
11249
+ sprint_board_config?: SprintBoardConfig;
10560
11250
  };
10561
11251
  /** Type of DevRev object for which the grouped vista is applicable. */
10562
11252
  export declare enum GroupedVistaFilterType {
@@ -10612,6 +11302,22 @@ export interface GroupsCreateRequest {
10612
11302
  export interface GroupsCreateResponse {
10613
11303
  group: Group;
10614
11304
  }
11305
+ /**
11306
+ * groups-delete-request
11307
+ * A request to delete a group.
11308
+ */
11309
+ export interface GroupsDeleteRequest {
11310
+ /**
11311
+ * The ID of the group to delete.
11312
+ * @format id
11313
+ */
11314
+ id: string;
11315
+ }
11316
+ /**
11317
+ * groups-delete-response
11318
+ * The response to deleting a group.
11319
+ */
11320
+ export type GroupsDeleteResponse = object;
10615
11321
  /**
10616
11322
  * groups-get-request
10617
11323
  * A request to get information about a group.
@@ -10666,11 +11372,6 @@ export interface GroupsListRequest {
10666
11372
  mode?: ListMode;
10667
11373
  /** Filters the groups on the basis of group name. */
10668
11374
  name?: string[];
10669
- /**
10670
- * Filters the groups on the basis of parent group(s).
10671
- * @deprecated
10672
- */
10673
- parents?: string[];
10674
11375
  /** Comma-separated fields to sort the groups by. */
10675
11376
  sort_by?: string[];
10676
11377
  space?: SpaceFilter;
@@ -11387,11 +12088,11 @@ export interface IncidentsUpdateRequest {
11387
12088
  sync_metadata?: UpdateSyncMetadata;
11388
12089
  tags?: UpdateIncidentTags;
11389
12090
  /**
11390
- * Timestamp when the incident is expected to be resolved.
12091
+ * Updates the timestamp when the incident is expected to be resolved.
11391
12092
  * @format date-time
11392
12093
  * @example "2023-01-01T12:00:00.000Z"
11393
12094
  */
11394
- target_close_date?: string;
12095
+ target_close_date?: string | null;
11395
12096
  /**
11396
12097
  * Title of the incident.
11397
12098
  * @format text
@@ -11438,6 +12139,14 @@ export type Issue = WorkBase & {
11438
12139
  * @format double
11439
12140
  */
11440
12141
  estimated_effort?: number;
12142
+ /**
12143
+ * Timestamp of the last code push (e.g. latest commit on all PRs with
12144
+ * this issue). Note the Git-based snap-in populates this field, and
12145
+ * should be installed in the org for auto-population.
12146
+ * @format date-time
12147
+ * @example "2023-01-01T12:00:00.000Z"
12148
+ */
12149
+ last_code_activity?: string;
11441
12150
  /** Priority of the work based upon impact and criticality. */
11442
12151
  priority?: IssuePriority;
11443
12152
  /** The properties of an enum value. */
@@ -11445,6 +12154,11 @@ export type Issue = WorkBase & {
11445
12154
  /** SLA summary for the object. */
11446
12155
  sla_summary?: ArchetypeSlaSummary;
11447
12156
  sla_tracker?: SlaTrackerSummary;
12157
+ /**
12158
+ * The space associated with the object.
12159
+ * @format id
12160
+ */
12161
+ space?: string;
11448
12162
  /** Vista group item. */
11449
12163
  sprint?: VistaGroupItemSummary;
11450
12164
  /**
@@ -11467,6 +12181,11 @@ export type IssueSummary = WorkBaseSummary & {
11467
12181
  priority?: IssuePriority;
11468
12182
  /** The properties of an enum value. */
11469
12183
  priority_v2?: EnumValueSummary;
12184
+ /**
12185
+ * The space associated with the object.
12186
+ * @format id
12187
+ */
12188
+ space?: string;
11470
12189
  /** Vista group item. */
11471
12190
  sprint?: VistaGroupItemSummary;
11472
12191
  };
@@ -11513,6 +12232,7 @@ export declare enum JobCategory {
11513
12232
  ExportCustomObject = "export_custom_object",
11514
12233
  ExportDevuser = "export_devuser",
11515
12234
  ExportIncident = "export_incident",
12235
+ ExportMeeting = "export_meeting",
11516
12236
  ExportPart = "export_part",
11517
12237
  ExportRevuser = "export_revuser",
11518
12238
  ExportWork = "export_work",
@@ -12015,7 +12735,7 @@ export interface LinksCreateRequest {
12015
12735
  */
12016
12736
  custom_link_type?: string;
12017
12737
  /** Type of link used to define the relationship. */
12018
- link_type: LinkType;
12738
+ link_type?: LinkType;
12019
12739
  /**
12020
12740
  * The ID of the source object.
12021
12741
  * @format id
@@ -12160,13 +12880,18 @@ export interface LinksListResponse {
12160
12880
  * The request to replace a link.
12161
12881
  */
12162
12882
  export interface LinksReplaceRequest {
12883
+ /**
12884
+ * The ID of the custom link type, for the new link to be created.
12885
+ * @format id
12886
+ */
12887
+ custom_link_type?: string;
12163
12888
  /**
12164
12889
  * The ID of the link to be replaced.
12165
12890
  * @format id
12166
12891
  */
12167
12892
  id: string;
12168
12893
  /** Type of link used to define the relationship. */
12169
- link_type: LinkType;
12894
+ link_type?: LinkType;
12170
12895
  /**
12171
12896
  * The ID of the source object.
12172
12897
  * @format id
@@ -12196,6 +12921,219 @@ export declare enum ListMode {
12196
12921
  After = "after",
12197
12922
  Before = "before"
12198
12923
  }
12924
+ /** marketplace-item-feature */
12925
+ export type MarketplaceItemFeature = (MarketplaceItemImportFeature | MarketplaceItemMcpServerFeature | MarketplaceItemOperationFeature) & {
12926
+ type: MarketplaceItemFeatureType;
12927
+ };
12928
+ /** marketplace-item-feature-base */
12929
+ export type MarketplaceItemFeatureBase = AtomBase & {
12930
+ /**
12931
+ * Description of the marketplace item feature.
12932
+ * @format text
12933
+ */
12934
+ description?: string;
12935
+ /** Type of the marketplace item feature. */
12936
+ feature_type?: MarketplaceItemFeatureFeatureType;
12937
+ marketplace_item?: MarketplaceItemSummary;
12938
+ /**
12939
+ * Name of the marketplace item feature.
12940
+ * @format text
12941
+ */
12942
+ name?: string;
12943
+ };
12944
+ /** marketplace-item-feature-base-summary */
12945
+ export type MarketplaceItemFeatureBaseSummary = AtomBaseSummary & {
12946
+ /**
12947
+ * Name of the marketplace item feature.
12948
+ * @format text
12949
+ */
12950
+ name?: string;
12951
+ };
12952
+ /** Type of the marketplace item feature. */
12953
+ export declare enum MarketplaceItemFeatureFeatureType {
12954
+ Import = "import",
12955
+ McpServer = "mcp_server",
12956
+ Operation = "operation"
12957
+ }
12958
+ export declare enum MarketplaceItemFeatureType {
12959
+ MarketplaceItemImportFeature = "marketplace_item_import_feature",
12960
+ MarketplaceItemMcpServerFeature = "marketplace_item_mcp_server_feature",
12961
+ MarketplaceItemOperationFeature = "marketplace_item_operation_feature"
12962
+ }
12963
+ /** marketplace-item-features-list-request */
12964
+ export interface MarketplaceItemFeaturesListRequest {
12965
+ /**
12966
+ * To start listing marketplace item features cursor field should not
12967
+ * be provided. Set cursor to value returned by the previous call to
12968
+ * list marketplace item features in the next page.
12969
+ * @format text
12970
+ */
12971
+ cursor?: string;
12972
+ /** Filters on feature type for marketplace item features. */
12973
+ feature_type?: MarketplaceItemFeatureFeatureType[];
12974
+ /**
12975
+ * Filters on import capabilities for marketplace item import
12976
+ * features.
12977
+ */
12978
+ import_capabilities?: string[];
12979
+ /**
12980
+ * Limit for how many marketplace item features to be retrieved per
12981
+ * page. Default is 50.
12982
+ * @format int32
12983
+ */
12984
+ limit?: number;
12985
+ /**
12986
+ * Marketplace ID where to list marketplace item features.
12987
+ * @format id
12988
+ */
12989
+ marketplace?: string;
12990
+ /**
12991
+ * The iteration mode to use. If "after", then entries after the provided
12992
+ * cursor will be returned, or if no cursor is provided, then from the
12993
+ * beginning. If "before", then entries before the provided cursor will be
12994
+ * returned, or if no cursor is provided, then from the end. Entries will
12995
+ * always be returned in the specified sort-by order.
12996
+ */
12997
+ mode?: ListMode;
12998
+ /** Filters on operation type for marketplace item operation features. */
12999
+ operation_type?: MarketplaceItemOperationFeatureOperationType[];
13000
+ /** Filters on server type for marketplace item MCP server features. */
13001
+ server_type?: MarketplaceItemMcpServerFeatureServerType[];
13002
+ /**
13003
+ * List of fields to sort the marketplace item feature objects, by and
13004
+ * how to sort them. Default is to sort by created_date in descending
13005
+ * order.
13006
+ */
13007
+ sort_by?: string[];
13008
+ }
13009
+ /** marketplace-item-features-list-response */
13010
+ export interface MarketplaceItemFeaturesListResponse {
13011
+ /** The list of marketplace item features. */
13012
+ marketplace_item_features: MarketplaceItemFeature[];
13013
+ /**
13014
+ * The cursor used to iterate subsequent results in accordance to the
13015
+ * sort order. If not set, then no later elements exist.
13016
+ * @format text
13017
+ */
13018
+ next_cursor?: string;
13019
+ /**
13020
+ * The cursor used to iterate preceding results in accordance to the
13021
+ * sort order. If not set, then no prior elements exist.
13022
+ * @format text
13023
+ */
13024
+ prev_cursor?: string;
13025
+ }
13026
+ /** marketplace-item-import-feature */
13027
+ export type MarketplaceItemImportFeature = MarketplaceItemFeatureBase & {
13028
+ /** Capabilities of the import feature (e.g. TIME_SCOPED_SYNCS, etc.). */
13029
+ capabilities?: string[];
13030
+ };
13031
+ /** marketplace-item-import-feature-summary */
13032
+ export type MarketplaceItemImportFeatureSummary = MarketplaceItemFeatureBaseSummary;
13033
+ /**
13034
+ * Marketplace listing type defines what backing service will be used when
13035
+ * validating a create marketplace submission request, installing
13036
+ * marketplace items in some organizations, etc. It is important to note
13037
+ * that marketplace listings of type app are not backed by any service and
13038
+ * are only placeholders for existing functionality in the DevRev platform
13039
+ * (e.g. Jira AirSync).
13040
+ */
13041
+ export declare enum MarketplaceItemItemType {
13042
+ App = "app",
13043
+ External = "external",
13044
+ Snapin = "snapin"
13045
+ }
13046
+ /** marketplace-item-mcp-server-feature */
13047
+ export type MarketplaceItemMcpServerFeature = MarketplaceItemFeatureBase & {
13048
+ /**
13049
+ * Server type represents the type of the MCP server. The server type can
13050
+ * be either 'local' or 'remote'.
13051
+ */
13052
+ server_type?: MarketplaceItemMcpServerFeatureServerType;
13053
+ /**
13054
+ * URL of the remote MCP server.
13055
+ * @format text
13056
+ */
13057
+ url?: string;
13058
+ };
13059
+ /**
13060
+ * Server type represents the type of the MCP server. The server type can
13061
+ * be either 'local' or 'remote'.
13062
+ */
13063
+ export declare enum MarketplaceItemMcpServerFeatureServerType {
13064
+ Local = "local",
13065
+ Remote = "remote"
13066
+ }
13067
+ /** marketplace-item-mcp-server-feature-summary */
13068
+ export type MarketplaceItemMcpServerFeatureSummary = MarketplaceItemFeatureBaseSummary;
13069
+ /** marketplace-item-operation-feature */
13070
+ export type MarketplaceItemOperationFeature = MarketplaceItemFeatureBase & {
13071
+ /**
13072
+ * Operation type represents the type of the workflow operation. The
13073
+ * operation type can be either 'action', 'trigger' or 'control'.
13074
+ */
13075
+ operation_type?: MarketplaceItemOperationFeatureOperationType;
13076
+ };
13077
+ /**
13078
+ * Operation type represents the type of the workflow operation. The
13079
+ * operation type can be either 'action', 'trigger' or 'control'.
13080
+ */
13081
+ export declare enum MarketplaceItemOperationFeatureOperationType {
13082
+ Action = "action",
13083
+ Control = "control",
13084
+ Trigger = "trigger"
13085
+ }
13086
+ /** marketplace-item-operation-feature-summary */
13087
+ export type MarketplaceItemOperationFeatureSummary = MarketplaceItemFeatureBaseSummary;
13088
+ /** marketplace-item-summary */
13089
+ export type MarketplaceItemSummary = AtomBaseSummary & {
13090
+ /**
13091
+ * Marketplace listing type defines what backing service will be used when
13092
+ * validating a create marketplace submission request, installing
13093
+ * marketplace items in some organizations, etc. It is important to note
13094
+ * that marketplace listings of type app are not backed by any service and
13095
+ * are only placeholders for existing functionality in the DevRev platform
13096
+ * (e.g. Jira AirSync).
13097
+ */
13098
+ item_type?: MarketplaceItemItemType;
13099
+ /**
13100
+ * Name of the marketplace listing. The value for a name can be any
13101
+ * string with a minimum length of 3 and a maximum length of 128.
13102
+ * @format text
13103
+ */
13104
+ name?: string;
13105
+ /**
13106
+ * URL slug of the marketplace item. Slug cannot be changed after it
13107
+ * has been set. Its' value needs to be in the right format and it has
13108
+ * to be unique per marketplace. Slug value must start with a
13109
+ * lowercase letter, followed by zero or more lowercase letters or
13110
+ * hyphens, and must end with a lowercase letter. For example, a valid
13111
+ * slug value might be 'my-automation', but an invalid value might be
13112
+ * 'MyAutomation' or 'my-automation-1'.
13113
+ * @format text
13114
+ */
13115
+ slug?: string;
13116
+ /**
13117
+ * Tagline is a one-liner description of the marketplace listing. It
13118
+ * is used when presenting a marketplace listing on the home page.
13119
+ * @format text
13120
+ */
13121
+ tagline?: string;
13122
+ };
13123
+ /** marketplace-items-install-request */
13124
+ export interface MarketplaceItemsInstallRequest {
13125
+ /** Whether to activate the installed object. */
13126
+ activate?: boolean;
13127
+ /**
13128
+ * The slug of the marketplace item to install.
13129
+ * @format text
13130
+ */
13131
+ slug?: string;
13132
+ }
13133
+ /** marketplace-items-install-response */
13134
+ export interface MarketplaceItemsInstallResponse {
13135
+ created_object: AtomSummary;
13136
+ }
12199
13137
  /**
12200
13138
  * meerkat-widget-column-function
12201
13139
  * A meerkat specific column function.
@@ -12289,6 +13227,8 @@ export type Meeting = AtomBase & {
12289
13227
  * @format text
12290
13228
  */
12291
13229
  external_ref?: string;
13230
+ /** External reference IDs associated with the meeting. */
13231
+ external_refs?: string[];
12292
13232
  /**
12293
13233
  * External URL associated with the meeting.
12294
13234
  * @format text
@@ -12296,7 +13236,7 @@ export type Meeting = AtomBase & {
12296
13236
  external_url?: string;
12297
13237
  /** The members in the meeting. */
12298
13238
  members: AtomSummary[];
12299
- organizer?: UserSummary;
13239
+ organizer?: AtomSummary;
12300
13240
  parent?: AtomSummary;
12301
13241
  recording?: ArtifactSummary;
12302
13242
  /**
@@ -12339,6 +13279,7 @@ export type Meeting = AtomBase & {
12339
13279
  */
12340
13280
  title?: string;
12341
13281
  transcript?: ArtifactSummary;
13282
+ transcript_article?: ArticleSummary;
12342
13283
  /** The properties of an enum value. */
12343
13284
  visibility?: EnumValue;
12344
13285
  };
@@ -12533,6 +13474,12 @@ export interface MeetingsCreateRequest {
12533
13474
  * @example "ARTIFACT-12345"
12534
13475
  */
12535
13476
  transcript?: string;
13477
+ /**
13478
+ * The article for the transcript of the meeting.
13479
+ * @format id
13480
+ * @example "ART-12345"
13481
+ */
13482
+ transcript_article?: string;
12536
13483
  }
12537
13484
  /** meetings-create-response */
12538
13485
  export interface MeetingsCreateResponse {
@@ -12561,6 +13508,7 @@ export interface MeetingsFilterLinkSummaryFilter {
12561
13508
  /**
12562
13509
  * Filters for target id in links associated with the meeting.
12563
13510
  * @format id
13511
+ * @example "ACC-12345"
12564
13512
  */
12565
13513
  target?: string;
12566
13514
  /**
@@ -12740,6 +13688,12 @@ export interface MeetingsUpdateRequest {
12740
13688
  * @example "ARTIFACT-12345"
12741
13689
  */
12742
13690
  transcript?: string;
13691
+ /**
13692
+ * The article for the transcript of the meeting.
13693
+ * @format id
13694
+ * @example "ART-12345"
13695
+ */
13696
+ transcript_article?: string;
12743
13697
  }
12744
13698
  /** meetings-update-request-artifact-ids */
12745
13699
  export interface MeetingsUpdateRequestArtifactIds {
@@ -12852,6 +13806,65 @@ export declare enum MetadataType {
12852
13806
  String = "string",
12853
13807
  Url = "url"
12854
13808
  }
13809
+ export declare enum MethodOptionsTagValue {
13810
+ Accounts = "accounts",
13811
+ AiAgents = "ai_agents",
13812
+ Airdrop = "airdrop",
13813
+ Articles = "articles",
13814
+ Artifacts = "artifacts",
13815
+ Atoms = "atoms",
13816
+ AuthConnections = "auth_connections",
13817
+ AuthTokens = "auth_tokens",
13818
+ Brands = "brands",
13819
+ Chats = "chats",
13820
+ CodeChanges = "code_changes",
13821
+ Commands = "commands",
13822
+ Compliance = "compliance",
13823
+ Conversations = "conversations",
13824
+ Customization = "customization",
13825
+ DevOrgs = "dev_orgs",
13826
+ DevUsers = "dev_users",
13827
+ Directory = "directory",
13828
+ Engagements = "engagements",
13829
+ EventSources = "event_sources",
13830
+ Groups = "groups",
13831
+ Incidents = "incidents",
13832
+ Jobs = "jobs",
13833
+ Keyrings = "keyrings",
13834
+ Links = "links",
13835
+ Marketplace = "marketplace",
13836
+ Meetings = "meetings",
13837
+ Metrics = "metrics",
13838
+ Notifications = "notifications",
13839
+ Observability = "observability",
13840
+ Parts = "parts",
13841
+ Preferences = "preferences",
13842
+ QuestionAnswers = "question_answers",
13843
+ Recommendations = "recommendations",
13844
+ RecordTemplates = "record_templates",
13845
+ RevOrgs = "rev_orgs",
13846
+ RevUsers = "rev_users",
13847
+ Roles = "roles",
13848
+ Schedules = "schedules",
13849
+ Search = "search",
13850
+ ServiceAccounts = "service_accounts",
13851
+ Slas = "slas",
13852
+ SnapIns = "snap_ins",
13853
+ SnapKitExecution = "snap_kit_execution",
13854
+ SnapWidgets = "snap_widgets",
13855
+ Spaces = "spaces",
13856
+ Subscribers = "subscribers",
13857
+ Surveys = "surveys",
13858
+ SysUsers = "sys_users",
13859
+ Tags = "tags",
13860
+ TimelineEntries = "timeline_entries",
13861
+ Uoms = "uoms",
13862
+ Vistas = "vistas",
13863
+ WebCrawlerJob = "web_crawler_job",
13864
+ Webhooks = "webhooks",
13865
+ Widgets = "widgets",
13866
+ Works = "works"
13867
+ }
12855
13868
  /** metric-action-execute-request */
12856
13869
  export interface MetricActionExecuteRequest {
12857
13870
  action: MetricActionExecuteRequestAction;
@@ -13623,6 +14636,8 @@ export declare enum ObservabilitySessionType {
13623
14636
  }
13624
14637
  /** observability-sessions-data-get-request */
13625
14638
  export interface ObservabilitySessionsDataGetRequest {
14639
+ /** Whether to include replay data in the response. Defaults to true. */
14640
+ include_replay_data?: boolean;
13626
14641
  /**
13627
14642
  * The unique identifier of the recording to retrieve in case of
13628
14643
  * mobile sessions.
@@ -13748,8 +14763,11 @@ export interface ObservabilityTimelineEvent {
13748
14763
  * @format text
13749
14764
  */
13750
14765
  event?: string;
13751
- /** Custom event properties. */
13752
- event_details?: Record<string, string>;
14766
+ /**
14767
+ * Custom event properties with native types (numbers, booleans,
14768
+ * objects, arrays).
14769
+ */
14770
+ event_details?: any;
13753
14771
  /** The type of timeline event. */
13754
14772
  event_type?: ObservabilityTimelineEventType;
13755
14773
  /** Whether this is a dead click event. */
@@ -13761,11 +14779,23 @@ export interface ObservabilityTimelineEvent {
13761
14779
  * @format text
13762
14780
  */
13763
14781
  label?: string;
14782
+ /**
14783
+ * Normalized URL of the page where the event occurred.
14784
+ * @format text
14785
+ */
14786
+ normalized_url?: string;
14787
+ /**
14788
+ * Page name of the page where the event occurred.
14789
+ * @format text
14790
+ */
14791
+ page_name?: string;
13764
14792
  /**
13765
14793
  * URL of the page where the event occurred.
13766
14794
  * @format text
13767
14795
  */
13768
14796
  page_url?: string;
14797
+ /** Web vitals performance metrics captured for auto-captured events */
14798
+ performance?: any;
13769
14799
  /**
13770
14800
  * Target element of the event.
13771
14801
  * @format text
@@ -13793,12 +14823,27 @@ export declare enum ObservabilityTimelineEventType {
13793
14823
  }
13794
14824
  /** one-time-line-item-summary */
13795
14825
  export type OneTimeLineItemSummary = LineItemBaseSummary;
14826
+ /**
14827
+ * operation-input-port-summary
14828
+ * Schema of an input port.
14829
+ */
14830
+ export type OperationInputPortSummary = object;
14831
+ /**
14832
+ * operation-output-port-summary
14833
+ * Schema of an output port.
14834
+ */
14835
+ export type OperationOutputPortSummary = object;
13796
14836
  /** operation-search-summary */
13797
14837
  export type OperationSearchSummary = SearchSummaryBase & {
13798
14838
  operation: OperationSummary;
13799
14839
  };
13800
14840
  /** operation-summary */
13801
- export type OperationSummary = AtomBaseSummary;
14841
+ export type OperationSummary = AtomBaseSummary & {
14842
+ /** Schema of the inputs port of this operation. */
14843
+ input_ports?: OperationInputPortSummary[];
14844
+ /** Schema of the outputs port of this operation. */
14845
+ output_ports?: OperationOutputPortSummary[];
14846
+ };
13802
14847
  /** opportunity */
13803
14848
  export type Opportunity = WorkBase & {
13804
14849
  account?: AccountSummary;
@@ -14629,6 +15674,37 @@ export interface PartsFilterEnhancement {
14629
15674
  actual_start_date?: DateTimeFilter;
14630
15675
  /** Provides ways to specify date ranges on objects. */
14631
15676
  actual_start_date_v2?: DateFilter;
15677
+ /**
15678
+ * Filters for enhancement by its health status. The allowed ids can
15679
+ * be extended by the user. Stock allowed values:
15680
+ * ```
15681
+ * {
15682
+ * "id": 1,
15683
+ * "label": "On Track",
15684
+ * "ordinal": 1,
15685
+ * "overridable": true
15686
+ * },
15687
+ * {
15688
+ * "id": 2,
15689
+ * "label": "At Risk",
15690
+ * "ordinal": 2,
15691
+ * "overridable": true
15692
+ * },
15693
+ * {
15694
+ * "id": 3,
15695
+ * "label": "Off Track",
15696
+ * "ordinal": 3,
15697
+ * "overridable": true
15698
+ * },
15699
+ * {
15700
+ * "id": 4,
15701
+ * "label": "Not Applicable",
15702
+ * "ordinal": 4,
15703
+ * "overridable": true
15704
+ * }
15705
+ * ```
15706
+ */
15707
+ health?: number[];
14632
15708
  /**
14633
15709
  * Filters for enhancement by its opportunities.
14634
15710
  * @example ["OPP-12345"]
@@ -14636,6 +15712,7 @@ export interface PartsFilterEnhancement {
14636
15712
  opportunities?: string[];
14637
15713
  /** Filters for enhancement by its rev score tier. */
14638
15714
  rev_score_tier?: EnhancementRevScoreTier[];
15715
+ space?: SpaceFilter;
14639
15716
  /** List of IDs of the custom stages which will be used for filtering. */
14640
15717
  stage_v2?: string[];
14641
15718
  /** Filters for part with any of the provided custom states. */
@@ -14800,6 +15877,11 @@ export interface PartsUpdateRequestEnhancement {
14800
15877
  * @maxLength 32768
14801
15878
  */
14802
15879
  release_notes?: string;
15880
+ /**
15881
+ * Updates the space associated with the enhancement.
15882
+ * @format id
15883
+ */
15884
+ space?: string | null;
14803
15885
  /**
14804
15886
  * Custom stage ID which will be used for updating the enhancement.
14805
15887
  * @format id
@@ -15742,6 +16824,8 @@ export interface RevOrgsCreateRequest {
15742
16824
  * @format text
15743
16825
  */
15744
16826
  external_ref?: string;
16827
+ /** Members this Rev organization is shared with. */
16828
+ shared_with?: SetSharedWithMembership[];
15745
16829
  /** Tags associated with the Rev organization. */
15746
16830
  tags?: SetTagWithValue[];
15747
16831
  /**
@@ -15922,6 +17006,7 @@ export interface RevOrgsUpdateRequest {
15922
17006
  * @example "REV-AbCdEfGh"
15923
17007
  */
15924
17008
  id: string;
17009
+ shared_with?: RevOrgsUpdateRequestSharedWith;
15925
17010
  /** Tags associated with the Rev organization. */
15926
17011
  tags?: SetTagWithValue[];
15927
17012
  /**
@@ -15938,6 +17023,11 @@ export interface RevOrgsUpdateRequestArtifacts {
15938
17023
  */
15939
17024
  set?: string[];
15940
17025
  }
17026
+ /** rev-orgs-update-request-shared-with */
17027
+ export interface RevOrgsUpdateRequestSharedWith {
17028
+ /** Sets the list of members this Rev organization is shared with. */
17029
+ set?: SetSharedWithMembership[];
17030
+ }
15941
17031
  /**
15942
17032
  * rev-orgs-update-response
15943
17033
  * Response object to updating Rev organization's information.
@@ -18980,6 +20070,57 @@ export interface SpaceFilter {
18980
20070
  include_global?: boolean;
18981
20071
  /** Whether to include parent spaces. */
18982
20072
  include_parents?: boolean;
20073
+ op?: SpaceFilterSpaceIdOperatorType;
20074
+ }
20075
+ export declare enum SpaceFilterSpaceIdOperatorType {
20076
+ Any = "any",
20077
+ NotAny = "not_any",
20078
+ NotNull = "not_null",
20079
+ Null = "null"
20080
+ }
20081
+ /**
20082
+ * spaces-create-request
20083
+ * Request object to create a new space.
20084
+ */
20085
+ export type SpacesCreateRequest = object;
20086
+ /**
20087
+ * spaces-create-response
20088
+ * The response to space creation.
20089
+ */
20090
+ export type SpacesCreateResponse = object;
20091
+ /**
20092
+ * sprint-board-automation
20093
+ * Automations specific to the Sprint Board vistas.
20094
+ */
20095
+ export interface SprintBoardAutomation {
20096
+ /**
20097
+ * Whether auto rollover of incomplete issues to the next sprint is
20098
+ * enabled or not.
20099
+ */
20100
+ auto_issue_rollover_enabled?: boolean;
20101
+ /** Whether this sprintboard has opted for mid-sprint status updates. */
20102
+ sprint_status_update_enabled?: boolean;
20103
+ }
20104
+ /**
20105
+ * sprint-board-config
20106
+ * Settings specific to sprint board vistas.
20107
+ */
20108
+ export interface SprintBoardConfig {
20109
+ /**
20110
+ * Cooldown period in days between sprints.
20111
+ * @format int32
20112
+ */
20113
+ cooldown?: number;
20114
+ /**
20115
+ * Sprint duration in days.
20116
+ * @format int32
20117
+ */
20118
+ duration?: number;
20119
+ /**
20120
+ * Number of planned sprints for the sprint board.
20121
+ * @format int32
20122
+ */
20123
+ planned_sprints?: number;
18983
20124
  }
18984
20125
  /**
18985
20126
  * stage
@@ -19004,7 +20145,7 @@ export type StageDiagram = AtomBase & {
19004
20145
  * The name of the stage diagram.
19005
20146
  * @format text
19006
20147
  */
19007
- name?: string;
20148
+ name: string;
19008
20149
  /**
19009
20150
  * List of stages with their allowed transitions in this stage
19010
20151
  * diagram.
@@ -19019,7 +20160,7 @@ export type StageDiagramSummary = AtomBaseSummary & {
19019
20160
  * The name of the stage diagram.
19020
20161
  * @format text
19021
20162
  */
19022
- name?: string;
20163
+ name: string;
19023
20164
  /** Sync information for records synced into/from DevRev. */
19024
20165
  sync_metadata?: SyncMetadataSummary;
19025
20166
  };
@@ -19223,7 +20364,7 @@ export interface StockFieldOverride {
19223
20364
  * Name of the stock field to be overridden.
19224
20365
  * @format text
19225
20366
  */
19226
- name?: string;
20367
+ name: string;
19227
20368
  /** Overridden allowed values for a unified enum. */
19228
20369
  uenum_values?: SchemaFieldUenumValue[];
19229
20370
  /** The schema of ui specific fields. */
@@ -19925,6 +21066,10 @@ export interface SurveysUpdateRequest {
19925
21066
  export interface SurveysUpdateResponse {
19926
21067
  survey: Survey;
19927
21068
  }
21069
+ export declare enum SyncDirection {
21070
+ FromDevrev = "from_devrev",
21071
+ ToDevrev = "to_devrev"
21072
+ }
19928
21073
  /** sync-history */
19929
21074
  export type SyncHistory = AtomBase & {
19930
21075
  /** Object for holding run-specific data. */
@@ -19998,6 +21143,10 @@ export interface SyncMetadata {
19998
21143
  }
19999
21144
  /** sync-metadata-filter */
20000
21145
  export interface SyncMetadataFilter {
21146
+ /** Filters for issues with this specific external record. */
21147
+ external_record?: string[];
21148
+ /** Filters for issues with this specific external record type. */
21149
+ external_record_type?: string[];
20001
21150
  /** Filters for issues with this specific external reference. */
20002
21151
  external_reference?: string[];
20003
21152
  last_sync_in?: SyncMetadataFilterSyncInFilter;
@@ -20077,6 +21226,12 @@ export declare enum SyncOutStatus {
20077
21226
  Modified = "modified",
20078
21227
  Succeeded = "succeeded"
20079
21228
  }
21229
+ /** The Tier in which a sync should be run. */
21230
+ export declare enum SyncPreferenceSyncTier {
21231
+ Tier1 = "tier_1",
21232
+ Tier2 = "tier_2",
21233
+ Tier3 = "tier_3"
21234
+ }
20080
21235
  /**
20081
21236
  * sync-progress
20082
21237
  * Progress.
@@ -20201,11 +21356,24 @@ export type SyncUnit = AtomBase & {
20201
21356
  * @format text
20202
21357
  */
20203
21358
  name?: string;
21359
+ /**
21360
+ * The ID of the sync pack that this sync unit is a member of.
21361
+ * @format id
21362
+ */
21363
+ sync_pack_id?: string;
20204
21364
  /** Object for holding run-specific data. */
20205
21365
  sync_run?: SyncRun;
20206
21366
  /** Type of sync preferences. */
20207
21367
  sync_type?: SyncUnitSyncType;
20208
21368
  };
21369
+ /** Available actions for a given SyncUnit. */
21370
+ export declare enum SyncUnitAvailableActions {
21371
+ Delete = "delete",
21372
+ FullSync = "full_sync",
21373
+ Start = "start",
21374
+ SyncFromDevrev = "sync_from_devrev",
21375
+ SyncToDevrev = "sync_to_devrev"
21376
+ }
20209
21377
  /** sync-unit-summary */
20210
21378
  export type SyncUnitSummary = AtomBaseSummary & {
20211
21379
  /**
@@ -20957,6 +22125,12 @@ export interface TimelineEntriesCreateRequestTimelineComment {
20957
22125
  * @maxLength 512
20958
22126
  */
20959
22127
  external_ref?: string;
22128
+ /**
22129
+ * The comment this comment is in reply to.
22130
+ * @format id
22131
+ * @example "don:core:dvrv-us-1:devo/example:ticket/123:comment/comment-id"
22132
+ */
22133
+ in_reply_to?: string;
20960
22134
  /**
20961
22135
  * The IDs of the previews of the links posted in the comment.
20962
22136
  * @example ["don:core:dvrv-us-1:devo/example:snap_widget/snap-widget-id"]
@@ -21884,12 +23058,22 @@ export interface UpdateExternalSourceDataComp {
21884
23058
  * @example "2023-01-01T12:00:00.000Z"
21885
23059
  */
21886
23060
  closed_date?: string;
23061
+ /**
23062
+ * ID of the user that created the object in the source system.
23063
+ * @format id
23064
+ */
23065
+ created_by?: string;
21887
23066
  /**
21888
23067
  * Timestamp when the object was created in the source system.
21889
23068
  * @format date-time
21890
23069
  * @example "2023-01-01T12:00:00.000Z"
21891
23070
  */
21892
23071
  created_date?: string;
23072
+ /**
23073
+ * ID of the user that last modified the object in the source system.
23074
+ * @format id
23075
+ */
23076
+ modified_by?: string;
21893
23077
  /**
21894
23078
  * Timestamp when the object was modified in the source system.
21895
23079
  * @format date-time
@@ -22356,6 +23540,12 @@ export interface VistaGroupBase {
22356
23540
  * @example "2023-01-01T12:00:00.000Z"
22357
23541
  */
22358
23542
  end_date?: string;
23543
+ /**
23544
+ * Goals of the vista group item.
23545
+ * @format text
23546
+ * @maxLength 16000
23547
+ */
23548
+ goals?: string;
22359
23549
  /**
22360
23550
  * Globally unique object ID.
22361
23551
  * @format id
@@ -23118,64 +24308,8 @@ export interface WebNetworkMetadata {
23118
24308
  }
23119
24309
  /** web-recording */
23120
24310
  export interface WebRecording {
23121
- console_metadata?: WebConsoleMetadata;
23122
- /**
23123
- * The recording creation timestamp.
23124
- * @format date-time
23125
- * @example "2023-01-01T12:00:00.000Z"
23126
- */
23127
- created_at: string;
23128
- /**
23129
- * The number of dead clicks in the session.
23130
- * @format int64
23131
- */
23132
- dead_click_count: number;
23133
- device_metadata: WebDeviceMetadata;
23134
- /**
23135
- * The title of the first page visited.
23136
- * @format text
23137
- */
23138
- first_page_title?: string;
23139
- /**
23140
- * The URL of the first page visited.
23141
- * @format text
23142
- */
23143
- first_page_url?: string;
23144
- network_metadata?: WebNetworkMetadata;
23145
- /**
23146
- * The page load time in milliseconds.
23147
- * @format int64
23148
- */
23149
- page_load_time_ms?: number;
23150
- /**
23151
- * The number of rage clicks in the session.
23152
- * @format int64
23153
- */
23154
- rage_click_count: number;
23155
24311
  /** RRWeb replay packets */
23156
24312
  replay_data: ReplayData[];
23157
- /**
23158
- * The Rev organization ID associated with this recording.
23159
- * @format id
23160
- * @example "REV-AbCdEfGh"
23161
- */
23162
- rev_org_id?: string;
23163
- /**
23164
- * The Rev user ID associated with this recording.
23165
- * @format id
23166
- */
23167
- rev_user_id?: string;
23168
- session_attributes?: WebSessionAttributes;
23169
- /**
23170
- * The unique session identifier.
23171
- * @format text
23172
- */
23173
- session_id: string;
23174
- /**
23175
- * The unique tab identifier.
23176
- * @format text
23177
- */
23178
- tab_id: string;
23179
24313
  timeline_data: WebTimelineData;
23180
24314
  }
23181
24315
  /** web-session */
@@ -23307,6 +24441,8 @@ export interface WebSessionsFilterCustomEventsFilter {
23307
24441
  }
23308
24442
  /** web-sessions-filter-events-filter */
23309
24443
  export interface WebSessionsFilterEventsFilter {
24444
+ /** Filter by event type. */
24445
+ event_type?: string[];
23310
24446
  /** Filter by dead click events. */
23311
24447
  is_dead?: boolean;
23312
24448
  /** Filter by rage click events. */
@@ -24101,6 +25237,8 @@ export declare enum WidgetQueryOrderByDirection {
24101
25237
  }
24102
25238
  /** widget-summary */
24103
25239
  export type WidgetSummary = AtomBaseSummary & {
25240
+ /** Whether the widget is a system widget. */
25241
+ is_system?: boolean;
24104
25242
  /**
24105
25243
  * The title of the widget.
24106
25244
  * @format text
@@ -24529,6 +25667,11 @@ export interface WorksCreateRequestIssue {
24529
25667
  * @format int64
24530
25668
  */
24531
25669
  priority_v2?: number;
25670
+ /**
25671
+ * The space that the issue belongs to.
25672
+ * @format id
25673
+ */
25674
+ space?: string;
24532
25675
  /**
24533
25676
  * The sprint that the issue belongs to.
24534
25677
  * @format id
@@ -24790,8 +25933,6 @@ export interface WorksFilterIssue {
24790
25933
  accounts?: string[];
24791
25934
  /** Provides ways to specify date ranges on objects. */
24792
25935
  actual_start_date?: DateFilter;
24793
- /** Filters for issues belonging to specific groups. */
24794
- group?: string[];
24795
25936
  /** Filters for issues with any of the provided priorities. */
24796
25937
  priority?: IssuePriority[];
24797
25938
  /** Filters for issues with any of the provided priority enum ids. */
@@ -24851,6 +25992,7 @@ export interface WorksFilterTicket {
24851
25992
  channels_v2?: string[];
24852
25993
  /** Filters for tickets belonging to specific groups. */
24853
25994
  group?: string[];
25995
+ group_op?: WorksFilterTicketGroupsOpOperatorType;
24854
25996
  /** Filters for frozen tickets. */
24855
25997
  is_frozen?: boolean;
24856
25998
  /** Filters for tickets that are spam. */
@@ -24881,6 +26023,13 @@ export interface WorksFilterTicket {
24881
26023
  /** Visibility enum ID of the ticket. */
24882
26024
  visibility?: number[];
24883
26025
  }
26026
+ export declare enum WorksFilterTicketGroupsOpOperatorType {
26027
+ All = "all",
26028
+ Any = "any",
26029
+ Empty = "empty",
26030
+ NotAny = "not_any",
26031
+ NotEmpty = "not_empty"
26032
+ }
24884
26033
  /** works-get-request */
24885
26034
  export interface WorksGetRequest {
24886
26035
  /**
@@ -25032,6 +26181,13 @@ export type WorksUpdateRequest = (Empty | WorksUpdateRequestIssue | WorksUpdateR
25032
26181
  * @example "ISS-12345"
25033
26182
  */
25034
26183
  id: string;
26184
+ /**
26185
+ * The object version of the work to be updated. If provided, the
26186
+ * update will be rejected if the object version does not match the
26187
+ * latest version.
26188
+ * @format int64
26189
+ */
26190
+ object_version?: number;
25035
26191
  owned_by?: WorksUpdateRequestOwnedBy;
25036
26192
  reported_by?: WorksUpdateRequestReportedBy;
25037
26193
  /** Updates an object's stage. */
@@ -25081,11 +26237,6 @@ export interface WorksUpdateRequestArtifacts {
25081
26237
  /** works-update-request-issue */
25082
26238
  export interface WorksUpdateRequestIssue {
25083
26239
  developed_with?: WorksUpdateRequestIssueDevelopedWith;
25084
- /**
25085
- * Updates the group that the issue belongs to.
25086
- * @format id
25087
- */
25088
- group?: string;
25089
26240
  /** Priority of the work based upon impact and criticality. */
25090
26241
  priority?: IssuePriority;
25091
26242
  /**
@@ -25120,6 +26271,11 @@ export interface WorksUpdateRequestIssue {
25120
26271
  * @format int64
25121
26272
  */
25122
26273
  priority_v2?: number;
26274
+ /**
26275
+ * Updates the space that the issue belongs to.
26276
+ * @format id
26277
+ */
26278
+ space?: string;
25123
26279
  /**
25124
26280
  * Updates the sprint that the issue belongs to.
25125
26281
  * @format id
@@ -25706,6 +26862,133 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25706
26862
  * @secure
25707
26863
  */
25708
26864
  aiAgentEventsExecuteAsync: (data: AiAgentEventsExecuteAsyncRequest, params?: RequestParams) => Promise<AxiosResponse<AiAgentEventsExecuteAsyncResponse, any, {}>>;
26865
+ /**
26866
+ * @description Gets the capabilities of airdrop.
26867
+ *
26868
+ * @tags airdrop
26869
+ * @name AirdropCapabilitiesGet
26870
+ * @summary Get Airdrop Capability
26871
+ * @request GET:/airdrop.capabilities.get
26872
+ * @secure
26873
+ */
26874
+ airdropCapabilitiesGet: (query?: {
26875
+ /**
26876
+ * List of external system capabilities of possible imports and their
26877
+ * constraints.
26878
+ */
26879
+ external_system_capabilities?: ExternalSystemCapability[];
26880
+ }, params?: RequestParams) => Promise<AxiosResponse<AirdropCapabilitiesGetResponse, any, {}>>;
26881
+ /**
26882
+ * @description Gets the capabilities of airdrop.
26883
+ *
26884
+ * @tags airdrop
26885
+ * @name AirdropCapabilitiesGetPost
26886
+ * @summary Get Airdrop Capability (POST)
26887
+ * @request POST:/airdrop.capabilities.get
26888
+ * @secure
26889
+ */
26890
+ airdropCapabilitiesGetPost: (data: AirdropCapabilitiesGetRequest, params?: RequestParams) => Promise<AxiosResponse<AirdropCapabilitiesGetResponse, any, {}>>;
26891
+ /**
26892
+ * @description Request to discover external sync units on a given external system of record.
26893
+ *
26894
+ * @tags airdrop
26895
+ * @name AirdropExternalSyncUnitsDiscover
26896
+ * @summary Discover Airdrop External Sync Units
26897
+ * @request POST:/airdrop.external-sync-units.discover
26898
+ * @secure
26899
+ */
26900
+ airdropExternalSyncUnitsDiscover: (data: AirdropExternalSyncUnitsDiscoverRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
26901
+ /**
26902
+ * @description Lists external sync units.
26903
+ *
26904
+ * @tags airdrop
26905
+ * @name AirdropExternalSyncUnitsList
26906
+ * @summary List Airdrop External Sync Units
26907
+ * @request GET:/airdrop.external-sync-units.list
26908
+ * @secure
26909
+ */
26910
+ airdropExternalSyncUnitsList: (query: {
26911
+ /**
26912
+ * Keyring that will be used for external sync unit listing.
26913
+ * @format id
26914
+ */
26915
+ keyring: string;
26916
+ /**
26917
+ * The cursor to resume iteration from. If not provided, then iteration
26918
+ * starts from the beginning.
26919
+ * @format text
26920
+ */
26921
+ cursor?: string;
26922
+ /**
26923
+ * External sync unit name.
26924
+ * @format text
26925
+ */
26926
+ 'filter.external_sync_unit_name'?: string;
26927
+ /** External system type. */
26928
+ 'filter.external_system_type'?: ExternalSystemType;
26929
+ /**
26930
+ * Import slug of the connector.
26931
+ * @format text
26932
+ */
26933
+ 'filter.import_slug'?: string;
26934
+ /**
26935
+ * Snap in slug of the connector.
26936
+ * @format text
26937
+ */
26938
+ 'filter.snap_in_slug'?: string;
26939
+ /** Filter for external sync units that are used. */
26940
+ 'filter.used'?: boolean;
26941
+ /**
26942
+ * The maximum number of items to return. The default is '50'.
26943
+ * @format int32
26944
+ */
26945
+ limit?: number;
26946
+ /**
26947
+ * The iteration mode to use, otherwise if not set, then "after" is
26948
+ * used.
26949
+ */
26950
+ mode?: ListMode;
26951
+ }, params?: RequestParams) => Promise<AxiosResponse<AirdropExternalSyncUnitsListResponse, any, {}>>;
26952
+ /**
26953
+ * @description Lists external sync units.
26954
+ *
26955
+ * @tags airdrop
26956
+ * @name AirdropExternalSyncUnitsListPost
26957
+ * @summary List Airdrop External Sync Units (POST)
26958
+ * @request POST:/airdrop.external-sync-units.list
26959
+ * @secure
26960
+ */
26961
+ airdropExternalSyncUnitsListPost: (data: AirdropExternalSyncUnitsListRequest, params?: RequestParams) => Promise<AxiosResponse<AirdropExternalSyncUnitsListResponse, any, {}>>;
26962
+ /**
26963
+ * @description Requests an action on a single sync unit.
26964
+ *
26965
+ * @tags airdrop
26966
+ * @name AirdropTriggerSyncUnitsAction
26967
+ * @summary Action Airdrop Sync Units
26968
+ * @request POST:/airdrop.sync-units.action
26969
+ * @secure
26970
+ */
26971
+ airdropTriggerSyncUnitsAction: (data: AirdropTriggerSyncUnitsActionRequest, params?: RequestParams) => Promise<AxiosResponse<AirdropTriggerSyncUnitsActionResponse, any, {}>>;
26972
+ /**
26973
+ * @description Creates sync unit that is used for syncs between DevRev and external system of records.
26974
+ *
26975
+ * @tags airdrop
26976
+ * @name AirdropSyncUnitsCreate
26977
+ * @summary Create Airdrop Sync Unit
26978
+ * @request POST:/airdrop.sync-units.create
26979
+ * @secure
26980
+ */
26981
+ airdropSyncUnitsCreate: (data: AirdropSyncUnitsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsCreateResponse, any, {}>>;
26982
+ /**
26983
+ * @description Creates sync units that are used for syncs between DevRev and external systems of record.
26984
+ *
26985
+ * @tags airdrop
26986
+ * @name AirdropSyncUnitsBulkCreate
26987
+ * @summary Bulk Airdrop Sync Units Create
26988
+ * @request POST:/airdrop.sync-units.create.bulk
26989
+ * @secure
26990
+ */
26991
+ airdropSyncUnitsBulkCreate: (data: AirdropSyncUnitsCreateBulkRequest, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsCreateBulkResponse, any, {}>>;
25709
26992
  /**
25710
26993
  * @description Gets a single sync unit's information.
25711
26994
  *
@@ -25782,6 +27065,80 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25782
27065
  * @secure
25783
27066
  */
25784
27067
  airdropSyncUnitsHistoryPost: (data: AirdropSyncUnitsHistoryRequest, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsHistoryResponse, any, {}>>;
27068
+ /**
27069
+ * @description Gets a list of sync units.
27070
+ *
27071
+ * @tags airdrop
27072
+ * @name AirdropSyncUnitsList
27073
+ * @summary List Airdrop Sync Units
27074
+ * @request GET:/airdrop.sync-units.list
27075
+ * @secure
27076
+ */
27077
+ airdropSyncUnitsList: (query?: {
27078
+ /**
27079
+ * The cursor to resume iteration from. If not provided, then iteration
27080
+ * starts from the beginning.
27081
+ * @format text
27082
+ */
27083
+ cursor?: string;
27084
+ /** Filters for sync units with the provided external system names. */
27085
+ 'filter.external_system_name'?: string[];
27086
+ /** External system type. */
27087
+ 'filter.external_system_type'?: ExternalSystemType[];
27088
+ /** ID of the user who imported the sync unit. */
27089
+ 'filter.imported_by_id'?: string[];
27090
+ /**
27091
+ * Keyring ID associated with the import
27092
+ * @format id
27093
+ */
27094
+ 'filter.keyring_id'?: string;
27095
+ /** Recipe version of the sync unit. */
27096
+ 'filter.recipe_version'?: AirdropSyncUnitRecipeVersion;
27097
+ /** State of the sync unit. */
27098
+ 'filter.state'?: SyncProgressState[];
27099
+ /**
27100
+ * Sync pack ID associated with the sync unit.
27101
+ * @format id
27102
+ */
27103
+ 'filter.sync_pack_id'?: string;
27104
+ /**
27105
+ * Sync unit name.
27106
+ * @format text
27107
+ */
27108
+ 'filter.sync_unit_name'?: string;
27109
+ /**
27110
+ * The maximum number of sync units to return. The default is '50'.
27111
+ * @format int32
27112
+ */
27113
+ limit?: number;
27114
+ /**
27115
+ * The iteration mode to use, otherwise if not set, then "after" is
27116
+ * used.
27117
+ */
27118
+ mode?: ListMode;
27119
+ /** Comma-separated fields to sort the sync units by. */
27120
+ sort_by?: string[];
27121
+ }, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsListResponse, any, {}>>;
27122
+ /**
27123
+ * @description Gets a list of sync units.
27124
+ *
27125
+ * @tags airdrop
27126
+ * @name AirdropSyncUnitsListPost
27127
+ * @summary List Airdrop Sync Units (POST)
27128
+ * @request POST:/airdrop.sync-units.list
27129
+ * @secure
27130
+ */
27131
+ airdropSyncUnitsListPost: (data: AirdropSyncUnitsListRequest, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsListResponse, any, {}>>;
27132
+ /**
27133
+ * @description Updates a single sync unit.
27134
+ *
27135
+ * @tags airdrop
27136
+ * @name AirdropSyncUnitsUpdate
27137
+ * @summary Update Airdrop Sync Unit
27138
+ * @request POST:/airdrop.sync-units.update
27139
+ * @secure
27140
+ */
27141
+ airdropSyncUnitsUpdate: (data: AirdropSyncUnitsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsUpdateResponse, any, {}>>;
25785
27142
  /**
25786
27143
  * @description Get count of articles matching given filter.
25787
27144
  *
@@ -25845,6 +27202,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25845
27202
  'shared_with.role'?: string;
25846
27203
  /** Filters for status of the articles. */
25847
27204
  status?: ArticleStatus[];
27205
+ /** Filters for issues with this specific external record. */
27206
+ 'sync_metadata.external_record'?: string[];
27207
+ /** Filters for issues with this specific external record type. */
27208
+ 'sync_metadata.external_record_type'?: string[];
25848
27209
  /** Filters for issues with this specific external reference. */
25849
27210
  'sync_metadata.external_reference'?: string[];
25850
27211
  /** Filters for works with selected sync statuses. */
@@ -26005,6 +27366,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26005
27366
  'shared_with.role'?: string;
26006
27367
  /** Filters for status of the articles. */
26007
27368
  status?: ArticleStatus[];
27369
+ /** Filters for issues with this specific external record. */
27370
+ 'sync_metadata.external_record'?: string[];
27371
+ /** Filters for issues with this specific external record type. */
27372
+ 'sync_metadata.external_record_type'?: string[];
26008
27373
  /** Filters for issues with this specific external reference. */
26009
27374
  'sync_metadata.external_reference'?: string[];
26010
27375
  /** Filters for works with selected sync statuses. */
@@ -26047,6 +27412,43 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26047
27412
  * @secure
26048
27413
  */
26049
27414
  updateArticle: (data: ArticlesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesUpdateResponse, any, {}>>;
27415
+ /**
27416
+ * @description Redirects to the artifact's download URL.
27417
+ *
27418
+ * @tags artifacts
27419
+ * @name ArtifactsDownload
27420
+ * @summary Download Artifacts
27421
+ * @request GET:/artifacts.download
27422
+ * @secure
27423
+ */
27424
+ artifactsDownload: (query: {
27425
+ /**
27426
+ * The ID of the artifact to be downloaded.
27427
+ * @format id
27428
+ * @example "ARTIFACT-12345"
27429
+ */
27430
+ id: string;
27431
+ /**
27432
+ * The access key for the artifact.
27433
+ * @format text
27434
+ */
27435
+ key?: string;
27436
+ /**
27437
+ * The version of the artifact that needs to be downloaded.
27438
+ * @format text
27439
+ */
27440
+ version?: string;
27441
+ }, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
27442
+ /**
27443
+ * @description Redirects to the artifact's download URL.
27444
+ *
27445
+ * @tags artifacts
27446
+ * @name ArtifactsDownloadPost
27447
+ * @summary Download Artifacts (POST)
27448
+ * @request POST:/artifacts.download
27449
+ * @secure
27450
+ */
27451
+ artifactsDownloadPost: (data: ArtifactsDownloadRequest, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
26050
27452
  /**
26051
27453
  * @description Gets the requested artifact's information.
26052
27454
  *
@@ -27010,6 +28412,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27010
28412
  rev_orgs?: string[];
27011
28413
  /** Filters for records with any of the provided SLA stages. */
27012
28414
  'sla_summary.stage'?: SlaSummaryStage[];
28415
+ /** Fields to sort the conversations by and the direction to sort them. */
28416
+ sort_by?: string[];
27013
28417
  /** Filters for conversations with any of the provided source channels. */
27014
28418
  source_channel?: string[];
27015
28419
  /**
@@ -27832,6 +29236,16 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27832
29236
  * @secure
27833
29237
  */
27834
29238
  groupsCreate: (data: GroupsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsCreateResponse, any, {}>>;
29239
+ /**
29240
+ * @description Deletes the requested group.
29241
+ *
29242
+ * @tags groups
29243
+ * @name GroupsDelete
29244
+ * @summary Delete Group
29245
+ * @request POST:/groups.delete
29246
+ * @secure
29247
+ */
29248
+ groupsDelete: (data: GroupsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
27835
29249
  /**
27836
29250
  * @description Gets the requested group.
27837
29251
  *
@@ -27896,11 +29310,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27896
29310
  mode?: ListMode;
27897
29311
  /** Filters the groups on the basis of group name. */
27898
29312
  name?: string[];
27899
- /**
27900
- * Filters the groups on the basis of parent group(s).
27901
- * @deprecated
27902
- */
27903
- parents?: string[];
27904
29313
  /** Comma-separated fields to sort the groups by. */
27905
29314
  sort_by?: string[];
27906
29315
  /** Filters for the provided space IDs. */
@@ -27911,6 +29320,12 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27911
29320
  'space.include_global'?: boolean;
27912
29321
  /** Whether to include parent spaces. */
27913
29322
  'space.include_parents'?: boolean;
29323
+ /** The filter operator to be applied on space. */
29324
+ 'space.op'?: SpaceFilterSpaceIdOperatorType;
29325
+ /** Filters for issues with this specific external record. */
29326
+ 'sync_metadata.external_record'?: string[];
29327
+ /** Filters for issues with this specific external record type. */
29328
+ 'sync_metadata.external_record_type'?: string[];
27914
29329
  /** Filters for issues with this specific external reference. */
27915
29330
  'sync_metadata.external_reference'?: string[];
27916
29331
  /** Filters for works with selected sync statuses. */
@@ -28176,6 +29591,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28176
29591
  'staged_info.is_staged'?: boolean;
28177
29592
  /** Filters for incidents with any of the provided subtypes. */
28178
29593
  subtype?: string[];
29594
+ /** Filters for issues with this specific external record. */
29595
+ 'sync_metadata.external_record'?: string[];
29596
+ /** Filters for issues with this specific external record type. */
29597
+ 'sync_metadata.external_record_type'?: string[];
28179
29598
  /** Filters for issues with this specific external reference. */
28180
29599
  'sync_metadata.external_reference'?: string[];
28181
29600
  /** Filters for works with selected sync statuses. */
@@ -28284,6 +29703,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28284
29703
  'staged_info.is_staged'?: boolean;
28285
29704
  /** Filters for incidents with any of the provided subtypes. */
28286
29705
  subtype?: string[];
29706
+ /** Filters for issues with this specific external record. */
29707
+ 'sync_metadata.external_record'?: string[];
29708
+ /** Filters for issues with this specific external record type. */
29709
+ 'sync_metadata.external_record_type'?: string[];
28287
29710
  /** Filters for issues with this specific external reference. */
28288
29711
  'sync_metadata.external_reference'?: string[];
28289
29712
  /** Filters for works with selected sync statuses. */
@@ -28716,6 +30139,74 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28716
30139
  * @secure
28717
30140
  */
28718
30141
  linksReplace: (data: LinksReplaceRequest, params?: RequestParams) => Promise<AxiosResponse<LinksReplaceResponse, any, {}>>;
30142
+ /**
30143
+ * @description Lists marketplace item features.
30144
+ *
30145
+ * @tags marketplace
30146
+ * @name MarketplaceItemFeaturesList
30147
+ * @summary List Marketplace Item Features
30148
+ * @request GET:/marketplace-item-features.list
30149
+ * @secure
30150
+ */
30151
+ marketplaceItemFeaturesList: (query?: {
30152
+ /**
30153
+ * To start listing marketplace item features cursor field should not be
30154
+ * provided. Set cursor to value returned by the previous call to list
30155
+ * marketplace item features in the next page.
30156
+ * @format text
30157
+ */
30158
+ cursor?: string;
30159
+ /** Filters on feature type for marketplace item features. */
30160
+ feature_type?: MarketplaceItemFeatureFeatureType[];
30161
+ /** Filters on import capabilities for marketplace item import features. */
30162
+ import_capabilities?: string[];
30163
+ /**
30164
+ * Limit for how many marketplace item features to be retrieved per
30165
+ * page. Default is 50.
30166
+ * @format int32
30167
+ */
30168
+ limit?: number;
30169
+ /**
30170
+ * Marketplace ID where to list marketplace item features.
30171
+ * @format id
30172
+ */
30173
+ marketplace?: string;
30174
+ /**
30175
+ * The iteration mode to use, otherwise if not set, then "after" is
30176
+ * used.
30177
+ */
30178
+ mode?: ListMode;
30179
+ /** Filters on operation type for marketplace item operation features. */
30180
+ operation_type?: MarketplaceItemOperationFeatureOperationType[];
30181
+ /** Filters on server type for marketplace item MCP server features. */
30182
+ server_type?: MarketplaceItemMcpServerFeatureServerType[];
30183
+ /**
30184
+ * List of fields to sort the marketplace item feature objects, by and
30185
+ * how to sort them. Default is to sort by created_date in descending
30186
+ * order.
30187
+ */
30188
+ sort_by?: string[];
30189
+ }, params?: RequestParams) => Promise<AxiosResponse<MarketplaceItemFeaturesListResponse, any, {}>>;
30190
+ /**
30191
+ * @description Lists marketplace item features.
30192
+ *
30193
+ * @tags marketplace
30194
+ * @name MarketplaceItemFeaturesListPost
30195
+ * @summary List Marketplace Item Features (POST)
30196
+ * @request POST:/marketplace-item-features.list
30197
+ * @secure
30198
+ */
30199
+ marketplaceItemFeaturesListPost: (data: MarketplaceItemFeaturesListRequest, params?: RequestParams) => Promise<AxiosResponse<MarketplaceItemFeaturesListResponse, any, {}>>;
30200
+ /**
30201
+ * @description Installs a flow or vista for the marketplace item.
30202
+ *
30203
+ * @tags marketplace
30204
+ * @name MarketplaceItemsInstall
30205
+ * @summary Install Marketplace Items
30206
+ * @request POST:/marketplace-items.install
30207
+ * @secure
30208
+ */
30209
+ marketplaceItemsInstall: (data: MarketplaceItemsInstallRequest, params?: RequestParams) => Promise<AxiosResponse<MarketplaceItemsInstallResponse, any, {}>>;
28719
30210
  /**
28720
30211
  * @description Counts the meeting records.
28721
30212
  *
@@ -28744,6 +30235,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28744
30235
  /**
28745
30236
  * Filters for target id in links associated with the meeting.
28746
30237
  * @format id
30238
+ * @example "ACC-12345"
28747
30239
  */
28748
30240
  'links.target'?: string;
28749
30241
  /**
@@ -28765,6 +30257,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28765
30257
  state?: MeetingState[];
28766
30258
  /** Subtypes of meeting to be filtered. */
28767
30259
  subtype?: string[];
30260
+ /** Filters for issues with this specific external record. */
30261
+ 'sync_metadata.external_record'?: string[];
30262
+ /** Filters for issues with this specific external record type. */
30263
+ 'sync_metadata.external_record_type'?: string[];
28768
30264
  /** Filters for issues with this specific external reference. */
28769
30265
  'sync_metadata.external_reference'?: string[];
28770
30266
  /** Filters for works with selected sync statuses. */
@@ -28879,6 +30375,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28879
30375
  /**
28880
30376
  * Filters for target id in links associated with the meeting.
28881
30377
  * @format id
30378
+ * @example "ACC-12345"
28882
30379
  */
28883
30380
  'links.target'?: string;
28884
30381
  /**
@@ -28907,6 +30404,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28907
30404
  state?: MeetingState[];
28908
30405
  /** Subtypes of meeting to be filtered. */
28909
30406
  subtype?: string[];
30407
+ /** Filters for issues with this specific external record. */
30408
+ 'sync_metadata.external_record'?: string[];
30409
+ /** Filters for issues with this specific external record type. */
30410
+ 'sync_metadata.external_record_type'?: string[];
28910
30411
  /** Filters for issues with this specific external reference. */
28911
30412
  'sync_metadata.external_reference'?: string[];
28912
30413
  /** Filters for works with selected sync statuses. */
@@ -29140,6 +30641,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29140
30641
  * @format text
29141
30642
  */
29142
30643
  version_key: string;
30644
+ /** Whether to include replay data in the response. Defaults to true. */
30645
+ include_replay_data?: boolean;
29143
30646
  /**
29144
30647
  * The unique identifier of the recording to retrieve in case of mobile
29145
30648
  * sessions.
@@ -29537,6 +31040,37 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29537
31040
  * @example "2023-01-01T12:00:00.000Z"
29538
31041
  */
29539
31042
  'enhancement.actual_start_date.before'?: string;
31043
+ /**
31044
+ * Filters for enhancement by its health status. The allowed ids can be
31045
+ * extended by the user. Stock allowed values:
31046
+ * ```
31047
+ * {
31048
+ * "id": 1,
31049
+ * "label": "On Track",
31050
+ * "ordinal": 1,
31051
+ * "overridable": true
31052
+ * },
31053
+ * {
31054
+ * "id": 2,
31055
+ * "label": "At Risk",
31056
+ * "ordinal": 2,
31057
+ * "overridable": true
31058
+ * },
31059
+ * {
31060
+ * "id": 3,
31061
+ * "label": "Off Track",
31062
+ * "ordinal": 3,
31063
+ * "overridable": true
31064
+ * },
31065
+ * {
31066
+ * "id": 4,
31067
+ * "label": "Not Applicable",
31068
+ * "ordinal": 4,
31069
+ * "overridable": true
31070
+ * }
31071
+ * ```
31072
+ */
31073
+ 'enhancement.health'?: number[];
29540
31074
  /**
29541
31075
  * Filters for enhancement by its opportunities.
29542
31076
  * @example ["OPP-12345"]
@@ -29544,6 +31078,16 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29544
31078
  'enhancement.opportunities'?: string[];
29545
31079
  /** Filters for enhancement by its rev score tier. */
29546
31080
  'enhancement.rev_score_tier'?: EnhancementRevScoreTier[];
31081
+ /** Filters for the provided space IDs. */
31082
+ 'enhancement.space.ids'?: string[];
31083
+ /** Whether to include child spaces. */
31084
+ 'enhancement.space.include_children'?: boolean;
31085
+ /** Whether to include objects not associated with any space. */
31086
+ 'enhancement.space.include_global'?: boolean;
31087
+ /** Whether to include parent spaces. */
31088
+ 'enhancement.space.include_parents'?: boolean;
31089
+ /** The filter operator to be applied on space. */
31090
+ 'enhancement.space.op'?: SpaceFilterSpaceIdOperatorType;
29547
31091
  /** List of IDs of the custom stages which will be used for filtering. */
29548
31092
  'enhancement.stage_v2'?: string[];
29549
31093
  /** Filters for part with any of the provided custom states. */
@@ -30422,12 +31966,13 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30422
31966
  */
30423
31967
  revUsersUpdate: (data: RevUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersUpdateResponse, any, {}>>;
30424
31968
  /**
30425
- * @description Assigns or revokes roles of a principal.
31969
+ * @description Deprecated: Use role-sets.apply instead. Assigns or revokes roles of a principal.
30426
31970
  *
30427
31971
  * @tags roles
30428
31972
  * @name RolesApply
30429
31973
  * @summary Apply Roles
30430
31974
  * @request POST:/roles.apply
31975
+ * @deprecated
30431
31976
  * @secure
30432
31977
  */
30433
31978
  rolesApply: (data: RolesApplyRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
@@ -30568,6 +32113,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30568
32113
  'space.include_global'?: boolean;
30569
32114
  /** Whether to include parent spaces. */
30570
32115
  'space.include_parents'?: boolean;
32116
+ /** The filter operator to be applied on space. */
32117
+ 'space.op'?: SpaceFilterSpaceIdOperatorType;
30571
32118
  /** The list of subtypes. */
30572
32119
  subtype?: string[];
30573
32120
  /** Filters for custom schema fragment of the provided types. */
@@ -31134,6 +32681,16 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31134
32681
  * @secure
31135
32682
  */
31136
32683
  snapWidgetsCreate: (data: SnapWidgetsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SnapWidgetsCreateResponse, any, {}>>;
32684
+ /**
32685
+ * @description Creates a new space.
32686
+ *
32687
+ * @tags spaces
32688
+ * @name SpacesCreate
32689
+ * @summary Create Space
32690
+ * @request POST:/spaces.create
32691
+ * @secure
32692
+ */
32693
+ spacesCreate: (data: SpacesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
31137
32694
  /**
31138
32695
  * @description Creates a stage diagram.
31139
32696
  *
@@ -32608,8 +34165,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32608
34165
  * @example ["ACC-12345"]
32609
34166
  */
32610
34167
  'issue.accounts'?: string[];
32611
- /** Filters for issues belonging to specific groups. */
32612
- 'issue.group'?: string[];
32613
34168
  /** Filters for issues with any of the provided priorities. */
32614
34169
  'issue.priority'?: IssuePriority[];
32615
34170
  /** Filters for issues with any of the provided priority enum ids. */
@@ -32629,6 +34184,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32629
34184
  'issue.space.include_global'?: boolean;
32630
34185
  /** Whether to include parent spaces. */
32631
34186
  'issue.space.include_parents'?: boolean;
34187
+ /** The filter operator to be applied on space. */
34188
+ 'issue.space.op'?: SpaceFilterSpaceIdOperatorType;
32632
34189
  /** Filters for issues with any of the sprint. */
32633
34190
  'issue.sprint'?: string[];
32634
34191
  /** Filters for issues with any of the provided sprint states. */
@@ -32672,6 +34229,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32672
34229
  'staged_info.is_staged'?: boolean;
32673
34230
  /** Filters for work with any of the provided states. */
32674
34231
  state?: string[];
34232
+ /** Filters for issues with this specific external record. */
34233
+ 'sync_metadata.external_record'?: string[];
34234
+ /** Filters for issues with this specific external record type. */
34235
+ 'sync_metadata.external_record_type'?: string[];
32675
34236
  /** Filters for issues with this specific external reference. */
32676
34237
  'sync_metadata.external_reference'?: string[];
32677
34238
  /** Filters for works with selected sync statuses. */
@@ -32706,6 +34267,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32706
34267
  'ticket.channels_v2'?: string[];
32707
34268
  /** Filters for tickets belonging to specific groups. */
32708
34269
  'ticket.group'?: string[];
34270
+ /** The filter operator to be applied on group filter for tickets. */
34271
+ 'ticket.group_op'?: WorksFilterTicketGroupsOpOperatorType;
32709
34272
  /** Filters for frozen tickets. */
32710
34273
  'ticket.is_frozen'?: boolean;
32711
34274
  /** Filters for tickets that are spam. */
@@ -32807,8 +34370,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32807
34370
  * @example ["ACC-12345"]
32808
34371
  */
32809
34372
  'issue.accounts'?: string[];
32810
- /** Filters for issues belonging to specific groups. */
32811
- 'issue.group'?: string[];
32812
34373
  /** Filters for issues with any of the provided priorities. */
32813
34374
  'issue.priority'?: IssuePriority[];
32814
34375
  /** Filters for issues with any of the provided priority enum ids. */
@@ -32828,6 +34389,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32828
34389
  'issue.space.include_global'?: boolean;
32829
34390
  /** Whether to include parent spaces. */
32830
34391
  'issue.space.include_parents'?: boolean;
34392
+ /** The filter operator to be applied on space. */
34393
+ 'issue.space.op'?: SpaceFilterSpaceIdOperatorType;
32831
34394
  /** Filters for issues with any of the sprint. */
32832
34395
  'issue.sprint'?: string[];
32833
34396
  /** Filters for issues with any of the provided sprint states. */
@@ -32873,6 +34436,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32873
34436
  'staged_info.is_staged'?: boolean;
32874
34437
  /** Filters for work with any of the provided states. */
32875
34438
  state?: string[];
34439
+ /** Filters for issues with this specific external record. */
34440
+ 'sync_metadata.external_record'?: string[];
34441
+ /** Filters for issues with this specific external record type. */
34442
+ 'sync_metadata.external_record_type'?: string[];
32876
34443
  /** Filters for issues with this specific external reference. */
32877
34444
  'sync_metadata.external_reference'?: string[];
32878
34445
  /** Filters for works with selected sync statuses. */
@@ -32907,6 +34474,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32907
34474
  'ticket.channels_v2'?: string[];
32908
34475
  /** Filters for tickets belonging to specific groups. */
32909
34476
  'ticket.group'?: string[];
34477
+ /** The filter operator to be applied on group filter for tickets. */
34478
+ 'ticket.group_op'?: WorksFilterTicketGroupsOpOperatorType;
32910
34479
  /** Filters for frozen tickets. */
32911
34480
  'ticket.is_frozen'?: boolean;
32912
34481
  /** Filters for tickets that are spam. */
@@ -33015,8 +34584,6 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33015
34584
  * @example ["ACC-12345"]
33016
34585
  */
33017
34586
  'issue.accounts'?: string[];
33018
- /** Filters for issues belonging to specific groups. */
33019
- 'issue.group'?: string[];
33020
34587
  /** Filters for issues with any of the provided priorities. */
33021
34588
  'issue.priority'?: IssuePriority[];
33022
34589
  /** Filters for issues with any of the provided priority enum ids. */
@@ -33036,6 +34603,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33036
34603
  'issue.space.include_global'?: boolean;
33037
34604
  /** Whether to include parent spaces. */
33038
34605
  'issue.space.include_parents'?: boolean;
34606
+ /** The filter operator to be applied on space. */
34607
+ 'issue.space.op'?: SpaceFilterSpaceIdOperatorType;
33039
34608
  /** Filters for issues with any of the sprint. */
33040
34609
  'issue.sprint'?: string[];
33041
34610
  /** Filters for issues with any of the provided sprint states. */
@@ -33091,6 +34660,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33091
34660
  'staged_info.is_staged'?: boolean;
33092
34661
  /** Filters for work with any of the provided states. */
33093
34662
  state?: string[];
34663
+ /** Filters for issues with this specific external record. */
34664
+ 'sync_metadata.external_record'?: string[];
34665
+ /** Filters for issues with this specific external record type. */
34666
+ 'sync_metadata.external_record_type'?: string[];
33094
34667
  /** Filters for issues with this specific external reference. */
33095
34668
  'sync_metadata.external_reference'?: string[];
33096
34669
  /** Filters for works with selected sync statuses. */
@@ -33125,6 +34698,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33125
34698
  'ticket.channels_v2'?: string[];
33126
34699
  /** Filters for tickets belonging to specific groups. */
33127
34700
  'ticket.group'?: string[];
34701
+ /** The filter operator to be applied on group filter for tickets. */
34702
+ 'ticket.group_op'?: WorksFilterTicketGroupsOpOperatorType;
33128
34703
  /** Filters for frozen tickets. */
33129
34704
  'ticket.is_frozen'?: boolean;
33130
34705
  /** Filters for tickets that are spam. */