@devrev/typescript-sdk 1.1.68 → 1.1.70

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;
@@ -18894,6 +19356,8 @@ export interface TimelineEntriesListRequest {
18894
19356
  * @example "PROD-12345"
18895
19357
  */
18896
19358
  object: string;
19359
+ /** Filters for entries to be displayed on the provided panel(s). */
19360
+ panels?: TimelineEntryPanel[];
18897
19361
  /**
18898
19362
  * The visibility of the timeline entries to filter for. Note this is
18899
19363
  * a strict filter, such that only entries with the exact visibilities
@@ -19193,6 +19657,25 @@ export interface TrackEventsPublishRequest {
19193
19657
  }
19194
19658
  /** track-events-publish-response */
19195
19659
  export type TrackEventsPublishResponse = object;
19660
+ /**
19661
+ * trial-period
19662
+ * The trial period duration during which the services offered in the
19663
+ * service plan are not charged.
19664
+ */
19665
+ export interface TrialPeriod {
19666
+ /**
19667
+ * Trial period end time.
19668
+ * @format date-time
19669
+ * @example "2023-01-01T12:00:00.000Z"
19670
+ */
19671
+ trial_period_end_time: string;
19672
+ /**
19673
+ * Trial period start time.
19674
+ * @format date-time
19675
+ * @example "2023-01-01T12:00:00.000Z"
19676
+ */
19677
+ trial_period_start_time: string;
19678
+ }
19196
19679
  /** turing-sources */
19197
19680
  export type TuringSources = (ArticleSummary | QuestionAnswerSummary) & {
19198
19681
  type: TuringSourcesType;
@@ -20862,7 +21345,10 @@ export interface WebhookEventRequest {
20862
21345
  account_created?: EventAccountCreated;
20863
21346
  account_deleted?: EventAccountDeleted;
20864
21347
  account_updated?: EventAccountUpdated;
21348
+ ai_agent_created?: EventAiAgentCreated;
21349
+ ai_agent_deleted?: EventAiAgentDeleted;
20865
21350
  ai_agent_response?: EventAiAgentResponse;
21351
+ ai_agent_updated?: EventAiAgentUpdated;
20866
21352
  article_created?: EventArticleCreated;
20867
21353
  article_deleted?: EventArticleDeleted;
20868
21354
  article_updated?: EventArticleUpdated;
@@ -20903,6 +21389,8 @@ export interface WebhookEventRequest {
20903
21389
  rev_user_created?: EventRevUserCreated;
20904
21390
  rev_user_deleted?: EventRevUserDeleted;
20905
21391
  rev_user_updated?: EventRevUserUpdated;
21392
+ service_plan_created?: EventServicePlanCreated;
21393
+ service_plan_updated?: EventServicePlanUpdated;
20906
21394
  sla_tracker_created?: EventSlaTrackerCreated;
20907
21395
  sla_tracker_deleted?: EventSlaTrackerDeleted;
20908
21396
  sla_tracker_fetched?: EventSlaTrackerFetched;
@@ -20948,6 +21436,9 @@ export interface WebhookEventRequest {
20948
21436
  work_deleted?: EventWorkDeleted;
20949
21437
  work_fetched?: EventWorkFetched;
20950
21438
  work_updated?: EventWorkUpdated;
21439
+ workflow_created?: EventWorkflowCreated;
21440
+ workflow_deleted?: EventWorkflowDeleted;
21441
+ workflow_updated?: EventWorkflowUpdated;
20951
21442
  }
20952
21443
  /** webhook-event-response */
20953
21444
  export interface WebhookEventResponse {
@@ -21668,7 +22159,7 @@ export declare enum WidgetVisualizationType {
21668
22159
  export interface WidgetsGetRequest {
21669
22160
  /**
21670
22161
  * The requested widget's ID.
21671
- * @format text
22162
+ * @format id
21672
22163
  */
21673
22164
  id: string;
21674
22165
  }
@@ -21706,6 +22197,13 @@ export type WorkBase = AtomBase & {
21706
22197
  * @example ["don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"]
21707
22198
  */
21708
22199
  custom_schema_fragments?: string[];
22200
+ /**
22201
+ * An opaque key that's associated with the work item that's
22202
+ * guaranteed to be unique across all work items of same type (issue,
22203
+ * ticket, etc).
22204
+ * @format text
22205
+ */
22206
+ external_ref?: string;
21709
22207
  /** The users that own the work. */
21710
22208
  owned_by: UserSummary[];
21711
22209
  /** Users that reported the work. */
@@ -21782,6 +22280,8 @@ export declare enum WorkType {
21782
22280
  Task = "task",
21783
22281
  Ticket = "ticket"
21784
22282
  }
22283
+ /** workflow */
22284
+ export type Workflow = AtomBase;
21785
22285
  /** workflow-run-summary */
21786
22286
  export type WorkflowRunSummary = AtomBaseSummary;
21787
22287
  /** workflow-search-summary */
@@ -21828,6 +22328,14 @@ export type WorksCreateRequest = (WorksCreateRequestIssue | WorksCreateRequestOp
21828
22328
  * validate_required_fields: true.
21829
22329
  */
21830
22330
  custom_schema_spec?: CustomSchemaSpec;
22331
+ /**
22332
+ * The external reference for the work item. This must be unique
22333
+ * within the type of work item.
22334
+ * @format text
22335
+ * @minLength 1
22336
+ * @maxLength 512
22337
+ */
22338
+ external_ref?: string;
21831
22339
  /**
21832
22340
  * The users that own the work.
21833
22341
  * @example ["DEVU-12345"]
@@ -22042,6 +22550,25 @@ export interface WorksCreateRequestTicket {
22042
22550
  * @format id
22043
22551
  */
22044
22552
  source_channel_v2?: string;
22553
+ /**
22554
+ * Visibility enum ID of the ticket. Stock allowed values:
22555
+ * ```
22556
+ * {
22557
+ * "id": 1,
22558
+ * "label": "internal",
22559
+ * "ordinal": 1,
22560
+ * "overridable": false
22561
+ * },
22562
+ * {
22563
+ * "id": 2,
22564
+ * "label": "external",
22565
+ * "ordinal": 2,
22566
+ * "overridable": false
22567
+ * }
22568
+ * ```
22569
+ * @format int64
22570
+ */
22571
+ visibility?: number;
22045
22572
  }
22046
22573
  /** works-create-response */
22047
22574
  export interface WorksCreateResponse {
@@ -22078,6 +22605,8 @@ export interface WorksExportRequest {
22078
22605
  created_date?: DateFilter;
22079
22606
  /** Filters for custom fields. */
22080
22607
  custom_fields?: object;
22608
+ /** Filters for work with any of the provided external references. */
22609
+ external_ref?: string[];
22081
22610
  /**
22082
22611
  * The number of work items to return. The default is '50', the
22083
22612
  * maximum is '5000'.
@@ -22207,6 +22736,8 @@ export interface WorksFilterTicket {
22207
22736
  subtype?: string[];
22208
22737
  /** The filter for survey aggregation. */
22209
22738
  surveys?: SurveyAggregationFilter;
22739
+ /** Visibility enum ID of the ticket. */
22740
+ visibility?: number[];
22210
22741
  }
22211
22742
  /** works-get-request */
22212
22743
  export interface WorksGetRequest {
@@ -22247,6 +22778,8 @@ export interface WorksListRequest {
22247
22778
  cursor?: string;
22248
22779
  /** Filters for custom fields. */
22249
22780
  custom_fields?: object;
22781
+ /** Filters for work with any of the provided external references. */
22782
+ external_ref?: string[];
22250
22783
  issue?: WorksFilterIssue;
22251
22784
  /**
22252
22785
  * The maximum number of works to return. The default is '50'.
@@ -22686,6 +23219,25 @@ export interface WorksUpdateRequestTicket {
22686
23219
  * @format id
22687
23220
  */
22688
23221
  source_channel_v2?: string | null;
23222
+ /**
23223
+ * Visibility enum ID of the ticket. Stock allowed values:
23224
+ * ```
23225
+ * {
23226
+ * "id": 1,
23227
+ * "label": "internal",
23228
+ * "ordinal": 1,
23229
+ * "overridable": false
23230
+ * },
23231
+ * {
23232
+ * "id": 2,
23233
+ * "label": "external",
23234
+ * "ordinal": 2,
23235
+ * "overridable": false
23236
+ * }
23237
+ * ```
23238
+ * @format int64
23239
+ */
23240
+ visibility?: number;
22689
23241
  }
22690
23242
  /** works-update-request-ticket-channels */
22691
23243
  export interface WorksUpdateRequestTicketChannels {
@@ -22748,7 +23300,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
22748
23300
  protected mergeRequestParams(params1: AxiosRequestConfig, params2?: AxiosRequestConfig): AxiosRequestConfig;
22749
23301
  protected stringifyFormItem(formItem: unknown): string;
22750
23302
  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>>;
23303
+ request: <T = any, _E = any>({ secure, path, type, query, format, body, ...params }: FullRequestParams) => Promise<AxiosResponse<T, any, {}>>;
22752
23304
  }
22753
23305
  /**
22754
23306
  * @title DevRev REST API
@@ -22767,7 +23319,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
22767
23319
  * @request POST:/accounts.create
22768
23320
  * @secure
22769
23321
  */
22770
- accountsCreate: (data: AccountsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsCreateResponse, any>>;
23322
+ accountsCreate: (data: AccountsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsCreateResponse, any, {}>>;
22771
23323
  /**
22772
23324
  * @description Deletes an account.
22773
23325
  *
@@ -22777,7 +23329,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
22777
23329
  * @request POST:/accounts.delete
22778
23330
  * @secure
22779
23331
  */
22780
- accountsDelete: (data: AccountsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
23332
+ accountsDelete: (data: AccountsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
22781
23333
  /**
22782
23334
  * @description Exports a collection of accounts.
22783
23335
  *
@@ -22845,7 +23397,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
22845
23397
  tier?: string[];
22846
23398
  /** Array of websites of accounts to be filtered. */
22847
23399
  websites?: string[];
22848
- }, params?: RequestParams) => Promise<AxiosResponse<AccountsExportResponse, any>>;
23400
+ }, params?: RequestParams) => Promise<AxiosResponse<AccountsExportResponse, any, {}>>;
22849
23401
  /**
22850
23402
  * @description Exports a collection of accounts.
22851
23403
  *
@@ -22855,7 +23407,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
22855
23407
  * @request POST:/accounts.export
22856
23408
  * @secure
22857
23409
  */
22858
- accountsExportPost: (data: AccountsExportRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsExportResponse, any>>;
23410
+ accountsExportPost: (data: AccountsExportRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsExportResponse, any, {}>>;
22859
23411
  /**
22860
23412
  * @description Retrieves an account's information.
22861
23413
  *
@@ -22872,7 +23424,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
22872
23424
  * @example "ACC-12345"
22873
23425
  */
22874
23426
  id: string;
22875
- }, params?: RequestParams) => Promise<AxiosResponse<AccountsGetResponse, any>>;
23427
+ }, params?: RequestParams) => Promise<AxiosResponse<AccountsGetResponse, any, {}>>;
22876
23428
  /**
22877
23429
  * @description Retrieves an account's information.
22878
23430
  *
@@ -22882,7 +23434,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
22882
23434
  * @request POST:/accounts.get
22883
23435
  * @secure
22884
23436
  */
22885
- accountsGetPost: (data: AccountsGetRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsGetResponse, any>>;
23437
+ accountsGetPost: (data: AccountsGetRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsGetResponse, any, {}>>;
22886
23438
  /**
22887
23439
  * @description Gets a list of accounts.
22888
23440
  *
@@ -22960,7 +23512,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
22960
23512
  tier?: string[];
22961
23513
  /** Array of websites of accounts to be filtered. */
22962
23514
  websites?: string[];
22963
- }, params?: RequestParams) => Promise<AxiosResponse<AccountsListResponse, any>>;
23515
+ }, params?: RequestParams) => Promise<AxiosResponse<AccountsListResponse, any, {}>>;
22964
23516
  /**
22965
23517
  * @description Gets a list of accounts.
22966
23518
  *
@@ -22970,7 +23522,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
22970
23522
  * @request POST:/accounts.list
22971
23523
  * @secure
22972
23524
  */
22973
- accountsListPost: (data: AccountsListRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsListResponse, any>>;
23525
+ accountsListPost: (data: AccountsListRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsListResponse, any, {}>>;
22974
23526
  /**
22975
23527
  * @description Merges two accounts.
22976
23528
  *
@@ -22980,7 +23532,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
22980
23532
  * @request POST:/accounts.merge
22981
23533
  * @secure
22982
23534
  */
22983
- accountsMerge: (data: AccountsMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
23535
+ accountsMerge: (data: AccountsMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
22984
23536
  /**
22985
23537
  * @description Updates an account's information.
22986
23538
  *
@@ -22990,7 +23542,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
22990
23542
  * @request POST:/accounts.update
22991
23543
  * @secure
22992
23544
  */
22993
- accountsUpdate: (data: AccountsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsUpdateResponse, any>>;
23545
+ accountsUpdate: (data: AccountsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsUpdateResponse, any, {}>>;
22994
23546
  /**
22995
23547
  * @description Execute an AI agent input event asynchronously.
22996
23548
  *
@@ -23000,7 +23552,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23000
23552
  * @request POST:/ai-agents.events.execute-async
23001
23553
  * @secure
23002
23554
  */
23003
- aiAgentEventsExecuteAsync: (data: AiAgentEventsExecuteAsyncRequest, params?: RequestParams) => Promise<AxiosResponse<AiAgentEventsExecuteAsyncResponse, any>>;
23555
+ aiAgentEventsExecuteAsync: (data: AiAgentEventsExecuteAsyncRequest, params?: RequestParams) => Promise<AxiosResponse<AiAgentEventsExecuteAsyncResponse, any, {}>>;
23004
23556
  /**
23005
23557
  * @description Gets a single sync unit's information.
23006
23558
  *
@@ -23016,7 +23568,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23016
23568
  * @format id
23017
23569
  */
23018
23570
  id: string;
23019
- }, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsGetResponse, any>>;
23571
+ }, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsGetResponse, any, {}>>;
23020
23572
  /**
23021
23573
  * @description Gets a single sync unit's information.
23022
23574
  *
@@ -23026,7 +23578,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23026
23578
  * @request POST:/airdrop.sync-units.get
23027
23579
  * @secure
23028
23580
  */
23029
- airdropSyncUnitsGetPost: (data: AirdropSyncUnitsGetRequest, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsGetResponse, any>>;
23581
+ airdropSyncUnitsGetPost: (data: AirdropSyncUnitsGetRequest, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsGetResponse, any, {}>>;
23030
23582
  /**
23031
23583
  * @description Gets a list of sync unit historical records.
23032
23584
  *
@@ -23066,7 +23618,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23066
23618
  * used.
23067
23619
  */
23068
23620
  mode?: ListMode;
23069
- }, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsHistoryResponse, any>>;
23621
+ }, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsHistoryResponse, any, {}>>;
23070
23622
  /**
23071
23623
  * @description Gets a list of sync unit historical records.
23072
23624
  *
@@ -23076,7 +23628,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23076
23628
  * @request POST:/airdrop.sync-units.history
23077
23629
  * @secure
23078
23630
  */
23079
- airdropSyncUnitsHistoryPost: (data: AirdropSyncUnitsHistoryRequest, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsHistoryResponse, any>>;
23631
+ airdropSyncUnitsHistoryPost: (data: AirdropSyncUnitsHistoryRequest, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsHistoryResponse, any, {}>>;
23080
23632
  /**
23081
23633
  * @description Get count of articles matching given filter.
23082
23634
  *
@@ -23143,7 +23695,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23143
23695
  * @example ["TAG-12345"]
23144
23696
  */
23145
23697
  tags?: string[];
23146
- }, params?: RequestParams) => Promise<AxiosResponse<ArticlesCountResponse, any>>;
23698
+ }, params?: RequestParams) => Promise<AxiosResponse<ArticlesCountResponse, any, {}>>;
23147
23699
  /**
23148
23700
  * @description Get count of articles matching given filter.
23149
23701
  *
@@ -23153,7 +23705,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23153
23705
  * @request POST:/articles.count
23154
23706
  * @secure
23155
23707
  */
23156
- articlesCountPost: (data: ArticlesCountRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesCountResponse, any>>;
23708
+ articlesCountPost: (data: ArticlesCountRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesCountResponse, any, {}>>;
23157
23709
  /**
23158
23710
  * @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
23711
  *
@@ -23163,7 +23715,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23163
23715
  * @request POST:/articles.create
23164
23716
  * @secure
23165
23717
  */
23166
- createArticle: (data: ArticlesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesCreateResponse, any>>;
23718
+ createArticle: (data: ArticlesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesCreateResponse, any, {}>>;
23167
23719
  /**
23168
23720
  * @description Deletes an article.
23169
23721
  *
@@ -23173,7 +23725,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23173
23725
  * @request POST:/articles.delete
23174
23726
  * @secure
23175
23727
  */
23176
- deleteArticle: (data: ArticlesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
23728
+ deleteArticle: (data: ArticlesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
23177
23729
  /**
23178
23730
  * @description Gets an article.
23179
23731
  *
@@ -23190,7 +23742,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23190
23742
  * @example "ARTICLE-12345"
23191
23743
  */
23192
23744
  id: string;
23193
- }, params?: RequestParams) => Promise<AxiosResponse<ArticlesGetResponse, any>>;
23745
+ }, params?: RequestParams) => Promise<AxiosResponse<ArticlesGetResponse, any, {}>>;
23194
23746
  /**
23195
23747
  * @description Gets an article.
23196
23748
  *
@@ -23200,7 +23752,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23200
23752
  * @request POST:/articles.get
23201
23753
  * @secure
23202
23754
  */
23203
- getArticlePost: (data: ArticlesGetRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesGetResponse, any>>;
23755
+ getArticlePost: (data: ArticlesGetRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesGetResponse, any, {}>>;
23204
23756
  /**
23205
23757
  * @description Lists a collection of articles.
23206
23758
  *
@@ -23278,7 +23830,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23278
23830
  * @example ["TAG-12345"]
23279
23831
  */
23280
23832
  tags?: string[];
23281
- }, params?: RequestParams) => Promise<AxiosResponse<ArticlesListResponse, any>>;
23833
+ }, params?: RequestParams) => Promise<AxiosResponse<ArticlesListResponse, any, {}>>;
23282
23834
  /**
23283
23835
  * @description Lists a collection of articles.
23284
23836
  *
@@ -23288,7 +23840,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23288
23840
  * @request POST:/articles.list
23289
23841
  * @secure
23290
23842
  */
23291
- listArticlesPost: (data: ArticlesListRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesListResponse, any>>;
23843
+ listArticlesPost: (data: ArticlesListRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesListResponse, any, {}>>;
23292
23844
  /**
23293
23845
  * @description Updates an article.
23294
23846
  *
@@ -23298,7 +23850,44 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23298
23850
  * @request POST:/articles.update
23299
23851
  * @secure
23300
23852
  */
23301
- updateArticle: (data: ArticlesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesUpdateResponse, any>>;
23853
+ updateArticle: (data: ArticlesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesUpdateResponse, any, {}>>;
23854
+ /**
23855
+ * @description Redirects to the artifact's download URL.
23856
+ *
23857
+ * @tags artifacts
23858
+ * @name ArtifactsDownload
23859
+ * @summary Download Artifacts
23860
+ * @request GET:/artifacts.download
23861
+ * @secure
23862
+ */
23863
+ artifactsDownload: (query: {
23864
+ /**
23865
+ * The ID of the artifact to be downloaded.
23866
+ * @format id
23867
+ * @example "ARTIFACT-12345"
23868
+ */
23869
+ id: string;
23870
+ /**
23871
+ * The access key for the artifact.
23872
+ * @format text
23873
+ */
23874
+ key?: string;
23875
+ /**
23876
+ * The version of the artifact that needs to be downloaded.
23877
+ * @format text
23878
+ */
23879
+ version?: string;
23880
+ }, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
23881
+ /**
23882
+ * @description Redirects to the artifact's download URL.
23883
+ *
23884
+ * @tags artifacts
23885
+ * @name ArtifactsDownloadPost
23886
+ * @summary Download Artifacts (POST)
23887
+ * @request POST:/artifacts.download
23888
+ * @secure
23889
+ */
23890
+ artifactsDownloadPost: (data: ArtifactsDownloadRequest, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
23302
23891
  /**
23303
23892
  * @description Gets the requested artifact's information.
23304
23893
  *
@@ -23320,7 +23909,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23320
23909
  * @format text
23321
23910
  */
23322
23911
  version?: string;
23323
- }, params?: RequestParams) => Promise<AxiosResponse<ArtifactsGetResponse, any>>;
23912
+ }, params?: RequestParams) => Promise<AxiosResponse<ArtifactsGetResponse, any, {}>>;
23324
23913
  /**
23325
23914
  * @description Gets the requested artifact's information.
23326
23915
  *
@@ -23330,7 +23919,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23330
23919
  * @request POST:/artifacts.get
23331
23920
  * @secure
23332
23921
  */
23333
- artifactsGetPost: (data: ArtifactsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsGetResponse, any>>;
23922
+ artifactsGetPost: (data: ArtifactsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsGetResponse, any, {}>>;
23334
23923
  /**
23335
23924
  * @description List the artifacts attached to an object.
23336
23925
  *
@@ -23346,7 +23935,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23346
23935
  * @format id
23347
23936
  */
23348
23937
  parent_id?: string;
23349
- }, params?: RequestParams) => Promise<AxiosResponse<ArtifactsListResponse, any>>;
23938
+ }, params?: RequestParams) => Promise<AxiosResponse<ArtifactsListResponse, any, {}>>;
23350
23939
  /**
23351
23940
  * @description List the artifacts attached to an object.
23352
23941
  *
@@ -23356,7 +23945,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23356
23945
  * @request POST:/artifacts.list
23357
23946
  * @secure
23358
23947
  */
23359
- artifactsListPost: (data: ArtifactsListRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsListResponse, any>>;
23948
+ artifactsListPost: (data: ArtifactsListRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsListResponse, any, {}>>;
23360
23949
  /**
23361
23950
  * @description Gets the download URL for the artifact.
23362
23951
  *
@@ -23378,7 +23967,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23378
23967
  * @format text
23379
23968
  */
23380
23969
  version?: string;
23381
- }, params?: RequestParams) => Promise<AxiosResponse<ArtifactsLocateResponse, any>>;
23970
+ }, params?: RequestParams) => Promise<AxiosResponse<ArtifactsLocateResponse, any, {}>>;
23382
23971
  /**
23383
23972
  * @description Gets the download URL for the artifact.
23384
23973
  *
@@ -23388,7 +23977,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23388
23977
  * @request POST:/artifacts.locate
23389
23978
  * @secure
23390
23979
  */
23391
- artifactsLocatePost: (data: ArtifactsLocateRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsLocateResponse, any>>;
23980
+ artifactsLocatePost: (data: ArtifactsLocateRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsLocateResponse, any, {}>>;
23392
23981
  /**
23393
23982
  * @description Creates an artifact and generates an upload URL for its data.
23394
23983
  *
@@ -23398,7 +23987,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23398
23987
  * @request POST:/artifacts.prepare
23399
23988
  * @secure
23400
23989
  */
23401
- artifactsPrepare: (data: ArtifactsPrepareRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsPrepareResponse, any>>;
23990
+ artifactsPrepare: (data: ArtifactsPrepareRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsPrepareResponse, any, {}>>;
23402
23991
  /**
23403
23992
  * @description Permanently deletes a version of an artifact.
23404
23993
  *
@@ -23408,7 +23997,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23408
23997
  * @request POST:/artifacts.versions.delete
23409
23998
  * @secure
23410
23999
  */
23411
- artifactsHardDeleteVersion: (data: ArtifactsHardDeleteVersionRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
24000
+ artifactsHardDeleteVersion: (data: ArtifactsHardDeleteVersionRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
23412
24001
  /**
23413
24002
  * @description Prepares a new version for an artifact, returning the URL and form data to upload the updated file.
23414
24003
  *
@@ -23418,7 +24007,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23418
24007
  * @request POST:/artifacts.versions.prepare
23419
24008
  * @secure
23420
24009
  */
23421
- artifactsVersionsPrepare: (data: ArtifactsVersionsPrepareRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsVersionsPrepareResponse, any>>;
24010
+ artifactsVersionsPrepare: (data: ArtifactsVersionsPrepareRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsVersionsPrepareResponse, any, {}>>;
23422
24011
  /**
23423
24012
  * @description Gets the specified object.
23424
24013
  *
@@ -23434,7 +24023,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23434
24023
  * @format id
23435
24024
  */
23436
24025
  id: string;
23437
- }, params?: RequestParams) => Promise<AxiosResponse<AtomsGetResponse, any>>;
24026
+ }, params?: RequestParams) => Promise<AxiosResponse<AtomsGetResponse, any, {}>>;
23438
24027
  /**
23439
24028
  * @description Gets the specified object.
23440
24029
  *
@@ -23444,7 +24033,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23444
24033
  * @request POST:/atoms.get
23445
24034
  * @secure
23446
24035
  */
23447
- atomsGetPost: (data: AtomsGetRequest, params?: RequestParams) => Promise<AxiosResponse<AtomsGetResponse, any>>;
24036
+ atomsGetPost: (data: AtomsGetRequest, params?: RequestParams) => Promise<AxiosResponse<AtomsGetResponse, any, {}>>;
23448
24037
  /**
23449
24038
  * @description Retrieves audit logs.
23450
24039
  *
@@ -23454,7 +24043,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23454
24043
  * @request POST:/audit-logs.fetch
23455
24044
  * @secure
23456
24045
  */
23457
- exportAuditLogs: (data: ExportAuditLogsRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
24046
+ exportAuditLogs: (data: ExportAuditLogsRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
23458
24047
  /**
23459
24048
  * @description Creates a JWT corresponding to the requested token type for the authenticated user.
23460
24049
  *
@@ -23464,7 +24053,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23464
24053
  * @request POST:/auth-tokens.create
23465
24054
  * @secure
23466
24055
  */
23467
- authTokensCreate: (data: AuthTokensCreateRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensCreateResponse, any>>;
24056
+ authTokensCreate: (data: AuthTokensCreateRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensCreateResponse, any, {}>>;
23468
24057
  /**
23469
24058
  * @description Revokes the token that matches the given token ID issued under the given Dev organization.
23470
24059
  *
@@ -23474,7 +24063,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23474
24063
  * @request POST:/auth-tokens.delete
23475
24064
  * @secure
23476
24065
  */
23477
- authTokensDelete: (data: AuthTokensDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
24066
+ authTokensDelete: (data: AuthTokensDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
23478
24067
  /**
23479
24068
  * @description Gets the token metadata corresponding to the given token ID under the given Dev organization.
23480
24069
  *
@@ -23490,7 +24079,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23490
24079
  * @format id
23491
24080
  */
23492
24081
  token_id: string;
23493
- }, params?: RequestParams) => Promise<AxiosResponse<AuthTokensGetResponse, any>>;
24082
+ }, params?: RequestParams) => Promise<AxiosResponse<AuthTokensGetResponse, any, {}>>;
23494
24083
  /**
23495
24084
  * @description Gets the token metadata corresponding to the given token ID under the given Dev organization.
23496
24085
  *
@@ -23500,7 +24089,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23500
24089
  * @request POST:/auth-tokens.get
23501
24090
  * @secure
23502
24091
  */
23503
- authTokensGetPost: (data: AuthTokensGetRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensGetResponse, any>>;
24092
+ authTokensGetPost: (data: AuthTokensGetRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensGetResponse, any, {}>>;
23504
24093
  /**
23505
24094
  * @description Returns the Dev organization, user and token attributes extracted from the auth token.
23506
24095
  *
@@ -23510,7 +24099,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23510
24099
  * @request GET:/auth-tokens.info
23511
24100
  * @secure
23512
24101
  */
23513
- authTokensInfo: (params?: RequestParams) => Promise<AxiosResponse<AuthTokensInfoResponse, any>>;
24102
+ authTokensInfo: (params?: RequestParams) => Promise<AxiosResponse<AuthTokensInfoResponse, any, {}>>;
23514
24103
  /**
23515
24104
  * @description Returns the Dev organization, user and token attributes extracted from the auth token.
23516
24105
  *
@@ -23520,7 +24109,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23520
24109
  * @request POST:/auth-tokens.info
23521
24110
  * @secure
23522
24111
  */
23523
- authTokensInfoPost: (data: AuthTokensInfoRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensInfoResponse, any>>;
24112
+ authTokensInfoPost: (data: AuthTokensInfoRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensInfoResponse, any, {}>>;
23524
24113
  /**
23525
24114
  * @description Gets the token metadata for all the tokens corresponding to the given token type issued for a given subject.
23526
24115
  *
@@ -23549,7 +24138,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23549
24138
  * @format id
23550
24139
  */
23551
24140
  subject?: string;
23552
- }, params?: RequestParams) => Promise<AxiosResponse<AuthTokensListResponse, any>>;
24141
+ }, params?: RequestParams) => Promise<AxiosResponse<AuthTokensListResponse, any, {}>>;
23553
24142
  /**
23554
24143
  * @description Gets the token metadata for all the tokens corresponding to the given token type issued for a given subject.
23555
24144
  *
@@ -23559,7 +24148,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23559
24148
  * @request POST:/auth-tokens.list
23560
24149
  * @secure
23561
24150
  */
23562
- authTokensListPost: (data: AuthTokensListRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensListResponse, any>>;
24151
+ authTokensListPost: (data: AuthTokensListRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensListResponse, any, {}>>;
23563
24152
  /**
23564
24153
  * @description Revokes all the tokens that matches the given token type created by the authenticated user.
23565
24154
  *
@@ -23569,7 +24158,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23569
24158
  * @request POST:/auth-tokens.self.delete
23570
24159
  * @secure
23571
24160
  */
23572
- authTokensSelfDelete: (data: AuthTokensSelfDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
24161
+ authTokensSelfDelete: (data: AuthTokensSelfDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
23573
24162
  /**
23574
24163
  * @description Updates token metadata of a token issued under a given Dev organization.
23575
24164
  *
@@ -23579,7 +24168,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23579
24168
  * @request POST:/auth-tokens.update
23580
24169
  * @secure
23581
24170
  */
23582
- authTokensUpdate: (data: AuthTokensUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensUpdateResponse, any>>;
24171
+ authTokensUpdate: (data: AuthTokensUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensUpdateResponse, any, {}>>;
23583
24172
  /**
23584
24173
  * @description Creates a new brand.
23585
24174
  *
@@ -23589,7 +24178,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23589
24178
  * @request POST:/brands.create
23590
24179
  * @secure
23591
24180
  */
23592
- brandsCreate: (data: BrandsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<BrandsCreateResponse, any>>;
24181
+ brandsCreate: (data: BrandsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<BrandsCreateResponse, any, {}>>;
23593
24182
  /**
23594
24183
  * @description Deletes a brand by its ID.
23595
24184
  *
@@ -23599,7 +24188,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23599
24188
  * @request POST:/brands.delete
23600
24189
  * @secure
23601
24190
  */
23602
- brandsDelete: (data: BrandsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
24191
+ brandsDelete: (data: BrandsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
23603
24192
  /**
23604
24193
  * @description Gets a brand by its ID.
23605
24194
  *
@@ -23615,7 +24204,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23615
24204
  * @format id
23616
24205
  */
23617
24206
  id: string;
23618
- }, params?: RequestParams) => Promise<AxiosResponse<BrandsGetResponse, any>>;
24207
+ }, params?: RequestParams) => Promise<AxiosResponse<BrandsGetResponse, any, {}>>;
23619
24208
  /**
23620
24209
  * @description Gets a brand by its ID.
23621
24210
  *
@@ -23625,7 +24214,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23625
24214
  * @request POST:/brands.get
23626
24215
  * @secure
23627
24216
  */
23628
- brandsGetPost: (data: BrandsGetRequest, params?: RequestParams) => Promise<AxiosResponse<BrandsGetResponse, any>>;
24217
+ brandsGetPost: (data: BrandsGetRequest, params?: RequestParams) => Promise<AxiosResponse<BrandsGetResponse, any, {}>>;
23629
24218
  /**
23630
24219
  * @description Lists all brands.
23631
24220
  *
@@ -23642,7 +24231,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23642
24231
  * @format text
23643
24232
  */
23644
24233
  cursor?: string;
23645
- }, params?: RequestParams) => Promise<AxiosResponse<BrandsListResponse, any>>;
24234
+ }, params?: RequestParams) => Promise<AxiosResponse<BrandsListResponse, any, {}>>;
23646
24235
  /**
23647
24236
  * @description Lists all brands.
23648
24237
  *
@@ -23652,7 +24241,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23652
24241
  * @request POST:/brands.list
23653
24242
  * @secure
23654
24243
  */
23655
- brandsListPost: (data: BrandsListRequest, params?: RequestParams) => Promise<AxiosResponse<BrandsListResponse, any>>;
24244
+ brandsListPost: (data: BrandsListRequest, params?: RequestParams) => Promise<AxiosResponse<BrandsListResponse, any, {}>>;
23656
24245
  /**
23657
24246
  * @description Updates a brand by its ID.
23658
24247
  *
@@ -23662,7 +24251,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23662
24251
  * @request POST:/brands.update
23663
24252
  * @secure
23664
24253
  */
23665
- brandsUpdate: (data: BrandsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<BrandsUpdateResponse, any>>;
24254
+ brandsUpdate: (data: BrandsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<BrandsUpdateResponse, any, {}>>;
23666
24255
  /**
23667
24256
  * @description Creates a new chat, or optionally opens an existing one.
23668
24257
  *
@@ -23672,7 +24261,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23672
24261
  * @request POST:/chats.create
23673
24262
  * @secure
23674
24263
  */
23675
- chatsCreate: (data: ChatsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsCreateResponse, any>>;
24264
+ chatsCreate: (data: ChatsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsCreateResponse, any, {}>>;
23676
24265
  /**
23677
24266
  * @description Gets a chat's information.
23678
24267
  *
@@ -23689,7 +24278,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23689
24278
  * @example "CHAN-AbCdEfGh"
23690
24279
  */
23691
24280
  id?: string;
23692
- }, params?: RequestParams) => Promise<AxiosResponse<ChatsGetResponse, any>>;
24281
+ }, params?: RequestParams) => Promise<AxiosResponse<ChatsGetResponse, any, {}>>;
23693
24282
  /**
23694
24283
  * @description Gets a chat's information.
23695
24284
  *
@@ -23699,7 +24288,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23699
24288
  * @request POST:/chats.get
23700
24289
  * @secure
23701
24290
  */
23702
- chatsGetPost: (data: ChatsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsGetResponse, any>>;
24291
+ chatsGetPost: (data: ChatsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsGetResponse, any, {}>>;
23703
24292
  /**
23704
24293
  * @description Updates a chat's information.
23705
24294
  *
@@ -23709,7 +24298,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23709
24298
  * @request POST:/chats.update
23710
24299
  * @secure
23711
24300
  */
23712
- chatsUpdate: (data: ChatsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsUpdateResponse, any>>;
24301
+ chatsUpdate: (data: ChatsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsUpdateResponse, any, {}>>;
23713
24302
  /**
23714
24303
  * @description Creates a code change object.
23715
24304
  *
@@ -23719,7 +24308,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23719
24308
  * @request POST:/code-changes.create
23720
24309
  * @secure
23721
24310
  */
23722
- codeChangesCreate: (data: CodeChangesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesCreateResponse, any>>;
24311
+ codeChangesCreate: (data: CodeChangesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesCreateResponse, any, {}>>;
23723
24312
  /**
23724
24313
  * @description Deletes a code change object.
23725
24314
  *
@@ -23729,7 +24318,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23729
24318
  * @request POST:/code-changes.delete
23730
24319
  * @secure
23731
24320
  */
23732
- codeChangesDelete: (data: CodeChangesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
24321
+ codeChangesDelete: (data: CodeChangesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
23733
24322
  /**
23734
24323
  * @description Gets a code change object.
23735
24324
  *
@@ -23745,7 +24334,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23745
24334
  * @format id
23746
24335
  */
23747
24336
  id: string;
23748
- }, params?: RequestParams) => Promise<AxiosResponse<CodeChangesGetResponse, any>>;
24337
+ }, params?: RequestParams) => Promise<AxiosResponse<CodeChangesGetResponse, any, {}>>;
23749
24338
  /**
23750
24339
  * @description Gets a code change object.
23751
24340
  *
@@ -23755,7 +24344,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23755
24344
  * @request POST:/code-changes.get
23756
24345
  * @secure
23757
24346
  */
23758
- codeChangesGetPost: (data: CodeChangesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesGetResponse, any>>;
24347
+ codeChangesGetPost: (data: CodeChangesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesGetResponse, any, {}>>;
23759
24348
  /**
23760
24349
  * @description Lists code change objects.
23761
24350
  *
@@ -23783,7 +24372,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23783
24372
  * used.
23784
24373
  */
23785
24374
  mode?: ListMode;
23786
- }, params?: RequestParams) => Promise<AxiosResponse<CodeChangesListResponse, any>>;
24375
+ }, params?: RequestParams) => Promise<AxiosResponse<CodeChangesListResponse, any, {}>>;
23787
24376
  /**
23788
24377
  * @description Lists code change objects.
23789
24378
  *
@@ -23793,7 +24382,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23793
24382
  * @request POST:/code-changes.list
23794
24383
  * @secure
23795
24384
  */
23796
- codeChangesListPost: (data: CodeChangesListRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesListResponse, any>>;
24385
+ codeChangesListPost: (data: CodeChangesListRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesListResponse, any, {}>>;
23797
24386
  /**
23798
24387
  * @description Updates a code change object.
23799
24388
  *
@@ -23803,7 +24392,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23803
24392
  * @request POST:/code-changes.update
23804
24393
  * @secure
23805
24394
  */
23806
- codeChangesUpdate: (data: CodeChangesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesUpdateResponse, any>>;
24395
+ codeChangesUpdate: (data: CodeChangesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesUpdateResponse, any, {}>>;
23807
24396
  /**
23808
24397
  * @description Creates a command.
23809
24398
  *
@@ -23813,7 +24402,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23813
24402
  * @request POST:/commands.create
23814
24403
  * @secure
23815
24404
  */
23816
- commandsCreate: (data: CommandCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CommandCreateResponse, any>>;
24405
+ commandsCreate: (data: CommandCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CommandCreateResponse, any, {}>>;
23817
24406
  /**
23818
24407
  * @description Gets a command.
23819
24408
  *
@@ -23829,7 +24418,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23829
24418
  * @format id
23830
24419
  */
23831
24420
  id: string;
23832
- }, params?: RequestParams) => Promise<AxiosResponse<CommandGetResponse, any>>;
24421
+ }, params?: RequestParams) => Promise<AxiosResponse<CommandGetResponse, any, {}>>;
23833
24422
  /**
23834
24423
  * @description Gets a command.
23835
24424
  *
@@ -23839,7 +24428,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23839
24428
  * @request POST:/commands.get
23840
24429
  * @secure
23841
24430
  */
23842
- commandsGetPost: (data: CommandGetRequest, params?: RequestParams) => Promise<AxiosResponse<CommandGetResponse, any>>;
24431
+ commandsGetPost: (data: CommandGetRequest, params?: RequestParams) => Promise<AxiosResponse<CommandGetResponse, any, {}>>;
23843
24432
  /**
23844
24433
  * @description Lists commands for a Dev organization.
23845
24434
  *
@@ -23880,7 +24469,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23880
24469
  source_object_id?: string;
23881
24470
  /** Filter commands based on status. */
23882
24471
  status?: CommandStatus[];
23883
- }, params?: RequestParams) => Promise<AxiosResponse<CommandsListResponse, any>>;
24472
+ }, params?: RequestParams) => Promise<AxiosResponse<CommandsListResponse, any, {}>>;
23884
24473
  /**
23885
24474
  * @description Lists commands for a Dev organization.
23886
24475
  *
@@ -23890,7 +24479,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23890
24479
  * @request POST:/commands.list
23891
24480
  * @secure
23892
24481
  */
23893
- commandsListPost: (data: CommandsListRequest, params?: RequestParams) => Promise<AxiosResponse<CommandsListResponse, any>>;
24482
+ commandsListPost: (data: CommandsListRequest, params?: RequestParams) => Promise<AxiosResponse<CommandsListResponse, any, {}>>;
23894
24483
  /**
23895
24484
  * @description Updates a command.
23896
24485
  *
@@ -23900,7 +24489,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23900
24489
  * @request POST:/commands.update
23901
24490
  * @secure
23902
24491
  */
23903
- commandsUpdate: (data: CommandUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CommandUpdateResponse, any>>;
24492
+ commandsUpdate: (data: CommandUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CommandUpdateResponse, any, {}>>;
23904
24493
  /**
23905
24494
  * @description Create the content template.
23906
24495
  *
@@ -23910,7 +24499,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23910
24499
  * @request POST:/content-template.create
23911
24500
  * @secure
23912
24501
  */
23913
- contentTemplateCreate: (data: ContentTemplateCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateCreateResponse, any>>;
24502
+ contentTemplateCreate: (data: ContentTemplateCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateCreateResponse, any, {}>>;
23914
24503
  /**
23915
24504
  * @description Get the content template.
23916
24505
  *
@@ -23926,7 +24515,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23926
24515
  * @format id
23927
24516
  */
23928
24517
  id: string;
23929
- }, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateGetResponse, any>>;
24518
+ }, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateGetResponse, any, {}>>;
23930
24519
  /**
23931
24520
  * @description Get the content template.
23932
24521
  *
@@ -23936,7 +24525,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23936
24525
  * @request POST:/content-template.get
23937
24526
  * @secure
23938
24527
  */
23939
- contentTemplateGetPost: (data: ContentTemplateGetRequest, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateGetResponse, any>>;
24528
+ contentTemplateGetPost: (data: ContentTemplateGetRequest, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateGetResponse, any, {}>>;
23940
24529
  /**
23941
24530
  * @description Lists the content templates.
23942
24531
  *
@@ -23978,7 +24567,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23978
24567
  sort_by?: string[];
23979
24568
  /** Filters for content template of the provided types. */
23980
24569
  type?: ContentTemplateType[];
23981
- }, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateListResponse, any>>;
24570
+ }, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateListResponse, any, {}>>;
23982
24571
  /**
23983
24572
  * @description Lists the content templates.
23984
24573
  *
@@ -23988,7 +24577,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23988
24577
  * @request POST:/content-template.list
23989
24578
  * @secure
23990
24579
  */
23991
- contentTemplateListPost: (data: ContentTemplateListRequest, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateListResponse, any>>;
24580
+ contentTemplateListPost: (data: ContentTemplateListRequest, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateListResponse, any, {}>>;
23992
24581
  /**
23993
24582
  * @description Creates a conversation.
23994
24583
  *
@@ -23998,7 +24587,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
23998
24587
  * @request POST:/conversations.create
23999
24588
  * @secure
24000
24589
  */
24001
- conversationsCreate: (data: ConversationsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsCreateResponse, any>>;
24590
+ conversationsCreate: (data: ConversationsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsCreateResponse, any, {}>>;
24002
24591
  /**
24003
24592
  * @description Deletes the requested conversation.
24004
24593
  *
@@ -24008,7 +24597,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24008
24597
  * @request POST:/conversations.delete
24009
24598
  * @secure
24010
24599
  */
24011
- conversationsDelete: (data: ConversationsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
24600
+ conversationsDelete: (data: ConversationsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
24012
24601
  /**
24013
24602
  * @description Exports a collection of conversation items.
24014
24603
  *
@@ -24121,7 +24710,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24121
24710
  * @format text
24122
24711
  */
24123
24712
  'tags_v2.value'?: string;
24124
- }, params?: RequestParams) => Promise<AxiosResponse<ConversationsExportResponse, any>>;
24713
+ }, params?: RequestParams) => Promise<AxiosResponse<ConversationsExportResponse, any, {}>>;
24125
24714
  /**
24126
24715
  * @description Exports a collection of conversation items.
24127
24716
  *
@@ -24131,7 +24720,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24131
24720
  * @request POST:/conversations.export
24132
24721
  * @secure
24133
24722
  */
24134
- conversationsExportPost: (data: ConversationsExportRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsExportResponse, any>>;
24723
+ conversationsExportPost: (data: ConversationsExportRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsExportResponse, any, {}>>;
24135
24724
  /**
24136
24725
  * @description Gets the requested conversation's information.
24137
24726
  *
@@ -24147,7 +24736,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24147
24736
  * @format id
24148
24737
  */
24149
24738
  id: string;
24150
- }, params?: RequestParams) => Promise<AxiosResponse<ConversationsGetResponse, any>>;
24739
+ }, params?: RequestParams) => Promise<AxiosResponse<ConversationsGetResponse, any, {}>>;
24151
24740
  /**
24152
24741
  * @description Gets the requested conversation's information.
24153
24742
  *
@@ -24157,7 +24746,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24157
24746
  * @request POST:/conversations.get
24158
24747
  * @secure
24159
24748
  */
24160
- conversationsGetPost: (data: ConversationsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsGetResponse, any>>;
24749
+ conversationsGetPost: (data: ConversationsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsGetResponse, any, {}>>;
24161
24750
  /**
24162
24751
  * @description Lists the available conversations.
24163
24752
  *
@@ -24280,7 +24869,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24280
24869
  * @format text
24281
24870
  */
24282
24871
  'tags_v2.value'?: string;
24283
- }, params?: RequestParams) => Promise<AxiosResponse<ConversationsListResponse, any>>;
24872
+ }, params?: RequestParams) => Promise<AxiosResponse<ConversationsListResponse, any, {}>>;
24284
24873
  /**
24285
24874
  * @description Lists the available conversations.
24286
24875
  *
@@ -24290,7 +24879,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24290
24879
  * @request POST:/conversations.list
24291
24880
  * @secure
24292
24881
  */
24293
- conversationsListPost: (data: ConversationsListRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsListResponse, any>>;
24882
+ conversationsListPost: (data: ConversationsListRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsListResponse, any, {}>>;
24294
24883
  /**
24295
24884
  * @description Updates the requested conversation.
24296
24885
  *
@@ -24300,7 +24889,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24300
24889
  * @request POST:/conversations.update
24301
24890
  * @secure
24302
24891
  */
24303
- conversationsUpdate: (data: ConversationsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsUpdateResponse, any>>;
24892
+ conversationsUpdate: (data: ConversationsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsUpdateResponse, any, {}>>;
24304
24893
  /**
24305
24894
  * @description Counts custom objects.
24306
24895
  *
@@ -24318,7 +24907,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24318
24907
  leaf_type: string;
24319
24908
  /** List of filters to apply. */
24320
24909
  filters?: any[];
24321
- }, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCountResponse, any>>;
24910
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCountResponse, any, {}>>;
24322
24911
  /**
24323
24912
  * @description Counts custom objects.
24324
24913
  *
@@ -24328,7 +24917,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24328
24917
  * @request POST:/custom-objects.count
24329
24918
  * @secure
24330
24919
  */
24331
- customObjectsCountPost: (data: CustomObjectsCountRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCountResponse, any>>;
24920
+ customObjectsCountPost: (data: CustomObjectsCountRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCountResponse, any, {}>>;
24332
24921
  /**
24333
24922
  * @description Creates a custom object.
24334
24923
  *
@@ -24338,7 +24927,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24338
24927
  * @request POST:/custom-objects.create
24339
24928
  * @secure
24340
24929
  */
24341
- customObjectsCreate: (data: CustomObjectsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCreateResponse, any>>;
24930
+ customObjectsCreate: (data: CustomObjectsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCreateResponse, any, {}>>;
24342
24931
  /**
24343
24932
  * @description Deletes a custom object.
24344
24933
  *
@@ -24348,7 +24937,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24348
24937
  * @request POST:/custom-objects.delete
24349
24938
  * @secure
24350
24939
  */
24351
- customObjectsDelete: (data: CustomObjectsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
24940
+ customObjectsDelete: (data: CustomObjectsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
24352
24941
  /**
24353
24942
  * @description Gets a custom object.
24354
24943
  *
@@ -24364,7 +24953,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24364
24953
  * @format id
24365
24954
  */
24366
24955
  id?: string;
24367
- }, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsGetResponse, any>>;
24956
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsGetResponse, any, {}>>;
24368
24957
  /**
24369
24958
  * @description Gets a custom object.
24370
24959
  *
@@ -24374,7 +24963,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24374
24963
  * @request POST:/custom-objects.get
24375
24964
  * @secure
24376
24965
  */
24377
- customObjectsGetPost: (data: CustomObjectsGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsGetResponse, any>>;
24966
+ customObjectsGetPost: (data: CustomObjectsGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsGetResponse, any, {}>>;
24378
24967
  /**
24379
24968
  * @description Lists custom objects.
24380
24969
  *
@@ -24412,7 +25001,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24412
25001
  mode?: ListMode;
24413
25002
  /** The list of fields to sort the items by and how to sort them. */
24414
25003
  sort_by?: string[];
24415
- }, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsListResponse, any>>;
25004
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsListResponse, any, {}>>;
24416
25005
  /**
24417
25006
  * @description Lists custom objects.
24418
25007
  *
@@ -24422,7 +25011,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24422
25011
  * @request POST:/custom-objects.list
24423
25012
  * @secure
24424
25013
  */
24425
- customObjectsListPost: (data: CustomObjectsListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsListResponse, any>>;
25014
+ customObjectsListPost: (data: CustomObjectsListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsListResponse, any, {}>>;
24426
25015
  /**
24427
25016
  * @description Updates a custom object.
24428
25017
  *
@@ -24432,7 +25021,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24432
25021
  * @request POST:/custom-objects.update
24433
25022
  * @secure
24434
25023
  */
24435
- customObjectsUpdate: (data: CustomObjectsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsUpdateResponse, any>>;
25024
+ customObjectsUpdate: (data: CustomObjectsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsUpdateResponse, any, {}>>;
24436
25025
  /**
24437
25026
  * @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
25027
  *
@@ -24442,7 +25031,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24442
25031
  * @request POST:/dev-orgs.auth-connections.create
24443
25032
  * @secure
24444
25033
  */
24445
- devOrgAuthConnectionsCreate: (data: DevOrgAuthConnectionsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsCreateResponse, any>>;
25034
+ devOrgAuthConnectionsCreate: (data: DevOrgAuthConnectionsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsCreateResponse, any, {}>>;
24446
25035
  /**
24447
25036
  * @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
25037
  *
@@ -24452,7 +25041,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24452
25041
  * @request POST:/dev-orgs.auth-connections.delete
24453
25042
  * @secure
24454
25043
  */
24455
- devOrgAuthConnectionsDelete: (data: DevOrgAuthConnectionsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
25044
+ devOrgAuthConnectionsDelete: (data: DevOrgAuthConnectionsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
24456
25045
  /**
24457
25046
  * @description Retrieves the details for an authentication connection.
24458
25047
  *
@@ -24468,7 +25057,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24468
25057
  * @format text
24469
25058
  */
24470
25059
  id: string;
24471
- }, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsGetResponse, any>>;
25060
+ }, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsGetResponse, any, {}>>;
24472
25061
  /**
24473
25062
  * @description Retrieves the details for an authentication connection.
24474
25063
  *
@@ -24478,7 +25067,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24478
25067
  * @request POST:/dev-orgs.auth-connections.get
24479
25068
  * @secure
24480
25069
  */
24481
- devOrgAuthConnectionsGetPost: (data: DevOrgAuthConnectionsGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsGetResponse, any>>;
25070
+ devOrgAuthConnectionsGetPost: (data: DevOrgAuthConnectionsGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsGetResponse, any, {}>>;
24482
25071
  /**
24483
25072
  * @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
25073
  *
@@ -24488,7 +25077,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24488
25077
  * @request GET:/dev-orgs.auth-connections.list
24489
25078
  * @secure
24490
25079
  */
24491
- devOrgAuthConnectionsList: (params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsListResponse, any>>;
25080
+ devOrgAuthConnectionsList: (params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsListResponse, any, {}>>;
24492
25081
  /**
24493
25082
  * @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
25083
  *
@@ -24498,7 +25087,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24498
25087
  * @request POST:/dev-orgs.auth-connections.list
24499
25088
  * @secure
24500
25089
  */
24501
- devOrgAuthConnectionsListPost: (data: Empty, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsListResponse, any>>;
25090
+ devOrgAuthConnectionsListPost: (data: Empty, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsListResponse, any, {}>>;
24502
25091
  /**
24503
25092
  * @description Enable or disable an authentication connection for a Dev organization. Atleast one authentication connection must be enabled for a Dev organization.
24504
25093
  *
@@ -24508,7 +25097,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24508
25097
  * @request POST:/dev-orgs.auth-connections.toggle
24509
25098
  * @secure
24510
25099
  */
24511
- devOrgAuthConnectionsToggle: (data: DevOrgAuthConnectionsToggleRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
25100
+ devOrgAuthConnectionsToggle: (data: DevOrgAuthConnectionsToggleRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
24512
25101
  /**
24513
25102
  * @description Updates an authentication connection.
24514
25103
  *
@@ -24518,7 +25107,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24518
25107
  * @request POST:/dev-orgs.auth-connections.update
24519
25108
  * @secure
24520
25109
  */
24521
- devOrgAuthConnectionsUpdate: (data: DevOrgAuthConnectionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsUpdateResponse, any>>;
25110
+ devOrgAuthConnectionsUpdate: (data: DevOrgAuthConnectionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsUpdateResponse, any, {}>>;
24522
25111
  /**
24523
25112
  * @description Gets the Dev organization's information of the authenticated user.
24524
25113
  *
@@ -24528,7 +25117,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24528
25117
  * @request GET:/dev-orgs.get
24529
25118
  * @secure
24530
25119
  */
24531
- devOrgsGet: (params?: RequestParams) => Promise<AxiosResponse<DevOrgsGetResponse, any>>;
25120
+ devOrgsGet: (params?: RequestParams) => Promise<AxiosResponse<DevOrgsGetResponse, any, {}>>;
24532
25121
  /**
24533
25122
  * @description Gets the Dev organization's information of the authenticated user.
24534
25123
  *
@@ -24538,7 +25127,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24538
25127
  * @request POST:/dev-orgs.get
24539
25128
  * @secure
24540
25129
  */
24541
- devOrgsGetPost: (data: DevOrgsGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgsGetResponse, any>>;
25130
+ devOrgsGetPost: (data: DevOrgsGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgsGetResponse, any, {}>>;
24542
25131
  /**
24543
25132
  * @description Activates the requested user.
24544
25133
  *
@@ -24548,7 +25137,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24548
25137
  * @request POST:/dev-users.activate
24549
25138
  * @secure
24550
25139
  */
24551
- devUsersActivate: (data: DevUsersActivateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersActivateResponse, any>>;
25140
+ devUsersActivate: (data: DevUsersActivateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersActivateResponse, any, {}>>;
24552
25141
  /**
24553
25142
  * @description Creates a Dev user for a Dev organization.
24554
25143
  *
@@ -24558,7 +25147,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24558
25147
  * @request POST:/dev-users.create
24559
25148
  * @secure
24560
25149
  */
24561
- devUsersCreate: (data: DevUsersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersCreateResponse, any>>;
25150
+ devUsersCreate: (data: DevUsersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersCreateResponse, any, {}>>;
24562
25151
  /**
24563
25152
  * @description Deactivates the requested user.
24564
25153
  *
@@ -24568,7 +25157,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24568
25157
  * @request POST:/dev-users.deactivate
24569
25158
  * @secure
24570
25159
  */
24571
- devUsersDeactivate: (data: DevUsersDeactivateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
25160
+ devUsersDeactivate: (data: DevUsersDeactivateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
24572
25161
  /**
24573
25162
  * @description Gets the requested user's information.
24574
25163
  *
@@ -24584,7 +25173,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24584
25173
  * @format id
24585
25174
  */
24586
25175
  id: string;
24587
- }, params?: RequestParams) => Promise<AxiosResponse<DevUsersGetResponse, any>>;
25176
+ }, params?: RequestParams) => Promise<AxiosResponse<DevUsersGetResponse, any, {}>>;
24588
25177
  /**
24589
25178
  * @description Gets the requested user's information.
24590
25179
  *
@@ -24594,7 +25183,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24594
25183
  * @request POST:/dev-users.get
24595
25184
  * @secure
24596
25185
  */
24597
- devUsersGetPost: (data: DevUsersGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersGetResponse, any>>;
25186
+ devUsersGetPost: (data: DevUsersGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersGetResponse, any, {}>>;
24598
25187
  /**
24599
25188
  * @description Links an external/secondary identity to the Dev user.
24600
25189
  *
@@ -24604,7 +25193,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24604
25193
  * @request POST:/dev-users.identities.link
24605
25194
  * @secure
24606
25195
  */
24607
- devUsersIdentitiesLink: (data: DevUsersIdentitiesLinkRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersIdentitiesLinkResponse, any>>;
25196
+ devUsersIdentitiesLink: (data: DevUsersIdentitiesLinkRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersIdentitiesLinkResponse, any, {}>>;
24608
25197
  /**
24609
25198
  * @description Unlinks an external/secondary identity from the Dev user.
24610
25199
  *
@@ -24614,7 +25203,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24614
25203
  * @request POST:/dev-users.identities.unlink
24615
25204
  * @secure
24616
25205
  */
24617
- devUsersIdentitiesUnlink: (data: DevUsersIdentitiesUnlinkRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersIdentitiesUnlinkResponse, any>>;
25206
+ devUsersIdentitiesUnlink: (data: DevUsersIdentitiesUnlinkRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersIdentitiesUnlinkResponse, any, {}>>;
24618
25207
  /**
24619
25208
  * @description Lists users within your organization.
24620
25209
  *
@@ -24661,7 +25250,12 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24661
25250
  sort_by?: string[];
24662
25251
  /** Filters Dev users based on state. */
24663
25252
  state?: UserState[];
24664
- }, params?: RequestParams) => Promise<AxiosResponse<DevUsersListResponse, any>>;
25253
+ /**
25254
+ * Filters for Dev users in the specified time zone in IANA format
25255
+ * (e.g., 'America/Los_Angeles').
25256
+ */
25257
+ timezone?: string[];
25258
+ }, params?: RequestParams) => Promise<AxiosResponse<DevUsersListResponse, any, {}>>;
24665
25259
  /**
24666
25260
  * @description Lists users within your organization.
24667
25261
  *
@@ -24671,7 +25265,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24671
25265
  * @request POST:/dev-users.list
24672
25266
  * @secure
24673
25267
  */
24674
- devUsersListPost: (data: DevUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersListResponse, any>>;
25268
+ devUsersListPost: (data: DevUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersListResponse, any, {}>>;
24675
25269
  /**
24676
25270
  * @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
25271
  *
@@ -24681,7 +25275,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24681
25275
  * @request POST:/dev-users.merge
24682
25276
  * @secure
24683
25277
  */
24684
- devUsersMerge: (data: DevUsersMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
25278
+ devUsersMerge: (data: DevUsersMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
24685
25279
  /**
24686
25280
  * @description Gets the authenticated user's information.
24687
25281
  *
@@ -24691,7 +25285,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24691
25285
  * @request GET:/dev-users.self
24692
25286
  * @secure
24693
25287
  */
24694
- devUsersSelf: (params?: RequestParams) => Promise<AxiosResponse<DevUsersSelfResponse, any>>;
25288
+ devUsersSelf: (params?: RequestParams) => Promise<AxiosResponse<DevUsersSelfResponse, any, {}>>;
24695
25289
  /**
24696
25290
  * @description Gets the authenticated user's information.
24697
25291
  *
@@ -24701,7 +25295,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24701
25295
  * @request POST:/dev-users.self
24702
25296
  * @secure
24703
25297
  */
24704
- devUsersSelfPost: (data: DevUsersSelfRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersSelfResponse, any>>;
25298
+ devUsersSelfPost: (data: DevUsersSelfRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersSelfResponse, any, {}>>;
24705
25299
  /**
24706
25300
  * @description Updates the authenticated user.
24707
25301
  *
@@ -24711,7 +25305,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24711
25305
  * @request POST:/dev-users.self.update
24712
25306
  * @secure
24713
25307
  */
24714
- devUsersSelfUpdate: (data: DevUsersSelfUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersUpdateResponse, any>>;
25308
+ devUsersSelfUpdate: (data: DevUsersSelfUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersUpdateResponse, any, {}>>;
24715
25309
  /**
24716
25310
  * @description Updates the user corresponding to the input Id.
24717
25311
  *
@@ -24721,7 +25315,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24721
25315
  * @request POST:/dev-users.update
24722
25316
  * @secure
24723
25317
  */
24724
- devUsersUpdate: (data: DevUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersUpdateResponse, any>>;
25318
+ devUsersUpdate: (data: DevUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersUpdateResponse, any, {}>>;
24725
25319
  /**
24726
25320
  * @description Get count of directories matching given filter.
24727
25321
  *
@@ -24742,7 +25336,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24742
25336
  * @example ["DEVU-12345"]
24743
25337
  */
24744
25338
  modified_by?: string[];
24745
- }, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCountResponse, any>>;
25339
+ }, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCountResponse, any, {}>>;
24746
25340
  /**
24747
25341
  * @description Get count of directories matching given filter.
24748
25342
  *
@@ -24752,7 +25346,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24752
25346
  * @request POST:/directories.count
24753
25347
  * @secure
24754
25348
  */
24755
- directoriesCountPost: (data: DirectoriesCountRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCountResponse, any>>;
25349
+ directoriesCountPost: (data: DirectoriesCountRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCountResponse, any, {}>>;
24756
25350
  /**
24757
25351
  * @description Creates a directory for the specified inputs.
24758
25352
  *
@@ -24762,7 +25356,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24762
25356
  * @request POST:/directories.create
24763
25357
  * @secure
24764
25358
  */
24765
- directoriesCreate: (data: DirectoriesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCreateResponse, any>>;
25359
+ directoriesCreate: (data: DirectoriesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCreateResponse, any, {}>>;
24766
25360
  /**
24767
25361
  * @description Delete the specified directory.
24768
25362
  *
@@ -24772,7 +25366,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24772
25366
  * @request POST:/directories.delete
24773
25367
  * @secure
24774
25368
  */
24775
- directoriesDelete: (data: DirectoriesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
25369
+ directoriesDelete: (data: DirectoriesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
24776
25370
  /**
24777
25371
  * @description Gets the specified directory.
24778
25372
  *
@@ -24782,13 +25376,13 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24782
25376
  * @request GET:/directories.get
24783
25377
  * @secure
24784
25378
  */
24785
- directoriesGet: (query: {
25379
+ directoriesGet: (query?: {
24786
25380
  /**
24787
25381
  * The ID of the requested directory.
24788
25382
  * @format id
24789
25383
  */
24790
- id: string;
24791
- }, params?: RequestParams) => Promise<AxiosResponse<DirectoriesGetResponse, any>>;
25384
+ id?: string;
25385
+ }, params?: RequestParams) => Promise<AxiosResponse<DirectoriesGetResponse, any, {}>>;
24792
25386
  /**
24793
25387
  * @description Gets the specified directory.
24794
25388
  *
@@ -24798,7 +25392,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24798
25392
  * @request POST:/directories.get
24799
25393
  * @secure
24800
25394
  */
24801
- directoriesGetPost: (data: DirectoriesGetRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesGetResponse, any>>;
25395
+ directoriesGetPost: (data: DirectoriesGetRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesGetResponse, any, {}>>;
24802
25396
  /**
24803
25397
  * @description Lists directories matching the request.
24804
25398
  *
@@ -24835,7 +25429,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24835
25429
  * @example ["DEVU-12345"]
24836
25430
  */
24837
25431
  modified_by?: string[];
24838
- }, params?: RequestParams) => Promise<AxiosResponse<DirectoriesListResponse, any>>;
25432
+ }, params?: RequestParams) => Promise<AxiosResponse<DirectoriesListResponse, any, {}>>;
24839
25433
  /**
24840
25434
  * @description Lists directories matching the request.
24841
25435
  *
@@ -24845,7 +25439,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24845
25439
  * @request POST:/directories.list
24846
25440
  * @secure
24847
25441
  */
24848
- directoriesListPost: (data: DirectoriesListRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesListResponse, any>>;
25442
+ directoriesListPost: (data: DirectoriesListRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesListResponse, any, {}>>;
24849
25443
  /**
24850
25444
  * @description Updates the specified directory.
24851
25445
  *
@@ -24855,7 +25449,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24855
25449
  * @request POST:/directories.update
24856
25450
  * @secure
24857
25451
  */
24858
- directoriesUpdate: (data: DirectoriesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesUpdateResponse, any>>;
25452
+ directoriesUpdate: (data: DirectoriesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesUpdateResponse, any, {}>>;
24859
25453
  /**
24860
25454
  * @description Counts the engagement records.
24861
25455
  *
@@ -24880,7 +25474,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24880
25474
  parent?: string[];
24881
25475
  /** Filters for engagement of the provided types. */
24882
25476
  type?: EngagementType[];
24883
- }, params?: RequestParams) => Promise<AxiosResponse<EngagementsCountResponse, any>>;
25477
+ }, params?: RequestParams) => Promise<AxiosResponse<EngagementsCountResponse, any, {}>>;
24884
25478
  /**
24885
25479
  * @description Counts the engagement records.
24886
25480
  *
@@ -24890,7 +25484,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24890
25484
  * @request POST:/engagements.count
24891
25485
  * @secure
24892
25486
  */
24893
- engagementsCountPost: (data: EngagementsCountRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsCountResponse, any>>;
25487
+ engagementsCountPost: (data: EngagementsCountRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsCountResponse, any, {}>>;
24894
25488
  /**
24895
25489
  * @description Creates a new engagement record.
24896
25490
  *
@@ -24900,7 +25494,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24900
25494
  * @request POST:/engagements.create
24901
25495
  * @secure
24902
25496
  */
24903
- engagementsCreate: (data: EngagementsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsCreateResponse, any>>;
25497
+ engagementsCreate: (data: EngagementsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsCreateResponse, any, {}>>;
24904
25498
  /**
24905
25499
  * @description Deletes the engagement record.
24906
25500
  *
@@ -24910,7 +25504,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24910
25504
  * @request POST:/engagements.delete
24911
25505
  * @secure
24912
25506
  */
24913
- engagementsDelete: (data: EngagementsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
25507
+ engagementsDelete: (data: EngagementsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
24914
25508
  /**
24915
25509
  * @description Gets the engagement record.
24916
25510
  *
@@ -24926,7 +25520,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24926
25520
  * @format id
24927
25521
  */
24928
25522
  id: string;
24929
- }, params?: RequestParams) => Promise<AxiosResponse<EngagementsGetResponse, any>>;
25523
+ }, params?: RequestParams) => Promise<AxiosResponse<EngagementsGetResponse, any, {}>>;
24930
25524
  /**
24931
25525
  * @description Gets the engagement record.
24932
25526
  *
@@ -24936,7 +25530,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24936
25530
  * @request POST:/engagements.get
24937
25531
  * @secure
24938
25532
  */
24939
- engagementsGetPost: (data: EngagementsGetRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsGetResponse, any>>;
25533
+ engagementsGetPost: (data: EngagementsGetRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsGetResponse, any, {}>>;
24940
25534
  /**
24941
25535
  * @description Lists the engagement records.
24942
25536
  *
@@ -24979,7 +25573,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24979
25573
  sort_by?: string[];
24980
25574
  /** Filters for engagement of the provided types. */
24981
25575
  type?: EngagementType[];
24982
- }, params?: RequestParams) => Promise<AxiosResponse<EngagementsListResponse, any>>;
25576
+ }, params?: RequestParams) => Promise<AxiosResponse<EngagementsListResponse, any, {}>>;
24983
25577
  /**
24984
25578
  * @description Lists the engagement records.
24985
25579
  *
@@ -24989,7 +25583,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24989
25583
  * @request POST:/engagements.list
24990
25584
  * @secure
24991
25585
  */
24992
- engagementsListPost: (data: EngagementsListRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsListResponse, any>>;
25586
+ engagementsListPost: (data: EngagementsListRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsListResponse, any, {}>>;
24993
25587
  /**
24994
25588
  * @description Updates the engagement record.
24995
25589
  *
@@ -24999,7 +25593,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
24999
25593
  * @request POST:/engagements.update
25000
25594
  * @secure
25001
25595
  */
25002
- engagementsUpdate: (data: EngagementsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsUpdateResponse, any>>;
25596
+ engagementsUpdate: (data: EngagementsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsUpdateResponse, any, {}>>;
25003
25597
  /**
25004
25598
  * @description Gets an event source.
25005
25599
  *
@@ -25015,7 +25609,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25015
25609
  * @format id
25016
25610
  */
25017
25611
  id: string;
25018
- }, params?: RequestParams) => Promise<AxiosResponse<EventSourceGetResponse, any>>;
25612
+ }, params?: RequestParams) => Promise<AxiosResponse<EventSourceGetResponse, any, {}>>;
25019
25613
  /**
25020
25614
  * @description Gets an event source.
25021
25615
  *
@@ -25025,7 +25619,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25025
25619
  * @request POST:/event-sources.get
25026
25620
  * @secure
25027
25621
  */
25028
- eventSourcesGetPost: (data: EventSourceGetRequest, params?: RequestParams) => Promise<AxiosResponse<EventSourceGetResponse, any>>;
25622
+ eventSourcesGetPost: (data: EventSourceGetRequest, params?: RequestParams) => Promise<AxiosResponse<EventSourceGetResponse, any, {}>>;
25029
25623
  /**
25030
25624
  * @description Schedules an event to be published to the specified event source.
25031
25625
  *
@@ -25035,7 +25629,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25035
25629
  * @request POST:/event-sources.schedule
25036
25630
  * @secure
25037
25631
  */
25038
- eventSourcesScheduleEvent: (data: EventSourcesScheduleEventRequest, params?: RequestParams) => Promise<AxiosResponse<EventSourcesScheduleEventResponse, any>>;
25632
+ eventSourcesScheduleEvent: (data: EventSourcesScheduleEventRequest, params?: RequestParams) => Promise<AxiosResponse<EventSourcesScheduleEventResponse, any, {}>>;
25039
25633
  /**
25040
25634
  * @description Deletes an event scheduled for the specified event source.
25041
25635
  *
@@ -25045,7 +25639,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25045
25639
  * @request POST:/event-sources.unschedule
25046
25640
  * @secure
25047
25641
  */
25048
- eventSourcesDeleteScheduledEvent: (data: EventSourcesDeleteScheduledEventRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
25642
+ eventSourcesDeleteScheduledEvent: (data: EventSourcesDeleteScheduledEventRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
25049
25643
  /**
25050
25644
  * @description Creates a new group. A group is a collection of users.
25051
25645
  *
@@ -25055,7 +25649,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25055
25649
  * @request POST:/groups.create
25056
25650
  * @secure
25057
25651
  */
25058
- groupsCreate: (data: GroupsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsCreateResponse, any>>;
25652
+ groupsCreate: (data: GroupsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsCreateResponse, any, {}>>;
25059
25653
  /**
25060
25654
  * @description Gets the requested group.
25061
25655
  *
@@ -25071,7 +25665,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25071
25665
  * @format id
25072
25666
  */
25073
25667
  id: string;
25074
- }, params?: RequestParams) => Promise<AxiosResponse<GroupsGetResponse, any>>;
25668
+ }, params?: RequestParams) => Promise<AxiosResponse<GroupsGetResponse, any, {}>>;
25075
25669
  /**
25076
25670
  * @description Gets the requested group.
25077
25671
  *
@@ -25081,7 +25675,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25081
25675
  * @request POST:/groups.get
25082
25676
  * @secure
25083
25677
  */
25084
- groupsGetPost: (data: GroupsGetRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsGetResponse, any>>;
25678
+ groupsGetPost: (data: GroupsGetRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsGetResponse, any, {}>>;
25085
25679
  /**
25086
25680
  * @description Lists the available groups.
25087
25681
  *
@@ -25138,7 +25732,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25138
25732
  'sync_metadata.last_sync_out.sync_unit'?: string[];
25139
25733
  /** Filters for issues synced from this specific origin system. */
25140
25734
  'sync_metadata.origin_system'?: string[];
25141
- }, params?: RequestParams) => Promise<AxiosResponse<GroupsListResponse, any>>;
25735
+ }, params?: RequestParams) => Promise<AxiosResponse<GroupsListResponse, any, {}>>;
25142
25736
  /**
25143
25737
  * @description Lists the available groups.
25144
25738
  *
@@ -25148,7 +25742,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25148
25742
  * @request POST:/groups.list
25149
25743
  * @secure
25150
25744
  */
25151
- groupsListPost: (data: GroupsListRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsListResponse, any>>;
25745
+ groupsListPost: (data: GroupsListRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsListResponse, any, {}>>;
25152
25746
  /**
25153
25747
  * @description Adds a member to a group.
25154
25748
  *
@@ -25158,7 +25752,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25158
25752
  * @request POST:/groups.members.add
25159
25753
  * @secure
25160
25754
  */
25161
- groupMembersAdd: (data: GroupMembersAddRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
25755
+ groupMembersAdd: (data: GroupMembersAddRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
25162
25756
  /**
25163
25757
  * @description Lists the members in a group.
25164
25758
  *
@@ -25191,7 +25785,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25191
25785
  * used.
25192
25786
  */
25193
25787
  mode?: ListMode;
25194
- }, params?: RequestParams) => Promise<AxiosResponse<GroupMembersListResponse, any>>;
25788
+ }, params?: RequestParams) => Promise<AxiosResponse<GroupMembersListResponse, any, {}>>;
25195
25789
  /**
25196
25790
  * @description Lists the members in a group.
25197
25791
  *
@@ -25201,7 +25795,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25201
25795
  * @request POST:/groups.members.list
25202
25796
  * @secure
25203
25797
  */
25204
- groupMembersListPost: (data: GroupMembersListRequest, params?: RequestParams) => Promise<AxiosResponse<GroupMembersListResponse, any>>;
25798
+ groupMembersListPost: (data: GroupMembersListRequest, params?: RequestParams) => Promise<AxiosResponse<GroupMembersListResponse, any, {}>>;
25205
25799
  /**
25206
25800
  * @description Removes a member from a group.
25207
25801
  *
@@ -25211,7 +25805,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25211
25805
  * @request POST:/groups.members.remove
25212
25806
  * @secure
25213
25807
  */
25214
- groupMembersRemove: (data: GroupMembersRemoveRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
25808
+ groupMembersRemove: (data: GroupMembersRemoveRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
25215
25809
  /**
25216
25810
  * @description Updates the requested group.
25217
25811
  *
@@ -25221,7 +25815,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25221
25815
  * @request POST:/groups.update
25222
25816
  * @secure
25223
25817
  */
25224
- groupsUpdate: (data: GroupsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsUpdateResponse, any>>;
25818
+ groupsUpdate: (data: GroupsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsUpdateResponse, any, {}>>;
25225
25819
  /**
25226
25820
  * @description Creates an incident.
25227
25821
  *
@@ -25231,7 +25825,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25231
25825
  * @request POST:/incidents.create
25232
25826
  * @secure
25233
25827
  */
25234
- incidentsCreate: (data: IncidentsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsCreateResponse, any>>;
25828
+ incidentsCreate: (data: IncidentsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsCreateResponse, any, {}>>;
25235
25829
  /**
25236
25830
  * @description Deletes an incident.
25237
25831
  *
@@ -25241,7 +25835,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25241
25835
  * @request POST:/incidents.delete
25242
25836
  * @secure
25243
25837
  */
25244
- incidentsDelete: (data: IncidentsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
25838
+ incidentsDelete: (data: IncidentsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
25245
25839
  /**
25246
25840
  * @description Gets an incident.
25247
25841
  *
@@ -25257,7 +25851,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25257
25851
  * @format id
25258
25852
  */
25259
25853
  id: string;
25260
- }, params?: RequestParams) => Promise<AxiosResponse<IncidentsGetResponse, any>>;
25854
+ }, params?: RequestParams) => Promise<AxiosResponse<IncidentsGetResponse, any, {}>>;
25261
25855
  /**
25262
25856
  * @description Gets an incident.
25263
25857
  *
@@ -25267,7 +25861,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25267
25861
  * @request POST:/incidents.get
25268
25862
  * @secure
25269
25863
  */
25270
- incidentsGetPost: (data: IncidentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsGetResponse, any>>;
25864
+ incidentsGetPost: (data: IncidentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsGetResponse, any, {}>>;
25271
25865
  /**
25272
25866
  * @description Lists collections of incidents by groups.
25273
25867
  *
@@ -25298,6 +25892,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25298
25892
  cursor?: string;
25299
25893
  /** Filters for custom fields. */
25300
25894
  custom_fields?: object;
25895
+ /**
25896
+ * Filters for incidents with any of the provided impacted customers.
25897
+ * @example ["ACC-12345"]
25898
+ */
25899
+ impacted_customers?: string[];
25301
25900
  /**
25302
25901
  * The maximum number of groups to return. If not set, then the default
25303
25902
  * is '10'.
@@ -25367,7 +25966,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25367
25966
  'sync_metadata.origin_system'?: string[];
25368
25967
  /** Filters for incidents by the provided titles. */
25369
25968
  title?: string[];
25370
- }, params?: RequestParams) => Promise<AxiosResponse<IncidentsGroupResponse, any>>;
25969
+ }, params?: RequestParams) => Promise<AxiosResponse<IncidentsGroupResponse, any, {}>>;
25371
25970
  /**
25372
25971
  * @description Lists collections of incidents by groups.
25373
25972
  *
@@ -25377,7 +25976,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25377
25976
  * @request POST:/incidents.group
25378
25977
  * @secure
25379
25978
  */
25380
- incidentsGroupPost: (data: IncidentsGroupRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsGroupResponse, any>>;
25979
+ incidentsGroupPost: (data: IncidentsGroupRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsGroupResponse, any, {}>>;
25381
25980
  /**
25382
25981
  * @description Lists incidents.
25383
25982
  *
@@ -25403,6 +26002,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25403
26002
  cursor?: string;
25404
26003
  /** Filters for custom fields. */
25405
26004
  custom_fields?: object;
26005
+ /**
26006
+ * Filters for incidents with any of the provided impacted customers.
26007
+ * @example ["ACC-12345"]
26008
+ */
26009
+ impacted_customers?: string[];
25406
26010
  /**
25407
26011
  * The maximum number of items.
25408
26012
  * @format int32
@@ -25465,7 +26069,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25465
26069
  'sync_metadata.origin_system'?: string[];
25466
26070
  /** Filters for incidents by the provided titles. */
25467
26071
  title?: string[];
25468
- }, params?: RequestParams) => Promise<AxiosResponse<IncidentsListResponse, any>>;
26072
+ }, params?: RequestParams) => Promise<AxiosResponse<IncidentsListResponse, any, {}>>;
25469
26073
  /**
25470
26074
  * @description Lists incidents.
25471
26075
  *
@@ -25475,7 +26079,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25475
26079
  * @request POST:/incidents.list
25476
26080
  * @secure
25477
26081
  */
25478
- incidentsListPost: (data: IncidentsListRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsListResponse, any>>;
26082
+ incidentsListPost: (data: IncidentsListRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsListResponse, any, {}>>;
25479
26083
  /**
25480
26084
  * @description Updates an incident.
25481
26085
  *
@@ -25485,7 +26089,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25485
26089
  * @request POST:/incidents.update
25486
26090
  * @secure
25487
26091
  */
25488
- incidentsUpdate: (data: IncidentsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsUpdateResponse, any>>;
26092
+ incidentsUpdate: (data: IncidentsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsUpdateResponse, any, {}>>;
25489
26093
  /**
25490
26094
  * @description OAuth2 authorization callback.
25491
26095
  *
@@ -25505,7 +26109,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25505
26109
  * @format text
25506
26110
  */
25507
26111
  state: string;
25508
- }, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
26112
+ }, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
25509
26113
  /**
25510
26114
  * @description OAuth2 authorization callback.
25511
26115
  *
@@ -25515,7 +26119,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25515
26119
  * @request POST:/keyrings.authorize
25516
26120
  * @secure
25517
26121
  */
25518
- keyringsCreateCallbackPost: (data: KeyringsCreateCallbackRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
26122
+ keyringsCreateCallbackPost: (data: KeyringsCreateCallbackRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
25519
26123
  /**
25520
26124
  * @description Creates a custom link type.
25521
26125
  *
@@ -25525,7 +26129,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25525
26129
  * @request POST:/link-types.custom.create
25526
26130
  * @secure
25527
26131
  */
25528
- customLinkTypeCreate: (data: CustomLinkTypeCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeCreateResponse, any>>;
26132
+ customLinkTypeCreate: (data: CustomLinkTypeCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeCreateResponse, any, {}>>;
25529
26133
  /**
25530
26134
  * @description Gets a custom link type.
25531
26135
  *
@@ -25541,7 +26145,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25541
26145
  * @format id
25542
26146
  */
25543
26147
  id: string;
25544
- }, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeGetResponse, any>>;
26148
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeGetResponse, any, {}>>;
25545
26149
  /**
25546
26150
  * @description Gets a custom link type.
25547
26151
  *
@@ -25551,7 +26155,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25551
26155
  * @request POST:/link-types.custom.get
25552
26156
  * @secure
25553
26157
  */
25554
- customLinkTypeGetPost: (data: CustomLinkTypeGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeGetResponse, any>>;
26158
+ customLinkTypeGetPost: (data: CustomLinkTypeGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeGetResponse, any, {}>>;
25555
26159
  /**
25556
26160
  * @description Lists custom link types.
25557
26161
  *
@@ -25657,7 +26261,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25657
26261
  * @format text
25658
26262
  */
25659
26263
  'target_types_v2.subtype'?: string;
25660
- }, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeListResponse, any>>;
26264
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeListResponse, any, {}>>;
25661
26265
  /**
25662
26266
  * @description Lists custom link types.
25663
26267
  *
@@ -25667,7 +26271,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25667
26271
  * @request POST:/link-types.custom.list
25668
26272
  * @secure
25669
26273
  */
25670
- customLinkTypeListPost: (data: CustomLinkTypeListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeListResponse, any>>;
26274
+ customLinkTypeListPost: (data: CustomLinkTypeListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeListResponse, any, {}>>;
25671
26275
  /**
25672
26276
  * @description Updates a custom link type.
25673
26277
  *
@@ -25677,7 +26281,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25677
26281
  * @request POST:/link-types.custom.update
25678
26282
  * @secure
25679
26283
  */
25680
- customLinkTypeUpdate: (data: CustomLinkTypeUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeUpdateResponse, any>>;
26284
+ customLinkTypeUpdate: (data: CustomLinkTypeUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeUpdateResponse, any, {}>>;
25681
26285
  /**
25682
26286
  * @description Creates a link between two objects to indicate a relationship.
25683
26287
  *
@@ -25687,7 +26291,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25687
26291
  * @request POST:/links.create
25688
26292
  * @secure
25689
26293
  */
25690
- linksCreate: (data: LinksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<LinksCreateResponse, any>>;
26294
+ linksCreate: (data: LinksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<LinksCreateResponse, any, {}>>;
25691
26295
  /**
25692
26296
  * @description Deletes a link.
25693
26297
  *
@@ -25697,7 +26301,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25697
26301
  * @request POST:/links.delete
25698
26302
  * @secure
25699
26303
  */
25700
- linksDelete: (data: LinksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
26304
+ linksDelete: (data: LinksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
25701
26305
  /**
25702
26306
  * @description Gets the requested link's information.
25703
26307
  *
@@ -25713,7 +26317,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25713
26317
  * @format id
25714
26318
  */
25715
26319
  id: string;
25716
- }, params?: RequestParams) => Promise<AxiosResponse<LinksGetResponse, any>>;
26320
+ }, params?: RequestParams) => Promise<AxiosResponse<LinksGetResponse, any, {}>>;
25717
26321
  /**
25718
26322
  * @description Gets the requested link's information.
25719
26323
  *
@@ -25723,7 +26327,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25723
26327
  * @request POST:/links.get
25724
26328
  * @secure
25725
26329
  */
25726
- linksGetPost: (data: LinksGetRequest, params?: RequestParams) => Promise<AxiosResponse<LinksGetResponse, any>>;
26330
+ linksGetPost: (data: LinksGetRequest, params?: RequestParams) => Promise<AxiosResponse<LinksGetResponse, any, {}>>;
25727
26331
  /**
25728
26332
  * @description Lists the available links.
25729
26333
  *
@@ -25777,7 +26381,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25777
26381
  * @deprecated
25778
26382
  */
25779
26383
  types?: LinkType[];
25780
- }, params?: RequestParams) => Promise<AxiosResponse<LinksListResponse, any>>;
26384
+ }, params?: RequestParams) => Promise<AxiosResponse<LinksListResponse, any, {}>>;
25781
26385
  /**
25782
26386
  * @description Lists the available links.
25783
26387
  *
@@ -25787,7 +26391,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25787
26391
  * @request POST:/links.list
25788
26392
  * @secure
25789
26393
  */
25790
- linksListPost: (data: LinksListRequest, params?: RequestParams) => Promise<AxiosResponse<LinksListResponse, any>>;
26394
+ linksListPost: (data: LinksListRequest, params?: RequestParams) => Promise<AxiosResponse<LinksListResponse, any, {}>>;
25791
26395
  /**
25792
26396
  * @description Replaces a link.
25793
26397
  *
@@ -25797,7 +26401,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25797
26401
  * @request POST:/links.replace
25798
26402
  * @secure
25799
26403
  */
25800
- linksReplace: (data: LinksReplaceRequest, params?: RequestParams) => Promise<AxiosResponse<LinksReplaceResponse, any>>;
26404
+ linksReplace: (data: LinksReplaceRequest, params?: RequestParams) => Promise<AxiosResponse<LinksReplaceResponse, any, {}>>;
25801
26405
  /**
25802
26406
  * @description Counts the meeting records.
25803
26407
  *
@@ -25865,7 +26469,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25865
26469
  'sync_metadata.origin_system'?: string[];
25866
26470
  /** Filters for meeting by tags. */
25867
26471
  tags?: string[];
25868
- }, params?: RequestParams) => Promise<AxiosResponse<MeetingsCountResponse, any>>;
26472
+ }, params?: RequestParams) => Promise<AxiosResponse<MeetingsCountResponse, any, {}>>;
25869
26473
  /**
25870
26474
  * @description Counts the meeting records.
25871
26475
  *
@@ -25875,7 +26479,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25875
26479
  * @request POST:/meetings.count
25876
26480
  * @secure
25877
26481
  */
25878
- meetingsCountPost: (data: MeetingsCountRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsCountResponse, any>>;
26482
+ meetingsCountPost: (data: MeetingsCountRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsCountResponse, any, {}>>;
25879
26483
  /**
25880
26484
  * @description Creates a new meeting record.
25881
26485
  *
@@ -25885,7 +26489,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25885
26489
  * @request POST:/meetings.create
25886
26490
  * @secure
25887
26491
  */
25888
- meetingsCreate: (data: MeetingsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsCreateResponse, any>>;
26492
+ meetingsCreate: (data: MeetingsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsCreateResponse, any, {}>>;
25889
26493
  /**
25890
26494
  * @description Deletes the meeting record.
25891
26495
  *
@@ -25895,7 +26499,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25895
26499
  * @request POST:/meetings.delete
25896
26500
  * @secure
25897
26501
  */
25898
- meetingsDelete: (data: MeetingsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
26502
+ meetingsDelete: (data: MeetingsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
25899
26503
  /**
25900
26504
  * @description Gets the meeting record.
25901
26505
  *
@@ -25911,7 +26515,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25911
26515
  * @format id
25912
26516
  */
25913
26517
  id: string;
25914
- }, params?: RequestParams) => Promise<AxiosResponse<MeetingsGetResponse, any>>;
26518
+ }, params?: RequestParams) => Promise<AxiosResponse<MeetingsGetResponse, any, {}>>;
25915
26519
  /**
25916
26520
  * @description Gets the meeting record.
25917
26521
  *
@@ -25921,7 +26525,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
25921
26525
  * @request POST:/meetings.get
25922
26526
  * @secure
25923
26527
  */
25924
- meetingsGetPost: (data: MeetingsGetRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsGetResponse, any>>;
26528
+ meetingsGetPost: (data: MeetingsGetRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsGetResponse, any, {}>>;
25925
26529
  /**
25926
26530
  * @description Lists the meeting records.
25927
26531
  *
@@ -26007,7 +26611,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26007
26611
  'sync_metadata.origin_system'?: string[];
26008
26612
  /** Filters for meeting by tags. */
26009
26613
  tags?: string[];
26010
- }, params?: RequestParams) => Promise<AxiosResponse<MeetingsListResponse, any>>;
26614
+ }, params?: RequestParams) => Promise<AxiosResponse<MeetingsListResponse, any, {}>>;
26011
26615
  /**
26012
26616
  * @description Lists the meeting records.
26013
26617
  *
@@ -26017,7 +26621,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26017
26621
  * @request POST:/meetings.list
26018
26622
  * @secure
26019
26623
  */
26020
- meetingsListPost: (data: MeetingsListRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsListResponse, any>>;
26624
+ meetingsListPost: (data: MeetingsListRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsListResponse, any, {}>>;
26021
26625
  /**
26022
26626
  * @description Updates the meeting record.
26023
26627
  *
@@ -26027,7 +26631,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26027
26631
  * @request POST:/meetings.update
26028
26632
  * @secure
26029
26633
  */
26030
- meetingsUpdate: (data: MeetingsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsUpdateResponse, any>>;
26634
+ meetingsUpdate: (data: MeetingsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsUpdateResponse, any, {}>>;
26031
26635
  /**
26032
26636
  * @description Executes the metric action on the given object.
26033
26637
  *
@@ -26037,7 +26641,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26037
26641
  * @request POST:/metric-action.execute
26038
26642
  * @secure
26039
26643
  */
26040
- metricActionExecute: (data: MetricActionExecuteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
26644
+ metricActionExecute: (data: MetricActionExecuteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
26041
26645
  /**
26042
26646
  * @description Creates a custom metric definition
26043
26647
  *
@@ -26047,7 +26651,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26047
26651
  * @request POST:/metric-definitions.create
26048
26652
  * @secure
26049
26653
  */
26050
- metricDefinitionsCreate: (data: MetricDefinitionsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsCreateResponse, any>>;
26654
+ metricDefinitionsCreate: (data: MetricDefinitionsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsCreateResponse, any, {}>>;
26051
26655
  /**
26052
26656
  * @description Deletes a custom metric definition
26053
26657
  *
@@ -26057,7 +26661,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26057
26661
  * @request POST:/metric-definitions.delete
26058
26662
  * @secure
26059
26663
  */
26060
- metricDefinitionsDelete: (data: MetricDefinitionsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
26664
+ metricDefinitionsDelete: (data: MetricDefinitionsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
26061
26665
  /**
26062
26666
  * @description Gets a custom metric definition
26063
26667
  *
@@ -26080,7 +26684,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26080
26684
  * @maxLength 64
26081
26685
  */
26082
26686
  name?: string;
26083
- }, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsGetResponse, any>>;
26687
+ }, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsGetResponse, any, {}>>;
26084
26688
  /**
26085
26689
  * @description Gets a custom metric definition
26086
26690
  *
@@ -26090,7 +26694,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26090
26694
  * @request POST:/metric-definitions.get
26091
26695
  * @secure
26092
26696
  */
26093
- metricDefinitionsGetPost: (data: MetricDefinitionsGetRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsGetResponse, any>>;
26697
+ metricDefinitionsGetPost: (data: MetricDefinitionsGetRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsGetResponse, any, {}>>;
26094
26698
  /**
26095
26699
  * @description Lists metric definitions matching a filter.
26096
26700
  *
@@ -26130,7 +26734,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26130
26734
  status?: MetricDefinitionStatus[];
26131
26735
  /** The type of metric definitions sought. */
26132
26736
  type?: MetricDefinitionMetricType[];
26133
- }, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsListResponse, any>>;
26737
+ }, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsListResponse, any, {}>>;
26134
26738
  /**
26135
26739
  * @description Lists metric definitions matching a filter.
26136
26740
  *
@@ -26140,7 +26744,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26140
26744
  * @request POST:/metric-definitions.list
26141
26745
  * @secure
26142
26746
  */
26143
- metricDefinitionsListPost: (data: MetricDefinitionsListRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsListResponse, any>>;
26747
+ metricDefinitionsListPost: (data: MetricDefinitionsListRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsListResponse, any, {}>>;
26144
26748
  /**
26145
26749
  * @description Updates a custom metric definition
26146
26750
  *
@@ -26150,7 +26754,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26150
26754
  * @request POST:/metric-definitions.update
26151
26755
  * @secure
26152
26756
  */
26153
- metricDefinitionsUpdate: (data: MetricDefinitionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsUpdateResponse, any>>;
26757
+ metricDefinitionsUpdate: (data: MetricDefinitionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsUpdateResponse, any, {}>>;
26154
26758
  /**
26155
26759
  * @description Gets a metric tracker.
26156
26760
  *
@@ -26171,7 +26775,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26171
26775
  * @format id
26172
26776
  */
26173
26777
  object: string;
26174
- }, params?: RequestParams) => Promise<AxiosResponse<MetricTrackersGetResponse, any>>;
26778
+ }, params?: RequestParams) => Promise<AxiosResponse<MetricTrackersGetResponse, any, {}>>;
26175
26779
  /**
26176
26780
  * @description Gets a metric tracker.
26177
26781
  *
@@ -26181,7 +26785,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26181
26785
  * @request POST:/metric-trackers.get
26182
26786
  * @secure
26183
26787
  */
26184
- metricTrackersGetPost: (data: MetricTrackersGetRequest, params?: RequestParams) => Promise<AxiosResponse<MetricTrackersGetResponse, any>>;
26788
+ metricTrackersGetPost: (data: MetricTrackersGetRequest, params?: RequestParams) => Promise<AxiosResponse<MetricTrackersGetResponse, any, {}>>;
26185
26789
  /**
26186
26790
  * @description Ingest endpoint for DevRev metrics data from clients.
26187
26791
  *
@@ -26191,7 +26795,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26191
26795
  * @request POST:/metrics.devrev.ingest
26192
26796
  * @secure
26193
26797
  */
26194
- metricsDevrevIngest: (data: MetricsDataIngestRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
26798
+ metricsDevrevIngest: (data: MetricsDataIngestRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
26195
26799
  /**
26196
26800
  * @description Generate a notification.
26197
26801
  *
@@ -26201,7 +26805,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26201
26805
  * @request POST:/notifications.send
26202
26806
  * @secure
26203
26807
  */
26204
- notificationsSend: (data: NotificationsSendRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
26808
+ notificationsSend: (data: NotificationsSendRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
26205
26809
  /**
26206
26810
  * @description Creates an organization schedule fragment.
26207
26811
  *
@@ -26211,7 +26815,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26211
26815
  * @request POST:/org-schedule-fragments.create
26212
26816
  * @secure
26213
26817
  */
26214
- orgScheduleFragmentsCreate: (data: OrgScheduleFragmentsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsCreateResponse, any>>;
26818
+ orgScheduleFragmentsCreate: (data: OrgScheduleFragmentsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsCreateResponse, any, {}>>;
26215
26819
  /**
26216
26820
  * @description Gets an organization schedule fragment.
26217
26821
  *
@@ -26227,7 +26831,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26227
26831
  * @format id
26228
26832
  */
26229
26833
  id: string;
26230
- }, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsGetResponse, any>>;
26834
+ }, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsGetResponse, any, {}>>;
26231
26835
  /**
26232
26836
  * @description Gets an organization schedule fragment.
26233
26837
  *
@@ -26237,7 +26841,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26237
26841
  * @request POST:/org-schedule-fragments.get
26238
26842
  * @secure
26239
26843
  */
26240
- orgScheduleFragmentsGetPost: (data: OrgScheduleFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsGetResponse, any>>;
26844
+ orgScheduleFragmentsGetPost: (data: OrgScheduleFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsGetResponse, any, {}>>;
26241
26845
  /**
26242
26846
  * @description Changes stage of an organization schedule fragment.
26243
26847
  *
@@ -26247,7 +26851,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26247
26851
  * @request POST:/org-schedule-fragments.transition
26248
26852
  * @secure
26249
26853
  */
26250
- orgScheduleFragmentsTransition: (data: OrgScheduleFragmentsTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsTransitionResponse, any>>;
26854
+ orgScheduleFragmentsTransition: (data: OrgScheduleFragmentsTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsTransitionResponse, any, {}>>;
26251
26855
  /**
26252
26856
  * @description Creates an organization schedule with a default weekly organization schedule and a list of organization schedule fragments.
26253
26857
  *
@@ -26257,7 +26861,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26257
26861
  * @request POST:/org-schedules.create
26258
26862
  * @secure
26259
26863
  */
26260
- orgSchedulesCreate: (data: OrgSchedulesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesCreateResponse, any>>;
26864
+ orgSchedulesCreate: (data: OrgSchedulesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesCreateResponse, any, {}>>;
26261
26865
  /**
26262
26866
  * @description Evaluates an organization's schedule at specified instants.
26263
26867
  *
@@ -26279,7 +26883,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26279
26883
  * @example ["2023-01-01T12:00:00.000Z"]
26280
26884
  */
26281
26885
  instants: string[];
26282
- }, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesEvaluateResponse, any>>;
26886
+ }, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesEvaluateResponse, any, {}>>;
26283
26887
  /**
26284
26888
  * @description Evaluates an organization's schedule at specified instants.
26285
26889
  *
@@ -26289,7 +26893,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26289
26893
  * @request POST:/org-schedules.evaluate
26290
26894
  * @secure
26291
26895
  */
26292
- orgSchedulesEvaluatePost: (data: OrgSchedulesEvaluateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesEvaluateResponse, any>>;
26896
+ orgSchedulesEvaluatePost: (data: OrgSchedulesEvaluateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesEvaluateResponse, any, {}>>;
26293
26897
  /**
26294
26898
  * @description Gets an organization schedule.
26295
26899
  *
@@ -26305,7 +26909,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26305
26909
  * @format id
26306
26910
  */
26307
26911
  id: string;
26308
- }, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesGetResponse, any>>;
26912
+ }, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesGetResponse, any, {}>>;
26309
26913
  /**
26310
26914
  * @description Gets an organization schedule.
26311
26915
  *
@@ -26315,7 +26919,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26315
26919
  * @request POST:/org-schedules.get
26316
26920
  * @secure
26317
26921
  */
26318
- orgSchedulesGetPost: (data: OrgSchedulesGetRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesGetResponse, any>>;
26922
+ orgSchedulesGetPost: (data: OrgSchedulesGetRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesGetResponse, any, {}>>;
26319
26923
  /**
26320
26924
  * @description Gets list of organization schedules.
26321
26925
  *
@@ -26347,7 +26951,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26347
26951
  mode?: ListMode;
26348
26952
  /** The organization schedule statuses the filter matches. */
26349
26953
  status?: OrgScheduleStatus[];
26350
- }, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesListResponse, any>>;
26954
+ }, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesListResponse, any, {}>>;
26351
26955
  /**
26352
26956
  * @description Gets list of organization schedules.
26353
26957
  *
@@ -26357,7 +26961,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26357
26961
  * @request POST:/org-schedules.list
26358
26962
  * @secure
26359
26963
  */
26360
- orgSchedulesListPost: (data: OrgSchedulesListRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesListResponse, any>>;
26964
+ orgSchedulesListPost: (data: OrgSchedulesListRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesListResponse, any, {}>>;
26361
26965
  /**
26362
26966
  * @description Sets next organization schedule fragment which must begin the day the last existing fragment ends.
26363
26967
  *
@@ -26367,7 +26971,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26367
26971
  * @request POST:/org-schedules.set-future
26368
26972
  * @secure
26369
26973
  */
26370
- orgSchedulesSetFuture: (data: OrgSchedulesSetFutureRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesSetFutureResponse, any>>;
26974
+ orgSchedulesSetFuture: (data: OrgSchedulesSetFutureRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesSetFutureResponse, any, {}>>;
26371
26975
  /**
26372
26976
  * @description Publishes or archives an organization schedule.
26373
26977
  *
@@ -26377,7 +26981,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26377
26981
  * @request POST:/org-schedules.transition
26378
26982
  * @secure
26379
26983
  */
26380
- orgSchedulesTransition: (data: OrgSchedulesTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesTransitionResponse, any>>;
26984
+ orgSchedulesTransition: (data: OrgSchedulesTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesTransitionResponse, any, {}>>;
26381
26985
  /**
26382
26986
  * @description Updates an organization schedule.
26383
26987
  *
@@ -26387,7 +26991,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26387
26991
  * @request POST:/org-schedules.update
26388
26992
  * @secure
26389
26993
  */
26390
- orgSchedulesUpdate: (data: OrgSchedulesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesUpdateResponse, any>>;
26994
+ orgSchedulesUpdate: (data: OrgSchedulesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesUpdateResponse, any, {}>>;
26391
26995
  /**
26392
26996
  * @description Creates new [part](https://devrev.ai/docs/product/parts).
26393
26997
  *
@@ -26397,7 +27001,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26397
27001
  * @request POST:/parts.create
26398
27002
  * @secure
26399
27003
  */
26400
- partsCreate: (data: PartsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<PartsCreateResponse, any>>;
27004
+ partsCreate: (data: PartsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<PartsCreateResponse, any, {}>>;
26401
27005
  /**
26402
27006
  * @description Deletes a [part](https://devrev.ai/docs/product/parts).
26403
27007
  *
@@ -26407,7 +27011,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26407
27011
  * @request POST:/parts.delete
26408
27012
  * @secure
26409
27013
  */
26410
- partsDelete: (data: PartsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
27014
+ partsDelete: (data: PartsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
26411
27015
  /**
26412
27016
  * @description Gets a [part's](https://devrev.ai/docs/product/parts) information.
26413
27017
  *
@@ -26424,7 +27028,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26424
27028
  * @example "PROD-12345"
26425
27029
  */
26426
27030
  id: string;
26427
- }, params?: RequestParams) => Promise<AxiosResponse<PartsGetResponse, any>>;
27031
+ }, params?: RequestParams) => Promise<AxiosResponse<PartsGetResponse, any, {}>>;
26428
27032
  /**
26429
27033
  * @description Gets a [part's](https://devrev.ai/docs/product/parts) information.
26430
27034
  *
@@ -26434,7 +27038,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26434
27038
  * @request POST:/parts.get
26435
27039
  * @secure
26436
27040
  */
26437
- partsGetPost: (data: PartsGetRequest, params?: RequestParams) => Promise<AxiosResponse<PartsGetResponse, any>>;
27041
+ partsGetPost: (data: PartsGetRequest, params?: RequestParams) => Promise<AxiosResponse<PartsGetResponse, any, {}>>;
26438
27042
  /**
26439
27043
  * @description Lists a collection of [parts](https://devrev.ai/docs/product/parts).
26440
27044
  *
@@ -26574,7 +27178,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26574
27178
  tags?: string[];
26575
27179
  /** Filters for parts of the provided type(s). */
26576
27180
  type?: PartType[];
26577
- }, params?: RequestParams) => Promise<AxiosResponse<PartsListResponse, any>>;
27181
+ }, params?: RequestParams) => Promise<AxiosResponse<PartsListResponse, any, {}>>;
26578
27182
  /**
26579
27183
  * @description Lists a collection of [parts](https://devrev.ai/docs/product/parts).
26580
27184
  *
@@ -26584,7 +27188,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26584
27188
  * @request POST:/parts.list
26585
27189
  * @secure
26586
27190
  */
26587
- partsListPost: (data: PartsListRequest, params?: RequestParams) => Promise<AxiosResponse<PartsListResponse, any>>;
27191
+ partsListPost: (data: PartsListRequest, params?: RequestParams) => Promise<AxiosResponse<PartsListResponse, any, {}>>;
26588
27192
  /**
26589
27193
  * @description Updates a [part's](https://devrev.ai/docs/product/parts) information.
26590
27194
  *
@@ -26594,7 +27198,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26594
27198
  * @request POST:/parts.update
26595
27199
  * @secure
26596
27200
  */
26597
- partsUpdate: (data: PartsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<PartsUpdateResponse, any>>;
27201
+ partsUpdate: (data: PartsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<PartsUpdateResponse, any, {}>>;
26598
27202
  /**
26599
27203
  * @description Get the preferences object.
26600
27204
  *
@@ -26619,7 +27223,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26619
27223
  * @format text
26620
27224
  */
26621
27225
  language_code?: string;
26622
- }, params?: RequestParams) => Promise<AxiosResponse<PreferencesGetResponse, any>>;
27226
+ }, params?: RequestParams) => Promise<AxiosResponse<PreferencesGetResponse, any, {}>>;
26623
27227
  /**
26624
27228
  * @description Get the preferences object.
26625
27229
  *
@@ -26629,7 +27233,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26629
27233
  * @request POST:/preferences.get
26630
27234
  * @secure
26631
27235
  */
26632
- preferencesGetPost: (data: PreferencesGetRequest, params?: RequestParams) => Promise<AxiosResponse<PreferencesGetResponse, any>>;
27236
+ preferencesGetPost: (data: PreferencesGetRequest, params?: RequestParams) => Promise<AxiosResponse<PreferencesGetResponse, any, {}>>;
26633
27237
  /**
26634
27238
  * @description Updates the preference for a particular object.
26635
27239
  *
@@ -26639,7 +27243,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26639
27243
  * @request POST:/preferences.update
26640
27244
  * @secure
26641
27245
  */
26642
- preferencesUpdate: (data: PreferencesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<PreferencesUpdateResponse, any>>;
27246
+ preferencesUpdate: (data: PreferencesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<PreferencesUpdateResponse, any, {}>>;
26643
27247
  /**
26644
27248
  * @description Creates a question-answer.
26645
27249
  *
@@ -26649,7 +27253,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26649
27253
  * @request POST:/question-answers.create
26650
27254
  * @secure
26651
27255
  */
26652
- createQuestionAnswer: (data: QuestionAnswersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersCreateResponse, any>>;
27256
+ createQuestionAnswer: (data: QuestionAnswersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersCreateResponse, any, {}>>;
26653
27257
  /**
26654
27258
  * @description Deletes a question-answer.
26655
27259
  *
@@ -26659,7 +27263,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26659
27263
  * @request POST:/question-answers.delete
26660
27264
  * @secure
26661
27265
  */
26662
- deleteQuestionAnswer: (data: QuestionAnswersDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
27266
+ deleteQuestionAnswer: (data: QuestionAnswersDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
26663
27267
  /**
26664
27268
  * @description Gets a question-answer.
26665
27269
  *
@@ -26675,7 +27279,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26675
27279
  * @format id
26676
27280
  */
26677
27281
  id: string;
26678
- }, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersGetResponse, any>>;
27282
+ }, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersGetResponse, any, {}>>;
26679
27283
  /**
26680
27284
  * @description Gets a question-answer.
26681
27285
  *
@@ -26685,7 +27289,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26685
27289
  * @request POST:/question-answers.get
26686
27290
  * @secure
26687
27291
  */
26688
- getQuestionAnswerPost: (data: QuestionAnswersGetRequest, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersGetResponse, any>>;
27292
+ getQuestionAnswerPost: (data: QuestionAnswersGetRequest, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersGetResponse, any, {}>>;
26689
27293
  /**
26690
27294
  * @description Lists a collection of question-answers.
26691
27295
  *
@@ -26734,7 +27338,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26734
27338
  * @example ["DEVU-12345"]
26735
27339
  */
26736
27340
  owned_by?: string[];
26737
- }, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersListResponse, any>>;
27341
+ }, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersListResponse, any, {}>>;
26738
27342
  /**
26739
27343
  * @description Lists a collection of question-answers.
26740
27344
  *
@@ -26744,7 +27348,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26744
27348
  * @request POST:/question-answers.list
26745
27349
  * @secure
26746
27350
  */
26747
- listQuestionAnswersPost: (data: QuestionAnswersListRequest, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersListResponse, any>>;
27351
+ listQuestionAnswersPost: (data: QuestionAnswersListRequest, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersListResponse, any, {}>>;
26748
27352
  /**
26749
27353
  * @description Updates a question-answer.
26750
27354
  *
@@ -26754,7 +27358,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26754
27358
  * @request POST:/question-answers.update
26755
27359
  * @secure
26756
27360
  */
26757
- updateQuestionAnswer: (data: QuestionAnswersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersUpdateResponse, any>>;
27361
+ updateQuestionAnswer: (data: QuestionAnswersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersUpdateResponse, any, {}>>;
26758
27362
  /**
26759
27363
  * @description Lists the reactors for an object.
26760
27364
  *
@@ -26788,7 +27392,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26788
27392
  * @format int32
26789
27393
  */
26790
27394
  limit?: number;
26791
- }, params?: RequestParams) => Promise<AxiosResponse<ReactionsListResponse, any>>;
27395
+ }, params?: RequestParams) => Promise<AxiosResponse<ReactionsListResponse, any, {}>>;
26792
27396
  /**
26793
27397
  * @description Lists the reactors for an object.
26794
27398
  *
@@ -26798,7 +27402,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26798
27402
  * @request POST:/reactions.list
26799
27403
  * @secure
26800
27404
  */
26801
- reactionsListPost: (data: ReactionsListRequest, params?: RequestParams) => Promise<AxiosResponse<ReactionsListResponse, any>>;
27405
+ reactionsListPost: (data: ReactionsListRequest, params?: RequestParams) => Promise<AxiosResponse<ReactionsListResponse, any, {}>>;
26802
27406
  /**
26803
27407
  * @description Updates a reaction for an object.
26804
27408
  *
@@ -26808,7 +27412,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26808
27412
  * @request POST:/reactions.update
26809
27413
  * @secure
26810
27414
  */
26811
- reactionsUpdate: (data: ReactionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
27415
+ reactionsUpdate: (data: ReactionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
26812
27416
  /**
26813
27417
  * @description Returns a response for the chat conversation.
26814
27418
  *
@@ -26818,7 +27422,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26818
27422
  * @request POST:/recommendations.chat.completions
26819
27423
  * @secure
26820
27424
  */
26821
- chatCompletions: (data: ChatCompletionsRequest, params?: RequestParams) => Promise<AxiosResponse<ChatCompletionsResponse, any>>;
27425
+ chatCompletions: (data: ChatCompletionsRequest, params?: RequestParams) => Promise<AxiosResponse<ChatCompletionsResponse, any, {}>>;
26822
27426
  /**
26823
27427
  * @description Gets a reply for a user query.
26824
27428
  *
@@ -26828,7 +27432,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26828
27432
  * @request POST:/recommendations.get-reply
26829
27433
  * @secure
26830
27434
  */
26831
- getReply: (data: GetReplyRequest, params?: RequestParams) => Promise<AxiosResponse<GetReplyResponse, any>>;
27435
+ getReply: (data: GetReplyRequest, params?: RequestParams) => Promise<AxiosResponse<GetReplyResponse, any, {}>>;
26832
27436
  /**
26833
27437
  * @description Gets a record template object.
26834
27438
  *
@@ -26844,7 +27448,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26844
27448
  * @format id
26845
27449
  */
26846
27450
  id: string;
26847
- }, params?: RequestParams) => Promise<AxiosResponse<RecordTemplateGetResponse, any>>;
27451
+ }, params?: RequestParams) => Promise<AxiosResponse<RecordTemplateGetResponse, any, {}>>;
26848
27452
  /**
26849
27453
  * @description Gets a record template object.
26850
27454
  *
@@ -26854,7 +27458,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26854
27458
  * @request POST:/record-templates.get
26855
27459
  * @secure
26856
27460
  */
26857
- recordTemplateGetPost: (data: RecordTemplateGetRequest, params?: RequestParams) => Promise<AxiosResponse<RecordTemplateGetResponse, any>>;
27461
+ recordTemplateGetPost: (data: RecordTemplateGetRequest, params?: RequestParams) => Promise<AxiosResponse<RecordTemplateGetResponse, any, {}>>;
26858
27462
  /**
26859
27463
  * @description Creates a Rev organization in the authenticated user's Dev organization.
26860
27464
  *
@@ -26864,7 +27468,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26864
27468
  * @request POST:/rev-orgs.create
26865
27469
  * @secure
26866
27470
  */
26867
- revOrgsCreate: (data: RevOrgsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsCreateResponse, any>>;
27471
+ revOrgsCreate: (data: RevOrgsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsCreateResponse, any, {}>>;
26868
27472
  /**
26869
27473
  * @description Deletes the Rev organization.
26870
27474
  *
@@ -26874,7 +27478,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26874
27478
  * @request POST:/rev-orgs.delete
26875
27479
  * @secure
26876
27480
  */
26877
- revOrgsDelete: (data: RevOrgsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
27481
+ revOrgsDelete: (data: RevOrgsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
26878
27482
  /**
26879
27483
  * @description Retrieves the Rev organization's information.
26880
27484
  *
@@ -26898,7 +27502,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26898
27502
  * @example "REV-AbCdEfGh"
26899
27503
  */
26900
27504
  id?: string;
26901
- }, params?: RequestParams) => Promise<AxiosResponse<RevOrgsGetResponse, any>>;
27505
+ }, params?: RequestParams) => Promise<AxiosResponse<RevOrgsGetResponse, any, {}>>;
26902
27506
  /**
26903
27507
  * @description Retrieves the Rev organization's information.
26904
27508
  *
@@ -26908,7 +27512,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26908
27512
  * @request POST:/rev-orgs.get
26909
27513
  * @secure
26910
27514
  */
26911
- revOrgsGetPost: (data: RevOrgsGetRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsGetResponse, any>>;
27515
+ revOrgsGetPost: (data: RevOrgsGetRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsGetResponse, any, {}>>;
26912
27516
  /**
26913
27517
  * @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
27518
  *
@@ -26986,7 +27590,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26986
27590
  sort_by?: string[];
26987
27591
  /** List of tags to be filtered. */
26988
27592
  tags?: string[];
26989
- }, params?: RequestParams) => Promise<AxiosResponse<RevOrgsListResponse, any>>;
27593
+ }, params?: RequestParams) => Promise<AxiosResponse<RevOrgsListResponse, any, {}>>;
26990
27594
  /**
26991
27595
  * @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
27596
  *
@@ -26996,7 +27600,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
26996
27600
  * @request POST:/rev-orgs.list
26997
27601
  * @secure
26998
27602
  */
26999
- revOrgsListPost: (data: RevOrgsListRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsListResponse, any>>;
27603
+ revOrgsListPost: (data: RevOrgsListRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsListResponse, any, {}>>;
27000
27604
  /**
27001
27605
  * @description Updates the Rev organization's information.
27002
27606
  *
@@ -27006,7 +27610,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27006
27610
  * @request POST:/rev-orgs.update
27007
27611
  * @secure
27008
27612
  */
27009
- revOrgsUpdate: (data: RevOrgsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsUpdateResponse, any>>;
27613
+ revOrgsUpdate: (data: RevOrgsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsUpdateResponse, any, {}>>;
27010
27614
  /**
27011
27615
  * @description Adds an association to a Rev user. This API is only available when the multi-association contact feature is enabled.
27012
27616
  *
@@ -27016,7 +27620,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27016
27620
  * @request POST:/rev-users.associations.add
27017
27621
  * @secure
27018
27622
  */
27019
- revUsersAssociationsAdd: (data: RevUsersAssociationsAddRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
27623
+ revUsersAssociationsAdd: (data: RevUsersAssociationsAddRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
27020
27624
  /**
27021
27625
  * @description Returns a list of associations on a Rev user.
27022
27626
  *
@@ -27049,7 +27653,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27049
27653
  * used.
27050
27654
  */
27051
27655
  mode?: ListMode;
27052
- }, params?: RequestParams) => Promise<AxiosResponse<RevUsersAssociationsListResponse, any>>;
27656
+ }, params?: RequestParams) => Promise<AxiosResponse<RevUsersAssociationsListResponse, any, {}>>;
27053
27657
  /**
27054
27658
  * @description Returns a list of associations on a Rev user.
27055
27659
  *
@@ -27059,7 +27663,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27059
27663
  * @request POST:/rev-users.associations.list
27060
27664
  * @secure
27061
27665
  */
27062
- revUsersAssociationsListPost: (data: RevUsersAssociationsListRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersAssociationsListResponse, any>>;
27666
+ revUsersAssociationsListPost: (data: RevUsersAssociationsListRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersAssociationsListResponse, any, {}>>;
27063
27667
  /**
27064
27668
  * @description Removes an association from a Rev user. This API is only available when the multi-association contact feature is enabled.
27065
27669
  *
@@ -27069,7 +27673,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27069
27673
  * @request POST:/rev-users.associations.remove
27070
27674
  * @secure
27071
27675
  */
27072
- revUsersAssociationsRemove: (data: RevUsersAssociationsRemoveRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
27676
+ revUsersAssociationsRemove: (data: RevUsersAssociationsRemoveRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
27073
27677
  /**
27074
27678
  * @description Creates a Rev user for a Rev organization. Rev user can be a customer or a lead of an organization.
27075
27679
  *
@@ -27079,7 +27683,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27079
27683
  * @request POST:/rev-users.create
27080
27684
  * @secure
27081
27685
  */
27082
- revUsersCreate: (data: RevUsersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersCreateResponse, any>>;
27686
+ revUsersCreate: (data: RevUsersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersCreateResponse, any, {}>>;
27083
27687
  /**
27084
27688
  * @description Deletes a Rev user.
27085
27689
  *
@@ -27089,7 +27693,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27089
27693
  * @request POST:/rev-users.delete
27090
27694
  * @secure
27091
27695
  */
27092
- revUsersDelete: (data: RevUsersDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
27696
+ revUsersDelete: (data: RevUsersDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
27093
27697
  /**
27094
27698
  * @description Deletes data of a contact.
27095
27699
  *
@@ -27099,7 +27703,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27099
27703
  * @request POST:/rev-users.delete-personal-data
27100
27704
  * @secure
27101
27705
  */
27102
- deleteRevUsersPersonalData: (data: DeleteRevUsersPersonalDataRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
27706
+ deleteRevUsersPersonalData: (data: DeleteRevUsersPersonalDataRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
27103
27707
  /**
27104
27708
  * @description Returns the Rev user of a Rev organization by its ID.
27105
27709
  *
@@ -27115,7 +27719,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27115
27719
  * @format id
27116
27720
  */
27117
27721
  id: string;
27118
- }, params?: RequestParams) => Promise<AxiosResponse<RevUsersGetResponse, any>>;
27722
+ }, params?: RequestParams) => Promise<AxiosResponse<RevUsersGetResponse, any, {}>>;
27119
27723
  /**
27120
27724
  * @description Returns the Rev user of a Rev organization by its ID.
27121
27725
  *
@@ -27125,7 +27729,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27125
27729
  * @request POST:/rev-users.get
27126
27730
  * @secure
27127
27731
  */
27128
- revUsersGetPost: (data: RevUsersGetRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersGetResponse, any>>;
27732
+ revUsersGetPost: (data: RevUsersGetRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersGetResponse, any, {}>>;
27129
27733
  /**
27130
27734
  * @description Links a rev user to a rev org.
27131
27735
  *
@@ -27136,7 +27740,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27136
27740
  * @deprecated
27137
27741
  * @secure
27138
27742
  */
27139
- linkRevUserToRevOrg: (data: LinkRevUserToRevOrgRequest, params?: RequestParams) => Promise<AxiosResponse<LinkRevUserToRevOrgResponse, any>>;
27743
+ linkRevUserToRevOrg: (data: LinkRevUserToRevOrgRequest, params?: RequestParams) => Promise<AxiosResponse<LinkRevUserToRevOrgResponse, any, {}>>;
27140
27744
  /**
27141
27745
  * @description Returns a list of all Rev Users belonging to the authenticated user's Dev organization.
27142
27746
  *
@@ -27217,7 +27821,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27217
27821
  sort_by?: string[];
27218
27822
  /** List of tags to be filtered. */
27219
27823
  tags?: string[];
27220
- }, params?: RequestParams) => Promise<AxiosResponse<RevUsersListResponse, any>>;
27824
+ }, params?: RequestParams) => Promise<AxiosResponse<RevUsersListResponse, any, {}>>;
27221
27825
  /**
27222
27826
  * @description Returns a list of all Rev Users belonging to the authenticated user's Dev organization.
27223
27827
  *
@@ -27227,7 +27831,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27227
27831
  * @request POST:/rev-users.list
27228
27832
  * @secure
27229
27833
  */
27230
- revUsersListPost: (data: RevUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersListResponse, any>>;
27834
+ revUsersListPost: (data: RevUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersListResponse, any, {}>>;
27231
27835
  /**
27232
27836
  * @description Merges the secondary Rev user into the primary Rev user.
27233
27837
  *
@@ -27237,7 +27841,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27237
27841
  * @request POST:/rev-users.merge
27238
27842
  * @secure
27239
27843
  */
27240
- revUsersMerge: (data: RevUsersMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
27844
+ revUsersMerge: (data: RevUsersMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
27241
27845
  /**
27242
27846
  * @description Retrieves data of a contact.
27243
27847
  *
@@ -27247,7 +27851,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27247
27851
  * @request POST:/rev-users.personal-data
27248
27852
  * @secure
27249
27853
  */
27250
- getRevUsersPersonalData: (data: GetRevUsersPersonalDataRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
27854
+ getRevUsersPersonalData: (data: GetRevUsersPersonalDataRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
27251
27855
  /**
27252
27856
  * @description Scans through all Rev users.
27253
27857
  *
@@ -27316,7 +27920,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27316
27920
  rev_org?: string[];
27317
27921
  /** List of tags to be filtered. */
27318
27922
  tags?: string[];
27319
- }, params?: RequestParams) => Promise<AxiosResponse<RevUsersScanResponse, any>>;
27923
+ }, params?: RequestParams) => Promise<AxiosResponse<RevUsersScanResponse, any, {}>>;
27320
27924
  /**
27321
27925
  * @description Scans through all Rev users.
27322
27926
  *
@@ -27326,7 +27930,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27326
27930
  * @request POST:/rev-users.scan
27327
27931
  * @secure
27328
27932
  */
27329
- revUsersScanPost: (data: RevUsersScanRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersScanResponse, any>>;
27933
+ revUsersScanPost: (data: RevUsersScanRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersScanResponse, any, {}>>;
27330
27934
  /**
27331
27935
  * @description Unlinks a rev user from a rev org.
27332
27936
  *
@@ -27337,7 +27941,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27337
27941
  * @deprecated
27338
27942
  * @secure
27339
27943
  */
27340
- unlinkRevUserFromRevOrg: (data: UnlinkRevUserFromRevOrgRequest, params?: RequestParams) => Promise<AxiosResponse<UnlinkRevUserFromRevOrgResponse, any>>;
27944
+ unlinkRevUserFromRevOrg: (data: UnlinkRevUserFromRevOrgRequest, params?: RequestParams) => Promise<AxiosResponse<UnlinkRevUserFromRevOrgResponse, any, {}>>;
27341
27945
  /**
27342
27946
  * @description Updates a Rev user.
27343
27947
  *
@@ -27347,7 +27951,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27347
27951
  * @request POST:/rev-users.update
27348
27952
  * @secure
27349
27953
  */
27350
- revUsersUpdate: (data: RevUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersUpdateResponse, any>>;
27954
+ revUsersUpdate: (data: RevUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersUpdateResponse, any, {}>>;
27351
27955
  /**
27352
27956
  * @description Assigns or revokes roles of a principal.
27353
27957
  *
@@ -27357,7 +27961,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27357
27961
  * @request POST:/roles.apply
27358
27962
  * @secure
27359
27963
  */
27360
- rolesApply: (data: RolesApplyRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
27964
+ rolesApply: (data: RolesApplyRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
27361
27965
  /**
27362
27966
  * @description Creates a new role.
27363
27967
  *
@@ -27367,7 +27971,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27367
27971
  * @request POST:/roles.create
27368
27972
  * @secure
27369
27973
  */
27370
- rolesCreate: (data: RolesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RolesCreateResponse, any>>;
27974
+ rolesCreate: (data: RolesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RolesCreateResponse, any, {}>>;
27371
27975
  /**
27372
27976
  * @description Gets the aggregated schema.
27373
27977
  *
@@ -27400,7 +28004,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27400
28004
  * @format id
27401
28005
  */
27402
28006
  stock_schema_fragment?: string;
27403
- }, params?: RequestParams) => Promise<AxiosResponse<AggregatedSchemaGetResponse, any>>;
28007
+ }, params?: RequestParams) => Promise<AxiosResponse<AggregatedSchemaGetResponse, any, {}>>;
27404
28008
  /**
27405
28009
  * @description Gets the aggregated schema.
27406
28010
  *
@@ -27410,7 +28014,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27410
28014
  * @request POST:/schemas.aggregated.get
27411
28015
  * @secure
27412
28016
  */
27413
- aggregatedSchemaGetPost: (data: AggregatedSchemaGetRequest, params?: RequestParams) => Promise<AxiosResponse<AggregatedSchemaGetResponse, any>>;
28017
+ aggregatedSchemaGetPost: (data: AggregatedSchemaGetRequest, params?: RequestParams) => Promise<AxiosResponse<AggregatedSchemaGetResponse, any, {}>>;
27414
28018
  /**
27415
28019
  * @description Gets a custom schema fragment.
27416
28020
  *
@@ -27426,7 +28030,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27426
28030
  * @format id
27427
28031
  */
27428
28032
  id: string;
27429
- }, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsGetResponse, any>>;
28033
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsGetResponse, any, {}>>;
27430
28034
  /**
27431
28035
  * @description Gets a custom schema fragment.
27432
28036
  *
@@ -27436,7 +28040,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27436
28040
  * @request POST:/schemas.custom.get
27437
28041
  * @secure
27438
28042
  */
27439
- customSchemaFragmentsGetPost: (data: CustomSchemaFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsGetResponse, any>>;
28043
+ customSchemaFragmentsGetPost: (data: CustomSchemaFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsGetResponse, any, {}>>;
27440
28044
  /**
27441
28045
  * @description Lists custom schema fragments.
27442
28046
  *
@@ -27487,7 +28091,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27487
28091
  subtype?: string[];
27488
28092
  /** Filters for custom schema fragment of the provided types. */
27489
28093
  types?: CustomSchemaFragmentType[];
27490
- }, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsListResponse, any>>;
28094
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsListResponse, any, {}>>;
27491
28095
  /**
27492
28096
  * @description Lists custom schema fragments.
27493
28097
  *
@@ -27497,7 +28101,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27497
28101
  * @request POST:/schemas.custom.list
27498
28102
  * @secure
27499
28103
  */
27500
- customSchemaFragmentsListPost: (data: CustomSchemaFragmentsListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsListResponse, any>>;
28104
+ customSchemaFragmentsListPost: (data: CustomSchemaFragmentsListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsListResponse, any, {}>>;
27501
28105
  /**
27502
28106
  * @description Creates or updates a custom schema fragment.
27503
28107
  *
@@ -27507,7 +28111,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27507
28111
  * @request POST:/schemas.custom.set
27508
28112
  * @secure
27509
28113
  */
27510
- customSchemaFragmentsSet: (data: CustomSchemaFragmentsSetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsSetResponse, any>>;
28114
+ customSchemaFragmentsSet: (data: CustomSchemaFragmentsSetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsSetResponse, any, {}>>;
27511
28115
  /**
27512
28116
  * @description Gets a stock schema fragment.
27513
28117
  *
@@ -27528,7 +28132,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27528
28132
  * @format text
27529
28133
  */
27530
28134
  leaf_type?: string;
27531
- }, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsGetResponse, any>>;
28135
+ }, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsGetResponse, any, {}>>;
27532
28136
  /**
27533
28137
  * @description Gets a stock schema fragment.
27534
28138
  *
@@ -27538,7 +28142,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27538
28142
  * @request POST:/schemas.stock.get
27539
28143
  * @secure
27540
28144
  */
27541
- stockSchemaFragmentsGetPost: (data: StockSchemaFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsGetResponse, any>>;
28145
+ stockSchemaFragmentsGetPost: (data: StockSchemaFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsGetResponse, any, {}>>;
27542
28146
  /**
27543
28147
  * @description Lists stock schema fragments.
27544
28148
  *
@@ -27579,7 +28183,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27579
28183
  prune?: StockSchemaFragmentsListRequestPrune[];
27580
28184
  /** The list of fields to sort the items by and how to sort them. */
27581
28185
  sort_by?: string[];
27582
- }, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsListResponse, any>>;
28186
+ }, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsListResponse, any, {}>>;
27583
28187
  /**
27584
28188
  * @description Lists stock schema fragments.
27585
28189
  *
@@ -27589,7 +28193,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27589
28193
  * @request POST:/schemas.stock.list
27590
28194
  * @secure
27591
28195
  */
27592
- stockSchemaFragmentsListPost: (data: StockSchemaFragmentsListRequest, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsListResponse, any>>;
28196
+ stockSchemaFragmentsListPost: (data: StockSchemaFragmentsListRequest, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsListResponse, any, {}>>;
27593
28197
  /**
27594
28198
  * @description Lists subtypes.
27595
28199
  *
@@ -27608,7 +28212,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27608
28212
  leaf_type?: string;
27609
28213
  /** List of leaf types for which subtypes are required. */
27610
28214
  leaf_types?: string[];
27611
- }, params?: RequestParams) => Promise<AxiosResponse<SubtypesListResponse, any>>;
28215
+ }, params?: RequestParams) => Promise<AxiosResponse<SubtypesListResponse, any, {}>>;
27612
28216
  /**
27613
28217
  * @description Lists subtypes.
27614
28218
  *
@@ -27618,7 +28222,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27618
28222
  * @request POST:/schemas.subtypes.list
27619
28223
  * @secure
27620
28224
  */
27621
- subtypesListPost: (data: SubtypesListRequest, params?: RequestParams) => Promise<AxiosResponse<SubtypesListResponse, any>>;
28225
+ subtypesListPost: (data: SubtypesListRequest, params?: RequestParams) => Promise<AxiosResponse<SubtypesListResponse, any, {}>>;
27622
28226
  /**
27623
28227
  * @description Gets the new fragment IDs and fields resulting from changing a subtype.
27624
28228
  *
@@ -27628,7 +28232,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27628
28232
  * @request POST:/schemas.subtypes.prepare-update
27629
28233
  * @secure
27630
28234
  */
27631
- schemasSubtypePrepareUpdateGet: (data: SchemasSubtypePrepareUpdateGetRequest, params?: RequestParams) => Promise<AxiosResponse<SchemasSubtypePrepareUpdateGetResponse, any>>;
28235
+ schemasSubtypePrepareUpdateGet: (data: SchemasSubtypePrepareUpdateGetRequest, params?: RequestParams) => Promise<AxiosResponse<SchemasSubtypePrepareUpdateGetResponse, any, {}>>;
27632
28236
  /**
27633
28237
  * @description Searches for records based on a given query.
27634
28238
  *
@@ -27670,7 +28274,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27670
28274
  sort_by?: SearchSortByParam | undefined;
27671
28275
  /** Sorting order. The default is DESCENDING. */
27672
28276
  sort_order?: SearchSortOrderParam | undefined;
27673
- }, params?: RequestParams) => Promise<AxiosResponse<SearchCoreResponse, any>>;
28277
+ }, params?: RequestParams) => Promise<AxiosResponse<SearchCoreResponse, any, {}>>;
27674
28278
  /**
27675
28279
  * @description Searches for records based on a given query.
27676
28280
  *
@@ -27680,7 +28284,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27680
28284
  * @request POST:/search.core
27681
28285
  * @secure
27682
28286
  */
27683
- searchCorePost: (data: SearchCoreRequest, params?: RequestParams) => Promise<AxiosResponse<SearchCoreResponse, any>>;
28287
+ searchCorePost: (data: SearchCoreRequest, params?: RequestParams) => Promise<AxiosResponse<SearchCoreResponse, any, {}>>;
27684
28288
  /**
27685
28289
  * @description Performs search, using a combination of syntactic and semantic search.
27686
28290
  *
@@ -27715,7 +28319,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27715
28319
  * @max 1
27716
28320
  */
27717
28321
  semantic_weight?: number | undefined;
27718
- }, params?: RequestParams) => Promise<AxiosResponse<SearchHybridResponse, any>>;
28322
+ }, params?: RequestParams) => Promise<AxiosResponse<SearchHybridResponse, any, {}>>;
27719
28323
  /**
27720
28324
  * @description Performs search, using a combination of syntactic and semantic search.
27721
28325
  *
@@ -27725,7 +28329,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27725
28329
  * @request POST:/search.hybrid
27726
28330
  * @secure
27727
28331
  */
27728
- searchHybridPost: (data: SearchHybridRequest, params?: RequestParams) => Promise<AxiosResponse<SearchHybridResponse, any>>;
28332
+ searchHybridPost: (data: SearchHybridRequest, params?: RequestParams) => Promise<AxiosResponse<SearchHybridResponse, any, {}>>;
27729
28333
  /**
27730
28334
  * @description Creates a service account.
27731
28335
  *
@@ -27735,7 +28339,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27735
28339
  * @request POST:/service-accounts.create
27736
28340
  * @secure
27737
28341
  */
27738
- serviceAccountsCreate: (data: ServiceAccountsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsCreateResponse, any>>;
28342
+ serviceAccountsCreate: (data: ServiceAccountsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsCreateResponse, any, {}>>;
27739
28343
  /**
27740
28344
  * @description Gets a service account.
27741
28345
  *
@@ -27751,7 +28355,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27751
28355
  * @format id
27752
28356
  */
27753
28357
  id: string;
27754
- }, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsGetResponse, any>>;
28358
+ }, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsGetResponse, any, {}>>;
27755
28359
  /**
27756
28360
  * @description Gets a service account.
27757
28361
  *
@@ -27761,7 +28365,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27761
28365
  * @request POST:/service-accounts.get
27762
28366
  * @secure
27763
28367
  */
27764
- serviceAccountsGetPost: (data: ServiceAccountsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsGetResponse, any>>;
28368
+ serviceAccountsGetPost: (data: ServiceAccountsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsGetResponse, any, {}>>;
27765
28369
  /**
27766
28370
  * @description Updates a service account.
27767
28371
  *
@@ -27771,7 +28375,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27771
28375
  * @request POST:/service-accounts.update
27772
28376
  * @secure
27773
28377
  */
27774
- serviceAccountsUpdate: (data: ServiceAccountsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsUpdateResponse, any>>;
28378
+ serviceAccountsUpdate: (data: ServiceAccountsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsUpdateResponse, any, {}>>;
27775
28379
  /**
27776
28380
  * @description Gets an SLA tracker.
27777
28381
  *
@@ -27787,7 +28391,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27787
28391
  * @format id
27788
28392
  */
27789
28393
  id: string;
27790
- }, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersGetResponse, any>>;
28394
+ }, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersGetResponse, any, {}>>;
27791
28395
  /**
27792
28396
  * @description Gets an SLA tracker.
27793
28397
  *
@@ -27797,7 +28401,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27797
28401
  * @request POST:/sla-trackers.get
27798
28402
  * @secure
27799
28403
  */
27800
- slaTrackersGetPost: (data: SlaTrackersGetRequest, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersGetResponse, any>>;
28404
+ slaTrackersGetPost: (data: SlaTrackersGetRequest, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersGetResponse, any, {}>>;
27801
28405
  /**
27802
28406
  * @description Lists SLA trackers matching a filter.
27803
28407
  *
@@ -27856,7 +28460,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27856
28460
  stage?: string[];
27857
28461
  /** The SLA tracker statuses the filter matches. */
27858
28462
  status?: string[];
27859
- }, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersListResponse, any>>;
28463
+ }, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersListResponse, any, {}>>;
27860
28464
  /**
27861
28465
  * @description Lists SLA trackers matching a filter.
27862
28466
  *
@@ -27866,7 +28470,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27866
28470
  * @request POST:/sla-trackers.list
27867
28471
  * @secure
27868
28472
  */
27869
- slaTrackersListPost: (data: SlaTrackersListRequest, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersListResponse, any>>;
28473
+ slaTrackersListPost: (data: SlaTrackersListRequest, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersListResponse, any, {}>>;
27870
28474
  /**
27871
28475
  * @description Removes a metric from the given object's SLA.
27872
28476
  *
@@ -27876,7 +28480,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27876
28480
  * @request POST:/sla-trackers.remove-metric
27877
28481
  * @secure
27878
28482
  */
27879
- slaTrackersRemoveMetric: (data: SlaTrackersRemoveMetricRequest, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersRemoveMetricResponse, any>>;
28483
+ slaTrackersRemoveMetric: (data: SlaTrackersRemoveMetricRequest, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersRemoveMetricResponse, any, {}>>;
27880
28484
  /**
27881
28485
  * @description Assigns the SLA to a set of Rev organizations.
27882
28486
  *
@@ -27886,7 +28490,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27886
28490
  * @request POST:/slas.assign
27887
28491
  * @secure
27888
28492
  */
27889
- slasAssign: (data: SlasAssignRequest, params?: RequestParams) => Promise<AxiosResponse<SlasAssignResponse, any>>;
28493
+ slasAssign: (data: SlasAssignRequest, params?: RequestParams) => Promise<AxiosResponse<SlasAssignResponse, any, {}>>;
27890
28494
  /**
27891
28495
  * @description Creates an SLA in draft status.
27892
28496
  *
@@ -27896,7 +28500,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27896
28500
  * @request POST:/slas.create
27897
28501
  * @secure
27898
28502
  */
27899
- slasCreate: (data: SlasCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SlasCreateResponse, any>>;
28503
+ slasCreate: (data: SlasCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SlasCreateResponse, any, {}>>;
27900
28504
  /**
27901
28505
  * @description Gets an SLA.
27902
28506
  *
@@ -27912,7 +28516,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27912
28516
  * @format id
27913
28517
  */
27914
28518
  id: string;
27915
- }, params?: RequestParams) => Promise<AxiosResponse<SlasGetResponse, any>>;
28519
+ }, params?: RequestParams) => Promise<AxiosResponse<SlasGetResponse, any, {}>>;
27916
28520
  /**
27917
28521
  * @description Gets an SLA.
27918
28522
  *
@@ -27922,7 +28526,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27922
28526
  * @request POST:/slas.get
27923
28527
  * @secure
27924
28528
  */
27925
- slasGetPost: (data: SlasGetRequest, params?: RequestParams) => Promise<AxiosResponse<SlasGetResponse, any>>;
28529
+ slasGetPost: (data: SlasGetRequest, params?: RequestParams) => Promise<AxiosResponse<SlasGetResponse, any, {}>>;
27926
28530
  /**
27927
28531
  * @description Lists SLAs matching a filter.
27928
28532
  *
@@ -27962,7 +28566,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27962
28566
  sort_by?: string[];
27963
28567
  /** The SLA statuses the filter matches. */
27964
28568
  status?: SlaStatus[];
27965
- }, params?: RequestParams) => Promise<AxiosResponse<SlasListResponse, any>>;
28569
+ }, params?: RequestParams) => Promise<AxiosResponse<SlasListResponse, any, {}>>;
27966
28570
  /**
27967
28571
  * @description Lists SLAs matching a filter.
27968
28572
  *
@@ -27972,7 +28576,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27972
28576
  * @request POST:/slas.list
27973
28577
  * @secure
27974
28578
  */
27975
- slasListPost: (data: SlasListRequest, params?: RequestParams) => Promise<AxiosResponse<SlasListResponse, any>>;
28579
+ slasListPost: (data: SlasListRequest, params?: RequestParams) => Promise<AxiosResponse<SlasListResponse, any, {}>>;
27976
28580
  /**
27977
28581
  * @description Changes the status of an SLA.
27978
28582
  *
@@ -27982,7 +28586,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27982
28586
  * @request POST:/slas.transition
27983
28587
  * @secure
27984
28588
  */
27985
- slasTransition: (data: SlasTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<SlasTransitionResponse, any>>;
28589
+ slasTransition: (data: SlasTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<SlasTransitionResponse, any, {}>>;
27986
28590
  /**
27987
28591
  * @description Updates a draft SLA.
27988
28592
  *
@@ -27992,7 +28596,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
27992
28596
  * @request POST:/slas.update
27993
28597
  * @secure
27994
28598
  */
27995
- slasUpdate: (data: SlasUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SlasUpdateResponse, any>>;
28599
+ slasUpdate: (data: SlasUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SlasUpdateResponse, any, {}>>;
27996
28600
  /**
27997
28601
  * @description Gets snap-in resources for a user in a snap-in.
27998
28602
  *
@@ -28013,7 +28617,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28013
28617
  * @format id
28014
28618
  */
28015
28619
  user: string;
28016
- }, params?: RequestParams) => Promise<AxiosResponse<SnapInsResourcesResponse, any>>;
28620
+ }, params?: RequestParams) => Promise<AxiosResponse<SnapInsResourcesResponse, any, {}>>;
28017
28621
  /**
28018
28622
  * @description Gets snap-in resources for a user in a snap-in.
28019
28623
  *
@@ -28023,7 +28627,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28023
28627
  * @request POST:/snap-ins.resources
28024
28628
  * @secure
28025
28629
  */
28026
- snapInsResourcesPost: (data: SnapInsResourcesRequest, params?: RequestParams) => Promise<AxiosResponse<SnapInsResourcesResponse, any>>;
28630
+ snapInsResourcesPost: (data: SnapInsResourcesRequest, params?: RequestParams) => Promise<AxiosResponse<SnapInsResourcesResponse, any, {}>>;
28027
28631
  /**
28028
28632
  * @description Updates a snap-in.
28029
28633
  *
@@ -28033,7 +28637,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28033
28637
  * @request POST:/snap-ins.update
28034
28638
  * @secure
28035
28639
  */
28036
- snapInsUpdate: (data: SnapInsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SnapInsUpdateResponse, any>>;
28640
+ snapInsUpdate: (data: SnapInsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SnapInsUpdateResponse, any, {}>>;
28037
28641
  /**
28038
28642
  * @description Executes deferred snap-kit actions.
28039
28643
  *
@@ -28043,7 +28647,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28043
28647
  * @request POST:/snap-kit-action.execute.deferred
28044
28648
  * @secure
28045
28649
  */
28046
- snapKitActionExecuteDeferred: (data: SnapKitActionExecuteDeferredRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
28650
+ snapKitActionExecuteDeferred: (data: SnapKitActionExecuteDeferredRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
28047
28651
  /**
28048
28652
  * @description Create a snap widget object.
28049
28653
  *
@@ -28053,7 +28657,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28053
28657
  * @request POST:/snap-widgets.create
28054
28658
  * @secure
28055
28659
  */
28056
- snapWidgetsCreate: (data: SnapWidgetsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SnapWidgetsCreateResponse, any>>;
28660
+ snapWidgetsCreate: (data: SnapWidgetsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SnapWidgetsCreateResponse, any, {}>>;
28057
28661
  /**
28058
28662
  * @description Creates a stage diagram.
28059
28663
  *
@@ -28063,7 +28667,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28063
28667
  * @request POST:/stage-diagrams.create
28064
28668
  * @secure
28065
28669
  */
28066
- stageDiagramsCreate: (data: StageDiagramsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsCreateResponse, any>>;
28670
+ stageDiagramsCreate: (data: StageDiagramsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsCreateResponse, any, {}>>;
28067
28671
  /**
28068
28672
  * @description Gets a stage diagram.
28069
28673
  *
@@ -28090,7 +28694,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28090
28694
  * @format text
28091
28695
  */
28092
28696
  leaf_type?: string;
28093
- }, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsGetResponse, any>>;
28697
+ }, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsGetResponse, any, {}>>;
28094
28698
  /**
28095
28699
  * @description Gets a stage diagram.
28096
28700
  *
@@ -28100,7 +28704,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28100
28704
  * @request POST:/stage-diagrams.get
28101
28705
  * @secure
28102
28706
  */
28103
- stageDiagramsGetPost: (data: StageDiagramsGetRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsGetResponse, any>>;
28707
+ stageDiagramsGetPost: (data: StageDiagramsGetRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsGetResponse, any, {}>>;
28104
28708
  /**
28105
28709
  * @description Lists stage diagrams.
28106
28710
  *
@@ -28130,7 +28734,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28130
28734
  name?: string[];
28131
28735
  /** The list of fields to sort the items by and how to sort them. */
28132
28736
  sort_by?: string[];
28133
- }, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsListResponse, any>>;
28737
+ }, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsListResponse, any, {}>>;
28134
28738
  /**
28135
28739
  * @description Lists stage diagrams.
28136
28740
  *
@@ -28140,7 +28744,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28140
28744
  * @request POST:/stage-diagrams.list
28141
28745
  * @secure
28142
28746
  */
28143
- stageDiagramsListPost: (data: StageDiagramsListRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsListResponse, any>>;
28747
+ stageDiagramsListPost: (data: StageDiagramsListRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsListResponse, any, {}>>;
28144
28748
  /**
28145
28749
  * @description Updates a stage diagram.
28146
28750
  *
@@ -28150,7 +28754,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28150
28754
  * @request POST:/stage-diagrams.update
28151
28755
  * @secure
28152
28756
  */
28153
- stageDiagramsUpdate: (data: StageDiagramsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsUpdateResponse, any>>;
28757
+ stageDiagramsUpdate: (data: StageDiagramsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsUpdateResponse, any, {}>>;
28154
28758
  /**
28155
28759
  * @description Creates a custom stage.
28156
28760
  *
@@ -28160,7 +28764,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28160
28764
  * @request POST:/stages.custom.create
28161
28765
  * @secure
28162
28766
  */
28163
- customStagesCreate: (data: CustomStagesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesCreateResponse, any>>;
28767
+ customStagesCreate: (data: CustomStagesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesCreateResponse, any, {}>>;
28164
28768
  /**
28165
28769
  * @description Gets a custom stage.
28166
28770
  *
@@ -28176,7 +28780,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28176
28780
  * @format id
28177
28781
  */
28178
28782
  id: string;
28179
- }, params?: RequestParams) => Promise<AxiosResponse<CustomStagesGetResponse, any>>;
28783
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomStagesGetResponse, any, {}>>;
28180
28784
  /**
28181
28785
  * @description Gets a custom stage.
28182
28786
  *
@@ -28186,7 +28790,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28186
28790
  * @request POST:/stages.custom.get
28187
28791
  * @secure
28188
28792
  */
28189
- customStagesGetPost: (data: CustomStagesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesGetResponse, any>>;
28793
+ customStagesGetPost: (data: CustomStagesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesGetResponse, any, {}>>;
28190
28794
  /**
28191
28795
  * @description Lists custom stages.
28192
28796
  *
@@ -28214,7 +28818,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28214
28818
  ordinal?: number[];
28215
28819
  /** The list of fields to sort the items by and how to sort them. */
28216
28820
  sort_by?: string[];
28217
- }, params?: RequestParams) => Promise<AxiosResponse<CustomStagesListResponse, any>>;
28821
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomStagesListResponse, any, {}>>;
28218
28822
  /**
28219
28823
  * @description Lists custom stages.
28220
28824
  *
@@ -28224,7 +28828,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28224
28828
  * @request POST:/stages.custom.list
28225
28829
  * @secure
28226
28830
  */
28227
- customStagesListPost: (data: CustomStagesListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesListResponse, any>>;
28831
+ customStagesListPost: (data: CustomStagesListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesListResponse, any, {}>>;
28228
28832
  /**
28229
28833
  * @description Updates a custom stage.
28230
28834
  *
@@ -28234,7 +28838,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28234
28838
  * @request POST:/stages.custom.update
28235
28839
  * @secure
28236
28840
  */
28237
- customStagesUpdate: (data: CustomStagesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesUpdateResponse, any>>;
28841
+ customStagesUpdate: (data: CustomStagesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesUpdateResponse, any, {}>>;
28238
28842
  /**
28239
28843
  * @description Creates a custom state.
28240
28844
  *
@@ -28244,7 +28848,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28244
28848
  * @request POST:/states.custom.create
28245
28849
  * @secure
28246
28850
  */
28247
- customStatesCreate: (data: CustomStatesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesCreateResponse, any>>;
28851
+ customStatesCreate: (data: CustomStatesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesCreateResponse, any, {}>>;
28248
28852
  /**
28249
28853
  * @description Gets a custom state.
28250
28854
  *
@@ -28260,7 +28864,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28260
28864
  * @format id
28261
28865
  */
28262
28866
  id: string;
28263
- }, params?: RequestParams) => Promise<AxiosResponse<CustomStatesGetResponse, any>>;
28867
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomStatesGetResponse, any, {}>>;
28264
28868
  /**
28265
28869
  * @description Gets a custom state.
28266
28870
  *
@@ -28270,7 +28874,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28270
28874
  * @request POST:/states.custom.get
28271
28875
  * @secure
28272
28876
  */
28273
- customStatesGetPost: (data: CustomStatesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesGetResponse, any>>;
28877
+ customStatesGetPost: (data: CustomStatesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesGetResponse, any, {}>>;
28274
28878
  /**
28275
28879
  * @description Lists custom states.
28276
28880
  *
@@ -28300,7 +28904,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28300
28904
  ordinal?: number[];
28301
28905
  /** The list of fields to sort the items by and how to sort them. */
28302
28906
  sort_by?: string[];
28303
- }, params?: RequestParams) => Promise<AxiosResponse<CustomStatesListResponse, any>>;
28907
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomStatesListResponse, any, {}>>;
28304
28908
  /**
28305
28909
  * @description Lists custom states.
28306
28910
  *
@@ -28310,7 +28914,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28310
28914
  * @request POST:/states.custom.list
28311
28915
  * @secure
28312
28916
  */
28313
- customStatesListPost: (data: CustomStatesListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesListResponse, any>>;
28917
+ customStatesListPost: (data: CustomStatesListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesListResponse, any, {}>>;
28314
28918
  /**
28315
28919
  * @description Updates a custom state.
28316
28920
  *
@@ -28320,7 +28924,34 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28320
28924
  * @request POST:/states.custom.update
28321
28925
  * @secure
28322
28926
  */
28323
- customStatesUpdate: (data: CustomStatesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesUpdateResponse, any>>;
28927
+ customStatesUpdate: (data: CustomStatesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesUpdateResponse, any, {}>>;
28928
+ /**
28929
+ * @description Gets the requesting user's subscriber status for an object.
28930
+ *
28931
+ * @tags subscribers
28932
+ * @name SubscribersGet
28933
+ * @summary Get Subscriber
28934
+ * @request GET:/subscribers.get
28935
+ * @secure
28936
+ */
28937
+ subscribersGet: (query: {
28938
+ /**
28939
+ * The object's ID.
28940
+ * @format id
28941
+ * @example "ISS-12345"
28942
+ */
28943
+ id: string;
28944
+ }, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
28945
+ /**
28946
+ * @description Gets the requesting user's subscriber status for an object.
28947
+ *
28948
+ * @tags subscribers
28949
+ * @name SubscribersGetPost
28950
+ * @summary Get Subscriber (POST)
28951
+ * @request POST:/subscribers.get
28952
+ * @secure
28953
+ */
28954
+ subscribersGetPost: (data: SubscribersGetRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
28324
28955
  /**
28325
28956
  * @description Lists subscribers of an object.
28326
28957
  *
@@ -28349,7 +28980,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28349
28980
  * @format int32
28350
28981
  */
28351
28982
  limit?: number;
28352
- }, params?: RequestParams) => Promise<AxiosResponse<SubscribersListResponse, any>>;
28983
+ }, params?: RequestParams) => Promise<AxiosResponse<SubscribersListResponse, any, {}>>;
28353
28984
  /**
28354
28985
  * @description Lists subscribers of an object.
28355
28986
  *
@@ -28359,7 +28990,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28359
28990
  * @request POST:/subscribers.list
28360
28991
  * @secure
28361
28992
  */
28362
- subscribersListPost: (data: SubscribersListRequest, params?: RequestParams) => Promise<AxiosResponse<SubscribersListResponse, any>>;
28993
+ subscribersListPost: (data: SubscribersListRequest, params?: RequestParams) => Promise<AxiosResponse<SubscribersListResponse, any, {}>>;
28363
28994
  /**
28364
28995
  * @description Updates subscribers on the object.
28365
28996
  *
@@ -28369,7 +29000,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28369
29000
  * @request POST:/subscribers.update
28370
29001
  * @secure
28371
29002
  */
28372
- subscribersUpdate: (data: SubscribersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
29003
+ subscribersUpdate: (data: SubscribersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
28373
29004
  /**
28374
29005
  * @description Creates a schema for survey, which includes name and description of schema.
28375
29006
  *
@@ -28379,7 +29010,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28379
29010
  * @request POST:/surveys.create
28380
29011
  * @secure
28381
29012
  */
28382
- surveysCreate: (data: SurveysCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysCreateResponse, any>>;
29013
+ surveysCreate: (data: SurveysCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysCreateResponse, any, {}>>;
28383
29014
  /**
28384
29015
  * @description Deletes the specified survey.
28385
29016
  *
@@ -28389,7 +29020,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28389
29020
  * @request POST:/surveys.delete
28390
29021
  * @secure
28391
29022
  */
28392
- surveysDelete: (data: SurveysDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
29023
+ surveysDelete: (data: SurveysDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
28393
29024
  /**
28394
29025
  * @description Gets a survey given the ID.
28395
29026
  *
@@ -28405,7 +29036,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28405
29036
  * @format id
28406
29037
  */
28407
29038
  id: string;
28408
- }, params?: RequestParams) => Promise<AxiosResponse<SurveysGetResponse, any>>;
29039
+ }, params?: RequestParams) => Promise<AxiosResponse<SurveysGetResponse, any, {}>>;
28409
29040
  /**
28410
29041
  * @description Gets a survey given the ID.
28411
29042
  *
@@ -28415,7 +29046,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28415
29046
  * @request POST:/surveys.get
28416
29047
  * @secure
28417
29048
  */
28418
- surveysGetPost: (data: SurveysGetRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysGetResponse, any>>;
29049
+ surveysGetPost: (data: SurveysGetRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysGetResponse, any, {}>>;
28419
29050
  /**
28420
29051
  * @description List surveys requested by the user.
28421
29052
  *
@@ -28452,7 +29083,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28452
29083
  name?: string[];
28453
29084
  /** Fields to sort the surveys by and the direction to sort them. */
28454
29085
  sort_by?: string[];
28455
- }, params?: RequestParams) => Promise<AxiosResponse<SurveysListResponse, any>>;
29086
+ }, params?: RequestParams) => Promise<AxiosResponse<SurveysListResponse, any, {}>>;
28456
29087
  /**
28457
29088
  * @description List surveys requested by the user.
28458
29089
  *
@@ -28462,7 +29093,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28462
29093
  * @request POST:/surveys.list
28463
29094
  * @secure
28464
29095
  */
28465
- surveysListPost: (data: SurveysListRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysListResponse, any>>;
29096
+ surveysListPost: (data: SurveysListRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysListResponse, any, {}>>;
28466
29097
  /**
28467
29098
  * @description List survey responses requested by the user.
28468
29099
  *
@@ -28516,7 +29147,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28516
29147
  stages?: number[];
28517
29148
  /** Filters for survey responses for the provided survey IDs. */
28518
29149
  surveys?: string[];
28519
- }, params?: RequestParams) => Promise<AxiosResponse<SurveysResponsesListResponse, any>>;
29150
+ }, params?: RequestParams) => Promise<AxiosResponse<SurveysResponsesListResponse, any, {}>>;
28520
29151
  /**
28521
29152
  * @description List survey responses requested by the user.
28522
29153
  *
@@ -28526,7 +29157,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28526
29157
  * @request POST:/surveys.responses.list
28527
29158
  * @secure
28528
29159
  */
28529
- surveysResponsesListPost: (data: SurveysResponsesListRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysResponsesListResponse, any>>;
29160
+ surveysResponsesListPost: (data: SurveysResponsesListRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysResponsesListResponse, any, {}>>;
28530
29161
  /**
28531
29162
  * @description Updates a user's survey response for the provided dispatch ID.
28532
29163
  *
@@ -28536,7 +29167,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28536
29167
  * @request POST:/surveys.responses.update
28537
29168
  * @secure
28538
29169
  */
28539
- surveysResponsesUpdate: (data: SurveysResponsesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
29170
+ surveysResponsesUpdate: (data: SurveysResponsesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
28540
29171
  /**
28541
29172
  * @description Sends a survey on the specified channels.
28542
29173
  *
@@ -28546,7 +29177,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28546
29177
  * @request POST:/surveys.send
28547
29178
  * @secure
28548
29179
  */
28549
- surveysSend: (data: SurveysSendRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
29180
+ surveysSend: (data: SurveysSendRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
28550
29181
  /**
28551
29182
  * @description Submits a user response to a survey, which is defined by the survey ID.
28552
29183
  *
@@ -28556,7 +29187,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28556
29187
  * @request POST:/surveys.submit
28557
29188
  * @secure
28558
29189
  */
28559
- surveysSubmit: (data: SurveysSubmitRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
29190
+ surveysSubmit: (data: SurveysSubmitRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
28560
29191
  /**
28561
29192
  * @description Updates a survey's metadata.
28562
29193
  *
@@ -28566,7 +29197,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28566
29197
  * @request POST:/surveys.update
28567
29198
  * @secure
28568
29199
  */
28569
- surveysUpdate: (data: SurveysUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysUpdateResponse, any>>;
29200
+ surveysUpdate: (data: SurveysUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysUpdateResponse, any, {}>>;
28570
29201
  /**
28571
29202
  * @description Lists system users within your organization.
28572
29203
  *
@@ -28596,7 +29227,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28596
29227
  mode?: ListMode;
28597
29228
  /** Fields to sort the system users by and the direction to sort them. */
28598
29229
  sort_by?: string[];
28599
- }, params?: RequestParams) => Promise<AxiosResponse<SysUsersListResponse, any>>;
29230
+ }, params?: RequestParams) => Promise<AxiosResponse<SysUsersListResponse, any, {}>>;
28600
29231
  /**
28601
29232
  * @description Lists system users within your organization.
28602
29233
  *
@@ -28606,7 +29237,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28606
29237
  * @request POST:/sys-users.list
28607
29238
  * @secure
28608
29239
  */
28609
- sysUsersListPost: (data: SysUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<SysUsersListResponse, any>>;
29240
+ sysUsersListPost: (data: SysUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<SysUsersListResponse, any, {}>>;
28610
29241
  /**
28611
29242
  * @description Updates the system user.
28612
29243
  *
@@ -28616,7 +29247,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28616
29247
  * @request POST:/sys-users.update
28617
29248
  * @secure
28618
29249
  */
28619
- sysUsersUpdate: (data: SysUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SysUsersUpdateResponse, any>>;
29250
+ sysUsersUpdate: (data: SysUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SysUsersUpdateResponse, any, {}>>;
28620
29251
  /**
28621
29252
  * @description Creates a new tag, which is used to create associations between objects and a logical concept denoted by the tag's name.
28622
29253
  *
@@ -28626,7 +29257,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28626
29257
  * @request POST:/tags.create
28627
29258
  * @secure
28628
29259
  */
28629
- tagsCreate: (data: TagsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<TagsCreateResponse, any>>;
29260
+ tagsCreate: (data: TagsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<TagsCreateResponse, any, {}>>;
28630
29261
  /**
28631
29262
  * @description Deletes a tag.
28632
29263
  *
@@ -28636,7 +29267,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28636
29267
  * @request POST:/tags.delete
28637
29268
  * @secure
28638
29269
  */
28639
- tagsDelete: (data: TagsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
29270
+ tagsDelete: (data: TagsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
28640
29271
  /**
28641
29272
  * @description Gets a tag's information.
28642
29273
  *
@@ -28653,7 +29284,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28653
29284
  * @example "TAG-12345"
28654
29285
  */
28655
29286
  id: string;
28656
- }, params?: RequestParams) => Promise<AxiosResponse<TagsGetResponse, any>>;
29287
+ }, params?: RequestParams) => Promise<AxiosResponse<TagsGetResponse, any, {}>>;
28657
29288
  /**
28658
29289
  * @description Gets a tag's information.
28659
29290
  *
@@ -28663,7 +29294,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28663
29294
  * @request POST:/tags.get
28664
29295
  * @secure
28665
29296
  */
28666
- tagsGetPost: (data: TagsGetRequest, params?: RequestParams) => Promise<AxiosResponse<TagsGetResponse, any>>;
29297
+ tagsGetPost: (data: TagsGetRequest, params?: RequestParams) => Promise<AxiosResponse<TagsGetResponse, any, {}>>;
28667
29298
  /**
28668
29299
  * @description Lists the available tags.
28669
29300
  *
@@ -28694,7 +29325,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28694
29325
  name?: string[];
28695
29326
  /** Fields to sort tags by and the direction to sort them. */
28696
29327
  sort_by?: string[];
28697
- }, params?: RequestParams) => Promise<AxiosResponse<TagsListResponse, any>>;
29328
+ }, params?: RequestParams) => Promise<AxiosResponse<TagsListResponse, any, {}>>;
28698
29329
  /**
28699
29330
  * @description Lists the available tags.
28700
29331
  *
@@ -28704,7 +29335,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28704
29335
  * @request POST:/tags.list
28705
29336
  * @secure
28706
29337
  */
28707
- tagsListPost: (data: TagsListRequest, params?: RequestParams) => Promise<AxiosResponse<TagsListResponse, any>>;
29338
+ tagsListPost: (data: TagsListRequest, params?: RequestParams) => Promise<AxiosResponse<TagsListResponse, any, {}>>;
28708
29339
  /**
28709
29340
  * @description Updates a tag's information.
28710
29341
  *
@@ -28714,7 +29345,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28714
29345
  * @request POST:/tags.update
28715
29346
  * @secure
28716
29347
  */
28717
- tagsUpdate: (data: TagsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<TagsUpdateResponse, any>>;
29348
+ tagsUpdate: (data: TagsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<TagsUpdateResponse, any, {}>>;
28718
29349
  /**
28719
29350
  * @description Creates a new entry on an object's timeline.
28720
29351
  *
@@ -28724,7 +29355,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28724
29355
  * @request POST:/timeline-entries.create
28725
29356
  * @secure
28726
29357
  */
28727
- timelineEntriesCreate: (data: TimelineEntriesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesCreateResponse, any>>;
29358
+ timelineEntriesCreate: (data: TimelineEntriesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesCreateResponse, any, {}>>;
28728
29359
  /**
28729
29360
  * @description Deletes an entry from an object's timeline.
28730
29361
  *
@@ -28734,7 +29365,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28734
29365
  * @request POST:/timeline-entries.delete
28735
29366
  * @secure
28736
29367
  */
28737
- timelineEntriesDelete: (data: TimelineEntriesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
29368
+ timelineEntriesDelete: (data: TimelineEntriesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
28738
29369
  /**
28739
29370
  * @description Gets an entry on an object's timeline.
28740
29371
  *
@@ -28759,7 +29390,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28759
29390
  * @maxLength 512
28760
29391
  */
28761
29392
  external_ref?: string;
28762
- }, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesGetResponse, any>>;
29393
+ }, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesGetResponse, any, {}>>;
28763
29394
  /**
28764
29395
  * @description Gets an entry on an object's timeline.
28765
29396
  *
@@ -28769,7 +29400,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28769
29400
  * @request POST:/timeline-entries.get
28770
29401
  * @secure
28771
29402
  */
28772
- timelineEntriesGetPost: (data: TimelineEntriesGetRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesGetResponse, any>>;
29403
+ timelineEntriesGetPost: (data: TimelineEntriesGetRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesGetResponse, any, {}>>;
28773
29404
  /**
28774
29405
  * @description Lists the timeline entries for an object.
28775
29406
  *
@@ -28791,6 +29422,19 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28791
29422
  * all entries are returned.
28792
29423
  */
28793
29424
  collections?: TimelineEntriesCollection[];
29425
+ /**
29426
+ * Filters for objects created after the provided timestamp (inclusive).
29427
+ * @format date-time
29428
+ * @example "2023-01-01T12:00:00.000Z"
29429
+ */
29430
+ 'created_date.after'?: string;
29431
+ /**
29432
+ * Filters for objects created before the provided timestamp
29433
+ * (inclusive).
29434
+ * @format date-time
29435
+ * @example "2023-01-01T12:00:00.000Z"
29436
+ */
29437
+ 'created_date.before'?: string;
28794
29438
  /**
28795
29439
  * The cursor to resume iteration from. If not provided, then iteration
28796
29440
  * starts from the beginning.
@@ -28805,8 +29449,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28805
29449
  */
28806
29450
  labels?: string[];
28807
29451
  /**
28808
- * The maximum number of entries to return. If not set, then this
28809
- * defaults to `50`.
29452
+ * The maximum number of entries to return. Note that fewer (possibly
29453
+ * zero) entries may be returned even if there are more entries, where
29454
+ * the returned cursor(s) are guaranteed to be updated.
28810
29455
  * @format int32
28811
29456
  */
28812
29457
  limit?: number;
@@ -28815,13 +29460,15 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28815
29460
  * used.
28816
29461
  */
28817
29462
  mode?: ListMode;
29463
+ /** Filters for entries to be displayed on the provided panel(s). */
29464
+ panels?: TimelineEntryPanel[];
28818
29465
  /**
28819
29466
  * The visibility of the timeline entries to filter for. Note this is a
28820
29467
  * strict filter, such that only entries with the exact visibilities
28821
29468
  * specified will be returned.
28822
29469
  */
28823
29470
  visibility?: TimelineEntryVisibility[];
28824
- }, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesListResponse, any>>;
29471
+ }, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesListResponse, any, {}>>;
28825
29472
  /**
28826
29473
  * @description Lists the timeline entries for an object.
28827
29474
  *
@@ -28831,7 +29478,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28831
29478
  * @request POST:/timeline-entries.list
28832
29479
  * @secure
28833
29480
  */
28834
- timelineEntriesListPost: (data: TimelineEntriesListRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesListResponse, any>>;
29481
+ timelineEntriesListPost: (data: TimelineEntriesListRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesListResponse, any, {}>>;
28835
29482
  /**
28836
29483
  * @description Updates an entry on an object's timeline.
28837
29484
  *
@@ -28841,7 +29488,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28841
29488
  * @request POST:/timeline-entries.update
28842
29489
  * @secure
28843
29490
  */
28844
- timelineEntriesUpdate: (data: TimelineEntriesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesUpdateResponse, any>>;
29491
+ timelineEntriesUpdate: (data: TimelineEntriesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesUpdateResponse, any, {}>>;
28845
29492
  /**
28846
29493
  * @description Allows publishing of events (example from plug widget).
28847
29494
  *
@@ -28851,7 +29498,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28851
29498
  * @request POST:/track-events.publish
28852
29499
  * @secure
28853
29500
  */
28854
- trackEventsPublish: (data: TrackEventsPublishRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
29501
+ trackEventsPublish: (data: TrackEventsPublishRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
28855
29502
  /**
28856
29503
  * @description Counts the number of Unit of Measurements based on the given filters.
28857
29504
  *
@@ -28883,7 +29530,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28883
29530
  product_ids?: string[];
28884
29531
  /** List of unit types for filtering list of UOMs. */
28885
29532
  unit_types?: UnitType[];
28886
- }, params?: RequestParams) => Promise<AxiosResponse<UomsCountResponse, any>>;
29533
+ }, params?: RequestParams) => Promise<AxiosResponse<UomsCountResponse, any, {}>>;
28887
29534
  /**
28888
29535
  * @description Counts the number of Unit of Measurements based on the given filters.
28889
29536
  *
@@ -28893,7 +29540,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28893
29540
  * @request POST:/uoms.count
28894
29541
  * @secure
28895
29542
  */
28896
- uomsCountPost: (data: UomsCountRequest, params?: RequestParams) => Promise<AxiosResponse<UomsCountResponse, any>>;
29543
+ uomsCountPost: (data: UomsCountRequest, params?: RequestParams) => Promise<AxiosResponse<UomsCountResponse, any, {}>>;
28897
29544
  /**
28898
29545
  * @description Creates a Unit of Measurement on a part.
28899
29546
  *
@@ -28903,7 +29550,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28903
29550
  * @request POST:/uoms.create
28904
29551
  * @secure
28905
29552
  */
28906
- uomsCreate: (data: UomsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<UomsCreateResponse, any>>;
29553
+ uomsCreate: (data: UomsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<UomsCreateResponse, any, {}>>;
28907
29554
  /**
28908
29555
  * @description Deletes a Unit of Measurement.
28909
29556
  *
@@ -28913,7 +29560,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28913
29560
  * @request POST:/uoms.delete
28914
29561
  * @secure
28915
29562
  */
28916
- uomsDelete: (data: UomsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
29563
+ uomsDelete: (data: UomsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
28917
29564
  /**
28918
29565
  * @description Gets a Unit of Measurement.
28919
29566
  *
@@ -28929,7 +29576,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28929
29576
  * @format id
28930
29577
  */
28931
29578
  id: string;
28932
- }, params?: RequestParams) => Promise<AxiosResponse<UomsGetResponse, any>>;
29579
+ }, params?: RequestParams) => Promise<AxiosResponse<UomsGetResponse, any, {}>>;
28933
29580
  /**
28934
29581
  * @description Gets a Unit of Measurement.
28935
29582
  *
@@ -28939,7 +29586,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28939
29586
  * @request POST:/uoms.get
28940
29587
  * @secure
28941
29588
  */
28942
- uomsGetPost: (data: UomsGetRequest, params?: RequestParams) => Promise<AxiosResponse<UomsGetResponse, any>>;
29589
+ uomsGetPost: (data: UomsGetRequest, params?: RequestParams) => Promise<AxiosResponse<UomsGetResponse, any, {}>>;
28943
29590
  /**
28944
29591
  * @description Gets the Unit of Measurements based on the given filters.
28945
29592
  *
@@ -28993,7 +29640,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
28993
29640
  sort_by?: string[];
28994
29641
  /** List of unit types for filtering list of UOMs. */
28995
29642
  unit_types?: UnitType[];
28996
- }, params?: RequestParams) => Promise<AxiosResponse<UomsListResponse, any>>;
29643
+ }, params?: RequestParams) => Promise<AxiosResponse<UomsListResponse, any, {}>>;
28997
29644
  /**
28998
29645
  * @description Gets the Unit of Measurements based on the given filters.
28999
29646
  *
@@ -29003,7 +29650,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29003
29650
  * @request POST:/uoms.list
29004
29651
  * @secure
29005
29652
  */
29006
- uomsListPost: (data: UomsListRequest, params?: RequestParams) => Promise<AxiosResponse<UomsListResponse, any>>;
29653
+ uomsListPost: (data: UomsListRequest, params?: RequestParams) => Promise<AxiosResponse<UomsListResponse, any, {}>>;
29007
29654
  /**
29008
29655
  * @description Updates a Unit of Measurement.
29009
29656
  *
@@ -29013,7 +29660,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29013
29660
  * @request POST:/uoms.update
29014
29661
  * @secure
29015
29662
  */
29016
- uomsUpdate: (data: UomsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UomsUpdateResponse, any>>;
29663
+ uomsUpdate: (data: UomsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UomsUpdateResponse, any, {}>>;
29017
29664
  /**
29018
29665
  * @description Creates a vista.
29019
29666
  *
@@ -29023,7 +29670,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29023
29670
  * @request POST:/vistas.create
29024
29671
  * @secure
29025
29672
  */
29026
- vistasCreate: (data: VistasCreateRequest, params?: RequestParams) => Promise<AxiosResponse<VistasCreateResponse, any>>;
29673
+ vistasCreate: (data: VistasCreateRequest, params?: RequestParams) => Promise<AxiosResponse<VistasCreateResponse, any, {}>>;
29027
29674
  /**
29028
29675
  * @description Deletes the requested vista.
29029
29676
  *
@@ -29033,7 +29680,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29033
29680
  * @request POST:/vistas.delete
29034
29681
  * @secure
29035
29682
  */
29036
- vistasDelete: (data: VistasDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
29683
+ vistasDelete: (data: VistasDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
29037
29684
  /**
29038
29685
  * @description Gets the requested vistas's information.
29039
29686
  *
@@ -29050,7 +29697,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29050
29697
  * @example "VISTA-12345"
29051
29698
  */
29052
29699
  id: string;
29053
- }, params?: RequestParams) => Promise<AxiosResponse<VistasGetResponse, any>>;
29700
+ }, params?: RequestParams) => Promise<AxiosResponse<VistasGetResponse, any, {}>>;
29054
29701
  /**
29055
29702
  * @description Gets the requested vistas's information.
29056
29703
  *
@@ -29060,7 +29707,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29060
29707
  * @request POST:/vistas.get
29061
29708
  * @secure
29062
29709
  */
29063
- vistasGetPost: (data: VistasGetRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGetResponse, any>>;
29710
+ vistasGetPost: (data: VistasGetRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGetResponse, any, {}>>;
29064
29711
  /**
29065
29712
  * @description Deletes the requested vista group item
29066
29713
  *
@@ -29070,7 +29717,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29070
29717
  * @request POST:/vistas.groups.delete
29071
29718
  * @secure
29072
29719
  */
29073
- vistasGroupsDelete: (data: VistasGroupsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
29720
+ vistasGroupsDelete: (data: VistasGroupsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
29074
29721
  /**
29075
29722
  * @description Gets the requested vista group item's information.
29076
29723
  *
@@ -29086,7 +29733,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29086
29733
  * @format id
29087
29734
  */
29088
29735
  id: string;
29089
- }, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsGetResponse, any>>;
29736
+ }, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsGetResponse, any, {}>>;
29090
29737
  /**
29091
29738
  * @description Gets the requested vista group item's information.
29092
29739
  *
@@ -29096,7 +29743,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29096
29743
  * @request POST:/vistas.groups.get
29097
29744
  * @secure
29098
29745
  */
29099
- vistasGroupsGetPost: (data: VistasGroupsGetRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsGetResponse, any>>;
29746
+ vistasGroupsGetPost: (data: VistasGroupsGetRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsGetResponse, any, {}>>;
29100
29747
  /**
29101
29748
  * @description Lists the available vista group items.
29102
29749
  *
@@ -29158,7 +29805,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29158
29805
  state?: VistaGroupItemState[];
29159
29806
  /** Filters for vista group items of the specific type. */
29160
29807
  type?: GroupItemType[];
29161
- }, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsListResponse, any>>;
29808
+ }, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsListResponse, any, {}>>;
29162
29809
  /**
29163
29810
  * @description Lists the available vista group items.
29164
29811
  *
@@ -29168,7 +29815,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29168
29815
  * @request POST:/vistas.groups.list
29169
29816
  * @secure
29170
29817
  */
29171
- vistasGroupsListPost: (data: VistasGroupsListRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsListResponse, any>>;
29818
+ vistasGroupsListPost: (data: VistasGroupsListRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsListResponse, any, {}>>;
29172
29819
  /**
29173
29820
  * @description Lists the available vistas.
29174
29821
  *
@@ -29230,7 +29877,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29230
29877
  state?: VistaGroupItemState[];
29231
29878
  /** Filters for vistas of the specific type. */
29232
29879
  type?: VistaType[];
29233
- }, params?: RequestParams) => Promise<AxiosResponse<VistasListResponse, any>>;
29880
+ }, params?: RequestParams) => Promise<AxiosResponse<VistasListResponse, any, {}>>;
29234
29881
  /**
29235
29882
  * @description Lists the available vistas.
29236
29883
  *
@@ -29240,7 +29887,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29240
29887
  * @request POST:/vistas.list
29241
29888
  * @secure
29242
29889
  */
29243
- vistasListPost: (data: VistasListRequest, params?: RequestParams) => Promise<AxiosResponse<VistasListResponse, any>>;
29890
+ vistasListPost: (data: VistasListRequest, params?: RequestParams) => Promise<AxiosResponse<VistasListResponse, any, {}>>;
29244
29891
  /**
29245
29892
  * @description Change state of a web crawler job to pause or resume it back to running.
29246
29893
  *
@@ -29250,7 +29897,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29250
29897
  * @request POST:/web-crawler-jobs.control
29251
29898
  * @secure
29252
29899
  */
29253
- webCrawlerJobsControl: (data: WebCrawlerJobsControlRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsControlResponse, any>>;
29900
+ webCrawlerJobsControl: (data: WebCrawlerJobsControlRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsControlResponse, any, {}>>;
29254
29901
  /**
29255
29902
  * @description Creates a web crawler job whose objective is to crawl the provided URLs/sitemaps and generate corresponding webpages as artifacts.
29256
29903
  *
@@ -29260,7 +29907,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29260
29907
  * @request POST:/web-crawler-jobs.create
29261
29908
  * @secure
29262
29909
  */
29263
- createWebCrawlerJob: (data: WebCrawlerJobsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsCreateResponse, any>>;
29910
+ createWebCrawlerJob: (data: WebCrawlerJobsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsCreateResponse, any, {}>>;
29264
29911
  /**
29265
29912
  * @description Gets a web crawler job.
29266
29913
  *
@@ -29276,7 +29923,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29276
29923
  * @format id
29277
29924
  */
29278
29925
  id: string;
29279
- }, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsGetResponse, any>>;
29926
+ }, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsGetResponse, any, {}>>;
29280
29927
  /**
29281
29928
  * @description Gets a web crawler job.
29282
29929
  *
@@ -29286,7 +29933,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29286
29933
  * @request POST:/web-crawler-jobs.get
29287
29934
  * @secure
29288
29935
  */
29289
- getWebCrawlerJobPost: (data: WebCrawlerJobsGetRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsGetResponse, any>>;
29936
+ getWebCrawlerJobPost: (data: WebCrawlerJobsGetRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsGetResponse, any, {}>>;
29290
29937
  /**
29291
29938
  * @description Lists web crawler jobs.
29292
29939
  *
@@ -29319,7 +29966,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29319
29966
  * used.
29320
29967
  */
29321
29968
  mode?: ListMode;
29322
- }, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsListResponse, any>>;
29969
+ }, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsListResponse, any, {}>>;
29323
29970
  /**
29324
29971
  * @description Lists web crawler jobs.
29325
29972
  *
@@ -29329,7 +29976,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29329
29976
  * @request POST:/web-crawler-jobs.list
29330
29977
  * @secure
29331
29978
  */
29332
- listWebCrawlerJobsPost: (data: WebCrawlerJobsListRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsListResponse, any>>;
29979
+ listWebCrawlerJobsPost: (data: WebCrawlerJobsListRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsListResponse, any, {}>>;
29333
29980
  /**
29334
29981
  * @description Creates a new webhook target.
29335
29982
  *
@@ -29339,7 +29986,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29339
29986
  * @request POST:/webhooks.create
29340
29987
  * @secure
29341
29988
  */
29342
- webhooksCreate: (data: WebhooksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksCreateResponse, any>>;
29989
+ webhooksCreate: (data: WebhooksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksCreateResponse, any, {}>>;
29343
29990
  /**
29344
29991
  * @description Deletes the requested webhook.
29345
29992
  *
@@ -29349,7 +29996,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29349
29996
  * @request POST:/webhooks.delete
29350
29997
  * @secure
29351
29998
  */
29352
- webhooksDelete: (data: WebhooksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
29999
+ webhooksDelete: (data: WebhooksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
29353
30000
  /**
29354
30001
  * @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
30002
  *
@@ -29359,7 +30006,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29359
30006
  * @request POST:/webhooks.event
29360
30007
  * @secure
29361
30008
  */
29362
- webhooksEvent: (data: WebhookEventRequest, params?: RequestParams) => Promise<AxiosResponse<WebhookEventResponse, any>>;
30009
+ webhooksEvent: (data: WebhookEventRequest, params?: RequestParams) => Promise<AxiosResponse<WebhookEventResponse, any, {}>>;
29363
30010
  /**
29364
30011
  * @description Fetches an object via webhook.
29365
30012
  *
@@ -29369,7 +30016,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29369
30016
  * @request POST:/webhooks.fetch
29370
30017
  * @secure
29371
30018
  */
29372
- webhooksFetch: (data: WebhooksFetchRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
30019
+ webhooksFetch: (data: WebhooksFetchRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
29373
30020
  /**
29374
30021
  * @description Gets the requested webhook's information.
29375
30022
  *
@@ -29386,7 +30033,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29386
30033
  * @example "don:integration:dvrv-us-1:devo/example:webhook/webhook-id"
29387
30034
  */
29388
30035
  id: string;
29389
- }, params?: RequestParams) => Promise<AxiosResponse<WebhooksGetResponse, any>>;
30036
+ }, params?: RequestParams) => Promise<AxiosResponse<WebhooksGetResponse, any, {}>>;
29390
30037
  /**
29391
30038
  * @description Gets the requested webhook's information.
29392
30039
  *
@@ -29396,7 +30043,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29396
30043
  * @request POST:/webhooks.get
29397
30044
  * @secure
29398
30045
  */
29399
- webhooksGetPost: (data: WebhooksGetRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksGetResponse, any>>;
30046
+ webhooksGetPost: (data: WebhooksGetRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksGetResponse, any, {}>>;
29400
30047
  /**
29401
30048
  * @description Lists the webhooks.
29402
30049
  *
@@ -29406,7 +30053,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29406
30053
  * @request GET:/webhooks.list
29407
30054
  * @secure
29408
30055
  */
29409
- webhooksList: (params?: RequestParams) => Promise<AxiosResponse<WebhooksListResponse, any>>;
30056
+ webhooksList: (params?: RequestParams) => Promise<AxiosResponse<WebhooksListResponse, any, {}>>;
29410
30057
  /**
29411
30058
  * @description Lists the webhooks.
29412
30059
  *
@@ -29416,7 +30063,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29416
30063
  * @request POST:/webhooks.list
29417
30064
  * @secure
29418
30065
  */
29419
- webhooksListPost: (data: WebhooksListRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksListResponse, any>>;
30066
+ webhooksListPost: (data: WebhooksListRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksListResponse, any, {}>>;
29420
30067
  /**
29421
30068
  * @description Updates the requested webhook.
29422
30069
  *
@@ -29426,7 +30073,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29426
30073
  * @request POST:/webhooks.update
29427
30074
  * @secure
29428
30075
  */
29429
- webhooksUpdate: (data: WebhooksUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksUpdateResponse, any>>;
30076
+ webhooksUpdate: (data: WebhooksUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksUpdateResponse, any, {}>>;
29430
30077
  /**
29431
30078
  * @description Returns the requested widget.
29432
30079
  *
@@ -29439,10 +30086,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29439
30086
  widgetsGet: (query: {
29440
30087
  /**
29441
30088
  * The requested widget's ID.
29442
- * @format text
30089
+ * @format id
29443
30090
  */
29444
30091
  id: string;
29445
- }, params?: RequestParams) => Promise<AxiosResponse<WidgetsGetResponse, any>>;
30092
+ }, params?: RequestParams) => Promise<AxiosResponse<WidgetsGetResponse, any, {}>>;
29446
30093
  /**
29447
30094
  * @description Returns the requested widget.
29448
30095
  *
@@ -29452,7 +30099,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29452
30099
  * @request POST:/widgets.get
29453
30100
  * @secure
29454
30101
  */
29455
- widgetsGetPost: (data: WidgetsGetRequest, params?: RequestParams) => Promise<AxiosResponse<WidgetsGetResponse, any>>;
30102
+ widgetsGetPost: (data: WidgetsGetRequest, params?: RequestParams) => Promise<AxiosResponse<WidgetsGetResponse, any, {}>>;
29456
30103
  /**
29457
30104
  * @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
30105
  *
@@ -29462,7 +30109,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29462
30109
  * @request POST:/works.create
29463
30110
  * @secure
29464
30111
  */
29465
- worksCreate: (data: WorksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WorksCreateResponse, any>>;
30112
+ worksCreate: (data: WorksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WorksCreateResponse, any, {}>>;
29466
30113
  /**
29467
30114
  * @description Deletes a work item.
29468
30115
  *
@@ -29472,7 +30119,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29472
30119
  * @request POST:/works.delete
29473
30120
  * @secure
29474
30121
  */
29475
- worksDelete: (data: WorksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
30122
+ worksDelete: (data: WorksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
29476
30123
  /**
29477
30124
  * @description Exports a collection of work items.
29478
30125
  *
@@ -29495,6 +30142,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29495
30142
  created_by?: string[];
29496
30143
  /** Filters for custom fields. */
29497
30144
  custom_fields?: object;
30145
+ /** Filters for work with any of the provided external references. */
30146
+ external_ref?: string[];
29498
30147
  /**
29499
30148
  * The number of work items to return. The default is '50', the maximum
29500
30149
  * is '5000'.
@@ -29612,9 +30261,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29612
30261
  'ticket.source_channel_v2'?: string[];
29613
30262
  /** Filters for tickets with any of the provided subtypes. */
29614
30263
  'ticket.subtype'?: string[];
30264
+ /** Visibility enum ID of the ticket. */
30265
+ 'ticket.visibility'?: number[];
29615
30266
  /** Filters for work of the provided types. */
29616
30267
  type?: WorkType[];
29617
- }, params?: RequestParams) => Promise<AxiosResponse<WorksExportResponse, any>>;
30268
+ }, params?: RequestParams) => Promise<AxiosResponse<WorksExportResponse, any, {}>>;
29618
30269
  /**
29619
30270
  * @description Exports a collection of work items.
29620
30271
  *
@@ -29624,7 +30275,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29624
30275
  * @request POST:/works.export
29625
30276
  * @secure
29626
30277
  */
29627
- worksExportPost: (data: WorksExportRequest, params?: RequestParams) => Promise<AxiosResponse<WorksExportResponse, any>>;
30278
+ worksExportPost: (data: WorksExportRequest, params?: RequestParams) => Promise<AxiosResponse<WorksExportResponse, any, {}>>;
29628
30279
  /**
29629
30280
  * @description Gets a work item's information.
29630
30281
  *
@@ -29641,7 +30292,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29641
30292
  * @example "ISS-12345"
29642
30293
  */
29643
30294
  id: string;
29644
- }, params?: RequestParams) => Promise<AxiosResponse<WorksGetResponse, any>>;
30295
+ }, params?: RequestParams) => Promise<AxiosResponse<WorksGetResponse, any, {}>>;
29645
30296
  /**
29646
30297
  * @description Gets a work item's information.
29647
30298
  *
@@ -29651,7 +30302,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29651
30302
  * @request POST:/works.get
29652
30303
  * @secure
29653
30304
  */
29654
- worksGetPost: (data: WorksGetRequest, params?: RequestParams) => Promise<AxiosResponse<WorksGetResponse, any>>;
30305
+ worksGetPost: (data: WorksGetRequest, params?: RequestParams) => Promise<AxiosResponse<WorksGetResponse, any, {}>>;
29655
30306
  /**
29656
30307
  * @description Lists a collection of work items.
29657
30308
  *
@@ -29680,6 +30331,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29680
30331
  cursor?: string;
29681
30332
  /** Filters for custom fields. */
29682
30333
  custom_fields?: object;
30334
+ /** Filters for work with any of the provided external references. */
30335
+ external_ref?: string[];
29683
30336
  /**
29684
30337
  * Filters for issues with any of the provided accounts.
29685
30338
  * @example ["ACC-12345"]
@@ -29801,9 +30454,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29801
30454
  'ticket.source_channel_v2'?: string[];
29802
30455
  /** Filters for tickets with any of the provided subtypes. */
29803
30456
  'ticket.subtype'?: string[];
30457
+ /** Visibility enum ID of the ticket. */
30458
+ 'ticket.visibility'?: number[];
29804
30459
  /** Filters for work of the provided types. */
29805
30460
  type?: WorkType[];
29806
- }, params?: RequestParams) => Promise<AxiosResponse<WorksListResponse, any>>;
30461
+ }, params?: RequestParams) => Promise<AxiosResponse<WorksListResponse, any, {}>>;
29807
30462
  /**
29808
30463
  * @description Lists a collection of work items.
29809
30464
  *
@@ -29813,7 +30468,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29813
30468
  * @request POST:/works.list
29814
30469
  * @secure
29815
30470
  */
29816
- worksListPost: (data: WorksListRequest, params?: RequestParams) => Promise<AxiosResponse<WorksListResponse, any>>;
30471
+ worksListPost: (data: WorksListRequest, params?: RequestParams) => Promise<AxiosResponse<WorksListResponse, any, {}>>;
29817
30472
  /**
29818
30473
  * @description Updates a work item's information.
29819
30474
  *
@@ -29823,5 +30478,5 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
29823
30478
  * @request POST:/works.update
29824
30479
  * @secure
29825
30480
  */
29826
- worksUpdate: (data: WorksUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<WorksUpdateResponse, any>>;
30481
+ worksUpdate: (data: WorksUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<WorksUpdateResponse, any, {}>>;
29827
30482
  }