@devrev/typescript-sdk 1.1.68 → 1.1.69

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.
@@ -584,6 +584,8 @@ export declare enum AggregationDetailAggregationType {
584
584
  * Stores aggregation type and dimension information.
585
585
  */
586
586
  export type AggregationDetailSummary = object;
587
+ /** ai-agent */
588
+ export type AiAgent = AtomBase;
587
589
  /**
588
590
  * ai-agent-event
589
591
  * An event to be processed by an AI agent.
@@ -1714,6 +1716,28 @@ export interface ArtifactVersion {
1714
1716
  */
1715
1717
  version: string;
1716
1718
  }
1719
+ /**
1720
+ * artifacts-download-request
1721
+ * The request to download an artifact.
1722
+ */
1723
+ export interface ArtifactsDownloadRequest {
1724
+ /**
1725
+ * The ID of the artifact to be downloaded.
1726
+ * @format id
1727
+ * @example "ARTIFACT-12345"
1728
+ */
1729
+ id: string;
1730
+ /**
1731
+ * The access key for the artifact.
1732
+ * @format text
1733
+ */
1734
+ key?: string;
1735
+ /**
1736
+ * The version of the artifact that needs to be downloaded.
1737
+ * @format text
1738
+ */
1739
+ version?: string;
1740
+ }
1717
1741
  /**
1718
1742
  * artifacts-get-request
1719
1743
  * The request to get an artifact's information.
@@ -2286,10 +2310,10 @@ export interface AuthTokensCreateRequest {
2286
2310
  */
2287
2311
  client_id?: string;
2288
2312
  /**
2289
- * The expected validity lifetime of the token in number of days. In
2290
- * practice, the value should be based on the usage of the token.
2313
+ * The expected validity lifetime of the token in number of days. The
2314
+ * value must be less than or equal to 1825 days (5 years).
2291
2315
  * @min 0
2292
- * @max 4294967295
2316
+ * @max 1825
2293
2317
  */
2294
2318
  expires_in?: number;
2295
2319
  /** Specifies the process of obtaining a token. */
@@ -3918,6 +3942,70 @@ export interface CompositeSchema {
3918
3942
  */
3919
3943
  name?: string;
3920
3944
  }
3945
+ /**
3946
+ * configuration
3947
+ * Settings related to payment, proration, etc. Configurations may or may
3948
+ * not be defined by a DevO. 1. If DevO defines configurations then same
3949
+ * configurations are copied to RevO also to sub pack (for now, later RevO
3950
+ * can also set) 2. If DevO doesn't set anything then these configurations
3951
+ * would be set to default by application for which they were being
3952
+ * defined (for eg. if DevO doesn't set payment method for it's RevOs then
3953
+ * stripe would set it to 'charge_automatically' by default).
3954
+ */
3955
+ export interface Configuration {
3956
+ /**
3957
+ * Charge collection strategy for the service plan. Defaults to
3958
+ * charge_automatically.
3959
+ */
3960
+ collection_method?: ConfigurationCollectionMethod;
3961
+ /**
3962
+ * Number of days a customer has to pay invoices generated by this
3963
+ * subscription. If collection method is set to send_invoice then this
3964
+ * field is mandatory.
3965
+ * @format int32
3966
+ */
3967
+ days_until_due?: number;
3968
+ /**
3969
+ * Whether to generate invoice immediately if the service plan is
3970
+ * cancelled. Defaults to false.
3971
+ */
3972
+ invoice_now_on_cancel_service_plan?: boolean;
3973
+ /**
3974
+ * If pending update is allowed or not, this is for those cases where
3975
+ * an additional step of authentication or manual approval is required
3976
+ * for the payment. Defaults to false. If this is true, then Proration
3977
+ * behavior should be always_invoice, and collection method should be
3978
+ * charge_automatically.
3979
+ */
3980
+ pending_update?: boolean;
3981
+ /**
3982
+ * Whether to prorate if the service plan is cancelled. Defaults to
3983
+ * false.
3984
+ */
3985
+ prorate_on_cancel_service_plan?: boolean;
3986
+ /**
3987
+ * Determines how to handle prorations resulting from the billing_date. If
3988
+ * no value is passed, the default is create_prorations.
3989
+ */
3990
+ proration_behavior?: ConfigurationProrationBehavior;
3991
+ }
3992
+ /**
3993
+ * Charge collection strategy for the service plan. Defaults to
3994
+ * charge_automatically.
3995
+ */
3996
+ export declare enum ConfigurationCollectionMethod {
3997
+ ChargeAutomatically = "charge_automatically",
3998
+ SendInvoice = "send_invoice"
3999
+ }
4000
+ /**
4001
+ * Determines how to handle prorations resulting from the billing_date. If
4002
+ * no value is passed, the default is create_prorations.
4003
+ */
4004
+ export declare enum ConfigurationProrationBehavior {
4005
+ AlwaysInvoice = "always_invoice",
4006
+ CreateProrations = "create_prorations",
4007
+ None = "none"
4008
+ }
3921
4009
  /** content-template */
