@devrev/typescript-sdk 1.1.51 → 1.1.52

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.
@@ -526,6 +526,8 @@ export interface AiAgentEventExecuteProgressSkillTriggered {
526
526
  * @maxLength 512
527
527
  */
528
528
  skill_name: string;
529
+ /** The thought explaining why the skill was called. */
530
+ thought?: string;
529
531
  workflow?: WorkflowSummary;
530
532
  workflow_run?: WorkflowRunSummary;
531
533
  }
@@ -1151,13 +1153,39 @@ export interface ArticlesUpdateResponse {
1151
1153
  article: Article;
1152
1154
  }
1153
1155
  /** artifact */
1154
- export type Artifact = AtomBase;
1156
+ export type Artifact = AtomBase & {
1157
+ /** Defines a file object. */
1158
+ file?: ArtifactFile;
1159
+ };
1160
+ /**
1161
+ * artifact-file
1162
+ * Defines a file object.
1163
+ */
1164
+ export interface ArtifactFile {
1165
+ /** Type of the file. */
1166
+ type?: string;
1167
+ /** Name of the file. */
1168
+ name?: string;
1169
+ }
1170
+ /**
1171
+ * artifact-file-summary
1172
+ * Defines a file object.
1173
+ */
1174
+ export interface ArtifactFileSummary {
1175
+ /** Type of the file. */
1176
+ type?: string;
1177
+ /** Name of the file. */
1178
+ name?: string;
1179
+ }
1155
1180
  /** artifact-search-summary */
1156
1181
  export type ArtifactSearchSummary = SearchSummaryBase & {
1157
1182
  artifact: ArtifactSummary;
1158
1183
  };
1159
1184
  /** artifact-summary */
1160
- export type ArtifactSummary = AtomBaseSummary;
1185
+ export type ArtifactSummary = AtomBaseSummary & {
1186
+ /** Defines a file object. */
1187
+ file?: ArtifactFileSummary;
1188
+ };
1161
1189
  /**
1162
1190
  * artifact-version
1163
1191
  * The version of the artifact.
@@ -3931,6 +3959,11 @@ export interface DeleteRevUsersPersonalDataRequest {
3931
3959
  * notified.
3932
3960
  */
3933
3961
  export type DeleteRevUsersPersonalDataResponse = object;
3962
+ /** dev-org */
3963
+ export type DevOrg = OrgBase & {
3964
+ /** Customer chosen URL slug for the DevOrg. */
3965
+ dev_slug: string;
3966
+ };
3934
3967
  /**
3935
3968
  * dev-org-auth-connections-create-request
3936
3969
  * Request to create a new enterprise authentication connection.
@@ -4215,6 +4248,18 @@ export interface DevOrgAuthConnectionsUpdateResponse {
4215
4248
  */
4216
4249
  auth_connection: AuthConnection;
4217
4250
  }
4251
+ /**
4252
+ * dev-orgs-get-request
4253
+ * A request to get a Dev organization's information.
4254
+ */
4255
+ export type DevOrgsGetRequest = object;
4256
+ /**
4257
+ * dev-orgs-get-response
4258
+ * The response to get a Dev organization's information.
4259
+ */
4260
+ export interface DevOrgsGetResponse {
4261
+ dev_org: DevOrg;
4262
+ }
4218
4263
  /** dev-user */
