@devrev/typescript-sdk 1.1.74 → 1.1.75

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.
@@ -1208,6 +1208,11 @@ export interface AirdropSyncUnitsUpdateRequest {
1208
1208
  * true, the sync unit will be archived.
1209
1209
  */
1210
1210
  archive?: boolean;
1211
+ /**
1212
+ * Extraction window for the sync unit.
1213
+ * @format text
1214
+ */
1215
+ extraction_window?: string;
1211
1216
  first_sync_direction?: SyncDirection;
1212
1217
  /**
1213
1218
  * Sync unit on which the update should be performed.
@@ -4708,6 +4713,8 @@ export type Conversation = AtomBase & {
4708
4713
  * @example "2023-01-01T12:00:00.000Z"
4709
4714
  */
4710
4715
  actual_close_date?: string;
4716
+ /** The properties of an enum value. */
4717
+ ai_resolution_status?: EnumValue;
4711
4718
  /** Details of the parts relevant to the conversation. */
4712
4719
  applies_to_parts?: PartSummary[];
4713
4720
  /** Channel IDs of the conversation. */
@@ -4847,6 +4854,26 @@ export interface ConversationsCreateRequest {
4847
4854
  * @example "ACC-12345"
4848
4855
  */
4849
4856
  account?: string;
4857
+ /**
4858
+ * The AI resolution status enum ID for the conversation. Stock
4859
+ * allowed values:
4860
+ * ```
4861
+ * {
4862
+ * "id": 1,
4863
+ * "label": "deflected",
4864
+ * "ordinal": 1,
4865
+ * "overridable": false
4866
+ * },
4867
+ * {
4868
+ * "id": 2,
4869
+ * "label": "escalated",
4870
+ * "ordinal": 2,
4871
+ * "overridable": false
4872
+ * }
4873
+ * ```
4874
+ * @format int64
4875
+ */
4876
+ ai_resolution_status?: number;
4850
4877
  /**
4851
4878
  * The brand associated with the conversation.
4852
4879
  * @format id
@@ -4966,6 +4993,11 @@ export interface ConversationsExportRequest {
4966
4993
  account?: string[];
4967
4994
  /** Provides ways to specify date ranges on objects. */
4968
4995
  actual_close_date?: DateFilter;
4996
+ /**
4997
+ * Filters for conversations with any of the provided AI resolution
4998
+ * statuses.
4999
+ */
5000
+ ai_resolution_status?: number[];
4969
5001
  /**
4970
5002
  * Filters for conversations belonging to any of the provided parts.
4971
5003
  * @example ["PROD-12345"]
@@ -5087,6 +5119,11 @@ export interface ConversationsListRequest {
5087
5119
  account?: string[];
5088
5120
  /** Provides ways to specify date ranges on objects. */
5089
5121
  actual_close_date?: DateFilter;
5122
+ /**
5123
+ * Filters for conversations with any of the provided AI resolution
5124
+ * statuses.
5125
+ */
5126
+ ai_resolution_status?: number[];
5090
5127
  /**
5091
5128
  * Filters for conversations belonging to any of the provided parts.
5092
5129
  * @example ["PROD-12345"]
@@ -5218,6 +5255,26 @@ export interface ConversationsUpdateRequest {
5218
5255
  * @example "ACC-12345"
5219
5256
  */
5220
5257
  account?: string | null;
5258
+ /**
5259
+ * The AI resolution status enum ID for the conversation. Stock
5260
+ * allowed values:
5261
+ * ```
5262
+ * {
5263
+ * "id": 1,
5264
+ * "label": "deflected",
5265
+ * "ordinal": 1,
5266
+ * "overridable": false
5267
+ * },
5268
+ * {
5269
+ * "id": 2,
5270
+ * "label": "escalated",
5271
+ * "ordinal": 2,
5272
+ * "overridable": false
5273
+ * }
5274
+ * ```
5275
+ * @format int64
5276
+ */
5277
+ ai_resolution_status?: number;
5221
5278
  applies_to_parts?: ConversationsUpdateRequestAppliesToParts;
5222
5279
  /**
5223
5280
  * The brand associated with the conversation.
@@ -5672,6 +5729,11 @@ export interface CreateDashboardFilterCondition {
5672
5729
  operator: DashboardFilterConditionOperator;
5673
5730
  part_value?: CreateDashboardFilterPartCondition;
5674
5731
  relative_date_value?: CreateDashboardFilterRelativeDateCondition;
5732
+ /**
5733
+ * The template expression to be resolved at runtime.
5734
+ * @format text
5735
+ */
5736
+ template_value?: string;
5675
5737
  /** The operator used to compare the key and value. */
5676
5738
  value_type: DashboardFilterConditionValueType;
5677
5739
  }
@@ -6471,6 +6533,14 @@ export interface CreatePieWidgetVisualization {
6471
6533
  x: CreatePieVisualizationXAxis[];
6472
6534
  y: CreatePieVisualizationYAxis;
6473
6535
  }
6536
+ /** create-pinned-filter */
6537
+ export interface CreatePinnedFilter {
6538
+ /**
6539
+ * The field reference name from the data source schema.
6540
+ * @format text
6541
+ */
6542
+ reference_name: string;
6543
+ }
6474
6544
  /** create-rich-text-widget-visualization */
6475
6545
  export interface CreateRichTextWidgetVisualization {
6476
6546
  /** The content of the rich text. */
@@ -6693,6 +6763,12 @@ export type CreateStarterMessageNudgeWidgetStarterMessageNudgeType = string;
6693
6763
  export interface CreateSubWidget {
6694
6764
  /** A unified query language for DevRev objects. */
6695
6765
  dql_query?: DevrevQuery;
6766
+ /**
6767
+ * Filters that should be shown as empty filter options in the list
6768
+ * view. The UI uses the data source schema to determine appropriate
6769
+ * filter controls for each field.
6770
+ */
6771
+ pinned_filters?: CreatePinnedFilter[];
6696
6772
  query?: CreateWidgetQuery;
6697
6773
  /**
6698
6774
  * A reference ID for the sub-widget. It should be unique within the
@@ -7379,6 +7455,8 @@ export type CustomLinkType = AtomBase & {
7379
7455
  * @format text
7380
7456
  */
7381
7457
  tooltip?: string;
7458
+ /** UI metadata for custom link types. */
7459
+ ui?: LinkTypeUiMetadata;
7382
7460
  };
7383
7461
  /** custom-link-type-create-request */
7384
7462
  export interface CustomLinkTypeCreateRequest {
@@ -8437,7 +8515,14 @@ export interface CustomViewColumnProperties {
8437
8515
  width?: string;
8438
8516
  }
8439
8517
  /** dashboard */
8440
- export type Dashboard = AtomBase;
8518
+ export type Dashboard = AtomBase & {
8519
+ /**
8520
+ * Filters that should be shown as empty filter options on the
8521
+ * dashboard. The UI uses the data source schema to determine
8522
+ * appropriate filter controls for each field.
8523
+ */
8524
+ pinned_filters?: PinnedFilter[];
8525
+ };
8441
8526
  /**
8442
8527
  * dashboard-filter
8443
8528
  * A dashboard filter is a filter that can be applied to tabs, sections,
@@ -8459,7 +8544,8 @@ export declare enum DashboardFilterConditionOperator {
8459
8544
  export declare enum DashboardFilterConditionValueType {
8460
8545
  JsonValue = "json_value",
8461
8546
  PartValue = "part_value",
8462
- RelativeDateValue = "relative_date_value"
8547
+ RelativeDateValue = "relative_date_value",
8548
+ TemplateValue = "template_value"
8463
8549
  }
8464
8550
  /** The logical operator that binds the filter conditions or expressions. */
8465
8551
  export declare enum DashboardFilterExpressionOperator {
@@ -9163,6 +9249,11 @@ export type DevUser = UserBase & {
9163
9249
  experience_start_date?: string;
9164
9250
  /** IDs of the Dev User outside the DevRev SOR. */
9165
9251
  external_identities?: ExternalIdentity[];
9252
+ /**
9253
+ * Flag indicating if this user is currently invited. Remains true
9254
+ * even after the user accepts the invitation and becomes active.
9255
+ */
9256
+ is_invited?: boolean;
9166
9257
  /** Job history of the user. */
9167
9258
  job_history?: JobHistoryItem[];
9168
9259
  reports_to?: UserSummary;
@@ -10975,7 +11066,7 @@ export interface Error {
10975
11066
  * error-bad-request
10976
11067
  * Describes a error due to a bad request by the client.
10977
11068
  */
10978
- 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) & {
11069
+ export type ErrorBadRequest = ErrorBase & (ErrorBadRequestArtifactAlreadyAttachedToAParent | ErrorBadRequestBadRequest | ErrorBadRequestCustomizationValidationError | ErrorBadRequestGroupHierarchyCircularDependency | ErrorBadRequestGroupHierarchyDepthExceeded | ErrorBadRequestGroupHierarchyInvalidParent | ErrorBadRequestIdNotFound | ErrorBadRequestInvalidApiVersion | ErrorBadRequestInvalidContentType | ErrorBadRequestInvalidEnumValue | ErrorBadRequestInvalidField | ErrorBadRequestInvalidId | ErrorBadRequestMergeWorksError | ErrorBadRequestMissingDependency | ErrorBadRequestMissingRequiredField | ErrorBadRequestOperationNotAllowed | ErrorBadRequestParseError | ErrorBadRequestSpaceValidationErrors | ErrorBadRequestStaleSchemaFragments | ErrorBadRequestUnexpectedIdType | ErrorBadRequestUnexpectedJsonType | ErrorBadRequestValueNotPermitted | ErrorBadRequestWorkflowComponentValidationErrors) & {
10979
11070
  type: ErrorBadRequestType;
10980
11071
  };
10981
11072
  /** error-bad-request-artifact-already-attached-to-a-parent */
@@ -11277,6 +11368,32 @@ export interface ErrorBadRequestMissingRequiredField {
11277
11368
  */
11278
11369
  field_name: string;
11279
11370
  }
11371
+ /**
11372
+ * error-bad-request-operation-not-allowed
11373
+ * The operation is not allowed because the current state of the system
11374
+ * blocks it.
11375
+ */
11376
+ export interface ErrorBadRequestOperationNotAllowed {
11377
+ /**
11378
+ * The current value of the blocking field.
11379
+ * @format text
11380
+ */
11381
+ current_value?: string;
11382
+ /** The values that would allow the operation to proceed. */
11383
+ expected_values?: string[];
11384
+ /**
11385
+ * Dot-notation path to the field blocking the operation (e.g.
11386
+ * 'state', 'ai_agent.default_version_id',
11387
+ * 'default_version_id.state').
11388
+ * @format text
11389
+ */
11390
+ field_path: string;
11391
+ /**
11392
+ * Why the operation is not allowed.
11393
+ * @format text
11394
+ */
11395
+ reason?: string;
11396
+ }
11280
11397
  /** error-bad-request-parse-error */
11281
11398
  export type ErrorBadRequestParseError = object;
11282
11399
  /**
@@ -11381,6 +11498,7 @@ export declare enum ErrorBadRequestType {
11381
11498
  MergeWorksError = "merge_works_error",
11382
11499
  MissingDependency = "missing_dependency",
11383
11500
  MissingRequiredField = "missing_required_field",
11501
+ OperationNotAllowed = "operation_not_allowed",
11384
11502
  ParseError = "parse_error",
11385
11503
  SpaceValidationErrors = "space_validation_errors",
11386
11504
  StaleSchemaFragments = "stale_schema_fragments",
@@ -12324,11 +12442,47 @@ export interface EventWorkflowDeleted {
12324
12442
  id: string;
12325
12443
  old_workflow?: Workflow;
12326
12444
  }
12445
+ /** event-workflow-step-created */
12446
+ export interface EventWorkflowStepCreated {
12447
+ workflow_step: WorkflowStep;
12448
+ }
12449
+ /** event-workflow-step-deleted */
12450
+ export interface EventWorkflowStepDeleted {
12451
+ /**
12452
+ * The ID of the workflow step that was deleted.
12453
+ * @format id
12454
+ */
12455
+ id: string;
12456
+ old_workflow_step?: WorkflowStep;
12457
+ }
12458
+ /** event-workflow-step-updated */
12459
+ export interface EventWorkflowStepUpdated {
12460
+ old_workflow_step?: WorkflowStep;
12461
+ workflow_step: WorkflowStep;
12462
+ }
12327
12463
  /** event-workflow-updated */
12328
12464
  export interface EventWorkflowUpdated {
12329
12465
  old_workflow?: Workflow;
12330
12466
  workflow: Workflow;
12331
12467
  }
12468
+ /** event-workflow-version-created */
12469
+ export interface EventWorkflowVersionCreated {
12470
+ workflow_version: WorkflowVersion;
12471
+ }
12472
+ /** event-workflow-version-deleted */
12473
+ export interface EventWorkflowVersionDeleted {
12474
+ /**
12475
+ * The ID of the workflow version that was deleted.
12476
+ * @format id
12477
+ */
12478
+ id: string;
12479
+ old_workflow_version?: WorkflowVersion;
12480
+ }
12481
+ /** event-workflow-version-updated */
12482
+ export interface EventWorkflowVersionUpdated {
12483
+ old_workflow_version?: WorkflowVersion;
12484
+ workflow_version: WorkflowVersion;
12485
+ }
12332
12486
  /**
12333
12487
  * export-audit-logs-request
12334
12488
  * Request object to get a log's information.
@@ -13165,8 +13319,7 @@ export type GroupedVista = VistaBase & {
13165
13319
  flavor?: GroupedVistaFlavor;
13166
13320
  /** Automations specific to the Sprint Board vistas. */
13167
13321
  sprint_board_automation?: SprintBoardAutomation;
13168
- /** Settings specific to sprint board vistas. */
13169
- sprint_board_config?: SprintBoardConfig;
13322
+ sprint_board_config?: GroupedVistaSprintBoardConfig;
13170
13323
  };
13171
13324
  /** Type of DevRev object for which the grouped vista is applicable. */
13172
13325
  export declare enum GroupedVistaFilterType {
@@ -13180,6 +13333,38 @@ export declare enum GroupedVistaFlavor {
13180
13333
  SprintBoard = "sprint_board",
13181
13334
  SupportInbox = "support_inbox"
13182
13335
  }
13336
+ /** grouped-vista-sprint-board-config */
13337
+ export interface GroupedVistaSprintBoardConfig {
13338
+ /**
13339
+ * Cooldown period in days between sprints.
13340
+ * @format int32
13341
+ */
13342
+ cooldown?: number;
13343
+ /**
13344
+ * Sprint duration in days.
13345
+ * @format int32
13346
+ */
13347
+ duration?: number;
13348
+ /**
13349
+ * Number of planned sprints for the sprint board.
13350
+ * @format int32
13351
+ */
13352
+ planned_sprints?: number;
13353
+ sprint_name_config?: GroupedVistaSprintNamingConfig;
13354
+ }
13355
+ /** grouped-vista-sprint-naming-config */
13356
+ export interface GroupedVistaSprintNamingConfig {
13357
+ /**
13358
+ * The number to assign to the next sprint created.
13359
+ * @format int32
13360
+ */
13361
+ next_sprint_number?: number;
13362
+ /**
13363
+ * Template for naming sprints.
13364
+ * @format text
13365
+ */
13366
+ sprint_name_template?: string;
13367
+ }
13183
13368
  /**
13184
13369
  * grouped-vista-summary
13185
13370
  * Represents a group of multiple vistas as a single unit.
@@ -13257,6 +13442,8 @@ export interface GroupsListRequest {
13257
13442
  group_type?: GroupType[];
13258
13443
  /** Filter groups by ingestion source(s). */
13259
13444
  ingestion_source?: GroupIngestionSource[];
13445
+ /** Filters the groups on the basis of archival status. */
13446
+ is_archived?: boolean;
13260
13447
  /** Whether to fetch default or custom groups. */
13261
13448
  is_default?: boolean;
13262
13449
  /**
@@ -14627,6 +14814,66 @@ export interface LinkTargetDescriptorFilter {
14627
14814
  */
14628
14815
  subtype?: string;
14629
14816
  }
14817
+ /**
14818
+ * link-target-gantt-view-ui-metadata
14819
+ * Gantt view UI metadata for a link type.
14820
+ */
14821
+ export interface LinkTargetGanttViewUiMetadata {
14822
+ /**
14823
+ * Visual connection style reference for gantt view.
14824
+ * @format text
14825
+ */
14826
+ connection_type?: string;
14827
+ }
14828
+ /**
14829
+ * link-target-list-view-ui-metadata
14830
+ * List view UI metadata for a link type.
14831
+ */
14832
+ export interface LinkTargetListViewUiMetadata {
14833
+ /**
14834
+ * Whether this link type appears in the column selection dropdown on
14835
+ * vistas.
14836
+ */
14837
+ is_hidden?: boolean;
14838
+ /**
14839
+ * Whether links of this type are rendered in the expandable hierarchy
14840
+ * section.
14841
+ */
14842
+ is_hierarchical?: boolean;
14843
+ }
14844
+ /**
14845
+ * link-target-summary-view-ui-metadata
14846
+ * Summary view UI metadata for a link type.
14847
+ */
14848
+ export interface LinkTargetSummaryViewUiMetadata {
14849
+ /**
14850
+ * Whether this link type is shown in the collapsed compact view of
14851
+ * the sidepanel.
14852
+ */
14853
+ is_visible?: boolean;
14854
+ }
14855
+ /**
14856
+ * link-target-ui-metadata
14857
+ * UI metadata for one direction of a link type.
14858
+ */
14859
+ export interface LinkTargetUiMetadata {
14860
+ /**
14861
+ * Color used for linked object IDs.
14862
+ * @format text
14863
+ */
14864
+ color?: string;
14865
+ /** Gantt view UI metadata for a link type. */
14866
+ gantt_view?: LinkTargetGanttViewUiMetadata;
14867
+ /**
14868
+ * Icon reference for this link type.
14869
+ * @format text
14870
+ */
14871
+ icon?: string;
14872
+ /** List view UI metadata for a link type. */
14873
+ list_view?: LinkTargetListViewUiMetadata;
14874
+ /** Summary view UI metadata for a link type. */
14875
+ summary_view?: LinkTargetSummaryViewUiMetadata;
14876
+ }
14630
14877
  /** Type of link used to define the relationship. */
14631
14878
  export declare enum LinkType {
14632
14879
  CustomLink = "custom_link",
@@ -14643,6 +14890,18 @@ export declare enum LinkType {
14643
14890
  IsRelatedTo = "is_related_to",
14644
14891
  Serves = "serves"
14645
14892
  }
14893
+ /**
14894
+ * link-type-ui-metadata
14895
+ * UI metadata for custom link types.
14896
+ */
14897
+ export interface LinkTypeUiMetadata {
14898
+ /** Whether this link type should be hidden in the UI links block. */
14899
+ is_hidden?: boolean;
14900
+ /** UI metadata for one direction of a link type. */
14901
+ source?: LinkTargetUiMetadata;
14902
+ /** UI metadata for one direction of a link type. */
14903
+ target?: LinkTargetUiMetadata;
14904
+ }
14646
14905
  /** linkable */
14647
14906
  export type Linkable = PartBase;
14648
14907
  /** linkable-summary */
@@ -14910,6 +15169,8 @@ export interface MarketplaceItemFeaturesListRequest {
14910
15169
  * @format id
14911
15170
  */
14912
15171
  marketplace?: string;
15172
+ /** Filters on marketplace item IDs for marketplace item features. */
15173
+ marketplace_item?: string[];
14913
15174
  /**
14914
15175
  * The iteration mode to use. If "after", then entries after the provided
14915
15176
  * cursor will be returned, or if no cursor is provided, then from the
@@ -15050,6 +15311,11 @@ export type MarketplaceItemSummary = AtomBaseSummary & {
15050
15311
  * @format text
15051
15312
  */
15052
15313
  tagline?: string;
15314
+ /**
15315
+ * Version information for a marketplace listing, specifying the semantic
15316
+ * version being shipped to users.
15317
+ */
15318
+ version?: MarketplaceListingVersionSummary;
15053
15319
  };
15054
15320
  /** marketplace-items-install-request */
15055
15321
  export interface MarketplaceItemsInstallRequest {
@@ -15065,6 +15331,12 @@ export interface MarketplaceItemsInstallRequest {
15065
15331
  export interface MarketplaceItemsInstallResponse {
15066
15332
  created_object: AtomSummary;
15067
15333
  }
15334
+ /**
15335
+ * marketplace-listing-version-summary
15336
+ * Version information for a marketplace listing, specifying the semantic
15337
+ * version being shipped to users.
15338
+ */
15339
+ export type MarketplaceListingVersionSummary = object;
15068
15340
  /**
15069
15341
  * meerkat-widget-column-function
15070
15342
  * Deprecated: Use widget_query_column_config with type=function on
@@ -15179,10 +15451,18 @@ export type Meeting = AtomBase & {
15179
15451
  * @format text
15180
15452
  */
15181
15453
  external_url?: string;
15454
+ /**
15455
+ * Whether this meeting has been archived as a secondary record in a
15456
+ * merge. Archived meetings are excluded from list, count, group, and
15457
+ * search endpoints, but remain retrievable via meetings.get so
15458
+ * clients can follow the merge reference using primary_meeting.
15459
+ */
15460
+ is_archived?: boolean;
15182
15461
  /** The members in the meeting. */
15183
15462
  members?: AtomSummary[];
15184
15463
  organizer?: AtomSummary;
15185
15464
  parent?: AtomSummary;
15465
+ primary_meeting?: MeetingSummary;
15186
15466
  recording?: ArtifactSummary;
15187
15467
  /**
15188
15468
  * Recording URL of the meeting.
@@ -15729,6 +16009,10 @@ export interface MeetingsUpdateRequestMembers {
15729
16009
  }
15730
16010
  /** meetings-update-request-tags */
15731
16011
  export interface MeetingsUpdateRequestTags {
16012
+ /** Adds the provided tags on the meeting item. */
16013
+ add?: AddTagWithValue[];
16014
+ /** Removes the provided tags on the meeting item. */
16015
+ remove?: RemoveTagWithValue[];
15732
16016
  /** Sets the provided tags on the meeting item. */
15733
16017
  set?: SetTagWithValue[];
15734
16018
  }
@@ -16598,14 +16882,23 @@ export interface Money {
16598
16882
  }
16599
16883
  /** network-log */
16600
16884
  export interface NetworkLog {
16601
- /**
16602
- * Type of the network log.
16603
- * @format text
16604
- */
16605
- type: string;
16885
+ /** The type of network log. */
16886
+ type: NetworkLogType;
16606
16887
  request: ObservabilityNetworkRequest;
16607
16888
  response: ObservabilityNetworkResponse;
16608
16889
  }
16890
+ /** The type of network log. */
16891
+ export declare enum NetworkLogType {
16892
+ Css = "css",
16893
+ Fetch = "fetch",
16894
+ Font = "font",
16895
+ Iframe = "iframe",
16896
+ Img = "img",
16897
+ Link = "link",
16898
+ Other = "other",
16899
+ Script = "script",
16900
+ Xhr = "xhr"
16901
+ }
16609
16902
  /** notification-content-template */
16610
16903
  export type NotificationContentTemplate = ContentTemplateBase;
16611
16904
  /** notification-content-template-summary */
@@ -16655,7 +16948,7 @@ export interface ObjectsListRequest {
16655
16948
  * objects-list-response
16656
16949
  * Response for objects list.
16657
16950
  */
16658
- export type ObjectsListResponse = (ObjectsListResponseArticlesList | ObjectsListResponseCustomObjectsList | ObjectsListResponseEnhancementsList | ObjectsListResponseIssuesList) & {
16951
+ export type ObjectsListResponse = (ObjectsListResponseArticlesList | ObjectsListResponseCustomObjectsList | ObjectsListResponseEnhancementsList | ObjectsListResponseIssuesList | ObjectsListResponseRevUsersList) & {
16659
16952
  type: ObjectsListResponseType;
16660
16953
  /**
16661
16954
  * The cursor used to iterate subsequent results in accordance to the
@@ -16690,11 +16983,17 @@ export interface ObjectsListResponseIssuesList {
16690
16983
  /** The list of issues. */
16691
16984
  issues: Work[];
16692
16985
  }
16986
+ /** objects-list-response-rev-users-list */
16987
+ export interface ObjectsListResponseRevUsersList {
16988
+ /** The list of Rev users (contacts). */
16989
+ rev_users: RevUser[];
16990
+ }
16693
16991
  export declare enum ObjectsListResponseType {
16694
16992
  Articles = "articles",
16695
16993
  CustomObjects = "custom_objects",
16696
16994
  Enhancements = "enhancements",
16697
- Issues = "issues"
16995
+ Issues = "issues",
16996
+ RevUsers = "rev_users"
16698
16997
  }
16699
16998
  /** observability-network-request */
16700
16999
  export interface ObservabilityNetworkRequest {
@@ -18402,6 +18701,19 @@ export interface PingResponse {
18402
18701
  */
18403
18702
  timestamp: string;
18404
18703
  }
18704
+ /**
18705
+ * pinned-filter
18706
+ * A pinned filter declares a field that should be shown as an empty
18707
+ * filter option in the UI. The UI uses the data source schema to
18708
+ * determine the appropriate filter control for the field.
18709
+ */
18710
+ export interface PinnedFilter {
18711
+ /**
18712
+ * The field reference name from the data source schema.
18713
+ * @format text
18714
+ */
18715
+ reference_name: string;
18716
+ }
18405
18717
  /** preferences */
18406
18718
  export type Preferences = UserPreferences & {
18407
18719
  type: PreferencesType;
@@ -21013,7 +21325,6 @@ export declare enum SearchHybridNamespace {
21013
21325
  Conversation = "conversation",
21014
21326
  CustomObject = "custom_object",
21015
21327
  CustomPart = "custom_part",
21016
- CustomWork = "custom_work",
21017
21328
  Dashboard = "dashboard",
21018
21329
  Dataset = "dataset",
21019
21330
  DevUser = "dev_user",
@@ -21030,7 +21341,6 @@ export declare enum SearchHybridNamespace {
21030
21341
  Opportunity = "opportunity",
21031
21342
  Part = "part",
21032
21343
  Product = "product",
21033
- Project = "project",
21034
21344
  QuestionAnswer = "question_answer",
21035
21345
  RevOrg = "rev_org",
21036
21346
  RevUser = "rev_user",
@@ -21086,7 +21396,6 @@ export declare enum SearchNamespace {
21086
21396
  Conversation = "conversation",
21087
21397
  CustomObject = "custom_object",
21088
21398
  CustomPart = "custom_part",
21089
- CustomWork = "custom_work",
21090
21399
  Dashboard = "dashboard",
21091
21400
  DevUser = "dev_user",
21092
21401
  Directory = "directory",
@@ -21100,7 +21409,6 @@ export declare enum SearchNamespace {
21100
21409
  Operation = "operation",
21101
21410
  Opportunity = "opportunity",
21102
21411
  Product = "product",
21103
- Project = "project",
21104
21412
  QuestionAnswer = "question_answer",
21105
21413
  RevOrg = "rev_org",
21106
21414
  RevUser = "rev_user",
@@ -22560,29 +22868,13 @@ export interface SprintBoardAutomation {
22560
22868
  * enabled or not.
22561
22869
  */
22562
22870
  auto_issue_rollover_enabled?: boolean;
22563
- /** Whether this sprintboard has opted for mid-sprint status updates. */
22564
- sprint_status_update_enabled?: boolean;
22565
- }
22566
- /**
22567
- * sprint-board-config
22568
- * Settings specific to sprint board vistas.
22569
- */
22570
- export interface SprintBoardConfig {
22571
22871
  /**
22572
- * Cooldown period in days between sprints.
22573
- * @format int32
22872
+ * Whether issues should be moved to Backlog stage when removed from a
22873
+ * sprint.
22574
22874
  */
22575
- cooldown?: number;
22576
- /**
22577
- * Sprint duration in days.
22578
- * @format int32
22579
- */
22580
- duration?: number;
22581
- /**
22582
- * Number of planned sprints for the sprint board.
22583
- * @format int32
22584
- */
22585
- planned_sprints?: number;
22875
+ move_issues_to_backlog_on_sprint_removal_enabled?: boolean;
22876
+ /** Whether this sprintboard has opted for mid-sprint status updates. */
22877
+ sprint_status_update_enabled?: boolean;
22586
22878
  }
22587
22879
  /**
22588
22880
  * stage
@@ -22944,6 +23236,12 @@ export interface StockSchemaFragmentsListResponse {
22944
23236
  * widget.
22945
23237
  */
22946
23238
  export interface SubWidget {
23239
+ /**
23240
+ * Filters that should be shown as empty filter options in the list
23241
+ * view. The UI uses the data source schema to determine appropriate
23242
+ * filter controls for each field.
23243
+ */
23244
+ pinned_filters?: PinnedFilter[];
22947
23245
  /**
22948
23246
  * The query for a widget. This includes measures and dimensions to be
22949
23247
  * visualized.
@@ -24715,8 +25013,14 @@ export interface TimelineEntriesListRequest {
24715
25013
  /**
24716
25014
  * The collection(s) to list entries from, otherwise if not provided,
24717
25015
  * all entries are returned.
25016
+ * @maxItems 1
24718
25017
  */
24719
25018
  collections?: TimelineEntriesCollection[];
25019
+ /**
25020
+ * Filters for entries created by any of the provided users.
25021
+ * @example ["DEVU-12345"]
25022
+ */
25023
+ created_by?: string[];
24720
25024
  created_date?: DateTimeFilter;
24721
25025
  /**
24722
25026
  * The cursor to resume iteration from. If not provided, then
@@ -26059,6 +26363,12 @@ export interface VistaGroupBase {
26059
26363
  * @maxLength 16000
26060
26364
  */
26061
26365
  goals?: string;
26366
+ /**
26367
+ * The artifact ID of the goals document for sprint.
26368
+ * @format id
26369
+ * @example "ARTIFACT-12345"
26370
+ */
26371
+ goals_document?: string;
26062
26372
  /**
26063
26373
  * Globally unique object ID.
26064
26374
  * @format id
@@ -27110,7 +27420,13 @@ export interface WebhookEventRequest {
27110
27420
  work_updated?: EventWorkUpdated;
27111
27421
  workflow_created?: EventWorkflowCreated;
27112
27422
  workflow_deleted?: EventWorkflowDeleted;
27423
+ workflow_step_created?: EventWorkflowStepCreated;
27424
+ workflow_step_deleted?: EventWorkflowStepDeleted;
27425
+ workflow_step_updated?: EventWorkflowStepUpdated;
27113
27426
  workflow_updated?: EventWorkflowUpdated;
27427
+ workflow_version_created?: EventWorkflowVersionCreated;
27428
+ workflow_version_deleted?: EventWorkflowVersionDeleted;
27429
+ workflow_version_updated?: EventWorkflowVersionUpdated;
27114
27430
  }
27115
27431
  /** webhook-event-response */
27116
27432
  export interface WebhookEventResponse {
@@ -28149,8 +28465,12 @@ export type WorkflowRunSummary = AtomBaseSummary;
28149
28465
  export type WorkflowSearchSummary = SearchSummaryBase & {
28150
28466
  workflow: WorkflowSummary;
28151
28467
  };
28468
+ /** workflow-step */
28469
+ export type WorkflowStep = AtomBase;
28152
28470
  /** workflow-summary */
28153
28471
  export type WorkflowSummary = AtomBaseSummary;
28472
+ /** workflow-version */
28473
+ export type WorkflowVersion = AtomBase;
28154
28474
  /** works-count-request */
28155
28475
  export interface WorksCountRequest {
28156
28476
  /** Filters for work of the provided types. */
@@ -29301,7 +29621,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
29301
29621
  */
29302
29622
  export declare class Api<SecurityDataType extends unknown> extends HttpClient<SecurityDataType> {
29303
29623
  /**
29304
- * @description Creates an account, which is a record representing a customer or an organization.
29624
+ * @description Creates an account, which is a record representing a customer or an organization. **Required scopes:** - `account:write` OR `account:all`
29305
29625
  *
29306
29626
  * @tags accounts
29307
29627
  * @name AccountsCreate
@@ -29311,7 +29631,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29311
29631
  */
29312
29632
  accountsCreate: (data: AccountsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsCreateResponse, any, {}>>;
29313
29633
  /**
29314
- * @description Deletes an account.
29634
+ * @description Deletes an account. **Required scopes:** - `account:all`
29315
29635
  *
29316
29636
  * @tags accounts
29317
29637
  * @name AccountsDelete
@@ -29321,7 +29641,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29321
29641
  */
29322
29642
  accountsDelete: (data: AccountsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
29323
29643
  /**
29324
- * @description Exports a collection of accounts.
29644
+ * @description Exports a collection of accounts. **Required scopes:** - `account:read` OR `account:write` OR `account:all`
29325
29645
  *
29326
29646
  * @tags accounts
29327
29647
  * @name AccountsExport
@@ -29389,7 +29709,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29389
29709
  websites?: string[];
29390
29710
  }, params?: RequestParams) => Promise<AxiosResponse<AccountsExportResponse, any, {}>>;
29391
29711
  /**
29392
- * @description Exports a collection of accounts.
29712
+ * @description Exports a collection of accounts. **Required scopes:** - `account:read` OR `account:write` OR `account:all`
29393
29713
  *
29394
29714
  * @tags accounts
29395
29715
  * @name AccountsExportPost
@@ -29399,7 +29719,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29399
29719
  */
29400
29720
  accountsExportPost: (data: AccountsExportRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsExportResponse, any, {}>>;
29401
29721
  /**
29402
- * @description Retrieves an account's information.
29722
+ * @description Retrieves an account's information. **Required scopes:** - `account:read` OR `account:write` OR `account:all`
29403
29723
  *
29404
29724
  * @tags accounts
29405
29725
  * @name AccountsGet
@@ -29416,7 +29736,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29416
29736
  id: string;
29417
29737
  }, params?: RequestParams) => Promise<AxiosResponse<AccountsGetResponse, any, {}>>;
29418
29738
  /**
29419
- * @description Retrieves an account's information.
29739
+ * @description Retrieves an account's information. **Required scopes:** - `account:read` OR `account:write` OR `account:all`
29420
29740
  *
29421
29741
  * @tags accounts
29422
29742
  * @name AccountsGetPost
@@ -29426,7 +29746,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29426
29746
  */
29427
29747
  accountsGetPost: (data: AccountsGetRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsGetResponse, any, {}>>;
29428
29748
  /**
29429
- * @description Gets a list of accounts.
29749
+ * @description Gets a list of accounts. **Required scopes:** - `account:read` OR `account:write` OR `account:all`
29430
29750
  *
29431
29751
  * @tags accounts
29432
29752
  * @name AccountsList
@@ -29504,7 +29824,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29504
29824
  websites?: string[];
29505
29825
  }, params?: RequestParams) => Promise<AxiosResponse<AccountsListResponse, any, {}>>;
29506
29826
  /**
29507
- * @description Gets a list of accounts.
29827
+ * @description Gets a list of accounts. **Required scopes:** - `account:read` OR `account:write` OR `account:all`
29508
29828
  *
29509
29829
  * @tags accounts
29510
29830
  * @name AccountsListPost
@@ -29514,7 +29834,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29514
29834
  */
29515
29835
  accountsListPost: (data: AccountsListRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsListResponse, any, {}>>;
29516
29836
  /**
29517
- * @description Merges two accounts.
29837
+ * @description Merges two accounts. **Required scopes:** - `account:all`
29518
29838
  *
29519
29839
  * @tags accounts
29520
29840
  * @name AccountsMerge
@@ -29524,7 +29844,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29524
29844
  */
29525
29845
  accountsMerge: (data: AccountsMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
29526
29846
  /**
29527
- * @description Updates an account's information.
29847
+ * @description Updates an account's information. **Required scopes:** - `account:write` OR `account:all`
29528
29848
  *
29529
29849
  * @tags accounts
29530
29850
  * @name AccountsUpdate
@@ -29922,7 +30242,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29922
30242
  */
29923
30243
  articlesCountPost: (data: ArticlesCountRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesCountResponse, any, {}>>;
29924
30244
  /**
29925
- * @description Article is an object which can contain a URL or artifacts in the resource. It also contains the data regarding the owner, author, status and published date of the object. This call creates an article.
30245
+ * @description Article is an object which can contain a URL or artifacts in the resource. It also contains the data regarding the owner, author, status and published date of the object. This call creates an article. **Required scopes:** - `article:write` OR `article:all`
29926
30246
  *
29927
30247
  * @tags articles
29928
30248
  * @name CreateArticle
@@ -29932,7 +30252,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29932
30252
  */
29933
30253
  createArticle: (data: ArticlesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesCreateResponse, any, {}>>;
29934
30254
  /**
29935
- * @description Deletes an article.
30255
+ * @description Deletes an article. **Required scopes:** - `article:all`
29936
30256
  *
29937
30257
  * @tags articles
29938
30258
  * @name DeleteArticle
@@ -29942,7 +30262,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29942
30262
  */
29943
30263
  deleteArticle: (data: ArticlesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
29944
30264
  /**
29945
- * @description Gets an article.
30265
+ * @description Gets an article. **Required scopes:** - `article:read` OR `article:write` OR `article:all`
29946
30266
  *
29947
30267
  * @tags articles
29948
30268
  * @name GetArticle
@@ -29966,7 +30286,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29966
30286
  parent_article_id?: string;
29967
30287
  }, params?: RequestParams) => Promise<AxiosResponse<ArticlesGetResponse, any, {}>>;
29968
30288
  /**
29969
- * @description Gets an article.
30289
+ * @description Gets an article. **Required scopes:** - `article:read` OR `article:write` OR `article:all`
29970
30290
  *
29971
30291
  * @tags articles
29972
30292
  * @name GetArticlePost
@@ -29976,7 +30296,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29976
30296
  */
29977
30297
  getArticlePost: (data: ArticlesGetRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesGetResponse, any, {}>>;
29978
30298
  /**
29979
- * @description Lists a collection of articles.
30299
+ * @description Lists a collection of articles. **Required scopes:** - `article:read` OR `article:write` OR `article:all`
29980
30300
  *
29981
30301
  * @tags articles
29982
30302
  * @name ListArticles
@@ -30076,7 +30396,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30076
30396
  tags?: string[];
30077
30397
  }, params?: RequestParams) => Promise<AxiosResponse<ArticlesListResponse, any, {}>>;
30078
30398
  /**
30079
- * @description Lists a collection of articles.
30399
+ * @description Lists a collection of articles. **Required scopes:** - `article:read` OR `article:write` OR `article:all`
30080
30400
  *
30081
30401
  * @tags articles
30082
30402
  * @name ListArticlesPost
@@ -30086,7 +30406,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30086
30406
  */
30087
30407
  listArticlesPost: (data: ArticlesListRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesListResponse, any, {}>>;
30088
30408
  /**
30089
- * @description Updates an article.
30409
+ * @description Updates an article. **Required scopes:** - `article:write` OR `article:all`
30090
30410
  *
30091
30411
  * @tags articles
30092
30412
  * @name UpdateArticle
@@ -30096,7 +30416,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30096
30416
  */
30097
30417
  updateArticle: (data: ArticlesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesUpdateResponse, any, {}>>;
30098
30418
  /**
30099
- * @description Redirects to the artifact's download URL.
30419
+ * @description Redirects to the artifact's download URL. **Required scopes:** - `artifact:read`
30100
30420
  *
30101
30421
  * @tags artifacts
30102
30422
  * @name ArtifactsDownload
@@ -30123,7 +30443,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30123
30443
  version?: string;
30124
30444
  }, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
30125
30445
  /**
30126
- * @description Redirects to the artifact's download URL.
30446
+ * @description Redirects to the artifact's download URL. **Required scopes:** - `artifact:read`
30127
30447
  *
30128
30448
  * @tags artifacts
30129
30449
  * @name ArtifactsDownloadPost
@@ -30133,7 +30453,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30133
30453
  */
30134
30454
  artifactsDownloadPost: (data: ArtifactsDownloadRequest, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
30135
30455
  /**
30136
- * @description Gets the requested artifact's information.
30456
+ * @description Gets the requested artifact's information. **Required scopes:** - `artifact:read` Also needs parent read access.
30137
30457
  *
30138
30458
  * @tags artifacts
30139
30459
  * @name ArtifactsGet
@@ -30155,7 +30475,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30155
30475
  version?: string;
30156
30476
  }, params?: RequestParams) => Promise<AxiosResponse<ArtifactsGetResponse, any, {}>>;
30157
30477
  /**
30158
- * @description Gets the requested artifact's information.
30478
+ * @description Gets the requested artifact's information. **Required scopes:** - `artifact:read` Also needs parent read access.
30159
30479
  *
30160
30480
  * @tags artifacts
30161
30481
  * @name ArtifactsGetPost
@@ -30165,7 +30485,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30165
30485
  */
30166
30486
  artifactsGetPost: (data: ArtifactsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsGetResponse, any, {}>>;
30167
30487
  /**
30168
- * @description List the artifacts attached to an object.
30488
+ * @description List the artifacts attached to an object. **Required scopes:** - `artifact:read` Also needs parent read access.
30169
30489
  *
30170
30490
  * @tags artifacts
30171
30491
  * @name ArtifactsList
@@ -30181,7 +30501,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30181
30501
  parent_id?: string;
30182
30502
  }, params?: RequestParams) => Promise<AxiosResponse<ArtifactsListResponse, any, {}>>;
30183
30503
  /**
30184
- * @description List the artifacts attached to an object.
30504
+ * @description List the artifacts attached to an object. **Required scopes:** - `artifact:read` Also needs parent read access.
30185
30505
  *
30186
30506
  * @tags artifacts
30187
30507
  * @name ArtifactsListPost
@@ -30191,7 +30511,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30191
30511
  */
30192
30512
  artifactsListPost: (data: ArtifactsListRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsListResponse, any, {}>>;
30193
30513
  /**
30194
- * @description Gets the download URL for the artifact.
30514
+ * @description Gets the download URL for the artifact. **Required scopes:** - `artifact:read` Also needs parent read access.
30195
30515
  *
30196
30516
  * @tags artifacts
30197
30517
  * @name ArtifactsLocate
@@ -30213,7 +30533,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30213
30533
  version?: string;
30214
30534
  }, params?: RequestParams) => Promise<AxiosResponse<ArtifactsLocateResponse, any, {}>>;
30215
30535
  /**
30216
- * @description Gets the download URL for the artifact.
30536
+ * @description Gets the download URL for the artifact. **Required scopes:** - `artifact:read` Also needs parent read access.
30217
30537
  *
30218
30538
  * @tags artifacts
30219
30539
  * @name ArtifactsLocatePost
@@ -30223,7 +30543,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30223
30543
  */
30224
30544
  artifactsLocatePost: (data: ArtifactsLocateRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsLocateResponse, any, {}>>;
30225
30545
  /**
30226
- * @description Creates an artifact and generates an upload URL for its data.
30546
+ * @description Creates an artifact and generates an upload URL for its data. **Required scopes:** - `artifact:create`
30227
30547
  *
30228
30548
  * @tags artifacts
30229
30549
  * @name ArtifactsPrepare
@@ -30233,7 +30553,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30233
30553
  */
30234
30554
  artifactsPrepare: (data: ArtifactsPrepareRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsPrepareResponse, any, {}>>;
30235
30555
  /**
30236
- * @description Permanently deletes a version of an artifact.
30556
+ * @description Permanently deletes a version of an artifact. **Required scopes:** - `artifact:create`
30237
30557
  *
30238
30558
  * @tags artifacts
30239
30559
  * @name ArtifactsHardDeleteVersion
@@ -30243,7 +30563,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30243
30563
  */
30244
30564
  artifactsHardDeleteVersion: (data: ArtifactsHardDeleteVersionRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
30245
30565
  /**
30246
- * @description Prepares a new version for an artifact, returning the URL and form data to upload the updated file.
30566
+ * @description Prepares a new version for an artifact, returning the URL and form data to upload the updated file. **Required scopes:** - `artifact:create`
30247
30567
  *
30248
30568
  * @tags artifacts
30249
30569
  * @name ArtifactsVersionsPrepare
@@ -30289,7 +30609,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30289
30609
  */
30290
30610
  exportAuditLogs: (data: ExportAuditLogsRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
30291
30611
  /**
30292
- * @description Creates a JWT corresponding to the requested token type for the authenticated user.
30612
+ * @description Creates a JWT corresponding to the requested token type for the authenticated user. **Required scopes:** No scopes required.
30293
30613
  *
30294
30614
  * @tags auth-tokens
30295
30615
  * @name AuthTokensCreate
@@ -30299,7 +30619,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30299
30619
  */
30300
30620
  authTokensCreate: (data: AuthTokensCreateRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensCreateResponse, any, {}>>;
30301
30621
  /**
30302
- * @description Revokes the token that matches the given token ID issued under the given Dev organization.
30622
+ * @description Revokes the token that matches the given token ID issued under the given Dev organization. **Required scopes:** No scopes required.
30303
30623
  *
30304
30624
  * @tags auth-tokens
30305
30625
  * @name AuthTokensDelete
@@ -30309,7 +30629,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30309
30629
  */
30310
30630
  authTokensDelete: (data: AuthTokensDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
30311
30631
  /**
30312
- * @description Gets the token metadata corresponding to the given token ID under the given Dev organization.
30632
+ * @description Gets the token metadata corresponding to the given token ID under the given Dev organization. **Required scopes:** No scopes required.
30313
30633
  *
30314
30634
  * @tags auth-tokens
30315
30635
  * @name AuthTokensGet
@@ -30325,7 +30645,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30325
30645
  token_id: string;
30326
30646
  }, params?: RequestParams) => Promise<AxiosResponse<AuthTokensGetResponse, any, {}>>;
30327
30647
  /**
30328
- * @description Gets the token metadata corresponding to the given token ID under the given Dev organization.
30648
+ * @description Gets the token metadata corresponding to the given token ID under the given Dev organization. **Required scopes:** No scopes required.
30329
30649
  *
30330
30650
  * @tags auth-tokens
30331
30651
  * @name AuthTokensGetPost
@@ -30335,7 +30655,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30335
30655
  */
30336
30656
  authTokensGetPost: (data: AuthTokensGetRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensGetResponse, any, {}>>;
30337
30657
  /**
30338
- * @description Returns the Dev organization, user and token attributes extracted from the auth token.
30658
+ * @description Returns the Dev organization, user and token attributes extracted from the auth token. **Required scopes:** No scopes required.
30339
30659
  *
30340
30660
  * @tags auth-tokens
30341
30661
  * @name AuthTokensInfo
@@ -30345,7 +30665,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30345
30665
  */
30346
30666
  authTokensInfo: (params?: RequestParams) => Promise<AxiosResponse<AuthTokensInfoResponse, any, {}>>;
30347
30667
  /**
30348
- * @description Returns the Dev organization, user and token attributes extracted from the auth token.
30668
+ * @description Returns the Dev organization, user and token attributes extracted from the auth token. **Required scopes:** No scopes required.
30349
30669
  *
30350
30670
  * @tags auth-tokens
30351
30671
  * @name AuthTokensInfoPost
@@ -30355,7 +30675,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30355
30675
  */
30356
30676
  authTokensInfoPost: (data: AuthTokensInfoRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensInfoResponse, any, {}>>;
30357
30677
  /**
30358
- * @description Gets the token metadata for all the tokens corresponding to the given token type issued for a given subject.
30678
+ * @description Gets the token metadata for all the tokens corresponding to the given token type issued for a given subject. **Required scopes:** No scopes required.
30359
30679
  *
30360
30680
  * @tags auth-tokens
30361
30681
  * @name AuthTokensList
@@ -30384,7 +30704,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30384
30704
  subject?: string;
30385
30705
  }, params?: RequestParams) => Promise<AxiosResponse<AuthTokensListResponse, any, {}>>;
30386
30706
  /**
30387
- * @description Gets the token metadata for all the tokens corresponding to the given token type issued for a given subject.
30707
+ * @description Gets the token metadata for all the tokens corresponding to the given token type issued for a given subject. **Required scopes:** No scopes required.
30388
30708
  *
30389
30709
  * @tags auth-tokens
30390
30710
  * @name AuthTokensListPost
@@ -30394,7 +30714,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30394
30714
  */
30395
30715
  authTokensListPost: (data: AuthTokensListRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensListResponse, any, {}>>;
30396
30716
  /**
30397
- * @description Revokes all the tokens that matches the given token type created by the authenticated user.
30717
+ * @description Revokes all the tokens that matches the given token type created by the authenticated user. **Required scopes:** No scopes required.
30398
30718
  *
30399
30719
  * @tags auth-tokens
30400
30720
  * @name AuthTokensSelfDelete
@@ -30404,7 +30724,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30404
30724
  */
30405
30725
  authTokensSelfDelete: (data: AuthTokensSelfDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
30406
30726
  /**
30407
- * @description Updates token metadata of a token issued under a given Dev organization.
30727
+ * @description Updates token metadata of a token issued under a given Dev organization. **Required scopes:** No scopes required.
30408
30728
  *
30409
30729
  * @tags auth-tokens
30410
30730
  * @name AuthTokensUpdate
@@ -30497,7 +30817,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30497
30817
  */
30498
30818
  brandsUpdate: (data: BrandsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<BrandsUpdateResponse, any, {}>>;
30499
30819
  /**
30500
- * @description Creates a new chat, or optionally opens an existing one.
30820
+ * @description Creates a new chat, or optionally opens an existing one. **Required scopes:** Access is determined by chat membership.
30501
30821
  *
30502
30822
  * @tags chats
30503
30823
  * @name ChatsCreate
@@ -30507,7 +30827,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30507
30827
  */
30508
30828
  chatsCreate: (data: ChatsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsCreateResponse, any, {}>>;
30509
30829
  /**
30510
- * @description Gets a chat's information.
30830
+ * @description Gets a chat's information. **Required scopes:** Access is determined by chat membership.
30511
30831
  *
30512
30832
  * @tags chats
30513
30833
  * @name ChatsGet
@@ -30524,7 +30844,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30524
30844
  id?: string;
30525
30845
  }, params?: RequestParams) => Promise<AxiosResponse<ChatsGetResponse, any, {}>>;
30526
30846
  /**
30527
- * @description Gets a chat's information.
30847
+ * @description Gets a chat's information. **Required scopes:** Access is determined by chat membership.
30528
30848
  *
30529
30849
  * @tags chats
30530
30850
  * @name ChatsGetPost
@@ -30534,7 +30854,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30534
30854
  */
30535
30855
  chatsGetPost: (data: ChatsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsGetResponse, any, {}>>;
30536
30856
  /**
30537
- * @description Updates a chat's information.
30857
+ * @description Updates a chat's information. **Required scopes:** Access is determined by chat membership.
30538
30858
  *
30539
30859
  * @tags chats
30540
30860
  * @name ChatsUpdate
@@ -30544,7 +30864,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30544
30864
  */
30545
30865
  chatsUpdate: (data: ChatsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsUpdateResponse, any, {}>>;
30546
30866
  /**
30547
- * @description Creates a code change object.
30867
+ * @description Creates a code change object. **Required scopes:** - `code_change:write` OR `code_change:all`
30548
30868
  *
30549
30869
  * @tags code-changes
30550
30870
  * @name CodeChangesCreate
@@ -30554,7 +30874,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30554
30874
  */
30555
30875
  codeChangesCreate: (data: CodeChangesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesCreateResponse, any, {}>>;
30556
30876
  /**
30557
- * @description Deletes a code change object.
30877
+ * @description Deletes a code change object. **Required scopes:** - `code_change:all`
30558
30878
  *
30559
30879
  * @tags code-changes
30560
30880
  * @name CodeChangesDelete
@@ -30564,7 +30884,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30564
30884
  */
30565
30885
  codeChangesDelete: (data: CodeChangesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
30566
30886
  /**
30567
- * @description Gets a code change object.
30887
+ * @description Gets a code change object. **Required scopes:** - `code_change:read` OR `code_change:write` OR `code_change:all`
30568
30888
  *
30569
30889
  * @tags code-changes
30570
30890
  * @name CodeChangesGet
@@ -30580,7 +30900,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30580
30900
  id: string;
30581
30901
  }, params?: RequestParams) => Promise<AxiosResponse<CodeChangesGetResponse, any, {}>>;
30582
30902
  /**
30583
- * @description Gets a code change object.
30903
+ * @description Gets a code change object. **Required scopes:** - `code_change:read` OR `code_change:write` OR `code_change:all`
30584
30904
  *
30585
30905
  * @tags code-changes
30586
30906
  * @name CodeChangesGetPost
@@ -30590,7 +30910,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30590
30910
  */
30591
30911
  codeChangesGetPost: (data: CodeChangesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesGetResponse, any, {}>>;
30592
30912
  /**
30593
- * @description Lists code change objects.
30913
+ * @description Lists code change objects. **Required scopes:** - `code_change:read` OR `code_change:write` OR `code_change:all`
30594
30914
  *
30595
30915
  * @tags code-changes
30596
30916
  * @name CodeChangesList
@@ -30618,7 +30938,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30618
30938
  mode?: ListMode;
30619
30939
  }, params?: RequestParams) => Promise<AxiosResponse<CodeChangesListResponse, any, {}>>;
30620
30940
  /**
30621
- * @description Lists code change objects.
30941
+ * @description Lists code change objects. **Required scopes:** - `code_change:read` OR `code_change:write` OR `code_change:all`
30622
30942
  *
30623
30943
  * @tags code-changes
30624
30944
  * @name CodeChangesListPost
@@ -30628,7 +30948,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30628
30948
  */
30629
30949
  codeChangesListPost: (data: CodeChangesListRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesListResponse, any, {}>>;
30630
30950
  /**
30631
- * @description Updates a code change object.
30951
+ * @description Updates a code change object. **Required scopes:** - `code_change:write` OR `code_change:all`
30632
30952
  *
30633
30953
  * @tags code-changes
30634
30954
  * @name CodeChangesUpdate
@@ -30638,7 +30958,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30638
30958
  */
30639
30959
  codeChangesUpdate: (data: CodeChangesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesUpdateResponse, any, {}>>;
30640
30960
  /**
30641
- * @description Creates a command.
30961
+ * @description Creates a command. **Required scopes:** - `command:write` OR `command:all`
30642
30962
  *
30643
30963
  * @tags commands
30644
30964
  * @name CommandsCreate
@@ -30648,7 +30968,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30648
30968
  */
30649
30969
  commandsCreate: (data: CommandCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CommandCreateResponse, any, {}>>;
30650
30970
  /**
30651
- * @description Gets a command.
30971
+ * @description Gets a command. **Required scopes:** - `command:read` OR `command:write` OR `command:all`
30652
30972
  *
30653
30973
  * @tags commands
30654
30974
  * @name CommandsGet
@@ -30664,7 +30984,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30664
30984
  id: string;
30665
30985
  }, params?: RequestParams) => Promise<AxiosResponse<CommandGetResponse, any, {}>>;
30666
30986
  /**
30667
- * @description Gets a command.
30987
+ * @description Gets a command. **Required scopes:** - `command:read` OR `command:write` OR `command:all`
30668
30988
  *
30669
30989
  * @tags commands
30670
30990
  * @name CommandsGetPost
@@ -30674,7 +30994,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30674
30994
  */
30675
30995
  commandsGetPost: (data: CommandGetRequest, params?: RequestParams) => Promise<AxiosResponse<CommandGetResponse, any, {}>>;
30676
30996
  /**
30677
- * @description Lists commands for a Dev organization.
30997
+ * @description Lists commands for a Dev organization. **Required scopes:** - `command:read` OR `command:write` OR `command:all`
30678
30998
  *
30679
30999
  * @tags commands
30680
31000
  * @name CommandsList
@@ -30715,7 +31035,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30715
31035
  status?: CommandStatus[];
30716
31036
  }, params?: RequestParams) => Promise<AxiosResponse<CommandsListResponse, any, {}>>;
30717
31037
  /**
30718
- * @description Lists commands for a Dev organization.
31038
+ * @description Lists commands for a Dev organization. **Required scopes:** - `command:read` OR `command:write` OR `command:all`
30719
31039
  *
30720
31040
  * @tags commands
30721
31041
  * @name CommandsListPost
@@ -30725,7 +31045,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30725
31045
  */
30726
31046
  commandsListPost: (data: CommandsListRequest, params?: RequestParams) => Promise<AxiosResponse<CommandsListResponse, any, {}>>;
30727
31047
  /**
30728
- * @description Updates a command.
31048
+ * @description Updates a command. **Required scopes:** - `command:write` OR `command:all`
30729
31049
  *
30730
31050
  * @tags commands
30731
31051
  * @name CommandsUpdate
@@ -30833,7 +31153,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30833
31153
  */
30834
31154
  conversationsConvert: (data: ConversationsConvertRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsConvertResponse, any, {}>>;
30835
31155
  /**
30836
- * @description Creates a conversation.
31156
+ * @description Creates a conversation. **Required scopes:** - `conversation:write` OR `conversation:all`
30837
31157
  *
30838
31158
  * @tags conversations
30839
31159
  * @name ConversationsCreate
@@ -30843,7 +31163,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30843
31163
  */
30844
31164
  conversationsCreate: (data: ConversationsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsCreateResponse, any, {}>>;
30845
31165
  /**
30846
- * @description Deletes the requested conversation.
31166
+ * @description Deletes the requested conversation. **Required scopes:** - `conversation:all`
30847
31167
  *
30848
31168
  * @tags conversations
30849
31169
  * @name ConversationsDelete
@@ -30868,6 +31188,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30868
31188
  * @example ["ACC-12345"]
30869
31189
  */
30870
31190
  account?: string[];
31191
+ /**
31192
+ * Filters for conversations with any of the provided AI resolution
31193
+ * statuses.
31194
+ */
31195
+ ai_resolution_status?: number[];
30871
31196
  /**
30872
31197
  * Filters for conversations belonging to any of the provided parts.
30873
31198
  * @example ["PROD-12345"]
@@ -30986,7 +31311,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
30986
31311
  */
30987
31312
  conversationsExportPost: (data: ConversationsExportRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsExportResponse, any, {}>>;
30988
31313
  /**
30989
- * @description Gets the requested conversation's information.
31314
+ * @description Gets the requested conversation's information. **Required scopes:** - `conversation:read` OR `conversation:write` OR `conversation:all`
30990
31315
  *
30991
31316
  * @tags conversations
30992
31317
  * @name ConversationsGet
@@ -31002,7 +31327,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31002
31327
  id: string;
31003
31328
  }, params?: RequestParams) => Promise<AxiosResponse<ConversationsGetResponse, any, {}>>;
31004
31329
  /**
31005
- * @description Gets the requested conversation's information.
31330
+ * @description Gets the requested conversation's information. **Required scopes:** - `conversation:read` OR `conversation:write` OR `conversation:all`
31006
31331
  *
31007
31332
  * @tags conversations
31008
31333
  * @name ConversationsGetPost
@@ -31012,7 +31337,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31012
31337
  */
31013
31338
  conversationsGetPost: (data: ConversationsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsGetResponse, any, {}>>;
31014
31339
  /**
31015
- * @description Lists the available conversations.
31340
+ * @description Lists the available conversations. **Required scopes:** - `conversation:read` OR `conversation:write` OR `conversation:all`
31016
31341
  *
31017
31342
  * @tags conversations
31018
31343
  * @name ConversationsList
@@ -31027,6 +31352,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31027
31352
  * @example ["ACC-12345"]
31028
31353
  */
31029
31354
  account?: string[];
31355
+ /**
31356
+ * Filters for conversations with any of the provided AI resolution
31357
+ * statuses.
31358
+ */
31359
+ ai_resolution_status?: number[];
31030
31360
  /**
31031
31361
  * Filters for conversations belonging to any of the provided parts.
31032
31362
  * @example ["PROD-12345"]
@@ -31147,7 +31477,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31147
31477
  'tags_v2.value'?: string;
31148
31478
  }, params?: RequestParams) => Promise<AxiosResponse<ConversationsListResponse, any, {}>>;
31149
31479
  /**
31150
- * @description Lists the available conversations.
31480
+ * @description Lists the available conversations. **Required scopes:** - `conversation:read` OR `conversation:write` OR `conversation:all`
31151
31481
  *
31152
31482
  * @tags conversations
31153
31483
  * @name ConversationsListPost
@@ -31157,7 +31487,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31157
31487
  */
31158
31488
  conversationsListPost: (data: ConversationsListRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsListResponse, any, {}>>;
31159
31489
  /**
31160
- * @description Updates the requested conversation.
31490
+ * @description Updates the requested conversation. **Required scopes:** - `conversation:write` OR `conversation:all`
31161
31491
  *
31162
31492
  * @tags conversations
31163
31493
  * @name ConversationsUpdate
@@ -31167,7 +31497,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31167
31497
  */
31168
31498
  conversationsUpdate: (data: ConversationsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsUpdateResponse, any, {}>>;
31169
31499
  /**
31170
- * @description Counts custom objects.
31500
+ * @description Counts custom objects. **Required scopes:** No scopes required.
31171
31501
  *
31172
31502
  * @tags customization
31173
31503
  * @name CustomObjectsCount
@@ -31186,7 +31516,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31186
31516
  filters?: any[];
31187
31517
  }, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCountResponse, any, {}>>;
31188
31518
  /**
31189
- * @description Counts custom objects.
31519
+ * @description Counts custom objects. **Required scopes:** No scopes required.
31190
31520
  *
31191
31521
  * @tags customization
31192
31522
  * @name CustomObjectsCountPost
@@ -31197,7 +31527,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31197
31527
  */
31198
31528
  customObjectsCountPost: (data: CustomObjectsCountRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCountResponse, any, {}>>;
31199
31529
  /**
31200
- * @description Creates a custom object.
31530
+ * @description Creates a custom object. **Required scopes:** - `custom_type_fragment:write`
31201
31531
  *
31202
31532
  * @tags customization
31203
31533
  * @name CustomObjectsCreate
@@ -31207,7 +31537,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31207
31537
  */
31208
31538
  customObjectsCreate: (data: CustomObjectsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCreateResponse, any, {}>>;
31209
31539
  /**
31210
- * @description Deletes a custom object.
31540
+ * @description Deletes a custom object. **Required scopes:** - `custom_type_fragment:write`
31211
31541
  *
31212
31542
  * @tags customization
31213
31543
  * @name CustomObjectsDelete
@@ -31217,7 +31547,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31217
31547
  */
31218
31548
  customObjectsDelete: (data: CustomObjectsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
31219
31549
  /**
31220
- * @description Gets a custom object.
31550
+ * @description Gets a custom object. **Required scopes:** No scopes required.
31221
31551
  *
31222
31552
  * @tags customization
31223
31553
  * @name CustomObjectsGet
@@ -31233,7 +31563,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31233
31563
  id?: string;
31234
31564
  }, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsGetResponse, any, {}>>;
31235
31565
  /**
31236
- * @description Gets a custom object.
31566
+ * @description Gets a custom object. **Required scopes:** No scopes required.
31237
31567
  *
31238
31568
  * @tags customization
31239
31569
  * @name CustomObjectsGetPost
@@ -31243,7 +31573,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31243
31573
  */
31244
31574
  customObjectsGetPost: (data: CustomObjectsGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsGetResponse, any, {}>>;
31245
31575
  /**
31246
- * @description Lists custom objects.
31576
+ * @description Lists custom objects. **Required scopes:** No scopes required.
31247
31577
  *
31248
31578
  * @tags customization
31249
31579
  * @name CustomObjectsList
@@ -31279,7 +31609,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31279
31609
  sort_by?: string[];
31280
31610
  }, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsListResponse, any, {}>>;
31281
31611
  /**
31282
- * @description Lists custom objects.
31612
+ * @description Lists custom objects. **Required scopes:** No scopes required.
31283
31613
  *
31284
31614
  * @tags customization
31285
31615
  * @name CustomObjectsListPost
@@ -31290,7 +31620,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31290
31620
  */
31291
31621
  customObjectsListPost: (data: CustomObjectsListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsListResponse, any, {}>>;
31292
31622
  /**
31293
- * @description Updates a custom object.
31623
+ * @description Updates a custom object. **Required scopes:** - `custom_type_fragment:write`
31294
31624
  *
31295
31625
  * @tags customization
31296
31626
  * @name CustomObjectsUpdate
@@ -31300,7 +31630,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31300
31630
  */
31301
31631
  customObjectsUpdate: (data: CustomObjectsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsUpdateResponse, any, {}>>;
31302
31632
  /**
31303
- * @description Creates a new enterprise authentication connection for a Dev organization. This authentication connection will not be enabled by default for the organization and the user will need to explicitly enable this. Only 5 authentication connections can be created by an organization. **Required scopes:** - `dev_org:write`
31633
+ * @description Creates a new enterprise authentication connection for a Dev organization. This authentication connection will not be enabled by default for the organization and the user will need to explicitly enable this. Only 5 authentication connections can be created by an organization. **Required scopes:** Cannot be called via service account.
31304
31634
  *
31305
31635
  * @tags auth-connections, dev-orgs
31306
31636
  * @name DevOrgAuthConnectionsCreate
@@ -31310,7 +31640,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31310
31640
  */
31311
31641
  devOrgAuthConnectionsCreate: (data: DevOrgAuthConnectionsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsCreateResponse, any, {}>>;
31312
31642
  /**
31313
- * @description Deletes an authentication connection. Only enterprise connections which are explicitly set up for a Dev organization can be deleted. Default connections can not be deleted using this method. **Required scopes:** - `dev_org:all`
31643
+ * @description Deletes an authentication connection. Only enterprise connections which are explicitly set up for a Dev organization can be deleted. Default connections can not be deleted using this method. **Required scopes:** Cannot be called via service account.
31314
31644
  *
31315
31645
  * @tags auth-connections, dev-orgs
31316
31646
  * @name DevOrgAuthConnectionsDelete
@@ -31320,7 +31650,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31320
31650
  */
31321
31651
  devOrgAuthConnectionsDelete: (data: DevOrgAuthConnectionsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
31322
31652
  /**
31323
- * @description Retrieves the details for an authentication connection. **Required scopes:** - `dev_org:read`
31653
+ * @description Retrieves the details for an authentication connection. **Required scopes:** - `Cannot be called via service account.`
31324
31654
  *
31325
31655
  * @tags auth-connections, dev-orgs
31326
31656
  * @name DevOrgAuthConnectionsGet
@@ -31336,7 +31666,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31336
31666
  id: string;
31337
31667
  }, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsGetResponse, any, {}>>;
31338
31668
  /**
31339
- * @description Retrieves the details for an authentication connection. **Required scopes:** - `dev_org:read`
31669
+ * @description Retrieves the details for an authentication connection. **Required scopes:** - `Cannot be called via service account.`
31340
31670
  *
31341
31671
  * @tags auth-connections, dev-orgs
31342
31672
  * @name DevOrgAuthConnectionsGetPost
@@ -31346,7 +31676,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31346
31676
  */
31347
31677
  devOrgAuthConnectionsGetPost: (data: DevOrgAuthConnectionsGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsGetResponse, any, {}>>;
31348
31678
  /**
31349
- * @description Lists all the authentication connections available for a Dev organization. This list will include both social and enterprise connections which are either available by default or are explicitly created by the user. **Required scopes:** - `dev_org:read`
31679
+ * @description Lists all the authentication connections available for a Dev organization. This list will include both social and enterprise connections which are either available by default or are explicitly created by the user. **Required scopes:** Cannot be called via service account.
31350
31680
  *
31351
31681
  * @tags auth-connections, dev-orgs
31352
31682
  * @name DevOrgAuthConnectionsList
@@ -31356,7 +31686,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31356
31686
  */
31357
31687
  devOrgAuthConnectionsList: (params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsListResponse, any, {}>>;
31358
31688
  /**
31359
- * @description Lists all the authentication connections available for a Dev organization. This list will include both social and enterprise connections which are either available by default or are explicitly created by the user. **Required scopes:** - `dev_org:read`
31689
+ * @description Lists all the authentication connections available for a Dev organization. This list will include both social and enterprise connections which are either available by default or are explicitly created by the user. **Required scopes:** Cannot be called via service account.
31360
31690
  *
31361
31691
  * @tags auth-connections, dev-orgs
31362
31692
  * @name DevOrgAuthConnectionsListPost
@@ -31366,7 +31696,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31366
31696
  */
31367
31697
  devOrgAuthConnectionsListPost: (data: Empty, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsListResponse, any, {}>>;
31368
31698
  /**
31369
- * @description Enable or disable an authentication connection for a Dev organization. Atleast one authentication connection must be enabled for a Dev organization. **Required scopes:** - `dev_org:write`
31699
+ * @description Enable or disable an authentication connection for a Dev organization. Atleast one authentication connection must be enabled for a Dev organization. **Required scopes:** Cannot be called via service account.
31370
31700
  *
31371
31701
  * @tags auth-connections, dev-orgs
31372
31702
  * @name DevOrgAuthConnectionsToggle
@@ -31376,7 +31706,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31376
31706
  */
31377
31707
  devOrgAuthConnectionsToggle: (data: DevOrgAuthConnectionsToggleRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
31378
31708
  /**
31379
- * @description Updates an authentication connection. **Required scopes:** - `dev_org:write`
31709
+ * @description Updates an authentication connection. **Required scopes:** Cannot be called via service account.
31380
31710
  *
31381
31711
  * @tags auth-connections, dev-orgs
31382
31712
  * @name DevOrgAuthConnectionsUpdate
@@ -31386,7 +31716,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31386
31716
  */
31387
31717
  devOrgAuthConnectionsUpdate: (data: DevOrgAuthConnectionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsUpdateResponse, any, {}>>;
31388
31718
  /**
31389
- * @description Gets the Dev organization's information of the authenticated user. **Required scopes:** - `dev_org:read`
31719
+ * @description Gets the Dev organization's information of the authenticated user. **Required scopes:** - `dev_org:read` OR `dev_org:write`
31390
31720
  *
31391
31721
  * @tags dev-orgs
31392
31722
  * @name DevOrgsGet
@@ -31396,7 +31726,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31396
31726
  */
31397
31727
  devOrgsGet: (params?: RequestParams) => Promise<AxiosResponse<DevOrgsGetResponse, any, {}>>;
31398
31728
  /**
31399
- * @description Gets the Dev organization's information of the authenticated user. **Required scopes:** - `dev_org:read`
31729
+ * @description Gets the Dev organization's information of the authenticated user. **Required scopes:** - `dev_org:read` OR `dev_org:write`
31400
31730
  *
31401
31731
  * @tags dev-orgs
31402
31732
  * @name DevOrgsGetPost
@@ -31406,7 +31736,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31406
31736
  */
31407
31737
  devOrgsGetPost: (data: DevOrgsGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgsGetResponse, any, {}>>;
31408
31738
  /**
31409
- * @description Activates the requested user. **Required scopes:** - `dev_user:write`
31739
+ * @description Activates the requested user. **Required scopes:** - `dev_user:write` OR `dev_user:all`
31410
31740
  *
31411
31741
  * @tags dev-users
31412
31742
  * @name DevUsersActivate
@@ -31416,7 +31746,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31416
31746
  */
31417
31747
  devUsersActivate: (data: DevUsersActivateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersActivateResponse, any, {}>>;
31418
31748
  /**
31419
- * @description Creates a Dev user for a Dev organization. **Required scopes:** - `dev_user:write`
31749
+ * @description Creates a Dev user for a Dev organization. **Required scopes:** - `dev_user:write` OR `dev_user:all`
31420
31750
  *
31421
31751
  * @tags dev-users
31422
31752
  * @name DevUsersCreate
@@ -31436,7 +31766,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31436
31766
  */
31437
31767
  devUsersDeactivate: (data: DevUsersDeactivateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
31438
31768
  /**
31439
- * @description Gets the requested user's information. **Required scopes:** - `dev_user:read`
31769
+ * @description Gets the requested user's information. **Required scopes:** - `dev_user:read` OR `dev_user:write` OR `dev_user:all`
31440
31770
  *
31441
31771
  * @tags dev-users
31442
31772
  * @name DevUsersGet
@@ -31452,7 +31782,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31452
31782
  id: string;
31453
31783
  }, params?: RequestParams) => Promise<AxiosResponse<DevUsersGetResponse, any, {}>>;
31454
31784
  /**
31455
- * @description Gets the requested user's information. **Required scopes:** - `dev_user:read`
31785
+ * @description Gets the requested user's information. **Required scopes:** - `dev_user:read` OR `dev_user:write` OR `dev_user:all`
31456
31786
  *
31457
31787
  * @tags dev-users
31458
31788
  * @name DevUsersGetPost
@@ -31462,7 +31792,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31462
31792
  */
31463
31793
  devUsersGetPost: (data: DevUsersGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersGetResponse, any, {}>>;
31464
31794
  /**
31465
- * @description Links an external/secondary identity to the Dev user. **Required scopes:** - `dev_user:write`
31795
+ * @description Links an external/secondary identity to the Dev user. **Required scopes:** - `dev_user:write` OR `dev_user:all`
31466
31796
  *
31467
31797
  * @tags dev-users
31468
31798
  * @name DevUsersIdentitiesLink
@@ -31472,7 +31802,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31472
31802
  */
31473
31803
  devUsersIdentitiesLink: (data: DevUsersIdentitiesLinkRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersIdentitiesLinkResponse, any, {}>>;
31474
31804
  /**
31475
- * @description Unlinks an external/secondary identity from the Dev user. **Required scopes:** - `dev_user:write`
31805
+ * @description Unlinks an external/secondary identity from the Dev user. **Required scopes:** - `dev_user:write` OR `dev_user:all`
31476
31806
  *
31477
31807
  * @tags dev-users
31478
31808
  * @name DevUsersIdentitiesUnlink
@@ -31482,7 +31812,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31482
31812
  */
31483
31813
  devUsersIdentitiesUnlink: (data: DevUsersIdentitiesUnlinkRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersIdentitiesUnlinkResponse, any, {}>>;
31484
31814
  /**
31485
- * @description Lists users within your organization. **Required scopes:** - `dev_user:read`
31815
+ * @description Lists users within your organization. **Required scopes:** - `dev_user:read` OR `dev_user:write` OR `dev_user:all`
31486
31816
  *
31487
31817
  * @tags dev-users
31488
31818
  * @name DevUsersList
@@ -31536,7 +31866,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31536
31866
  timezone?: string[];
31537
31867
  }, params?: RequestParams) => Promise<AxiosResponse<DevUsersListResponse, any, {}>>;
31538
31868
  /**
31539
- * @description Lists users within your organization. **Required scopes:** - `dev_user:read`
31869
+ * @description Lists users within your organization. **Required scopes:** - `dev_user:read` OR `dev_user:write` OR `dev_user:all`
31540
31870
  *
31541
31871
  * @tags dev-users
31542
31872
  * @name DevUsersListPost
@@ -31556,7 +31886,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31556
31886
  */
31557
31887
  devUsersMerge: (data: DevUsersMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
31558
31888
  /**
31559
- * @description Gets the authenticated user's information. **Required scopes:** No scopes required
31889
+ * @description Gets the authenticated user's information. **Required scopes:** Default Scopes unavailable for this API
31560
31890
  *
31561
31891
  * @tags dev-users
31562
31892
  * @name DevUsersSelf
@@ -31566,7 +31896,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31566
31896
  */
31567
31897
  devUsersSelf: (params?: RequestParams) => Promise<AxiosResponse<DevUsersSelfResponse, any, {}>>;
31568
31898
  /**
31569
- * @description Gets the authenticated user's information. **Required scopes:** No scopes required
31899
+ * @description Gets the authenticated user's information. **Required scopes:** Default Scopes unavailable for this API
31570
31900
  *
31571
31901
  * @tags dev-users
31572
31902
  * @name DevUsersSelfPost
@@ -31576,7 +31906,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31576
31906
  */
31577
31907
  devUsersSelfPost: (data: DevUsersSelfRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersSelfResponse, any, {}>>;
31578
31908
  /**
31579
- * @description Updates the authenticated user. **Required scopes:** No scopes required
31909
+ * @description Updates the authenticated user. **Required scopes:** Default Scopes unavailable for this API
31580
31910
  *
31581
31911
  * @tags dev-users
31582
31912
  * @name DevUsersSelfUpdate
@@ -31586,7 +31916,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31586
31916
  */
31587
31917
  devUsersSelfUpdate: (data: DevUsersSelfUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersUpdateResponse, any, {}>>;
31588
31918
  /**
31589
- * @description Updates the user corresponding to the input Id. **Required scopes:** - `dev_user:write`
31919
+ * @description Updates the user corresponding to the input Id. **Required scopes:** - `dev_user:write` OR `dev_user:all`
31590
31920
  *
31591
31921
  * @tags dev-users
31592
31922
  * @name DevUsersUpdate
@@ -31596,7 +31926,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31596
31926
  */
31597
31927
  devUsersUpdate: (data: DevUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersUpdateResponse, any, {}>>;
31598
31928
  /**
31599
- * @description Get count of directories matching given filter.
31929
+ * @description Get count of directories matching given filter. **Required scopes:** - `directory:read` OR `directory:write` OR `directory:all`
31600
31930
  *
31601
31931
  * @tags directory
31602
31932
  * @name DirectoriesCount
@@ -31617,7 +31947,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31617
31947
  modified_by?: string[];
31618
31948
  }, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCountResponse, any, {}>>;
31619
31949
  /**
31620
- * @description Get count of directories matching given filter.
31950
+ * @description Get count of directories matching given filter. **Required scopes:** - `directory:read` OR `directory:write` OR `directory:all`
31621
31951
  *
31622
31952
  * @tags directory
31623
31953
  * @name DirectoriesCountPost
@@ -31627,7 +31957,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31627
31957
  */
31628
31958
  directoriesCountPost: (data: DirectoriesCountRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCountResponse, any, {}>>;
31629
31959
  /**
31630
- * @description Creates a directory for the specified inputs.
31960
+ * @description Creates a directory for the specified inputs. **Required scopes:** - `directory:write` OR `directory:all`
31631
31961
  *
31632
31962
  * @tags directory
31633
31963
  * @name DirectoriesCreate
@@ -31637,7 +31967,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31637
31967
  */
31638
31968
  directoriesCreate: (data: DirectoriesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCreateResponse, any, {}>>;
31639
31969
  /**
31640
- * @description Delete the specified directory.
31970
+ * @description Delete the specified directory. **Required scopes:** - `directory:all`
31641
31971
  *
31642
31972
  * @tags directory
31643
31973
  * @name DirectoriesDelete
@@ -31647,7 +31977,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31647
31977
  */
31648
31978
  directoriesDelete: (data: DirectoriesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
31649
31979
  /**
31650
- * @description Gets the specified directory.
31980
+ * @description Gets the specified directory. **Required scopes:** - `directory:read` OR `directory:write` OR `directory:all`
31651
31981
  *
31652
31982
  * @tags directory
31653
31983
  * @name DirectoriesGet
@@ -31663,7 +31993,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31663
31993
  id?: string;
31664
31994
  }, params?: RequestParams) => Promise<AxiosResponse<DirectoriesGetResponse, any, {}>>;
31665
31995
  /**
31666
- * @description Gets the specified directory.
31996
+ * @description Gets the specified directory. **Required scopes:** - `directory:read` OR `directory:write` OR `directory:all`
31667
31997
  *
31668
31998
  * @tags directory
31669
31999
  * @name DirectoriesGetPost
@@ -31673,7 +32003,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31673
32003
  */
31674
32004
  directoriesGetPost: (data: DirectoriesGetRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesGetResponse, any, {}>>;
31675
32005
  /**
31676
- * @description Lists directories matching the request.
32006
+ * @description Lists directories matching the request. **Required scopes:** - `directory:read` OR `directory:write` OR `directory:all`
31677
32007
  *
31678
32008
  * @tags directory
31679
32009
  * @name DirectoriesList
@@ -31710,7 +32040,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31710
32040
  modified_by?: string[];
31711
32041
  }, params?: RequestParams) => Promise<AxiosResponse<DirectoriesListResponse, any, {}>>;
31712
32042
  /**
31713
- * @description Lists directories matching the request.
32043
+ * @description Lists directories matching the request. **Required scopes:** - `directory:read` OR `directory:write` OR `directory:all`
31714
32044
  *
31715
32045
  * @tags directory
31716
32046
  * @name DirectoriesListPost
@@ -31720,7 +32050,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31720
32050
  */
31721
32051
  directoriesListPost: (data: DirectoriesListRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesListResponse, any, {}>>;
31722
32052
  /**
31723
- * @description Updates the specified directory.
32053
+ * @description Updates the specified directory. **Required scopes:** - `directory:write` OR `directory:all`
31724
32054
  *
31725
32055
  * @tags directory
31726
32056
  * @name DirectoriesUpdate
@@ -31920,7 +32250,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31920
32250
  */
31921
32251
  eventSourcesDeleteScheduledEvent: (data: EventSourcesDeleteScheduledEventRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
31922
32252
  /**
31923
- * @description Creates a new group. A group is a collection of users. **Required scopes:** - `group:write`
32253
+ * @description Creates a new group. A group is a collection of users. **Required scopes:** - `group:write` OR `group:all`
31924
32254
  *
31925
32255
  * @tags groups
31926
32256
  * @name GroupsCreate
@@ -31930,7 +32260,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31930
32260
  */
31931
32261
  groupsCreate: (data: GroupsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsCreateResponse, any, {}>>;
31932
32262
  /**
31933
- * @description Gets the requested group. **Required scopes:** - `group:read`
32263
+ * @description Gets the requested group. **Required scopes:** - `group:read` OR `group:write` OR `group:all`
31934
32264
  *
31935
32265
  * @tags groups
31936
32266
  * @name GroupsGet
@@ -31946,7 +32276,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31946
32276
  id: string;
31947
32277
  }, params?: RequestParams) => Promise<AxiosResponse<GroupsGetResponse, any, {}>>;
31948
32278
  /**
31949
- * @description Gets the requested group. **Required scopes:** - `group:read`
32279
+ * @description Gets the requested group. **Required scopes:** - `group:read` OR `group:write` OR `group:all`
31950
32280
  *
31951
32281
  * @tags groups
31952
32282
  * @name GroupsGetPost
@@ -31956,7 +32286,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31956
32286
  */
31957
32287
  groupsGetPost: (data: GroupsGetRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsGetResponse, any, {}>>;
31958
32288
  /**
31959
- * @description Lists the available groups. **Required scopes:** - `group:read`
32289
+ * @description Lists the available groups. **Required scopes:** - `group:read` OR `group:write` OR `group:all`
31960
32290
  *
31961
32291
  * @tags groups
31962
32292
  * @name GroupsList
@@ -31977,6 +32307,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
31977
32307
  group_type?: GroupType[];
31978
32308
  /** Filter groups by ingestion source(s). */
31979
32309
  ingestion_source?: GroupIngestionSource[];
32310
+ /** Filters the groups on the basis of archival status. */
32311
+ is_archived?: boolean;
31980
32312
  /** Whether to fetch default or custom groups. */
31981
32313
  is_default?: boolean;
31982
32314
  /**
@@ -32027,7 +32359,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32027
32359
  'sync_metadata.origin_system'?: string[];
32028
32360
  }, params?: RequestParams) => Promise<AxiosResponse<GroupsListResponse, any, {}>>;
32029
32361
  /**
32030
- * @description Lists the available groups. **Required scopes:** - `group:read`
32362
+ * @description Lists the available groups. **Required scopes:** - `group:read` OR `group:write` OR `group:all`
32031
32363
  *
32032
32364
  * @tags groups
32033
32365
  * @name GroupsListPost
@@ -32037,7 +32369,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32037
32369
  */
32038
32370
  groupsListPost: (data: GroupsListRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsListResponse, any, {}>>;
32039
32371
  /**
32040
- * @description Adds a member to a group. **Required scopes:** - `group_membership:write`
32372
+ * @description Adds a member to a group. **Required scopes:** - `group_membership:all`
32041
32373
  *
32042
32374
  * @tags groups
32043
32375
  * @name GroupMembersAdd
@@ -32073,7 +32405,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32073
32405
  */
32074
32406
  groupMembersCountPost: (data: GroupMembersCountRequest, params?: RequestParams) => Promise<AxiosResponse<GroupMembersCountResponse, any, {}>>;
32075
32407
  /**
32076
- * @description Lists the members in a group. **Required scopes:** - `group_membership:read`
32408
+ * @description Lists the members in a group. **Required scopes:** - `group_membership:read` OR `group_membership:all`
32077
32409
  *
32078
32410
  * @tags groups
32079
32411
  * @name GroupMembersList
@@ -32108,7 +32440,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32108
32440
  sort_by?: string[];
32109
32441
  }, params?: RequestParams) => Promise<AxiosResponse<GroupMembersListResponse, any, {}>>;
32110
32442
  /**
32111
- * @description Lists the members in a group. **Required scopes:** - `group_membership:read`
32443
+ * @description Lists the members in a group. **Required scopes:** - `group_membership:read` OR `group_membership:all`
32112
32444
  *
32113
32445
  * @tags groups
32114
32446
  * @name GroupMembersListPost
@@ -32118,7 +32450,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32118
32450
  */
32119
32451
  groupMembersListPost: (data: GroupMembersListRequest, params?: RequestParams) => Promise<AxiosResponse<GroupMembersListResponse, any, {}>>;
32120
32452
  /**
32121
- * @description Removes a member from a group. **Required scopes:** - `group_membership:write`
32453
+ * @description Removes a member from a group. **Required scopes:** - `group_membership:all`
32122
32454
  *
32123
32455
  * @tags groups
32124
32456
  * @name GroupMembersRemove
@@ -32128,7 +32460,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32128
32460
  */
32129
32461
  groupMembersRemove: (data: GroupMembersRemoveRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
32130
32462
  /**
32131
- * @description Updates the requested group. **Required scopes:** - `group:write`
32463
+ * @description Updates the requested group. **Required scopes:** - `group:write` OR `group:all`
32132
32464
  *
32133
32465
  * @tags groups
32134
32466
  * @name GroupsUpdate
@@ -32430,7 +32762,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32430
32762
  */
32431
32763
  incidentsUpdate: (data: IncidentsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsUpdateResponse, any, {}>>;
32432
32764
  /**
32433
- * @description Retrieves a job's information.
32765
+ * @description Retrieves a job's information. **Required scopes:** - `job:read`
32434
32766
  *
32435
32767
  * @tags jobs
32436
32768
  * @name GetJob
@@ -32446,7 +32778,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32446
32778
  id: string;
32447
32779
  }, params?: RequestParams) => Promise<AxiosResponse<JobsGetResponse, any, {}>>;
32448
32780
  /**
32449
- * @description Retrieves a job's information.
32781
+ * @description Retrieves a job's information. **Required scopes:** - `job:read`
32450
32782
  *
32451
32783
  * @tags jobs
32452
32784
  * @name GetJobPost
@@ -32456,7 +32788,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32456
32788
  */
32457
32789
  getJobPost: (data: JobsGetRequest, params?: RequestParams) => Promise<AxiosResponse<JobsGetResponse, any, {}>>;
32458
32790
  /**
32459
- * @description Gets a list of jobs.
32791
+ * @description Gets a list of jobs. **Required scopes:** - `job:read`
32460
32792
  *
32461
32793
  * @tags jobs
32462
32794
  * @name ListJobs
@@ -32495,7 +32827,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32495
32827
  state?: JobState[];
32496
32828
  }, params?: RequestParams) => Promise<AxiosResponse<JobsListResponse, any, {}>>;
32497
32829
  /**
32498
- * @description Gets a list of jobs.
32830
+ * @description Gets a list of jobs. **Required scopes:** - `job:read`
32499
32831
  *
32500
32832
  * @tags jobs
32501
32833
  * @name ListJobsPost
@@ -32505,7 +32837,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32505
32837
  */
32506
32838
  listJobsPost: (data: JobsListRequest, params?: RequestParams) => Promise<AxiosResponse<JobsListResponse, any, {}>>;
32507
32839
  /**
32508
- * @description OAuth2 authorization callback.
32840
+ * @description OAuth2 authorization callback. **Required scopes:** - `keyring:read`
32509
32841
  *
32510
32842
  * @tags keyrings
32511
32843
  * @name KeyringsCreateCallback
@@ -32525,7 +32857,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32525
32857
  state: string;
32526
32858
  }, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
32527
32859
  /**
32528
- * @description OAuth2 authorization callback.
32860
+ * @description OAuth2 authorization callback. **Required scopes:** - `keyring:read`
32529
32861
  *
32530
32862
  * @tags keyrings
32531
32863
  * @name KeyringsCreateCallbackPost
@@ -32698,7 +33030,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32698
33030
  */
32699
33031
  customLinkTypeUpdate: (data: CustomLinkTypeUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeUpdateResponse, any, {}>>;
32700
33032
  /**
32701
- * @description Creates a link between two objects to indicate a relationship.
33033
+ * @description Creates a link between two objects to indicate a relationship. **Required scopes:** - `link:write` OR `link:all` Also needs linked objects read access.
32702
33034
  *
32703
33035
  * @tags links
32704
33036
  * @name LinksCreate
@@ -32708,7 +33040,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32708
33040
  */
32709
33041
  linksCreate: (data: LinksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<LinksCreateResponse, any, {}>>;
32710
33042
  /**
32711
- * @description Deletes a link between two objects. Note that for part hierarchy links (e.g. enhancement to capability), deleting a link may leave an orphan object with no parent. If the intent is to re-parent an object rather than unlink it entirely, use `links.replace` instead, which atomically removes the old link and creates a new one in a single transaction.
33043
+ * @description Deletes a link between two objects. Note that for part hierarchy links (e.g. enhancement to capability), deleting a link may leave an orphan object with no parent. If the intent is to re-parent an object rather than unlink it entirely, use `links.replace` instead, which atomically removes the old link and creates a new one in a single transaction. **Required scopes:** - `link:all` Also needs linked objects read access.
32712
33044
  *
32713
33045
  * @tags links
32714
33046
  * @name LinksDelete
@@ -32718,7 +33050,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32718
33050
  */
32719
33051
  linksDelete: (data: LinksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
32720
33052
  /**
32721
- * @description Gets the requested link's information.
33053
+ * @description Gets the requested link's information. **Required scopes:** - `link:read` OR `link:write` OR `link:all`
32722
33054
  *
32723
33055
  * @tags links
32724
33056
  * @name LinksGet
@@ -32734,7 +33066,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32734
33066
  id: string;
32735
33067
  }, params?: RequestParams) => Promise<AxiosResponse<LinksGetResponse, any, {}>>;
32736
33068
  /**
32737
- * @description Gets the requested link's information.
33069
+ * @description Gets the requested link's information. **Required scopes:** - `link:read` OR `link:write` OR `link:all`
32738
33070
  *
32739
33071
  * @tags links
32740
33072
  * @name LinksGetPost
@@ -32744,7 +33076,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32744
33076
  */
32745
33077
  linksGetPost: (data: LinksGetRequest, params?: RequestParams) => Promise<AxiosResponse<LinksGetResponse, any, {}>>;
32746
33078
  /**
32747
- * @description Lists the available links.
33079
+ * @description Lists the available links. **Required scopes:** - `link:read` OR `link:write` OR `link:all`
32748
33080
  *
32749
33081
  * @tags links
32750
33082
  * @name LinksList
@@ -32803,7 +33135,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32803
33135
  types?: LinkType[];
32804
33136
  }, params?: RequestParams) => Promise<AxiosResponse<LinksListResponse, any, {}>>;
32805
33137
  /**
32806
- * @description Lists the available links.
33138
+ * @description Lists the available links. **Required scopes:** - `link:read` OR `link:write` OR `link:all`
32807
33139
  *
32808
33140
  * @tags links
32809
33141
  * @name LinksListPost
@@ -32813,7 +33145,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32813
33145
  */
32814
33146
  linksListPost: (data: LinksListRequest, params?: RequestParams) => Promise<AxiosResponse<LinksListResponse, any, {}>>;
32815
33147
  /**
32816
- * @description Replaces an existing link with a new one. This is useful when an object must always remain linked to a parent — for example, re-parenting an enhancement under a different capability or product part — because it avoids the intermediate unlinked (orphan) state that would otherwise occur if you deleted the old link and created a new one as two separate steps. The existing link identified by `id` is removed and a new link is created from `source` to `target`. Optionally, a different `link_type` or `custom_link_type` can be specified for the new link. For links between parts using a default (non-custom) link type, the replacement is performed atomically. For all other cases (custom link types or non-part endpoints), the replacement is performed as a non-atomic delete followed by a create; in these cases, the new link must have the same link type (or the same `custom_link_type` DON) as the existing link, and must share at least one of the source or target with the existing link, otherwise the request is rejected.
33148
+ * @description Replaces an existing link with a new one. This is useful when an object must always remain linked to a parent — for example, re-parenting an enhancement under a different capability or product part — because it avoids the intermediate unlinked (orphan) state that would otherwise occur if you deleted the old link and created a new one as two separate steps. The existing link identified by `id` is removed and a new link is created from `source` to `target`. Optionally, a different `link_type` or `custom_link_type` can be specified for the new link. For links between parts using a default (non-custom) link type, the replacement is performed atomically. For all other cases (custom link types or non-part endpoints), the replacement is performed as a non-atomic delete followed by a create; in these cases, the new link must have the same link type (or the same `custom_link_type` DON) as the existing link, and must share at least one of the source or target with the existing link, otherwise the request is rejected. **Required scopes:** - `link:write` OR `link:all` Also needs linked objects read access.
32817
33149
  *
32818
33150
  * @tags links
32819
33151
  * @name LinksReplace
@@ -32854,6 +33186,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32854
33186
  * @format id
32855
33187
  */
32856
33188
  marketplace?: string;
33189
+ /** Filters on marketplace item IDs for marketplace item features. */
33190
+ marketplace_item?: string[];
32857
33191
  /**
32858
33192
  * The iteration mode to use, otherwise if not set, then "after" is
32859
33193
  * used.
@@ -32891,7 +33225,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32891
33225
  */
32892
33226
  marketplaceItemsInstall: (data: MarketplaceItemsInstallRequest, params?: RequestParams) => Promise<AxiosResponse<MarketplaceItemsInstallResponse, any, {}>>;
32893
33227
  /**
32894
- * @description Counts the meeting records.
33228
+ * @description Counts the meeting records. **Required scopes:** - `meeting:read` OR `meeting:write` OR `meeting:all`
32895
33229
  *
32896
33230
  * @tags meetings
32897
33231
  * @name MeetingsCount
@@ -32964,7 +33298,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32964
33298
  tags?: string[];
32965
33299
  }, params?: RequestParams) => Promise<AxiosResponse<MeetingsCountResponse, any, {}>>;
32966
33300
  /**
32967
- * @description Counts the meeting records.
33301
+ * @description Counts the meeting records. **Required scopes:** - `meeting:read` OR `meeting:write` OR `meeting:all`
32968
33302
  *
32969
33303
  * @tags meetings
32970
33304
  * @name MeetingsCountPost
@@ -32974,7 +33308,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32974
33308
  */
32975
33309
  meetingsCountPost: (data: MeetingsCountRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsCountResponse, any, {}>>;
32976
33310
  /**
32977
- * @description Creates a new meeting record.
33311
+ * @description Creates a new meeting record. **Required scopes:** - `meeting:write` OR `meeting:all`
32978
33312
  *
32979
33313
  * @tags meetings
32980
33314
  * @name MeetingsCreate
@@ -32984,7 +33318,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
32984
33318
  */
32985
33319
  meetingsCreate: (data: MeetingsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsCreateResponse, any, {}>>;
32986
33320
  /**
32987
- * @description Deletes the meeting record.
33321
+ * @description Deletes the meeting record. **Required scopes:** - `meeting:all`
32988
33322
  *
32989
33323
  * @tags meetings
32990
33324
  * @name MeetingsDelete
@@ -33004,7 +33338,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33004
33338
  */
33005
33339
  meetingsExportAsync: (data: MeetingsExportAsyncRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsExportAsyncResponse, any, {}>>;
33006
33340
  /**
33007
- * @description Gets the meeting record.
33341
+ * @description Gets the meeting record. **Required scopes:** - `meeting:read` OR `meeting:write` OR `meeting:all`
33008
33342
  *
33009
33343
  * @tags meetings
33010
33344
  * @name MeetingsGet
@@ -33020,7 +33354,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33020
33354
  id: string;
33021
33355
  }, params?: RequestParams) => Promise<AxiosResponse<MeetingsGetResponse, any, {}>>;
33022
33356
  /**
33023
- * @description Gets the meeting record.
33357
+ * @description Gets the meeting record. **Required scopes:** - `meeting:read` OR `meeting:write` OR `meeting:all`
33024
33358
  *
33025
33359
  * @tags meetings
33026
33360
  * @name MeetingsGetPost
@@ -33030,7 +33364,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33030
33364
  */
33031
33365
  meetingsGetPost: (data: MeetingsGetRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsGetResponse, any, {}>>;
33032
33366
  /**
33033
- * @description Lists the meeting records.
33367
+ * @description Lists the meeting records. **Required scopes:** - `meeting:read` OR `meeting:write` OR `meeting:all`
33034
33368
  *
33035
33369
  * @tags meetings
33036
33370
  * @name MeetingsList
@@ -33121,7 +33455,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33121
33455
  tags?: string[];
33122
33456
  }, params?: RequestParams) => Promise<AxiosResponse<MeetingsListResponse, any, {}>>;
33123
33457
  /**
33124
- * @description Lists the meeting records.
33458
+ * @description Lists the meeting records. **Required scopes:** - `meeting:read` OR `meeting:write` OR `meeting:all`
33125
33459
  *
33126
33460
  * @tags meetings
33127
33461
  * @name MeetingsListPost
@@ -33131,7 +33465,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33131
33465
  */
33132
33466
  meetingsListPost: (data: MeetingsListRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsListResponse, any, {}>>;
33133
33467
  /**
33134
- * @description Updates the meeting record.
33468
+ * @description Updates the meeting record. **Required scopes:** - `meeting:write` OR `meeting:all`
33135
33469
  *
33136
33470
  * @tags meetings
33137
33471
  * @name MeetingsUpdate
@@ -33141,7 +33475,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33141
33475
  */
33142
33476
  meetingsUpdate: (data: MeetingsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsUpdateResponse, any, {}>>;
33143
33477
  /**
33144
- * @description Executes the metric action on the given object.
33478
+ * @description Executes the metric action on the given object. **Required scopes:** No scopes required.
33145
33479
  *
33146
33480
  * @tags slas
33147
33481
  * @name MetricActionExecute
@@ -33151,7 +33485,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33151
33485
  */
33152
33486
  metricActionExecute: (data: MetricActionExecuteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
33153
33487
  /**
33154
- * @description Creates a custom metric definition
33488
+ * @description Creates a custom metric definition **Required scopes:** - `metric_definition:write` OR `metric_definition:all`
33155
33489
  *
33156
33490
  * @tags slas
33157
33491
  * @name MetricDefinitionsCreate
@@ -33161,7 +33495,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33161
33495
  */
33162
33496
  metricDefinitionsCreate: (data: MetricDefinitionsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsCreateResponse, any, {}>>;
33163
33497
  /**
33164
- * @description Deletes a custom metric definition
33498
+ * @description Deletes a custom metric definition **Required scopes:** - `metric_definition:all`
33165
33499
  *
33166
33500
  * @tags slas
33167
33501
  * @name MetricDefinitionsDelete
@@ -33171,7 +33505,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33171
33505
  */
33172
33506
  metricDefinitionsDelete: (data: MetricDefinitionsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
33173
33507
  /**
33174
- * @description Gets a custom metric definition
33508
+ * @description Gets a custom metric definition **Required scopes:** - `metric_definition:read` OR `metric_definition:write` OR `metric_definition:all`
33175
33509
  *
33176
33510
  * @tags slas
33177
33511
  * @name MetricDefinitionsGet
@@ -33194,7 +33528,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33194
33528
  name?: string;
33195
33529
  }, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsGetResponse, any, {}>>;
33196
33530
  /**
33197
- * @description Gets a custom metric definition
33531
+ * @description Gets a custom metric definition **Required scopes:** - `metric_definition:read` OR `metric_definition:write` OR `metric_definition:all`
33198
33532
  *
33199
33533
  * @tags slas
33200
33534
  * @name MetricDefinitionsGetPost
@@ -33204,7 +33538,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33204
33538
  */
33205
33539
  metricDefinitionsGetPost: (data: MetricDefinitionsGetRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsGetResponse, any, {}>>;
33206
33540
  /**
33207
- * @description Lists metric definitions matching a filter.
33541
+ * @description Lists metric definitions matching a filter. **Required scopes:** - `metric_definition:read` OR `metric_definition:write` OR `metric_definition:all`
33208
33542
  *
33209
33543
  * @tags slas
33210
33544
  * @name MetricDefinitionsList
@@ -33244,7 +33578,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33244
33578
  type?: MetricDefinitionMetricType[];
33245
33579
  }, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsListResponse, any, {}>>;
33246
33580
  /**
33247
- * @description Lists metric definitions matching a filter.
33581
+ * @description Lists metric definitions matching a filter. **Required scopes:** - `metric_definition:read` OR `metric_definition:write` OR `metric_definition:all`
33248
33582
  *
33249
33583
  * @tags slas
33250
33584
  * @name MetricDefinitionsListPost
@@ -33254,7 +33588,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33254
33588
  */
33255
33589
  metricDefinitionsListPost: (data: MetricDefinitionsListRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsListResponse, any, {}>>;
33256
33590
  /**
33257
- * @description Updates a custom metric definition
33591
+ * @description Updates a custom metric definition **Required scopes:** - `metric_definition:write` OR `metric_definition:all`
33258
33592
  *
33259
33593
  * @tags slas
33260
33594
  * @name MetricDefinitionsUpdate
@@ -33264,7 +33598,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33264
33598
  */
33265
33599
  metricDefinitionsUpdate: (data: MetricDefinitionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsUpdateResponse, any, {}>>;
33266
33600
  /**
33267
- * @description Gets a metric tracker.
33601
+ * @description Gets a metric tracker. **Required scopes:** No scopes required.
33268
33602
  *
33269
33603
  * @tags slas
33270
33604
  * @name MetricTrackersGet
@@ -33285,7 +33619,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33285
33619
  object: string;
33286
33620
  }, params?: RequestParams) => Promise<AxiosResponse<MetricTrackersGetResponse, any, {}>>;
33287
33621
  /**
33288
- * @description Gets a metric tracker.
33622
+ * @description Gets a metric tracker. **Required scopes:** No scopes required.
33289
33623
  *
33290
33624
  * @tags slas
33291
33625
  * @name MetricTrackersGetPost
@@ -33379,7 +33713,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33379
33713
  */
33380
33714
  objectsListPost: (data: ObjectsListRequest, params?: RequestParams) => Promise<AxiosResponse<ObjectsListResponse, any, {}>>;
33381
33715
  /**
33382
- * @description Aggregates the sessions data.
33716
+ * @description Aggregates the sessions data. **Required scopes:** No scopes required.
33383
33717
  *
33384
33718
  * @tags observability
33385
33719
  * @name ObservabilitySessionsAggregate
@@ -33389,7 +33723,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33389
33723
  */
33390
33724
  observabilitySessionsAggregate: (data: ObservabilitySessionsAggregateRequest, params?: RequestParams) => Promise<AxiosResponse<ObservabilitySessionsAggregateResponse, any, {}>>;
33391
33725
  /**
33392
- * @description Retrieves the recording data for a specific session ID and recording ID. For mobile sessions, requires both session_id and recording_id. For web sessions, requires both session_id and tab_id.
33726
+ * @description Retrieves the recording data for a specific session ID and recording ID. For mobile sessions, requires both session_id and recording_id. For web sessions, requires both session_id and tab_id. **Required scopes:** No scopes required.
33393
33727
  *
33394
33728
  * @tags observability
33395
33729
  * @name ObservabilitySessionsDataGet
@@ -33423,7 +33757,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33423
33757
  tab_id?: string;
33424
33758
  }, params?: RequestParams) => Promise<AxiosResponse<ObservabilitySessionsDataGetResponse, any, {}>>;
33425
33759
  /**
33426
- * @description Retrieves the recording data for a specific session ID and recording ID. For mobile sessions, requires both session_id and recording_id. For web sessions, requires both session_id and tab_id.
33760
+ * @description Retrieves the recording data for a specific session ID and recording ID. For mobile sessions, requires both session_id and recording_id. For web sessions, requires both session_id and tab_id. **Required scopes:** No scopes required.
33427
33761
  *
33428
33762
  * @tags observability
33429
33763
  * @name ObservabilitySessionsDataGetPost
@@ -33433,7 +33767,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33433
33767
  */
33434
33768
  observabilitySessionsDataGetPost: (data: ObservabilitySessionsDataGetRequest, params?: RequestParams) => Promise<AxiosResponse<ObservabilitySessionsDataGetResponse, any, {}>>;
33435
33769
  /**
33436
- * @description Retrieves detailed console and network data for debugging.
33770
+ * @description Retrieves detailed console and network data for debugging. **Required scopes:** No scopes required.
33437
33771
  *
33438
33772
  * @tags observability
33439
33773
  * @name ObservabilitySessionsDeveloperInfoGet
@@ -33469,7 +33803,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33469
33803
  status_code_classes?: StatusCodeClass[];
33470
33804
  }, params?: RequestParams) => Promise<AxiosResponse<ObservabilitySessionsDeveloperInfoGetResponse, any, {}>>;
33471
33805
  /**
33472
- * @description Retrieves detailed console and network data for debugging.
33806
+ * @description Retrieves detailed console and network data for debugging. **Required scopes:** No scopes required.
33473
33807
  *
33474
33808
  * @tags observability
33475
33809
  * @name ObservabilitySessionsDeveloperInfoGetPost
@@ -33479,7 +33813,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33479
33813
  */
33480
33814
  observabilitySessionsDeveloperInfoGetPost: (data: ObservabilitySessionsDeveloperInfoGetRequest, params?: RequestParams) => Promise<AxiosResponse<ObservabilitySessionsDeveloperInfoGetResponse, any, {}>>;
33481
33815
  /**
33482
- * @description Gets a specific session metadata by ID.
33816
+ * @description Gets a specific session metadata by ID. **Required scopes:** No scopes required.
33483
33817
  *
33484
33818
  * @tags observability
33485
33819
  * @name ObservabilitySessionsGet
@@ -33504,7 +33838,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33504
33838
  version_key: string;
33505
33839
  }, params?: RequestParams) => Promise<AxiosResponse<ObservabilitySessionsGetResponse, any, {}>>;
33506
33840
  /**
33507
- * @description Gets a specific session metadata by ID.
33841
+ * @description Gets a specific session metadata by ID. **Required scopes:** No scopes required.
33508
33842
  *
33509
33843
  * @tags observability
33510
33844
  * @name ObservabilitySessionsGetPost
@@ -33514,7 +33848,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33514
33848
  */
33515
33849
  observabilitySessionsGetPost: (data: ObservabilitySessionsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ObservabilitySessionsGetResponse, any, {}>>;
33516
33850
  /**
33517
- * @description Lists sessions based on filter criteria.
33851
+ * @description Lists sessions based on filter criteria. **Required scopes:** No scopes required.
33518
33852
  *
33519
33853
  * @tags observability
33520
33854
  * @name ObservabilitySessionsList
@@ -33551,7 +33885,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33551
33885
  sort_by?: string[];
33552
33886
  }, params?: RequestParams) => Promise<AxiosResponse<ObservabilitySessionsListResponse, any, {}>>;
33553
33887
  /**
33554
- * @description Lists sessions based on filter criteria.
33888
+ * @description Lists sessions based on filter criteria. **Required scopes:** No scopes required.
33555
33889
  *
33556
33890
  * @tags observability
33557
33891
  * @name ObservabilitySessionsListPost
@@ -33561,7 +33895,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33561
33895
  */
33562
33896
  observabilitySessionsListPost: (data: ObservabilitySessionsListRequest, params?: RequestParams) => Promise<AxiosResponse<ObservabilitySessionsListResponse, any, {}>>;
33563
33897
  /**
33564
- * @description Creates an organization schedule fragment.
33898
+ * @description Creates an organization schedule fragment. **Required scopes:** - `org_schedule_fragment:write` OR `org_schedule_fragment:all`
33565
33899
  *
33566
33900
  * @tags schedules
33567
33901
  * @name OrgScheduleFragmentsCreate
@@ -33571,7 +33905,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33571
33905
  */
33572
33906
  orgScheduleFragmentsCreate: (data: OrgScheduleFragmentsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsCreateResponse, any, {}>>;
33573
33907
  /**
33574
- * @description Gets an organization schedule fragment.
33908
+ * @description Gets an organization schedule fragment. **Required scopes:** - `org_schedule_fragment:read` OR `org_schedule_fragment:write` OR `org_schedule_fragment:all`
33575
33909
  *
33576
33910
  * @tags schedules
33577
33911
  * @name OrgScheduleFragmentsGet
@@ -33587,7 +33921,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33587
33921
  id: string;
33588
33922
  }, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsGetResponse, any, {}>>;
33589
33923
  /**
33590
- * @description Gets an organization schedule fragment.
33924
+ * @description Gets an organization schedule fragment. **Required scopes:** - `org_schedule_fragment:read` OR `org_schedule_fragment:write` OR `org_schedule_fragment:all`
33591
33925
  *
33592
33926
  * @tags schedules
33593
33927
  * @name OrgScheduleFragmentsGetPost
@@ -33597,7 +33931,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33597
33931
  */
33598
33932
  orgScheduleFragmentsGetPost: (data: OrgScheduleFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsGetResponse, any, {}>>;
33599
33933
  /**
33600
- * @description Changes stage of an organization schedule fragment.
33934
+ * @description Changes stage of an organization schedule fragment. **Required scopes:** - `org_schedule_fragment:write` OR `org_schedule_fragment:all`
33601
33935
  *
33602
33936
  * @tags schedules
33603
33937
  * @name OrgScheduleFragmentsTransition
@@ -33607,7 +33941,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33607
33941
  */
33608
33942
  orgScheduleFragmentsTransition: (data: OrgScheduleFragmentsTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsTransitionResponse, any, {}>>;
33609
33943
  /**
33610
- * @description Creates an organization schedule with a default weekly organization schedule and a list of organization schedule fragments.
33944
+ * @description Creates an organization schedule with a default weekly organization schedule and a list of organization schedule fragments. **Required scopes:** - `org_schedule:write` OR `org_schedule:all`
33611
33945
  *
33612
33946
  * @tags schedules
33613
33947
  * @name OrgSchedulesCreate
@@ -33617,7 +33951,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33617
33951
  */
33618
33952
  orgSchedulesCreate: (data: OrgSchedulesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesCreateResponse, any, {}>>;
33619
33953
  /**
33620
- * @description Evaluates an organization's schedule at specified instants.
33954
+ * @description Evaluates an organization's schedule at specified instants. **Required scopes:** - `org_schedule:read` OR `org_schedule:write` OR `org_schedule:all`
33621
33955
  *
33622
33956
  * @tags schedules
33623
33957
  * @name OrgSchedulesEvaluate
@@ -33639,7 +33973,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33639
33973
  instants: string[];
33640
33974
  }, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesEvaluateResponse, any, {}>>;
33641
33975
  /**
33642
- * @description Evaluates an organization's schedule at specified instants.
33976
+ * @description Evaluates an organization's schedule at specified instants. **Required scopes:** - `org_schedule:read` OR `org_schedule:write` OR `org_schedule:all`
33643
33977
  *
33644
33978
  * @tags schedules
33645
33979
  * @name OrgSchedulesEvaluatePost
@@ -33649,7 +33983,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33649
33983
  */
33650
33984
  orgSchedulesEvaluatePost: (data: OrgSchedulesEvaluateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesEvaluateResponse, any, {}>>;
33651
33985
  /**
33652
- * @description Gets an organization schedule.
33986
+ * @description Gets an organization schedule. **Required scopes:** - `org_schedule:read` OR `org_schedule:write` OR `org_schedule:all`
33653
33987
  *
33654
33988
  * @tags schedules
33655
33989
  * @name OrgSchedulesGet
@@ -33671,7 +34005,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33671
34005
  version_number?: number;
33672
34006
  }, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesGetResponse, any, {}>>;
33673
34007
  /**
33674
- * @description Gets an organization schedule.
34008
+ * @description Gets an organization schedule. **Required scopes:** - `org_schedule:read` OR `org_schedule:write` OR `org_schedule:all`
33675
34009
  *
33676
34010
  * @tags schedules
33677
34011
  * @name OrgSchedulesGetPost
@@ -33681,7 +34015,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33681
34015
  */
33682
34016
  orgSchedulesGetPost: (data: OrgSchedulesGetRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesGetResponse, any, {}>>;
33683
34017
  /**
33684
- * @description Gets list of organization schedules.
34018
+ * @description Gets list of organization schedules. **Required scopes:** - `org_schedule:read` OR `org_schedule:write` OR `org_schedule:all`
33685
34019
  *
33686
34020
  * @tags schedules
33687
34021
  * @name OrgSchedulesList
@@ -33713,7 +34047,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33713
34047
  status?: OrgScheduleStatus[];
33714
34048
  }, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesListResponse, any, {}>>;
33715
34049
  /**
33716
- * @description Gets list of organization schedules.
34050
+ * @description Gets list of organization schedules. **Required scopes:** - `org_schedule:read` OR `org_schedule:write` OR `org_schedule:all`
33717
34051
  *
33718
34052
  * @tags schedules
33719
34053
  * @name OrgSchedulesListPost
@@ -33723,7 +34057,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33723
34057
  */
33724
34058
  orgSchedulesListPost: (data: OrgSchedulesListRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesListResponse, any, {}>>;
33725
34059
  /**
33726
- * @description Sets next organization schedule fragment which must begin the day the last existing fragment ends.
34060
+ * @description Sets next organization schedule fragment which must begin the day the last existing fragment ends. **Required scopes:** - `org_schedule:write` OR `org_schedule:all`
33727
34061
  *
33728
34062
  * @tags schedules
33729
34063
  * @name OrgSchedulesSetFuture
@@ -33733,7 +34067,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33733
34067
  */
33734
34068
  orgSchedulesSetFuture: (data: OrgSchedulesSetFutureRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesSetFutureResponse, any, {}>>;
33735
34069
  /**
33736
- * @description Publishes or archives an organization schedule.
34070
+ * @description Publishes or archives an organization schedule. **Required scopes:** - `org_schedule:write` OR `org_schedule:all`
33737
34071
  *
33738
34072
  * @tags schedules
33739
34073
  * @name OrgSchedulesTransition
@@ -33743,7 +34077,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33743
34077
  */
33744
34078
  orgSchedulesTransition: (data: OrgSchedulesTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesTransitionResponse, any, {}>>;
33745
34079
  /**
33746
- * @description Updates an organization schedule.
34080
+ * @description Updates an organization schedule. **Required scopes:** - `org_schedule:write` OR `org_schedule:all`
33747
34081
  *
33748
34082
  * @tags schedules
33749
34083
  * @name OrgSchedulesUpdate
@@ -33753,7 +34087,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33753
34087
  */
33754
34088
  orgSchedulesUpdate: (data: OrgSchedulesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesUpdateResponse, any, {}>>;
33755
34089
  /**
33756
- * @description Creates new [part](https://devrev.ai/docs/product/parts).
34090
+ * @description Creates new [part](https://devrev.ai/docs/product/parts). **Required scopes:** Depends on the object type in the `type` field: | type | required scope | |---|---| | capability | `capability:write` OR `capability:all` | | enhancement | `enhancement:write` OR `enhancement:all` | | feature | `feature:write` OR `feature:all` | | product | `product:write` OR `product:all` |
33757
34091
  *
33758
34092
  * @tags parts
33759
34093
  * @name PartsCreate
@@ -33763,7 +34097,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33763
34097
  */
33764
34098
  partsCreate: (data: PartsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<PartsCreateResponse, any, {}>>;
33765
34099
  /**
33766
- * @description Deletes a [part](https://devrev.ai/docs/product/parts).
34100
+ * @description Deletes a [part](https://devrev.ai/docs/product/parts). **Required scopes:** Depends on the object type in the `id` field: | type | required scope | |---|---| | capability | `capability:all` | | enhancement | `enhancement:all` | | feature | `feature:all` | | product | `product:all` |
33767
34101
  *
33768
34102
  * @tags parts
33769
34103
  * @name PartsDelete
@@ -33773,7 +34107,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33773
34107
  */
33774
34108
  partsDelete: (data: PartsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
33775
34109
  /**
33776
- * @description Gets a [part's](https://devrev.ai/docs/product/parts) information.
34110
+ * @description Gets a [part's](https://devrev.ai/docs/product/parts) information. **Required scopes:** Depends on the object type in the `id` field: | type | required scope | |---|---| | capability | `capability:read` OR `capability:write` OR `capability:all` | | enhancement | `enhancement:read` OR `enhancement:write` OR `enhancement:all` | | feature | `feature:read` OR `feature:write` OR `feature:all` | | product | `product:read` OR `product:write` OR `product:all` |
33777
34111
  *
33778
34112
  * @tags parts
33779
34113
  * @name PartsGet
@@ -33790,7 +34124,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33790
34124
  id: string;
33791
34125
  }, params?: RequestParams) => Promise<AxiosResponse<PartsGetResponse, any, {}>>;
33792
34126
  /**
33793
- * @description Gets a [part's](https://devrev.ai/docs/product/parts) information.
34127
+ * @description Gets a [part's](https://devrev.ai/docs/product/parts) information. **Required scopes:** Depends on the object type in the `id` field: | type | required scope | |---|---| | capability | `capability:read` OR `capability:write` OR `capability:all` | | enhancement | `enhancement:read` OR `enhancement:write` OR `enhancement:all` | | feature | `feature:read` OR `feature:write` OR `feature:all` | | product | `product:read` OR `product:write` OR `product:all` |
33794
34128
  *
33795
34129
  * @tags parts
33796
34130
  * @name PartsGetPost
@@ -33800,7 +34134,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33800
34134
  */
33801
34135
  partsGetPost: (data: PartsGetRequest, params?: RequestParams) => Promise<AxiosResponse<PartsGetResponse, any, {}>>;
33802
34136
  /**
33803
- * @description Lists a collection of [parts](https://devrev.ai/docs/product/parts).
34137
+ * @description Lists a collection of [parts](https://devrev.ai/docs/product/parts). **Required scopes:** Depends on the object type in the `id` field: | type | required scope | |---|---| | capability | `capability:read` OR `capability:write` OR `capability:all` | | enhancement | `enhancement:read` OR `enhancement:write` OR `enhancement:all` | | feature | `feature:read` OR `feature:write` OR `feature:all` | | product | `product:read` OR `product:write` OR `product:all` |
33804
34138
  *
33805
34139
  * @tags parts
33806
34140
  * @name PartsList
@@ -33981,7 +34315,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33981
34315
  type?: PartType[];
33982
34316
  }, params?: RequestParams) => Promise<AxiosResponse<PartsListResponse, any, {}>>;
33983
34317
  /**
33984
- * @description Lists a collection of [parts](https://devrev.ai/docs/product/parts).
34318
+ * @description Lists a collection of [parts](https://devrev.ai/docs/product/parts). **Required scopes:** Depends on the object type in the `id` field: | type | required scope | |---|---| | capability | `capability:read` OR `capability:write` OR `capability:all` | | enhancement | `enhancement:read` OR `enhancement:write` OR `enhancement:all` | | feature | `feature:read` OR `feature:write` OR `feature:all` | | product | `product:read` OR `product:write` OR `product:all` |
33985
34319
  *
33986
34320
  * @tags parts
33987
34321
  * @name PartsListPost
@@ -33991,7 +34325,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
33991
34325
  */
33992
34326
  partsListPost: (data: PartsListRequest, params?: RequestParams) => Promise<AxiosResponse<PartsListResponse, any, {}>>;
33993
34327
  /**
33994
- * @description Updates a [part's](https://devrev.ai/docs/product/parts) information.
34328
+ * @description Updates a [part's](https://devrev.ai/docs/product/parts) information. **Required scopes:** Depends on the object type in the `type` field: | type | required scope | |---|---| | capability | `capability:write` OR `capability:all` | | enhancement | `enhancement:write` OR `enhancement:all` | | feature | `feature:write` OR `feature:all` | | product | `product:write` OR `product:all` |
33995
34329
  *
33996
34330
  * @tags parts
33997
34331
  * @name PartsUpdate
@@ -34185,7 +34519,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
34185
34519
  */
34186
34520
  updateQuestionAnswer: (data: QuestionAnswersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersUpdateResponse, any, {}>>;
34187
34521
  /**
34188
- * @description Lists the reactors for an object.
34522
+ * @description Lists the reactors for an object. **Required scopes:** Requires the read or write scope of the parent object's type (e.g. issue:write when posting to an issue's timeline).
34189
34523
  *
34190
34524
  * @tags timeline-entries, works
34191
34525
  * @name ReactionsList
@@ -34220,7 +34554,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
34220
34554
  limit?: number;
34221
34555
  }, params?: RequestParams) => Promise<AxiosResponse<ReactionsListResponse, any, {}>>;
34222
34556
  /**
34223
- * @description Lists the reactors for an object.
34557
+ * @description Lists the reactors for an object. **Required scopes:** Requires the read or write scope of the parent object's type (e.g. issue:write when posting to an issue's timeline).
34224
34558
  *
34225
34559
  * @tags timeline-entries, works
34226
34560
  * @name ReactionsListPost
@@ -34230,7 +34564,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
34230
34564
  */
34231
34565
  reactionsListPost: (data: ReactionsListRequest, params?: RequestParams) => Promise<AxiosResponse<ReactionsListResponse, any, {}>>;
34232
34566
  /**
34233
- * @description Updates a reaction for an object.
34567
+ * @description Updates a reaction for an object. **Required scopes:** Requires the read or write scope of the parent object's type (e.g. issue:write when posting to an issue's timeline).
34234
34568
  *
34235
34569
  * @tags timeline-entries, works
34236
34570
  * @name ReactionsUpdate
@@ -34286,7 +34620,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
34286
34620
  */
34287
34621
  recordTemplateGetPost: (data: RecordTemplateGetRequest, params?: RequestParams) => Promise<AxiosResponse<RecordTemplateGetResponse, any, {}>>;
34288
34622
  /**
34289
- * @description Creates a Rev organization in the authenticated user's Dev organization. **Required scopes:** - `rev_org:write`
34623
+ * @description Creates a Rev organization in the authenticated user's Dev organization. **Required scopes:** - `rev_org:write` OR `rev_org:all`
34290
34624
  *
34291
34625
  * @tags rev-orgs
34292
34626
  * @name RevOrgsCreate
@@ -34306,7 +34640,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
34306
34640
  */
34307
34641
  revOrgsDelete: (data: RevOrgsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
34308
34642
  /**
34309
- * @description Retrieves the Rev organization's information. **Required scopes:** - `rev_org:read`
34643
+ * @description Retrieves the Rev organization's information. **Required scopes:** - `rev_org:read` OR `rev_org:write` OR `rev_org:all`
34310
34644
  *
34311
34645
  * @tags rev-orgs
34312
34646
  * @name RevOrgsGet
@@ -34330,7 +34664,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
34330
34664
  id?: string;
34331
34665
  }, params?: RequestParams) => Promise<AxiosResponse<RevOrgsGetResponse, any, {}>>;
34332
34666
  /**
34333
- * @description Retrieves the Rev organization's information. **Required scopes:** - `rev_org:read`
34667
+ * @description Retrieves the Rev organization's information. **Required scopes:** - `rev_org:read` OR `rev_org:write` OR `rev_org:all`
34334
34668
  *
34335
34669
  * @tags rev-orgs
34336
34670
  * @name RevOrgsGetPost
@@ -34340,7 +34674,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
34340
34674
  */
34341
34675
  revOrgsGetPost: (data: RevOrgsGetRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsGetResponse, any, {}>>;
34342
34676
  /**
34343
- * @description Gets the list of Rev organizations' information belonging to the authenticated user's Dev Organization which the user is also authorized to access. **Required scopes:** - `rev_org:read`
34677
+ * @description Gets the list of Rev organizations' information belonging to the authenticated user's Dev Organization which the user is also authorized to access. **Required scopes:** - `rev_org:read` OR `rev_org:write` OR `rev_org:all`
34344
34678
  *
34345
34679
  * @tags rev-orgs
34346
34680
  * @name RevOrgsList
@@ -34418,7 +34752,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
34418
34752
  tags?: string[];
34419
34753
  }, params?: RequestParams) => Promise<AxiosResponse<RevOrgsListResponse, any, {}>>;
34420
34754
  /**
34421
- * @description Gets the list of Rev organizations' information belonging to the authenticated user's Dev Organization which the user is also authorized to access. **Required scopes:** - `rev_org:read`
34755
+ * @description Gets the list of Rev organizations' information belonging to the authenticated user's Dev Organization which the user is also authorized to access. **Required scopes:** - `rev_org:read` OR `rev_org:write` OR `rev_org:all`
34422
34756
  *
34423
34757
  * @tags rev-orgs
34424
34758
  * @name RevOrgsListPost
@@ -34428,7 +34762,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
34428
34762
  */
34429
34763
  revOrgsListPost: (data: RevOrgsListRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsListResponse, any, {}>>;
34430
34764
  /**
34431
- * @description Updates the Rev organization's information. **Required scopes:** - `rev_org:write`
34765
+ * @description Updates the Rev organization's information. **Required scopes:** - `rev_org:write` OR `rev_org:all`
34432
34766
  *
34433
34767
  * @tags rev-orgs
34434
34768
  * @name RevOrgsUpdate
@@ -34501,7 +34835,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
34501
34835
  */
34502
34836
  revUsersAssociationsRemove: (data: RevUsersAssociationsRemoveRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
34503
34837
  /**
34504
- * @description Creates a Rev user for a Rev organization. Rev user can be a customer or a lead of an organization. **Required scopes:** - `rev_user:write`
34838
+ * @description Creates a Rev user for a Rev organization. Rev user can be a customer or a lead of an organization. **Required scopes:** - `rev_user:write` OR `rev_user:all`
34505
34839
  *
34506
34840
  * @tags rev-users
34507
34841
  * @name RevUsersCreate
@@ -34531,7 +34865,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
34531
34865
  */
34532
34866
  deleteRevUsersPersonalData: (data: DeleteRevUsersPersonalDataRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
34533
34867
  /**
34534
- * @description Returns the Rev user of a Rev organization by its ID. **Required scopes:** - `rev_user:read`
34868
+ * @description Returns the Rev user of a Rev organization by its ID. **Required scopes:** - `rev_user:read` OR `rev_user:write` OR `rev_user:all`
34535
34869
  *
34536
34870
  * @tags rev-users
34537
34871
  * @name RevUsersGet
@@ -34547,7 +34881,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
34547
34881
  id: string;
34548
34882
  }, params?: RequestParams) => Promise<AxiosResponse<RevUsersGetResponse, any, {}>>;
34549
34883
  /**
34550
- * @description Returns the Rev user of a Rev organization by its ID. **Required scopes:** - `rev_user:read`
34884
+ * @description Returns the Rev user of a Rev organization by its ID. **Required scopes:** - `rev_user:read` OR `rev_user:write` OR `rev_user:all`
34551
34885
  *
34552
34886
  * @tags rev-users
34553
34887
  * @name RevUsersGetPost
@@ -34568,7 +34902,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
34568
34902
  */
34569
34903
  linkRevUserToRevOrg: (data: LinkRevUserToRevOrgRequest, params?: RequestParams) => Promise<AxiosResponse<LinkRevUserToRevOrgResponse, any, {}>>;
34570
34904
  /**
34571
- * @description Returns a list of all Rev Users belonging to the authenticated user's Dev organization. **Required scopes:** - `rev_user:read`
34905
+ * @description Returns a list of all Rev Users belonging to the authenticated user's Dev organization. **Required scopes:** - `rev_user:read` OR `rev_user:write` OR `rev_user:all`
34572
34906
  *
34573
34907
  * @tags rev-users
34574
34908
  * @name RevUsersList
@@ -34649,7 +34983,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
34649
34983
  tags?: string[];
34650
34984
  }, params?: RequestParams) => Promise<AxiosResponse<RevUsersListResponse, any, {}>>;
34651
34985
  /**
34652
- * @description Returns a list of all Rev Users belonging to the authenticated user's Dev organization. **Required scopes:** - `rev_user:read`
34986
+ * @description Returns a list of all Rev Users belonging to the authenticated user's Dev organization. **Required scopes:** - `rev_user:read` OR `rev_user:write` OR `rev_user:all`
34653
34987
  *
34654
34988
  * @tags rev-users
34655
34989
  * @name RevUsersListPost
@@ -34679,7 +35013,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
34679
35013
  */
34680
35014
  getRevUsersPersonalData: (data: GetRevUsersPersonalDataRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
34681
35015
  /**
34682
- * @description Scans through all Rev users. **Required scopes:** - `rev_user:read`
35016
+ * @description Scans through all Rev users. **Required scopes:** - `rev_user:read` OR `rev_user:write` OR `rev_user:all`
34683
35017
  *
34684
35018
  * @tags rev-users
34685
35019
  * @name RevUsersScan
@@ -34748,7 +35082,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
34748
35082
  tags?: string[];
34749
35083
  }, params?: RequestParams) => Promise<AxiosResponse<RevUsersScanResponse, any, {}>>;
34750
35084
  /**
34751
- * @description Scans through all Rev users. **Required scopes:** - `rev_user:read`
35085
+ * @description Scans through all Rev users. **Required scopes:** - `rev_user:read` OR `rev_user:write` OR `rev_user:all`
34752
35086
  *
34753
35087
  * @tags rev-users
34754
35088
  * @name RevUsersScanPost
@@ -34769,7 +35103,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
34769
35103
  */
34770
35104
  unlinkRevUserFromRevOrg: (data: UnlinkRevUserFromRevOrgRequest, params?: RequestParams) => Promise<AxiosResponse<UnlinkRevUserFromRevOrgResponse, any, {}>>;
34771
35105
  /**
34772
- * @description Updates a Rev user. **Required scopes:** - `rev_user:write`
35106
+ * @description Updates a Rev user. **Required scopes:** - `rev_user:write` OR `rev_user:all`
34773
35107
  *
34774
35108
  * @tags rev-users
34775
35109
  * @name RevUsersUpdate
@@ -34800,7 +35134,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
34800
35134
  */
34801
35135
  rolesCreate: (data: RolesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RolesCreateResponse, any, {}>>;
34802
35136
  /**
34803
- * @description Gets the aggregated schema.
35137
+ * @description Gets the aggregated schema. **Required scopes:** No scopes required.
34804
35138
  *
34805
35139
  * @tags customization
34806
35140
  * @name AggregatedSchemaGet
@@ -34833,7 +35167,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
34833
35167
  stock_schema_fragment?: string;
34834
35168
  }, params?: RequestParams) => Promise<AxiosResponse<AggregatedSchemaGetResponse, any, {}>>;
34835
35169
  /**
34836
- * @description Gets the aggregated schema.
35170
+ * @description Gets the aggregated schema. **Required scopes:** No scopes required.
34837
35171
  *
34838
35172
  * @tags customization
34839
35173
  * @name AggregatedSchemaGetPost
@@ -34843,7 +35177,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
34843
35177
  */
34844
35178
  aggregatedSchemaGetPost: (data: AggregatedSchemaGetRequest, params?: RequestParams) => Promise<AxiosResponse<AggregatedSchemaGetResponse, any, {}>>;
34845
35179
  /**
34846
- * @description Gets a custom schema fragment.
35180
+ * @description Gets a custom schema fragment. **Required scopes:** No scopes required.
34847
35181
  *
34848
35182
  * @tags customization
34849
35183
  * @name CustomSchemaFragmentsGet
@@ -34861,7 +35195,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
34861
35195
  include_sync_metadata?: boolean;
34862
35196
  }, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsGetResponse, any, {}>>;
34863
35197
  /**
34864
- * @description Gets a custom schema fragment.
35198
+ * @description Gets a custom schema fragment. **Required scopes:** No scopes required.
34865
35199
  *
34866
35200
  * @tags customization
34867
35201
  * @name CustomSchemaFragmentsGetPost
@@ -34871,7 +35205,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
34871
35205
  */
34872
35206
  customSchemaFragmentsGetPost: (data: CustomSchemaFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsGetResponse, any, {}>>;
34873
35207
  /**
34874
- * @description Lists custom schema fragments.
35208
+ * @description Lists custom schema fragments. **Required scopes:** No scopes required.
34875
35209
  *
34876
35210
  * @tags customization
34877
35211
  * @name CustomSchemaFragmentsList
@@ -34934,7 +35268,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
34934
35268
  types?: CustomSchemaFragmentType[];
34935
35269
  }, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsListResponse, any, {}>>;
34936
35270
  /**
34937
- * @description Lists custom schema fragments.
35271
+ * @description Lists custom schema fragments. **Required scopes:** No scopes required.
34938
35272
  *
34939
35273
  * @tags customization
34940
35274
  * @name CustomSchemaFragmentsListPost
@@ -34944,7 +35278,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
34944
35278
  */
34945
35279
  customSchemaFragmentsListPost: (data: CustomSchemaFragmentsListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsListResponse, any, {}>>;
34946
35280
  /**
34947
- * @description Creates or updates a custom schema fragment.
35281
+ * @description Creates or updates a custom schema fragment. **Required scopes:** - `custom_type_fragment:write`
34948
35282
  *
34949
35283
  * @tags customization
34950
35284
  * @name CustomSchemaFragmentsSet
@@ -34954,7 +35288,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
34954
35288
  */
34955
35289
  customSchemaFragmentsSet: (data: CustomSchemaFragmentsSetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsSetResponse, any, {}>>;
34956
35290
  /**
34957
- * @description Gets a stock schema fragment.
35291
+ * @description Gets a stock schema fragment. **Required scopes:** No scopes required.
34958
35292
  *
34959
35293
  * @tags customization
34960
35294
  * @name StockSchemaFragmentsGet
@@ -34975,7 +35309,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
34975
35309
  leaf_type?: string;
34976
35310
  }, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsGetResponse, any, {}>>;
34977
35311
  /**
34978
- * @description Gets a stock schema fragment.
35312
+ * @description Gets a stock schema fragment. **Required scopes:** No scopes required.
34979
35313
  *
34980
35314
  * @tags customization
34981
35315
  * @name StockSchemaFragmentsGetPost
@@ -34985,7 +35319,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
34985
35319
  */
34986
35320
  stockSchemaFragmentsGetPost: (data: StockSchemaFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsGetResponse, any, {}>>;
34987
35321
  /**
34988
- * @description Lists stock schema fragments.
35322
+ * @description Lists stock schema fragments. **Required scopes:** No scopes required.
34989
35323
  *
34990
35324
  * @tags customization
34991
35325
  * @name StockSchemaFragmentsList
@@ -35026,7 +35360,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35026
35360
  sort_by?: string[];
35027
35361
  }, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsListResponse, any, {}>>;
35028
35362
  /**
35029
- * @description Lists stock schema fragments.
35363
+ * @description Lists stock schema fragments. **Required scopes:** No scopes required.
35030
35364
  *
35031
35365
  * @tags customization
35032
35366
  * @name StockSchemaFragmentsListPost
@@ -35065,7 +35399,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35065
35399
  */
35066
35400
  subtypesListPost: (data: SubtypesListRequest, params?: RequestParams) => Promise<AxiosResponse<SubtypesListResponse, any, {}>>;
35067
35401
  /**
35068
- * @description Gets the new fragment IDs and fields resulting from changing a subtype.
35402
+ * @description Gets the new fragment IDs and fields resulting from changing a subtype. **Required scopes:** - `custom_type_fragment:write`
35069
35403
  *
35070
35404
  * @tags customization
35071
35405
  * @name SchemasSubtypePrepareUpdateGet
@@ -35167,7 +35501,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35167
35501
  */
35168
35502
  searchHybridPost: (data: SearchHybridRequest, params?: RequestParams) => Promise<AxiosResponse<SearchHybridResponse, any, {}>>;
35169
35503
  /**
35170
- * @description Creates a service account.
35504
+ * @description Creates a service account. **Required scopes:** Not accessible via service account tokens. Requires user authentication.
35171
35505
  *
35172
35506
  * @tags service-accounts
35173
35507
  * @name ServiceAccountsCreate
@@ -35177,7 +35511,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35177
35511
  */
35178
35512
  serviceAccountsCreate: (data: ServiceAccountsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsCreateResponse, any, {}>>;
35179
35513
  /**
35180
- * @description Gets a service account.
35514
+ * @description Gets a service account. **Required scopes:** - `svcacc:read`
35181
35515
  *
35182
35516
  * @tags service-accounts
35183
35517
  * @name ServiceAccountsGet
@@ -35193,7 +35527,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35193
35527
  id: string;
35194
35528
  }, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsGetResponse, any, {}>>;
35195
35529
  /**
35196
- * @description Gets a service account.
35530
+ * @description Gets a service account. **Required scopes:** - `svcacc:read`
35197
35531
  *
35198
35532
  * @tags service-accounts
35199
35533
  * @name ServiceAccountsGetPost
@@ -35213,7 +35547,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35213
35547
  */
35214
35548
  serviceAccountsUpdate: (data: ServiceAccountsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsUpdateResponse, any, {}>>;
35215
35549
  /**
35216
- * @description Gets an SLA tracker.
35550
+ * @description Gets an SLA tracker. **Required scopes:** No scopes required.
35217
35551
  *
35218
35552
  * @tags slas
35219
35553
  * @name SlaTrackersGet
@@ -35229,7 +35563,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35229
35563
  id: string;
35230
35564
  }, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersGetResponse, any, {}>>;
35231
35565
  /**
35232
- * @description Gets an SLA tracker.
35566
+ * @description Gets an SLA tracker. **Required scopes:** No scopes required.
35233
35567
  *
35234
35568
  * @tags slas
35235
35569
  * @name SlaTrackersGetPost
@@ -35239,7 +35573,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35239
35573
  */
35240
35574
  slaTrackersGetPost: (data: SlaTrackersGetRequest, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersGetResponse, any, {}>>;
35241
35575
  /**
35242
- * @description Lists SLA trackers matching a filter.
35576
+ * @description Lists SLA trackers matching a filter. **Required scopes:** No scopes required.
35243
35577
  *
35244
35578
  * @tags slas
35245
35579
  * @name SlaTrackersList
@@ -35298,7 +35632,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35298
35632
  status?: string[];
35299
35633
  }, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersListResponse, any, {}>>;
35300
35634
  /**
35301
- * @description Lists SLA trackers matching a filter.
35635
+ * @description Lists SLA trackers matching a filter. **Required scopes:** No scopes required.
35302
35636
  *
35303
35637
  * @tags slas
35304
35638
  * @name SlaTrackersListPost
@@ -35318,7 +35652,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35318
35652
  */
35319
35653
  slaTrackersRemoveMetric: (data: SlaTrackersRemoveMetricRequest, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersRemoveMetricResponse, any, {}>>;
35320
35654
  /**
35321
- * @description Assigns the SLA to a set of Rev organizations.
35655
+ * @description Assigns the SLA to a set of Rev organizations. **Required scopes:** - `sla:write`
35322
35656
  *
35323
35657
  * @tags slas
35324
35658
  * @name SlasAssign
@@ -35328,7 +35662,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35328
35662
  */
35329
35663
  slasAssign: (data: SlasAssignRequest, params?: RequestParams) => Promise<AxiosResponse<SlasAssignResponse, any, {}>>;
35330
35664
  /**
35331
- * @description Creates an SLA in draft status.
35665
+ * @description Creates an SLA in draft status. **Required scopes:** - `sla:write`
35332
35666
  *
35333
35667
  * @tags slas
35334
35668
  * @name SlasCreate
@@ -35338,7 +35672,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35338
35672
  */
35339
35673
  slasCreate: (data: SlasCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SlasCreateResponse, any, {}>>;
35340
35674
  /**
35341
- * @description Gets an SLA.
35675
+ * @description Gets an SLA. **Required scopes:** - `sla:read` OR `sla:write`
35342
35676
  *
35343
35677
  * @tags slas
35344
35678
  * @name SlasGet
@@ -35354,7 +35688,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35354
35688
  id: string;
35355
35689
  }, params?: RequestParams) => Promise<AxiosResponse<SlasGetResponse, any, {}>>;
35356
35690
  /**
35357
- * @description Gets an SLA.
35691
+ * @description Gets an SLA. **Required scopes:** - `sla:read` OR `sla:write`
35358
35692
  *
35359
35693
  * @tags slas
35360
35694
  * @name SlasGetPost
@@ -35364,7 +35698,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35364
35698
  */
35365
35699
  slasGetPost: (data: SlasGetRequest, params?: RequestParams) => Promise<AxiosResponse<SlasGetResponse, any, {}>>;
35366
35700
  /**
35367
- * @description Lists SLAs matching a filter.
35701
+ * @description Lists SLAs matching a filter. **Required scopes:** - `sla:read` OR `sla:write`
35368
35702
  *
35369
35703
  * @tags slas
35370
35704
  * @name SlasList
@@ -35404,7 +35738,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35404
35738
  status?: SlaStatus[];
35405
35739
  }, params?: RequestParams) => Promise<AxiosResponse<SlasListResponse, any, {}>>;
35406
35740
  /**
35407
- * @description Lists SLAs matching a filter.
35741
+ * @description Lists SLAs matching a filter. **Required scopes:** - `sla:read` OR `sla:write`
35408
35742
  *
35409
35743
  * @tags slas
35410
35744
  * @name SlasListPost
@@ -35414,7 +35748,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35414
35748
  */
35415
35749
  slasListPost: (data: SlasListRequest, params?: RequestParams) => Promise<AxiosResponse<SlasListResponse, any, {}>>;
35416
35750
  /**
35417
- * @description Changes the status of an SLA.
35751
+ * @description Changes the status of an SLA. **Required scopes:** - `sla:write`
35418
35752
  *
35419
35753
  * @tags slas
35420
35754
  * @name SlasTransition
@@ -35424,7 +35758,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35424
35758
  */
35425
35759
  slasTransition: (data: SlasTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<SlasTransitionResponse, any, {}>>;
35426
35760
  /**
35427
- * @description Updates a draft SLA.
35761
+ * @description Updates a draft SLA. **Required scopes:** - `sla:write`
35428
35762
  *
35429
35763
  * @tags slas
35430
35764
  * @name SlasUpdate
@@ -35529,7 +35863,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35529
35863
  */
35530
35864
  snapInsUpdate: (data: SnapInsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SnapInsUpdateResponse, any, {}>>;
35531
35865
  /**
35532
- * @description Executes deferred snap-kit actions.
35866
+ * @description Executes deferred snap-kit actions. **Required scopes:** - `snap_widget:write` OR `snap_widget:all`
35533
35867
  *
35534
35868
  * @tags snap-kit-execution
35535
35869
  * @name SnapKitActionExecuteDeferred
@@ -35539,7 +35873,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35539
35873
  */
35540
35874
  snapKitActionExecuteDeferred: (data: SnapKitActionExecuteDeferredRequest, params?: RequestParams) => Promise<AxiosResponse<SnapKitActionExecuteDeferredResponse, any, {}>>;
35541
35875
  /**
35542
- * @description Create a snap widget object.
35876
+ * @description Create a snap widget object. **Required scopes:** - `snap_widget:write` OR `snap_widget:all`
35543
35877
  *
35544
35878
  * @tags snap-widgets
35545
35879
  * @name SnapWidgetsCreate
@@ -35549,7 +35883,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35549
35883
  */
35550
35884
  snapWidgetsCreate: (data: SnapWidgetsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SnapWidgetsCreateResponse, any, {}>>;
35551
35885
  /**
35552
- * @description Creates a stage diagram.
35886
+ * @description Creates a stage diagram. **Required scopes:** - `stage_diagram:write`
35553
35887
  *
35554
35888
  * @tags customization
35555
35889
  * @name StageDiagramsCreate
@@ -35559,7 +35893,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35559
35893
  */
35560
35894
  stageDiagramsCreate: (data: StageDiagramsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsCreateResponse, any, {}>>;
35561
35895
  /**
35562
- * @description Gets a stage diagram.
35896
+ * @description Gets a stage diagram. **Required scopes:** No scopes required.
35563
35897
  *
35564
35898
  * @tags customization
35565
35899
  * @name StageDiagramsGet
@@ -35586,7 +35920,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35586
35920
  leaf_type?: string;
35587
35921
  }, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsGetResponse, any, {}>>;
35588
35922
  /**
35589
- * @description Gets a stage diagram.
35923
+ * @description Gets a stage diagram. **Required scopes:** No scopes required.
35590
35924
  *
35591
35925
  * @tags customization
35592
35926
  * @name StageDiagramsGetPost
@@ -35596,7 +35930,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35596
35930
  */
35597
35931
  stageDiagramsGetPost: (data: StageDiagramsGetRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsGetResponse, any, {}>>;
35598
35932
  /**
35599
- * @description Lists stage diagrams.
35933
+ * @description Lists stage diagrams. **Required scopes:** No scopes required.
35600
35934
  *
35601
35935
  * @tags customization
35602
35936
  * @name StageDiagramsList
@@ -35626,7 +35960,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35626
35960
  sort_by?: string[];
35627
35961
  }, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsListResponse, any, {}>>;
35628
35962
  /**
35629
- * @description Lists stage diagrams.
35963
+ * @description Lists stage diagrams. **Required scopes:** No scopes required.
35630
35964
  *
35631
35965
  * @tags customization
35632
35966
  * @name StageDiagramsListPost
@@ -35636,7 +35970,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35636
35970
  */
35637
35971
  stageDiagramsListPost: (data: StageDiagramsListRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsListResponse, any, {}>>;
35638
35972
  /**
35639
- * @description Updates a stage diagram.
35973
+ * @description Updates a stage diagram. **Required scopes:** - `stage_diagram:write`
35640
35974
  *
35641
35975
  * @tags customization
35642
35976
  * @name StageDiagramsUpdate
@@ -35646,7 +35980,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35646
35980
  */
35647
35981
  stageDiagramsUpdate: (data: StageDiagramsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsUpdateResponse, any, {}>>;
35648
35982
  /**
35649
- * @description Creates a custom stage.
35983
+ * @description Creates a custom stage. **Required scopes:** - `custom_stage:write`
35650
35984
  *
35651
35985
  * @tags customization
35652
35986
  * @name CustomStagesCreate
@@ -35656,7 +35990,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35656
35990
  */
35657
35991
  customStagesCreate: (data: CustomStagesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesCreateResponse, any, {}>>;
35658
35992
  /**
35659
- * @description Gets a custom stage.
35993
+ * @description Gets a custom stage. **Required scopes:** No scopes required.
35660
35994
  *
35661
35995
  * @tags customization
35662
35996
  * @name CustomStagesGet
@@ -35672,7 +36006,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35672
36006
  id: string;
35673
36007
  }, params?: RequestParams) => Promise<AxiosResponse<CustomStagesGetResponse, any, {}>>;
35674
36008
  /**
35675
- * @description Gets a custom stage.
36009
+ * @description Gets a custom stage. **Required scopes:** No scopes required.
35676
36010
  *
35677
36011
  * @tags customization
35678
36012
  * @name CustomStagesGetPost
@@ -35682,7 +36016,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35682
36016
  */
35683
36017
  customStagesGetPost: (data: CustomStagesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesGetResponse, any, {}>>;
35684
36018
  /**
35685
- * @description Lists custom stages.
36019
+ * @description Lists custom stages. **Required scopes:** No scopes required.
35686
36020
  *
35687
36021
  * @tags customization
35688
36022
  * @name CustomStagesList
@@ -35710,7 +36044,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35710
36044
  sort_by?: string[];
35711
36045
  }, params?: RequestParams) => Promise<AxiosResponse<CustomStagesListResponse, any, {}>>;
35712
36046
  /**
35713
- * @description Lists custom stages.
36047
+ * @description Lists custom stages. **Required scopes:** No scopes required.
35714
36048
  *
35715
36049
  * @tags customization
35716
36050
  * @name CustomStagesListPost
@@ -35720,7 +36054,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35720
36054
  */
35721
36055
  customStagesListPost: (data: CustomStagesListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesListResponse, any, {}>>;
35722
36056
  /**
35723
- * @description Updates a custom stage.
36057
+ * @description Updates a custom stage. **Required scopes:** - `custom_stage:write`
35724
36058
  *
35725
36059
  * @tags customization
35726
36060
  * @name CustomStagesUpdate
@@ -35730,7 +36064,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35730
36064
  */
35731
36065
  customStagesUpdate: (data: CustomStagesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesUpdateResponse, any, {}>>;
35732
36066
  /**
35733
- * @description Creates a custom state.
36067
+ * @description Creates a custom state. **Required scopes:** - `custom_state:write`
35734
36068
  *
35735
36069
  * @tags customization
35736
36070
  * @name CustomStatesCreate
@@ -35740,7 +36074,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35740
36074
  */
35741
36075
  customStatesCreate: (data: CustomStatesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesCreateResponse, any, {}>>;
35742
36076
  /**
35743
- * @description Gets a custom state.
36077
+ * @description Gets a custom state. **Required scopes:** No scopes required.
35744
36078
  *
35745
36079
  * @tags customization
35746
36080
  * @name CustomStatesGet
@@ -35756,7 +36090,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35756
36090
  id: string;
35757
36091
  }, params?: RequestParams) => Promise<AxiosResponse<CustomStatesGetResponse, any, {}>>;
35758
36092
  /**
35759
- * @description Gets a custom state.
36093
+ * @description Gets a custom state. **Required scopes:** No scopes required.
35760
36094
  *
35761
36095
  * @tags customization
35762
36096
  * @name CustomStatesGetPost
@@ -35766,7 +36100,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35766
36100
  */
35767
36101
  customStatesGetPost: (data: CustomStatesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesGetResponse, any, {}>>;
35768
36102
  /**
35769
- * @description Lists custom states.
36103
+ * @description Lists custom states. **Required scopes:** No scopes required.
35770
36104
  *
35771
36105
  * @tags customization
35772
36106
  * @name CustomStatesList
@@ -35796,7 +36130,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35796
36130
  sort_by?: string[];
35797
36131
  }, params?: RequestParams) => Promise<AxiosResponse<CustomStatesListResponse, any, {}>>;
35798
36132
  /**
35799
- * @description Lists custom states.
36133
+ * @description Lists custom states. **Required scopes:** No scopes required.
35800
36134
  *
35801
36135
  * @tags customization
35802
36136
  * @name CustomStatesListPost
@@ -35806,7 +36140,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35806
36140
  */
35807
36141
  customStatesListPost: (data: CustomStatesListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesListResponse, any, {}>>;
35808
36142
  /**
35809
- * @description Updates a custom state.
36143
+ * @description Updates a custom state. **Required scopes:** - `custom_state:write`
35810
36144
  *
35811
36145
  * @tags customization
35812
36146
  * @name CustomStatesUpdate
@@ -35892,7 +36226,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35892
36226
  */
35893
36227
  subscribersUpdate: (data: SubscribersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
35894
36228
  /**
35895
- * @description Creates a schema for survey, which includes name and description of schema.
36229
+ * @description Creates a schema for survey, which includes name and description of schema. **Required scopes:** - `survey:write` OR `survey:all`
35896
36230
  *
35897
36231
  * @tags surveys
35898
36232
  * @name SurveysCreate
@@ -35902,7 +36236,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35902
36236
  */
35903
36237
  surveysCreate: (data: SurveysCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysCreateResponse, any, {}>>;
35904
36238
  /**
35905
- * @description Deletes the specified survey.
36239
+ * @description Deletes the specified survey. **Required scopes:** - `survey:all`
35906
36240
  *
35907
36241
  * @tags surveys
35908
36242
  * @name SurveysDelete
@@ -35912,7 +36246,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35912
36246
  */
35913
36247
  surveysDelete: (data: SurveysDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
35914
36248
  /**
35915
- * @description Gets a survey given the ID.
36249
+ * @description Gets a survey given the ID. **Required scopes:** - `survey:read` OR `survey:write` OR `survey:all`
35916
36250
  *
35917
36251
  * @tags surveys
35918
36252
  * @name SurveysGet
@@ -35928,7 +36262,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35928
36262
  id: string;
35929
36263
  }, params?: RequestParams) => Promise<AxiosResponse<SurveysGetResponse, any, {}>>;
35930
36264
  /**
35931
- * @description Gets a survey given the ID.
36265
+ * @description Gets a survey given the ID. **Required scopes:** - `survey:read` OR `survey:write` OR `survey:all`
35932
36266
  *
35933
36267
  * @tags surveys
35934
36268
  * @name SurveysGetPost
@@ -35938,7 +36272,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35938
36272
  */
35939
36273
  surveysGetPost: (data: SurveysGetRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysGetResponse, any, {}>>;
35940
36274
  /**
35941
- * @description List surveys requested by the user.
36275
+ * @description List surveys requested by the user. **Required scopes:** - `survey:read` OR `survey:write` OR `survey:all`
35942
36276
  *
35943
36277
  * @tags surveys
35944
36278
  * @name SurveysList
@@ -35975,7 +36309,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35975
36309
  sort_by?: string[];
35976
36310
  }, params?: RequestParams) => Promise<AxiosResponse<SurveysListResponse, any, {}>>;
35977
36311
  /**
35978
- * @description List surveys requested by the user.
36312
+ * @description List surveys requested by the user. **Required scopes:** - `survey:read` OR `survey:write` OR `survey:all`
35979
36313
  *
35980
36314
  * @tags surveys
35981
36315
  * @name SurveysListPost
@@ -35985,7 +36319,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
35985
36319
  */
35986
36320
  surveysListPost: (data: SurveysListRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysListResponse, any, {}>>;
35987
36321
  /**
35988
- * @description List survey responses requested by the user.
36322
+ * @description List survey responses requested by the user. **Required scopes:** - `survey_response:read` OR `survey_response:write` OR `survey_response:all`
35989
36323
  *
35990
36324
  * @tags surveys
35991
36325
  * @name SurveysResponsesList
@@ -36039,7 +36373,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36039
36373
  surveys?: string[];
36040
36374
  }, params?: RequestParams) => Promise<AxiosResponse<SurveysResponsesListResponse, any, {}>>;
36041
36375
  /**
36042
- * @description List survey responses requested by the user.
36376
+ * @description List survey responses requested by the user. **Required scopes:** - `survey_response:read` OR `survey_response:write` OR `survey_response:all`
36043
36377
  *
36044
36378
  * @tags surveys
36045
36379
  * @name SurveysResponsesListPost
@@ -36049,7 +36383,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36049
36383
  */
36050
36384
  surveysResponsesListPost: (data: SurveysResponsesListRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysResponsesListResponse, any, {}>>;
36051
36385
  /**
36052
- * @description Updates a user's survey response for the provided dispatch ID.
36386
+ * @description Updates a user's survey response for the provided dispatch ID. **Required scopes:** - `survey_response:write` OR `survey_response:all`
36053
36387
  *
36054
36388
  * @tags surveys
36055
36389
  * @name SurveysResponsesUpdate
@@ -36059,7 +36393,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36059
36393
  */
36060
36394
  surveysResponsesUpdate: (data: SurveysResponsesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
36061
36395
  /**
36062
- * @description Sends a survey on the specified channels.
36396
+ * @description Sends a survey on the specified channels. **Required scopes:** - `survey:write` OR `survey:all`
36063
36397
  *
36064
36398
  * @tags surveys
36065
36399
  * @name SurveysSend
@@ -36069,7 +36403,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36069
36403
  */
36070
36404
  surveysSend: (data: SurveysSendRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
36071
36405
  /**
36072
- * @description Submits a user response to a survey, which is defined by the survey ID.
36406
+ * @description Submits a user response to a survey, which is defined by the survey ID. **Required scopes:** - `survey_response:write` OR `survey_response:all`
36073
36407
  *
36074
36408
  * @tags surveys
36075
36409
  * @name SurveysSubmit
@@ -36079,7 +36413,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36079
36413
  */
36080
36414
  surveysSubmit: (data: SurveysSubmitRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
36081
36415
  /**
36082
- * @description Updates a survey's metadata.
36416
+ * @description Updates a survey's metadata. **Required scopes:** - `survey:write` OR `survey:all`
36083
36417
  *
36084
36418
  * @tags surveys
36085
36419
  * @name SurveysUpdate
@@ -36089,7 +36423,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36089
36423
  */
36090
36424
  surveysUpdate: (data: SurveysUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysUpdateResponse, any, {}>>;
36091
36425
  /**
36092
- * @description Lists system users within your organization. **Required scopes:** - `dev_user:read`
36426
+ * @description Lists system users within your organization. **Required scopes:** Default Scopes unavailable for this API.
36093
36427
  *
36094
36428
  * @tags sys-users
36095
36429
  * @name SysUsersList
@@ -36119,7 +36453,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36119
36453
  sort_by?: string[];
36120
36454
  }, params?: RequestParams) => Promise<AxiosResponse<SysUsersListResponse, any, {}>>;
36121
36455
  /**
36122
- * @description Lists system users within your organization. **Required scopes:** - `dev_user:read`
36456
+ * @description Lists system users within your organization. **Required scopes:** Default Scopes unavailable for this API.
36123
36457
  *
36124
36458
  * @tags sys-users
36125
36459
  * @name SysUsersListPost
@@ -36129,7 +36463,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36129
36463
  */
36130
36464
  sysUsersListPost: (data: SysUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<SysUsersListResponse, any, {}>>;
36131
36465
  /**
36132
- * @description Updates the system user. **Required scopes:** - `dev_user:write`
36466
+ * @description Updates the system user. **Required scopes:** Default Scopes unavailable for this API.
36133
36467
  *
36134
36468
  * @tags sys-users
36135
36469
  * @name SysUsersUpdate
@@ -36139,7 +36473,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36139
36473
  */
36140
36474
  sysUsersUpdate: (data: SysUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SysUsersUpdateResponse, any, {}>>;
36141
36475
  /**
36142
- * @description Creates a new tag, which is used to create associations between objects and a logical concept denoted by the tag's name.
36476
+ * @description Creates a new tag, which is used to create associations between objects and a logical concept denoted by the tag's name. **Required scopes:** - `tag:write` OR `tag:all`
36143
36477
  *
36144
36478
  * @tags tags
36145
36479
  * @name TagsCreate
@@ -36149,7 +36483,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36149
36483
  */
36150
36484
  tagsCreate: (data: TagsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<TagsCreateResponse, any, {}>>;
36151
36485
  /**
36152
- * @description Deletes a tag.
36486
+ * @description Deletes a tag. **Required scopes:** - `tag:all`
36153
36487
  *
36154
36488
  * @tags tags
36155
36489
  * @name TagsDelete
@@ -36159,7 +36493,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36159
36493
  */
36160
36494
  tagsDelete: (data: TagsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
36161
36495
  /**
36162
- * @description Gets a tag's information.
36496
+ * @description Gets a tag's information. **Required scopes:** - `tag:read` OR `tag:write` OR `tag:all`
36163
36497
  *
36164
36498
  * @tags tags
36165
36499
  * @name TagsGet
@@ -36176,7 +36510,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36176
36510
  id: string;
36177
36511
  }, params?: RequestParams) => Promise<AxiosResponse<TagsGetResponse, any, {}>>;
36178
36512
  /**
36179
- * @description Gets a tag's information.
36513
+ * @description Gets a tag's information. **Required scopes:** - `tag:read` OR `tag:write` OR `tag:all`
36180
36514
  *
36181
36515
  * @tags tags
36182
36516
  * @name TagsGetPost
@@ -36186,7 +36520,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36186
36520
  */
36187
36521
  tagsGetPost: (data: TagsGetRequest, params?: RequestParams) => Promise<AxiosResponse<TagsGetResponse, any, {}>>;
36188
36522
  /**
36189
- * @description Lists the available tags.
36523
+ * @description Lists the available tags. **Required scopes:** - `tag:read` OR `tag:write` OR `tag:all`
36190
36524
  *
36191
36525
  * @tags tags
36192
36526
  * @name TagsList
@@ -36217,7 +36551,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36217
36551
  sort_by?: string[];
36218
36552
  }, params?: RequestParams) => Promise<AxiosResponse<TagsListResponse, any, {}>>;
36219
36553
  /**
36220
- * @description Lists the available tags.
36554
+ * @description Lists the available tags. **Required scopes:** - `tag:read` OR `tag:write` OR `tag:all`
36221
36555
  *
36222
36556
  * @tags tags
36223
36557
  * @name TagsListPost
@@ -36227,7 +36561,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36227
36561
  */
36228
36562
  tagsListPost: (data: TagsListRequest, params?: RequestParams) => Promise<AxiosResponse<TagsListResponse, any, {}>>;
36229
36563
  /**
36230
- * @description Updates a tag's information.
36564
+ * @description Updates a tag's information. **Required scopes:** - `tag:write` OR `tag:all`
36231
36565
  *
36232
36566
  * @tags tags
36233
36567
  * @name TagsUpdate
@@ -36237,7 +36571,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36237
36571
  */
36238
36572
  tagsUpdate: (data: TagsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<TagsUpdateResponse, any, {}>>;
36239
36573
  /**
36240
- * @description Creates a new entry on an object's timeline.
36574
+ * @description Creates a new entry on an object's timeline. **Required scopes:** Requires the read or write scope of the parent object's type (e.g. issue:write when posting to an issue's timeline).
36241
36575
  *
36242
36576
  * @tags timeline-entries
36243
36577
  * @name TimelineEntriesCreate
@@ -36247,7 +36581,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36247
36581
  */
36248
36582
  timelineEntriesCreate: (data: TimelineEntriesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesCreateResponse, any, {}>>;
36249
36583
  /**
36250
- * @description Deletes an entry from an object's timeline.
36584
+ * @description Deletes an entry from an object's timeline. **Required scopes:** Requires the read or write scope of the parent object's type (e.g. issue:write when posting to an issue's timeline).
36251
36585
  *
36252
36586
  * @tags timeline-entries
36253
36587
  * @name TimelineEntriesDelete
@@ -36257,7 +36591,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36257
36591
  */
36258
36592
  timelineEntriesDelete: (data: TimelineEntriesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
36259
36593
  /**
36260
- * @description Gets an entry on an object's timeline.
36594
+ * @description Gets an entry on an object's timeline. **Required scopes:** Requires the read or write scope of the parent object's type (e.g. issue:write when posting to an issue's timeline).
36261
36595
  *
36262
36596
  * @tags timeline-entries
36263
36597
  * @name TimelineEntriesGet
@@ -36282,7 +36616,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36282
36616
  external_ref?: string;
36283
36617
  }, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesGetResponse, any, {}>>;
36284
36618
  /**
36285
- * @description Gets an entry on an object's timeline.
36619
+ * @description Gets an entry on an object's timeline. **Required scopes:** Requires the read or write scope of the parent object's type (e.g. issue:write when posting to an issue's timeline).
36286
36620
  *
36287
36621
  * @tags timeline-entries
36288
36622
  * @name TimelineEntriesGetPost
@@ -36292,7 +36626,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36292
36626
  */
36293
36627
  timelineEntriesGetPost: (data: TimelineEntriesGetRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesGetResponse, any, {}>>;
36294
36628
  /**
36295
- * @description Lists the timeline entries for an object.
36629
+ * @description Lists the timeline entries for an object. **Required scopes:** Requires the read or write scope of the parent object's type (e.g. issue:write when posting to an issue's timeline).
36296
36630
  *
36297
36631
  * @tags timeline-entries
36298
36632
  * @name TimelineEntriesList
@@ -36312,8 +36646,14 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36312
36646
  /**
36313
36647
  * The collection(s) to list entries from, otherwise if not provided,
36314
36648
  * all entries are returned.
36649
+ * @maxItems 1
36315
36650
  */
36316
36651
  collections?: TimelineEntriesCollection[];
36652
+ /**
36653
+ * Filters for entries created by any of the provided users.
36654
+ * @example ["DEVU-12345"]
36655
+ */
36656
+ created_by?: string[];
36317
36657
  /**
36318
36658
  * Filters for objects created after the provided timestamp (inclusive).
36319
36659
  * @format date-time
@@ -36362,7 +36702,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36362
36702
  visibility?: TimelineEntryVisibility[];
36363
36703
  }, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesListResponse, any, {}>>;
36364
36704
  /**
36365
- * @description Lists the timeline entries for an object.
36705
+ * @description Lists the timeline entries for an object. **Required scopes:** Requires the read or write scope of the parent object's type (e.g. issue:write when posting to an issue's timeline).
36366
36706
  *
36367
36707
  * @tags timeline-entries
36368
36708
  * @name TimelineEntriesListPost
@@ -36372,7 +36712,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36372
36712
  */
36373
36713
  timelineEntriesListPost: (data: TimelineEntriesListRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesListResponse, any, {}>>;
36374
36714
  /**
36375
- * @description Updates an entry on an object's timeline.
36715
+ * @description Updates an entry on an object's timeline. **Required scopes:** Requires the read or write scope of the parent object's type (e.g. issue:write when posting to an issue's timeline).
36376
36716
  *
36377
36717
  * @tags timeline-entries
36378
36718
  * @name TimelineEntriesUpdate
@@ -36564,7 +36904,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36564
36904
  */
36565
36905
  vistasCreate: (data: VistasCreateRequest, params?: RequestParams) => Promise<AxiosResponse<VistasCreateResponse, any, {}>>;
36566
36906
  /**
36567
- * @description Deletes the requested vista.
36907
+ * @description Deletes the requested vista. **Required scopes:** - `vista:all`
36568
36908
  *
36569
36909
  * @tags vistas
36570
36910
  * @name VistasDelete
@@ -36574,7 +36914,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36574
36914
  */
36575
36915
  vistasDelete: (data: VistasDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
36576
36916
  /**
36577
- * @description Gets the requested vistas's information.
36917
+ * @description Gets the requested vistas's information. **Required scopes:** - `vista:read` OR `vista:write` OR `vista:all`
36578
36918
  *
36579
36919
  * @tags vistas
36580
36920
  * @name VistasGet
@@ -36591,7 +36931,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36591
36931
  id: string;
36592
36932
  }, params?: RequestParams) => Promise<AxiosResponse<VistasGetResponse, any, {}>>;
36593
36933
  /**
36594
- * @description Gets the requested vistas's information.
36934
+ * @description Gets the requested vistas's information. **Required scopes:** - `vista:read` OR `vista:write` OR `vista:all`
36595
36935
  *
36596
36936
  * @tags vistas
36597
36937
  * @name VistasGetPost
@@ -36601,7 +36941,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36601
36941
  */
36602
36942
  vistasGetPost: (data: VistasGetRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGetResponse, any, {}>>;
36603
36943
  /**
36604
- * @description Deletes the requested vista group item
36944
+ * @description Deletes the requested vista group item **Required scopes:** - `vista:all` No scopes required for default vistas.
36605
36945
  *
36606
36946
  * @tags vistas
36607
36947
  * @name VistasGroupsDelete
@@ -36611,7 +36951,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36611
36951
  */
36612
36952
  vistasGroupsDelete: (data: VistasGroupsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
36613
36953
  /**
36614
- * @description Gets the requested vista group item's information.
36954
+ * @description Gets the requested vista group item's information. **Required scopes:** - `vista:read` OR `vista:write` OR `vista:all` No scopes required for default vistas.
36615
36955
  *
36616
36956
  * @tags vistas
36617
36957
  * @name VistasGroupsGet
@@ -36627,7 +36967,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36627
36967
  id: string;
36628
36968
  }, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsGetResponse, any, {}>>;
36629
36969
  /**
36630
- * @description Gets the requested vista group item's information.
36970
+ * @description Gets the requested vista group item's information. **Required scopes:** - `vista:read` OR `vista:write` OR `vista:all` No scopes required for default vistas.
36631
36971
  *
36632
36972
  * @tags vistas
36633
36973
  * @name VistasGroupsGetPost
@@ -36637,7 +36977,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36637
36977
  */
36638
36978
  vistasGroupsGetPost: (data: VistasGroupsGetRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsGetResponse, any, {}>>;
36639
36979
  /**
36640
- * @description Lists the available vista group items.
36980
+ * @description Lists the available vista group items. **Required scopes:** - `vista:read` OR `vista:write` OR `vista:all` No scopes required for default vistas.
36641
36981
  *
36642
36982
  * @tags vistas
36643
36983
  * @name VistasGroupsList
@@ -36699,7 +37039,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36699
37039
  type?: GroupItemType[];
36700
37040
  }, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsListResponse, any, {}>>;
36701
37041
  /**
36702
- * @description Lists the available vista group items.
37042
+ * @description Lists the available vista group items. **Required scopes:** - `vista:read` OR `vista:write` OR `vista:all` No scopes required for default vistas.
36703
37043
  *
36704
37044
  * @tags vistas
36705
37045
  * @name VistasGroupsListPost
@@ -36709,7 +37049,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36709
37049
  */
36710
37050
  vistasGroupsListPost: (data: VistasGroupsListRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsListResponse, any, {}>>;
36711
37051
  /**
36712
- * @description Lists the available vistas.
37052
+ * @description Lists the available vistas. **Required scopes:** - `vista:read` OR `vista:write` OR `vista:all`
36713
37053
  *
36714
37054
  * @tags vistas
36715
37055
  * @name VistasList
@@ -36771,7 +37111,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36771
37111
  type?: VistaType[];
36772
37112
  }, params?: RequestParams) => Promise<AxiosResponse<VistasListResponse, any, {}>>;
36773
37113
  /**
36774
- * @description Lists the available vistas.
37114
+ * @description Lists the available vistas. **Required scopes:** - `vista:read` OR `vista:write` OR `vista:all`
36775
37115
  *
36776
37116
  * @tags vistas
36777
37117
  * @name VistasListPost
@@ -36781,7 +37121,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36781
37121
  */
36782
37122
  vistasListPost: (data: VistasListRequest, params?: RequestParams) => Promise<AxiosResponse<VistasListResponse, any, {}>>;
36783
37123
  /**
36784
- * @description Change state of a web crawler job to pause or resume it back to running.
37124
+ * @description Change state of a web crawler job to pause or resume it back to running. **Required scopes:** - `web_crawler_job:all`
36785
37125
  *
36786
37126
  * @tags web-crawler-job
36787
37127
  * @name WebCrawlerJobsControl
@@ -36791,7 +37131,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36791
37131
  */
36792
37132
  webCrawlerJobsControl: (data: WebCrawlerJobsControlRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsControlResponse, any, {}>>;
36793
37133
  /**
36794
- * @description Creates a web crawler job whose objective is to crawl the provided URLs/sitemaps and generate corresponding webpages as artifacts.
37134
+ * @description Creates a web crawler job whose objective is to crawl the provided URLs/sitemaps and generate corresponding webpages as artifacts. **Required scopes:** - `web_crawler_job:all`
36795
37135
  *
36796
37136
  * @tags web-crawler-job
36797
37137
  * @name CreateWebCrawlerJob
@@ -36801,7 +37141,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36801
37141
  */
36802
37142
  createWebCrawlerJob: (data: WebCrawlerJobsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsCreateResponse, any, {}>>;
36803
37143
  /**
36804
- * @description Gets a web crawler job.
37144
+ * @description Gets a web crawler job. **Required scopes:** - `web_crawler_job:all`
36805
37145
  *
36806
37146
  * @tags web-crawler-job
36807
37147
  * @name GetWebCrawlerJob
@@ -36817,7 +37157,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36817
37157
  id: string;
36818
37158
  }, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsGetResponse, any, {}>>;
36819
37159
  /**
36820
- * @description Gets a web crawler job.
37160
+ * @description Gets a web crawler job. **Required scopes:** - `web_crawler_job:all`
36821
37161
  *
36822
37162
  * @tags web-crawler-job
36823
37163
  * @name GetWebCrawlerJobPost
@@ -36827,7 +37167,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36827
37167
  */
36828
37168
  getWebCrawlerJobPost: (data: WebCrawlerJobsGetRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsGetResponse, any, {}>>;
36829
37169
  /**
36830
- * @description Lists web crawler jobs.
37170
+ * @description Lists web crawler jobs. **Required scopes:** - `web_crawler_job:all`
36831
37171
  *
36832
37172
  * @tags web-crawler-job
36833
37173
  * @name ListWebCrawlerJobs
@@ -36860,7 +37200,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36860
37200
  mode?: ListMode;
36861
37201
  }, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsListResponse, any, {}>>;
36862
37202
  /**
36863
- * @description Lists web crawler jobs.
37203
+ * @description Lists web crawler jobs. **Required scopes:** - `web_crawler_job:all`
36864
37204
  *
36865
37205
  * @tags web-crawler-job
36866
37206
  * @name ListWebCrawlerJobsPost
@@ -36870,7 +37210,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36870
37210
  */
36871
37211
  listWebCrawlerJobsPost: (data: WebCrawlerJobsListRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsListResponse, any, {}>>;
36872
37212
  /**
36873
- * @description Creates a new webhook target.
37213
+ * @description Creates a new webhook target. **Required scopes:** Default Scopes unavailable for this API.
36874
37214
  *
36875
37215
  * @tags webhooks
36876
37216
  * @name WebhooksCreate
@@ -36880,7 +37220,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36880
37220
  */
36881
37221
  webhooksCreate: (data: WebhooksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksCreateResponse, any, {}>>;
36882
37222
  /**
36883
- * @description Deletes the requested webhook.
37223
+ * @description Deletes the requested webhook. **Required scopes:** Default Scopes unavailable for this API.
36884
37224
  *
36885
37225
  * @tags webhooks
36886
37226
  * @name WebhooksDelete
@@ -36890,7 +37230,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36890
37230
  */
36891
37231
  webhooksDelete: (data: WebhooksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
36892
37232
  /**
36893
- * @description Describes a webhook invocation for an event from DevRev to a webhook's target URL, where the receiving handler must implement the specified protocol. Note the documented endpoint is for exposition and not provided by DevRev.
37233
+ * @description Describes a webhook invocation for an event from DevRev to a webhook's target URL, where the receiving handler must implement the specified protocol. Note the documented endpoint is for exposition and not provided by DevRev. **Required scopes:** Default Scopes unavailable for this API.
36894
37234
  *
36895
37235
  * @tags webhooks
36896
37236
  * @name WebhooksEvent
@@ -36910,7 +37250,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36910
37250
  */
36911
37251
  webhooksFetch: (data: WebhooksFetchRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
36912
37252
  /**
36913
- * @description Gets the requested webhook's information.
37253
+ * @description Gets the requested webhook's information. **Required scopes:** Default Scopes unavailable for this API.
36914
37254
  *
36915
37255
  * @tags webhooks
36916
37256
  * @name WebhooksGet
@@ -36927,7 +37267,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36927
37267
  id: string;
36928
37268
  }, params?: RequestParams) => Promise<AxiosResponse<WebhooksGetResponse, any, {}>>;
36929
37269
  /**
36930
- * @description Gets the requested webhook's information.
37270
+ * @description Gets the requested webhook's information. **Required scopes:** Default Scopes unavailable for this API.
36931
37271
  *
36932
37272
  * @tags webhooks
36933
37273
  * @name WebhooksGetPost
@@ -36937,7 +37277,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36937
37277
  */
36938
37278
  webhooksGetPost: (data: WebhooksGetRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksGetResponse, any, {}>>;
36939
37279
  /**
36940
- * @description Lists the webhooks.
37280
+ * @description Lists the webhooks. **Required scopes:** Default Scopes unavailable for this API.
36941
37281
  *
36942
37282
  * @tags webhooks
36943
37283
  * @name WebhooksList
@@ -36950,7 +37290,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36950
37290
  status?: WebhookStatus[];
36951
37291
  }, params?: RequestParams) => Promise<AxiosResponse<WebhooksListResponse, any, {}>>;
36952
37292
  /**
36953
- * @description Lists the webhooks.
37293
+ * @description Lists the webhooks. **Required scopes:** Default Scopes unavailable for this API.
36954
37294
  *
36955
37295
  * @tags webhooks
36956
37296
  * @name WebhooksListPost
@@ -36960,7 +37300,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
36960
37300
  */
36961
37301
  webhooksListPost: (data: WebhooksListRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksListResponse, any, {}>>;
36962
37302
  /**
36963
- * @description Updates the requested webhook.
37303
+ * @description Updates the requested webhook. **Required scopes:** Default Scopes unavailable for this API.
36964
37304
  *
36965
37305
  * @tags webhooks
36966
37306
  * @name WebhooksUpdate
@@ -37006,7 +37346,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
37006
37346
  */
37007
37347
  widgetsGetPost: (data: WidgetsGetRequest, params?: RequestParams) => Promise<AxiosResponse<WidgetsGetResponse, any, {}>>;
37008
37348
  /**
37009
- * @description Get count of work matching given filter.
37349
+ * @description Get count of work matching given filter. **Required scopes:** Depends on the object type in the `type` field: | type | required scope | |---|---| | incident | `incident:read` OR `incident:write` OR `incident:all` | | issue | `issue:read` OR `issue:write` OR `issue:all` | | opportunity | `opportunity:read` OR `opportunity:write` OR `opportunity:all` | | task | `task:read` OR `task:write` OR `task:all` | | ticket | `ticket:read` OR `ticket:write` OR `ticket:all` |
37010
37350
  *
37011
37351
  * @tags works
37012
37352
  * @name WorksCount
@@ -37175,7 +37515,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
37175
37515
  vista?: string;
37176
37516
  }, params?: RequestParams) => Promise<AxiosResponse<WorksCountResponse, any, {}>>;
37177
37517
  /**
37178
- * @description Get count of work matching given filter.
37518
+ * @description Get count of work matching given filter. **Required scopes:** Depends on the object type in the `type` field: | type | required scope | |---|---| | incident | `incident:read` OR `incident:write` OR `incident:all` | | issue | `issue:read` OR `issue:write` OR `issue:all` | | opportunity | `opportunity:read` OR `opportunity:write` OR `opportunity:all` | | task | `task:read` OR `task:write` OR `task:all` | | ticket | `ticket:read` OR `ticket:write` OR `ticket:all` |
37179
37519
  *
37180
37520
  * @tags works
37181
37521
  * @name WorksCountPost
@@ -37185,7 +37525,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
37185
37525
  */
37186
37526
  worksCountPost: (data: WorksCountRequest, params?: RequestParams) => Promise<AxiosResponse<WorksCountResponse, any, {}>>;
37187
37527
  /**
37188
- * @description Creates new work ([issue](https://devrev.ai/docs/product/build), [ticket](https://devrev.ai/docs/product/support)) item. [task](https://devrev.ai/docs/product/tasks) and opportunity work types are supported in the beta version.
37528
+ * @description Creates new work ([issue](https://devrev.ai/docs/product/build), [ticket](https://devrev.ai/docs/product/support)) item. [task](https://devrev.ai/docs/product/tasks) and opportunity work types are supported in the beta version. **Required scopes:** Depends on the object type in the `type` field: | type | required scope | |---|---| | incident | `incident:write` OR `incident:all` | | issue | `issue:write` OR `issue:all` | | opportunity | `opportunity:write` OR `opportunity:all` | | task | `task:write` OR `task:all` | | ticket | `ticket:write` OR `ticket:all` |
37189
37529
  *
37190
37530
  * @tags works
37191
37531
  * @name WorksCreate
@@ -37195,7 +37535,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
37195
37535
  */
37196
37536
  worksCreate: (data: WorksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WorksCreateResponse, any, {}>>;
37197
37537
  /**
37198
- * @description Deletes a work item.
37538
+ * @description Deletes a work item. **Required scopes:** Depends on the object type in the `id` field: | type | required scope | |---|---| | incident | `incident:all` | | issue | `issue:all` | | opportunity | `opportunity:all` | | task | `task:all` | | ticket | `ticket:all` |
37199
37539
  *
37200
37540
  * @tags works
37201
37541
  * @name WorksDelete
@@ -37205,7 +37545,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
37205
37545
  */
37206
37546
  worksDelete: (data: WorksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
37207
37547
  /**
37208
- * @description Exports a collection of work items.
37548
+ * @description Exports a collection of work items. **Required scopes:** Depends on the object type in the `type` field: | type | required scope | |---|---| | incident | `incident:read` OR `incident:write` OR `incident:all` | | issue | `issue:read` OR `issue:write` OR `issue:all` | | opportunity | `opportunity:read` OR `opportunity:write` OR `opportunity:all` | | task | `task:read` OR `task:write` OR `task:all` | | ticket | `ticket:read` OR `ticket:write` OR `ticket:all` |
37209
37549
  *
37210
37550
  * @tags works
37211
37551
  * @name WorksExport
@@ -37382,7 +37722,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
37382
37722
  vista?: string;
37383
37723
  }, params?: RequestParams) => Promise<AxiosResponse<WorksExportResponse, any, {}>>;
37384
37724
  /**
37385
- * @description Exports a collection of work items.
37725
+ * @description Exports a collection of work items. **Required scopes:** Depends on the object type in the `type` field: | type | required scope | |---|---| | incident | `incident:read` OR `incident:write` OR `incident:all` | | issue | `issue:read` OR `issue:write` OR `issue:all` | | opportunity | `opportunity:read` OR `opportunity:write` OR `opportunity:all` | | task | `task:read` OR `task:write` OR `task:all` | | ticket | `ticket:read` OR `ticket:write` OR `ticket:all` |
37386
37726
  *
37387
37727
  * @tags works
37388
37728
  * @name WorksExportPost
@@ -37392,7 +37732,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
37392
37732
  */
37393
37733
  worksExportPost: (data: WorksExportRequest, params?: RequestParams) => Promise<AxiosResponse<WorksExportResponse, any, {}>>;
37394
37734
  /**
37395
- * @description Gets a work item's information.
37735
+ * @description Gets a work item's information. **Required scopes:** Depends on the object type in the `id` field: | type | required scope | |---|---| | incident | `incident:read` OR `incident:write` OR `incident:all` | | issue | `issue:read` OR `issue:write` OR `issue:all` | | opportunity | `opportunity:read` OR `opportunity:write` OR `opportunity:all` | | task | `task:read` OR `task:write` OR `task:all` | | ticket | `ticket:read` OR `ticket:write` OR `ticket:all` |
37396
37736
  *
37397
37737
  * @tags works
37398
37738
  * @name WorksGet
@@ -37409,7 +37749,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
37409
37749
  id: string;
37410
37750
  }, params?: RequestParams) => Promise<AxiosResponse<WorksGetResponse, any, {}>>;
37411
37751
  /**
37412
- * @description Gets a work item's information.
37752
+ * @description Gets a work item's information. **Required scopes:** Depends on the object type in the `id` field: | type | required scope | |---|---| | incident | `incident:read` OR `incident:write` OR `incident:all` | | issue | `issue:read` OR `issue:write` OR `issue:all` | | opportunity | `opportunity:read` OR `opportunity:write` OR `opportunity:all` | | task | `task:read` OR `task:write` OR `task:all` | | ticket | `ticket:read` OR `ticket:write` OR `ticket:all` |
37413
37753
  *
37414
37754
  * @tags works
37415
37755
  * @name WorksGetPost
@@ -37419,7 +37759,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
37419
37759
  */
37420
37760
  worksGetPost: (data: WorksGetRequest, params?: RequestParams) => Promise<AxiosResponse<WorksGetResponse, any, {}>>;
37421
37761
  /**
37422
- * @description Lists a collection of work items.
37762
+ * @description Lists a collection of work items. **Required scopes:** Depends on the object type in the `type` field: | type | required scope | |---|---| | incident | `incident:read` OR `incident:write` OR `incident:all` | | issue | `issue:read` OR `issue:write` OR `issue:all` | | opportunity | `opportunity:read` OR `opportunity:write` OR `opportunity:all` | | task | `task:read` OR `task:write` OR `task:all` | | ticket | `ticket:read` OR `ticket:write` OR `ticket:all` |
37423
37763
  *
37424
37764
  * @tags works
37425
37765
  * @name WorksList
@@ -37606,7 +37946,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
37606
37946
  vista?: string;
37607
37947
  }, params?: RequestParams) => Promise<AxiosResponse<WorksListResponse, any, {}>>;
37608
37948
  /**
37609
- * @description Lists a collection of work items.
37949
+ * @description Lists a collection of work items. **Required scopes:** Depends on the object type in the `type` field: | type | required scope | |---|---| | incident | `incident:read` OR `incident:write` OR `incident:all` | | issue | `issue:read` OR `issue:write` OR `issue:all` | | opportunity | `opportunity:read` OR `opportunity:write` OR `opportunity:all` | | task | `task:read` OR `task:write` OR `task:all` | | ticket | `ticket:read` OR `ticket:write` OR `ticket:all` |
37610
37950
  *
37611
37951
  * @tags works
37612
37952
  * @name WorksListPost
@@ -37616,7 +37956,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
37616
37956
  */
37617
37957
  worksListPost: (data: WorksListRequest, params?: RequestParams) => Promise<AxiosResponse<WorksListResponse, any, {}>>;
37618
37958
  /**
37619
- * @description Updates a work item's information.
37959
+ * @description Updates a work item's information. **Required scopes:** Depends on the object type in the `id` field: | type | required scope | |---|---| | incident | `incident:write` OR `incident:all` | | issue | `issue:write` OR `issue:all` | | opportunity | `opportunity:write` OR `opportunity:all` | | task | `task:write` OR `task:all` | | ticket | `ticket:write` OR `ticket:all` |
37620
37960
  *
37621
37961
  * @tags works
37622
37962
  * @name WorksUpdate