3922
4010
  export type ContentTemplate = NotificationContentTemplate & {
3923
4011
  type: ContentTemplateType;
@@ -4080,6 +4168,8 @@ export type Conversation = AtomBase & {
4080
4168
  */
4081
4169
  description?: string;
4082
4170
  group?: GroupSummary;
4171
+ /** Whether the object is frozen or not. */
4172
+ is_frozen?: boolean;
4083
4173
  /** The users in the conversation. */
4084
4174
  members: UserSummary[];
4085
4175
  /** The latest messages on the conversation. */
@@ -5199,6 +5289,12 @@ export interface CustomLinkTypeListResponse {
5199
5289
  prev_cursor?: string;
5200
5290
  /** The custom link types. */
5201
5291
  result: CustomLinkType[];
5292
+ /**
5293
+ * The custom link types matching the request filter in the backward
5294
+ * direction.Only returned if include_reverse_results is true.Objects
5295
+ * can be present in both result and reverse_result.
5296
+ */
5297
+ reverse_result?: CustomLinkType[];
5202
5298
  }
5203
5299
  /** custom-link-type-summary */
5204
5300
  export type CustomLinkTypeSummary = AtomBaseSummary;
@@ -6646,6 +6742,12 @@ export type DevUser = UserBase & {
6646
6742
  * @format text
6647
6743
  */
6648
6744
  subtype?: string;
6745
+ /**
6746
+ * The user's timezone in IANA Time Zone format (e.g., 'Asia/Kolkata',
6747
+ * 'America/New_York').
6748
+ * @format text
6749
+ */
6750
+ timezone?: string;
6649
6751
  };
6650
6752
  /** dev-user-external-identity-filter */
6651
6753
  export interface DevUserExternalIdentityFilter {
@@ -6873,6 +6975,11 @@ export interface DevUsersListRequest {
6873
6975
  sort_by?: string[];
6874
6976
  /** Filters Dev users based on state. */
6875
6977
  state?: UserState[];
6978
+ /**
6979
+ * Filters for Dev users in the specified time zone in IANA format
6980
+ * (e.g., 'America/Los_Angeles').
6981
+ */
6982
+ timezone?: string[];
6876
6983
  }
6877
6984
  /**
6878
6985
  * dev-users-list-response
@@ -7143,7 +7250,7 @@ export interface DirectoriesGetRequest {
7143
7250
  * The ID of the requested directory.
7144
7251
  * @format id
7145
7252
  */
7146
- id: string;
7253
+ id?: string;
7147
7254
  }
7148
7255
  /**
7149
7256
  * directories-get-response
@@ -8368,6 +8475,20 @@ export type ErrorNotFoundNotFound = object;
8368
8475
  export declare enum ErrorNotFoundType {
8369
8476
  NotFound = "not_found"
8370
8477
  }
8478
+ /** error-see-other */
8479
+ export type ErrorSeeOther = ErrorBase & ErrorSeeOtherSeeOther & {
8480
+ type: ErrorSeeOtherType;
8481
+ /**
8482
+ * The URL to redirect to.
8483
+ * @format text
8484
+ */
8485
+ location: string;
8486
+ };
8487
+ /** error-see-other-see-other */
8488
+ export type ErrorSeeOtherSeeOther = object;
8489
+ export declare enum ErrorSeeOtherType {
8490
+ SeeOther = "see_other"
8491
+ }
8371
8492
  /** error-service-unavailable */
8372
8493
  export type ErrorServiceUnavailable = ErrorBase & ErrorServiceUnavailableServiceUnavailable & {
8373
8494
  type: ErrorServiceUnavailableType;
@@ -8419,6 +8540,19 @@ export interface EventAccountUpdated {
8419
8540
  account: Account;
8420
8541
  old_account?: Account;
8421
8542
  }
8543
+ /** event-ai-agent-created */
8544
+ export interface EventAiAgentCreated {
8545
+ ai_agent: AiAgent;
8546
+ }
8547
+ /** event-ai-agent-deleted */
8548
+ export interface EventAiAgentDeleted {
8549
+ /**
8550
+ * The ID of the AI Agent that was deleted.
8551
+ * @format id
8552
+ */
8553
+ id: string;
8554
+ old_ai_agent?: AiAgent;
8555
+ }
8422
8556
  /** event-ai-agent-response */
8423
8557
  export interface EventAiAgentResponse {
8424
8558
  /**
@@ -8460,6 +8594,11 @@ export interface EventAiAgentResponse {
8460
8594
  /** A list of suggestions generated for the AI agent event. */
8461
8595
  suggestions?: AiAgentEventSuggestions;
8462
8596
  }
8597
+ /** event-ai-agent-updated */
8598
+ export interface EventAiAgentUpdated {
8599
+ ai_agent: AiAgent;
8600
+ old_ai_agent?: AiAgent;
8601
+ }
8463
8602
  /** event-article-created */
8464
8603
  export interface EventArticleCreated {
8465
8604
  article: Article;
@@ -8675,6 +8814,15 @@ export interface EventRevUserUpdated {
8675
8814
  old_rev_user?: RevUser;
8676
8815
  rev_user: RevUser;
8677
8816
  }
8817
+ /** event-service-plan-created */
8818
+ export interface EventServicePlanCreated {
8819
+ service_plan: ServicePlan;
8820
+ }
8821
+ /** event-service-plan-updated */
8822
+ export interface EventServicePlanUpdated {
8823
+ old_service_plan?: ServicePlan;
8824
+ service_plan: ServicePlan;
8825
+ }
8678
8826
  /** event-sla-tracker-created */
8679
8827
  export interface EventSlaTrackerCreated {
8680
8828
  sla_tracker: SlaTracker;
@@ -9003,6 +9151,24 @@ export interface EventWorkUpdated {
9003
9151
  old_work?: Work;
9004
9152
  work: Work;
9005
9153
  }
9154
+ /** event-workflow-created */
9155
+ export interface EventWorkflowCreated {
9156
+ workflow: Workflow;
9157
+ }
9158
+ /** event-workflow-deleted */
9159
+ export interface EventWorkflowDeleted {
9160
+ /**
9161
+ * The ID of the workflow that was deleted.
9162
+ * @format id
9163
+ */
9164
+ id: string;
9165
+ old_workflow?: Workflow;
9166
+ }
9167
+ /** event-workflow-updated */
9168
+ export interface EventWorkflowUpdated {
9169
+ old_workflow?: Workflow;
9170
+ workflow: Workflow;
9171
+ }
9006
9172
  /**
9007
9173
  * export-audit-logs-request
9008
9174
  * Request object to get a log's information.
@@ -9078,6 +9244,7 @@ export declare enum ExternalSystemType {
9078
9244
  JiraDataCenter = "jira_data_center",
9079
9245
  Linear = "linear",
9080
9246
  Rocketlane = "rocketlane",
9247
+ S3 = "s3",
9081
9248
  SalesforceSales = "salesforce_sales",
9082
9249
  SalesforceService = "salesforce_service",
9083
9250
  Servicenow = "servicenow",
@@ -9236,6 +9403,12 @@ export interface FieldValidation {
9236
9403
  /** field-value */
9237
9404
  export type FieldValue = (FieldValueBool | FieldValueBoolList | FieldValueComposite | FieldValueCompositeList | FieldValueDateList | FieldValueDateTimeList | FieldValueDateTimeValue | FieldValueDateValue | FieldValueDouble | FieldValueDoubleList | FieldValueId | FieldValueIdList | FieldValueInt64 | FieldValueInt64List | FieldValueStage | FieldValueString | FieldValueStringList | FieldValueTagSummary | FieldValueTagSummaryList) & {
9238
9405
  type: FieldValueType;
9406
+ /**
9407
+ * The metadata for translation, converted to a locale-specific value
9408
+ * in the API.
9409
+ * @format text
9410
+ */
9411
+ display_value?: string;
9239
9412
  };
9240
9413
  /** field-value-bool */
9241
9414
  export interface FieldValueBool {
@@ -9383,6 +9556,12 @@ export declare enum GenericNotificationEventType {
9383
9556
  * knowledge base.
9384
9557
  */
9385
9558
  export interface GetReplyRequest {
9559
+ /**
9560
+ * The language in which Turing should operate. The language should be
9561
+ * passed in IETF BCP 47 format. If not specified, defaults to en-US.
9562
+ * @format text
9563
+ */
9564
+ language?: string;
9386
9565
  /**
9387
9566
  * The query string.
9388
9567
  * @format text
@@ -9967,6 +10146,9 @@ export type Incident = AtomBase & {
9967
10146
  reported_by?: EnumValue;
9968
10147
  /** The properties of an enum value. */
9969
10148
  severity?: EnumValue;
10149
+ /** SLA summary for the object. */
10150
+ sla_summary?: ArchetypeSlaSummary;
10151
+ sla_tracker?: SlaTrackerSummary;
9970
10152
  /** The properties of an enum value. */
9971
10153
  source?: EnumValue;
9972
10154
  /** Describes the current stage of a object. */
@@ -10190,6 +10372,11 @@ export interface IncidentsGroupRequest {
10190
10372
  group_by: string;
10191
10373
  /** Provides ways to specify date ranges on objects. */
10192
10374
  identified_date?: DateFilter;
10375
+ /**
10376
+ * Filters for incidents with any of the provided impacted customers.
10377
+ * @example ["ACC-12345"]
10378
+ */
10379
+ impacted_customers?: string[];
10193
10380
  /**
10194
10381
  * The maximum number of groups to return. If not set, then the
10195
10382
  * default is '10'.
@@ -10295,6 +10482,11 @@ export interface IncidentsListRequest {
10295
10482
  custom_fields?: object;
10296
10483
  /** Provides ways to specify date ranges on objects. */
10297
10484
  identified_date?: DateFilter;
10485
+ /**
10486
+ * Filters for incidents with any of the provided impacted customers.
10487
+ * @example ["ACC-12345"]
10488
+ */
10489
+ impacted_customers?: string[];
10298
10490
  /**
10299
10491
  * The maximum number of items.
10300
10492
  * @format int32
@@ -10660,6 +10852,21 @@ export interface LegacyStageSummary {
10660
10852
  name: string;
10661
10853
  stage?: CustomStageSummary;
10662
10854
  }
10855
+ /** line-item-base-summary */
10856
+ export type LineItemBaseSummary = AtomBaseSummary & {
10857
+ pricing: PricingSummary;
10858
+ /**
10859
+ * The quantity of units purchased.
10860
+ * @format int32
10861
+ */
10862
+ quantity?: number;
10863
+ sku: SkuSummary;
10864
+ /**
10865
+ * The used quantity units.
10866
+ * @format int32
10867
+ */
10868
+ used_quantity?: number;
10869
+ };
10663
10870
  /**
10664
10871
  * line-visualization-x-axis
10665
10872
  * The X-axis for a line visualization.
@@ -11204,6 +11411,8 @@ export type Meeting = AtomBase & {
11204
11411
  */
11205
11412
  title?: string;
11206
11413
  transcript?: ArtifactSummary;
11414
+ /** The properties of an enum value. */
11415
+ visibility?: EnumValue;
11207
11416
  };
11208
11417
  /** The channel of meeting. */
11209
11418
  export declare enum MeetingChannel {
@@ -12083,6 +12292,8 @@ export type ObjectMemberSummary = AtomBaseSummary & {
12083
12292
  /** Sync information for records synced into/from DevRev. */
12084
12293
  sync_metadata?: SyncMetadataSummary;
12085
12294
  };
12295
+ /** one-time-line-item-summary */
12296
+ export type OneTimeLineItemSummary = LineItemBaseSummary;
12086
12297
  /** operation-search-summary */
12087
12298
  export type OperationSearchSummary = SearchSummaryBase & {
12088
12299
  operation: OperationSummary;
@@ -12945,6 +13156,8 @@ export interface PartsListRequest {
12945
13156
  * @example ["DEVU-12345"]
12946
13157
  */
12947
13158
  created_by?: string[];
13159
+ /** Provides ways to specify date ranges on objects. */
13160
+ created_date_v2?: DateFilter;
12948
13161
  /**
12949
13162
  * The cursor to resume iteration from. If not provided, then
12950
13163
  * iteration starts from the beginning.
@@ -12972,6 +13185,8 @@ export interface PartsListRequest {
12972
13185
  * @example ["DEVU-12345"]
12973
13186
  */
12974
13187
  modified_by?: string[];
13188
+ /** Provides ways to specify date ranges on objects. */
13189
+ modified_date_v2?: DateFilter;
12975
13190
  /** Filters for parts of the provided name(s). */
12976
13191
  name?: string[];
12977
13192
  /**
@@ -13253,6 +13468,74 @@ export type PreferencesUpdateRequest = UpdateUserPreferences & {
13253
13468
  export interface PreferencesUpdateResponse {
13254
13469
  preferences: Preferences;
13255
13470
  }
13471
+ /**
13472
+ * price-slab-summary
13473
+ * Helps in defining the range pricing for cases such as tiered pricing,
13474
+ * volume pricing etc. For Example, if the pricing for first 100 api calls
13475
+ * per calls is $X and after that its $Y till infinity.
13476
+ */
13477
+ export interface PriceSlabSummary {
13478
+ /**
13479
+ * The flat price for the complete slab, irrespective of qunatity one
13480
+ * uses in this price slab. This can be set only if unit price is set.
13481
+ * @format double
13482
+ */
13483
+ flat_price?: number;
13484
+ /**
13485
+ * The price for each unit.
13486
+ * @format double
13487
+ */
13488
+ unit_price?: number;
13489
+ /**
13490
+ * the quantity upto which this price is applicable. You can set this
13491
+ * value only if up to infinity is not set to true.
13492
+ * @format int32
13493
+ */
13494
+ up_to?: number;
13495
+ /**
13496
+ * If true, this price slab is applicable for all the remaining
13497
+ * quantities till infinity.
13498
+ */
13499
+ up_to_inf?: boolean;
13500
+ }
13501
+ /** Billing frequency of the SKU. */
13502
+ export declare enum PricingBillingCycle {
13503
+ Monthly = "monthly",
13504
+ OneTime = "one_time",
13505
+ Yearly = "yearly"
13506
+ }
13507
+ /** pricing-summary */
13508
+ export type PricingSummary = AtomBaseSummary & {
13509
+ /** Billing frequency of the SKU. */
13510
+ billing_cycle: PricingBillingCycle;
13511
+ /**
13512
+ * Number of units in each block. For example, If the metered units is
13513
+ * 540 and the block size is 100. Then the quantity will be 5.4. The
13514
+ * default value is 1.
13515
+ * @format int32
13516
+ */
13517
+ block_size?: number;
13518
+ /**
13519
+ * Currency used for the pricing. For example, USD, INR etc. Defaults
13520
+ * to USD.
13521
+ * @format text
13522
+ */
13523
+ currency: string;
13524
+ /**
13525
+ * if true then this pricing object can be used for new purchases. If
13526
+ * false then no new purchases can be made with this pricing object
13527
+ * but existing purchases can still use this pricing object. Defaults
13528
+ * to true.
13529
+ */
13530
+ is_active?: boolean;
13531
+ /**
13532
+ * Whether the slabs should be priced tiered or flat. The default
13533
+ * value is false.
13534
+ */
13535
+ is_tiered?: boolean;
13536
+ /** List of price slabs for the given currency. */
13537
+ price_slabs: PriceSlabSummary[];
13538
+ };
13256
13539
  /** Type of the value. */
13257
13540
  export declare enum PrimitiveValueType {
13258
13541
  Attribute = "attribute",
@@ -13740,6 +14023,8 @@ export declare enum RecordTemplateState {
13740
14023
  Inactive = "inactive",
13741
14024
  NeedsAttention = "needs_attention"
13742
14025
  }
14026
+ /** recurring-line-item-summary */
14027
+ export type RecurringLineItemSummary = LineItemBaseSummary;
13743
14028
  /** remove-tag-with-value */
13744
14029
  export interface RemoveTagWithValue {
13745
14030
  /**
@@ -16003,6 +16288,71 @@ export interface ServiceAccountsUpdateRequest {
16003
16288
  export interface ServiceAccountsUpdateResponse {
16004
16289
  service_account: ServiceAccount;
16005
16290
  }
16291
+ /** service-plan */
16292
+ export type ServicePlan = AtomBase & {
16293
+ account?: AccountSummary;
16294
+ /** The billing frequency of the service plan. */
16295
+ billing_cycle: ServicePlanBillingCycle;
16296
+ /**
16297
+ * Settings related to payment, proration, etc. Configurations may or may
16298
+ * not be defined by a DevO. 1. If DevO defines configurations then same
16299
+ * configurations are copied to RevO also to sub pack (for now, later RevO
16300
+ * can also set) 2. If DevO doesn't set anything then these configurations
16301
+ * would be set to default by application for which they were being
16302
+ * defined (for eg. if DevO doesn't set payment method for it's RevOs then
16303
+ * stripe would set it to 'charge_automatically' by default).
16304
+ */
16305
+ configurations?: Configuration;
16306
+ /**
16307
+ * The currency on which the service plan is created.
16308
+ * @format text
16309
+ */
16310
+ currency: string;
16311
+ /**
16312
+ * Description for the Service Plan.
16313
+ * @format text
16314
+ */
16315
+ description?: string;
16316
+ /**
16317
+ * Human readable name for the service plan.
16318
+ * @format text
16319
+ */
16320
+ name: string;
16321
+ /** The one-time invoice items attached to the service plan. */
16322
+ one_time_line_items?: OneTimeLineItemSummary[];
16323
+ /** The recurring items inside the service plan. */
16324
+ recurring_line_items?: RecurringLineItemSummary[];
16325
+ rev_org: OrgSummary;
16326
+ /**
16327
+ * The status of the service plan indicates its current state. If the
16328
+ * status is 'active,' it means the service plan items are in use and
16329
+ * billed every cycle. If the status is 'cancelled,' it signifies that the
16330
+ * service plan has been terminated and is no longer active or considered
16331
+ * for billing.
16332
+ */
16333
+ status?: ServicePlanStatus;
16334
+ /**
16335
+ * The trial details store the time interval periods during which the
16336
+ * services offered in the service plan are not charged.
16337
+ */
16338
+ trial_details?: TrialPeriod[];
16339
+ };
16340
+ /** The billing frequency of the service plan. */
16341
+ export declare enum ServicePlanBillingCycle {
16342
+ Monthly = "monthly"
16343
+ }
16344
+ /**
16345
+ * The status of the service plan indicates its current state. If the
16346
+ * status is 'active,' it means the service plan items are in use and
16347
+ * billed every cycle. If the status is 'cancelled,' it signifies that the
16348
+ * service plan has been terminated and is no longer active or considered
16349
+ * for billing.
16350
+ */
16351
+ export declare enum ServicePlanStatus {
16352
+ Active = "active",
16353
+ Cancelled = "cancelled",
16354
+ Paused = "paused"
16355
+ }
16006
16356
  /** set-issue-selector */
16007
16357
  export interface SetIssueSelector {
16008
16358
  /**
@@ -16214,6 +16564,70 @@ export interface SharedWithMembershipFilter {
16214
16564
  */
16215
16565
  role?: string;
16216
16566
  }
16567
+ /**
16568
+ * Current state of the SKU. A SKU is visible to RevOs only when it is
16569
+ * released.
16570
+ */
16571
+ export declare enum SkuState {
16572
+ Approved = "approved",
16573
+ Draft = "draft",
16574
+ EndOfLife = "end_of_life",
16575
+ EndOfSale = "end_of_sale",
16576
+ Released = "released"
16577
+ }
16578
+ /** sku-summary */
16579
+ export type SkuSummary = AtomBaseSummary & {
16580
+ /**
16581
+ * Description of the SKU.
16582
+ * @format text
16583
+ */
16584
+ description?: string;
16585
+ /**
16586
+ * Human readable name of the SKU. For example; Basic, Premium, etc.
16587
+ * @format text
16588
+ */
16589
+ family_name: string;
16590
+ /**
16591
+ * Invoice Description is meant to be displayable on the invoice
16592
+ * against the usage for the SKU.
16593
+ * @format text
16594
+ */
16595
+ invoice_description?: string;
16596
+ /**
16597
+ * If flag is enabled then the usage will be prorated for the time the
16598
+ * SKU is active.
16599
+ */
16600
+ is_duration_based_proration_enabled?: boolean;
16601
+ /**
16602
+ * Indicates whether the SKU, particularly of type subscription, is a
16603
+ * user based licensed SKU. If set to true, the licensing mechanism
16604
+ * for the SKU is based on the number of individual users, each unique
16605
+ * user is required to have a separate license.
16606
+ */
16607
+ is_user_based_license?: boolean;
16608
+ /**
16609
+ * Minimum duration in minutes for the SKU usage after which the SKU
16610
+ * would be charged.
16611
+ * @format int32
16612
+ */
16613
+ minimum_duration_to_charge?: number;
16614
+ /** It defines the type of SKU. */
16615
+ sku_type: SkuType;
16616
+ /**
16617
+ * Current state of the SKU. A SKU is visible to RevOs only when it is
16618
+ * released.
16619
+ */
16620
+ state: SkuState;
16621
+ };
16622
+ /** It defines the type of SKU. */
16623
+ export declare enum SkuType {
16624
+ Consumption = "consumption",
16625
+ ConsumptionAddon = "consumption_addon",
16626
+ OneOffAddon = "one_off_addon",
16627
+ OneOffCharge = "one_off_charge",
16628
+ Subscription = "subscription",
16629
+ SubscriptionAddon = "subscription_addon"
16630
+ }
16217
16631
  /** sla */
16218
16632
  export type Sla = AtomBase & {
16219
16633
  /**
@@ -16856,7 +17270,8 @@ export declare enum SnapWidgetNamespace {
16856
17270
  EmailPreview = "email_preview",
16857
17271
  LinkPreview = "link_preview",
16858
17272
  MeetingPreview = "meeting_preview",
16859
- PlugNudge = "plug_nudge"
17273
+ PlugNudge = "plug_nudge",
17274
+ SideThread = "side_thread"
16860
17275
  }
16861
17276
  /**
16862
17277
  * snap-widget-open-plug-widget-action
@@ -17287,6 +17702,17 @@ export interface SubWidget {
17287
17702
  */
17288
17703
  visualization: WidgetVisualization;
17289
17704
  }
17705
+ /** subscribers-get-request */
17706
+ export interface SubscribersGetRequest {
17707
+ /**
17708
+ * The object's ID.
17709
+ * @format id
17710
+ * @example "ISS-12345"
17711
+ */
17712
+ id: string;
17713
+ }
17714
+ /** subscribers-get-response */
17715
+ export type SubscribersGetResponse = object;
17290
17716
  /** subscribers-list-request */
17291
17717
  export interface SubscribersListRequest {
17292
17718
  /**
@@ -18551,6 +18977,8 @@ export type Ticket = WorkBase & {
18551
18977
  /** Channel IDs of the ticket. */
18552
18978
  channels_v2?: ExternalCommunicationChannelSummary[];
18553
18979
  group?: GroupSummary;
18980
+ /** Whether the object is frozen or not. */
18981
+ is_frozen?: boolean;
18554
18982
  /** Whether the ticket needs a response. */
18555
18983
  needs_response?: boolean;
18556
18984
  rev_org?: OrgSummary;
@@ -18603,8 +19031,40 @@ export type TicketSummary = WorkBaseSummary & {
18603
19031
  /** Severity of the ticket. */
18604
19032
  severity?: TicketSeverity;
18605
19033
  };
19034
+ /**
19035
+ * time-interval
19036
+ * A time period between two concrete timestamps.
19037
+ */
19038
+ export type TimeInterval = object;
18606
19039
  /** time-metric-tracker */
18607
- export type TimeMetricTracker = MetricTrackerBase;
19040
+ export type TimeMetricTracker = MetricTrackerBase & {
19041
+ /**
19042
+ * Intervals already in the past when the metric was on. It might have
19043
+ * been out-of-schedule in those times however.
19044
+ */
19045
+ active_intervals?: TimeInterval[];
19046
+ /**
19047
+ * The time the metric was last started if it's in a running state.
19048
+ * @format date-time
19049
+ * @example "2023-01-01T12:00:00.000Z"
19050
+ */
19051
+ last_started_at?: string;
19052
+ org_schedule?: OrgScheduleSummary;
19053
+ /** The current status of the metric. */
19054
+ status: TimeMetricTrackerStatus;
19055
+ /**
19056
+ * The amount of time already consumed when the metric was last
19057
+ * stopped. Units are same as present in metric definition.
19058
+ * @format int32
19059
+ */
19060
+ time_consumed?: number;
19061
+ };
19062
+ /** The current status of the metric. */
19063
+ export declare enum TimeMetricTrackerStatus {
19064
+ Completed = "completed",
19065
+ Paused = "paused",
19066
+ Running = "running"
19067
+ }
18608
19068
  /** time-metric-tracker-summary */
18609
19069
  export type TimeMetricTrackerSummary = MetricTrackerBaseSummary;
18610
19070
  /** timeline-change-event */
@@ -18860,6 +19320,7 @@ export interface TimelineEntriesListRequest {
18860
19320
  * all entries are returned.
18861
19321
  */
18862
19322
  collections?: TimelineEntriesCollection[];
19323
+ created_date?: DateTimeFilter;
18863
19324
  /**
18864
19325
  * The cursor to resume iteration from. If not provided, then
18865
19326
  * iteration starts from the beginning.
@@ -18875,8 +19336,9 @@ export interface TimelineEntriesListRequest {
18875
19336
  */
18876
19337
  labels?: string[];
18877
19338
  /**
18878
- * The maximum number of entries to return. If not set, then this
18879
- * defaults to `50`.
19339
+ * The maximum number of entries to return. Note that fewer (possibly
19340
+ * zero) entries may be returned even if there are more entries, where
19341
+ * the returned cursor(s) are guaranteed to be updated.
18880
19342
  * @format int32
18881
19343
  */
18882
19344
  limit?: number;
@@ -19193,6 +19655,25 @@ export interface TrackEventsPublishRequest {
19193
19655
  }
19194
19656
  /** track-events-publish-response */
19195
19657
  export type TrackEventsPublishResponse = object;
19658
+ /**
19659
+ * trial-period
19660
+ * The trial period duration during which the services offered in the
19661
+ * service plan are not charged.
19662
+ */
19663
+ export interface TrialPeriod {
19664
+ /**
19665
+ * Trial period end time.
19666
+ * @format date-time
19667
+ * @example "2023-01-01T12:00:00.000Z"
19668
+ */
19669
+ trial_period_end_time: string;
19670
+ /**
19671
+ * Trial period start time.
19672
+ * @format date-time
19673
+ * @example "2023-01-01T12:00:00.000Z"
19674
+ */
19675
+ trial_period_start_time: string;
19676
+ }
19196
19677
  /** turing-sources */
19197
19678
  export type TuringSources = (ArticleSummary | QuestionAnswerSummary) & {
19198
19679
  type: TuringSourcesType;
@@ -20862,7 +21343,10 @@ export interface WebhookEventRequest {
20862
21343
  account_created?: EventAccountCreated;
20863
21344
  account_deleted?: EventAccountDeleted;
20864
21345
  account_updated?: EventAccountUpdated;
21346
+ ai_agent_created?: EventAiAgentCreated;
21347
+ ai_agent_deleted?: EventAiAgentDeleted;
20865
21348
  ai_agent_response?: EventAiAgentResponse;
21349
+ ai_agent_updated?: EventAiAgentUpdated;
20866
21350
  article_created?: EventArticleCreated;
20867
21351
  article_deleted?: EventArticleDeleted;
20868
21352
  article_updated?: EventArticleUpdated;
@@ -20903,6 +21387,8 @@ export interface WebhookEventRequest {
20903
21387
  rev_user_created?: EventRevUserCreated;
20904
21388
  rev_user_deleted?: EventRevUserDeleted;
20905
21389
  rev_user_updated?: EventRevUserUpdated;
21390
+ service_plan_created?: EventServicePlanCreated;
21391
+ service_plan_updated?: EventServicePlanUpdated;
20906
21392
  sla_tracker_created?: EventSlaTrackerCreated;
20907
21393
  sla_tracker_deleted?: EventSlaTrackerDeleted;
20908
21394
  sla_tracker_fetched?: EventSlaTrackerFetched;
@@ -20948,6 +21434,9 @@ export interface WebhookEventRequest {
20948
21434
  work_deleted?: EventWorkDeleted;
20949
21435
  work_fetched?: EventWorkFetched;
20950
21436
  work_updated?: EventWorkUpdated;
21437
+ workflow_created?: EventWorkflowCreated;
21438
+ workflow_deleted?: EventWorkflowDeleted;
21439
+ workflow_updated?: EventWorkflowUpdated;
20951
21440
  }
20952
21441
  /** webhook-event-response */
20953
21442
  export interface WebhookEventResponse {
@@ -21668,7 +22157,7 @@ export declare enum WidgetVisualizationType {
21668
22157
  export interface WidgetsGetRequest {
21669
22158
  /**
21670
22159
  * The requested widget's ID.
21671
- * @format text
22160
+ * @format id
21672
22161
  */
21673
22162
  id: string;
21674
22163
  }
@@ -21706,6 +22195,13 @@ export type WorkBase = AtomBase & {
21706
22195
  * @example ["don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"]
21707
22196
  */
21708
22197
  custom_schema_fragments?: string[];
22198
+ /**
22199
+ * An opaque key that's associated with the work item that's
22200
+ * guaranteed to be unique across all work items of same type (issue,
22201
+ * ticket, etc).
22202
+ * @format text
22203
+ */
22204
+ external_ref?: string;
21709
22205
  /** The users that own the work. */
21710
22206
  owned_by: UserSummary[];
21711
22207
  /** Users that reported the work. */
@@ -21782,6 +22278,8 @@ export declare enum WorkType {
21782
22278
  Task = "task",
21783
22279
  Ticket = "ticket"
21784
22280
  }
22281
+ /** workflow */
22282
+ export type Workflow = AtomBase;
21785
22283
  /** workflow-run-summary */
21786
22284
  export type WorkflowRunSummary = AtomBaseSummary;
21787
22285
  /** workflow-search-summary */
@@ -21828,6 +22326,14 @@ export type WorksCreateRequest = (WorksCreateRequestIssue | WorksCreateRequestOp
21828
22326
  * validate_required_fields: true.
21829
22327
  */
21830
22328
  custom_schema_spec?: CustomSchemaSpec;
22329
+ /**
22330
+ * The external reference for the work item. This must be unique
22331
+ * within the type of work item.
22332
+ * @format text
22333
+ * @minLength 1
22334
+ * @maxLength 512
22335
+ */
22336
+ external_ref?: string;
21831
22337
  /**
21832
22338
  * The users that own the work.
21833
22339
  * @example ["DEVU-12345"]
@@ -22042,6 +22548,25 @@ export interface WorksCreateRequestTicket {
22042
22548
  * @format id
22043
22549
  */
22044
22550
  source_channel_v2?: string;
22551
+ /**
22552
+ * Visibility enum ID of the ticket. Stock allowed values:
22553
+ * ```
22554
+ * {
22555
+ * "id": 1,
22556
+ * "label": "internal",
22557
+ * "ordinal": 1,
22558
+ * "overridable": false
22559
+ * },
22560
+ * {
22561
+ * "id": 2,
22562
+ * "label": "external",
22563
+ * "ordinal": 2,
22564
+ * "overridable": false
22565
+ * }
22566
+ * ```
22567
+ * @format int64
22568
+ */
22569
+ visibility?: number;
22045
22570
  }
22046
22571
  /** works-create-response */
22047
22572
  export interface WorksCreateResponse {
@@ -22078,6 +22603,8 @@ export interface WorksExportRequest {
22078
22603
  created_date?: DateFilter;
22079
22604
  /** Filters for custom fields. */
22080
22605
  custom_fields?: object;
22606
+ /** Filters for work with any of the provided external references. */
22607
+ external_ref?: string[];
22081
22608
  /**
22082
22609
  * The number of work items to return. The default is '50', the
22083
22610
  * maximum is '5000'.
@@ -22207,6 +22734,8 @@ export interface WorksFilterTicket {
22207
22734
  subtype?: string[];
22208
22735
  /** The filter for survey aggregation. */
22209
22736
  surveys?: SurveyAggregationFilter;
22737
+ /** Visibility enum ID of the ticket. */
22738
+ visibility?: number[];
22210
22739
  }
22211
22740
  /** works-get-request */
22212
22741
  export interface WorksGetRequest {
@@ -22247,6 +22776,8 @@ export interface WorksListRequest {
22247
22776
  cursor?: string;
22248
22777
  /** Filters for custom fields. */
22249
22778
  custom_fields?: object;
22779
+ /** Filters for work with any of the provided external references. */
22780
+ external_ref?: string[];
22250
22781
  issue?: WorksFilterIssue;
22251
22782
  /**
22252
22783
  * The maximum number of works to return. The default is '50'.
@@ -22686,6 +23217,25 @@ export interface WorksUpdateRequestTicket {
22686
23217
  * @format id
22687
23218
  */
22688
23219
  source_channel_v2?: string | null;
23220
+ /**
23221
+ * Visibility enum ID of the ticket. Stock allowed values:
23222
+ * ```
23223
+ * {
23224
+ * "id": 1,
23225
+ * "label": "internal",
23226
+ * "ordinal": 1,
23227
+ * "overridable": false
23228
+ * },
23229
+ * {
23230
+ * "id": 2,
23231
+ * "label": "external",
23232
+ * "ordinal": 2,
23233
+ * "overridable": false
23234
+ * }
23235
+ * ```
23236
+ * @format int64
23237
+ */
23238
+ visibility?: number;
22689
23239
  }
22690
23240
  /** works-update-request-ticket-channels */
22691
23241
  export interface WorksUpdateRequestTicketChannels {
@@ -22748,7 +23298,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
22748
23298
  protected mergeRequestParams(params1: AxiosRequestConfig, params2?: AxiosRequestConfig): AxiosRequestConfig;
22749
23299
  protected stringifyFormItem(formItem: unknown): string;
22750
23300
  protected createFormData(input: Record<string, unknown>): FormData;
22751
- request: <T = any, _E = any>({ secure, path, type, query, format, body, ...params }: FullRequestParams) => Promise<AxiosResponse<T, any>>;
23301
+ request: <T = any, _E = any>({ secure, path, type, query, format, body, ...params }: FullRequestParams) => Promise<AxiosResponse<T, any, {}>>;
22752
23302
  }
22753
23303
  /**
22754
23304
  * @title DevRev REST API
@@ -22767,7 +23317,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
22767
23317
  * @request POST:/accounts.create
22768
23318
  * @secure
22769
23319
  */
22770
- accountsCreate: (data: AccountsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsCreateResponse, any>>;
23320
+ accountsCreate: (data: AccountsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsCreateResponse, any, {}>>;
22771
23321
  /**
22772
23322
  * @description Deletes an account.
22773
23323
  *
@@ -22777,7 +23327,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
22777
23327
  * @request POST:/accounts.delete
22778
23328
  * @secure
22779
23329
  */
22780
- accountsDelete: (data: AccountsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
23330
+ accountsDelete: (data: AccountsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
22781
23331
  /**
22782
23332
  * @description Exports a collection of accounts.
22783
23333
  *
@@ -22845,7 +23395,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
22845
23395
  tier?: string[];
22846
23396
  /** Array of websites of accounts to be filtered. */
22847
23397
  websites?: string[];
22848
- }, params?: RequestParams) => Promise<AxiosResponse<AccountsExportResponse, any>>;
23398
+ }, params?: RequestParams) => Promise<AxiosResponse<AccountsExportResponse, any, {}>>;
22849
23399
  /**
22850
23400
  * @description Exports a collection of accounts.
22851
23401
  *
@@ -22855,7 +23405,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
22855
23405
  * @request POST:/accounts.export
22856
23406
  * @secure
22857
23407
  */
22858
- accountsExportPost: (data: AccountsExportRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsExportResponse, any>>;
23408
+ accountsExportPost: (data: AccountsExportRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsExportResponse, any, {}>>;
22859
23409
  /**
22860
23410
  * @description Retrieves an account's information.
22861
23411
  *
@@ -22872,7 +23422,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
22872
23422
  * @example "ACC-12345"
22873
23423
  */
22874
23424
  id: string;
22875
- }, params?: RequestParams) => Promise<AxiosResponse<AccountsGetResponse, any>>;
23425
+ }, params?: RequestParams) => Promise<AxiosResponse<AccountsGetResponse, any, {}>>;
22876
23426
  /**
22877
23427
  * @description Retrieves an account's information.
22878
23428
  *
@@ -22882,7 +23432,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
22882
23432
  * @request POST:/accounts.get
22883
23433
  * @secure
22884
23434
  */
22885
- accountsGetPost: (data: AccountsGetRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsGetResponse, any>>;
23435
+ accountsGetPost: (data: AccountsGetRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsGetResponse, any, {}>>;
22886
23436
  /**
22887
23437
  * @description Gets a list of accounts.
22888
23438
  *
@@ -22960,7 +23510,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
22960
23510
  tier?: string[];
22961
23511
  /** Array of websites of accounts to be filtered. */
22962
23512
  websites?: string[];
22963
- }, params?: RequestParams) => Promise<AxiosResponse<AccountsListResponse, any>>;
23513
+ }, params?: RequestParams) => Promise<AxiosResponse<AccountsListResponse, any, {}>>;
22964
23514
  /**
22965
23515
  * @description Gets a list of accounts.
22966
23516
  *
@@ -22970,7 +23520,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
22970
23520
  * @request POST:/accounts.list
22971
23521
  * @secure
22972
23522
  */
22973
- accountsListPost: (data: AccountsListRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsListResponse, any>>;
23523
+ accountsListPost: (data: AccountsListRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsListResponse, any, {}>>;
22974
23524
  /**
22975
23525
  * @description Merges two accounts.
22976
23526
  *
@@ -22980,7 +23530,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
22980
23530
  * @request POST:/accounts.merge
22981
23531
  * @secure
22982
23532
  */
22983
- accountsMerge: (data: AccountsMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
23533
+ accountsMerge: (data: AccountsMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
22984
23534
  /**
22985
23535
  * @description Updates an account's information.
22986
23536
  *
@@ -22990,7 +23540,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
22990
23540
  * @request POST:/accounts.update
22991
23541
  * @secure
22992
23542
  */
22993
- accountsUpdate: (data: AccountsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsUpdateResponse, any>>;
23543
+ accountsUpdate: (data: AccountsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsUpdateResponse, any, {}>>;
22994
23544
  /**
22995
23545
  * @description Execute an AI agent input event asynchronously.
22996
23546
  *
@@ -23000,7 +23550,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23000
23550
  * @request POST:/ai-agents.events.execute-async
23001
23551
  * @secure
23002
23552
  */
23003
- aiAgentEventsExecuteAsync: (data: AiAgentEventsExecuteAsyncRequest, params?: RequestParams) => Promise<AxiosResponse<AiAgentEventsExecuteAsyncResponse, any>>;
23553
+ aiAgentEventsExecuteAsync: (data: AiAgentEventsExecuteAsyncRequest, params?: RequestParams) => Promise<AxiosResponse<AiAgentEventsExecuteAsyncResponse, any, {}>>;
23004
23554
  /**
23005
23555
  * @description Gets a single sync unit's information.
23006
23556
  *
@@ -23016,7 +23566,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23016
23566
  * @format id
23017
23567
  */
23018
23568
  id: string;
23019
- }, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsGetResponse, any>>;
23569
+ }, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsGetResponse, any, {}>>;
23020
23570
  /**
23021
23571
  * @description Gets a single sync unit's information.
23022
23572
  *
@@ -23026,7 +23576,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23026
23576
  * @request POST:/airdrop.sync-units.get
23027
23577
  * @secure
23028
23578
  */
23029
- airdropSyncUnitsGetPost: (data: AirdropSyncUnitsGetRequest, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsGetResponse, any>>;
23579
+ airdropSyncUnitsGetPost: (data: AirdropSyncUnitsGetRequest, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsGetResponse, any, {}>>;
23030
23580
  /**
23031
23581
  * @description Gets a list of sync unit historical records.
23032
23582
  *
@@ -23066,7 +23616,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23066
23616
  * used.
23067
23617
  */
23068
23618
  mode?: ListMode;
23069
- }, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsHistoryResponse, any>>;
23619
+ }, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsHistoryResponse, any, {}>>;
23070
23620
  /**
23071
23621
  * @description Gets a list of sync unit historical records.
23072
23622
  *
@@ -23076,7 +23626,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23076
23626
  * @request POST:/airdrop.sync-units.history
23077
23627
  * @secure
23078
23628
  */
23079
- airdropSyncUnitsHistoryPost: (data: AirdropSyncUnitsHistoryRequest, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsHistoryResponse, any>>;
23629
+ airdropSyncUnitsHistoryPost: (data: AirdropSyncUnitsHistoryRequest, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsHistoryResponse, any, {}>>;
23080
23630
  /**
23081
23631
  * @description Get count of articles matching given filter.
23082
23632
  *
@@ -23143,7 +23693,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23143
23693
  * @example ["TAG-12345"]
23144
23694
  */
23145
23695
  tags?: string[];
23146
- }, params?: RequestParams) => Promise<AxiosResponse<ArticlesCountResponse, any>>;
23696
+ }, params?: RequestParams) => Promise<AxiosResponse<ArticlesCountResponse, any, {}>>;
23147
23697
  /**
23148
23698
  * @description Get count of articles matching given filter.
23149
23699
  *
@@ -23153,7 +23703,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23153
23703
  * @request POST:/articles.count
23154
23704
  * @secure
23155
23705
  */
23156
- articlesCountPost: (data: ArticlesCountRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesCountResponse, any>>;
23706
+ articlesCountPost: (data: ArticlesCountRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesCountResponse, any, {}>>;
23157
23707
  /**
23158
23708
  * @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.
23159
23709
  *
@@ -23163,7 +23713,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23163
23713
  * @request POST:/articles.create
23164
23714
  * @secure
23165
23715
  */
23166
- createArticle: (data: ArticlesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesCreateResponse, any>>;
23716
+ createArticle: (data: ArticlesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesCreateResponse, any, {}>>;
23167
23717
  /**
23168
23718
  * @description Deletes an article.
23169
23719
  *
@@ -23173,7 +23723,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23173
23723
  * @request POST:/articles.delete
23174
23724
  * @secure
23175
23725
  */
23176
- deleteArticle: (data: ArticlesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
23726
+ deleteArticle: (data: ArticlesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
23177
23727
  /**
23178
23728
  * @description Gets an article.
23179
23729
  *
@@ -23190,7 +23740,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23190
23740
  * @example "ARTICLE-12345"
23191
23741
  */
23192
23742
  id: string;
23193
- }, params?: RequestParams) => Promise<AxiosResponse<ArticlesGetResponse, any>>;
23743
+ }, params?: RequestParams) => Promise<AxiosResponse<ArticlesGetResponse, any, {}>>;
23194
23744
  /**
23195
23745
  * @description Gets an article.
23196
23746
  *
@@ -23200,7 +23750,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23200
23750
  * @request POST:/articles.get
23201
23751
  * @secure
23202
23752
  */
23203
- getArticlePost: (data: ArticlesGetRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesGetResponse, any>>;
23753
+ getArticlePost: (data: ArticlesGetRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesGetResponse, any, {}>>;
23204
23754
  /**
23205
23755
  * @description Lists a collection of articles.
23206
23756
  *
@@ -23278,7 +23828,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23278
23828
  * @example ["TAG-12345"]
23279
23829
  */
23280
23830
  tags?: string[];
23281
- }, params?: RequestParams) => Promise<AxiosResponse<ArticlesListResponse, any>>;
23831
+ }, params?: RequestParams) => Promise<AxiosResponse<ArticlesListResponse, any, {}>>;
23282
23832
  /**
23283
23833
  * @description Lists a collection of articles.
23284
23834
  *
@@ -23288,7 +23838,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23288
23838
  * @request POST:/articles.list
23289
23839
  * @secure
23290
23840
  */
23291
- listArticlesPost: (data: ArticlesListRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesListResponse, any>>;
23841
+ listArticlesPost: (data: ArticlesListRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesListResponse, any, {}>>;
23292
23842
  /**
23293
23843
  * @description Updates an article.
23294
23844
  *
@@ -23298,7 +23848,44 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23298
23848
  * @request POST:/articles.update
23299
23849
  * @secure
23300
23850
  */
23301
- updateArticle: (data: ArticlesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesUpdateResponse, any>>;
23851
+ updateArticle: (data: ArticlesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesUpdateResponse, any, {}>>;
23852
+ /**
23853
+ * @description Redirects to the artifact's download URL.
23854
+ *
23855
+ * @tags artifacts
23856
+ * @name ArtifactsDownload
23857
+ * @summary Download Artifacts
23858
+ * @request GET:/artifacts.download
23859
+ * @secure
23860
+ */
23861
+ artifactsDownload: (query: {
23862
+ /**
23863
+ * The ID of the artifact to be downloaded.
23864
+ * @format id
23865
+ * @example "ARTIFACT-12345"
23866
+ */
23867
+ id: string;
23868
+ /**
23869
+ * The access key for the artifact.
23870
+ * @format text
23871
+ */
23872
+ key?: string;
23873
+ /**
23874
+ * The version of the artifact that needs to be downloaded.
23875
+ * @format text
23876
+ */
23877
+ version?: string;
23878
+ }, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
23879
+ /**
23880
+ * @description Redirects to the artifact's download URL.
23881
+ *
23882
+ * @tags artifacts
23883
+ * @name ArtifactsDownloadPost
23884
+ * @summary Download Artifacts (POST)
23885
+ * @request POST:/artifacts.download
23886
+ * @secure
23887
+ */
23888
+ artifactsDownloadPost: (data: ArtifactsDownloadRequest, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
23302
23889
  /**
23303
23890
  * @description Gets the requested artifact's information.
23304
23891
  *
@@ -23320,7 +23907,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23320
23907
  * @format text
23321
23908
  */
23322
23909
  version?: string;
23323
- }, params?: RequestParams) => Promise<AxiosResponse<ArtifactsGetResponse, any>>;
23910
+ }, params?: RequestParams) => Promise<AxiosResponse<ArtifactsGetResponse, any, {}>>;
23324
23911
  /**
23325
23912
  * @description Gets the requested artifact's information.
23326
23913
  *
@@ -23330,7 +23917,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23330
23917
  * @request POST:/artifacts.get
23331
23918
  * @secure
23332
23919
  */
23333
- artifactsGetPost: (data: ArtifactsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsGetResponse, any>>;
23920
+ artifactsGetPost: (data: ArtifactsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsGetResponse, any, {}>>;
23334
23921
  /**
23335
23922
  * @description List the artifacts attached to an object.
23336
23923
  *
@@ -23346,7 +23933,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23346
23933
  * @format id
23347
23934
  */
23348
23935
  parent_id?: string;
23349
- }, params?: RequestParams) => Promise<AxiosResponse<ArtifactsListResponse, any>>;
23936
+ }, params?: RequestParams) => Promise<AxiosResponse<ArtifactsListResponse, any, {}>>;
23350
23937
  /**
23351
23938
  * @description List the artifacts attached to an object.
23352
23939
  *
@@ -23356,7 +23943,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23356
23943
  * @request POST:/artifacts.list
23357
23944
  * @secure
23358
23945
  */
23359
- artifactsListPost: (data: ArtifactsListRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsListResponse, any>>;
23946
+ artifactsListPost: (data: ArtifactsListRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsListResponse, any, {}>>;
23360
23947
  /**
23361
23948
  * @description Gets the download URL for the artifact.
23362
23949
  *
@@ -23378,7 +23965,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23378
23965
  * @format text
23379
23966
  */
23380
23967
  version?: string;
23381
- }, params?: RequestParams) => Promise<AxiosResponse<ArtifactsLocateResponse, any>>;
23968
+ }, params?: RequestParams) => Promise<AxiosResponse<ArtifactsLocateResponse, any, {}>>;
23382
23969
  /**
23383
23970
  * @description Gets the download URL for the artifact.
23384
23971
  *
@@ -23388,7 +23975,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23388
23975
  * @request POST:/artifacts.locate
23389
23976
  * @secure
23390
23977
  */
23391
- artifactsLocatePost: (data: ArtifactsLocateRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsLocateResponse, any>>;
23978
+ artifactsLocatePost: (data: ArtifactsLocateRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsLocateResponse, any, {}>>;
23392
23979
  /**
23393
23980
  * @description Creates an artifact and generates an upload URL for its data.
23394
23981
  *
@@ -23398,7 +23985,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23398
23985
  * @request POST:/artifacts.prepare
23399
23986
  * @secure
23400
23987
  */
23401
- artifactsPrepare: (data: ArtifactsPrepareRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsPrepareResponse, any>>;
23988
+ artifactsPrepare: (data: ArtifactsPrepareRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsPrepareResponse, any, {}>>;
23402
23989
  /**
23403
23990
  * @description Permanently deletes a version of an artifact.
23404
23991
  *
@@ -23408,7 +23995,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23408
23995
  * @request POST:/artifacts.versions.delete
23409
23996
  * @secure
23410
23997
  */
23411
- artifactsHardDeleteVersion: (data: ArtifactsHardDeleteVersionRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
23998
+ artifactsHardDeleteVersion: (data: ArtifactsHardDeleteVersionRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
23412
23999
  /**
23413
24000
  * @description Prepares a new version for an artifact, returning the URL and form data to upload the updated file.
23414
24001
  *
@@ -23418,7 +24005,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23418
24005
  * @request POST:/artifacts.versions.prepare
23419
24006
  * @secure
23420
24007
  */
23421
- artifactsVersionsPrepare: (data: ArtifactsVersionsPrepareRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsVersionsPrepareResponse, any>>;
24008
+ artifactsVersionsPrepare: (data: ArtifactsVersionsPrepareRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsVersionsPrepareResponse, any, {}>>;
23422
24009
  /**
23423
24010
  * @description Gets the specified object.
23424
24011
  *
@@ -23434,7 +24021,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23434
24021
  * @format id
23435
24022
  */
23436
24023
  id: string;
23437
- }, params?: RequestParams) => Promise<AxiosResponse<AtomsGetResponse, any>>;
24024
+ }, params?: RequestParams) => Promise<AxiosResponse<AtomsGetResponse, any, {}>>;
23438
24025
  /**
23439
24026
  * @description Gets the specified object.
23440
24027
  *
@@ -23444,7 +24031,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23444
24031
  * @request POST:/atoms.get
23445
24032
  * @secure
23446
24033
  */
23447
- atomsGetPost: (data: AtomsGetRequest, params?: RequestParams) => Promise<AxiosResponse<AtomsGetResponse, any>>;
24034
+ atomsGetPost: (data: AtomsGetRequest, params?: RequestParams) => Promise<AxiosResponse<AtomsGetResponse, any, {}>>;
23448
24035
  /**
23449
24036
  * @description Retrieves audit logs.
23450
24037
  *
@@ -23454,7 +24041,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23454
24041
  * @request POST:/audit-logs.fetch
23455
24042
  * @secure
23456
24043
  */
23457
- exportAuditLogs: (data: ExportAuditLogsRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
24044
+ exportAuditLogs: (data: ExportAuditLogsRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
23458
24045
  /**
23459
24046
  * @description Creates a JWT corresponding to the requested token type for the authenticated user.
23460
24047
  *
@@ -23464,7 +24051,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23464
24051
  * @request POST:/auth-tokens.create
23465
24052
  * @secure
23466
24053
  */
23467
- authTokensCreate: (data: AuthTokensCreateRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensCreateResponse, any>>;
24054
+ authTokensCreate: (data: AuthTokensCreateRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensCreateResponse, any, {}>>;
23468
24055
  /**
23469
24056
  * @description Revokes the token that matches the given token ID issued under the given Dev organization.
23470
24057
  *
@@ -23474,7 +24061,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23474
24061
  * @request POST:/auth-tokens.delete
23475
24062
  * @secure
23476
24063
  */
23477
- authTokensDelete: (data: AuthTokensDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
24064
+ authTokensDelete: (data: AuthTokensDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
23478
24065
  /**
23479
24066
  * @description Gets the token metadata corresponding to the given token ID under the given Dev organization.
23480
24067
  *
@@ -23490,7 +24077,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23490
24077
  * @format id
23491
24078
  */
23492
24079
  token_id: string;
23493
- }, params?: RequestParams) => Promise<AxiosResponse<AuthTokensGetResponse, any>>;
24080
+ }, params?: RequestParams) => Promise<AxiosResponse<AuthTokensGetResponse, any, {}>>;
23494
24081
  /**
23495
24082
  * @description Gets the token metadata corresponding to the given token ID under the given Dev organization.
23496
24083
  *
@@ -23500,7 +24087,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23500
24087
  * @request POST:/auth-tokens.get
23501
24088
  * @secure
23502
24089
  */
23503
- authTokensGetPost: (data: AuthTokensGetRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensGetResponse, any>>;
24090
+ authTokensGetPost: (data: AuthTokensGetRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensGetResponse, any, {}>>;
23504
24091
  /**
23505
24092
  * @description Returns the Dev organization, user and token attributes extracted from the auth token.
23506
24093
  *
@@ -23510,7 +24097,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23510
24097
  * @request GET:/auth-tokens.info
23511
24098
  * @secure
23512
24099
  */
23513
- authTokensInfo: (params?: RequestParams) => Promise<AxiosResponse<AuthTokensInfoResponse, any>>;
24100
+ authTokensInfo: (params?: RequestParams) => Promise<AxiosResponse<AuthTokensInfoResponse, any, {}>>;
23514
24101
  /**
23515
24102
  * @description Returns the Dev organization, user and token attributes extracted from the auth token.
23516
24103
  *
@@ -23520,7 +24107,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23520
24107
  * @request POST:/auth-tokens.info
23521
24108
  * @secure
23522
24109
  */
23523
- authTokensInfoPost: (data: AuthTokensInfoRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensInfoResponse, any>>;
24110
+ authTokensInfoPost: (data: AuthTokensInfoRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensInfoResponse, any, {}>>;
23524
24111
  /**
23525
24112
  * @description Gets the token metadata for all the tokens corresponding to the given token type issued for a given subject.
23526
24113
  *
@@ -23549,7 +24136,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23549
24136
  * @format id
23550
24137
  */
23551
24138
  subject?: string;
23552
- }, params?: RequestParams) => Promise<AxiosResponse<AuthTokensListResponse, any>>;
24139
+ }, params?: RequestParams) => Promise<AxiosResponse<AuthTokensListResponse, any, {}>>;
23553
24140
  /**
23554
24141
  * @description Gets the token metadata for all the tokens corresponding to the given token type issued for a given subject.
23555
24142
  *
@@ -23559,7 +24146,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23559
24146
  * @request POST:/auth-tokens.list
23560
24147
  * @secure
23561
24148
  */
23562
- authTokensListPost: (data: AuthTokensListRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensListResponse, any>>;
24149
+ authTokensListPost: (data: AuthTokensListRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensListResponse, any, {}>>;
23563
24150
  /**
23564
24151
  * @description Revokes all the tokens that matches the given token type created by the authenticated user.
23565
24152
  *
@@ -23569,7 +24156,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23569
24156
  * @request POST:/auth-tokens.self.delete
23570
24157
  * @secure
23571
24158
  */
23572
- authTokensSelfDelete: (data: AuthTokensSelfDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
24159
+ authTokensSelfDelete: (data: AuthTokensSelfDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
23573
24160
  /**
23574
24161
  * @description Updates token metadata of a token issued under a given Dev organization.
23575
24162
  *
@@ -23579,7 +24166,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23579
24166
  * @request POST:/auth-tokens.update
23580
24167
  * @secure
23581
24168
  */
23582
- authTokensUpdate: (data: AuthTokensUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensUpdateResponse, any>>;
24169
+ authTokensUpdate: (data: AuthTokensUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensUpdateResponse, any, {}>>;
23583
24170
  /**
23584
24171
  * @description Creates a new brand.
23585
24172
  *
@@ -23589,7 +24176,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23589
24176
  * @request POST:/brands.create
23590
24177
  * @secure
23591
24178
  */
23592
- brandsCreate: (data: BrandsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<BrandsCreateResponse, any>>;
24179
+ brandsCreate: (data: BrandsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<BrandsCreateResponse, any, {}>>;
23593
24180
  /**
23594
24181
  * @description Deletes a brand by its ID.
23595
24182
  *
@@ -23599,7 +24186,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23599
24186
  * @request POST:/brands.delete
23600
24187
  * @secure
23601
24188
  */
23602
- brandsDelete: (data: BrandsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
24189
+ brandsDelete: (data: BrandsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
23603
24190
  /**
23604
24191
  * @description Gets a brand by its ID.
23605
24192
  *
@@ -23615,7 +24202,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23615
24202
  * @format id
23616
24203
  */
23617
24204
  id: string;
23618
- }, params?: RequestParams) => Promise<AxiosResponse<BrandsGetResponse, any>>;
24205
+ }, params?: RequestParams) => Promise<AxiosResponse<BrandsGetResponse, any, {}>>;
23619
24206
  /**
23620
24207
  * @description Gets a brand by its ID.
23621
24208
  *
@@ -23625,7 +24212,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23625
24212
  * @request POST:/brands.get
23626
24213
  * @secure
23627
24214
  */
23628
- brandsGetPost: (data: BrandsGetRequest, params?: RequestParams) => Promise<AxiosResponse<BrandsGetResponse, any>>;
24215
+ brandsGetPost: (data: BrandsGetRequest, params?: RequestParams) => Promise<AxiosResponse<BrandsGetResponse, any, {}>>;
23629
24216
  /**
23630
24217
  * @description Lists all brands.
23631
24218
  *
@@ -23642,7 +24229,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23642
24229
  * @format text
23643
24230
  */
23644
24231
  cursor?: string;
23645
- }, params?: RequestParams) => Promise<AxiosResponse<BrandsListResponse, any>>;
24232
+ }, params?: RequestParams) => Promise<AxiosResponse<BrandsListResponse, any, {}>>;
23646
24233
  /**
23647
24234
  * @description Lists all brands.
23648
24235
  *
@@ -23652,7 +24239,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23652
24239
  * @request POST:/brands.list
23653
24240
  * @secure
23654
24241
  */
23655
- brandsListPost: (data: BrandsListRequest, params?: RequestParams) => Promise<AxiosResponse<BrandsListResponse, any>>;
24242
+ brandsListPost: (data: BrandsListRequest, params?: RequestParams) => Promise<AxiosResponse<BrandsListResponse, any, {}>>;
23656
24243
  /**
23657
24244
  * @description Updates a brand by its ID.
23658
24245
  *
@@ -23662,7 +24249,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23662
24249
  * @request POST:/brands.update
23663
24250
  * @secure
23664
24251
  */
23665
- brandsUpdate: (data: BrandsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<BrandsUpdateResponse, any>>;
24252
+ brandsUpdate: (data: BrandsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<BrandsUpdateResponse, any, {}>>;
23666
24253
  /**
23667
24254
  * @description Creates a new chat, or optionally opens an existing one.
23668
24255
  *
@@ -23672,7 +24259,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23672
24259
  * @request POST:/chats.create
23673
24260
  * @secure
23674
24261
  */
23675
- chatsCreate: (data: ChatsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsCreateResponse, any>>;
24262
+ chatsCreate: (data: ChatsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsCreateResponse, any, {}>>;
23676
24263
  /**
23677
24264
  * @description Gets a chat's information.
23678
24265
  *
@@ -23689,7 +24276,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23689
24276
  * @example "CHAN-AbCdEfGh"
23690
24277
  */
23691
24278
  id?: string;
23692
- }, params?: RequestParams) => Promise<AxiosResponse<ChatsGetResponse, any>>;
24279
+ }, params?: RequestParams) => Promise<AxiosResponse<ChatsGetResponse, any, {}>>;
23693
24280
  /**
23694
24281
  * @description Gets a chat's information.
23695
24282
  *
@@ -23699,7 +24286,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23699
24286
  * @request POST:/chats.get
23700
24287
  * @secure
23701
24288
  */
23702
- chatsGetPost: (data: ChatsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsGetResponse, any>>;
24289
+ chatsGetPost: (data: ChatsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsGetResponse, any, {}>>;
23703
24290
  /**
23704
24291
  * @description Updates a chat's information.
23705
24292
  *
@@ -23709,7 +24296,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23709
24296
  * @request POST:/chats.update
23710
24297
  * @secure
23711
24298
  */
23712
- chatsUpdate: (data: ChatsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsUpdateResponse, any>>;
24299
+ chatsUpdate: (data: ChatsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsUpdateResponse, any, {}>>;
23713
24300
  /**
23714
24301
  * @description Creates a code change object.
23715
24302
  *
@@ -23719,7 +24306,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23719
24306
  * @request POST:/code-changes.create
23720
24307
  * @secure
23721
24308
  */
23722
- codeChangesCreate: (data: CodeChangesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesCreateResponse, any>>;
24309
+ codeChangesCreate: (data: CodeChangesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesCreateResponse, any, {}>>;
23723
24310
  /**
23724
24311
  * @description Deletes a code change object.
23725
24312
  *
@@ -23729,7 +24316,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23729
24316
  * @request POST:/code-changes.delete
23730
24317
  * @secure
23731
24318
  */
23732
- codeChangesDelete: (data: CodeChangesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
24319
+ codeChangesDelete: (data: CodeChangesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
23733
24320
  /**
23734
24321
  * @description Gets a code change object.
23735
24322
  *
@@ -23745,7 +24332,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23745
24332
  * @format id
23746
24333
  */
23747
24334
  id: string;
23748
- }, params?: RequestParams) => Promise<AxiosResponse<CodeChangesGetResponse, any>>;
24335
+ }, params?: RequestParams) => Promise<AxiosResponse<CodeChangesGetResponse, any, {}>>;
23749
24336
  /**
23750
24337
  * @description Gets a code change object.
23751
24338
  *
@@ -23755,7 +24342,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23755
24342
  * @request POST:/code-changes.get
23756
24343
  * @secure
23757
24344
  */
23758
- codeChangesGetPost: (data: CodeChangesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesGetResponse, any>>;
24345
+ codeChangesGetPost: (data: CodeChangesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesGetResponse, any, {}>>;
23759
24346
  /**
23760
24347
  * @description Lists code change objects.
23761
24348
  *
@@ -23783,7 +24370,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23783
24370
  * used.
23784
24371
  */
23785
24372
  mode?: ListMode;
23786
- }, params?: RequestParams) => Promise<AxiosResponse<CodeChangesListResponse, any>>;
24373
+ }, params?: RequestParams) => Promise<AxiosResponse<CodeChangesListResponse, any, {}>>;
23787
24374
  /**
23788
24375
  * @description Lists code change objects.
23789
24376
  *
@@ -23793,7 +24380,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23793
24380
  * @request POST:/code-changes.list
23794
24381
  * @secure
23795
24382
  */
23796
- codeChangesListPost: (data: CodeChangesListRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesListResponse, any>>;
24383
+ codeChangesListPost: (data: CodeChangesListRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesListResponse, any, {}>>;
23797
24384
  /**
23798
24385
  * @description Updates a code change object.
23799
24386
  *
@@ -23803,7 +24390,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23803
24390
  * @request POST:/code-changes.update
23804
24391
  * @secure
23805
24392
  */
23806
- codeChangesUpdate: (data: CodeChangesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesUpdateResponse, any>>;
24393
+ codeChangesUpdate: (data: CodeChangesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesUpdateResponse, any, {}>>;
23807
24394
  /**
23808
24395
  * @description Creates a command.
23809
24396
  *
@@ -23813,7 +24400,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23813
24400
  * @request POST:/commands.create
23814
24401
  * @secure
23815
24402
  */
23816
- commandsCreate: (data: CommandCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CommandCreateResponse, any>>;
24403
+ commandsCreate: (data: CommandCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CommandCreateResponse, any, {}>>;
23817
24404
  /**
23818
24405
  * @description Gets a command.
23819
24406
  *
@@ -23829,7 +24416,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23829
24416
  * @format id
23830
24417
  */
23831
24418
  id: string;
23832
- }, params?: RequestParams) => Promise<AxiosResponse<CommandGetResponse, any>>;
24419
+ }, params?: RequestParams) => Promise<AxiosResponse<CommandGetResponse, any, {}>>;
23833
24420
  /**
23834
24421
  * @description Gets a command.
23835
24422
  *
@@ -23839,7 +24426,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23839
24426
  * @request POST:/commands.get
23840
24427
  * @secure
23841
24428
  */
23842
- commandsGetPost: (data: CommandGetRequest, params?: RequestParams) => Promise<AxiosResponse<CommandGetResponse, any>>;
24429
+ commandsGetPost: (data: CommandGetRequest, params?: RequestParams) => Promise<AxiosResponse<CommandGetResponse, any, {}>>;
23843
24430
  /**
23844
24431
  * @description Lists commands for a Dev organization.
23845
24432
  *
@@ -23880,7 +24467,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23880
24467
  source_object_id?: string;
23881
24468
  /** Filter commands based on status. */
23882
24469
  status?: CommandStatus[];
23883
- }, params?: RequestParams) => Promise<AxiosResponse<CommandsListResponse, any>>;
24470
+ }, params?: RequestParams) => Promise<AxiosResponse<CommandsListResponse, any, {}>>;
23884
24471
  /**
23885
24472
  * @description Lists commands for a Dev organization.
23886
24473
  *
@@ -23890,7 +24477,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23890
24477
  * @request POST:/commands.list
23891
24478
  * @secure
23892
24479
  */
23893
- commandsListPost: (data: CommandsListRequest, params?: RequestParams) => Promise<AxiosResponse<CommandsListResponse, any>>;
24480
+ commandsListPost: (data: CommandsListRequest, params?: RequestParams) => Promise<AxiosResponse<CommandsListResponse, any, {}>>;
23894
24481
  /**
23895
24482
  * @description Updates a command.
23896
24483
  *
@@ -23900,7 +24487,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23900
24487
  * @request POST:/commands.update
23901
24488
  * @secure
23902
24489
  */
23903
- commandsUpdate: (data: CommandUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CommandUpdateResponse, any>>;
24490
+ commandsUpdate: (data: CommandUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CommandUpdateResponse, any, {}>>;
23904
24491
  /**
23905
24492
  * @description Create the content template.
23906
24493
  *
@@ -23910,7 +24497,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23910
24497
  * @request POST:/content-template.create
23911
24498
  * @secure
23912
24499
  */
23913
- contentTemplateCreate: (data: ContentTemplateCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateCreateResponse, any>>;
24500
+ contentTemplateCreate: (data: ContentTemplateCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateCreateResponse, any, {}>>;
23914
24501
  /**
23915
24502
  * @description Get the content template.
23916
24503
  *
@@ -23926,7 +24513,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23926
24513
  * @format id
23927
24514
  */
23928
24515
  id: string;
23929
- }, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateGetResponse, any>>;
24516
+ }, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateGetResponse, any, {}>>;
23930
24517
  /**
23931
24518
  * @description Get the content template.
23932
24519
  *
@@ -23936,7 +24523,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23936
24523
  * @request POST:/content-template.get
23937
24524
  * @secure
23938
24525
  */
23939
- contentTemplateGetPost: (data: ContentTemplateGetRequest, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateGetResponse, any>>;
24526
+ contentTemplateGetPost: (data: ContentTemplateGetRequest, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateGetResponse, any, {}>>;
23940
24527
  /**
23941
24528
  * @description Lists the content templates.
23942
24529
  *
@@ -23978,7 +24565,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23978
24565
  sort_by?: string[];
23979
24566
  /** Filters for content template of the provided types. */
23980
24567
  type?: ContentTemplateType[];
23981
- }, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateListResponse, any>>;
24568
+ }, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateListResponse, any, {}>>;
23982
24569
  /**
23983
24570
  * @description Lists the content templates.
23984
24571
  *
@@ -23988,7 +24575,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23988
24575
  * @request POST:/content-template.list
23989
24576
  * @secure
23990
24577
  */
23991
- contentTemplateListPost: (data: ContentTemplateListRequest, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateListResponse, any>>;
24578
+ contentTemplateListPost: (data: ContentTemplateListRequest, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateListResponse, any, {}>>;
23992
24579
  /**
23993
24580
  * @description Creates a conversation.
23994
24581
  *
@@ -23998,7 +24585,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23998
24585
  * @request POST:/conversations.create
23999
24586
  * @secure
24000
24587
  */
24001
- conversationsCreate: (data: ConversationsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsCreateResponse, any>>;
24588
+ conversationsCreate: (data: ConversationsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsCreateResponse, any, {}>>;
24002
24589
  /**
24003
24590
  * @description Deletes the requested conversation.
24004
24591
  *
@@ -24008,7 +24595,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24008
24595
  * @request POST:/conversations.delete
24009
24596
  * @secure
24010
24597
  */
24011
- conversationsDelete: (data: ConversationsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
24598
+ conversationsDelete: (data: ConversationsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
24012
24599
  /**
24013
24600
  * @description Exports a collection of conversation items.
24014
24601
  *
@@ -24121,7 +24708,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24121
24708
  * @format text
24122
24709
  */
24123
24710
  'tags_v2.value'?: string;
24124
- }, params?: RequestParams) => Promise<AxiosResponse<ConversationsExportResponse, any>>;
24711
+ }, params?: RequestParams) => Promise<AxiosResponse<ConversationsExportResponse, any, {}>>;
24125
24712
  /**
24126
24713
  * @description Exports a collection of conversation items.
24127
24714
  *
@@ -24131,7 +24718,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24131
24718
  * @request POST:/conversations.export
24132
24719
  * @secure
24133
24720
  */
24134
- conversationsExportPost: (data: ConversationsExportRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsExportResponse, any>>;
24721
+ conversationsExportPost: (data: ConversationsExportRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsExportResponse, any, {}>>;
24135
24722
  /**
24136
24723
  * @description Gets the requested conversation's information.
24137
24724
  *
@@ -24147,7 +24734,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24147
24734
  * @format id
24148
24735
  */
24149
24736
  id: string;
24150
- }, params?: RequestParams) => Promise<AxiosResponse<ConversationsGetResponse, any>>;
24737
+ }, params?: RequestParams) => Promise<AxiosResponse<ConversationsGetResponse, any, {}>>;
24151
24738
  /**
24152
24739
  * @description Gets the requested conversation's information.
24153
24740
  *
@@ -24157,7 +24744,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24157
24744
  * @request POST:/conversations.get
24158
24745
  * @secure
24159
24746
  */
24160
- conversationsGetPost: (data: ConversationsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsGetResponse, any>>;
24747
+ conversationsGetPost: (data: ConversationsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsGetResponse, any, {}>>;
24161
24748
  /**
24162
24749
  * @description Lists the available conversations.
24163
24750
  *
@@ -24280,7 +24867,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24280
24867
  * @format text
24281
24868
  */
24282
24869
  'tags_v2.value'?: string;
24283
- }, params?: RequestParams) => Promise<AxiosResponse<ConversationsListResponse, any>>;
24870
+ }, params?: RequestParams) => Promise<AxiosResponse<ConversationsListResponse, any, {}>>;
24284
24871
  /**
24285
24872
  * @description Lists the available conversations.
24286
24873
  *
@@ -24290,7 +24877,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24290
24877
  * @request POST:/conversations.list
24291
24878
  * @secure
24292
24879
  */
24293
- conversationsListPost: (data: ConversationsListRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsListResponse, any>>;
24880
+ conversationsListPost: (data: ConversationsListRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsListResponse, any, {}>>;
24294
24881
  /**
24295
24882
  * @description Updates the requested conversation.
24296
24883
  *
@@ -24300,7 +24887,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24300
24887
  * @request POST:/conversations.update
24301
24888
  * @secure
24302
24889
  */
24303
- conversationsUpdate: (data: ConversationsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsUpdateResponse, any>>;
24890
+ conversationsUpdate: (data: ConversationsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsUpdateResponse, any, {}>>;
24304
24891
  /**
24305
24892
  * @description Counts custom objects.
24306
24893
  *
@@ -24318,7 +24905,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24318
24905
  leaf_type: string;
24319
24906
  /** List of filters to apply. */
24320
24907
  filters?: any[];
24321
- }, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCountResponse, any>>;
24908
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCountResponse, any, {}>>;
24322
24909
  /**
24323
24910
  * @description Counts custom objects.
24324
24911
  *
@@ -24328,7 +24915,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24328
24915
  * @request POST:/custom-objects.count
24329
24916
  * @secure
24330
24917
  */
24331
- customObjectsCountPost: (data: CustomObjectsCountRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCountResponse, any>>;
24918
+ customObjectsCountPost: (data: CustomObjectsCountRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCountResponse, any, {}>>;
24332
24919
  /**
24333
24920
  * @description Creates a custom object.
24334
24921
  *
@@ -24338,7 +24925,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24338
24925
  * @request POST:/custom-objects.create
24339
24926
  * @secure
24340
24927
  */
24341
- customObjectsCreate: (data: CustomObjectsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCreateResponse, any>>;
24928
+ customObjectsCreate: (data: CustomObjectsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCreateResponse, any, {}>>;
24342
24929
  /**
24343
24930
  * @description Deletes a custom object.
24344
24931
  *
@@ -24348,7 +24935,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24348
24935
  * @request POST:/custom-objects.delete
24349
24936
  * @secure
24350
24937
  */
24351
- customObjectsDelete: (data: CustomObjectsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
24938
+ customObjectsDelete: (data: CustomObjectsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
24352
24939
  /**
24353
24940
  * @description Gets a custom object.
24354
24941
  *
@@ -24364,7 +24951,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24364
24951
  * @format id
24365
24952
  */
24366
24953
  id?: string;
24367
- }, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsGetResponse, any>>;
24954
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsGetResponse, any, {}>>;
24368
24955
  /**
24369
24956
  * @description Gets a custom object.
24370
24957
  *
@@ -24374,7 +24961,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24374
24961
  * @request POST:/custom-objects.get
24375
24962
  * @secure
24376
24963
  */
24377
- customObjectsGetPost: (data: CustomObjectsGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsGetResponse, any>>;
24964
+ customObjectsGetPost: (data: CustomObjectsGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsGetResponse, any, {}>>;
24378
24965
  /**
24379
24966
  * @description Lists custom objects.
24380
24967
  *
@@ -24412,7 +24999,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24412
24999
  mode?: ListMode;
24413
25000
  /** The list of fields to sort the items by and how to sort them. */
24414
25001
  sort_by?: string[];
24415
- }, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsListResponse, any>>;
25002
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsListResponse, any, {}>>;
24416
25003
  /**
24417
25004
  * @description Lists custom objects.
24418
25005
  *
@@ -24422,7 +25009,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24422
25009
  * @request POST:/custom-objects.list
24423
25010
  * @secure
24424
25011
  */
24425
- customObjectsListPost: (data: CustomObjectsListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsListResponse, any>>;
25012
+ customObjectsListPost: (data: CustomObjectsListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsListResponse, any, {}>>;
24426
25013
  /**
24427
25014
  * @description Updates a custom object.
24428
25015
  *
@@ -24432,7 +25019,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24432
25019
  * @request POST:/custom-objects.update
24433
25020
  * @secure
24434
25021
  */
24435
- customObjectsUpdate: (data: CustomObjectsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsUpdateResponse, any>>;
25022
+ customObjectsUpdate: (data: CustomObjectsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsUpdateResponse, any, {}>>;
24436
25023
  /**
24437
25024
  * @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.
24438
25025
  *
@@ -24442,7 +25029,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24442
25029
  * @request POST:/dev-orgs.auth-connections.create
24443
25030
  * @secure
24444
25031
  */
24445
- devOrgAuthConnectionsCreate: (data: DevOrgAuthConnectionsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsCreateResponse, any>>;
25032
+ devOrgAuthConnectionsCreate: (data: DevOrgAuthConnectionsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsCreateResponse, any, {}>>;
24446
25033
  /**
24447
25034
  * @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.
24448
25035
  *
@@ -24452,7 +25039,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24452
25039
  * @request POST:/dev-orgs.auth-connections.delete
24453
25040
  * @secure
24454
25041
  */
24455
- devOrgAuthConnectionsDelete: (data: DevOrgAuthConnectionsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
25042
+ devOrgAuthConnectionsDelete: (data: DevOrgAuthConnectionsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
24456
25043
  /**
24457
25044
  * @description Retrieves the details for an authentication connection.
24458
25045
  *
@@ -24468,7 +25055,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24468
25055
  * @format text
24469
25056
  */
24470
25057
  id: string;
24471
- }, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsGetResponse, any>>;
25058
+ }, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsGetResponse, any, {}>>;
24472
25059
  /**
24473
25060
  * @description Retrieves the details for an authentication connection.
24474
25061
  *
@@ -24478,7 +25065,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24478
25065
  * @request POST:/dev-orgs.auth-connections.get
24479
25066
  * @secure
24480
25067
  */
24481
- devOrgAuthConnectionsGetPost: (data: DevOrgAuthConnectionsGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsGetResponse, any>>;
25068
+ devOrgAuthConnectionsGetPost: (data: DevOrgAuthConnectionsGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsGetResponse, any, {}>>;
24482
25069
  /**
24483
25070
  * @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.
24484
25071
  *
@@ -24488,7 +25075,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24488
25075
  * @request GET:/dev-orgs.auth-connections.list
24489
25076
  * @secure
24490
25077
  */
24491
- devOrgAuthConnectionsList: (params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsListResponse, any>>;
25078
+ devOrgAuthConnectionsList: (params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsListResponse, any, {}>>;
24492
25079
  /**
24493
25080
  * @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.
24494
25081
  *
@@ -24498,7 +25085,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24498
25085
  * @request POST:/dev-orgs.auth-connections.list
24499
25086
  * @secure
24500
25087
  */
24501
- devOrgAuthConnectionsListPost: (data: Empty, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsListResponse, any>>;
25088
+ devOrgAuthConnectionsListPost: (data: Empty, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsListResponse, any, {}>>;
24502
25089
  /**
24503
25090
  * @description Enable or disable an authentication connection for a Dev organization. Atleast one authentication connection must be enabled for a Dev organization.
24504
25091
  *
@@ -24508,7 +25095,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24508
25095
  * @request POST:/dev-orgs.auth-connections.toggle
24509
25096
  * @secure
24510
25097
  */
24511
- devOrgAuthConnectionsToggle: (data: DevOrgAuthConnectionsToggleRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
25098
+ devOrgAuthConnectionsToggle: (data: DevOrgAuthConnectionsToggleRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
24512
25099
  /**
24513
25100
  * @description Updates an authentication connection.
24514
25101
  *
@@ -24518,7 +25105,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24518
25105
  * @request POST:/dev-orgs.auth-connections.update
24519
25106
  * @secure
24520
25107
  */
24521
- devOrgAuthConnectionsUpdate: (data: DevOrgAuthConnectionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsUpdateResponse, any>>;
25108
+ devOrgAuthConnectionsUpdate: (data: DevOrgAuthConnectionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsUpdateResponse, any, {}>>;
24522
25109
  /**
24523
25110
  * @description Gets the Dev organization's information of the authenticated user.
24524
25111
  *
@@ -24528,7 +25115,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24528
25115
  * @request GET:/dev-orgs.get
24529
25116
  * @secure
24530
25117
  */
24531
- devOrgsGet: (params?: RequestParams) => Promise<AxiosResponse<DevOrgsGetResponse, any>>;
25118
+ devOrgsGet: (params?: RequestParams) => Promise<AxiosResponse<DevOrgsGetResponse, any, {}>>;
24532
25119
  /**
24533
25120
  * @description Gets the Dev organization's information of the authenticated user.
24534
25121
  *
@@ -24538,7 +25125,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24538
25125
  * @request POST:/dev-orgs.get
24539
25126
  * @secure
24540
25127
  */
24541
- devOrgsGetPost: (data: DevOrgsGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgsGetResponse, any>>;
25128
+ devOrgsGetPost: (data: DevOrgsGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgsGetResponse, any, {}>>;
24542
25129
  /**
24543
25130
  * @description Activates the requested user.
24544
25131
  *
@@ -24548,7 +25135,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24548
25135
  * @request POST:/dev-users.activate
24549
25136
  * @secure
24550
25137
  */
24551
- devUsersActivate: (data: DevUsersActivateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersActivateResponse, any>>;
25138
+ devUsersActivate: (data: DevUsersActivateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersActivateResponse, any, {}>>;
24552
25139
  /**
24553
25140
  * @description Creates a Dev user for a Dev organization.
24554
25141
  *
@@ -24558,7 +25145,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24558
25145
  * @request POST:/dev-users.create
24559
25146
  * @secure
24560
25147
  */
24561
- devUsersCreate: (data: DevUsersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersCreateResponse, any>>;
25148
+ devUsersCreate: (data: DevUsersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersCreateResponse, any, {}>>;
24562
25149
  /**
24563
25150
  * @description Deactivates the requested user.
24564
25151
  *
@@ -24568,7 +25155,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24568
25155
  * @request POST:/dev-users.deactivate
24569
25156
  * @secure
24570
25157
  */
24571
- devUsersDeactivate: (data: DevUsersDeactivateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
25158
+ devUsersDeactivate: (data: DevUsersDeactivateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
24572
25159
  /**
24573
25160
  * @description Gets the requested user's information.
24574
25161
  *
@@ -24584,7 +25171,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24584
25171
  * @format id
24585
25172
  */
24586
25173
  id: string;
24587
- }, params?: RequestParams) => Promise<AxiosResponse<DevUsersGetResponse, any>>;
25174
+ }, params?: RequestParams) => Promise<AxiosResponse<DevUsersGetResponse, any, {}>>;
24588
25175
  /**
24589
25176
  * @description Gets the requested user's information.
24590
25177
  *
@@ -24594,7 +25181,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24594
25181
  * @request POST:/dev-users.get
24595
25182
  * @secure
24596
25183
  */
24597
- devUsersGetPost: (data: DevUsersGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersGetResponse, any>>;
25184
+ devUsersGetPost: (data: DevUsersGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersGetResponse, any, {}>>;
24598
25185
  /**
24599
25186
  * @description Links an external/secondary identity to the Dev user.
24600
25187
  *
@@ -24604,7 +25191,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24604
25191
  * @request POST:/dev-users.identities.link
24605
25192
  * @secure
24606
25193
  */
24607
- devUsersIdentitiesLink: (data: DevUsersIdentitiesLinkRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersIdentitiesLinkResponse, any>>;
25194
+ devUsersIdentitiesLink: (data: DevUsersIdentitiesLinkRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersIdentitiesLinkResponse, any, {}>>;
24608
25195
  /**
24609
25196
  * @description Unlinks an external/secondary identity from the Dev user.
24610
25197
  *
@@ -24614,7 +25201,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24614
25201
  * @request POST:/dev-users.identities.unlink
24615
25202
  * @secure
24616
25203
  */
24617
- devUsersIdentitiesUnlink: (data: DevUsersIdentitiesUnlinkRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersIdentitiesUnlinkResponse, any>>;
25204
+ devUsersIdentitiesUnlink: (data: DevUsersIdentitiesUnlinkRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersIdentitiesUnlinkResponse, any, {}>>;
24618
25205
  /**
24619
25206
  * @description Lists users within your organization.
24620
25207
  *
@@ -24661,7 +25248,12 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24661
25248
  sort_by?: string[];
24662
25249
  /** Filters Dev users based on state. */
24663
25250
  state?: UserState[];
24664
- }, params?: RequestParams) => Promise<AxiosResponse<DevUsersListResponse, any>>;
25251
+ /**
25252
+ * Filters for Dev users in the specified time zone in IANA format
25253
+ * (e.g., 'America/Los_Angeles').
25254
+ */
25255
+ timezone?: string[];
25256
+ }, params?: RequestParams) => Promise<AxiosResponse<DevUsersListResponse, any, {}>>;
24665
25257
  /**
24666
25258
  * @description Lists users within your organization.
24667
25259
  *
@@ -24671,7 +25263,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24671
25263
  * @request POST:/dev-users.list
24672
25264
  * @secure
24673
25265
  */
24674
- devUsersListPost: (data: DevUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersListResponse, any>>;
25266
+ devUsersListPost: (data: DevUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersListResponse, any, {}>>;
24675
25267
  /**
24676
25268
  * @description Merges the identity of a secondary Dev user with the primary Dev user. The account of the secondary Dev user will be deactivated and will no longer be able to log into DevRev. All objects - issues, tickets, parts etc. owned by the secondary Dev user will be transferred to the primary Dev user.
24677
25269
  *
@@ -24681,7 +25273,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24681
25273
  * @request POST:/dev-users.merge
24682
25274
  * @secure
24683
25275
  */
24684
- devUsersMerge: (data: DevUsersMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
25276
+ devUsersMerge: (data: DevUsersMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
24685
25277
  /**
24686
25278
  * @description Gets the authenticated user's information.
24687
25279
  *
@@ -24691,7 +25283,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24691
25283
  * @request GET:/dev-users.self
24692
25284
  * @secure
24693
25285
  */
24694
- devUsersSelf: (params?: RequestParams) => Promise<AxiosResponse<DevUsersSelfResponse, any>>;
25286
+ devUsersSelf: (params?: RequestParams) => Promise<AxiosResponse<DevUsersSelfResponse, any, {}>>;
24695
25287
  /**
24696
25288
  * @description Gets the authenticated user's information.
24697
25289
  *
@@ -24701,7 +25293,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24701
25293
  * @request POST:/dev-users.self
24702
25294
  * @secure
24703
25295
  */
24704
- devUsersSelfPost: (data: DevUsersSelfRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersSelfResponse, any>>;
25296
+ devUsersSelfPost: (data: DevUsersSelfRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersSelfResponse, any, {}>>;
24705
25297
  /**
24706
25298
  * @description Updates the authenticated user.
24707
25299
  *
@@ -24711,7 +25303,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24711
25303
  * @request POST:/dev-users.self.update
24712
25304
  * @secure
24713
25305
  */
24714
- devUsersSelfUpdate: (data: DevUsersSelfUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersUpdateResponse, any>>;
25306
+ devUsersSelfUpdate: (data: DevUsersSelfUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersUpdateResponse, any, {}>>;
24715
25307
  /**
24716
25308
  * @description Updates the user corresponding to the input Id.
24717
25309
  *
@@ -24721,7 +25313,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24721
25313
  * @request POST:/dev-users.update
24722
25314
  * @secure
24723
25315
  */
24724
- devUsersUpdate: (data: DevUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersUpdateResponse, any>>;
25316
+ devUsersUpdate: (data: DevUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersUpdateResponse, any, {}>>;
24725
25317
  /**
24726
25318
  * @description Get count of directories matching given filter.
24727
25319
  *
@@ -24742,7 +25334,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24742
25334
  * @example ["DEVU-12345"]
24743
25335
  */
24744
25336
  modified_by?: string[];
24745
- }, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCountResponse, any>>;
25337
+ }, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCountResponse, any, {}>>;
24746
25338
  /**
24747
25339
  * @description Get count of directories matching given filter.
24748
25340
  *
@@ -24752,7 +25344,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24752
25344
  * @request POST:/directories.count
24753
25345
  * @secure
24754
25346
  */
24755
- directoriesCountPost: (data: DirectoriesCountRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCountResponse, any>>;
25347
+ directoriesCountPost: (data: DirectoriesCountRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCountResponse, any, {}>>;
24756
25348
  /**
24757
25349
  * @description Creates a directory for the specified inputs.
24758
25350
  *
@@ -24762,7 +25354,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24762
25354
  * @request POST:/directories.create
24763
25355
  * @secure
24764
25356
  */
24765
- directoriesCreate: (data: DirectoriesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCreateResponse, any>>;
25357
+ directoriesCreate: (data: DirectoriesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCreateResponse, any, {}>>;
24766
25358
  /**
24767
25359
  * @description Delete the specified directory.
24768
25360
  *
@@ -24772,7 +25364,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24772
25364
  * @request POST:/directories.delete
24773
25365
  * @secure
24774
25366
  */
24775
- directoriesDelete: (data: DirectoriesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
25367
+ directoriesDelete: (data: DirectoriesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
24776
25368
  /**
24777
25369
  * @description Gets the specified directory.
24778
25370
  *
@@ -24782,13 +25374,13 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24782
25374
  * @request GET:/directories.get
24783
25375
  * @secure
24784
25376
  */
24785
- directoriesGet: (query: {
25377
+ directoriesGet: (query?: {
24786
25378
  /**
24787
25379
  * The ID of the requested directory.
24788
25380
  * @format id
24789
25381
  */
24790
- id: string;
24791
- }, params?: RequestParams) => Promise<AxiosResponse<DirectoriesGetResponse, any>>;
25382
+ id?: string;
25383
+ }, params?: RequestParams) => Promise<AxiosResponse<DirectoriesGetResponse, any, {}>>;
24792
25384
  /**
24793
25385
  * @description Gets the specified directory.
24794
25386
  *
@@ -24798,7 +25390,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24798
25390
  * @request POST:/directories.get
24799
25391
  * @secure
24800
25392
  */
24801
- directoriesGetPost: (data: DirectoriesGetRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesGetResponse, any>>;
25393
+ directoriesGetPost: (data: DirectoriesGetRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesGetResponse, any, {}>>;
24802
25394
  /**
24803
25395
  * @description Lists directories matching the request.
24804
25396
  *
@@ -24835,7 +25427,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24835
25427
  * @example ["DEVU-12345"]
24836
25428
  */
24837
25429
  modified_by?: string[];
24838
- }, params?: RequestParams) => Promise<AxiosResponse<DirectoriesListResponse, any>>;
25430
+ }, params?: RequestParams) => Promise<AxiosResponse<DirectoriesListResponse, any, {}>>;
24839
25431
  /**
24840
25432
  * @description Lists directories matching the request.
24841
25433
  *
@@ -24845,7 +25437,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24845
25437
  * @request POST:/directories.list
24846
25438
  * @secure
24847
25439
  */
24848
- directoriesListPost: (data: DirectoriesListRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesListResponse, any>>;
25440
+ directoriesListPost: (data: DirectoriesListRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesListResponse, any, {}>>;
24849
25441
  /**
24850
25442
  * @description Updates the specified directory.
24851
25443
  *
@@ -24855,7 +25447,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24855
25447
  * @request POST:/directories.update
24856
25448
  * @secure
24857
25449
  */
24858
- directoriesUpdate: (data: DirectoriesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesUpdateResponse, any>>;
25450
+ directoriesUpdate: (data: DirectoriesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesUpdateResponse, any, {}>>;
24859
25451
  /**
24860
25452
  * @description Counts the engagement records.
24861
25453
  *
@@ -24880,7 +25472,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24880
25472
  parent?: string[];
24881
25473
  /** Filters for engagement of the provided types. */
24882
25474
  type?: EngagementType[];
24883
- }, params?: RequestParams) => Promise<AxiosResponse<EngagementsCountResponse, any>>;
25475
+ }, params?: RequestParams) => Promise<AxiosResponse<EngagementsCountResponse, any, {}>>;
24884
25476
  /**
24885
25477
  * @description Counts the engagement records.
24886
25478
  *
@@ -24890,7 +25482,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24890
25482
  * @request POST:/engagements.count
24891
25483
  * @secure
24892
25484
  */
24893
- engagementsCountPost: (data: EngagementsCountRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsCountResponse, any>>;
25485
+ engagementsCountPost: (data: EngagementsCountRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsCountResponse, any, {}>>;
24894
25486
  /**
24895
25487
  * @description Creates a new engagement record.
24896
25488
  *
@@ -24900,7 +25492,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24900
25492
  * @request POST:/engagements.create
24901
25493
  * @secure
24902
25494
  */
24903
- engagementsCreate: (data: EngagementsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsCreateResponse, any>>;
25495
+ engagementsCreate: (data: EngagementsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsCreateResponse, any, {}>>;
24904
25496
  /**
24905
25497
  * @description Deletes the engagement record.
24906
25498
  *
@@ -24910,7 +25502,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24910
25502
  * @request POST:/engagements.delete
24911
25503
  * @secure
24912
25504
  */
24913
- engagementsDelete: (data: EngagementsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
25505
+ engagementsDelete: (data: EngagementsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
24914
25506
  /**
24915
25507
  * @description Gets the engagement record.
24916
25508
  *
@@ -24926,7 +25518,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24926
25518
  * @format id
24927
25519
  */
24928
25520
  id: string;
24929
- }, params?: RequestParams) => Promise<AxiosResponse<EngagementsGetResponse, any>>;
25521
+ }, params?: RequestParams) => Promise<AxiosResponse<EngagementsGetResponse, any, {}>>;
24930
25522
  /**
24931
25523
  * @description Gets the engagement record.
24932
25524
  *
@@ -24936,7 +25528,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24936
25528
  * @request POST:/engagements.get
24937
25529
  * @secure
24938
25530
  */
24939
- engagementsGetPost: (data: EngagementsGetRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsGetResponse, any>>;
25531
+ engagementsGetPost: (data: EngagementsGetRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsGetResponse, any, {}>>;
24940
25532
  /**
24941
25533
  * @description Lists the engagement records.
24942
25534
  *
@@ -24979,7 +25571,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24979
25571
  sort_by?: string[];
24980
25572
  /** Filters for engagement of the provided types. */
24981
25573
  type?: EngagementType[];
24982
- }, params?: RequestParams) => Promise<AxiosResponse<EngagementsListResponse, any>>;
25574
+ }, params?: RequestParams) => Promise<AxiosResponse<EngagementsListResponse, any, {}>>;
24983
25575
  /**
24984
25576
  * @description Lists the engagement records.
24985
25577
  *
@@ -24989,7 +25581,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24989
25581
  * @request POST:/engagements.list
24990
25582
  * @secure
24991
25583
  */
24992
- engagementsListPost: (data: EngagementsListRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsListResponse, any>>;
25584
+ engagementsListPost: (data: EngagementsListRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsListResponse, any, {}>>;
24993
25585
  /**
24994
25586
  * @description Updates the engagement record.
24995
25587
  *
@@ -24999,7 +25591,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24999
25591
  * @request POST:/engagements.update
25000
25592
  * @secure
25001
25593
  */
25002
- engagementsUpdate: (data: EngagementsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsUpdateResponse, any>>;
25594
+ engagementsUpdate: (data: EngagementsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsUpdateResponse, any, {}>>;
25003
25595
  /**
25004
25596
  * @description Gets an event source.
25005
25597
  *
@@ -25015,7 +25607,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25015
25607
  * @format id
25016
25608
  */
25017
25609
  id: string;
25018
- }, params?: RequestParams) => Promise<AxiosResponse<EventSourceGetResponse, any>>;
25610
+ }, params?: RequestParams) => Promise<AxiosResponse<EventSourceGetResponse, any, {}>>;
25019
25611
  /**
25020
25612
  * @description Gets an event source.
25021
25613
  *
@@ -25025,7 +25617,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25025
25617
  * @request POST:/event-sources.get
25026
25618
  * @secure
25027
25619
  */
25028
- eventSourcesGetPost: (data: EventSourceGetRequest, params?: RequestParams) => Promise<AxiosResponse<EventSourceGetResponse, any>>;
25620
+ eventSourcesGetPost: (data: EventSourceGetRequest, params?: RequestParams) => Promise<AxiosResponse<EventSourceGetResponse, any, {}>>;
25029
25621
  /**
25030
25622
  * @description Schedules an event to be published to the specified event source.
25031
25623
  *
@@ -25035,7 +25627,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25035
25627
  * @request POST:/event-sources.schedule
25036
25628
  * @secure
25037
25629
  */
25038
- eventSourcesScheduleEvent: (data: EventSourcesScheduleEventRequest, params?: RequestParams) => Promise<AxiosResponse<EventSourcesScheduleEventResponse, any>>;
25630
+ eventSourcesScheduleEvent: (data: EventSourcesScheduleEventRequest, params?: RequestParams) => Promise<AxiosResponse<EventSourcesScheduleEventResponse, any, {}>>;
25039
25631
  /**
25040
25632
  * @description Deletes an event scheduled for the specified event source.
25041
25633
  *
@@ -25045,7 +25637,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25045
25637
  * @request POST:/event-sources.unschedule
25046
25638
  * @secure
25047
25639
  */
25048
- eventSourcesDeleteScheduledEvent: (data: EventSourcesDeleteScheduledEventRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
25640
+ eventSourcesDeleteScheduledEvent: (data: EventSourcesDeleteScheduledEventRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
25049
25641
  /**
25050
25642
  * @description Creates a new group. A group is a collection of users.
25051
25643
  *
@@ -25055,7 +25647,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25055
25647
  * @request POST:/groups.create
25056
25648
  * @secure
25057
25649
  */
25058
- groupsCreate: (data: GroupsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsCreateResponse, any>>;
25650
+ groupsCreate: (data: GroupsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsCreateResponse, any, {}>>;
25059
25651
  /**
25060
25652
  * @description Gets the requested group.
25061
25653
  *
@@ -25071,7 +25663,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25071
25663
  * @format id
25072
25664
  */
25073
25665
  id: string;
25074
- }, params?: RequestParams) => Promise<AxiosResponse<GroupsGetResponse, any>>;
25666
+ }, params?: RequestParams) => Promise<AxiosResponse<GroupsGetResponse, any, {}>>;
25075
25667
  /**
25076
25668
  * @description Gets the requested group.
25077
25669
  *
@@ -25081,7 +25673,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25081
25673
  * @request POST:/groups.get
25082
25674
  * @secure
25083
25675
  */
25084
- groupsGetPost: (data: GroupsGetRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsGetResponse, any>>;
25676
+ groupsGetPost: (data: GroupsGetRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsGetResponse, any, {}>>;
25085
25677
  /**
25086
25678
  * @description Lists the available groups.
25087
25679
  *
@@ -25138,7 +25730,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25138
25730
  'sync_metadata.last_sync_out.sync_unit'?: string[];
25139
25731
  /** Filters for issues synced from this specific origin system. */
25140
25732
  'sync_metadata.origin_system'?: string[];
25141
- }, params?: RequestParams) => Promise<AxiosResponse<GroupsListResponse, any>>;
25733
+ }, params?: RequestParams) => Promise<AxiosResponse<GroupsListResponse, any, {}>>;
25142
25734
  /**
25143
25735
  * @description Lists the available groups.
25144
25736
  *
@@ -25148,7 +25740,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25148
25740
  * @request POST:/groups.list
25149
25741
  * @secure
25150
25742
  */
25151
- groupsListPost: (data: GroupsListRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsListResponse, any>>;
25743
+ groupsListPost: (data: GroupsListRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsListResponse, any, {}>>;
25152
25744
  /**
25153
25745
  * @description Adds a member to a group.
25154
25746
  *
@@ -25158,7 +25750,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25158
25750
  * @request POST:/groups.members.add
25159
25751
  * @secure
25160
25752
  */
25161
- groupMembersAdd: (data: GroupMembersAddRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
25753
+ groupMembersAdd: (data: GroupMembersAddRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
25162
25754
  /**
25163
25755
  * @description Lists the members in a group.
25164
25756
  *
@@ -25191,7 +25783,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25191
25783
  * used.
25192
25784
  */
25193
25785
  mode?: ListMode;
25194
- }, params?: RequestParams) => Promise<AxiosResponse<GroupMembersListResponse, any>>;
25786
+ }, params?: RequestParams) => Promise<AxiosResponse<GroupMembersListResponse, any, {}>>;
25195
25787
  /**
25196
25788
  * @description Lists the members in a group.
25197
25789
  *
@@ -25201,7 +25793,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25201
25793
  * @request POST:/groups.members.list
25202
25794
  * @secure
25203
25795
  */
25204
- groupMembersListPost: (data: GroupMembersListRequest, params?: RequestParams) => Promise<AxiosResponse<GroupMembersListResponse, any>>;
25796
+ groupMembersListPost: (data: GroupMembersListRequest, params?: RequestParams) => Promise<AxiosResponse<GroupMembersListResponse, any, {}>>;
25205
25797
  /**
25206
25798
  * @description Removes a member from a group.
25207
25799
  *
@@ -25211,7 +25803,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25211
25803
  * @request POST:/groups.members.remove
25212
25804
  * @secure
25213
25805
  */
25214
- groupMembersRemove: (data: GroupMembersRemoveRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
25806
+ groupMembersRemove: (data: GroupMembersRemoveRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
25215
25807
  /**
25216
25808
  * @description Updates the requested group.
25217
25809
  *
@@ -25221,7 +25813,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25221
25813
  * @request POST:/groups.update
25222
25814
  * @secure
25223
25815
  */
25224
- groupsUpdate: (data: GroupsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsUpdateResponse, any>>;
25816
+ groupsUpdate: (data: GroupsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsUpdateResponse, any, {}>>;
25225
25817
  /**
25226
25818
  * @description Creates an incident.
25227
25819
  *
@@ -25231,7 +25823,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25231
25823
  * @request POST:/incidents.create
25232
25824
  * @secure
25233
25825
  */
25234
- incidentsCreate: (data: IncidentsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsCreateResponse, any>>;
25826
+ incidentsCreate: (data: IncidentsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsCreateResponse, any, {}>>;
25235
25827
  /**
25236
25828
  * @description Deletes an incident.
25237
25829
  *
@@ -25241,7 +25833,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25241
25833
  * @request POST:/incidents.delete
25242
25834
  * @secure
25243
25835
  */
25244
- incidentsDelete: (data: IncidentsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
25836
+ incidentsDelete: (data: IncidentsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
25245
25837
  /**
25246
25838
  * @description Gets an incident.
25247
25839
  *
@@ -25257,7 +25849,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25257
25849
  * @format id
25258
25850
  */
25259
25851
  id: string;
25260
- }, params?: RequestParams) => Promise<AxiosResponse<IncidentsGetResponse, any>>;
25852
+ }, params?: RequestParams) => Promise<AxiosResponse<IncidentsGetResponse, any, {}>>;
25261
25853
  /**
25262
25854
  * @description Gets an incident.
25263
25855
  *
@@ -25267,7 +25859,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25267
25859
  * @request POST:/incidents.get
25268
25860
  * @secure
25269
25861
  */
25270
- incidentsGetPost: (data: IncidentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsGetResponse, any>>;
25862
+ incidentsGetPost: (data: IncidentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsGetResponse, any, {}>>;
25271
25863
  /**
25272
25864
  * @description Lists collections of incidents by groups.
25273
25865
  *
@@ -25298,6 +25890,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25298
25890
  cursor?: string;
25299
25891
  /** Filters for custom fields. */
25300
25892
  custom_fields?: object;
25893
+ /**
25894
+ * Filters for incidents with any of the provided impacted customers.
25895
+ * @example ["ACC-12345"]
25896
+ */
25897
+ impacted_customers?: string[];
25301
25898
  /**
25302
25899
  * The maximum number of groups to return. If not set, then the default
25303
25900
  * is '10'.
@@ -25367,7 +25964,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25367
25964
  'sync_metadata.origin_system'?: string[];
25368
25965
  /** Filters for incidents by the provided titles. */
25369
25966
  title?: string[];
25370
- }, params?: RequestParams) => Promise<AxiosResponse<IncidentsGroupResponse, any>>;
25967
+ }, params?: RequestParams) => Promise<AxiosResponse<IncidentsGroupResponse, any, {}>>;
25371
25968
  /**
25372
25969
  * @description Lists collections of incidents by groups.
25373
25970
  *
@@ -25377,7 +25974,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25377
25974
  * @request POST:/incidents.group
25378
25975
  * @secure
25379
25976
  */
25380
- incidentsGroupPost: (data: IncidentsGroupRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsGroupResponse, any>>;
25977
+ incidentsGroupPost: (data: IncidentsGroupRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsGroupResponse, any, {}>>;
25381
25978
  /**
25382
25979
  * @description Lists incidents.
25383
25980
  *
@@ -25403,6 +26000,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25403
26000
  cursor?: string;
25404
26001
  /** Filters for custom fields. */
25405
26002
  custom_fields?: object;
26003
+ /**
26004
+ * Filters for incidents with any of the provided impacted customers.
26005
+ * @example ["ACC-12345"]
26006
+ */
26007
+ impacted_customers?: string[];
25406
26008
  /**
25407
26009
  * The maximum number of items.
25408
26010
  * @format int32
@@ -25465,7 +26067,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25465
26067
  'sync_metadata.origin_system'?: string[];
25466
26068
  /** Filters for incidents by the provided titles. */
25467
26069
  title?: string[];
25468
- }, params?: RequestParams) => Promise<AxiosResponse<IncidentsListResponse, any>>;
26070
+ }, params?: RequestParams) => Promise<AxiosResponse<IncidentsListResponse, any, {}>>;
25469
26071
  /**
25470
26072
  * @description Lists incidents.
25471
26073
  *
@@ -25475,7 +26077,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25475
26077
  * @request POST:/incidents.list
25476
26078
  * @secure
25477
26079
  */
25478
- incidentsListPost: (data: IncidentsListRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsListResponse, any>>;
26080
+ incidentsListPost: (data: IncidentsListRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsListResponse, any, {}>>;
25479
26081
  /**
25480
26082
  * @description Updates an incident.
25481
26083
  *
@@ -25485,7 +26087,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25485
26087
  * @request POST:/incidents.update
25486
26088
  * @secure
25487
26089
  */
25488
- incidentsUpdate: (data: IncidentsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsUpdateResponse, any>>;
26090
+ incidentsUpdate: (data: IncidentsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsUpdateResponse, any, {}>>;
25489
26091
  /**
25490
26092
  * @description OAuth2 authorization callback.
25491
26093
  *
@@ -25505,7 +26107,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25505
26107
  * @format text
25506
26108
  */
25507
26109
  state: string;
25508
- }, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
26110
+ }, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
25509
26111
  /**
25510
26112
  * @description OAuth2 authorization callback.
25511
26113
  *
@@ -25515,7 +26117,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25515
26117
  * @request POST:/keyrings.authorize
25516
26118
  * @secure
25517
26119
  */
25518
- keyringsCreateCallbackPost: (data: KeyringsCreateCallbackRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
26120
+ keyringsCreateCallbackPost: (data: KeyringsCreateCallbackRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
25519
26121
  /**
25520
26122
  * @description Creates a custom link type.
25521
26123
  *
@@ -25525,7 +26127,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25525
26127
  * @request POST:/link-types.custom.create
25526
26128
  * @secure
25527
26129
  */
25528
- customLinkTypeCreate: (data: CustomLinkTypeCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeCreateResponse, any>>;
26130
+ customLinkTypeCreate: (data: CustomLinkTypeCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeCreateResponse, any, {}>>;
25529
26131
  /**
25530
26132
  * @description Gets a custom link type.
25531
26133
  *
@@ -25541,7 +26143,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25541
26143
  * @format id
25542
26144
  */
25543
26145
  id: string;
25544
- }, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeGetResponse, any>>;
26146
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeGetResponse, any, {}>>;
25545
26147
  /**
25546
26148
  * @description Gets a custom link type.
25547
26149
  *
@@ -25551,7 +26153,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25551
26153
  * @request POST:/link-types.custom.get
25552
26154
  * @secure
25553
26155
  */
25554
- customLinkTypeGetPost: (data: CustomLinkTypeGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeGetResponse, any>>;
26156
+ customLinkTypeGetPost: (data: CustomLinkTypeGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeGetResponse, any, {}>>;
25555
26157
  /**
25556
26158
  * @description Lists custom link types.
25557
26159
  *
@@ -25657,7 +26259,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25657
26259
  * @format text
25658
26260
  */
25659
26261
  'target_types_v2.subtype'?: string;
25660
- }, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeListResponse, any>>;
26262
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeListResponse, any, {}>>;
25661
26263
  /**
25662
26264
  * @description Lists custom link types.
25663
26265
  *
@@ -25667,7 +26269,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25667
26269
  * @request POST:/link-types.custom.list
25668
26270
  * @secure
25669
26271
  */
25670
- customLinkTypeListPost: (data: CustomLinkTypeListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeListResponse, any>>;
26272
+ customLinkTypeListPost: (data: CustomLinkTypeListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeListResponse, any, {}>>;
25671
26273
  /**
25672
26274
  * @description Updates a custom link type.
25673
26275
  *
@@ -25677,7 +26279,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25677
26279
  * @request POST:/link-types.custom.update
25678
26280
  * @secure
25679
26281
  */
25680
- customLinkTypeUpdate: (data: CustomLinkTypeUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeUpdateResponse, any>>;
26282
+ customLinkTypeUpdate: (data: CustomLinkTypeUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeUpdateResponse, any, {}>>;
25681
26283
  /**
25682
26284
  * @description Creates a link between two objects to indicate a relationship.
25683
26285
  *
@@ -25687,7 +26289,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25687
26289
  * @request POST:/links.create
25688
26290
  * @secure
25689
26291
  */
25690
- linksCreate: (data: LinksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<LinksCreateResponse, any>>;
26292
+ linksCreate: (data: LinksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<LinksCreateResponse, any, {}>>;
25691
26293
  /**
25692
26294
  * @description Deletes a link.
25693
26295
  *
@@ -25697,7 +26299,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25697
26299
  * @request POST:/links.delete
25698
26300
  * @secure
25699
26301
  */
25700
- linksDelete: (data: LinksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
26302
+ linksDelete: (data: LinksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
25701
26303
  /**
25702
26304
  * @description Gets the requested link's information.
25703
26305
  *
@@ -25713,7 +26315,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25713
26315
  * @format id
25714
26316
  */
25715
26317
  id: string;
25716
- }, params?: RequestParams) => Promise<AxiosResponse<LinksGetResponse, any>>;
26318
+ }, params?: RequestParams) => Promise<AxiosResponse<LinksGetResponse, any, {}>>;
25717
26319
  /**
25718
26320
  * @description Gets the requested link's information.
25719
26321
  *
@@ -25723,7 +26325,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25723
26325
  * @request POST:/links.get
25724
26326
  * @secure
25725
26327
  */
25726
- linksGetPost: (data: LinksGetRequest, params?: RequestParams) => Promise<AxiosResponse<LinksGetResponse, any>>;
26328
+ linksGetPost: (data: LinksGetRequest, params?: RequestParams) => Promise<AxiosResponse<LinksGetResponse, any, {}>>;
25727
26329
  /**
25728
26330
  * @description Lists the available links.
25729
26331
  *
@@ -25777,7 +26379,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25777
26379
  * @deprecated
25778
26380
  */
25779
26381
  types?: LinkType[];
25780
- }, params?: RequestParams) => Promise<AxiosResponse<LinksListResponse, any>>;
26382
+ }, params?: RequestParams) => Promise<AxiosResponse<LinksListResponse, any, {}>>;
25781
26383
  /**
25782
26384
  * @description Lists the available links.
25783
26385
  *
@@ -25787,7 +26389,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25787
26389
  * @request POST:/links.list
25788
26390
  * @secure
25789
26391
  */
25790
- linksListPost: (data: LinksListRequest, params?: RequestParams) => Promise<AxiosResponse<LinksListResponse, any>>;
26392
+ linksListPost: (data: LinksListRequest, params?: RequestParams) => Promise<AxiosResponse<LinksListResponse, any, {}>>;
25791
26393
  /**
25792
26394
  * @description Replaces a link.
25793
26395
  *
@@ -25797,7 +26399,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25797
26399
  * @request POST:/links.replace
25798
26400
  * @secure
25799
26401
  */
25800
- linksReplace: (data: LinksReplaceRequest, params?: RequestParams) => Promise<AxiosResponse<LinksReplaceResponse, any>>;
26402
+ linksReplace: (data: LinksReplaceRequest, params?: RequestParams) => Promise<AxiosResponse<LinksReplaceResponse, any, {}>>;
25801
26403
  /**
25802
26404
  * @description Counts the meeting records.
25803
26405
  *
@@ -25865,7 +26467,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25865
26467
  'sync_metadata.origin_system'?: string[];
25866
26468
  /** Filters for meeting by tags. */
25867
26469
  tags?: string[];
25868
- }, params?: RequestParams) => Promise<AxiosResponse<MeetingsCountResponse, any>>;
26470
+ }, params?: RequestParams) => Promise<AxiosResponse<MeetingsCountResponse, any, {}>>;
25869
26471
  /**
25870
26472
  * @description Counts the meeting records.
25871
26473
  *
@@ -25875,7 +26477,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25875
26477
  * @request POST:/meetings.count
25876
26478
  * @secure
25877
26479
  */
25878
- meetingsCountPost: (data: MeetingsCountRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsCountResponse, any>>;
26480
+ meetingsCountPost: (data: MeetingsCountRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsCountResponse, any, {}>>;
25879
26481
  /**
25880
26482
  * @description Creates a new meeting record.
25881
26483
  *
@@ -25885,7 +26487,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25885
26487
  * @request POST:/meetings.create
25886
26488
  * @secure
25887
26489
  */
25888
- meetingsCreate: (data: MeetingsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsCreateResponse, any>>;
26490
+ meetingsCreate: (data: MeetingsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsCreateResponse, any, {}>>;
25889
26491
  /**
25890
26492
  * @description Deletes the meeting record.
25891
26493
  *
@@ -25895,7 +26497,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25895
26497
  * @request POST:/meetings.delete
25896
26498
  * @secure
25897
26499
  */
25898
- meetingsDelete: (data: MeetingsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
26500
+ meetingsDelete: (data: MeetingsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
25899
26501
  /**
25900
26502
  * @description Gets the meeting record.
25901
26503
  *
@@ -25911,7 +26513,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25911
26513
  * @format id
25912
26514
  */
25913
26515
  id: string;
25914
- }, params?: RequestParams) => Promise<AxiosResponse<MeetingsGetResponse, any>>;
26516
+ }, params?: RequestParams) => Promise<AxiosResponse<MeetingsGetResponse, any, {}>>;
25915
26517
  /**
25916
26518
  * @description Gets the meeting record.
25917
26519
  *
@@ -25921,7 +26523,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25921
26523
  * @request POST:/meetings.get
25922
26524
  * @secure
25923
26525
  */
25924
- meetingsGetPost: (data: MeetingsGetRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsGetResponse, any>>;
26526
+ meetingsGetPost: (data: MeetingsGetRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsGetResponse, any, {}>>;
25925
26527
  /**
25926
26528
  * @description Lists the meeting records.
25927
26529
  *
@@ -26007,7 +26609,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26007
26609
  'sync_metadata.origin_system'?: string[];
26008
26610
  /** Filters for meeting by tags. */
26009
26611
  tags?: string[];
26010
- }, params?: RequestParams) => Promise<AxiosResponse<MeetingsListResponse, any>>;
26612
+ }, params?: RequestParams) => Promise<AxiosResponse<MeetingsListResponse, any, {}>>;
26011
26613
  /**
26012
26614
  * @description Lists the meeting records.
26013
26615
  *
@@ -26017,7 +26619,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26017
26619
  * @request POST:/meetings.list
26018
26620
  * @secure
26019
26621
  */
26020
- meetingsListPost: (data: MeetingsListRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsListResponse, any>>;
26622
+ meetingsListPost: (data: MeetingsListRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsListResponse, any, {}>>;
26021
26623
  /**
26022
26624
  * @description Updates the meeting record.
26023
26625
  *
@@ -26027,7 +26629,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26027
26629
  * @request POST:/meetings.update
26028
26630
  * @secure
26029
26631
  */
26030
- meetingsUpdate: (data: MeetingsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsUpdateResponse, any>>;
26632
+ meetingsUpdate: (data: MeetingsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsUpdateResponse, any, {}>>;
26031
26633
  /**
26032
26634
  * @description Executes the metric action on the given object.
26033
26635
  *
@@ -26037,7 +26639,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26037
26639
  * @request POST:/metric-action.execute
26038
26640
  * @secure
26039
26641
  */
26040
- metricActionExecute: (data: MetricActionExecuteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
26642
+ metricActionExecute: (data: MetricActionExecuteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
26041
26643
  /**
26042
26644
  * @description Creates a custom metric definition
26043
26645
  *
@@ -26047,7 +26649,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26047
26649
  * @request POST:/metric-definitions.create
26048
26650
  * @secure
26049
26651
  */
26050
- metricDefinitionsCreate: (data: MetricDefinitionsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsCreateResponse, any>>;
26652
+ metricDefinitionsCreate: (data: MetricDefinitionsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsCreateResponse, any, {}>>;
26051
26653
  /**
26052
26654
  * @description Deletes a custom metric definition
26053
26655
  *
@@ -26057,7 +26659,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26057
26659
  * @request POST:/metric-definitions.delete
26058
26660
  * @secure
26059
26661
  */
26060
- metricDefinitionsDelete: (data: MetricDefinitionsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
26662
+ metricDefinitionsDelete: (data: MetricDefinitionsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
26061
26663
  /**
26062
26664
  * @description Gets a custom metric definition
26063
26665
  *
@@ -26080,7 +26682,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26080
26682
  * @maxLength 64
26081
26683
  */
26082
26684
  name?: string;
26083
- }, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsGetResponse, any>>;
26685
+ }, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsGetResponse, any, {}>>;
26084
26686
  /**
26085
26687
  * @description Gets a custom metric definition
26086
26688
  *
@@ -26090,7 +26692,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26090
26692
  * @request POST:/metric-definitions.get
26091
26693
  * @secure
26092
26694
  */
26093
- metricDefinitionsGetPost: (data: MetricDefinitionsGetRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsGetResponse, any>>;
26695
+ metricDefinitionsGetPost: (data: MetricDefinitionsGetRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsGetResponse, any, {}>>;
26094
26696
  /**
26095
26697
  * @description Lists metric definitions matching a filter.
26096
26698
  *
@@ -26130,7 +26732,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26130
26732
  status?: MetricDefinitionStatus[];
26131
26733
  /** The type of metric definitions sought. */
26132
26734
  type?: MetricDefinitionMetricType[];
26133
- }, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsListResponse, any>>;
26735
+ }, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsListResponse, any, {}>>;
26134
26736
  /**
26135
26737
  * @description Lists metric definitions matching a filter.
26136
26738
  *
@@ -26140,7 +26742,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26140
26742
  * @request POST:/metric-definitions.list
26141
26743
  * @secure
26142
26744
  */
26143
- metricDefinitionsListPost: (data: MetricDefinitionsListRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsListResponse, any>>;
26745
+ metricDefinitionsListPost: (data: MetricDefinitionsListRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsListResponse, any, {}>>;
26144
26746
  /**
26145
26747
  * @description Updates a custom metric definition
26146
26748
  *
@@ -26150,7 +26752,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26150
26752
  * @request POST:/metric-definitions.update
26151
26753
  * @secure
26152
26754
  */
26153
- metricDefinitionsUpdate: (data: MetricDefinitionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsUpdateResponse, any>>;
26755
+ metricDefinitionsUpdate: (data: MetricDefinitionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsUpdateResponse, any, {}>>;
26154
26756
  /**
26155
26757
  * @description Gets a metric tracker.
26156
26758
  *
@@ -26171,7 +26773,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26171
26773
  * @format id
26172
26774
  */
26173
26775
  object: string;
26174
- }, params?: RequestParams) => Promise<AxiosResponse<MetricTrackersGetResponse, any>>;
26776
+ }, params?: RequestParams) => Promise<AxiosResponse<MetricTrackersGetResponse, any, {}>>;
26175
26777
  /**
26176
26778
  * @description Gets a metric tracker.
26177
26779
  *
@@ -26181,7 +26783,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26181
26783
  * @request POST:/metric-trackers.get
26182
26784
  * @secure
26183
26785
  */
26184
- metricTrackersGetPost: (data: MetricTrackersGetRequest, params?: RequestParams) => Promise<AxiosResponse<MetricTrackersGetResponse, any>>;
26786
+ metricTrackersGetPost: (data: MetricTrackersGetRequest, params?: RequestParams) => Promise<AxiosResponse<MetricTrackersGetResponse, any, {}>>;
26185
26787
  /**
26186
26788
  * @description Ingest endpoint for DevRev metrics data from clients.
26187
26789
  *
@@ -26191,7 +26793,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26191
26793
  * @request POST:/metrics.devrev.ingest
26192
26794
  * @secure
26193
26795
  */
26194
- metricsDevrevIngest: (data: MetricsDataIngestRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
26796
+ metricsDevrevIngest: (data: MetricsDataIngestRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
26195
26797
  /**
26196
26798
  * @description Generate a notification.
26197
26799
  *
@@ -26201,7 +26803,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26201
26803
  * @request POST:/notifications.send
26202
26804
  * @secure
26203
26805
  */
26204
- notificationsSend: (data: NotificationsSendRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
26806
+ notificationsSend: (data: NotificationsSendRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
26205
26807
  /**
26206
26808
  * @description Creates an organization schedule fragment.
26207
26809
  *
@@ -26211,7 +26813,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26211
26813
  * @request POST:/org-schedule-fragments.create
26212
26814
  * @secure
26213
26815
  */
26214
- orgScheduleFragmentsCreate: (data: OrgScheduleFragmentsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsCreateResponse, any>>;
26816
+ orgScheduleFragmentsCreate: (data: OrgScheduleFragmentsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsCreateResponse, any, {}>>;
26215
26817
  /**
26216
26818
  * @description Gets an organization schedule fragment.
26217
26819
  *
@@ -26227,7 +26829,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26227
26829
  * @format id
26228
26830
  */
26229
26831
  id: string;
26230
- }, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsGetResponse, any>>;
26832
+ }, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsGetResponse, any, {}>>;
26231
26833
  /**
26232
26834
  * @description Gets an organization schedule fragment.
26233
26835
  *
@@ -26237,7 +26839,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26237
26839
  * @request POST:/org-schedule-fragments.get
26238
26840
  * @secure
26239
26841
  */
26240
- orgScheduleFragmentsGetPost: (data: OrgScheduleFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsGetResponse, any>>;
26842
+ orgScheduleFragmentsGetPost: (data: OrgScheduleFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsGetResponse, any, {}>>;
26241
26843
  /**
26242
26844
  * @description Changes stage of an organization schedule fragment.
26243
26845
  *
@@ -26247,7 +26849,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26247
26849
  * @request POST:/org-schedule-fragments.transition
26248
26850
  * @secure
26249
26851
  */
26250
- orgScheduleFragmentsTransition: (data: OrgScheduleFragmentsTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsTransitionResponse, any>>;
26852
+ orgScheduleFragmentsTransition: (data: OrgScheduleFragmentsTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsTransitionResponse, any, {}>>;
26251
26853
  /**
26252
26854
  * @description Creates an organization schedule with a default weekly organization schedule and a list of organization schedule fragments.
26253
26855
  *
@@ -26257,7 +26859,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26257
26859
  * @request POST:/org-schedules.create
26258
26860
  * @secure
26259
26861
  */
26260
- orgSchedulesCreate: (data: OrgSchedulesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesCreateResponse, any>>;
26862
+ orgSchedulesCreate: (data: OrgSchedulesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesCreateResponse, any, {}>>;
26261
26863
  /**
26262
26864
  * @description Evaluates an organization's schedule at specified instants.
26263
26865
  *
@@ -26279,7 +26881,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26279
26881
  * @example ["2023-01-01T12:00:00.000Z"]
26280
26882
  */
26281
26883
  instants: string[];
26282
- }, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesEvaluateResponse, any>>;
26884
+ }, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesEvaluateResponse, any, {}>>;
26283
26885
  /**
26284
26886
  * @description Evaluates an organization's schedule at specified instants.
26285
26887
  *
@@ -26289,7 +26891,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26289
26891
  * @request POST:/org-schedules.evaluate
26290
26892
  * @secure
26291
26893
  */
26292
- orgSchedulesEvaluatePost: (data: OrgSchedulesEvaluateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesEvaluateResponse, any>>;
26894
+ orgSchedulesEvaluatePost: (data: OrgSchedulesEvaluateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesEvaluateResponse, any, {}>>;
26293
26895
  /**
26294
26896
  * @description Gets an organization schedule.
26295
26897
  *
@@ -26305,7 +26907,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26305
26907
  * @format id
26306
26908
  */
26307
26909
  id: string;
26308
- }, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesGetResponse, any>>;
26910
+ }, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesGetResponse, any, {}>>;
26309
26911
  /**
26310
26912
  * @description Gets an organization schedule.
26311
26913
  *
@@ -26315,7 +26917,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26315
26917
  * @request POST:/org-schedules.get
26316
26918
  * @secure
26317
26919
  */
26318
- orgSchedulesGetPost: (data: OrgSchedulesGetRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesGetResponse, any>>;
26920
+ orgSchedulesGetPost: (data: OrgSchedulesGetRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesGetResponse, any, {}>>;
26319
26921
  /**
26320
26922
  * @description Gets list of organization schedules.
26321
26923
  *
@@ -26347,7 +26949,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26347
26949
  mode?: ListMode;
26348
26950
  /** The organization schedule statuses the filter matches. */
26349
26951
  status?: OrgScheduleStatus[];
26350
- }, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesListResponse, any>>;
26952
+ }, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesListResponse, any, {}>>;
26351
26953
  /**
26352
26954
  * @description Gets list of organization schedules.
26353
26955
  *
@@ -26357,7 +26959,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26357
26959
  * @request POST:/org-schedules.list
26358
26960
  * @secure
26359
26961
  */
26360
- orgSchedulesListPost: (data: OrgSchedulesListRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesListResponse, any>>;
26962
+ orgSchedulesListPost: (data: OrgSchedulesListRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesListResponse, any, {}>>;
26361
26963
  /**
26362
26964
  * @description Sets next organization schedule fragment which must begin the day the last existing fragment ends.
26363
26965
  *
@@ -26367,7 +26969,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26367
26969
  * @request POST:/org-schedules.set-future
26368
26970
  * @secure
26369
26971
  */
26370
- orgSchedulesSetFuture: (data: OrgSchedulesSetFutureRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesSetFutureResponse, any>>;
26972
+ orgSchedulesSetFuture: (data: OrgSchedulesSetFutureRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesSetFutureResponse, any, {}>>;
26371
26973
  /**
26372
26974
  * @description Publishes or archives an organization schedule.
26373
26975
  *
@@ -26377,7 +26979,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26377
26979
  * @request POST:/org-schedules.transition
26378
26980
  * @secure
26379
26981
  */
26380
- orgSchedulesTransition: (data: OrgSchedulesTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesTransitionResponse, any>>;
26982
+ orgSchedulesTransition: (data: OrgSchedulesTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesTransitionResponse, any, {}>>;
26381
26983
  /**
26382
26984
  * @description Updates an organization schedule.
26383
26985
  *
@@ -26387,7 +26989,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26387
26989
  * @request POST:/org-schedules.update
26388
26990
  * @secure
26389
26991
  */
26390
- orgSchedulesUpdate: (data: OrgSchedulesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesUpdateResponse, any>>;
26992
+ orgSchedulesUpdate: (data: OrgSchedulesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesUpdateResponse, any, {}>>;
26391
26993
  /**
26392
26994
  * @description Creates new [part](https://devrev.ai/docs/product/parts).
26393
26995
  *
@@ -26397,7 +26999,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26397
26999
  * @request POST:/parts.create
26398
27000
  * @secure
26399
27001
  */
26400
- partsCreate: (data: PartsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<PartsCreateResponse, any>>;
27002
+ partsCreate: (data: PartsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<PartsCreateResponse, any, {}>>;
26401
27003
  /**
26402
27004
  * @description Deletes a [part](https://devrev.ai/docs/product/parts).
26403
27005
  *
@@ -26407,7 +27009,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26407
27009
  * @request POST:/parts.delete
26408
27010
  * @secure
26409
27011
  */
26410
- partsDelete: (data: PartsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
27012
+ partsDelete: (data: PartsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
26411
27013
  /**
26412
27014
  * @description Gets a [part's](https://devrev.ai/docs/product/parts) information.
26413
27015
  *
@@ -26424,7 +27026,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26424
27026
  * @example "PROD-12345"
26425
27027
  */
26426
27028
  id: string;
26427
- }, params?: RequestParams) => Promise<AxiosResponse<PartsGetResponse, any>>;
27029
+ }, params?: RequestParams) => Promise<AxiosResponse<PartsGetResponse, any, {}>>;
26428
27030
  /**
26429
27031
  * @description Gets a [part's](https://devrev.ai/docs/product/parts) information.
26430
27032
  *
@@ -26434,7 +27036,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26434
27036
  * @request POST:/parts.get
26435
27037
  * @secure
26436
27038
  */
26437
- partsGetPost: (data: PartsGetRequest, params?: RequestParams) => Promise<AxiosResponse<PartsGetResponse, any>>;
27039
+ partsGetPost: (data: PartsGetRequest, params?: RequestParams) => Promise<AxiosResponse<PartsGetResponse, any, {}>>;
26438
27040
  /**
26439
27041
  * @description Lists a collection of [parts](https://devrev.ai/docs/product/parts).
26440
27042
  *
@@ -26574,7 +27176,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26574
27176
  tags?: string[];
26575
27177
  /** Filters for parts of the provided type(s). */
26576
27178
  type?: PartType[];
26577
- }, params?: RequestParams) => Promise<AxiosResponse<PartsListResponse, any>>;
27179
+ }, params?: RequestParams) => Promise<AxiosResponse<PartsListResponse, any, {}>>;
26578
27180
  /**
26579
27181
  * @description Lists a collection of [parts](https://devrev.ai/docs/product/parts).
26580
27182
  *
@@ -26584,7 +27186,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26584
27186
  * @request POST:/parts.list
26585
27187
  * @secure
26586
27188
  */
26587
- partsListPost: (data: PartsListRequest, params?: RequestParams) => Promise<AxiosResponse<PartsListResponse, any>>;
27189
+ partsListPost: (data: PartsListRequest, params?: RequestParams) => Promise<AxiosResponse<PartsListResponse, any, {}>>;
26588
27190
  /**
26589
27191
  * @description Updates a [part's](https://devrev.ai/docs/product/parts) information.
26590
27192
  *
@@ -26594,7 +27196,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26594
27196
  * @request POST:/parts.update
26595
27197
  * @secure
26596
27198
  */
26597
- partsUpdate: (data: PartsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<PartsUpdateResponse, any>>;
27199
+ partsUpdate: (data: PartsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<PartsUpdateResponse, any, {}>>;
26598
27200
  /**
26599
27201
  * @description Get the preferences object.
26600
27202
  *
@@ -26619,7 +27221,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26619
27221
  * @format text
26620
27222
  */
26621
27223
  language_code?: string;
26622
- }, params?: RequestParams) => Promise<AxiosResponse<PreferencesGetResponse, any>>;
27224
+ }, params?: RequestParams) => Promise<AxiosResponse<PreferencesGetResponse, any, {}>>;
26623
27225
  /**
26624
27226
  * @description Get the preferences object.
26625
27227
  *
@@ -26629,7 +27231,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26629
27231
  * @request POST:/preferences.get
26630
27232
  * @secure
26631
27233
  */
26632
- preferencesGetPost: (data: PreferencesGetRequest, params?: RequestParams) => Promise<AxiosResponse<PreferencesGetResponse, any>>;
27234
+ preferencesGetPost: (data: PreferencesGetRequest, params?: RequestParams) => Promise<AxiosResponse<PreferencesGetResponse, any, {}>>;
26633
27235
  /**
26634
27236
  * @description Updates the preference for a particular object.
26635
27237
  *
@@ -26639,7 +27241,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26639
27241
  * @request POST:/preferences.update
26640
27242
  * @secure
26641
27243
  */
26642
- preferencesUpdate: (data: PreferencesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<PreferencesUpdateResponse, any>>;
27244
+ preferencesUpdate: (data: PreferencesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<PreferencesUpdateResponse, any, {}>>;
26643
27245
  /**
26644
27246
  * @description Creates a question-answer.
26645
27247
  *
@@ -26649,7 +27251,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26649
27251
  * @request POST:/question-answers.create
26650
27252
  * @secure
26651
27253
  */
26652
- createQuestionAnswer: (data: QuestionAnswersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersCreateResponse, any>>;
27254
+ createQuestionAnswer: (data: QuestionAnswersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersCreateResponse, any, {}>>;
26653
27255
  /**
26654
27256
  * @description Deletes a question-answer.
26655
27257
  *
@@ -26659,7 +27261,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26659
27261
  * @request POST:/question-answers.delete
26660
27262
  * @secure
26661
27263
  */
26662
- deleteQuestionAnswer: (data: QuestionAnswersDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
27264
+ deleteQuestionAnswer: (data: QuestionAnswersDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
26663
27265
  /**
26664
27266
  * @description Gets a question-answer.
26665
27267
  *
@@ -26675,7 +27277,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26675
27277
  * @format id
26676
27278
  */
26677
27279
  id: string;
26678
- }, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersGetResponse, any>>;
27280
+ }, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersGetResponse, any, {}>>;
26679
27281
  /**
26680
27282
  * @description Gets a question-answer.
26681
27283
  *
@@ -26685,7 +27287,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26685
27287
  * @request POST:/question-answers.get
26686
27288
  * @secure
26687
27289
  */
26688
- getQuestionAnswerPost: (data: QuestionAnswersGetRequest, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersGetResponse, any>>;
27290
+ getQuestionAnswerPost: (data: QuestionAnswersGetRequest, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersGetResponse, any, {}>>;
26689
27291
  /**
26690
27292
  * @description Lists a collection of question-answers.
26691
27293
  *
@@ -26734,7 +27336,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26734
27336
  * @example ["DEVU-12345"]
26735
27337
  */
26736
27338
  owned_by?: string[];
26737
- }, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersListResponse, any>>;
27339
+ }, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersListResponse, any, {}>>;
26738
27340
  /**
26739
27341
  * @description Lists a collection of question-answers.
26740
27342
  *
@@ -26744,7 +27346,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26744
27346
  * @request POST:/question-answers.list
26745
27347
  * @secure
26746
27348
  */
26747
- listQuestionAnswersPost: (data: QuestionAnswersListRequest, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersListResponse, any>>;
27349
+ listQuestionAnswersPost: (data: QuestionAnswersListRequest, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersListResponse, any, {}>>;
26748
27350
  /**
26749
27351
  * @description Updates a question-answer.
26750
27352
  *
@@ -26754,7 +27356,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26754
27356
  * @request POST:/question-answers.update
26755
27357
  * @secure
26756
27358
  */
26757
- updateQuestionAnswer: (data: QuestionAnswersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersUpdateResponse, any>>;
27359
+ updateQuestionAnswer: (data: QuestionAnswersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersUpdateResponse, any, {}>>;
26758
27360
  /**
26759
27361
  * @description Lists the reactors for an object.
26760
27362
  *
@@ -26788,7 +27390,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26788
27390
  * @format int32
26789
27391
  */
26790
27392
  limit?: number;
26791
- }, params?: RequestParams) => Promise<AxiosResponse<ReactionsListResponse, any>>;
27393
+ }, params?: RequestParams) => Promise<AxiosResponse<ReactionsListResponse, any, {}>>;
26792
27394
  /**
26793
27395
  * @description Lists the reactors for an object.
26794
27396
  *
@@ -26798,7 +27400,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26798
27400
  * @request POST:/reactions.list
26799
27401
  * @secure
26800
27402
  */
26801
- reactionsListPost: (data: ReactionsListRequest, params?: RequestParams) => Promise<AxiosResponse<ReactionsListResponse, any>>;
27403
+ reactionsListPost: (data: ReactionsListRequest, params?: RequestParams) => Promise<AxiosResponse<ReactionsListResponse, any, {}>>;
26802
27404
  /**
26803
27405
  * @description Updates a reaction for an object.
26804
27406
  *
@@ -26808,7 +27410,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26808
27410
  * @request POST:/reactions.update
26809
27411
  * @secure
26810
27412
  */
26811
- reactionsUpdate: (data: ReactionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
27413
+ reactionsUpdate: (data: ReactionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
26812
27414
  /**
26813
27415
  * @description Returns a response for the chat conversation.
26814
27416
  *
@@ -26818,7 +27420,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26818
27420
  * @request POST:/recommendations.chat.completions
26819
27421
  * @secure
26820
27422
  */
26821
- chatCompletions: (data: ChatCompletionsRequest, params?: RequestParams) => Promise<AxiosResponse<ChatCompletionsResponse, any>>;
27423
+ chatCompletions: (data: ChatCompletionsRequest, params?: RequestParams) => Promise<AxiosResponse<ChatCompletionsResponse, any, {}>>;
26822
27424
  /**
26823
27425
  * @description Gets a reply for a user query.
26824
27426
  *
@@ -26828,7 +27430,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26828
27430
  * @request POST:/recommendations.get-reply
26829
27431
  * @secure
26830
27432
  */
26831
- getReply: (data: GetReplyRequest, params?: RequestParams) => Promise<AxiosResponse<GetReplyResponse, any>>;
27433
+ getReply: (data: GetReplyRequest, params?: RequestParams) => Promise<AxiosResponse<GetReplyResponse, any, {}>>;
26832
27434
  /**
26833
27435
  * @description Gets a record template object.
26834
27436
  *
@@ -26844,7 +27446,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26844
27446
  * @format id
26845
27447
  */
26846
27448
  id: string;
26847
- }, params?: RequestParams) => Promise<AxiosResponse<RecordTemplateGetResponse, any>>;
27449
+ }, params?: RequestParams) => Promise<AxiosResponse<RecordTemplateGetResponse, any, {}>>;
26848
27450
  /**
26849
27451
  * @description Gets a record template object.
26850
27452
  *
@@ -26854,7 +27456,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26854
27456
  * @request POST:/record-templates.get
26855
27457
  * @secure
26856
27458
  */
26857
- recordTemplateGetPost: (data: RecordTemplateGetRequest, params?: RequestParams) => Promise<AxiosResponse<RecordTemplateGetResponse, any>>;
27459
+ recordTemplateGetPost: (data: RecordTemplateGetRequest, params?: RequestParams) => Promise<AxiosResponse<RecordTemplateGetResponse, any, {}>>;
26858
27460
  /**
26859
27461
  * @description Creates a Rev organization in the authenticated user's Dev organization.
26860
27462
  *
@@ -26864,7 +27466,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26864
27466
  * @request POST:/rev-orgs.create
26865
27467
  * @secure
26866
27468
  */
26867
- revOrgsCreate: (data: RevOrgsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsCreateResponse, any>>;
27469
+ revOrgsCreate: (data: RevOrgsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsCreateResponse, any, {}>>;
26868
27470
  /**
26869
27471
  * @description Deletes the Rev organization.
26870
27472
  *
@@ -26874,7 +27476,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26874
27476
  * @request POST:/rev-orgs.delete
26875
27477
  * @secure
26876
27478
  */
26877
- revOrgsDelete: (data: RevOrgsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
27479
+ revOrgsDelete: (data: RevOrgsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
26878
27480
  /**
26879
27481
  * @description Retrieves the Rev organization's information.
26880
27482
  *
@@ -26898,7 +27500,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26898
27500
  * @example "REV-AbCdEfGh"
26899
27501
  */
26900
27502
  id?: string;
26901
- }, params?: RequestParams) => Promise<AxiosResponse<RevOrgsGetResponse, any>>;
27503
+ }, params?: RequestParams) => Promise<AxiosResponse<RevOrgsGetResponse, any, {}>>;
26902
27504
  /**
26903
27505
  * @description Retrieves the Rev organization's information.
26904
27506
  *
@@ -26908,7 +27510,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26908
27510
  * @request POST:/rev-orgs.get
26909
27511
  * @secure
26910
27512
  */
26911
- revOrgsGetPost: (data: RevOrgsGetRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsGetResponse, any>>;
27513
+ revOrgsGetPost: (data: RevOrgsGetRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsGetResponse, any, {}>>;
26912
27514
  /**
26913
27515
  * @description Gets the list of Rev organizations' information belonging to the authenticated user's Dev Organization which the user is also authorized to access.
26914
27516
  *
@@ -26986,7 +27588,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26986
27588
  sort_by?: string[];
26987
27589
  /** List of tags to be filtered. */
26988
27590
  tags?: string[];
26989
- }, params?: RequestParams) => Promise<AxiosResponse<RevOrgsListResponse, any>>;
27591
+ }, params?: RequestParams) => Promise<AxiosResponse<RevOrgsListResponse, any, {}>>;
26990
27592
  /**
26991
27593
  * @description Gets the list of Rev organizations' information belonging to the authenticated user's Dev Organization which the user is also authorized to access.
26992
27594
  *
@@ -26996,7 +27598,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26996
27598
  * @request POST:/rev-orgs.list
26997
27599
  * @secure
26998
27600
  */
26999
- revOrgsListPost: (data: RevOrgsListRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsListResponse, any>>;
27601
+ revOrgsListPost: (data: RevOrgsListRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsListResponse, any, {}>>;
27000
27602
  /**
27001
27603
  * @description Updates the Rev organization's information.
27002
27604
  *
@@ -27006,7 +27608,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27006
27608
  * @request POST:/rev-orgs.update
27007
27609
  * @secure
27008
27610
  */
27009
- revOrgsUpdate: (data: RevOrgsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsUpdateResponse, any>>;
27611
+ revOrgsUpdate: (data: RevOrgsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsUpdateResponse, any, {}>>;
27010
27612
  /**
27011
27613
  * @description Adds an association to a Rev user. This API is only available when the multi-association contact feature is enabled.
27012
27614
  *
@@ -27016,7 +27618,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27016
27618
  * @request POST:/rev-users.associations.add
27017
27619
  * @secure
27018
27620
  */
27019
- revUsersAssociationsAdd: (data: RevUsersAssociationsAddRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
27621
+ revUsersAssociationsAdd: (data: RevUsersAssociationsAddRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
27020
27622
  /**
27021
27623
  * @description Returns a list of associations on a Rev user.
27022
27624
  *
@@ -27049,7 +27651,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27049
27651
  * used.
27050
27652
  */
27051
27653
  mode?: ListMode;
27052
- }, params?: RequestParams) => Promise<AxiosResponse<RevUsersAssociationsListResponse, any>>;
27654
+ }, params?: RequestParams) => Promise<AxiosResponse<RevUsersAssociationsListResponse, any, {}>>;
27053
27655
  /**
27054
27656
  * @description Returns a list of associations on a Rev user.
27055
27657
  *
@@ -27059,7 +27661,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27059
27661
  * @request POST:/rev-users.associations.list
27060
27662
  * @secure
27061
27663
  */
27062
- revUsersAssociationsListPost: (data: RevUsersAssociationsListRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersAssociationsListResponse, any>>;
27664
+ revUsersAssociationsListPost: (data: RevUsersAssociationsListRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersAssociationsListResponse, any, {}>>;
27063
27665
  /**
27064
27666
  * @description Removes an association from a Rev user. This API is only available when the multi-association contact feature is enabled.
27065
27667
  *
@@ -27069,7 +27671,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27069
27671
  * @request POST:/rev-users.associations.remove
27070
27672
  * @secure
27071
27673
  */
27072
- revUsersAssociationsRemove: (data: RevUsersAssociationsRemoveRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
27674
+ revUsersAssociationsRemove: (data: RevUsersAssociationsRemoveRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
27073
27675
  /**
27074
27676
  * @description Creates a Rev user for a Rev organization. Rev user can be a customer or a lead of an organization.
27075
27677
  *
@@ -27079,7 +27681,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27079
27681
  * @request POST:/rev-users.create
27080
27682
  * @secure
27081
27683
  */
27082
- revUsersCreate: (data: RevUsersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersCreateResponse, any>>;
27684
+ revUsersCreate: (data: RevUsersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersCreateResponse, any, {}>>;
27083
27685
  /**
27084
27686
  * @description Deletes a Rev user.
27085
27687
  *
@@ -27089,7 +27691,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27089
27691
  * @request POST:/rev-users.delete
27090
27692
  * @secure
27091
27693
  */
27092
- revUsersDelete: (data: RevUsersDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
27694
+ revUsersDelete: (data: RevUsersDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
27093
27695
  /**
27094
27696
  * @description Deletes data of a contact.
27095
27697
  *
@@ -27099,7 +27701,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27099
27701
  * @request POST:/rev-users.delete-personal-data
27100
27702
  * @secure
27101
27703
  */
27102
- deleteRevUsersPersonalData: (data: DeleteRevUsersPersonalDataRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
27704
+ deleteRevUsersPersonalData: (data: DeleteRevUsersPersonalDataRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
27103
27705
  /**
27104
27706
  * @description Returns the Rev user of a Rev organization by its ID.
27105
27707
  *
@@ -27115,7 +27717,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27115
27717
  * @format id
27116
27718
  */
27117
27719
  id: string;
27118
- }, params?: RequestParams) => Promise<AxiosResponse<RevUsersGetResponse, any>>;
27720
+ }, params?: RequestParams) => Promise<AxiosResponse<RevUsersGetResponse, any, {}>>;
27119
27721
  /**
27120
27722
  * @description Returns the Rev user of a Rev organization by its ID.
27121
27723
  *
@@ -27125,7 +27727,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27125
27727
  * @request POST:/rev-users.get
27126
27728
  * @secure
27127
27729
  */
27128
- revUsersGetPost: (data: RevUsersGetRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersGetResponse, any>>;
27730
+ revUsersGetPost: (data: RevUsersGetRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersGetResponse, any, {}>>;
27129
27731
  /**
27130
27732
  * @description Links a rev user to a rev org.
27131
27733
  *
@@ -27136,7 +27738,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27136
27738
  * @deprecated
27137
27739
  * @secure
27138
27740
  */
27139
- linkRevUserToRevOrg: (data: LinkRevUserToRevOrgRequest, params?: RequestParams) => Promise<AxiosResponse<LinkRevUserToRevOrgResponse, any>>;
27741
+ linkRevUserToRevOrg: (data: LinkRevUserToRevOrgRequest, params?: RequestParams) => Promise<AxiosResponse<LinkRevUserToRevOrgResponse, any, {}>>;
27140
27742
  /**
27141
27743
  * @description Returns a list of all Rev Users belonging to the authenticated user's Dev organization.
27142
27744
  *
@@ -27217,7 +27819,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27217
27819
  sort_by?: string[];
27218
27820
  /** List of tags to be filtered. */
27219
27821
  tags?: string[];
27220
- }, params?: RequestParams) => Promise<AxiosResponse<RevUsersListResponse, any>>;
27822
+ }, params?: RequestParams) => Promise<AxiosResponse<RevUsersListResponse, any, {}>>;
27221
27823
  /**
27222
27824
  * @description Returns a list of all Rev Users belonging to the authenticated user's Dev organization.
27223
27825
  *
@@ -27227,7 +27829,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27227
27829
  * @request POST:/rev-users.list
27228
27830
  * @secure
27229
27831
  */
27230
- revUsersListPost: (data: RevUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersListResponse, any>>;
27832
+ revUsersListPost: (data: RevUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersListResponse, any, {}>>;
27231
27833
  /**
27232
27834
  * @description Merges the secondary Rev user into the primary Rev user.
27233
27835
  *
@@ -27237,7 +27839,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27237
27839
  * @request POST:/rev-users.merge
27238
27840
  * @secure
27239
27841
  */
27240
- revUsersMerge: (data: RevUsersMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
27842
+ revUsersMerge: (data: RevUsersMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
27241
27843
  /**
27242
27844
  * @description Retrieves data of a contact.
27243
27845
  *
@@ -27247,7 +27849,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27247
27849
  * @request POST:/rev-users.personal-data
27248
27850
  * @secure
27249
27851
  */
27250
- getRevUsersPersonalData: (data: GetRevUsersPersonalDataRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
27852
+ getRevUsersPersonalData: (data: GetRevUsersPersonalDataRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
27251
27853
  /**
27252
27854
  * @description Scans through all Rev users.
27253
27855
  *
@@ -27316,7 +27918,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27316
27918
  rev_org?: string[];
27317
27919
  /** List of tags to be filtered. */
27318
27920
  tags?: string[];
27319
- }, params?: RequestParams) => Promise<AxiosResponse<RevUsersScanResponse, any>>;
27921
+ }, params?: RequestParams) => Promise<AxiosResponse<RevUsersScanResponse, any, {}>>;
27320
27922
  /**
27321
27923
  * @description Scans through all Rev users.
27322
27924
  *
@@ -27326,7 +27928,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27326
27928
  * @request POST:/rev-users.scan
27327
27929
  * @secure
27328
27930
  */
27329
- revUsersScanPost: (data: RevUsersScanRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersScanResponse, any>>;
27931
+ revUsersScanPost: (data: RevUsersScanRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersScanResponse, any, {}>>;
27330
27932
  /**
27331
27933
  * @description Unlinks a rev user from a rev org.
27332
27934
  *
@@ -27337,7 +27939,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27337
27939
  * @deprecated
27338
27940
  * @secure
27339
27941
  */
27340
- unlinkRevUserFromRevOrg: (data: UnlinkRevUserFromRevOrgRequest, params?: RequestParams) => Promise<AxiosResponse<UnlinkRevUserFromRevOrgResponse, any>>;
27942
+ unlinkRevUserFromRevOrg: (data: UnlinkRevUserFromRevOrgRequest, params?: RequestParams) => Promise<AxiosResponse<UnlinkRevUserFromRevOrgResponse, any, {}>>;
27341
27943
  /**
27342
27944
  * @description Updates a Rev user.
27343
27945
  *
@@ -27347,7 +27949,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27347
27949
  * @request POST:/rev-users.update
27348
27950
  * @secure
27349
27951
  */
27350
- revUsersUpdate: (data: RevUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersUpdateResponse, any>>;
27952
+ revUsersUpdate: (data: RevUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersUpdateResponse, any, {}>>;
27351
27953
  /**
27352
27954
  * @description Assigns or revokes roles of a principal.
27353
27955
  *
@@ -27357,7 +27959,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27357
27959
  * @request POST:/roles.apply
27358
27960
  * @secure
27359
27961
  */
27360
- rolesApply: (data: RolesApplyRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
27962
+ rolesApply: (data: RolesApplyRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
27361
27963
  /**
27362
27964
  * @description Creates a new role.
27363
27965
  *
@@ -27367,7 +27969,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27367
27969
  * @request POST:/roles.create
27368
27970
  * @secure
27369
27971
  */
27370
- rolesCreate: (data: RolesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RolesCreateResponse, any>>;
27972
+ rolesCreate: (data: RolesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RolesCreateResponse, any, {}>>;
27371
27973
  /**
27372
27974
  * @description Gets the aggregated schema.
27373
27975
  *
@@ -27400,7 +28002,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27400
28002
  * @format id
27401
28003
  */
27402
28004
  stock_schema_fragment?: string;
27403
- }, params?: RequestParams) => Promise<AxiosResponse<AggregatedSchemaGetResponse, any>>;
28005
+ }, params?: RequestParams) => Promise<AxiosResponse<AggregatedSchemaGetResponse, any, {}>>;
27404
28006
  /**
27405
28007
  * @description Gets the aggregated schema.
27406
28008
  *
@@ -27410,7 +28012,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27410
28012
  * @request POST:/schemas.aggregated.get
27411
28013
  * @secure
27412
28014
  */
27413
- aggregatedSchemaGetPost: (data: AggregatedSchemaGetRequest, params?: RequestParams) => Promise<AxiosResponse<AggregatedSchemaGetResponse, any>>;
28015
+ aggregatedSchemaGetPost: (data: AggregatedSchemaGetRequest, params?: RequestParams) => Promise<AxiosResponse<AggregatedSchemaGetResponse, any, {}>>;
27414
28016
  /**
27415
28017
  * @description Gets a custom schema fragment.
27416
28018
  *
@@ -27426,7 +28028,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27426
28028
  * @format id
27427
28029
  */
27428
28030
  id: string;
27429
- }, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsGetResponse, any>>;
28031
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsGetResponse, any, {}>>;
27430
28032
  /**
27431
28033
  * @description Gets a custom schema fragment.
27432
28034
  *
@@ -27436,7 +28038,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27436
28038
  * @request POST:/schemas.custom.get
27437
28039
  * @secure
27438
28040
  */
27439
- customSchemaFragmentsGetPost: (data: CustomSchemaFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsGetResponse, any>>;
28041
+ customSchemaFragmentsGetPost: (data: CustomSchemaFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsGetResponse, any, {}>>;
27440
28042
  /**
27441
28043
  * @description Lists custom schema fragments.
27442
28044
  *
@@ -27487,7 +28089,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27487
28089
  subtype?: string[];
27488
28090
  /** Filters for custom schema fragment of the provided types. */
27489
28091
  types?: CustomSchemaFragmentType[];
27490
- }, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsListResponse, any>>;
28092
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsListResponse, any, {}>>;
27491
28093
  /**
27492
28094
  * @description Lists custom schema fragments.
27493
28095
  *
@@ -27497,7 +28099,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27497
28099
  * @request POST:/schemas.custom.list
27498
28100
  * @secure
27499
28101
  */
27500
- customSchemaFragmentsListPost: (data: CustomSchemaFragmentsListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsListResponse, any>>;
28102
+ customSchemaFragmentsListPost: (data: CustomSchemaFragmentsListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsListResponse, any, {}>>;
27501
28103
  /**
27502
28104
  * @description Creates or updates a custom schema fragment.
27503
28105
  *
@@ -27507,7 +28109,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27507
28109
  * @request POST:/schemas.custom.set
27508
28110
  * @secure
27509
28111
  */
27510
- customSchemaFragmentsSet: (data: CustomSchemaFragmentsSetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsSetResponse, any>>;
28112
+ customSchemaFragmentsSet: (data: CustomSchemaFragmentsSetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsSetResponse, any, {}>>;
27511
28113
  /**
27512
28114
  * @description Gets a stock schema fragment.
27513
28115
  *
@@ -27528,7 +28130,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27528
28130
  * @format text
27529
28131
  */
27530
28132
  leaf_type?: string;
27531
- }, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsGetResponse, any>>;
28133
+ }, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsGetResponse, any, {}>>;
27532
28134
  /**
27533
28135
  * @description Gets a stock schema fragment.
27534
28136
  *
@@ -27538,7 +28140,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27538
28140
  * @request POST:/schemas.stock.get
27539
28141
  * @secure
27540
28142
  */
27541
- stockSchemaFragmentsGetPost: (data: StockSchemaFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsGetResponse, any>>;
28143
+ stockSchemaFragmentsGetPost: (data: StockSchemaFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsGetResponse, any, {}>>;
27542
28144
  /**
27543
28145
  * @description Lists stock schema fragments.
27544
28146
  *
@@ -27579,7 +28181,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27579
28181
  prune?: StockSchemaFragmentsListRequestPrune[];
27580
28182
  /** The list of fields to sort the items by and how to sort them. */
27581
28183
  sort_by?: string[];
27582
- }, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsListResponse, any>>;
28184
+ }, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsListResponse, any, {}>>;
27583
28185
  /**
27584
28186
  * @description Lists stock schema fragments.
27585
28187
  *
@@ -27589,7 +28191,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27589
28191
  * @request POST:/schemas.stock.list
27590
28192
  * @secure
27591
28193
  */
27592
- stockSchemaFragmentsListPost: (data: StockSchemaFragmentsListRequest, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsListResponse, any>>;
28194
+ stockSchemaFragmentsListPost: (data: StockSchemaFragmentsListRequest, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsListResponse, any, {}>>;
27593
28195
  /**
27594
28196
  * @description Lists subtypes.
27595
28197
  *
@@ -27608,7 +28210,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27608
28210
  leaf_type?: string;
27609
28211
  /** List of leaf types for which subtypes are required. */
27610
28212
  leaf_types?: string[];
27611
- }, params?: RequestParams) => Promise<AxiosResponse<SubtypesListResponse, any>>;
28213
+ }, params?: RequestParams) => Promise<AxiosResponse<SubtypesListResponse, any, {}>>;
27612
28214
  /**
27613
28215
  * @description Lists subtypes.
27614
28216
  *
@@ -27618,7 +28220,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27618
28220
  * @request POST:/schemas.subtypes.list
27619
28221
  * @secure
27620
28222
  */
27621
- subtypesListPost: (data: SubtypesListRequest, params?: RequestParams) => Promise<AxiosResponse<SubtypesListResponse, any>>;
28223
+ subtypesListPost: (data: SubtypesListRequest, params?: RequestParams) => Promise<AxiosResponse<SubtypesListResponse, any, {}>>;
27622
28224
  /**
27623
28225
  * @description Gets the new fragment IDs and fields resulting from changing a subtype.
27624
28226
  *
@@ -27628,7 +28230,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27628
28230
  * @request POST:/schemas.subtypes.prepare-update
27629
28231
  * @secure
27630
28232
  */
27631
- schemasSubtypePrepareUpdateGet: (data: SchemasSubtypePrepareUpdateGetRequest, params?: RequestParams) => Promise<AxiosResponse<SchemasSubtypePrepareUpdateGetResponse, any>>;
28233
+ schemasSubtypePrepareUpdateGet: (data: SchemasSubtypePrepareUpdateGetRequest, params?: RequestParams) => Promise<AxiosResponse<SchemasSubtypePrepareUpdateGetResponse, any, {}>>;
27632
28234
  /**
27633
28235
  * @description Searches for records based on a given query.
27634
28236
  *
@@ -27670,7 +28272,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27670
28272
  sort_by?: SearchSortByParam | undefined;
27671
28273
  /** Sorting order. The default is DESCENDING. */
27672
28274
  sort_order?: SearchSortOrderParam | undefined;
27673
- }, params?: RequestParams) => Promise<AxiosResponse<SearchCoreResponse, any>>;
28275
+ }, params?: RequestParams) => Promise<AxiosResponse<SearchCoreResponse, any, {}>>;
27674
28276
  /**
27675
28277
  * @description Searches for records based on a given query.
27676
28278
  *
@@ -27680,7 +28282,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27680
28282
  * @request POST:/search.core
27681
28283
  * @secure
27682
28284
  */
27683
- searchCorePost: (data: SearchCoreRequest, params?: RequestParams) => Promise<AxiosResponse<SearchCoreResponse, any>>;
28285
+ searchCorePost: (data: SearchCoreRequest, params?: RequestParams) => Promise<AxiosResponse<SearchCoreResponse, any, {}>>;
27684
28286
  /**
27685
28287
  * @description Performs search, using a combination of syntactic and semantic search.
27686
28288
  *
@@ -27715,7 +28317,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27715
28317
  * @max 1
27716
28318
  */
27717
28319
  semantic_weight?: number | undefined;
27718
- }, params?: RequestParams) => Promise<AxiosResponse<SearchHybridResponse, any>>;
28320
+ }, params?: RequestParams) => Promise<AxiosResponse<SearchHybridResponse, any, {}>>;
27719
28321
  /**
27720
28322
  * @description Performs search, using a combination of syntactic and semantic search.
27721
28323
  *
@@ -27725,7 +28327,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27725
28327
  * @request POST:/search.hybrid
27726
28328
  * @secure
27727
28329
  */
27728
- searchHybridPost: (data: SearchHybridRequest, params?: RequestParams) => Promise<AxiosResponse<SearchHybridResponse, any>>;
28330
+ searchHybridPost: (data: SearchHybridRequest, params?: RequestParams) => Promise<AxiosResponse<SearchHybridResponse, any, {}>>;
27729
28331
  /**
27730
28332
  * @description Creates a service account.
27731
28333
  *
@@ -27735,7 +28337,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27735
28337
  * @request POST:/service-accounts.create
27736
28338
  * @secure
27737
28339
  */
27738
- serviceAccountsCreate: (data: ServiceAccountsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsCreateResponse, any>>;
28340
+ serviceAccountsCreate: (data: ServiceAccountsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsCreateResponse, any, {}>>;
27739
28341
  /**
27740
28342
  * @description Gets a service account.
27741
28343
  *
@@ -27751,7 +28353,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27751
28353
  * @format id
27752
28354
  */
27753
28355
  id: string;
27754
- }, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsGetResponse, any>>;
28356
+ }, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsGetResponse, any, {}>>;
27755
28357
  /**
27756
28358
  * @description Gets a service account.
27757
28359
  *
@@ -27761,7 +28363,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27761
28363
  * @request POST:/service-accounts.get
27762
28364
  * @secure
27763
28365
  */
27764
- serviceAccountsGetPost: (data: ServiceAccountsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsGetResponse, any>>;
28366
+ serviceAccountsGetPost: (data: ServiceAccountsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsGetResponse, any, {}>>;
27765
28367
  /**
27766
28368
  * @description Updates a service account.
27767
28369
  *
@@ -27771,7 +28373,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27771
28373
  * @request POST:/service-accounts.update
27772
28374
  * @secure
27773
28375
  */
27774
- serviceAccountsUpdate: (data: ServiceAccountsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsUpdateResponse, any>>;
28376
+ serviceAccountsUpdate: (data: ServiceAccountsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsUpdateResponse, any, {}>>;
27775
28377
  /**
27776
28378
  * @description Gets an SLA tracker.
27777
28379
  *
@@ -27787,7 +28389,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27787
28389
  * @format id
27788
28390
  */
27789
28391
  id: string;
27790
- }, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersGetResponse, any>>;
28392
+ }, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersGetResponse, any, {}>>;
27791
28393
  /**
27792
28394
  * @description Gets an SLA tracker.
27793
28395
  *
@@ -27797,7 +28399,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27797
28399
  * @request POST:/sla-trackers.get
27798
28400
  * @secure
27799
28401
  */
27800
- slaTrackersGetPost: (data: SlaTrackersGetRequest, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersGetResponse, any>>;
28402
+ slaTrackersGetPost: (data: SlaTrackersGetRequest, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersGetResponse, any, {}>>;
27801
28403
  /**
27802
28404
  * @description Lists SLA trackers matching a filter.
27803
28405
  *
@@ -27856,7 +28458,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27856
28458
  stage?: string[];
27857
28459
  /** The SLA tracker statuses the filter matches. */
27858
28460
  status?: string[];
27859
- }, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersListResponse, any>>;
28461
+ }, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersListResponse, any, {}>>;
27860
28462
  /**
27861
28463
  * @description Lists SLA trackers matching a filter.
27862
28464
  *
@@ -27866,7 +28468,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27866
28468
  * @request POST:/sla-trackers.list
27867
28469
  * @secure
27868
28470
  */
27869
- slaTrackersListPost: (data: SlaTrackersListRequest, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersListResponse, any>>;
28471
+ slaTrackersListPost: (data: SlaTrackersListRequest, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersListResponse, any, {}>>;
27870
28472
  /**
27871
28473
  * @description Removes a metric from the given object's SLA.
27872
28474
  *
@@ -27876,7 +28478,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27876
28478
  * @request POST:/sla-trackers.remove-metric
27877
28479
  * @secure
27878
28480
  */
27879
- slaTrackersRemoveMetric: (data: SlaTrackersRemoveMetricRequest, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersRemoveMetricResponse, any>>;
28481
+ slaTrackersRemoveMetric: (data: SlaTrackersRemoveMetricRequest, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersRemoveMetricResponse, any, {}>>;
27880
28482
  /**
27881
28483
  * @description Assigns the SLA to a set of Rev organizations.
27882
28484
  *
@@ -27886,7 +28488,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27886
28488
  * @request POST:/slas.assign
27887
28489
  * @secure
27888
28490
  */
27889
- slasAssign: (data: SlasAssignRequest, params?: RequestParams) => Promise<AxiosResponse<SlasAssignResponse, any>>;
28491
+ slasAssign: (data: SlasAssignRequest, params?: RequestParams) => Promise<AxiosResponse<SlasAssignResponse, any, {}>>;
27890
28492
  /**
27891
28493
  * @description Creates an SLA in draft status.
27892
28494
  *
@@ -27896,7 +28498,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27896
28498
  * @request POST:/slas.create
27897
28499
  * @secure
27898
28500
  */
27899
- slasCreate: (data: SlasCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SlasCreateResponse, any>>;
28501
+ slasCreate: (data: SlasCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SlasCreateResponse, any, {}>>;
27900
28502
  /**
27901
28503
  * @description Gets an SLA.
27902
28504
  *
@@ -27912,7 +28514,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27912
28514
  * @format id
27913
28515
  */
27914
28516
  id: string;
27915
- }, params?: RequestParams) => Promise<AxiosResponse<SlasGetResponse, any>>;
28517
+ }, params?: RequestParams) => Promise<AxiosResponse<SlasGetResponse, any, {}>>;
27916
28518
  /**
27917
28519
  * @description Gets an SLA.
27918
28520
  *
@@ -27922,7 +28524,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27922
28524
  * @request POST:/slas.get
27923
28525
  * @secure
27924
28526
  */
27925
- slasGetPost: (data: SlasGetRequest, params?: RequestParams) => Promise<AxiosResponse<SlasGetResponse, any>>;
28527
+ slasGetPost: (data: SlasGetRequest, params?: RequestParams) => Promise<AxiosResponse<SlasGetResponse, any, {}>>;
27926
28528
  /**
27927
28529
  * @description Lists SLAs matching a filter.
27928
28530
  *
@@ -27962,7 +28564,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27962
28564
  sort_by?: string[];
27963
28565
  /** The SLA statuses the filter matches. */
27964
28566
  status?: SlaStatus[];
27965
- }, params?: RequestParams) => Promise<AxiosResponse<SlasListResponse, any>>;
28567
+ }, params?: RequestParams) => Promise<AxiosResponse<SlasListResponse, any, {}>>;
27966
28568
  /**
27967
28569
  * @description Lists SLAs matching a filter.
27968
28570
  *
@@ -27972,7 +28574,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27972
28574
  * @request POST:/slas.list
27973
28575
  * @secure
27974
28576
  */
27975
- slasListPost: (data: SlasListRequest, params?: RequestParams) => Promise<AxiosResponse<SlasListResponse, any>>;
28577
+ slasListPost: (data: SlasListRequest, params?: RequestParams) => Promise<AxiosResponse<SlasListResponse, any, {}>>;
27976
28578
  /**
27977
28579
  * @description Changes the status of an SLA.
27978
28580
  *
@@ -27982,7 +28584,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27982
28584
  * @request POST:/slas.transition
27983
28585
  * @secure
27984
28586
  */
27985
- slasTransition: (data: SlasTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<SlasTransitionResponse, any>>;
28587
+ slasTransition: (data: SlasTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<SlasTransitionResponse, any, {}>>;
27986
28588
  /**
27987
28589
  * @description Updates a draft SLA.
27988
28590
  *
@@ -27992,7 +28594,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27992
28594
  * @request POST:/slas.update
27993
28595
  * @secure
27994
28596
  */
27995
- slasUpdate: (data: SlasUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SlasUpdateResponse, any>>;
28597
+ slasUpdate: (data: SlasUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SlasUpdateResponse, any, {}>>;
27996
28598
  /**
27997
28599
  * @description Gets snap-in resources for a user in a snap-in.
27998
28600
  *
@@ -28013,7 +28615,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28013
28615
  * @format id
28014
28616
  */
28015
28617
  user: string;
28016
- }, params?: RequestParams) => Promise<AxiosResponse<SnapInsResourcesResponse, any>>;
28618
+ }, params?: RequestParams) => Promise<AxiosResponse<SnapInsResourcesResponse, any, {}>>;
28017
28619
  /**
28018
28620
  * @description Gets snap-in resources for a user in a snap-in.
28019
28621
  *
@@ -28023,7 +28625,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28023
28625
  * @request POST:/snap-ins.resources
28024
28626
  * @secure
28025
28627
  */
28026
- snapInsResourcesPost: (data: SnapInsResourcesRequest, params?: RequestParams) => Promise<AxiosResponse<SnapInsResourcesResponse, any>>;
28628
+ snapInsResourcesPost: (data: SnapInsResourcesRequest, params?: RequestParams) => Promise<AxiosResponse<SnapInsResourcesResponse, any, {}>>;
28027
28629
  /**
28028
28630
  * @description Updates a snap-in.
28029
28631
  *
@@ -28033,7 +28635,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28033
28635
  * @request POST:/snap-ins.update
28034
28636
  * @secure
28035
28637
  */
28036
- snapInsUpdate: (data: SnapInsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SnapInsUpdateResponse, any>>;
28638
+ snapInsUpdate: (data: SnapInsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SnapInsUpdateResponse, any, {}>>;
28037
28639
  /**
28038
28640
  * @description Executes deferred snap-kit actions.
28039
28641
  *
@@ -28043,7 +28645,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28043
28645
  * @request POST:/snap-kit-action.execute.deferred
28044
28646
  * @secure
28045
28647
  */
28046
- snapKitActionExecuteDeferred: (data: SnapKitActionExecuteDeferredRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
28648
+ snapKitActionExecuteDeferred: (data: SnapKitActionExecuteDeferredRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
28047
28649
  /**
28048
28650
  * @description Create a snap widget object.
28049
28651
  *
@@ -28053,7 +28655,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28053
28655
  * @request POST:/snap-widgets.create
28054
28656
  * @secure
28055
28657
  */
28056
- snapWidgetsCreate: (data: SnapWidgetsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SnapWidgetsCreateResponse, any>>;
28658
+ snapWidgetsCreate: (data: SnapWidgetsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SnapWidgetsCreateResponse, any, {}>>;
28057
28659
  /**
28058
28660
  * @description Creates a stage diagram.
28059
28661
  *
@@ -28063,7 +28665,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28063
28665
  * @request POST:/stage-diagrams.create
28064
28666
  * @secure
28065
28667
  */
28066
- stageDiagramsCreate: (data: StageDiagramsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsCreateResponse, any>>;
28668
+ stageDiagramsCreate: (data: StageDiagramsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsCreateResponse, any, {}>>;
28067
28669
  /**
28068
28670
  * @description Gets a stage diagram.
28069
28671
  *
@@ -28090,7 +28692,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28090
28692
  * @format text
28091
28693
  */
28092
28694
  leaf_type?: string;
28093
- }, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsGetResponse, any>>;
28695
+ }, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsGetResponse, any, {}>>;
28094
28696
  /**
28095
28697
  * @description Gets a stage diagram.
28096
28698
  *
@@ -28100,7 +28702,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28100
28702
  * @request POST:/stage-diagrams.get
28101
28703
  * @secure
28102
28704
  */
28103
- stageDiagramsGetPost: (data: StageDiagramsGetRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsGetResponse, any>>;
28705
+ stageDiagramsGetPost: (data: StageDiagramsGetRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsGetResponse, any, {}>>;
28104
28706
  /**
28105
28707
  * @description Lists stage diagrams.
28106
28708
  *
@@ -28130,7 +28732,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28130
28732
  name?: string[];
28131
28733
  /** The list of fields to sort the items by and how to sort them. */
28132
28734
  sort_by?: string[];
28133
- }, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsListResponse, any>>;
28735
+ }, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsListResponse, any, {}>>;
28134
28736
  /**
28135
28737
  * @description Lists stage diagrams.
28136
28738
  *
@@ -28140,7 +28742,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28140
28742
  * @request POST:/stage-diagrams.list
28141
28743
  * @secure
28142
28744
  */
28143
- stageDiagramsListPost: (data: StageDiagramsListRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsListResponse, any>>;
28745
+ stageDiagramsListPost: (data: StageDiagramsListRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsListResponse, any, {}>>;
28144
28746
  /**
28145
28747
  * @description Updates a stage diagram.
28146
28748
  *
@@ -28150,7 +28752,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28150
28752
  * @request POST:/stage-diagrams.update
28151
28753
  * @secure
28152
28754
  */
28153
- stageDiagramsUpdate: (data: StageDiagramsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsUpdateResponse, any>>;
28755
+ stageDiagramsUpdate: (data: StageDiagramsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsUpdateResponse, any, {}>>;
28154
28756
  /**
28155
28757
  * @description Creates a custom stage.
28156
28758
  *
@@ -28160,7 +28762,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28160
28762
  * @request POST:/stages.custom.create
28161
28763
  * @secure
28162
28764
  */
28163
- customStagesCreate: (data: CustomStagesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesCreateResponse, any>>;
28765
+ customStagesCreate: (data: CustomStagesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesCreateResponse, any, {}>>;
28164
28766
  /**
28165
28767
  * @description Gets a custom stage.
28166
28768
  *
@@ -28176,7 +28778,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28176
28778
  * @format id
28177
28779
  */
28178
28780
  id: string;
28179
- }, params?: RequestParams) => Promise<AxiosResponse<CustomStagesGetResponse, any>>;
28781
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomStagesGetResponse, any, {}>>;
28180
28782
  /**
28181
28783
  * @description Gets a custom stage.
28182
28784
  *
@@ -28186,7 +28788,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28186
28788
  * @request POST:/stages.custom.get
28187
28789
  * @secure
28188
28790
  */
28189
- customStagesGetPost: (data: CustomStagesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesGetResponse, any>>;
28791
+ customStagesGetPost: (data: CustomStagesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesGetResponse, any, {}>>;
28190
28792
  /**
28191
28793
  * @description Lists custom stages.
28192
28794
  *
@@ -28214,7 +28816,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28214
28816
  ordinal?: number[];
28215
28817
  /** The list of fields to sort the items by and how to sort them. */
28216
28818
  sort_by?: string[];
28217
- }, params?: RequestParams) => Promise<AxiosResponse<CustomStagesListResponse, any>>;
28819
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomStagesListResponse, any, {}>>;
28218
28820
  /**
28219
28821
  * @description Lists custom stages.
28220
28822
  *
@@ -28224,7 +28826,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28224
28826
  * @request POST:/stages.custom.list
28225
28827
  * @secure
28226
28828
  */
28227
- customStagesListPost: (data: CustomStagesListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesListResponse, any>>;
28829
+ customStagesListPost: (data: CustomStagesListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesListResponse, any, {}>>;
28228
28830
  /**
28229
28831
  * @description Updates a custom stage.
28230
28832
  *
@@ -28234,7 +28836,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28234
28836
  * @request POST:/stages.custom.update
28235
28837
  * @secure
28236
28838
  */
28237
- customStagesUpdate: (data: CustomStagesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesUpdateResponse, any>>;
28839
+ customStagesUpdate: (data: CustomStagesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesUpdateResponse, any, {}>>;
28238
28840
  /**
28239
28841
  * @description Creates a custom state.
28240
28842
  *
@@ -28244,7 +28846,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28244
28846
  * @request POST:/states.custom.create
28245
28847
  * @secure
28246
28848
  */
28247
- customStatesCreate: (data: CustomStatesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesCreateResponse, any>>;
28849
+ customStatesCreate: (data: CustomStatesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesCreateResponse, any, {}>>;
28248
28850
  /**
28249
28851
  * @description Gets a custom state.
28250
28852
  *
@@ -28260,7 +28862,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28260
28862
  * @format id
28261
28863
  */
28262
28864
  id: string;
28263
- }, params?: RequestParams) => Promise<AxiosResponse<CustomStatesGetResponse, any>>;
28865
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomStatesGetResponse, any, {}>>;
28264
28866
  /**
28265
28867
  * @description Gets a custom state.
28266
28868
  *
@@ -28270,7 +28872,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28270
28872
  * @request POST:/states.custom.get
28271
28873
  * @secure
28272
28874
  */
28273
- customStatesGetPost: (data: CustomStatesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesGetResponse, any>>;
28875
+ customStatesGetPost: (data: CustomStatesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesGetResponse, any, {}>>;
28274
28876
  /**
28275
28877
  * @description Lists custom states.
28276
28878
  *
@@ -28300,7 +28902,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28300
28902
  ordinal?: number[];
28301
28903
  /** The list of fields to sort the items by and how to sort them. */
28302
28904
  sort_by?: string[];
28303
- }, params?: RequestParams) => Promise<AxiosResponse<CustomStatesListResponse, any>>;
28905
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomStatesListResponse, any, {}>>;
28304
28906
  /**
28305
28907
  * @description Lists custom states.
28306
28908
  *
@@ -28310,7 +28912,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28310
28912
  * @request POST:/states.custom.list
28311
28913
  * @secure
28312
28914
  */
28313
- customStatesListPost: (data: CustomStatesListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesListResponse, any>>;
28915
+ customStatesListPost: (data: CustomStatesListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesListResponse, any, {}>>;
28314
28916
  /**
28315
28917
  * @description Updates a custom state.
28316
28918
  *
@@ -28320,7 +28922,34 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28320
28922
  * @request POST:/states.custom.update
28321
28923
  * @secure
28322
28924
  */
28323
- customStatesUpdate: (data: CustomStatesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesUpdateResponse, any>>;
28925
+ customStatesUpdate: (data: CustomStatesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesUpdateResponse, any, {}>>;
28926
+ /**
28927
+ * @description Gets the requesting user's subscriber status for an object.
28928
+ *
28929
+ * @tags subscribers
28930
+ * @name SubscribersGet
28931
+ * @summary Get Subscriber
28932
+ * @request GET:/subscribers.get
28933
+ * @secure
28934
+ */
28935
+ subscribersGet: (query: {
28936
+ /**
28937
+ * The object's ID.
28938
+ * @format id
28939
+ * @example "ISS-12345"
28940
+ */
28941
+ id: string;
28942
+ }, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
28943
+ /**
28944
+ * @description Gets the requesting user's subscriber status for an object.
28945
+ *
28946
+ * @tags subscribers
28947
+ * @name SubscribersGetPost
28948
+ * @summary Get Subscriber (POST)
28949
+ * @request POST:/subscribers.get
28950
+ * @secure
28951
+ */
28952
+ subscribersGetPost: (data: SubscribersGetRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
28324
28953
  /**
28325
28954
  * @description Lists subscribers of an object.
28326
28955
  *
@@ -28349,7 +28978,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28349
28978
  * @format int32
28350
28979
  */
28351
28980
  limit?: number;
28352
- }, params?: RequestParams) => Promise<AxiosResponse<SubscribersListResponse, any>>;
28981
+ }, params?: RequestParams) => Promise<AxiosResponse<SubscribersListResponse, any, {}>>;
28353
28982
  /**
28354
28983
  * @description Lists subscribers of an object.
28355
28984
  *
@@ -28359,7 +28988,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28359
28988
  * @request POST:/subscribers.list
28360
28989
  * @secure
28361
28990
  */
28362
- subscribersListPost: (data: SubscribersListRequest, params?: RequestParams) => Promise<AxiosResponse<SubscribersListResponse, any>>;
28991
+ subscribersListPost: (data: SubscribersListRequest, params?: RequestParams) => Promise<AxiosResponse<SubscribersListResponse, any, {}>>;
28363
28992
  /**
28364
28993
  * @description Updates subscribers on the object.
28365
28994
  *
@@ -28369,7 +28998,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28369
28998
  * @request POST:/subscribers.update
28370
28999
  * @secure
28371
29000
  */
28372
- subscribersUpdate: (data: SubscribersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
29001
+ subscribersUpdate: (data: SubscribersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
28373
29002
  /**
28374
29003
  * @description Creates a schema for survey, which includes name and description of schema.
28375
29004
  *
@@ -28379,7 +29008,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28379
29008
  * @request POST:/surveys.create
28380
29009
  * @secure
28381
29010
  */
28382
- surveysCreate: (data: SurveysCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysCreateResponse, any>>;
29011
+ surveysCreate: (data: SurveysCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysCreateResponse, any, {}>>;
28383
29012
  /**
28384
29013
  * @description Deletes the specified survey.
28385
29014
  *
@@ -28389,7 +29018,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28389
29018
  * @request POST:/surveys.delete
28390
29019
  * @secure
28391
29020
  */
28392
- surveysDelete: (data: SurveysDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
29021
+ surveysDelete: (data: SurveysDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
28393
29022
  /**
28394
29023
  * @description Gets a survey given the ID.
28395
29024
  *
@@ -28405,7 +29034,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28405
29034
  * @format id
28406
29035
  */
28407
29036
  id: string;
28408
- }, params?: RequestParams) => Promise<AxiosResponse<SurveysGetResponse, any>>;
29037
+ }, params?: RequestParams) => Promise<AxiosResponse<SurveysGetResponse, any, {}>>;
28409
29038
  /**
28410
29039
  * @description Gets a survey given the ID.
28411
29040
  *
@@ -28415,7 +29044,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28415
29044
  * @request POST:/surveys.get
28416
29045
  * @secure
28417
29046
  */
28418
- surveysGetPost: (data: SurveysGetRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysGetResponse, any>>;
29047
+ surveysGetPost: (data: SurveysGetRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysGetResponse, any, {}>>;
28419
29048
  /**
28420
29049
  * @description List surveys requested by the user.
28421
29050
  *
@@ -28452,7 +29081,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28452
29081
  name?: string[];
28453
29082
  /** Fields to sort the surveys by and the direction to sort them. */
28454
29083
  sort_by?: string[];
28455
- }, params?: RequestParams) => Promise<AxiosResponse<SurveysListResponse, any>>;
29084
+ }, params?: RequestParams) => Promise<AxiosResponse<SurveysListResponse, any, {}>>;
28456
29085
  /**
28457
29086
  * @description List surveys requested by the user.
28458
29087
  *
@@ -28462,7 +29091,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28462
29091
  * @request POST:/surveys.list
28463
29092
  * @secure
28464
29093
  */
28465
- surveysListPost: (data: SurveysListRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysListResponse, any>>;
29094
+ surveysListPost: (data: SurveysListRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysListResponse, any, {}>>;
28466
29095
  /**
28467
29096
  * @description List survey responses requested by the user.
28468
29097
  *
@@ -28516,7 +29145,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28516
29145
  stages?: number[];
28517
29146
  /** Filters for survey responses for the provided survey IDs. */
28518
29147
  surveys?: string[];
28519
- }, params?: RequestParams) => Promise<AxiosResponse<SurveysResponsesListResponse, any>>;
29148
+ }, params?: RequestParams) => Promise<AxiosResponse<SurveysResponsesListResponse, any, {}>>;
28520
29149
  /**
28521
29150
  * @description List survey responses requested by the user.
28522
29151
  *
@@ -28526,7 +29155,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28526
29155
  * @request POST:/surveys.responses.list
28527
29156
  * @secure
28528
29157
  */
28529
- surveysResponsesListPost: (data: SurveysResponsesListRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysResponsesListResponse, any>>;
29158
+ surveysResponsesListPost: (data: SurveysResponsesListRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysResponsesListResponse, any, {}>>;
28530
29159
  /**
28531
29160
  * @description Updates a user's survey response for the provided dispatch ID.
28532
29161
  *
@@ -28536,7 +29165,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28536
29165
  * @request POST:/surveys.responses.update
28537
29166
  * @secure
28538
29167
  */
28539
- surveysResponsesUpdate: (data: SurveysResponsesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
29168
+ surveysResponsesUpdate: (data: SurveysResponsesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
28540
29169
  /**
28541
29170
  * @description Sends a survey on the specified channels.
28542
29171
  *
@@ -28546,7 +29175,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28546
29175
  * @request POST:/surveys.send
28547
29176
  * @secure
28548
29177
  */
28549
- surveysSend: (data: SurveysSendRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
29178
+ surveysSend: (data: SurveysSendRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
28550
29179
  /**
28551
29180
  * @description Submits a user response to a survey, which is defined by the survey ID.
28552
29181
  *
@@ -28556,7 +29185,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28556
29185
  * @request POST:/surveys.submit
28557
29186
  * @secure
28558
29187
  */
28559
- surveysSubmit: (data: SurveysSubmitRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
29188
+ surveysSubmit: (data: SurveysSubmitRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
28560
29189
  /**
28561
29190
  * @description Updates a survey's metadata.
28562
29191
  *
@@ -28566,7 +29195,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28566
29195
  * @request POST:/surveys.update
28567
29196
  * @secure
28568
29197
  */
28569
- surveysUpdate: (data: SurveysUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysUpdateResponse, any>>;
29198
+ surveysUpdate: (data: SurveysUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysUpdateResponse, any, {}>>;
28570
29199
  /**
28571
29200
  * @description Lists system users within your organization.
28572
29201
  *
@@ -28596,7 +29225,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28596
29225
  mode?: ListMode;
28597
29226
  /** Fields to sort the system users by and the direction to sort them. */
28598
29227
  sort_by?: string[];
28599
- }, params?: RequestParams) => Promise<AxiosResponse<SysUsersListResponse, any>>;
29228
+ }, params?: RequestParams) => Promise<AxiosResponse<SysUsersListResponse, any, {}>>;
28600
29229
  /**
28601
29230
  * @description Lists system users within your organization.
28602
29231
  *
@@ -28606,7 +29235,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28606
29235
  * @request POST:/sys-users.list
28607
29236
  * @secure
28608
29237
  */
28609
- sysUsersListPost: (data: SysUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<SysUsersListResponse, any>>;
29238
+ sysUsersListPost: (data: SysUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<SysUsersListResponse, any, {}>>;
28610
29239
  /**
28611
29240
  * @description Updates the system user.
28612
29241
  *
@@ -28616,7 +29245,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28616
29245
  * @request POST:/sys-users.update
28617
29246
  * @secure
28618
29247
  */
28619
- sysUsersUpdate: (data: SysUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SysUsersUpdateResponse, any>>;
29248
+ sysUsersUpdate: (data: SysUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SysUsersUpdateResponse, any, {}>>;
28620
29249
  /**
28621
29250
  * @description Creates a new tag, which is used to create associations between objects and a logical concept denoted by the tag's name.
28622
29251
  *
@@ -28626,7 +29255,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28626
29255
  * @request POST:/tags.create
28627
29256
  * @secure
28628
29257
  */
28629
- tagsCreate: (data: TagsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<TagsCreateResponse, any>>;
29258
+ tagsCreate: (data: TagsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<TagsCreateResponse, any, {}>>;
28630
29259
  /**
28631
29260
  * @description Deletes a tag.
28632
29261
  *
@@ -28636,7 +29265,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28636
29265
  * @request POST:/tags.delete
28637
29266
  * @secure
28638
29267
  */
28639
- tagsDelete: (data: TagsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
29268
+ tagsDelete: (data: TagsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
28640
29269
  /**
28641
29270
  * @description Gets a tag's information.
28642
29271
  *
@@ -28653,7 +29282,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28653
29282
  * @example "TAG-12345"
28654
29283
  */
28655
29284
  id: string;
28656
- }, params?: RequestParams) => Promise<AxiosResponse<TagsGetResponse, any>>;
29285
+ }, params?: RequestParams) => Promise<AxiosResponse<TagsGetResponse, any, {}>>;
28657
29286
  /**
28658
29287
  * @description Gets a tag's information.
28659
29288
  *
@@ -28663,7 +29292,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28663
29292
  * @request POST:/tags.get
28664
29293
  * @secure
28665
29294
  */
28666
- tagsGetPost: (data: TagsGetRequest, params?: RequestParams) => Promise<AxiosResponse<TagsGetResponse, any>>;
29295
+ tagsGetPost: (data: TagsGetRequest, params?: RequestParams) => Promise<AxiosResponse<TagsGetResponse, any, {}>>;
28667
29296
  /**
28668
29297
  * @description Lists the available tags.
28669
29298
  *
@@ -28694,7 +29323,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28694
29323
  name?: string[];
28695
29324
  /** Fields to sort tags by and the direction to sort them. */
28696
29325
  sort_by?: string[];
28697
- }, params?: RequestParams) => Promise<AxiosResponse<TagsListResponse, any>>;
29326
+ }, params?: RequestParams) => Promise<AxiosResponse<TagsListResponse, any, {}>>;
28698
29327
  /**
28699
29328
  * @description Lists the available tags.
28700
29329
  *
@@ -28704,7 +29333,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28704
29333
  * @request POST:/tags.list
28705
29334
  * @secure
28706
29335
  */
28707
- tagsListPost: (data: TagsListRequest, params?: RequestParams) => Promise<AxiosResponse<TagsListResponse, any>>;
29336
+ tagsListPost: (data: TagsListRequest, params?: RequestParams) => Promise<AxiosResponse<TagsListResponse, any, {}>>;
28708
29337
  /**
28709
29338
  * @description Updates a tag's information.
28710
29339
  *
@@ -28714,7 +29343,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28714
29343
  * @request POST:/tags.update
28715
29344
  * @secure
28716
29345
  */
28717
- tagsUpdate: (data: TagsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<TagsUpdateResponse, any>>;
29346
+ tagsUpdate: (data: TagsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<TagsUpdateResponse, any, {}>>;
28718
29347
  /**
28719
29348
  * @description Creates a new entry on an object's timeline.
28720
29349
  *
@@ -28724,7 +29353,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28724
29353
  * @request POST:/timeline-entries.create
28725
29354
  * @secure
28726
29355
  */
28727
- timelineEntriesCreate: (data: TimelineEntriesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesCreateResponse, any>>;
29356
+ timelineEntriesCreate: (data: TimelineEntriesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesCreateResponse, any, {}>>;
28728
29357
  /**
28729
29358
  * @description Deletes an entry from an object's timeline.
28730
29359
  *
@@ -28734,7 +29363,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28734
29363
  * @request POST:/timeline-entries.delete
28735
29364
  * @secure
28736
29365
  */
28737
- timelineEntriesDelete: (data: TimelineEntriesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
29366
+ timelineEntriesDelete: (data: TimelineEntriesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
28738
29367
  /**
28739
29368
  * @description Gets an entry on an object's timeline.
28740
29369
  *
@@ -28759,7 +29388,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28759
29388
  * @maxLength 512
28760
29389
  */
28761
29390
  external_ref?: string;
28762
- }, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesGetResponse, any>>;
29391
+ }, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesGetResponse, any, {}>>;
28763
29392
  /**
28764
29393
  * @description Gets an entry on an object's timeline.
28765
29394
  *
@@ -28769,7 +29398,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28769
29398
  * @request POST:/timeline-entries.get
28770
29399
  * @secure
28771
29400
  */
28772
- timelineEntriesGetPost: (data: TimelineEntriesGetRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesGetResponse, any>>;
29401
+ timelineEntriesGetPost: (data: TimelineEntriesGetRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesGetResponse, any, {}>>;
28773
29402
  /**
28774
29403
  * @description Lists the timeline entries for an object.
28775
29404
  *
@@ -28791,6 +29420,19 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28791
29420
  * all entries are returned.
28792
29421
  */
28793
29422
  collections?: TimelineEntriesCollection[];
29423
+ /**
29424
+ * Filters for objects created after the provided timestamp (inclusive).
29425
+ * @format date-time
29426
+ * @example "2023-01-01T12:00:00.000Z"
29427
+ */
29428
+ 'created_date.after'?: string;
29429
+ /**
29430
+ * Filters for objects created before the provided timestamp
29431
+ * (inclusive).
29432
+ * @format date-time
29433
+ * @example "2023-01-01T12:00:00.000Z"
29434
+ */
29435
+ 'created_date.before'?: string;
28794
29436
  /**
28795
29437
  * The cursor to resume iteration from. If not provided, then iteration
28796
29438
  * starts from the beginning.
@@ -28805,8 +29447,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28805
29447
  */
28806
29448
  labels?: string[];
28807
29449
  /**
28808
- * The maximum number of entries to return. If not set, then this
28809
- * defaults to `50`.
29450
+ * The maximum number of entries to return. Note that fewer (possibly
29451
+ * zero) entries may be returned even if there are more entries, where
29452
+ * the returned cursor(s) are guaranteed to be updated.
28810
29453
  * @format int32
28811
29454
  */
28812
29455
  limit?: number;
@@ -28821,7 +29464,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28821
29464
  * specified will be returned.
28822
29465
  */
28823
29466
  visibility?: TimelineEntryVisibility[];
28824
- }, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesListResponse, any>>;
29467
+ }, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesListResponse, any, {}>>;
28825
29468
  /**
28826
29469
  * @description Lists the timeline entries for an object.
28827
29470
  *
@@ -28831,7 +29474,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28831
29474
  * @request POST:/timeline-entries.list
28832
29475
  * @secure
28833
29476
  */
28834
- timelineEntriesListPost: (data: TimelineEntriesListRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesListResponse, any>>;
29477
+ timelineEntriesListPost: (data: TimelineEntriesListRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesListResponse, any, {}>>;
28835
29478
  /**
28836
29479
  * @description Updates an entry on an object's timeline.
28837
29480
  *
@@ -28841,7 +29484,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28841
29484
  * @request POST:/timeline-entries.update
28842
29485
  * @secure
28843
29486
  */
28844
- timelineEntriesUpdate: (data: TimelineEntriesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesUpdateResponse, any>>;
29487
+ timelineEntriesUpdate: (data: TimelineEntriesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesUpdateResponse, any, {}>>;
28845
29488
  /**
28846
29489
  * @description Allows publishing of events (example from plug widget).
28847
29490
  *
@@ -28851,7 +29494,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28851
29494
  * @request POST:/track-events.publish
28852
29495
  * @secure
28853
29496
  */
28854
- trackEventsPublish: (data: TrackEventsPublishRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
29497
+ trackEventsPublish: (data: TrackEventsPublishRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
28855
29498
  /**
28856
29499
  * @description Counts the number of Unit of Measurements based on the given filters.
28857
29500
  *
@@ -28883,7 +29526,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28883
29526
  product_ids?: string[];
28884
29527
  /** List of unit types for filtering list of UOMs. */
28885
29528
  unit_types?: UnitType[];
28886
- }, params?: RequestParams) => Promise<AxiosResponse<UomsCountResponse, any>>;
29529
+ }, params?: RequestParams) => Promise<AxiosResponse<UomsCountResponse, any, {}>>;
28887
29530
  /**
28888
29531
  * @description Counts the number of Unit of Measurements based on the given filters.
28889
29532
  *
@@ -28893,7 +29536,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28893
29536
  * @request POST:/uoms.count
28894
29537
  * @secure
28895
29538
  */
28896
- uomsCountPost: (data: UomsCountRequest, params?: RequestParams) => Promise<AxiosResponse<UomsCountResponse, any>>;
29539
+ uomsCountPost: (data: UomsCountRequest, params?: RequestParams) => Promise<AxiosResponse<UomsCountResponse, any, {}>>;
28897
29540
  /**
28898
29541
  * @description Creates a Unit of Measurement on a part.
28899
29542
  *
@@ -28903,7 +29546,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28903
29546
  * @request POST:/uoms.create
28904
29547
  * @secure
28905
29548
  */
28906
- uomsCreate: (data: UomsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<UomsCreateResponse, any>>;
29549
+ uomsCreate: (data: UomsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<UomsCreateResponse, any, {}>>;
28907
29550
  /**
28908
29551
  * @description Deletes a Unit of Measurement.
28909
29552
  *
@@ -28913,7 +29556,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28913
29556
  * @request POST:/uoms.delete
28914
29557
  * @secure
28915
29558
  */
28916
- uomsDelete: (data: UomsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
29559
+ uomsDelete: (data: UomsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
28917
29560
  /**
28918
29561
  * @description Gets a Unit of Measurement.
28919
29562
  *
@@ -28929,7 +29572,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28929
29572
  * @format id
28930
29573
  */
28931
29574
  id: string;
28932
- }, params?: RequestParams) => Promise<AxiosResponse<UomsGetResponse, any>>;
29575
+ }, params?: RequestParams) => Promise<AxiosResponse<UomsGetResponse, any, {}>>;
28933
29576
  /**
28934
29577
  * @description Gets a Unit of Measurement.
28935
29578
  *
@@ -28939,7 +29582,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28939
29582
  * @request POST:/uoms.get
28940
29583
  * @secure
28941
29584
  */
28942
- uomsGetPost: (data: UomsGetRequest, params?: RequestParams) => Promise<AxiosResponse<UomsGetResponse, any>>;
29585
+ uomsGetPost: (data: UomsGetRequest, params?: RequestParams) => Promise<AxiosResponse<UomsGetResponse, any, {}>>;
28943
29586
  /**
28944
29587
  * @description Gets the Unit of Measurements based on the given filters.
28945
29588
  *
@@ -28993,7 +29636,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28993
29636
  sort_by?: string[];
28994
29637
  /** List of unit types for filtering list of UOMs. */
28995
29638
  unit_types?: UnitType[];
28996
- }, params?: RequestParams) => Promise<AxiosResponse<UomsListResponse, any>>;
29639
+ }, params?: RequestParams) => Promise<AxiosResponse<UomsListResponse, any, {}>>;
28997
29640
  /**
28998
29641
  * @description Gets the Unit of Measurements based on the given filters.
28999
29642
  *
@@ -29003,7 +29646,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29003
29646
  * @request POST:/uoms.list
29004
29647
  * @secure
29005
29648
  */
29006
- uomsListPost: (data: UomsListRequest, params?: RequestParams) => Promise<AxiosResponse<UomsListResponse, any>>;
29649
+ uomsListPost: (data: UomsListRequest, params?: RequestParams) => Promise<AxiosResponse<UomsListResponse, any, {}>>;
29007
29650
  /**
29008
29651
  * @description Updates a Unit of Measurement.
29009
29652
  *
@@ -29013,7 +29656,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29013
29656
  * @request POST:/uoms.update
29014
29657
  * @secure
29015
29658
  */
29016
- uomsUpdate: (data: UomsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UomsUpdateResponse, any>>;
29659
+ uomsUpdate: (data: UomsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UomsUpdateResponse, any, {}>>;
29017
29660
  /**
29018
29661
  * @description Creates a vista.
29019
29662
  *
@@ -29023,7 +29666,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29023
29666
  * @request POST:/vistas.create
29024
29667
  * @secure
29025
29668
  */
29026
- vistasCreate: (data: VistasCreateRequest, params?: RequestParams) => Promise<AxiosResponse<VistasCreateResponse, any>>;
29669
+ vistasCreate: (data: VistasCreateRequest, params?: RequestParams) => Promise<AxiosResponse<VistasCreateResponse, any, {}>>;
29027
29670
  /**
29028
29671
  * @description Deletes the requested vista.
29029
29672
  *
@@ -29033,7 +29676,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29033
29676
  * @request POST:/vistas.delete
29034
29677
  * @secure
29035
29678
  */
29036
- vistasDelete: (data: VistasDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
29679
+ vistasDelete: (data: VistasDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
29037
29680
  /**
29038
29681
  * @description Gets the requested vistas's information.
29039
29682
  *
@@ -29050,7 +29693,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29050
29693
  * @example "VISTA-12345"
29051
29694
  */
29052
29695
  id: string;
29053
- }, params?: RequestParams) => Promise<AxiosResponse<VistasGetResponse, any>>;
29696
+ }, params?: RequestParams) => Promise<AxiosResponse<VistasGetResponse, any, {}>>;
29054
29697
  /**
29055
29698
  * @description Gets the requested vistas's information.
29056
29699
  *
@@ -29060,7 +29703,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29060
29703
  * @request POST:/vistas.get
29061
29704
  * @secure
29062
29705
  */
29063
- vistasGetPost: (data: VistasGetRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGetResponse, any>>;
29706
+ vistasGetPost: (data: VistasGetRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGetResponse, any, {}>>;
29064
29707
  /**
29065
29708
  * @description Deletes the requested vista group item
29066
29709
  *
@@ -29070,7 +29713,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29070
29713
  * @request POST:/vistas.groups.delete
29071
29714
  * @secure
29072
29715
  */
29073
- vistasGroupsDelete: (data: VistasGroupsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
29716
+ vistasGroupsDelete: (data: VistasGroupsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
29074
29717
  /**
29075
29718
  * @description Gets the requested vista group item's information.
29076
29719
  *
@@ -29086,7 +29729,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29086
29729
  * @format id
29087
29730
  */
29088
29731
  id: string;
29089
- }, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsGetResponse, any>>;
29732
+ }, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsGetResponse, any, {}>>;
29090
29733
  /**
29091
29734
  * @description Gets the requested vista group item's information.
29092
29735
  *
@@ -29096,7 +29739,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29096
29739
  * @request POST:/vistas.groups.get
29097
29740
  * @secure
29098
29741
  */
29099
- vistasGroupsGetPost: (data: VistasGroupsGetRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsGetResponse, any>>;
29742
+ vistasGroupsGetPost: (data: VistasGroupsGetRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsGetResponse, any, {}>>;
29100
29743
  /**
29101
29744
  * @description Lists the available vista group items.
29102
29745
  *
@@ -29158,7 +29801,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29158
29801
  state?: VistaGroupItemState[];
29159
29802
  /** Filters for vista group items of the specific type. */
29160
29803
  type?: GroupItemType[];
29161
- }, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsListResponse, any>>;
29804
+ }, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsListResponse, any, {}>>;
29162
29805
  /**
29163
29806
  * @description Lists the available vista group items.
29164
29807
  *
@@ -29168,7 +29811,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29168
29811
  * @request POST:/vistas.groups.list
29169
29812
  * @secure
29170
29813
  */
29171
- vistasGroupsListPost: (data: VistasGroupsListRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsListResponse, any>>;
29814
+ vistasGroupsListPost: (data: VistasGroupsListRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsListResponse, any, {}>>;
29172
29815
  /**
29173
29816
  * @description Lists the available vistas.
29174
29817
  *
@@ -29230,7 +29873,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29230
29873
  state?: VistaGroupItemState[];
29231
29874
  /** Filters for vistas of the specific type. */
29232
29875
  type?: VistaType[];
29233
- }, params?: RequestParams) => Promise<AxiosResponse<VistasListResponse, any>>;
29876
+ }, params?: RequestParams) => Promise<AxiosResponse<VistasListResponse, any, {}>>;
29234
29877
  /**
29235
29878
  * @description Lists the available vistas.
29236
29879
  *
@@ -29240,7 +29883,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29240
29883
  * @request POST:/vistas.list
29241
29884
  * @secure
29242
29885
  */
29243
- vistasListPost: (data: VistasListRequest, params?: RequestParams) => Promise<AxiosResponse<VistasListResponse, any>>;
29886
+ vistasListPost: (data: VistasListRequest, params?: RequestParams) => Promise<AxiosResponse<VistasListResponse, any, {}>>;
29244
29887
  /**
29245
29888
  * @description Change state of a web crawler job to pause or resume it back to running.
29246
29889
  *
@@ -29250,7 +29893,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29250
29893
  * @request POST:/web-crawler-jobs.control
29251
29894
  * @secure
29252
29895
  */
29253
- webCrawlerJobsControl: (data: WebCrawlerJobsControlRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsControlResponse, any>>;
29896
+ webCrawlerJobsControl: (data: WebCrawlerJobsControlRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsControlResponse, any, {}>>;
29254
29897
  /**
29255
29898
  * @description Creates a web crawler job whose objective is to crawl the provided URLs/sitemaps and generate corresponding webpages as artifacts.
29256
29899
  *
@@ -29260,7 +29903,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29260
29903
  * @request POST:/web-crawler-jobs.create
29261
29904
  * @secure
29262
29905
  */
29263
- createWebCrawlerJob: (data: WebCrawlerJobsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsCreateResponse, any>>;
29906
+ createWebCrawlerJob: (data: WebCrawlerJobsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsCreateResponse, any, {}>>;
29264
29907
  /**
29265
29908
  * @description Gets a web crawler job.
29266
29909
  *
@@ -29276,7 +29919,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29276
29919
  * @format id
29277
29920
  */
29278
29921
  id: string;
29279
- }, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsGetResponse, any>>;
29922
+ }, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsGetResponse, any, {}>>;
29280
29923
  /**
29281
29924
  * @description Gets a web crawler job.
29282
29925
  *
@@ -29286,7 +29929,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29286
29929
  * @request POST:/web-crawler-jobs.get
29287
29930
  * @secure
29288
29931
  */
29289
- getWebCrawlerJobPost: (data: WebCrawlerJobsGetRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsGetResponse, any>>;
29932
+ getWebCrawlerJobPost: (data: WebCrawlerJobsGetRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsGetResponse, any, {}>>;
29290
29933
  /**
29291
29934
  * @description Lists web crawler jobs.
29292
29935
  *
@@ -29319,7 +29962,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29319
29962
  * used.
29320
29963
  */
29321
29964
  mode?: ListMode;
29322
- }, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsListResponse, any>>;
29965
+ }, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsListResponse, any, {}>>;
29323
29966
  /**
29324
29967
  * @description Lists web crawler jobs.
29325
29968
  *
@@ -29329,7 +29972,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29329
29972
  * @request POST:/web-crawler-jobs.list
29330
29973
  * @secure
29331
29974
  */
29332
- listWebCrawlerJobsPost: (data: WebCrawlerJobsListRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsListResponse, any>>;
29975
+ listWebCrawlerJobsPost: (data: WebCrawlerJobsListRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsListResponse, any, {}>>;
29333
29976
  /**
29334
29977
  * @description Creates a new webhook target.
29335
29978
  *
@@ -29339,7 +29982,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29339
29982
  * @request POST:/webhooks.create
29340
29983
  * @secure
29341
29984
  */
29342
- webhooksCreate: (data: WebhooksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksCreateResponse, any>>;
29985
+ webhooksCreate: (data: WebhooksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksCreateResponse, any, {}>>;
29343
29986
  /**
29344
29987
  * @description Deletes the requested webhook.
29345
29988
  *
@@ -29349,7 +29992,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29349
29992
  * @request POST:/webhooks.delete
29350
29993
  * @secure
29351
29994
  */
29352
- webhooksDelete: (data: WebhooksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
29995
+ webhooksDelete: (data: WebhooksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
29353
29996
  /**
29354
29997
  * @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.
29355
29998
  *
@@ -29359,7 +30002,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29359
30002
  * @request POST:/webhooks.event
29360
30003
  * @secure
29361
30004
  */
29362
- webhooksEvent: (data: WebhookEventRequest, params?: RequestParams) => Promise<AxiosResponse<WebhookEventResponse, any>>;
30005
+ webhooksEvent: (data: WebhookEventRequest, params?: RequestParams) => Promise<AxiosResponse<WebhookEventResponse, any, {}>>;
29363
30006
  /**
29364
30007
  * @description Fetches an object via webhook.
29365
30008
  *
@@ -29369,7 +30012,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29369
30012
  * @request POST:/webhooks.fetch
29370
30013
  * @secure
29371
30014
  */
29372
- webhooksFetch: (data: WebhooksFetchRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
30015
+ webhooksFetch: (data: WebhooksFetchRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
29373
30016
  /**
29374
30017
  * @description Gets the requested webhook's information.
29375
30018
  *
@@ -29386,7 +30029,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29386
30029
  * @example "don:integration:dvrv-us-1:devo/example:webhook/webhook-id"
29387
30030
  */
29388
30031
  id: string;
29389
- }, params?: RequestParams) => Promise<AxiosResponse<WebhooksGetResponse, any>>;
30032
+ }, params?: RequestParams) => Promise<AxiosResponse<WebhooksGetResponse, any, {}>>;
29390
30033
  /**
29391
30034
  * @description Gets the requested webhook's information.
29392
30035
  *
@@ -29396,7 +30039,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29396
30039
  * @request POST:/webhooks.get
29397
30040
  * @secure
29398
30041
  */
29399
- webhooksGetPost: (data: WebhooksGetRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksGetResponse, any>>;
30042
+ webhooksGetPost: (data: WebhooksGetRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksGetResponse, any, {}>>;
29400
30043
  /**
29401
30044
  * @description Lists the webhooks.
29402
30045
  *
@@ -29406,7 +30049,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29406
30049
  * @request GET:/webhooks.list
29407
30050
  * @secure
29408
30051
  */
29409
- webhooksList: (params?: RequestParams) => Promise<AxiosResponse<WebhooksListResponse, any>>;
30052
+ webhooksList: (params?: RequestParams) => Promise<AxiosResponse<WebhooksListResponse, any, {}>>;
29410
30053
  /**
29411
30054
  * @description Lists the webhooks.
29412
30055
  *
@@ -29416,7 +30059,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29416
30059
  * @request POST:/webhooks.list
29417
30060
  * @secure
29418
30061
  */
29419
- webhooksListPost: (data: WebhooksListRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksListResponse, any>>;
30062
+ webhooksListPost: (data: WebhooksListRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksListResponse, any, {}>>;
29420
30063
  /**
29421
30064
  * @description Updates the requested webhook.
29422
30065
  *
@@ -29426,7 +30069,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29426
30069
  * @request POST:/webhooks.update
29427
30070
  * @secure
29428
30071
  */
29429
- webhooksUpdate: (data: WebhooksUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksUpdateResponse, any>>;
30072
+ webhooksUpdate: (data: WebhooksUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksUpdateResponse, any, {}>>;
29430
30073
  /**
29431
30074
  * @description Returns the requested widget.
29432
30075
  *
@@ -29439,10 +30082,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29439
30082
  widgetsGet: (query: {
29440
30083
  /**
29441
30084
  * The requested widget's ID.
29442
- * @format text
30085
+ * @format id
29443
30086
  */
29444
30087
  id: string;
29445
- }, params?: RequestParams) => Promise<AxiosResponse<WidgetsGetResponse, any>>;
30088
+ }, params?: RequestParams) => Promise<AxiosResponse<WidgetsGetResponse, any, {}>>;
29446
30089
  /**
29447
30090
  * @description Returns the requested widget.
29448
30091
  *
@@ -29452,7 +30095,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29452
30095
  * @request POST:/widgets.get
29453
30096
  * @secure
29454
30097
  */
29455
- widgetsGetPost: (data: WidgetsGetRequest, params?: RequestParams) => Promise<AxiosResponse<WidgetsGetResponse, any>>;
30098
+ widgetsGetPost: (data: WidgetsGetRequest, params?: RequestParams) => Promise<AxiosResponse<WidgetsGetResponse, any, {}>>;
29456
30099
  /**
29457
30100
  * @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.
29458
30101
  *
@@ -29462,7 +30105,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29462
30105
  * @request POST:/works.create
29463
30106
  * @secure
29464
30107
  */
29465
- worksCreate: (data: WorksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WorksCreateResponse, any>>;
30108
+ worksCreate: (data: WorksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WorksCreateResponse, any, {}>>;
29466
30109
  /**
29467
30110
  * @description Deletes a work item.
29468
30111
  *
@@ -29472,7 +30115,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29472
30115
  * @request POST:/works.delete
29473
30116
  * @secure
29474
30117
  */
29475
- worksDelete: (data: WorksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
30118
+ worksDelete: (data: WorksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
29476
30119
  /**
29477
30120
  * @description Exports a collection of work items.
29478
30121
  *
@@ -29495,6 +30138,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29495
30138
  created_by?: string[];
29496
30139
  /** Filters for custom fields. */
29497
30140
  custom_fields?: object;
30141
+ /** Filters for work with any of the provided external references. */
30142
+ external_ref?: string[];
29498
30143
  /**
29499
30144
  * The number of work items to return. The default is '50', the maximum
29500
30145
  * is '5000'.
@@ -29612,9 +30257,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29612
30257
  'ticket.source_channel_v2'?: string[];
29613
30258
  /** Filters for tickets with any of the provided subtypes. */
29614
30259
  'ticket.subtype'?: string[];
30260
+ /** Visibility enum ID of the ticket. */
30261
+ 'ticket.visibility'?: number[];
29615
30262
  /** Filters for work of the provided types. */
29616
30263
  type?: WorkType[];
29617
- }, params?: RequestParams) => Promise<AxiosResponse<WorksExportResponse, any>>;
30264
+ }, params?: RequestParams) => Promise<AxiosResponse<WorksExportResponse, any, {}>>;
29618
30265
  /**
29619
30266
  * @description Exports a collection of work items.
29620
30267
  *
@@ -29624,7 +30271,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29624
30271
  * @request POST:/works.export
29625
30272
  * @secure
29626
30273
  */
29627
- worksExportPost: (data: WorksExportRequest, params?: RequestParams) => Promise<AxiosResponse<WorksExportResponse, any>>;
30274
+ worksExportPost: (data: WorksExportRequest, params?: RequestParams) => Promise<AxiosResponse<WorksExportResponse, any, {}>>;
29628
30275
  /**
29629
30276
  * @description Gets a work item's information.
29630
30277
  *
@@ -29641,7 +30288,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29641
30288
  * @example "ISS-12345"
29642
30289
  */
29643
30290
  id: string;
29644
- }, params?: RequestParams) => Promise<AxiosResponse<WorksGetResponse, any>>;
30291
+ }, params?: RequestParams) => Promise<AxiosResponse<WorksGetResponse, any, {}>>;
29645
30292
  /**
29646
30293
  * @description Gets a work item's information.
29647
30294
  *
@@ -29651,7 +30298,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29651
30298
  * @request POST:/works.get
29652
30299
  * @secure
29653
30300
  */
29654
- worksGetPost: (data: WorksGetRequest, params?: RequestParams) => Promise<AxiosResponse<WorksGetResponse, any>>;
30301
+ worksGetPost: (data: WorksGetRequest, params?: RequestParams) => Promise<AxiosResponse<WorksGetResponse, any, {}>>;
29655
30302
  /**
29656
30303
  * @description Lists a collection of work items.
29657
30304
  *
@@ -29680,6 +30327,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29680
30327
  cursor?: string;
29681
30328
  /** Filters for custom fields. */
29682
30329
  custom_fields?: object;
30330
+ /** Filters for work with any of the provided external references. */
30331
+ external_ref?: string[];
29683
30332
  /**
29684
30333
  * Filters for issues with any of the provided accounts.
29685
30334
  * @example ["ACC-12345"]
@@ -29801,9 +30450,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29801
30450
  'ticket.source_channel_v2'?: string[];
29802
30451
  /** Filters for tickets with any of the provided subtypes. */
29803
30452
  'ticket.subtype'?: string[];
30453
+ /** Visibility enum ID of the ticket. */
30454
+ 'ticket.visibility'?: number[];
29804
30455
  /** Filters for work of the provided types. */
29805
30456
  type?: WorkType[];
29806
- }, params?: RequestParams) => Promise<AxiosResponse<WorksListResponse, any>>;
30457
+ }, params?: RequestParams) => Promise<AxiosResponse<WorksListResponse, any, {}>>;
29807
30458
  /**
29808
30459
  * @description Lists a collection of work items.
29809
30460
  *
@@ -29813,7 +30464,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29813
30464
  * @request POST:/works.list
29814
30465
  * @secure
29815
30466
  */
29816
- worksListPost: (data: WorksListRequest, params?: RequestParams) => Promise<AxiosResponse<WorksListResponse, any>>;
30467
+ worksListPost: (data: WorksListRequest, params?: RequestParams) => Promise<AxiosResponse<WorksListResponse, any, {}>>;
29817
30468
  /**
29818
30469
  * @description Updates a work item's information.
29819
30470
  *
@@ -29823,5 +30474,5 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29823
30474
  * @request POST:/works.update
29824
30475
  * @secure
29825
30476
  */
29826
- worksUpdate: (data: WorksUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<WorksUpdateResponse, any>>;
30477
+ worksUpdate: (data: WorksUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<WorksUpdateResponse, any, {}>>;
29827
30478
  }