4219
4264
  export type DevUser = UserBase & {
4220
4265
  /** Custom fields. */
@@ -4698,10 +4743,10 @@ export interface DirectoriesUpdateRequest {
4698
4743
  reorder?: DirectoriesUpdateRequestReorder;
4699
4744
  tags?: DirectoriesUpdateRequestTags;
4700
4745
  /**
4701
- * ID of the thumbnail artifact.
4746
+ * The updated thumbnail for the directory.
4702
4747
  * @example "ARTIFACT-12345"
4703
4748
  */
4704
- thumbnail?: string;
4749
+ thumbnail?: string | null;
4705
4750
  /** The updated title for the directory. */
4706
4751
  title?: string;
4707
4752
  }
@@ -6459,6 +6504,8 @@ export interface IncidentsCreateRequest {
6459
6504
  source?: number;
6460
6505
  /** Create object for stage. */
6461
6506
  stage?: CreateStage;
6507
+ /** The type of stage validations options when creating an incident. */
6508
+ stage_validation_options?: StageValidationOptionForCreate[];
6462
6509
  /**
6463
6510
  * Users, along with the incident commander, involved in resolving
6464
6511
  * incidents and handling communication.
@@ -6766,6 +6813,11 @@ export interface IncidentsUpdateRequest {
6766
6813
  source?: number;
6767
6814
  /** Update object for Stage. */
6768
6815
  stage?: UpdateStage;
6816
+ /**
6817
+ * The type of stage validations options when updating the stage of an
6818
+ * incident.
6819
+ */
6820
+ stage_validation_options?: StageValidationOptionForUpdate[];
6769
6821
  stakeholders?: UpdateIncidentStakeholders;
6770
6822
  tags?: UpdateIncidentTags;
6771
6823
  /**
@@ -9335,6 +9387,11 @@ export interface RevUsersCreateRequest {
9335
9387
  description?: string;
9336
9388
  /** The user's display name. The name is non-unique and mutable. */
9337
9389
  display_name?: string;
9390
+ /**
9391
+ * Artifact ID of a Rev user's display picture.
9392
+ * @example "ARTIFACT-12345"
9393
+ */
9394
+ display_picture?: string;
9338
9395
  /** Email address of the Rev user. */
9339
9396
  email?: string;
9340
9397
  /**
@@ -9552,6 +9609,11 @@ export interface RevUsersUpdateRequest {
9552
9609
  description?: string;
9553
9610
  /** Updated display name of the Rev user. */
9554
9611
  display_name?: string;
9612
+ /**
9613
+ * Artifact ID of a Rev user's updated display picture.
9614
+ * @example "ARTIFACT-12345"
9615
+ */
9616
+ display_picture?: string | null;
9555
9617
  /** Updated email address of the Rev user. */
9556
9618
  email?: string;
9557
9619
  /** Updated external ref value of the Rev user. */
@@ -10329,14 +10391,39 @@ export interface SearchCoreResponse {
10329
10391
  }
10330
10392
  /** The namespaces for hybrid search. */
10331
10393
  export declare enum SearchHybridNamespace {
10394
+ Account = "account",
10332
10395
  Article = "article",
10396
+ Capability = "capability",
10397
+ Component = "component",
10333
10398
  Conversation = "conversation",
10399
+ CustomObject = "custom_object",
10400
+ CustomPart = "custom_part",
10401
+ CustomWork = "custom_work",
10402
+ Dashboard = "dashboard",
10334
10403
  Dataset = "dataset",
10404
+ DevUser = "dev_user",
10405
+ Enhancement = "enhancement",
10406
+ Feature = "feature",
10407
+ Group = "group",
10335
10408
  Incident = "incident",
10336
10409
  Issue = "issue",
10410
+ Linkable = "linkable",
10411
+ Microservice = "microservice",
10412
+ ObjectMember = "object_member",
10413
+ Opportunity = "opportunity",
10337
10414
  Part = "part",
10415
+ Product = "product",
10416
+ Project = "project",
10338
10417
  QuestionAnswer = "question_answer",
10418
+ RevOrg = "rev_org",
10419
+ RevUser = "rev_user",
10420
+ Runnable = "runnable",
10421
+ ServiceAccount = "service_account",
10422
+ SysUser = "sys_user",
10423
+ Tag = "tag",
10424
+ Task = "task",
10339
10425
  Ticket = "ticket",
10426
+ Vista = "vista",
10340
10427
  Widget = "widget",
10341
10428
  Work = "work"
10342
10429
  }
@@ -11142,12 +11229,21 @@ export interface SnapInsUpdateRequest {
11142
11229
  export interface SnapInsUpdateResponse {
11143
11230
  snap_in: SnapIn;
11144
11231
  }
11232
+ /**
11233
+ * snap-kit-base-widget
11234
+ * A SnapKit based widget.
11235
+ */
11236
+ export interface SnapKitBaseWidget {
11237
+ snap_kit_execution?: string;
11238
+ }
11145
11239
  /** snap-widget */
11146
11240
  export type SnapWidget = EmailPreviewWidget & {
11147
11241
  type: SnapWidgetType;
11148
11242
  };
11149
11243
  /** snap-widget-base */
11150
11244
  export type SnapWidgetBase = AtomBase & {
11245
+ /** A list of interactions supported by the widget. */
11246
+ interactions?: SnapWidgetInteraction[];
11151
11247
  /** A human readable name for the snap widget. */
11152
11248
  name: string;
11153
11249
  /** Logical grouping of snap widgets. Useful for filtering. */
@@ -11155,6 +11251,36 @@ export type SnapWidgetBase = AtomBase & {
11155
11251
  /** The status of the snap widget. */
11156
11252
  status: SnapWidgetStatus;
11157
11253
  };
11254
+ /**
11255
+ * snap-widget-click-interaction
11256
+ * An interaction supported by a widget.
11257
+ */
11258
+ export type SnapWidgetClickInteraction = (SnapWidgetOpenPlugWidgetAction | SnapWidgetOpenUrlAction | SnapWidgetStartConversationAction) & {
11259
+ click_action: SnapWidgetClickInteractionClickAction;
11260
+ };
11261
+ export declare enum SnapWidgetClickInteractionClickAction {
11262
+ OpenPlugWidget = "open_plug_widget",
11263
+ OpenUrl = "open_url",
11264
+ StartConversation = "start_conversation"
11265
+ }
11266
+ /** snap-widget-display-interaction-base */
11267
+ export type SnapWidgetDisplayInteractionBase = object;
11268
+ /**
11269
+ * snap-widget-email-input-interaction
11270
+ * An interaction supported by a widget.
11271
+ */
11272
+ export type SnapWidgetEmailInputInteraction = SnapWidgetDisplayInteractionBase;
11273
+ /**
11274
+ * snap-widget-interaction
11275
+ * An interaction supported by a widget.
11276
+ */
11277
+ export type SnapWidgetInteraction = (SnapWidgetClickInteraction | SnapWidgetEmailInputInteraction) & {
11278
+ type: SnapWidgetInteractionType;
11279
+ };
11280
+ export declare enum SnapWidgetInteractionType {
11281
+ Click = "click",
11282
+ EmailInput = "email_input"
11283
+ }
11158
11284
  /** Logical grouping of snap widgets. Useful for filtering. */
11159
11285
  export declare enum SnapWidgetNamespace {
11160
11286
  AiAssistantMessage = "ai_assistant_message",
@@ -11164,6 +11290,32 @@ export declare enum SnapWidgetNamespace {
11164
11290
  MeetingPreview = "meeting_preview",
11165
11291
  PlugNudge = "plug_nudge"
11166
11292
  }
11293
+ /**
11294
+ * snap-widget-open-plug-widget-action
11295
+ * Details of open plug widget action.
11296
+ */
11297
+ export type SnapWidgetOpenPlugWidgetAction = SnapWidgetDisplayInteractionBase;
11298
+ /**
11299
+ * snap-widget-open-url-action
11300
+ * Details of open url widget action.
11301
+ */
11302
+ export type SnapWidgetOpenUrlAction = SnapWidgetDisplayInteractionBase & {
11303
+ /** The url to open when the widget is clicked. */
11304
+ url: string;
11305
+ };
11306
+ /**
11307
+ * snap-widget-start-conversation-action
11308
+ * Details of start conversation action.
11309
+ */
11310
+ export type SnapWidgetStartConversationAction = SnapWidgetDisplayInteractionBase & {
11311
+ /**
11312
+ * Whether the rich text editor is enabled on the object. Default is
11313
+ * false.
11314
+ */
11315
+ rte_enabled?: boolean;
11316
+ /** A SnapKit based widget. */
11317
+ starter_message?: SnapKitBaseWidget;
11318
+ };
11167
11319
  /** The status of the snap widget. */
11168
11320
  export declare enum SnapWidgetStatus {
11169
11321
  Draft = "draft",
@@ -11661,6 +11813,8 @@ export interface SurveysResponsesListRequest {
11661
11813
  * iteration starts from the beginning.
11662
11814
  */
11663
11815
  cursor?: string;
11816
+ /** Filters for survey responses associated with these unique IDs. */
11817
+ dispatch_ids?: string[];
11664
11818
  /**
11665
11819
  * The maximum number of survey responses to return. If not set, then
11666
11820
  * the default is '50'.
@@ -14019,7 +14173,10 @@ export type WorksCreateRequest = (WorksCreateRequestIssue | WorksCreateRequestOp
14019
14173
  * @example ["ARTIFACT-12345"]
14020
14174
  */
14021
14175
  artifacts?: string[];
14022
- /** Body of the work object. */
14176
+ /**
14177
+ * Body of the work object.
14178
+ * @maxLength 65536
14179
+ */
14023
14180
  body?: string;
14024
14181
  /** Custom fields. */
14025
14182
  custom_fields?: object;
@@ -14415,7 +14572,10 @@ export type WorksUpdateRequest = (Empty | WorksUpdateRequestIssue | WorksUpdateR
14415
14572
  */
14416
14573
  applies_to_part?: string;
14417
14574
  artifacts?: WorksUpdateRequestArtifacts;
14418
- /** Updated body of the work object, or unchanged if not provided. */
14575
+ /**
14576
+ * Updated body of the work object, or unchanged if not provided.
14577
+ * @maxLength 65536
14578
+ */
14419
14579
  body?: string;
14420
14580
  /** Custom fields. */
14421
14581
  custom_fields?: object;
@@ -15522,7 +15682,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15522
15682
  /**
15523
15683
  * @description Creates a command.
15524
15684
  *
15525
- * @tags command
15685
+ * @tags commands
15526
15686
  * @name CommandsCreate
15527
15687
  * @summary Create Command
15528
15688
  * @request POST:/commands.create
@@ -15532,7 +15692,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15532
15692
  /**
15533
15693
  * @description Gets a command.
15534
15694
  *
15535
- * @tags command
15695
+ * @tags commands
15536
15696
  * @name CommandsGet
15537
15697
  * @summary Get Command
15538
15698
  * @request GET:/commands.get
@@ -15545,7 +15705,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15545
15705
  /**
15546
15706
  * @description Gets a command.
15547
15707
  *
15548
- * @tags command
15708
+ * @tags commands
15549
15709
  * @name CommandsGetPost
15550
15710
  * @summary Get Command (POST)
15551
15711
  * @request POST:/commands.get
@@ -15555,7 +15715,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15555
15715
  /**
15556
15716
  * @description Lists commands for a Dev organization.
15557
15717
  *
15558
- * @tags command
15718
+ * @tags commands
15559
15719
  * @name CommandsList
15560
15720
  * @summary List Commands
15561
15721
  * @request GET:/commands.list
@@ -15592,7 +15752,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15592
15752
  /**
15593
15753
  * @description Lists commands for a Dev organization.
15594
15754
  *
15595
- * @tags command
15755
+ * @tags commands
15596
15756
  * @name CommandsListPost
15597
15757
  * @summary List Commands (POST)
15598
15758
  * @request POST:/commands.list
@@ -15602,7 +15762,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15602
15762
  /**
15603
15763
  * @description Updates a command.
15604
15764
  *
15605
- * @tags command
15765
+ * @tags commands
15606
15766
  * @name CommandsUpdate
15607
15767
  * @summary Update Command
15608
15768
  * @request POST:/commands.update
@@ -16088,7 +16248,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16088
16248
  /**
16089
16249
  * @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. Keep in mind that at a time, only one authentication connection can be enabled for a Dev organization. At present, only 5 enterprise connections can be created by an organization.
16090
16250
  *
16091
- * @tags auth-connection, dev-orgs
16251
+ * @tags auth-connections, dev-orgs
16092
16252
  * @name DevOrgAuthConnectionsCreate
16093
16253
  * @summary Create Dev Orgs Auth Connection
16094
16254
  * @request POST:/dev-orgs.auth-connections.create
@@ -16098,7 +16258,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16098
16258
  /**
16099
16259
  * @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.
16100
16260
  *
16101
- * @tags auth-connection, dev-orgs
16261
+ * @tags auth-connections, dev-orgs
16102
16262
  * @name DevOrgAuthConnectionsDelete
16103
16263
  * @summary Delete Dev Orgs Auth Connection
16104
16264
  * @request POST:/dev-orgs.auth-connections.delete
@@ -16108,7 +16268,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16108
16268
  /**
16109
16269
  * @description Retrieves the details for an authentication connection.
16110
16270
  *
16111
- * @tags auth-connection, dev-orgs
16271
+ * @tags auth-connections, dev-orgs
16112
16272
  * @name DevOrgAuthConnectionsGet
16113
16273
  * @summary Get Dev Orgs Auth Connection
16114
16274
  * @request GET:/dev-orgs.auth-connections.get
@@ -16121,7 +16281,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16121
16281
  /**
16122
16282
  * @description Retrieves the details for an authentication connection.
16123
16283
  *
16124
- * @tags auth-connection, dev-orgs
16284
+ * @tags auth-connections, dev-orgs
16125
16285
  * @name DevOrgAuthConnectionsGetPost
16126
16286
  * @summary Get Dev Orgs Auth Connection (POST)
16127
16287
  * @request POST:/dev-orgs.auth-connections.get
@@ -16131,7 +16291,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16131
16291
  /**
16132
16292
  * @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.
16133
16293
  *
16134
- * @tags auth-connection, dev-orgs
16294
+ * @tags auth-connections, dev-orgs
16135
16295
  * @name DevOrgAuthConnectionsList
16136
16296
  * @summary List Dev Orgs Auth Connections
16137
16297
  * @request GET:/dev-orgs.auth-connections.list
@@ -16141,7 +16301,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16141
16301
  /**
16142
16302
  * @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.
16143
16303
  *
16144
- * @tags auth-connection, dev-orgs
16304
+ * @tags auth-connections, dev-orgs
16145
16305
  * @name DevOrgAuthConnectionsListPost
16146
16306
  * @summary List Dev Orgs Auth Connections (POST)
16147
16307
  * @request POST:/dev-orgs.auth-connections.list
@@ -16151,7 +16311,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16151
16311
  /**
16152
16312
  * @description Enable or disable an authentication connection for a Dev organization. Currently, only 1 authentication connection can be enabled at a time. When a new authentication connection is enabled, the connection which is currently enabled for the Dev organization is automatically disabled.
16153
16313
  *
16154
- * @tags auth-connection, dev-orgs
16314
+ * @tags auth-connections, dev-orgs
16155
16315
  * @name DevOrgAuthConnectionsToggle
16156
16316
  * @summary Toggle Dev Orgs Auth Connections
16157
16317
  * @request POST:/dev-orgs.auth-connections.toggle
@@ -16161,13 +16321,33 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16161
16321
  /**
16162
16322
  * @description Updates an authentication connection.
16163
16323
  *
16164
- * @tags auth-connection, dev-orgs
16324
+ * @tags auth-connections, dev-orgs
16165
16325
  * @name DevOrgAuthConnectionsUpdate
16166
16326
  * @summary Update Dev Orgs Auth Connection
16167
16327
  * @request POST:/dev-orgs.auth-connections.update
16168
16328
  * @secure
16169
16329
  */
16170
16330
  devOrgAuthConnectionsUpdate: (data: DevOrgAuthConnectionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsUpdateResponse, any>>;
16331
+ /**
16332
+ * @description Gets the Dev organization's information of the authenticated user.
16333
+ *
16334
+ * @tags dev-orgs
16335
+ * @name DevOrgsGet
16336
+ * @summary Get Dev Org
16337
+ * @request GET:/dev-orgs.get
16338
+ * @secure
16339
+ */
16340
+ devOrgsGet: (params?: RequestParams) => Promise<AxiosResponse<DevOrgsGetResponse, any>>;
16341
+ /**
16342
+ * @description Gets the Dev organization's information of the authenticated user.
16343
+ *
16344
+ * @tags dev-orgs
16345
+ * @name DevOrgsGetPost
16346
+ * @summary Get Dev Org (POST)
16347
+ * @request POST:/dev-orgs.get
16348
+ * @secure
16349
+ */
16350
+ devOrgsGetPost: (data: DevOrgsGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgsGetResponse, any>>;
16171
16351
  /**
16172
16352
  * @description Activates the requested user.
16173
16353
  *
@@ -16602,7 +16782,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16602
16782
  /**
16603
16783
  * @description Gets an event source.
16604
16784
  *
16605
- * @tags event-source
16785
+ * @tags event-sources
16606
16786
  * @name EventSourcesGet
16607
16787
  * @summary Get Event Source
16608
16788
  * @request GET:/event-sources.get
@@ -16615,7 +16795,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16615
16795
  /**
16616
16796
  * @description Gets an event source.
16617
16797
  *
16618
- * @tags event-source
16798
+ * @tags event-sources
16619
16799
  * @name EventSourcesGetPost
16620
16800
  * @summary Get Event Source (POST)
16621
16801
  * @request POST:/event-sources.get
@@ -16625,7 +16805,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16625
16805
  /**
16626
16806
  * @description Schedules an event to be published to the specified event source.
16627
16807
  *
16628
- * @tags event-source
16808
+ * @tags event-sources
16629
16809
  * @name EventSourcesScheduleEvent
16630
16810
  * @summary Schedule Event Sources
16631
16811
  * @request POST:/event-sources.schedule
@@ -16635,7 +16815,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16635
16815
  /**
16636
16816
  * @description Deletes an event scheduled for the specified event source.
16637
16817
  *
16638
- * @tags event-source
16818
+ * @tags event-sources
16639
16819
  * @name EventSourcesDeleteScheduledEvent
16640
16820
  * @summary Unschedule Event Sources
16641
16821
  * @request POST:/event-sources.unschedule
@@ -16793,7 +16973,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16793
16973
  /**
16794
16974
  * @description Creates an incident.
16795
16975
  *
16796
- * @tags operate
16976
+ * @tags incidents
16797
16977
  * @name IncidentsCreate
16798
16978
  * @summary Create Incident
16799
16979
  * @request POST:/incidents.create
@@ -16803,7 +16983,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16803
16983
  /**
16804
16984
  * @description Deletes an incident.
16805
16985
  *
16806
- * @tags operate
16986
+ * @tags incidents
16807
16987
  * @name IncidentsDelete
16808
16988
  * @summary Delete Incident
16809
16989
  * @request POST:/incidents.delete
@@ -16813,7 +16993,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16813
16993
  /**
16814
16994
  * @description Gets an incident.
16815
16995
  *
16816
- * @tags operate
16996
+ * @tags incidents
16817
16997
  * @name IncidentsGet
16818
16998
  * @summary Get Incident
16819
16999
  * @request GET:/incidents.get
@@ -16826,7 +17006,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16826
17006
  /**
16827
17007
  * @description Gets an incident.
16828
17008
  *
16829
- * @tags operate
17009
+ * @tags incidents
16830
17010
  * @name IncidentsGetPost
16831
17011
  * @summary Get Incident (POST)
16832
17012
  * @request POST:/incidents.get
@@ -16836,7 +17016,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16836
17016
  /**
16837
17017
  * @description Lists collections of incidents by groups.
16838
17018
  *
16839
- * @tags operate
17019
+ * @tags incidents
16840
17020
  * @name IncidentsGroup
16841
17021
  * @summary Group Incidents
16842
17022
  * @request GET:/incidents.group
@@ -16911,7 +17091,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16911
17091
  /**
16912
17092
  * @description Lists collections of incidents by groups.
16913
17093
  *
16914
- * @tags operate
17094
+ * @tags incidents
16915
17095
  * @name IncidentsGroupPost
16916
17096
  * @summary Group Incidents (POST)
16917
17097
  * @request POST:/incidents.group
@@ -16921,7 +17101,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16921
17101
  /**
16922
17102
  * @description Lists incidents.
16923
17103
  *
16924
- * @tags operate
17104
+ * @tags incidents
16925
17105
  * @name IncidentsList
16926
17106
  * @summary List Incidents
16927
17107
  * @request GET:/incidents.list
@@ -16987,7 +17167,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16987
17167
  /**
16988
17168
  * @description Lists incidents.
16989
17169
  *
16990
- * @tags operate
17170
+ * @tags incidents
16991
17171
  * @name IncidentsListPost
16992
17172
  * @summary List Incidents (POST)
16993
17173
  * @request POST:/incidents.list
@@ -16997,7 +17177,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16997
17177
  /**
16998
17178
  * @description Updates an incident.
16999
17179
  *
17000
- * @tags operate
17180
+ * @tags incidents
17001
17181
  * @name IncidentsUpdate
17002
17182
  * @summary Update Incident
17003
17183
  * @request POST:/incidents.update
@@ -17007,7 +17187,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17007
17187
  /**
17008
17188
  * @description OAuth2 authorization callback.
17009
17189
  *
17010
- * @tags keyring
17190
+ * @tags keyrings
17011
17191
  * @name KeyringsCreateCallback
17012
17192
  * @summary Authorize Keyrings
17013
17193
  * @request GET:/keyrings.authorize
@@ -17021,7 +17201,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17021
17201
  /**
17022
17202
  * @description OAuth2 authorization callback.
17023
17203
  *
17024
- * @tags keyring
17204
+ * @tags keyrings
17025
17205
  * @name KeyringsCreateCallbackPost
17026
17206
  * @summary Authorize Keyrings (POST)
17027
17207
  * @request POST:/keyrings.authorize
@@ -17503,7 +17683,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17503
17683
  /**
17504
17684
  * @description Ingest endpoint for DevRev metrics data from clients.
17505
17685
  *
17506
- * @tags product-usage
17686
+ * @tags metrics
17507
17687
  * @name MetricsDevrevIngest
17508
17688
  * @summary Ingest Metrics Devrev
17509
17689
  * @request POST:/metrics.devrev.ingest
@@ -19447,6 +19627,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19447
19627
  * starts from the beginning.
19448
19628
  */
19449
19629
  cursor?: string;
19630
+ /** Filters for survey responses associated with these unique IDs. */
19631
+ dispatch_ids?: string[];
19450
19632
  /**
19451
19633
  * The maximum number of survey responses to return. If not set, then
19452
19634
  * the default is '50'.
@@ -19789,7 +19971,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19789
19971
  /**
19790
19972
  * @description Allows publishing of events (example from plug widget).
19791
19973
  *
19792
- * @tags event-source
19974
+ * @tags event-sources
19793
19975
  * @name TrackEventsPublish
19794
19976
  * @summary Publish Track Events
19795
19977
  * @request POST:/track-events.publish
@@ -19799,9 +19981,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19799
19981
  /**
19800
19982
  * @description Counts the number of Unit of Measurements based on the given filters.
19801
19983
  *
19802
- * @tags product-usage
19984
+ * @tags uoms
19803
19985
  * @name UomsCount
19804
- * @summary Count Uoms
19986
+ * @summary Count UOMs
19805
19987
  * @request GET:/uoms.count
19806
19988
  * @secure
19807
19989
  */
@@ -19831,9 +20013,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19831
20013
  /**
19832
20014
  * @description Counts the number of Unit of Measurements based on the given filters.
19833
20015
  *
19834
- * @tags product-usage
20016
+ * @tags uoms
19835
20017
  * @name UomsCountPost
19836
- * @summary Count Uoms (POST)
20018
+ * @summary Count UOMs (POST)
19837
20019
  * @request POST:/uoms.count
19838
20020
  * @secure
19839
20021
  */
@@ -19841,9 +20023,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19841
20023
  /**
19842
20024
  * @description Creates a Unit of Measurement on a part.
19843
20025
  *
19844
- * @tags product-usage
20026
+ * @tags uoms
19845
20027
  * @name UomsCreate
19846
- * @summary Create Uom
20028
+ * @summary Create UOM
19847
20029
  * @request POST:/uoms.create
19848
20030
  * @secure
19849
20031
  */
@@ -19851,9 +20033,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19851
20033
  /**
19852
20034
  * @description Deletes a Unit of Measurement.
19853
20035
  *
19854
- * @tags product-usage
20036
+ * @tags uoms
19855
20037
  * @name UomsDelete
19856
- * @summary Delete Uom
20038
+ * @summary Delete UOM
19857
20039
  * @request POST:/uoms.delete
19858
20040
  * @secure
19859
20041
  */
@@ -19861,9 +20043,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19861
20043
  /**
19862
20044
  * @description Gets a Unit of Measurement.
19863
20045
  *
19864
- * @tags product-usage
20046
+ * @tags uoms
19865
20047
  * @name UomsGet
19866
- * @summary Get Uom
20048
+ * @summary Get UOM
19867
20049
  * @request GET:/uoms.get
19868
20050
  * @secure
19869
20051
  */
@@ -19874,9 +20056,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19874
20056
  /**
19875
20057
  * @description Gets a Unit of Measurement.
19876
20058
  *
19877
- * @tags product-usage
20059
+ * @tags uoms
19878
20060
  * @name UomsGetPost
19879
- * @summary Get Uom (POST)
20061
+ * @summary Get UOM (POST)
19880
20062
  * @request POST:/uoms.get
19881
20063
  * @secure
19882
20064
  */
@@ -19884,9 +20066,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19884
20066
  /**
19885
20067
  * @description Gets the Unit of Measurements based on the given filters.
19886
20068
  *
19887
- * @tags product-usage
20069
+ * @tags uoms
19888
20070
  * @name UomsList
19889
- * @summary List Uoms
20071
+ * @summary List UOMs
19890
20072
  * @request GET:/uoms.list
19891
20073
  * @secure
19892
20074
  */
@@ -19937,9 +20119,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19937
20119
  /**
19938
20120
  * @description Gets the Unit of Measurements based on the given filters.
19939
20121
  *
19940
- * @tags product-usage
20122
+ * @tags uoms
19941
20123
  * @name UomsListPost
19942
- * @summary List Uoms (POST)
20124
+ * @summary List UOMs (POST)
19943
20125
  * @request POST:/uoms.list
19944
20126
  * @secure
19945
20127
  */
@@ -19947,9 +20129,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19947
20129
  /**
19948
20130
  * @description Updates a Unit of Measurement.
19949
20131
  *
19950
- * @tags product-usage
20132
+ * @tags uoms
19951
20133
  * @name UomsUpdate
19952
- * @summary Update Uom
20134
+ * @summary Update UOM
19953
20135
  * @request POST:/uoms.update
19954
20136
  * @secure
19955
20137
  */