@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.
@@ -393,6 +393,8 @@ export interface AggregatedSchemaGetResponse {
393
393
  /** List of custom fields from multiple source fragments. */
394
394
  schema: AggregatedSchema;
395
395
  }
396
+ /** ai-agent */
397
+ export type AiAgent = AtomBase;
396
398
  /**
397
399
  * ai-agent-event-execute-error
398
400
  * An error object providing the error message for the AI agent event
@@ -1779,10 +1781,10 @@ export interface AuthTokensCreateRequest {
1779
1781
  */
1780
1782
  client_id?: string;
1781
1783
  /**
1782
- * The expected validity lifetime of the token in number of days. In
1783
- * practice, the value should be based on the usage of the token.
1784
+ * The expected validity lifetime of the token in number of days. The
1785
+ * value must be less than or equal to 1825 days (5 years).
1784
1786
  * @min 0
1785
- * @max 4294967295
1787
+ * @max 1825
1786
1788
  */
1787
1789
  expires_in?: number;
1788
1790
  /** Specifies the process of obtaining a token. */
@@ -2823,6 +2825,70 @@ export interface CompositeSchema {
2823
2825
  */
2824
2826
  name?: string;
2825
2827
  }
2828
+ /**
2829
+ * configuration
2830
+ * Settings related to payment, proration, etc. Configurations may or may
2831
+ * not be defined by a DevO. 1. If DevO defines configurations then same
2832
+ * configurations are copied to RevO also to sub pack (for now, later RevO
2833
+ * can also set) 2. If DevO doesn't set anything then these configurations
2834
+ * would be set to default by application for which they were being
2835
+ * defined (for eg. if DevO doesn't set payment method for it's RevOs then
2836
+ * stripe would set it to 'charge_automatically' by default).
2837
+ */
2838
+ export interface Configuration {
2839
+ /**
2840
+ * Charge collection strategy for the service plan. Defaults to
2841
+ * charge_automatically.
2842
+ */
2843
+ collection_method?: ConfigurationCollectionMethod;
2844
+ /**
2845
+ * Number of days a customer has to pay invoices generated by this
2846
+ * subscription. If collection method is set to send_invoice then this
2847
+ * field is mandatory.
2848
+ * @format int32
2849
+ */
2850
+ days_until_due?: number;
2851
+ /**
2852
+ * Whether to generate invoice immediately if the service plan is
2853
+ * cancelled. Defaults to false.
2854
+ */
2855
+ invoice_now_on_cancel_service_plan?: boolean;
2856
+ /**
2857
+ * If pending update is allowed or not, this is for those cases where
2858
+ * an additional step of authentication or manual approval is required
2859
+ * for the payment. Defaults to false. If this is true, then Proration
2860
+ * behavior should be always_invoice, and collection method should be
2861
+ * charge_automatically.
2862
+ */
2863
+ pending_update?: boolean;
2864
+ /**
2865
+ * Whether to prorate if the service plan is cancelled. Defaults to
2866
+ * false.
2867
+ */
2868
+ prorate_on_cancel_service_plan?: boolean;
2869
+ /**
2870
+ * Determines how to handle prorations resulting from the billing_date. If
2871
+ * no value is passed, the default is create_prorations.
2872
+ */
2873
+ proration_behavior?: ConfigurationProrationBehavior;
2874
+ }
2875
+ /**
2876
+ * Charge collection strategy for the service plan. Defaults to
2877
+ * charge_automatically.
2878
+ */
2879
+ export declare enum ConfigurationCollectionMethod {
2880
+ ChargeAutomatically = "charge_automatically",
2881
+ SendInvoice = "send_invoice"
2882
+ }
2883
+ /**
2884
+ * Determines how to handle prorations resulting from the billing_date. If
2885
+ * no value is passed, the default is create_prorations.
2886
+ */
2887
+ export declare enum ConfigurationProrationBehavior {
2888
+ AlwaysInvoice = "always_invoice",
2889
+ CreateProrations = "create_prorations",
2890
+ None = "none"
2891
+ }
2826
2892
  /** conversation */
2827
2893
  export type Conversation = AtomBase & {
2828
2894
  /** Details of the parts relevant to the conversation. */
@@ -2835,6 +2901,8 @@ export type Conversation = AtomBase & {
2835
2901
  */
2836
2902
  description?: string;
2837
2903
  group?: GroupSummary;
2904
+ /** Whether the object is frozen or not. */
2905
+ is_frozen?: boolean;
2838
2906
  /** The users in the conversation. */
2839
2907
  members: UserSummary[];
2840
2908
  /** The latest messages on the conversation. */
@@ -4787,6 +4855,11 @@ export interface DevUsersListRequest {
4787
4855
  sort_by?: string[];
4788
4856
  /** Filters Dev users based on state. */
4789
4857
  state?: UserState[];
4858
+ /**
4859
+ * Filters for Dev users in the specified time zone in IANA format
4860
+ * (e.g., 'America/Los_Angeles').
4861
+ */
4862
+ timezone?: string[];
4790
4863
  }
4791
4864
  /**
4792
4865
  * dev-users-list-response
@@ -5057,7 +5130,7 @@ export interface DirectoriesGetRequest {
5057
5130
  * The ID of the requested directory.
5058
5131
  * @format id
5059
5132
  */
5060
- id: string;
5133
+ id?: string;
5061
5134
  }
5062
5135
  /**
5063
5136
  * directories-get-response
@@ -5874,6 +5947,19 @@ export interface EventAccountUpdated {
5874
5947
  account: Account;
5875
5948
  old_account?: Account;
5876
5949
  }
5950
+ /** event-ai-agent-created */
5951
+ export interface EventAiAgentCreated {
5952
+ ai_agent: AiAgent;
5953
+ }
5954
+ /** event-ai-agent-deleted */
5955
+ export interface EventAiAgentDeleted {
5956
+ /**
5957
+ * The ID of the AI Agent that was deleted.
5958
+ * @format id
5959
+ */
5960
+ id: string;
5961
+ old_ai_agent?: AiAgent;
5962
+ }
5877
5963
  /** event-ai-agent-response */
5878
5964
  export interface EventAiAgentResponse {
5879
5965
  /**
@@ -5915,6 +6001,11 @@ export interface EventAiAgentResponse {
5915
6001
  /** A list of suggestions generated for the AI agent event. */
5916
6002
  suggestions?: AiAgentEventSuggestions;
5917
6003
  }
6004
+ /** event-ai-agent-updated */
6005
+ export interface EventAiAgentUpdated {
6006
+ ai_agent: AiAgent;
6007
+ old_ai_agent?: AiAgent;
6008
+ }
5918
6009
  /** event-article-created */
5919
6010
  export interface EventArticleCreated {
5920
6011
  article: Article;
@@ -6130,6 +6221,15 @@ export interface EventRevUserUpdated {
6130
6221
  old_rev_user?: RevUser;
6131
6222
  rev_user: RevUser;
6132
6223
  }
6224
+ /** event-service-plan-created */
6225
+ export interface EventServicePlanCreated {
6226
+ service_plan: ServicePlan;
6227
+ }
6228
+ /** event-service-plan-updated */
6229
+ export interface EventServicePlanUpdated {
6230
+ old_service_plan?: ServicePlan;
6231
+ service_plan: ServicePlan;
6232
+ }
6133
6233
  /** event-sla-tracker-created */
6134
6234
  export interface EventSlaTrackerCreated {
6135
6235
  sla_tracker: SlaTracker;
@@ -6339,6 +6439,24 @@ export interface EventWorkUpdated {
6339
6439
  old_work?: Work;
6340
6440
  work: Work;
6341
6441
  }
6442
+ /** event-workflow-created */
6443
+ export interface EventWorkflowCreated {
6444
+ workflow: Workflow;
6445
+ }
6446
+ /** event-workflow-deleted */
6447
+ export interface EventWorkflowDeleted {
6448
+ /**
6449
+ * The ID of the workflow that was deleted.
6450
+ * @format id
6451
+ */
6452
+ id: string;
6453
+ old_workflow?: Workflow;
6454
+ }
6455
+ /** event-workflow-updated */
6456
+ export interface EventWorkflowUpdated {
6457
+ old_workflow?: Workflow;
6458
+ workflow: Workflow;
6459
+ }
6342
6460
  /** external-communication-channel-summary */
6343
6461
  export type ExternalCommunicationChannelSummary = AtomBaseSummary;
6344
6462
  /**
@@ -6840,6 +6958,9 @@ export type Incident = AtomBase & {
6840
6958
  reported_by?: EnumValue;
6841
6959
  /** The properties of an enum value. */
6842
6960
  severity?: EnumValue;
6961
+ /** SLA summary for the object. */
6962
+ sla_summary?: ArchetypeSlaSummary;
6963
+ sla_tracker?: SlaTrackerSummary;
6843
6964
  /** The properties of an enum value. */
6844
6965
  source?: EnumValue;
6845
6966
  /** Describes the current stage of a object. */
@@ -6987,6 +7108,21 @@ export interface LegacyStageSummary {
6987
7108
  */
6988
7109
  name: string;
6989
7110
  }
7111
+ /** line-item-base-summary */
7112
+ export type LineItemBaseSummary = AtomBaseSummary & {
7113
+ pricing: PricingSummary;
7114
+ /**
7115
+ * The quantity of units purchased.
7116
+ * @format int32
7117
+ */
7118
+ quantity?: number;
7119
+ sku: SkuSummary;
7120
+ /**
7121
+ * The used quantity units.
7122
+ * @format int32
7123
+ */
7124
+ used_quantity?: number;
7125
+ };
6990
7126
  /**
6991
7127
  * lines-of-code
6992
7128
  * Details of lines of code in this code change.
@@ -7248,7 +7384,10 @@ export declare enum ListMode {
7248
7384
  Before = "before"
7249
7385
  }
7250
7386
  /** meeting */
7251
- export type Meeting = AtomBase;
7387
+ export type Meeting = AtomBase & {
7388
+ /** The properties of an enum value. */
7389
+ visibility?: EnumValue;
7390
+ };
7252
7391
  /** The channel of meeting. */
7253
7392
  export declare enum MeetingChannel {
7254
7393
  AmazonConnect = "amazon_connect",
@@ -7913,6 +8052,8 @@ export interface MetricTrackersGetRequest {
7913
8052
  export interface MetricTrackersGetResponse {
7914
8053
  metric_tracker: MetricTracker;
7915
8054
  }
8055
+ /** one-time-line-item-summary */
8056
+ export type OneTimeLineItemSummary = LineItemBaseSummary;
7916
8057
  /** org-base */
7917
8058
  export type OrgBase = AtomBase & {
7918
8059
  /**
@@ -8555,6 +8696,8 @@ export interface PartsListRequest {
8555
8696
  * @example ["DEVU-12345"]
8556
8697
  */
8557
8698
  created_by?: string[];
8699
+ /** Provides ways to specify date ranges on objects. */
8700
+ created_date_v2?: DateFilter;
8558
8701
  /**
8559
8702
  * The cursor to resume iteration from. If not provided, then
8560
8703
  * iteration starts from the beginning.
@@ -8579,6 +8722,8 @@ export interface PartsListRequest {
8579
8722
  * @example ["DEVU-12345"]
8580
8723
  */
8581
8724
  modified_by?: string[];
8725
+ /** Provides ways to specify date ranges on objects. */
8726
+ modified_date_v2?: DateFilter;
8582
8727
  /** Filters for parts of the provided name(s). */
8583
8728
  name?: string[];
8584
8729
  /**
@@ -8697,6 +8842,74 @@ export declare enum PartsVistaGroupItemType {
8697
8842
  Curated = "curated",
8698
8843
  Dynamic = "dynamic"
8699
8844
  }
8845
+ /**
8846
+ * price-slab-summary
8847
+ * Helps in defining the range pricing for cases such as tiered pricing,
8848
+ * volume pricing etc. For Example, if the pricing for first 100 api calls
8849
+ * per calls is $X and after that its $Y till infinity.
8850
+ */
8851
+ export interface PriceSlabSummary {
8852
+ /**
8853
+ * The flat price for the complete slab, irrespective of qunatity one
8854
+ * uses in this price slab. This can be set only if unit price is set.
8855
+ * @format double
8856
+ */
8857
+ flat_price?: number;
8858
+ /**
8859
+ * The price for each unit.
8860
+ * @format double
8861
+ */
8862
+ unit_price?: number;
8863
+ /**
8864
+ * the quantity upto which this price is applicable. You can set this
8865
+ * value only if up to infinity is not set to true.
8866
+ * @format int32
8867
+ */
8868
+ up_to?: number;
8869
+ /**
8870
+ * If true, this price slab is applicable for all the remaining
8871
+ * quantities till infinity.
8872
+ */
8873
+ up_to_inf?: boolean;
8874
+ }
8875
+ /** Billing frequency of the SKU. */
8876
+ export declare enum PricingBillingCycle {
8877
+ Monthly = "monthly",
8878
+ OneTime = "one_time",
8879
+ Yearly = "yearly"
8880
+ }
8881
+ /** pricing-summary */
8882
+ export type PricingSummary = AtomBaseSummary & {
8883
+ /** Billing frequency of the SKU. */
8884
+ billing_cycle: PricingBillingCycle;
8885
+ /**
8886
+ * Number of units in each block. For example, If the metered units is
8887
+ * 540 and the block size is 100. Then the quantity will be 5.4. The
8888
+ * default value is 1.
8889
+ * @format int32
8890
+ */
8891
+ block_size?: number;
8892
+ /**
8893
+ * Currency used for the pricing. For example, USD, INR etc. Defaults
8894
+ * to USD.
8895
+ * @format text
8896
+ */
8897
+ currency: string;
8898
+ /**
8899
+ * if true then this pricing object can be used for new purchases. If
8900
+ * false then no new purchases can be made with this pricing object
8901
+ * but existing purchases can still use this pricing object. Defaults
8902
+ * to true.
8903
+ */
8904
+ is_active?: boolean;
8905
+ /**
8906
+ * Whether the slabs should be priced tiered or flat. The default
8907
+ * value is false.
8908
+ */
8909
+ is_tiered?: boolean;
8910
+ /** List of price slabs for the given currency. */
8911
+ price_slabs: PriceSlabSummary[];
8912
+ };
8700
8913
  /** product */
8701
8914
  export type Product = PartBase;
8702
8915
  /** product-summary */
@@ -8807,6 +9020,8 @@ export declare enum ReactionsUpdateRequestAction {
8807
9020
  }
8808
9021
  /** reactions-update-response */
8809
9022
  export type ReactionsUpdateResponse = object;
9023
+ /** recurring-line-item-summary */
9024
+ export type RecurringLineItemSummary = LineItemBaseSummary;
8810
9025
  /** remove-tag-with-value */
8811
9026
  export interface RemoveTagWithValue {
8812
9027
  /**
@@ -10178,6 +10393,71 @@ export interface ServiceAccountsGetRequest {
10178
10393
  export interface ServiceAccountsGetResponse {
10179
10394
  service_account: ServiceAccount;
10180
10395
  }
10396
+ /** service-plan */
10397
+ export type ServicePlan = AtomBase & {
10398
+ account?: AccountSummary;
10399
+ /** The billing frequency of the service plan. */
10400
+ billing_cycle: ServicePlanBillingCycle;
10401
+ /**
10402
+ * Settings related to payment, proration, etc. Configurations may or may
10403
+ * not be defined by a DevO. 1. If DevO defines configurations then same
10404
+ * configurations are copied to RevO also to sub pack (for now, later RevO
10405
+ * can also set) 2. If DevO doesn't set anything then these configurations
10406
+ * would be set to default by application for which they were being
10407
+ * defined (for eg. if DevO doesn't set payment method for it's RevOs then
10408
+ * stripe would set it to 'charge_automatically' by default).
10409
+ */
10410
+ configurations?: Configuration;
10411
+ /**
10412
+ * The currency on which the service plan is created.
10413
+ * @format text
10414
+ */
10415
+ currency: string;
10416
+ /**
10417
+ * Description for the Service Plan.
10418
+ * @format text
10419
+ */
10420
+ description?: string;
10421
+ /**
10422
+ * Human readable name for the service plan.
10423
+ * @format text
10424
+ */
10425
+ name: string;
10426
+ /** The one-time invoice items attached to the service plan. */
10427
+ one_time_line_items?: OneTimeLineItemSummary[];
10428
+ /** The recurring items inside the service plan. */
10429
+ recurring_line_items?: RecurringLineItemSummary[];
10430
+ rev_org: OrgSummary;
10431
+ /**
10432
+ * The status of the service plan indicates its current state. If the
10433
+ * status is 'active,' it means the service plan items are in use and
10434
+ * billed every cycle. If the status is 'cancelled,' it signifies that the
10435
+ * service plan has been terminated and is no longer active or considered
10436
+ * for billing.
10437
+ */
10438
+ status?: ServicePlanStatus;
10439
+ /**
10440
+ * The trial details store the time interval periods during which the
10441
+ * services offered in the service plan are not charged.
10442
+ */
10443
+ trial_details?: TrialPeriod[];
10444
+ };
10445
+ /** The billing frequency of the service plan. */
10446
+ export declare enum ServicePlanBillingCycle {
10447
+ Monthly = "monthly"
10448
+ }
10449
+ /**
10450
+ * The status of the service plan indicates its current state. If the
10451
+ * status is 'active,' it means the service plan items are in use and
10452
+ * billed every cycle. If the status is 'cancelled,' it signifies that the
10453
+ * service plan has been terminated and is no longer active or considered
10454
+ * for billing.
10455
+ */
10456
+ export declare enum ServicePlanStatus {
10457
+ Active = "active",
10458
+ Cancelled = "cancelled",
10459
+ Paused = "paused"
10460
+ }
10181
10461
  /** set-issue-selector */
10182
10462
  export interface SetIssueSelector {
10183
10463
  /**
@@ -10373,6 +10653,70 @@ export interface SharedWithMembershipFilter {
10373
10653
  */
10374
10654
  role?: string;
10375
10655
  }
10656
+ /**
10657
+ * Current state of the SKU. A SKU is visible to RevOs only when it is
10658
+ * released.
10659
+ */
10660
+ export declare enum SkuState {
10661
+ Approved = "approved",
10662
+ Draft = "draft",
10663
+ EndOfLife = "end_of_life",
10664
+ EndOfSale = "end_of_sale",
10665
+ Released = "released"
10666
+ }
10667
+ /** sku-summary */
10668
+ export type SkuSummary = AtomBaseSummary & {
10669
+ /**
10670
+ * Description of the SKU.
10671
+ * @format text
10672
+ */
10673
+ description?: string;
10674
+ /**
10675
+ * Human readable name of the SKU. For example; Basic, Premium, etc.
10676
+ * @format text
10677
+ */
10678
+ family_name: string;
10679
+ /**
10680
+ * Invoice Description is meant to be displayable on the invoice
10681
+ * against the usage for the SKU.
10682
+ * @format text
10683
+ */
10684
+ invoice_description?: string;
10685
+ /**
10686
+ * If flag is enabled then the usage will be prorated for the time the
10687
+ * SKU is active.
10688
+ */
10689
+ is_duration_based_proration_enabled?: boolean;
10690
+ /**
10691
+ * Indicates whether the SKU, particularly of type subscription, is a
10692
+ * user based licensed SKU. If set to true, the licensing mechanism
10693
+ * for the SKU is based on the number of individual users, each unique
10694
+ * user is required to have a separate license.
10695
+ */
10696
+ is_user_based_license?: boolean;
10697
+ /**
10698
+ * Minimum duration in minutes for the SKU usage after which the SKU
10699
+ * would be charged.
10700
+ * @format int32
10701
+ */
10702
+ minimum_duration_to_charge?: number;
10703
+ /** It defines the type of SKU. */
10704
+ sku_type: SkuType;
10705
+ /**
10706
+ * Current state of the SKU. A SKU is visible to RevOs only when it is
10707
+ * released.
10708
+ */
10709
+ state: SkuState;
10710
+ };
10711
+ /** It defines the type of SKU. */
10712
+ export declare enum SkuType {
10713
+ Consumption = "consumption",
10714
+ ConsumptionAddon = "consumption_addon",
10715
+ OneOffAddon = "one_off_addon",
10716
+ OneOffCharge = "one_off_charge",
10717
+ Subscription = "subscription",
10718
+ SubscriptionAddon = "subscription_addon"
10719
+ }
10376
10720
  /** sla */
10377
10721
  export type Sla = AtomBase & {
10378
10722
  /**
@@ -12079,6 +12423,8 @@ export type Ticket = WorkBase & {
12079
12423
  /** Channel IDs of the ticket. */
12080
12424
  channels_v2?: ExternalCommunicationChannelSummary[];
12081
12425
  group?: GroupSummary;
12426
+ /** Whether the object is frozen or not. */
12427
+ is_frozen?: boolean;
12082
12428
  /** Whether the ticket needs a response. */
12083
12429
  needs_response?: boolean;
12084
12430
  rev_org?: OrgSummary;
@@ -12131,8 +12477,40 @@ export type TicketSummary = WorkBaseSummary & {
12131
12477
  /** Severity of the ticket. */
12132
12478
  severity?: TicketSeverity;
12133
12479
  };
12480
+ /**
12481
+ * time-interval
12482
+ * A time period between two concrete timestamps.
12483
+ */
12484
+ export type TimeInterval = object;
12134
12485
  /** time-metric-tracker */
12135
- export type TimeMetricTracker = MetricTrackerBase;
12486
+ export type TimeMetricTracker = MetricTrackerBase & {
12487
+ /**
12488
+ * Intervals already in the past when the metric was on. It might have
12489
+ * been out-of-schedule in those times however.
12490
+ */
12491
+ active_intervals?: TimeInterval[];
12492
+ /**
12493
+ * The time the metric was last started if it's in a running state.
12494
+ * @format date-time
12495
+ * @example "2023-01-01T12:00:00.000Z"
12496
+ */
12497
+ last_started_at?: string;
12498
+ org_schedule?: OrgScheduleSummary;
12499
+ /** The current status of the metric. */
12500
+ status: TimeMetricTrackerStatus;
12501
+ /**
12502
+ * The amount of time already consumed when the metric was last
12503
+ * stopped. Units are same as present in metric definition.
12504
+ * @format int32
12505
+ */
12506
+ time_consumed?: number;
12507
+ };
12508
+ /** The current status of the metric. */
12509
+ export declare enum TimeMetricTrackerStatus {
12510
+ Completed = "completed",
12511
+ Paused = "paused",
12512
+ Running = "running"
12513
+ }
12136
12514
  /** time-metric-tracker-summary */
12137
12515
  export type TimeMetricTrackerSummary = MetricTrackerBaseSummary;
12138
12516
  /** timeline-comment */
@@ -12166,12 +12544,22 @@ export declare enum TimelineCommentBodyType {
12166
12544
  }
12167
12545
  /** timeline-comment-summary */
12168
12546
  export type TimelineCommentSummary = TimelineEntryBaseSummary;
12547
+ /** Describes collections of timeline entries. */
12548
+ export declare enum TimelineEntriesCollection {
12549
+ Discussions = "discussions",
12550
+ Events = "events"
12551
+ }
12169
12552
  /**
12170
12553
  * timeline-entries-create-request
12171
12554
  * The request to create a timeline entry for an object.
12172
12555
  */
12173
12556
  export type TimelineEntriesCreateRequest = TimelineEntriesCreateRequestTimelineComment & {
12174
12557
  type: TimelineEntriesCreateRequestType;
12558
+ /**
12559
+ * The collection(s) that the entry belongs to, otherwise if not
12560
+ * provided, then the entry's default collection is used.
12561
+ */
12562
+ collections?: TimelineEntriesCollection[];
12175
12563
  /**
12176
12564
  * If set, then the entry is ephemeral and will be deleted after the
12177
12565
  * provided time. The minimum value should be at least a minute more
@@ -12180,6 +12568,13 @@ export type TimelineEntriesCreateRequest = TimelineEntriesCreateRequestTimelineC
12180
12568
  * @example "2023-01-01T12:00:00.000Z"
12181
12569
  */
12182
12570
  expires_at?: string;
12571
+ /**
12572
+ * The labels to be associated with the entry.
12573
+ * @minLength 1
12574
+ * @maxLength 64
12575
+ * @maxItems 16
12576
+ */
12577
+ labels?: string[];
12183
12578
  /**
12184
12579
  * The ID of the object to create the timeline entry for.
12185
12580
  * @format id
@@ -12217,8 +12612,26 @@ export interface TimelineEntriesCreateRequestTimelineComment {
12217
12612
  body?: string;
12218
12613
  /** The type of the body to use for the comment. */
12219
12614
  body_type?: TimelineCommentBodyType;
12615
+ /**
12616
+ * The external reference for the comment. This must be unique within
12617
+ * the object's timeline.
12618
+ * @format text
12619
+ * @minLength 1
12620
+ * @maxLength 512
12621
+ */
12622
+ external_ref?: string;
12623
+ /**
12624
+ * The IDs of the previews of the links posted in the comment.
12625
+ * @example ["don:core:dvrv-us-1:devo/example:snap_widget/snap-widget-id"]
12626
+ */
12627
+ link_previews?: string[];
12220
12628
  /** Snap Kit Body of the comment. */
12221
12629
  snap_kit_body?: TimelineSnapKitBody;
12630
+ /**
12631
+ * The snap widget body of the comment.
12632
+ * @example ["don:core:dvrv-us-1:devo/example:snap_widget/snap-widget-id"]
12633
+ */
12634
+ snap_widget_body?: string[];
12222
12635
  }
12223
12636
  export declare enum TimelineEntriesCreateRequestType {
12224
12637
  TimelineComment = "timeline_comment"
@@ -12252,6 +12665,14 @@ export type TimelineEntriesDeleteResponse = object;
12252
12665
  * The request to get a timeline entry.
12253
12666
  */
12254
12667
  export interface TimelineEntriesGetRequest {
12668
+ /**
12669
+ * If set, then gets the entry with the given external reference for
12670
+ * the provided entry ID's timeline.
12671
+ * @format text
12672
+ * @minLength 1
12673
+ * @maxLength 512
12674
+ */
12675
+ external_ref?: string;
12255
12676
  /**
12256
12677
  * The ID of the timeline entry to get.
12257
12678
  * @format id
@@ -12271,6 +12692,12 @@ export interface TimelineEntriesGetResponse {
12271
12692
  * The request to list timeline entries for an object.
12272
12693
  */
12273
12694
  export interface TimelineEntriesListRequest {
12695
+ /**
12696
+ * The collection(s) to list entries from, otherwise if not provided,
12697
+ * all entries are returned.
12698
+ */
12699
+ collections?: TimelineEntriesCollection[];
12700
+ created_date?: DateTimeFilter;
12274
12701
  /**
12275
12702
  * The cursor to resume iteration from. If not provided, then
12276
12703
  * iteration starts from the beginning.
@@ -12278,8 +12705,17 @@ export interface TimelineEntriesListRequest {
12278
12705
  */
12279
12706
  cursor?: string;
12280
12707
  /**
12281
- * The maximum number of entries to return. If not set, then this
12282
- * defaults to `50`.
12708
+ * Filters for entries containing at least one of the provided labels,
12709
+ * otherwise if no labels are provided, then no label filtering is
12710
+ * done.
12711
+ * @minLength 1
12712
+ * @maxLength 64
12713
+ */
12714
+ labels?: string[];
12715
+ /**
12716
+ * The maximum number of entries to return. Note that fewer (possibly
12717
+ * zero) entries may be returned even if there are more entries, where
12718
+ * the returned cursor(s) are guaranteed to be updated.
12283
12719
  * @format int32
12284
12720
  */
12285
12721
  limit?: number;
@@ -12347,6 +12783,16 @@ export interface TimelineEntriesUpdateRequestTimelineComment {
12347
12783
  body?: string;
12348
12784
  /** The type of the body to use for the comment. */
12349
12785
  body_type?: TimelineCommentBodyType;
12786
+ /**
12787
+ * The updated external reference for the comment. If set, this must
12788
+ * be unique within the object's timeline, otherwise if null, then
12789
+ * clears the value.
12790
+ * @format text
12791
+ * @minLength 1
12792
+ * @maxLength 512
12793
+ */
12794
+ external_ref?: string | null;
12795
+ link_previews?: TimelineEntriesUpdateRequestTimelineCommentLinkPreviews;
12350
12796
  /** Snap Kit Body of the comment. */
12351
12797
  snap_kit_body?: TimelineSnapKitBody;
12352
12798
  }
@@ -12374,6 +12820,28 @@ export interface TimelineEntriesUpdateRequestTimelineCommentArtifacts {
12374
12820
  */
12375
12821
  set?: string[];
12376
12822
  }
12823
+ /** timeline-entries-update-request-timeline-comment-link-previews */
12824
+ export interface TimelineEntriesUpdateRequestTimelineCommentLinkPreviews {
12825
+ /**
12826
+ * Adds the provided link previews to the comment. A link preview
12827
+ * cannot be added more than once, i.e. nothing is done if the link
12828
+ * preview is already present. Mutually exclusive with `set`.
12829
+ * @example ["don:core:dvrv-us-1:devo/example:snap_widget/snap-widget-id"]
12830
+ */
12831
+ add?: string[];
12832
+ /**
12833
+ * Removes the provided link previews from the comment. If a link
12834
+ * preview is not present, then it's ignored. Mutually exclusive with
12835
+ * `set`.
12836
+ * @example ["don:core:dvrv-us-1:devo/example:snap_widget/snap-widget-id"]
12837
+ */
12838
+ remove?: string[];
12839
+ /**
12840
+ * Set the link previews to the provided IDs.
12841
+ * @example ["don:core:dvrv-us-1:devo/example:snap_widget/snap-widget-id"]
12842
+ */
12843
+ set?: string[];
12844
+ }
12377
12845
  export declare enum TimelineEntriesUpdateRequestType {
12378
12846
  TimelineComment = "timeline_comment"
12379
12847
  }
@@ -12465,6 +12933,25 @@ export interface TimelineSnapKitBody {
12465
12933
  */
12466
12934
  snap_in_id?: string;
12467
12935
  }
12936
+ /**
12937
+ * trial-period
12938
+ * The trial period duration during which the services offered in the
12939
+ * service plan are not charged.
12940
+ */
12941
+ export interface TrialPeriod {
12942
+ /**
12943
+ * Trial period end time.
12944
+ * @format date-time
12945
+ * @example "2023-01-01T12:00:00.000Z"
12946
+ */
12947
+ trial_period_end_time: string;
12948
+ /**
12949
+ * Trial period start time.
12950
+ * @format date-time
12951
+ * @example "2023-01-01T12:00:00.000Z"
12952
+ */
12953
+ trial_period_start_time: string;
12954
+ }
12468
12955
  /** update-command-action */
12469
12956
  export interface UpdateCommandAction {
12470
12957
  action_details?: UpdateCommandActionDetails;
@@ -13312,7 +13799,10 @@ export interface WebhookEventRequest {
13312
13799
  account_created?: EventAccountCreated;
13313
13800
  account_deleted?: EventAccountDeleted;
13314
13801
  account_updated?: EventAccountUpdated;
13802
+ ai_agent_created?: EventAiAgentCreated;
13803
+ ai_agent_deleted?: EventAiAgentDeleted;
13315
13804
  ai_agent_response?: EventAiAgentResponse;
13805
+ ai_agent_updated?: EventAiAgentUpdated;
13316
13806
  article_created?: EventArticleCreated;
13317
13807
  article_deleted?: EventArticleDeleted;
13318
13808
  article_updated?: EventArticleUpdated;
@@ -13353,6 +13843,8 @@ export interface WebhookEventRequest {
13353
13843
  rev_user_created?: EventRevUserCreated;
13354
13844
  rev_user_deleted?: EventRevUserDeleted;
13355
13845
  rev_user_updated?: EventRevUserUpdated;
13846
+ service_plan_created?: EventServicePlanCreated;
13847
+ service_plan_updated?: EventServicePlanUpdated;
13356
13848
  sla_tracker_created?: EventSlaTrackerCreated;
13357
13849
  sla_tracker_deleted?: EventSlaTrackerDeleted;
13358
13850
  sla_tracker_fetched?: EventSlaTrackerFetched;
@@ -13398,6 +13890,9 @@ export interface WebhookEventRequest {
13398
13890
  work_deleted?: EventWorkDeleted;
13399
13891
  work_fetched?: EventWorkFetched;
13400
13892
  work_updated?: EventWorkUpdated;
13893
+ workflow_created?: EventWorkflowCreated;
13894
+ workflow_deleted?: EventWorkflowDeleted;
13895
+ workflow_updated?: EventWorkflowUpdated;
13401
13896
  }
13402
13897
  /** webhook-event-response */
13403
13898
  export interface WebhookEventResponse {
@@ -13689,6 +14184,20 @@ export type WorkBase = AtomBase & {
13689
14184
  * @format text
13690
14185
  */
13691
14186
  body?: string;
14187
+ /** Custom fields. */
14188
+ custom_fields?: object;
14189
+ /**
14190
+ * Custom schema fragments.
14191
+ * @example ["don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"]
14192
+ */
14193
+ custom_schema_fragments?: string[];
14194
+ /**
14195
+ * An opaque key that's associated with the work item that's
14196
+ * guaranteed to be unique across all work items of same type (issue,
14197
+ * ticket, etc).
14198
+ * @format text
14199
+ */
14200
+ external_ref?: string;
13692
14201
  /** The users that own the work. */
13693
14202
  owned_by: UserSummary[];
13694
14203
  /** Users that reported the work. */
@@ -13700,6 +14209,17 @@ export type WorkBase = AtomBase & {
13700
14209
  * @format text
13701
14210
  */
13702
14211
  state_display_name?: string;
14212
+ /**
14213
+ * Stock schema fragment.
14214
+ * @format id
14215
+ * @example "don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"
14216
+ */
14217
+ stock_schema_fragment?: string;
14218
+ /**
14219
+ * Subtype corresponding to the custom type fragment.
14220
+ * @format text
14221
+ */
14222
+ subtype?: string;
13703
14223
  /** Tags associated with the object. */
13704
14224
  tags?: TagWithValue[];
13705
14225
  /**
@@ -13735,6 +14255,8 @@ export declare enum WorkType {
13735
14255
  Issue = "issue",
13736
14256
  Ticket = "ticket"
13737
14257
  }
14258
+ /** workflow */
14259
+ export type Workflow = AtomBase;
13738
14260
  /** workflow-run-summary */
13739
14261
  export type WorkflowRunSummary = AtomBaseSummary;
13740
14262
  /** workflow-summary */
@@ -13761,6 +14283,30 @@ export type WorksCreateRequest = (WorksCreateRequestIssue | WorksCreateRequestTi
13761
14283
  * @maxLength 65536
13762
14284
  */
13763
14285
  body?: string;
14286
+ /** Custom fields. */
14287
+ custom_fields?: object;
14288
+ /**
14289
+ * The custom schema fragments to use.
14290
+ * @example ["don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"]
14291
+ */
14292
+ custom_schema_fragments?: string[];
14293
+ /**
14294
+ * Custom schemas described using identifiers. Each custom field in the
14295
+ * request must have the corresponding schema specified; omission results
14296
+ * in a Bad Request error. If a custom schema is not included in the
14297
+ * specifier, it remains unchanged. For surfaces with human interactors,
14298
+ * it is recommended to provide tenant_fragment: true and
14299
+ * validate_required_fields: true.
14300
+ */
14301
+ custom_schema_spec?: CustomSchemaSpec;
14302
+ /**
14303
+ * The external reference for the work item. This must be unique
14304
+ * within the type of work item.
14305
+ * @format text
14306
+ * @minLength 1
14307
+ * @maxLength 512
14308
+ */
14309
+ external_ref?: string;
13764
14310
  /**
13765
14311
  * The users that own the work.
13766
14312
  * @example ["DEVU-12345"]
@@ -13884,6 +14430,25 @@ export interface WorksCreateRequestTicket {
13884
14430
  * @format id
13885
14431
  */
13886
14432
  source_channel_v2?: string;
14433
+ /**
14434
+ * Visibility enum ID of the ticket. Stock allowed values:
14435
+ * ```
14436
+ * {
14437
+ * "id": 1,
14438
+ * "label": "internal",
14439
+ * "ordinal": 1,
14440
+ * "overridable": false
14441
+ * },
14442
+ * {
14443
+ * "id": 2,
14444
+ * "label": "external",
14445
+ * "ordinal": 2,
14446
+ * "overridable": false
14447
+ * }
14448
+ * ```
14449
+ * @format int64
14450
+ */
14451
+ visibility?: number;
13887
14452
  }
13888
14453
  /** works-create-response */
13889
14454
  export interface WorksCreateResponse {
@@ -13918,6 +14483,8 @@ export interface WorksExportRequest {
13918
14483
  created_by?: string[];
13919
14484
  /** Provides ways to specify date ranges on objects. */
13920
14485
  created_date?: DateFilter;
14486
+ /** Filters for work with any of the provided external references. */
14487
+ external_ref?: string[];
13921
14488
  /**
13922
14489
  * The number of work items to return. The default is '50', the
13923
14490
  * maximum is '5000'.
@@ -14022,6 +14589,8 @@ export interface WorksFilterTicket {
14022
14589
  source_channel_v2?: string[];
14023
14590
  /** The filter for survey aggregation. */
14024
14591
  surveys?: SurveyAggregationFilter;
14592
+ /** Visibility enum ID of the ticket. */
14593
+ visibility?: number[];
14025
14594
  }
14026
14595
  /** works-get-request */
14027
14596
  export interface WorksGetRequest {
@@ -14060,6 +14629,8 @@ export interface WorksListRequest {
14060
14629
  * @format text
14061
14630
  */
14062
14631
  cursor?: string;
14632
+ /** Filters for work with any of the provided external references. */
14633
+ external_ref?: string[];
14063
14634
  issue?: WorksFilterIssue;
14064
14635
  /**
14065
14636
  * The maximum number of works to return. The default is '50'.
@@ -14141,6 +14712,22 @@ export type WorksUpdateRequest = (Empty | WorksUpdateRequestIssue | WorksUpdateR
14141
14712
  * @maxLength 65536
14142
14713
  */
14143
14714
  body?: string;
14715
+ /** Custom fields. */
14716
+ custom_fields?: object;
14717
+ /**
14718
+ * The custom schema fragments to use.
14719
+ * @example ["don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"]
14720
+ */
14721
+ custom_schema_fragments?: string[];
14722
+ /**
14723
+ * Custom schemas described using identifiers. Each custom field in the
14724
+ * request must have the corresponding schema specified; omission results
14725
+ * in a Bad Request error. If a custom schema is not included in the
14726
+ * specifier, it remains unchanged. For surfaces with human interactors,
14727
+ * it is recommended to provide tenant_fragment: true and
14728
+ * validate_required_fields: true.
14729
+ */
14730
+ custom_schema_spec?: CustomSchemaSpec;
14144
14731
  /**
14145
14732
  * The work's ID.
14146
14733
  * @format id
@@ -14386,6 +14973,25 @@ export interface WorksUpdateRequestTicket {
14386
14973
  * @format id
14387
14974
  */
14388
14975
  source_channel_v2?: string | null;
14976
+ /**
14977
+ * Visibility enum ID of the ticket. Stock allowed values:
14978
+ * ```
14979
+ * {
14980
+ * "id": 1,
14981
+ * "label": "internal",
14982
+ * "ordinal": 1,
14983
+ * "overridable": false
14984
+ * },
14985
+ * {
14986
+ * "id": 2,
14987
+ * "label": "external",
14988
+ * "ordinal": 2,
14989
+ * "overridable": false
14990
+ * }
14991
+ * ```
14992
+ * @format int64
14993
+ */
14994
+ visibility?: number;
14389
14995
  }
14390
14996
  /** works-update-request-ticket-channels */
14391
14997
  export interface WorksUpdateRequestTicketChannels {
@@ -14448,7 +15054,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
14448
15054
  protected mergeRequestParams(params1: AxiosRequestConfig, params2?: AxiosRequestConfig): AxiosRequestConfig;
14449
15055
  protected stringifyFormItem(formItem: unknown): string;
14450
15056
  protected createFormData(input: Record<string, unknown>): FormData;
14451
- request: <T = any, _E = any>({ secure, path, type, query, format, body, ...params }: FullRequestParams) => Promise<AxiosResponse<T, any>>;
15057
+ request: <T = any, _E = any>({ secure, path, type, query, format, body, ...params }: FullRequestParams) => Promise<AxiosResponse<T, any, {}>>;
14452
15058
  }
14453
15059
  /**
14454
15060
  * @title DevRev REST API
@@ -14467,7 +15073,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14467
15073
  * @request POST:/accounts.create
14468
15074
  * @secure
14469
15075
  */
14470
- accountsCreate: (data: AccountsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsCreateResponse, any>>;
15076
+ accountsCreate: (data: AccountsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsCreateResponse, any, {}>>;
14471
15077
  /**
14472
15078
  * @description Deletes an account.
14473
15079
  *
@@ -14477,7 +15083,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14477
15083
  * @request POST:/accounts.delete
14478
15084
  * @secure
14479
15085
  */
14480
- accountsDelete: (data: AccountsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
15086
+ accountsDelete: (data: AccountsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
14481
15087
  /**
14482
15088
  * @description Exports a collection of accounts.
14483
15089
  *
@@ -14535,7 +15141,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14535
15141
  tier?: string[];
14536
15142
  /** Array of websites of accounts to be filtered. */
14537
15143
  websites?: string[];
14538
- }, params?: RequestParams) => Promise<AxiosResponse<AccountsExportResponse, any>>;
15144
+ }, params?: RequestParams) => Promise<AxiosResponse<AccountsExportResponse, any, {}>>;
14539
15145
  /**
14540
15146
  * @description Exports a collection of accounts.
14541
15147
  *
@@ -14545,7 +15151,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14545
15151
  * @request POST:/accounts.export
14546
15152
  * @secure
14547
15153
  */
14548
- accountsExportPost: (data: AccountsExportRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsExportResponse, any>>;
15154
+ accountsExportPost: (data: AccountsExportRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsExportResponse, any, {}>>;
14549
15155
  /**
14550
15156
  * @description Retrieves an account's information.
14551
15157
  *
@@ -14562,7 +15168,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14562
15168
  * @example "ACC-12345"
14563
15169
  */
14564
15170
  id: string;
14565
- }, params?: RequestParams) => Promise<AxiosResponse<AccountsGetResponse, any>>;
15171
+ }, params?: RequestParams) => Promise<AxiosResponse<AccountsGetResponse, any, {}>>;
14566
15172
  /**
14567
15173
  * @description Retrieves an account's information.
14568
15174
  *
@@ -14572,7 +15178,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14572
15178
  * @request POST:/accounts.get
14573
15179
  * @secure
14574
15180
  */
14575
- accountsGetPost: (data: AccountsGetRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsGetResponse, any>>;
15181
+ accountsGetPost: (data: AccountsGetRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsGetResponse, any, {}>>;
14576
15182
  /**
14577
15183
  * @description Gets a list of accounts.
14578
15184
  *
@@ -14640,7 +15246,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14640
15246
  tier?: string[];
14641
15247
  /** Array of websites of accounts to be filtered. */
14642
15248
  websites?: string[];
14643
- }, params?: RequestParams) => Promise<AxiosResponse<AccountsListResponse, any>>;
15249
+ }, params?: RequestParams) => Promise<AxiosResponse<AccountsListResponse, any, {}>>;
14644
15250
  /**
14645
15251
  * @description Gets a list of accounts.
14646
15252
  *
@@ -14650,7 +15256,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14650
15256
  * @request POST:/accounts.list
14651
15257
  * @secure
14652
15258
  */
14653
- accountsListPost: (data: AccountsListRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsListResponse, any>>;
15259
+ accountsListPost: (data: AccountsListRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsListResponse, any, {}>>;
14654
15260
  /**
14655
15261
  * @description Merges two accounts.
14656
15262
  *
@@ -14660,7 +15266,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14660
15266
  * @request POST:/accounts.merge
14661
15267
  * @secure
14662
15268
  */
14663
- accountsMerge: (data: AccountsMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
15269
+ accountsMerge: (data: AccountsMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
14664
15270
  /**
14665
15271
  * @description Updates an account's information.
14666
15272
  *
@@ -14670,7 +15276,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14670
15276
  * @request POST:/accounts.update
14671
15277
  * @secure
14672
15278
  */
14673
- accountsUpdate: (data: AccountsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsUpdateResponse, any>>;
15279
+ accountsUpdate: (data: AccountsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsUpdateResponse, any, {}>>;
14674
15280
  /**
14675
15281
  * @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.
14676
15282
  *
@@ -14680,7 +15286,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14680
15286
  * @request POST:/articles.create
14681
15287
  * @secure
14682
15288
  */
14683
- createArticle: (data: ArticlesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesCreateResponse, any>>;
15289
+ createArticle: (data: ArticlesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesCreateResponse, any, {}>>;
14684
15290
  /**
14685
15291
  * @description Deletes an article.
14686
15292
  *
@@ -14690,7 +15296,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14690
15296
  * @request POST:/articles.delete
14691
15297
  * @secure
14692
15298
  */
14693
- deleteArticle: (data: ArticlesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
15299
+ deleteArticle: (data: ArticlesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
14694
15300
  /**
14695
15301
  * @description Gets an article.
14696
15302
  *
@@ -14707,7 +15313,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14707
15313
  * @example "ARTICLE-12345"
14708
15314
  */
14709
15315
  id: string;
14710
- }, params?: RequestParams) => Promise<AxiosResponse<ArticlesGetResponse, any>>;
15316
+ }, params?: RequestParams) => Promise<AxiosResponse<ArticlesGetResponse, any, {}>>;
14711
15317
  /**
14712
15318
  * @description Gets an article.
14713
15319
  *
@@ -14717,7 +15323,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14717
15323
  * @request POST:/articles.get
14718
15324
  * @secure
14719
15325
  */
14720
- getArticlePost: (data: ArticlesGetRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesGetResponse, any>>;
15326
+ getArticlePost: (data: ArticlesGetRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesGetResponse, any, {}>>;
14721
15327
  /**
14722
15328
  * @description Lists a collection of articles.
14723
15329
  *
@@ -14795,7 +15401,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14795
15401
  * @example ["TAG-12345"]
14796
15402
  */
14797
15403
  tags?: string[];
14798
- }, params?: RequestParams) => Promise<AxiosResponse<ArticlesListResponse, any>>;
15404
+ }, params?: RequestParams) => Promise<AxiosResponse<ArticlesListResponse, any, {}>>;
14799
15405
  /**
14800
15406
  * @description Lists a collection of articles.
14801
15407
  *
@@ -14805,7 +15411,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14805
15411
  * @request POST:/articles.list
14806
15412
  * @secure
14807
15413
  */
14808
- listArticlesPost: (data: ArticlesListRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesListResponse, any>>;
15414
+ listArticlesPost: (data: ArticlesListRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesListResponse, any, {}>>;
14809
15415
  /**
14810
15416
  * @description Updates an article.
14811
15417
  *
@@ -14815,7 +15421,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14815
15421
  * @request POST:/articles.update
14816
15422
  * @secure
14817
15423
  */
14818
- updateArticle: (data: ArticlesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesUpdateResponse, any>>;
15424
+ updateArticle: (data: ArticlesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesUpdateResponse, any, {}>>;
14819
15425
  /**
14820
15426
  * @description Gets the requested artifact's information.
14821
15427
  *
@@ -14837,7 +15443,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14837
15443
  * @format text
14838
15444
  */
14839
15445
  version?: string;
14840
- }, params?: RequestParams) => Promise<AxiosResponse<ArtifactsGetResponse, any>>;
15446
+ }, params?: RequestParams) => Promise<AxiosResponse<ArtifactsGetResponse, any, {}>>;
14841
15447
  /**
14842
15448
  * @description Gets the requested artifact's information.
14843
15449
  *
@@ -14847,7 +15453,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14847
15453
  * @request POST:/artifacts.get
14848
15454
  * @secure
14849
15455
  */
14850
- artifactsGetPost: (data: ArtifactsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsGetResponse, any>>;
15456
+ artifactsGetPost: (data: ArtifactsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsGetResponse, any, {}>>;
14851
15457
  /**
14852
15458
  * @description List the artifacts attached to an object.
14853
15459
  *
@@ -14863,7 +15469,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14863
15469
  * @format id
14864
15470
  */
14865
15471
  parent_id?: string;
14866
- }, params?: RequestParams) => Promise<AxiosResponse<ArtifactsListResponse, any>>;
15472
+ }, params?: RequestParams) => Promise<AxiosResponse<ArtifactsListResponse, any, {}>>;
14867
15473
  /**
14868
15474
  * @description List the artifacts attached to an object.
14869
15475
  *
@@ -14873,7 +15479,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14873
15479
  * @request POST:/artifacts.list
14874
15480
  * @secure
14875
15481
  */
14876
- artifactsListPost: (data: ArtifactsListRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsListResponse, any>>;
15482
+ artifactsListPost: (data: ArtifactsListRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsListResponse, any, {}>>;
14877
15483
  /**
14878
15484
  * @description Gets the download URL for the artifact.
14879
15485
  *
@@ -14895,7 +15501,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14895
15501
  * @format text
14896
15502
  */
14897
15503
  version?: string;
14898
- }, params?: RequestParams) => Promise<AxiosResponse<ArtifactsLocateResponse, any>>;
15504
+ }, params?: RequestParams) => Promise<AxiosResponse<ArtifactsLocateResponse, any, {}>>;
14899
15505
  /**
14900
15506
  * @description Gets the download URL for the artifact.
14901
15507
  *
@@ -14905,7 +15511,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14905
15511
  * @request POST:/artifacts.locate
14906
15512
  * @secure
14907
15513
  */
14908
- artifactsLocatePost: (data: ArtifactsLocateRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsLocateResponse, any>>;
15514
+ artifactsLocatePost: (data: ArtifactsLocateRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsLocateResponse, any, {}>>;
14909
15515
  /**
14910
15516
  * @description Creates an artifact and generates an upload URL for its data.
14911
15517
  *
@@ -14915,7 +15521,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14915
15521
  * @request POST:/artifacts.prepare
14916
15522
  * @secure
14917
15523
  */
14918
- artifactsPrepare: (data: ArtifactsPrepareRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsPrepareResponse, any>>;
15524
+ artifactsPrepare: (data: ArtifactsPrepareRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsPrepareResponse, any, {}>>;
14919
15525
  /**
14920
15526
  * @description Permanently deletes a version of an artifact.
14921
15527
  *
@@ -14925,7 +15531,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14925
15531
  * @request POST:/artifacts.versions.delete
14926
15532
  * @secure
14927
15533
  */
14928
- artifactsHardDeleteVersion: (data: ArtifactsHardDeleteVersionRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
15534
+ artifactsHardDeleteVersion: (data: ArtifactsHardDeleteVersionRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
14929
15535
  /**
14930
15536
  * @description Prepares a new version for an artifact, returning the URL and form data to upload the updated file.
14931
15537
  *
@@ -14935,7 +15541,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14935
15541
  * @request POST:/artifacts.versions.prepare
14936
15542
  * @secure
14937
15543
  */
14938
- artifactsVersionsPrepare: (data: ArtifactsVersionsPrepareRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsVersionsPrepareResponse, any>>;
15544
+ artifactsVersionsPrepare: (data: ArtifactsVersionsPrepareRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsVersionsPrepareResponse, any, {}>>;
14939
15545
  /**
14940
15546
  * @description Gets the specified object.
14941
15547
  *
@@ -14951,7 +15557,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14951
15557
  * @format id
14952
15558
  */
14953
15559
  id: string;
14954
- }, params?: RequestParams) => Promise<AxiosResponse<AtomsGetResponse, any>>;
15560
+ }, params?: RequestParams) => Promise<AxiosResponse<AtomsGetResponse, any, {}>>;
14955
15561
  /**
14956
15562
  * @description Gets the specified object.
14957
15563
  *
@@ -14961,7 +15567,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14961
15567
  * @request POST:/atoms.get
14962
15568
  * @secure
14963
15569
  */
14964
- atomsGetPost: (data: AtomsGetRequest, params?: RequestParams) => Promise<AxiosResponse<AtomsGetResponse, any>>;
15570
+ atomsGetPost: (data: AtomsGetRequest, params?: RequestParams) => Promise<AxiosResponse<AtomsGetResponse, any, {}>>;
14965
15571
  /**
14966
15572
  * @description Creates a JWT corresponding to the requested token type for the authenticated user.
14967
15573
  *
@@ -14971,7 +15577,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14971
15577
  * @request POST:/auth-tokens.create
14972
15578
  * @secure
14973
15579
  */
14974
- authTokensCreate: (data: AuthTokensCreateRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensCreateResponse, any>>;
15580
+ authTokensCreate: (data: AuthTokensCreateRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensCreateResponse, any, {}>>;
14975
15581
  /**
14976
15582
  * @description Revokes the token that matches the given token ID issued under the given Dev organization.
14977
15583
  *
@@ -14981,7 +15587,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14981
15587
  * @request POST:/auth-tokens.delete
14982
15588
  * @secure
14983
15589
  */
14984
- authTokensDelete: (data: AuthTokensDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
15590
+ authTokensDelete: (data: AuthTokensDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
14985
15591
  /**
14986
15592
  * @description Gets the token metadata corresponding to the given token ID under the given Dev organization.
14987
15593
  *
@@ -14997,7 +15603,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14997
15603
  * @format id
14998
15604
  */
14999
15605
  token_id: string;
15000
- }, params?: RequestParams) => Promise<AxiosResponse<AuthTokensGetResponse, any>>;
15606
+ }, params?: RequestParams) => Promise<AxiosResponse<AuthTokensGetResponse, any, {}>>;
15001
15607
  /**
15002
15608
  * @description Gets the token metadata corresponding to the given token ID under the given Dev organization.
15003
15609
  *
@@ -15007,7 +15613,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15007
15613
  * @request POST:/auth-tokens.get
15008
15614
  * @secure
15009
15615
  */
15010
- authTokensGetPost: (data: AuthTokensGetRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensGetResponse, any>>;
15616
+ authTokensGetPost: (data: AuthTokensGetRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensGetResponse, any, {}>>;
15011
15617
  /**
15012
15618
  * @description Returns the Dev organization, user and token attributes extracted from the auth token.
15013
15619
  *
@@ -15017,7 +15623,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15017
15623
  * @request GET:/auth-tokens.info
15018
15624
  * @secure
15019
15625
  */
15020
- authTokensInfo: (params?: RequestParams) => Promise<AxiosResponse<AuthTokensInfoResponse, any>>;
15626
+ authTokensInfo: (params?: RequestParams) => Promise<AxiosResponse<AuthTokensInfoResponse, any, {}>>;
15021
15627
  /**
15022
15628
  * @description Returns the Dev organization, user and token attributes extracted from the auth token.
15023
15629
  *
@@ -15027,7 +15633,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15027
15633
  * @request POST:/auth-tokens.info
15028
15634
  * @secure
15029
15635
  */
15030
- authTokensInfoPost: (data: AuthTokensInfoRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensInfoResponse, any>>;
15636
+ authTokensInfoPost: (data: AuthTokensInfoRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensInfoResponse, any, {}>>;
15031
15637
  /**
15032
15638
  * @description Gets the token metadata for all the tokens corresponding to the given token type issued for a given subject.
15033
15639
  *
@@ -15056,7 +15662,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15056
15662
  * @format id
15057
15663
  */
15058
15664
  subject?: string;
15059
- }, params?: RequestParams) => Promise<AxiosResponse<AuthTokensListResponse, any>>;
15665
+ }, params?: RequestParams) => Promise<AxiosResponse<AuthTokensListResponse, any, {}>>;
15060
15666
  /**
15061
15667
  * @description Gets the token metadata for all the tokens corresponding to the given token type issued for a given subject.
15062
15668
  *
@@ -15066,7 +15672,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15066
15672
  * @request POST:/auth-tokens.list
15067
15673
  * @secure
15068
15674
  */
15069
- authTokensListPost: (data: AuthTokensListRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensListResponse, any>>;
15675
+ authTokensListPost: (data: AuthTokensListRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensListResponse, any, {}>>;
15070
15676
  /**
15071
15677
  * @description Revokes all the tokens that matches the given token type created by the authenticated user.
15072
15678
  *
@@ -15076,7 +15682,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15076
15682
  * @request POST:/auth-tokens.self.delete
15077
15683
  * @secure
15078
15684
  */
15079
- authTokensSelfDelete: (data: AuthTokensSelfDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
15685
+ authTokensSelfDelete: (data: AuthTokensSelfDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
15080
15686
  /**
15081
15687
  * @description Updates token metadata of a token issued under a given Dev organization.
15082
15688
  *
@@ -15086,7 +15692,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15086
15692
  * @request POST:/auth-tokens.update
15087
15693
  * @secure
15088
15694
  */
15089
- authTokensUpdate: (data: AuthTokensUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensUpdateResponse, any>>;
15695
+ authTokensUpdate: (data: AuthTokensUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensUpdateResponse, any, {}>>;
15090
15696
  /**
15091
15697
  * @description Creates a new chat, or optionally opens an existing one.
15092
15698
  *
@@ -15096,7 +15702,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15096
15702
  * @request POST:/chats.create
15097
15703
  * @secure
15098
15704
  */
15099
- chatsCreate: (data: ChatsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsCreateResponse, any>>;
15705
+ chatsCreate: (data: ChatsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsCreateResponse, any, {}>>;
15100
15706
  /**
15101
15707
  * @description Gets a chat's information.
15102
15708
  *
@@ -15113,7 +15719,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15113
15719
  * @example "CHAN-AbCdEfGh"
15114
15720
  */
15115
15721
  id?: string;
15116
- }, params?: RequestParams) => Promise<AxiosResponse<ChatsGetResponse, any>>;
15722
+ }, params?: RequestParams) => Promise<AxiosResponse<ChatsGetResponse, any, {}>>;
15117
15723
  /**
15118
15724
  * @description Gets a chat's information.
15119
15725
  *
@@ -15123,7 +15729,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15123
15729
  * @request POST:/chats.get
15124
15730
  * @secure
15125
15731
  */
15126
- chatsGetPost: (data: ChatsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsGetResponse, any>>;
15732
+ chatsGetPost: (data: ChatsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsGetResponse, any, {}>>;
15127
15733
  /**
15128
15734
  * @description Updates a chat's information.
15129
15735
  *
@@ -15133,7 +15739,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15133
15739
  * @request POST:/chats.update
15134
15740
  * @secure
15135
15741
  */
15136
- chatsUpdate: (data: ChatsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsUpdateResponse, any>>;
15742
+ chatsUpdate: (data: ChatsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsUpdateResponse, any, {}>>;
15137
15743
  /**
15138
15744
  * @description Creates a code change object.
15139
15745
  *
@@ -15143,7 +15749,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15143
15749
  * @request POST:/code-changes.create
15144
15750
  * @secure
15145
15751
  */
15146
- codeChangesCreate: (data: CodeChangesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesCreateResponse, any>>;
15752
+ codeChangesCreate: (data: CodeChangesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesCreateResponse, any, {}>>;
15147
15753
  /**
15148
15754
  * @description Deletes a code change object.
15149
15755
  *
@@ -15153,7 +15759,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15153
15759
  * @request POST:/code-changes.delete
15154
15760
  * @secure
15155
15761
  */
15156
- codeChangesDelete: (data: CodeChangesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
15762
+ codeChangesDelete: (data: CodeChangesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
15157
15763
  /**
15158
15764
  * @description Gets a code change object.
15159
15765
  *
@@ -15169,7 +15775,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15169
15775
  * @format id
15170
15776
  */
15171
15777
  id: string;
15172
- }, params?: RequestParams) => Promise<AxiosResponse<CodeChangesGetResponse, any>>;
15778
+ }, params?: RequestParams) => Promise<AxiosResponse<CodeChangesGetResponse, any, {}>>;
15173
15779
  /**
15174
15780
  * @description Gets a code change object.
15175
15781
  *
@@ -15179,7 +15785,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15179
15785
  * @request POST:/code-changes.get
15180
15786
  * @secure
15181
15787
  */
15182
- codeChangesGetPost: (data: CodeChangesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesGetResponse, any>>;
15788
+ codeChangesGetPost: (data: CodeChangesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesGetResponse, any, {}>>;
15183
15789
  /**
15184
15790
  * @description Lists code change objects.
15185
15791
  *
@@ -15207,7 +15813,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15207
15813
  * used.
15208
15814
  */
15209
15815
  mode?: ListMode;
15210
- }, params?: RequestParams) => Promise<AxiosResponse<CodeChangesListResponse, any>>;
15816
+ }, params?: RequestParams) => Promise<AxiosResponse<CodeChangesListResponse, any, {}>>;
15211
15817
  /**
15212
15818
  * @description Lists code change objects.
15213
15819
  *
@@ -15217,7 +15823,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15217
15823
  * @request POST:/code-changes.list
15218
15824
  * @secure
15219
15825
  */
15220
- codeChangesListPost: (data: CodeChangesListRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesListResponse, any>>;
15826
+ codeChangesListPost: (data: CodeChangesListRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesListResponse, any, {}>>;
15221
15827
  /**
15222
15828
  * @description Updates a code change object.
15223
15829
  *
@@ -15227,7 +15833,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15227
15833
  * @request POST:/code-changes.update
15228
15834
  * @secure
15229
15835
  */
15230
- codeChangesUpdate: (data: CodeChangesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesUpdateResponse, any>>;
15836
+ codeChangesUpdate: (data: CodeChangesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesUpdateResponse, any, {}>>;
15231
15837
  /**
15232
15838
  * @description Creates a command.
15233
15839
  *
@@ -15237,7 +15843,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15237
15843
  * @request POST:/commands.create
15238
15844
  * @secure
15239
15845
  */
15240
- commandsCreate: (data: CommandCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CommandCreateResponse, any>>;
15846
+ commandsCreate: (data: CommandCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CommandCreateResponse, any, {}>>;
15241
15847
  /**
15242
15848
  * @description Gets a command.
15243
15849
  *
@@ -15253,7 +15859,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15253
15859
  * @format id
15254
15860
  */
15255
15861
  id: string;
15256
- }, params?: RequestParams) => Promise<AxiosResponse<CommandGetResponse, any>>;
15862
+ }, params?: RequestParams) => Promise<AxiosResponse<CommandGetResponse, any, {}>>;
15257
15863
  /**
15258
15864
  * @description Gets a command.
15259
15865
  *
@@ -15263,7 +15869,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15263
15869
  * @request POST:/commands.get
15264
15870
  * @secure
15265
15871
  */
15266
- commandsGetPost: (data: CommandGetRequest, params?: RequestParams) => Promise<AxiosResponse<CommandGetResponse, any>>;
15872
+ commandsGetPost: (data: CommandGetRequest, params?: RequestParams) => Promise<AxiosResponse<CommandGetResponse, any, {}>>;
15267
15873
  /**
15268
15874
  * @description Lists commands for a Dev organization.
15269
15875
  *
@@ -15304,7 +15910,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15304
15910
  source_object_id?: string;
15305
15911
  /** Filter commands based on status. */
15306
15912
  status?: CommandStatus[];
15307
- }, params?: RequestParams) => Promise<AxiosResponse<CommandsListResponse, any>>;
15913
+ }, params?: RequestParams) => Promise<AxiosResponse<CommandsListResponse, any, {}>>;
15308
15914
  /**
15309
15915
  * @description Lists commands for a Dev organization.
15310
15916
  *
@@ -15314,7 +15920,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15314
15920
  * @request POST:/commands.list
15315
15921
  * @secure
15316
15922
  */
15317
- commandsListPost: (data: CommandsListRequest, params?: RequestParams) => Promise<AxiosResponse<CommandsListResponse, any>>;
15923
+ commandsListPost: (data: CommandsListRequest, params?: RequestParams) => Promise<AxiosResponse<CommandsListResponse, any, {}>>;
15318
15924
  /**
15319
15925
  * @description Updates a command.
15320
15926
  *
@@ -15324,7 +15930,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15324
15930
  * @request POST:/commands.update
15325
15931
  * @secure
15326
15932
  */
15327
- commandsUpdate: (data: CommandUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CommandUpdateResponse, any>>;
15933
+ commandsUpdate: (data: CommandUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CommandUpdateResponse, any, {}>>;
15328
15934
  /**
15329
15935
  * @description Creates a conversation.
15330
15936
  *
@@ -15334,7 +15940,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15334
15940
  * @request POST:/conversations.create
15335
15941
  * @secure
15336
15942
  */
15337
- conversationsCreate: (data: ConversationsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsCreateResponse, any>>;
15943
+ conversationsCreate: (data: ConversationsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsCreateResponse, any, {}>>;
15338
15944
  /**
15339
15945
  * @description Deletes the requested conversation.
15340
15946
  *
@@ -15344,7 +15950,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15344
15950
  * @request POST:/conversations.delete
15345
15951
  * @secure
15346
15952
  */
15347
- conversationsDelete: (data: ConversationsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
15953
+ conversationsDelete: (data: ConversationsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
15348
15954
  /**
15349
15955
  * @description Gets the requested conversation's information.
15350
15956
  *
@@ -15360,7 +15966,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15360
15966
  * @format id
15361
15967
  */
15362
15968
  id: string;
15363
- }, params?: RequestParams) => Promise<AxiosResponse<ConversationsGetResponse, any>>;
15969
+ }, params?: RequestParams) => Promise<AxiosResponse<ConversationsGetResponse, any, {}>>;
15364
15970
  /**
15365
15971
  * @description Gets the requested conversation's information.
15366
15972
  *
@@ -15370,7 +15976,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15370
15976
  * @request POST:/conversations.get
15371
15977
  * @secure
15372
15978
  */
15373
- conversationsGetPost: (data: ConversationsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsGetResponse, any>>;
15979
+ conversationsGetPost: (data: ConversationsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsGetResponse, any, {}>>;
15374
15980
  /**
15375
15981
  * @description Lists the available conversations.
15376
15982
  *
@@ -15489,7 +16095,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15489
16095
  * @format text
15490
16096
  */
15491
16097
  'tags_v2.value'?: string;
15492
- }, params?: RequestParams) => Promise<AxiosResponse<ConversationsListResponse, any>>;
16098
+ }, params?: RequestParams) => Promise<AxiosResponse<ConversationsListResponse, any, {}>>;
15493
16099
  /**
15494
16100
  * @description Lists the available conversations.
15495
16101
  *
@@ -15499,7 +16105,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15499
16105
  * @request POST:/conversations.list
15500
16106
  * @secure
15501
16107
  */
15502
- conversationsListPost: (data: ConversationsListRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsListResponse, any>>;
16108
+ conversationsListPost: (data: ConversationsListRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsListResponse, any, {}>>;
15503
16109
  /**
15504
16110
  * @description Updates the requested conversation.
15505
16111
  *
@@ -15509,7 +16115,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15509
16115
  * @request POST:/conversations.update
15510
16116
  * @secure
15511
16117
  */
15512
- conversationsUpdate: (data: ConversationsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsUpdateResponse, any>>;
16118
+ conversationsUpdate: (data: ConversationsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsUpdateResponse, any, {}>>;
15513
16119
  /**
15514
16120
  * @description Counts custom objects.
15515
16121
  *
@@ -15527,7 +16133,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15527
16133
  leaf_type: string;
15528
16134
  /** List of filters to apply. */
15529
16135
  filters?: any[];
15530
- }, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCountResponse, any>>;
16136
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCountResponse, any, {}>>;
15531
16137
  /**
15532
16138
  * @description Counts custom objects.
15533
16139
  *
@@ -15537,7 +16143,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15537
16143
  * @request POST:/custom-objects.count
15538
16144
  * @secure
15539
16145
  */
15540
- customObjectsCountPost: (data: CustomObjectsCountRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCountResponse, any>>;
16146
+ customObjectsCountPost: (data: CustomObjectsCountRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCountResponse, any, {}>>;
15541
16147
  /**
15542
16148
  * @description Creates a custom object.
15543
16149
  *
@@ -15547,7 +16153,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15547
16153
  * @request POST:/custom-objects.create
15548
16154
  * @secure
15549
16155
  */
15550
- customObjectsCreate: (data: CustomObjectsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCreateResponse, any>>;
16156
+ customObjectsCreate: (data: CustomObjectsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCreateResponse, any, {}>>;
15551
16157
  /**
15552
16158
  * @description Deletes a custom object.
15553
16159
  *
@@ -15557,7 +16163,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15557
16163
  * @request POST:/custom-objects.delete
15558
16164
  * @secure
15559
16165
  */
15560
- customObjectsDelete: (data: CustomObjectsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
16166
+ customObjectsDelete: (data: CustomObjectsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
15561
16167
  /**
15562
16168
  * @description Gets a custom object.
15563
16169
  *
@@ -15573,7 +16179,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15573
16179
  * @format id
15574
16180
  */
15575
16181
  id?: string;
15576
- }, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsGetResponse, any>>;
16182
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsGetResponse, any, {}>>;
15577
16183
  /**
15578
16184
  * @description Gets a custom object.
15579
16185
  *
@@ -15583,7 +16189,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15583
16189
  * @request POST:/custom-objects.get
15584
16190
  * @secure
15585
16191
  */
15586
- customObjectsGetPost: (data: CustomObjectsGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsGetResponse, any>>;
16192
+ customObjectsGetPost: (data: CustomObjectsGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsGetResponse, any, {}>>;
15587
16193
  /**
15588
16194
  * @description Lists custom objects.
15589
16195
  *
@@ -15621,7 +16227,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15621
16227
  mode?: ListMode;
15622
16228
  /** The list of fields to sort the items by and how to sort them. */
15623
16229
  sort_by?: string[];
15624
- }, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsListResponse, any>>;
16230
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsListResponse, any, {}>>;
15625
16231
  /**
15626
16232
  * @description Lists custom objects.
15627
16233
  *
@@ -15631,7 +16237,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15631
16237
  * @request POST:/custom-objects.list
15632
16238
  * @secure
15633
16239
  */
15634
- customObjectsListPost: (data: CustomObjectsListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsListResponse, any>>;
16240
+ customObjectsListPost: (data: CustomObjectsListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsListResponse, any, {}>>;
15635
16241
  /**
15636
16242
  * @description Updates a custom object.
15637
16243
  *
@@ -15641,7 +16247,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15641
16247
  * @request POST:/custom-objects.update
15642
16248
  * @secure
15643
16249
  */
15644
- customObjectsUpdate: (data: CustomObjectsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsUpdateResponse, any>>;
16250
+ customObjectsUpdate: (data: CustomObjectsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsUpdateResponse, any, {}>>;
15645
16251
  /**
15646
16252
  * @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.
15647
16253
  *
@@ -15651,7 +16257,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15651
16257
  * @request POST:/dev-orgs.auth-connections.create
15652
16258
  * @secure
15653
16259
  */
15654
- devOrgAuthConnectionsCreate: (data: DevOrgAuthConnectionsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsCreateResponse, any>>;
16260
+ devOrgAuthConnectionsCreate: (data: DevOrgAuthConnectionsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsCreateResponse, any, {}>>;
15655
16261
  /**
15656
16262
  * @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.
15657
16263
  *
@@ -15661,7 +16267,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15661
16267
  * @request POST:/dev-orgs.auth-connections.delete
15662
16268
  * @secure
15663
16269
  */
15664
- devOrgAuthConnectionsDelete: (data: DevOrgAuthConnectionsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
16270
+ devOrgAuthConnectionsDelete: (data: DevOrgAuthConnectionsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
15665
16271
  /**
15666
16272
  * @description Retrieves the details for an authentication connection.
15667
16273
  *
@@ -15677,7 +16283,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15677
16283
  * @format text
15678
16284
  */
15679
16285
  id: string;
15680
- }, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsGetResponse, any>>;
16286
+ }, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsGetResponse, any, {}>>;
15681
16287
  /**
15682
16288
  * @description Retrieves the details for an authentication connection.
15683
16289
  *
@@ -15687,7 +16293,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15687
16293
  * @request POST:/dev-orgs.auth-connections.get
15688
16294
  * @secure
15689
16295
  */
15690
- devOrgAuthConnectionsGetPost: (data: DevOrgAuthConnectionsGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsGetResponse, any>>;
16296
+ devOrgAuthConnectionsGetPost: (data: DevOrgAuthConnectionsGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsGetResponse, any, {}>>;
15691
16297
  /**
15692
16298
  * @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.
15693
16299
  *
@@ -15697,7 +16303,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15697
16303
  * @request GET:/dev-orgs.auth-connections.list
15698
16304
  * @secure
15699
16305
  */
15700
- devOrgAuthConnectionsList: (params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsListResponse, any>>;
16306
+ devOrgAuthConnectionsList: (params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsListResponse, any, {}>>;
15701
16307
  /**
15702
16308
  * @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.
15703
16309
  *
@@ -15707,7 +16313,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15707
16313
  * @request POST:/dev-orgs.auth-connections.list
15708
16314
  * @secure
15709
16315
  */
15710
- devOrgAuthConnectionsListPost: (data: Empty, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsListResponse, any>>;
16316
+ devOrgAuthConnectionsListPost: (data: Empty, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsListResponse, any, {}>>;
15711
16317
  /**
15712
16318
  * @description Enable or disable an authentication connection for a Dev organization. Atleast one authentication connection must be enabled for a Dev organization.
15713
16319
  *
@@ -15717,7 +16323,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15717
16323
  * @request POST:/dev-orgs.auth-connections.toggle
15718
16324
  * @secure
15719
16325
  */
15720
- devOrgAuthConnectionsToggle: (data: DevOrgAuthConnectionsToggleRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
16326
+ devOrgAuthConnectionsToggle: (data: DevOrgAuthConnectionsToggleRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
15721
16327
  /**
15722
16328
  * @description Updates an authentication connection.
15723
16329
  *
@@ -15727,7 +16333,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15727
16333
  * @request POST:/dev-orgs.auth-connections.update
15728
16334
  * @secure
15729
16335
  */
15730
- devOrgAuthConnectionsUpdate: (data: DevOrgAuthConnectionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsUpdateResponse, any>>;
16336
+ devOrgAuthConnectionsUpdate: (data: DevOrgAuthConnectionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsUpdateResponse, any, {}>>;
15731
16337
  /**
15732
16338
  * @description Gets the Dev organization's information of the authenticated user.
15733
16339
  *
@@ -15737,7 +16343,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15737
16343
  * @request GET:/dev-orgs.get
15738
16344
  * @secure
15739
16345
  */
15740
- devOrgsGet: (params?: RequestParams) => Promise<AxiosResponse<DevOrgsGetResponse, any>>;
16346
+ devOrgsGet: (params?: RequestParams) => Promise<AxiosResponse<DevOrgsGetResponse, any, {}>>;
15741
16347
  /**
15742
16348
  * @description Gets the Dev organization's information of the authenticated user.
15743
16349
  *
@@ -15747,7 +16353,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15747
16353
  * @request POST:/dev-orgs.get
15748
16354
  * @secure
15749
16355
  */
15750
- devOrgsGetPost: (data: DevOrgsGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgsGetResponse, any>>;
16356
+ devOrgsGetPost: (data: DevOrgsGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgsGetResponse, any, {}>>;
15751
16357
  /**
15752
16358
  * @description Activates the requested user.
15753
16359
  *
@@ -15757,7 +16363,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15757
16363
  * @request POST:/dev-users.activate
15758
16364
  * @secure
15759
16365
  */
15760
- devUsersActivate: (data: DevUsersActivateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersActivateResponse, any>>;
16366
+ devUsersActivate: (data: DevUsersActivateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersActivateResponse, any, {}>>;
15761
16367
  /**
15762
16368
  * @description Creates a Dev user for a Dev organization.
15763
16369
  *
@@ -15767,7 +16373,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15767
16373
  * @request POST:/dev-users.create
15768
16374
  * @secure
15769
16375
  */
15770
- devUsersCreate: (data: DevUsersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersCreateResponse, any>>;
16376
+ devUsersCreate: (data: DevUsersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersCreateResponse, any, {}>>;
15771
16377
  /**
15772
16378
  * @description Deactivates the requested user.
15773
16379
  *
@@ -15777,7 +16383,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15777
16383
  * @request POST:/dev-users.deactivate
15778
16384
  * @secure
15779
16385
  */
15780
- devUsersDeactivate: (data: DevUsersDeactivateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
16386
+ devUsersDeactivate: (data: DevUsersDeactivateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
15781
16387
  /**
15782
16388
  * @description Gets the requested user's information.
15783
16389
  *
@@ -15793,7 +16399,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15793
16399
  * @format id
15794
16400
  */
15795
16401
  id: string;
15796
- }, params?: RequestParams) => Promise<AxiosResponse<DevUsersGetResponse, any>>;
16402
+ }, params?: RequestParams) => Promise<AxiosResponse<DevUsersGetResponse, any, {}>>;
15797
16403
  /**
15798
16404
  * @description Gets the requested user's information.
15799
16405
  *
@@ -15803,7 +16409,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15803
16409
  * @request POST:/dev-users.get
15804
16410
  * @secure
15805
16411
  */
15806
- devUsersGetPost: (data: DevUsersGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersGetResponse, any>>;
16412
+ devUsersGetPost: (data: DevUsersGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersGetResponse, any, {}>>;
15807
16413
  /**
15808
16414
  * @description Links an external/secondary identity to the Dev user.
15809
16415
  *
@@ -15813,7 +16419,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15813
16419
  * @request POST:/dev-users.identities.link
15814
16420
  * @secure
15815
16421
  */
15816
- devUsersIdentitiesLink: (data: DevUsersIdentitiesLinkRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersIdentitiesLinkResponse, any>>;
16422
+ devUsersIdentitiesLink: (data: DevUsersIdentitiesLinkRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersIdentitiesLinkResponse, any, {}>>;
15817
16423
  /**
15818
16424
  * @description Unlinks an external/secondary identity from the Dev user.
15819
16425
  *
@@ -15823,7 +16429,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15823
16429
  * @request POST:/dev-users.identities.unlink
15824
16430
  * @secure
15825
16431
  */
15826
- devUsersIdentitiesUnlink: (data: DevUsersIdentitiesUnlinkRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersIdentitiesUnlinkResponse, any>>;
16432
+ devUsersIdentitiesUnlink: (data: DevUsersIdentitiesUnlinkRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersIdentitiesUnlinkResponse, any, {}>>;
15827
16433
  /**
15828
16434
  * @description Lists users within your organization.
15829
16435
  *
@@ -15868,7 +16474,12 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15868
16474
  sort_by?: string[];
15869
16475
  /** Filters Dev users based on state. */
15870
16476
  state?: UserState[];
15871
- }, params?: RequestParams) => Promise<AxiosResponse<DevUsersListResponse, any>>;
16477
+ /**
16478
+ * Filters for Dev users in the specified time zone in IANA format
16479
+ * (e.g., 'America/Los_Angeles').
16480
+ */
16481
+ timezone?: string[];
16482
+ }, params?: RequestParams) => Promise<AxiosResponse<DevUsersListResponse, any, {}>>;
15872
16483
  /**
15873
16484
  * @description Lists users within your organization.
15874
16485
  *
@@ -15878,7 +16489,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15878
16489
  * @request POST:/dev-users.list
15879
16490
  * @secure
15880
16491
  */
15881
- devUsersListPost: (data: DevUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersListResponse, any>>;
16492
+ devUsersListPost: (data: DevUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersListResponse, any, {}>>;
15882
16493
  /**
15883
16494
  * @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.
15884
16495
  *
@@ -15888,7 +16499,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15888
16499
  * @request POST:/dev-users.merge
15889
16500
  * @secure
15890
16501
  */
15891
- devUsersMerge: (data: DevUsersMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
16502
+ devUsersMerge: (data: DevUsersMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
15892
16503
  /**
15893
16504
  * @description Gets the authenticated user's information.
15894
16505
  *
@@ -15898,7 +16509,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15898
16509
  * @request GET:/dev-users.self
15899
16510
  * @secure
15900
16511
  */
15901
- devUsersSelf: (params?: RequestParams) => Promise<AxiosResponse<DevUsersSelfResponse, any>>;
16512
+ devUsersSelf: (params?: RequestParams) => Promise<AxiosResponse<DevUsersSelfResponse, any, {}>>;
15902
16513
  /**
15903
16514
  * @description Gets the authenticated user's information.
15904
16515
  *
@@ -15908,7 +16519,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15908
16519
  * @request POST:/dev-users.self
15909
16520
  * @secure
15910
16521
  */
15911
- devUsersSelfPost: (data: DevUsersSelfRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersSelfResponse, any>>;
16522
+ devUsersSelfPost: (data: DevUsersSelfRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersSelfResponse, any, {}>>;
15912
16523
  /**
15913
16524
  * @description Updates the authenticated user.
15914
16525
  *
@@ -15918,7 +16529,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15918
16529
  * @request POST:/dev-users.self.update
15919
16530
  * @secure
15920
16531
  */
15921
- devUsersSelfUpdate: (data: DevUsersSelfUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersUpdateResponse, any>>;
16532
+ devUsersSelfUpdate: (data: DevUsersSelfUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersUpdateResponse, any, {}>>;
15922
16533
  /**
15923
16534
  * @description Updates the user corresponding to the input Id.
15924
16535
  *
@@ -15928,7 +16539,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15928
16539
  * @request POST:/dev-users.update
15929
16540
  * @secure
15930
16541
  */
15931
- devUsersUpdate: (data: DevUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersUpdateResponse, any>>;
16542
+ devUsersUpdate: (data: DevUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersUpdateResponse, any, {}>>;
15932
16543
  /**
15933
16544
  * @description Get count of directories matching given filter.
15934
16545
  *
@@ -15949,7 +16560,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15949
16560
  * @example ["DEVU-12345"]
15950
16561
  */
15951
16562
  modified_by?: string[];
15952
- }, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCountResponse, any>>;
16563
+ }, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCountResponse, any, {}>>;
15953
16564
  /**
15954
16565
  * @description Get count of directories matching given filter.
15955
16566
  *
@@ -15959,7 +16570,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15959
16570
  * @request POST:/directories.count
15960
16571
  * @secure
15961
16572
  */
15962
- directoriesCountPost: (data: DirectoriesCountRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCountResponse, any>>;
16573
+ directoriesCountPost: (data: DirectoriesCountRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCountResponse, any, {}>>;
15963
16574
  /**
15964
16575
  * @description Creates a directory for the specified inputs.
15965
16576
  *
@@ -15969,7 +16580,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15969
16580
  * @request POST:/directories.create
15970
16581
  * @secure
15971
16582
  */
15972
- directoriesCreate: (data: DirectoriesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCreateResponse, any>>;
16583
+ directoriesCreate: (data: DirectoriesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCreateResponse, any, {}>>;
15973
16584
  /**
15974
16585
  * @description Delete the specified directory.
15975
16586
  *
@@ -15979,7 +16590,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15979
16590
  * @request POST:/directories.delete
15980
16591
  * @secure
15981
16592
  */
15982
- directoriesDelete: (data: DirectoriesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
16593
+ directoriesDelete: (data: DirectoriesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
15983
16594
  /**
15984
16595
  * @description Gets the specified directory.
15985
16596
  *
@@ -15989,13 +16600,13 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15989
16600
  * @request GET:/directories.get
15990
16601
  * @secure
15991
16602
  */
15992
- directoriesGet: (query: {
16603
+ directoriesGet: (query?: {
15993
16604
  /**
15994
16605
  * The ID of the requested directory.
15995
16606
  * @format id
15996
16607
  */
15997
- id: string;
15998
- }, params?: RequestParams) => Promise<AxiosResponse<DirectoriesGetResponse, any>>;
16608
+ id?: string;
16609
+ }, params?: RequestParams) => Promise<AxiosResponse<DirectoriesGetResponse, any, {}>>;
15999
16610
  /**
16000
16611
  * @description Gets the specified directory.
16001
16612
  *
@@ -16005,7 +16616,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16005
16616
  * @request POST:/directories.get
16006
16617
  * @secure
16007
16618
  */
16008
- directoriesGetPost: (data: DirectoriesGetRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesGetResponse, any>>;
16619
+ directoriesGetPost: (data: DirectoriesGetRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesGetResponse, any, {}>>;
16009
16620
  /**
16010
16621
  * @description Lists directories matching the request.
16011
16622
  *
@@ -16042,7 +16653,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16042
16653
  * @example ["DEVU-12345"]
16043
16654
  */
16044
16655
  modified_by?: string[];
16045
- }, params?: RequestParams) => Promise<AxiosResponse<DirectoriesListResponse, any>>;
16656
+ }, params?: RequestParams) => Promise<AxiosResponse<DirectoriesListResponse, any, {}>>;
16046
16657
  /**
16047
16658
  * @description Lists directories matching the request.
16048
16659
  *
@@ -16052,7 +16663,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16052
16663
  * @request POST:/directories.list
16053
16664
  * @secure
16054
16665
  */
16055
- directoriesListPost: (data: DirectoriesListRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesListResponse, any>>;
16666
+ directoriesListPost: (data: DirectoriesListRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesListResponse, any, {}>>;
16056
16667
  /**
16057
16668
  * @description Updates the specified directory.
16058
16669
  *
@@ -16062,7 +16673,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16062
16673
  * @request POST:/directories.update
16063
16674
  * @secure
16064
16675
  */
16065
- directoriesUpdate: (data: DirectoriesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesUpdateResponse, any>>;
16676
+ directoriesUpdate: (data: DirectoriesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesUpdateResponse, any, {}>>;
16066
16677
  /**
16067
16678
  * @description Creates a new group. A group is a collection of users.
16068
16679
  *
@@ -16072,7 +16683,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16072
16683
  * @request POST:/groups.create
16073
16684
  * @secure
16074
16685
  */
16075
- groupsCreate: (data: GroupsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsCreateResponse, any>>;
16686
+ groupsCreate: (data: GroupsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsCreateResponse, any, {}>>;
16076
16687
  /**
16077
16688
  * @description Gets the requested group.
16078
16689
  *
@@ -16088,7 +16699,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16088
16699
  * @format id
16089
16700
  */
16090
16701
  id: string;
16091
- }, params?: RequestParams) => Promise<AxiosResponse<GroupsGetResponse, any>>;
16702
+ }, params?: RequestParams) => Promise<AxiosResponse<GroupsGetResponse, any, {}>>;
16092
16703
  /**
16093
16704
  * @description Gets the requested group.
16094
16705
  *
@@ -16098,7 +16709,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16098
16709
  * @request POST:/groups.get
16099
16710
  * @secure
16100
16711
  */
16101
- groupsGetPost: (data: GroupsGetRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsGetResponse, any>>;
16712
+ groupsGetPost: (data: GroupsGetRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsGetResponse, any, {}>>;
16102
16713
  /**
16103
16714
  * @description Lists the available groups.
16104
16715
  *
@@ -16155,7 +16766,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16155
16766
  'sync_metadata.last_sync_out.sync_unit'?: string[];
16156
16767
  /** Filters for issues synced from this specific origin system. */
16157
16768
  'sync_metadata.origin_system'?: string[];
16158
- }, params?: RequestParams) => Promise<AxiosResponse<GroupsListResponse, any>>;
16769
+ }, params?: RequestParams) => Promise<AxiosResponse<GroupsListResponse, any, {}>>;
16159
16770
  /**
16160
16771
  * @description Lists the available groups.
16161
16772
  *
@@ -16165,7 +16776,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16165
16776
  * @request POST:/groups.list
16166
16777
  * @secure
16167
16778
  */
16168
- groupsListPost: (data: GroupsListRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsListResponse, any>>;
16779
+ groupsListPost: (data: GroupsListRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsListResponse, any, {}>>;
16169
16780
  /**
16170
16781
  * @description Adds a member to a group.
16171
16782
  *
@@ -16175,7 +16786,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16175
16786
  * @request POST:/groups.members.add
16176
16787
  * @secure
16177
16788
  */
16178
- groupMembersAdd: (data: GroupMembersAddRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
16789
+ groupMembersAdd: (data: GroupMembersAddRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
16179
16790
  /**
16180
16791
  * @description Lists the members in a group.
16181
16792
  *
@@ -16208,7 +16819,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16208
16819
  * used.
16209
16820
  */
16210
16821
  mode?: ListMode;
16211
- }, params?: RequestParams) => Promise<AxiosResponse<GroupMembersListResponse, any>>;
16822
+ }, params?: RequestParams) => Promise<AxiosResponse<GroupMembersListResponse, any, {}>>;
16212
16823
  /**
16213
16824
  * @description Lists the members in a group.
16214
16825
  *
@@ -16218,7 +16829,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16218
16829
  * @request POST:/groups.members.list
16219
16830
  * @secure
16220
16831
  */
16221
- groupMembersListPost: (data: GroupMembersListRequest, params?: RequestParams) => Promise<AxiosResponse<GroupMembersListResponse, any>>;
16832
+ groupMembersListPost: (data: GroupMembersListRequest, params?: RequestParams) => Promise<AxiosResponse<GroupMembersListResponse, any, {}>>;
16222
16833
  /**
16223
16834
  * @description Removes a member from a group.
16224
16835
  *
@@ -16228,7 +16839,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16228
16839
  * @request POST:/groups.members.remove
16229
16840
  * @secure
16230
16841
  */
16231
- groupMembersRemove: (data: GroupMembersRemoveRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
16842
+ groupMembersRemove: (data: GroupMembersRemoveRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
16232
16843
  /**
16233
16844
  * @description Updates the requested group.
16234
16845
  *
@@ -16238,7 +16849,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16238
16849
  * @request POST:/groups.update
16239
16850
  * @secure
16240
16851
  */
16241
- groupsUpdate: (data: GroupsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsUpdateResponse, any>>;
16852
+ groupsUpdate: (data: GroupsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsUpdateResponse, any, {}>>;
16242
16853
  /**
16243
16854
  * @description OAuth2 authorization callback.
16244
16855
  *
@@ -16258,7 +16869,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16258
16869
  * @format text
16259
16870
  */
16260
16871
  state: string;
16261
- }, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
16872
+ }, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
16262
16873
  /**
16263
16874
  * @description OAuth2 authorization callback.
16264
16875
  *
@@ -16268,7 +16879,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16268
16879
  * @request POST:/keyrings.authorize
16269
16880
  * @secure
16270
16881
  */
16271
- keyringsCreateCallbackPost: (data: KeyringsCreateCallbackRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
16882
+ keyringsCreateCallbackPost: (data: KeyringsCreateCallbackRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
16272
16883
  /**
16273
16884
  * @description Creates a link between two objects to indicate a relationship.
16274
16885
  *
@@ -16278,7 +16889,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16278
16889
  * @request POST:/links.create
16279
16890
  * @secure
16280
16891
  */
16281
- linksCreate: (data: LinksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<LinksCreateResponse, any>>;
16892
+ linksCreate: (data: LinksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<LinksCreateResponse, any, {}>>;
16282
16893
  /**
16283
16894
  * @description Deletes a link.
16284
16895
  *
@@ -16288,7 +16899,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16288
16899
  * @request POST:/links.delete
16289
16900
  * @secure
16290
16901
  */
16291
- linksDelete: (data: LinksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
16902
+ linksDelete: (data: LinksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
16292
16903
  /**
16293
16904
  * @description Gets the requested link's information.
16294
16905
  *
@@ -16304,7 +16915,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16304
16915
  * @format id
16305
16916
  */
16306
16917
  id: string;
16307
- }, params?: RequestParams) => Promise<AxiosResponse<LinksGetResponse, any>>;
16918
+ }, params?: RequestParams) => Promise<AxiosResponse<LinksGetResponse, any, {}>>;
16308
16919
  /**
16309
16920
  * @description Gets the requested link's information.
16310
16921
  *
@@ -16314,7 +16925,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16314
16925
  * @request POST:/links.get
16315
16926
  * @secure
16316
16927
  */
16317
- linksGetPost: (data: LinksGetRequest, params?: RequestParams) => Promise<AxiosResponse<LinksGetResponse, any>>;
16928
+ linksGetPost: (data: LinksGetRequest, params?: RequestParams) => Promise<AxiosResponse<LinksGetResponse, any, {}>>;
16318
16929
  /**
16319
16930
  * @description Lists the available links.
16320
16931
  *
@@ -16368,7 +16979,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16368
16979
  * @deprecated
16369
16980
  */
16370
16981
  types?: LinkType[];
16371
- }, params?: RequestParams) => Promise<AxiosResponse<LinksListResponse, any>>;
16982
+ }, params?: RequestParams) => Promise<AxiosResponse<LinksListResponse, any, {}>>;
16372
16983
  /**
16373
16984
  * @description Lists the available links.
16374
16985
  *
@@ -16378,7 +16989,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16378
16989
  * @request POST:/links.list
16379
16990
  * @secure
16380
16991
  */
16381
- linksListPost: (data: LinksListRequest, params?: RequestParams) => Promise<AxiosResponse<LinksListResponse, any>>;
16992
+ linksListPost: (data: LinksListRequest, params?: RequestParams) => Promise<AxiosResponse<LinksListResponse, any, {}>>;
16382
16993
  /**
16383
16994
  * @description Replaces a link.
16384
16995
  *
@@ -16388,7 +16999,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16388
16999
  * @request POST:/links.replace
16389
17000
  * @secure
16390
17001
  */
16391
- linksReplace: (data: LinksReplaceRequest, params?: RequestParams) => Promise<AxiosResponse<LinksReplaceResponse, any>>;
17002
+ linksReplace: (data: LinksReplaceRequest, params?: RequestParams) => Promise<AxiosResponse<LinksReplaceResponse, any, {}>>;
16392
17003
  /**
16393
17004
  * @description Counts the meeting records.
16394
17005
  *
@@ -16452,7 +17063,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16452
17063
  'sync_metadata.last_sync_out.sync_unit'?: string[];
16453
17064
  /** Filters for issues synced from this specific origin system. */
16454
17065
  'sync_metadata.origin_system'?: string[];
16455
- }, params?: RequestParams) => Promise<AxiosResponse<MeetingsCountResponse, any>>;
17066
+ }, params?: RequestParams) => Promise<AxiosResponse<MeetingsCountResponse, any, {}>>;
16456
17067
  /**
16457
17068
  * @description Counts the meeting records.
16458
17069
  *
@@ -16462,7 +17073,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16462
17073
  * @request POST:/meetings.count
16463
17074
  * @secure
16464
17075
  */
16465
- meetingsCountPost: (data: MeetingsCountRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsCountResponse, any>>;
17076
+ meetingsCountPost: (data: MeetingsCountRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsCountResponse, any, {}>>;
16466
17077
  /**
16467
17078
  * @description Creates a new meeting record.
16468
17079
  *
@@ -16472,7 +17083,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16472
17083
  * @request POST:/meetings.create
16473
17084
  * @secure
16474
17085
  */
16475
- meetingsCreate: (data: MeetingsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsCreateResponse, any>>;
17086
+ meetingsCreate: (data: MeetingsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsCreateResponse, any, {}>>;
16476
17087
  /**
16477
17088
  * @description Deletes the meeting record.
16478
17089
  *
@@ -16482,7 +17093,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16482
17093
  * @request POST:/meetings.delete
16483
17094
  * @secure
16484
17095
  */
16485
- meetingsDelete: (data: MeetingsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
17096
+ meetingsDelete: (data: MeetingsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
16486
17097
  /**
16487
17098
  * @description Gets the meeting record.
16488
17099
  *
@@ -16498,7 +17109,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16498
17109
  * @format id
16499
17110
  */
16500
17111
  id: string;
16501
- }, params?: RequestParams) => Promise<AxiosResponse<MeetingsGetResponse, any>>;
17112
+ }, params?: RequestParams) => Promise<AxiosResponse<MeetingsGetResponse, any, {}>>;
16502
17113
  /**
16503
17114
  * @description Gets the meeting record.
16504
17115
  *
@@ -16508,7 +17119,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16508
17119
  * @request POST:/meetings.get
16509
17120
  * @secure
16510
17121
  */
16511
- meetingsGetPost: (data: MeetingsGetRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsGetResponse, any>>;
17122
+ meetingsGetPost: (data: MeetingsGetRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsGetResponse, any, {}>>;
16512
17123
  /**
16513
17124
  * @description Lists the meeting records.
16514
17125
  *
@@ -16590,7 +17201,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16590
17201
  'sync_metadata.last_sync_out.sync_unit'?: string[];
16591
17202
  /** Filters for issues synced from this specific origin system. */
16592
17203
  'sync_metadata.origin_system'?: string[];
16593
- }, params?: RequestParams) => Promise<AxiosResponse<MeetingsListResponse, any>>;
17204
+ }, params?: RequestParams) => Promise<AxiosResponse<MeetingsListResponse, any, {}>>;
16594
17205
  /**
16595
17206
  * @description Lists the meeting records.
16596
17207
  *
@@ -16600,7 +17211,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16600
17211
  * @request POST:/meetings.list
16601
17212
  * @secure
16602
17213
  */
16603
- meetingsListPost: (data: MeetingsListRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsListResponse, any>>;
17214
+ meetingsListPost: (data: MeetingsListRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsListResponse, any, {}>>;
16604
17215
  /**
16605
17216
  * @description Updates the meeting record.
16606
17217
  *
@@ -16610,7 +17221,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16610
17221
  * @request POST:/meetings.update
16611
17222
  * @secure
16612
17223
  */
16613
- meetingsUpdate: (data: MeetingsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsUpdateResponse, any>>;
17224
+ meetingsUpdate: (data: MeetingsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsUpdateResponse, any, {}>>;
16614
17225
  /**
16615
17226
  * @description Executes the metric action on the given object.
16616
17227
  *
@@ -16620,7 +17231,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16620
17231
  * @request POST:/metric-action.execute
16621
17232
  * @secure
16622
17233
  */
16623
- metricActionExecute: (data: MetricActionExecuteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
17234
+ metricActionExecute: (data: MetricActionExecuteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
16624
17235
  /**
16625
17236
  * @description Creates a custom metric definition
16626
17237
  *
@@ -16630,7 +17241,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16630
17241
  * @request POST:/metric-definitions.create
16631
17242
  * @secure
16632
17243
  */
16633
- metricDefinitionsCreate: (data: MetricDefinitionsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsCreateResponse, any>>;
17244
+ metricDefinitionsCreate: (data: MetricDefinitionsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsCreateResponse, any, {}>>;
16634
17245
  /**
16635
17246
  * @description Deletes a custom metric definition
16636
17247
  *
@@ -16640,7 +17251,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16640
17251
  * @request POST:/metric-definitions.delete
16641
17252
  * @secure
16642
17253
  */
16643
- metricDefinitionsDelete: (data: MetricDefinitionsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
17254
+ metricDefinitionsDelete: (data: MetricDefinitionsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
16644
17255
  /**
16645
17256
  * @description Gets a custom metric definition
16646
17257
  *
@@ -16663,7 +17274,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16663
17274
  * @maxLength 64
16664
17275
  */
16665
17276
  name?: string;
16666
- }, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsGetResponse, any>>;
17277
+ }, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsGetResponse, any, {}>>;
16667
17278
  /**
16668
17279
  * @description Gets a custom metric definition
16669
17280
  *
@@ -16673,7 +17284,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16673
17284
  * @request POST:/metric-definitions.get
16674
17285
  * @secure
16675
17286
  */
16676
- metricDefinitionsGetPost: (data: MetricDefinitionsGetRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsGetResponse, any>>;
17287
+ metricDefinitionsGetPost: (data: MetricDefinitionsGetRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsGetResponse, any, {}>>;
16677
17288
  /**
16678
17289
  * @description Lists metric definitions matching a filter.
16679
17290
  *
@@ -16713,7 +17324,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16713
17324
  status?: MetricDefinitionStatus[];
16714
17325
  /** The type of metric definitions sought. */
16715
17326
  type?: MetricDefinitionMetricType[];
16716
- }, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsListResponse, any>>;
17327
+ }, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsListResponse, any, {}>>;
16717
17328
  /**
16718
17329
  * @description Lists metric definitions matching a filter.
16719
17330
  *
@@ -16723,7 +17334,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16723
17334
  * @request POST:/metric-definitions.list
16724
17335
  * @secure
16725
17336
  */
16726
- metricDefinitionsListPost: (data: MetricDefinitionsListRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsListResponse, any>>;
17337
+ metricDefinitionsListPost: (data: MetricDefinitionsListRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsListResponse, any, {}>>;
16727
17338
  /**
16728
17339
  * @description Updates a custom metric definition
16729
17340
  *
@@ -16733,7 +17344,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16733
17344
  * @request POST:/metric-definitions.update
16734
17345
  * @secure
16735
17346
  */
16736
- metricDefinitionsUpdate: (data: MetricDefinitionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsUpdateResponse, any>>;
17347
+ metricDefinitionsUpdate: (data: MetricDefinitionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsUpdateResponse, any, {}>>;
16737
17348
  /**
16738
17349
  * @description Gets a metric tracker.
16739
17350
  *
@@ -16754,7 +17365,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16754
17365
  * @format id
16755
17366
  */
16756
17367
  object: string;
16757
- }, params?: RequestParams) => Promise<AxiosResponse<MetricTrackersGetResponse, any>>;
17368
+ }, params?: RequestParams) => Promise<AxiosResponse<MetricTrackersGetResponse, any, {}>>;
16758
17369
  /**
16759
17370
  * @description Gets a metric tracker.
16760
17371
  *
@@ -16764,7 +17375,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16764
17375
  * @request POST:/metric-trackers.get
16765
17376
  * @secure
16766
17377
  */
16767
- metricTrackersGetPost: (data: MetricTrackersGetRequest, params?: RequestParams) => Promise<AxiosResponse<MetricTrackersGetResponse, any>>;
17378
+ metricTrackersGetPost: (data: MetricTrackersGetRequest, params?: RequestParams) => Promise<AxiosResponse<MetricTrackersGetResponse, any, {}>>;
16768
17379
  /**
16769
17380
  * @description Creates an organization schedule fragment.
16770
17381
  *
@@ -16774,7 +17385,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16774
17385
  * @request POST:/org-schedule-fragments.create
16775
17386
  * @secure
16776
17387
  */
16777
- orgScheduleFragmentsCreate: (data: OrgScheduleFragmentsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsCreateResponse, any>>;
17388
+ orgScheduleFragmentsCreate: (data: OrgScheduleFragmentsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsCreateResponse, any, {}>>;
16778
17389
  /**
16779
17390
  * @description Gets an organization schedule fragment.
16780
17391
  *
@@ -16790,7 +17401,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16790
17401
  * @format id
16791
17402
  */
16792
17403
  id: string;
16793
- }, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsGetResponse, any>>;
17404
+ }, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsGetResponse, any, {}>>;
16794
17405
  /**
16795
17406
  * @description Gets an organization schedule fragment.
16796
17407
  *
@@ -16800,7 +17411,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16800
17411
  * @request POST:/org-schedule-fragments.get
16801
17412
  * @secure
16802
17413
  */
16803
- orgScheduleFragmentsGetPost: (data: OrgScheduleFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsGetResponse, any>>;
17414
+ orgScheduleFragmentsGetPost: (data: OrgScheduleFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsGetResponse, any, {}>>;
16804
17415
  /**
16805
17416
  * @description Changes stage of an organization schedule fragment.
16806
17417
  *
@@ -16810,7 +17421,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16810
17421
  * @request POST:/org-schedule-fragments.transition
16811
17422
  * @secure
16812
17423
  */
16813
- orgScheduleFragmentsTransition: (data: OrgScheduleFragmentsTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsTransitionResponse, any>>;
17424
+ orgScheduleFragmentsTransition: (data: OrgScheduleFragmentsTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsTransitionResponse, any, {}>>;
16814
17425
  /**
16815
17426
  * @description Creates an organization schedule with a default weekly organization schedule and a list of organization schedule fragments.
16816
17427
  *
@@ -16820,7 +17431,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16820
17431
  * @request POST:/org-schedules.create
16821
17432
  * @secure
16822
17433
  */
16823
- orgSchedulesCreate: (data: OrgSchedulesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesCreateResponse, any>>;
17434
+ orgSchedulesCreate: (data: OrgSchedulesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesCreateResponse, any, {}>>;
16824
17435
  /**
16825
17436
  * @description Evaluates an organization's schedule at specified instants.
16826
17437
  *
@@ -16842,7 +17453,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16842
17453
  * @example ["2023-01-01T12:00:00.000Z"]
16843
17454
  */
16844
17455
  instants: string[];
16845
- }, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesEvaluateResponse, any>>;
17456
+ }, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesEvaluateResponse, any, {}>>;
16846
17457
  /**
16847
17458
  * @description Evaluates an organization's schedule at specified instants.
16848
17459
  *
@@ -16852,7 +17463,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16852
17463
  * @request POST:/org-schedules.evaluate
16853
17464
  * @secure
16854
17465
  */
16855
- orgSchedulesEvaluatePost: (data: OrgSchedulesEvaluateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesEvaluateResponse, any>>;
17466
+ orgSchedulesEvaluatePost: (data: OrgSchedulesEvaluateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesEvaluateResponse, any, {}>>;
16856
17467
  /**
16857
17468
  * @description Gets an organization schedule.
16858
17469
  *
@@ -16868,7 +17479,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16868
17479
  * @format id
16869
17480
  */
16870
17481
  id: string;
16871
- }, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesGetResponse, any>>;
17482
+ }, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesGetResponse, any, {}>>;
16872
17483
  /**
16873
17484
  * @description Gets an organization schedule.
16874
17485
  *
@@ -16878,7 +17489,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16878
17489
  * @request POST:/org-schedules.get
16879
17490
  * @secure
16880
17491
  */
16881
- orgSchedulesGetPost: (data: OrgSchedulesGetRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesGetResponse, any>>;
17492
+ orgSchedulesGetPost: (data: OrgSchedulesGetRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesGetResponse, any, {}>>;
16882
17493
  /**
16883
17494
  * @description Gets list of organization schedules.
16884
17495
  *
@@ -16910,7 +17521,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16910
17521
  mode?: ListMode;
16911
17522
  /** The organization schedule statuses the filter matches. */
16912
17523
  status?: OrgScheduleStatus[];
16913
- }, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesListResponse, any>>;
17524
+ }, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesListResponse, any, {}>>;
16914
17525
  /**
16915
17526
  * @description Gets list of organization schedules.
16916
17527
  *
@@ -16920,7 +17531,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16920
17531
  * @request POST:/org-schedules.list
16921
17532
  * @secure
16922
17533
  */
16923
- orgSchedulesListPost: (data: OrgSchedulesListRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesListResponse, any>>;
17534
+ orgSchedulesListPost: (data: OrgSchedulesListRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesListResponse, any, {}>>;
16924
17535
  /**
16925
17536
  * @description Sets next organization schedule fragment which must begin the day the last existing fragment ends.
16926
17537
  *
@@ -16930,7 +17541,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16930
17541
  * @request POST:/org-schedules.set-future
16931
17542
  * @secure
16932
17543
  */
16933
- orgSchedulesSetFuture: (data: OrgSchedulesSetFutureRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesSetFutureResponse, any>>;
17544
+ orgSchedulesSetFuture: (data: OrgSchedulesSetFutureRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesSetFutureResponse, any, {}>>;
16934
17545
  /**
16935
17546
  * @description Publishes or archives an organization schedule.
16936
17547
  *
@@ -16940,7 +17551,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16940
17551
  * @request POST:/org-schedules.transition
16941
17552
  * @secure
16942
17553
  */
16943
- orgSchedulesTransition: (data: OrgSchedulesTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesTransitionResponse, any>>;
17554
+ orgSchedulesTransition: (data: OrgSchedulesTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesTransitionResponse, any, {}>>;
16944
17555
  /**
16945
17556
  * @description Updates an organization schedule.
16946
17557
  *
@@ -16950,7 +17561,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16950
17561
  * @request POST:/org-schedules.update
16951
17562
  * @secure
16952
17563
  */
16953
- orgSchedulesUpdate: (data: OrgSchedulesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesUpdateResponse, any>>;
17564
+ orgSchedulesUpdate: (data: OrgSchedulesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesUpdateResponse, any, {}>>;
16954
17565
  /**
16955
17566
  * @description Creates new [part](https://devrev.ai/docs/product/parts).
16956
17567
  *
@@ -16960,7 +17571,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16960
17571
  * @request POST:/parts.create
16961
17572
  * @secure
16962
17573
  */
16963
- partsCreate: (data: PartsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<PartsCreateResponse, any>>;
17574
+ partsCreate: (data: PartsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<PartsCreateResponse, any, {}>>;
16964
17575
  /**
16965
17576
  * @description Deletes a [part](https://devrev.ai/docs/product/parts).
16966
17577
  *
@@ -16970,7 +17581,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16970
17581
  * @request POST:/parts.delete
16971
17582
  * @secure
16972
17583
  */
16973
- partsDelete: (data: PartsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
17584
+ partsDelete: (data: PartsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
16974
17585
  /**
16975
17586
  * @description Gets a [part's](https://devrev.ai/docs/product/parts) information.
16976
17587
  *
@@ -16987,7 +17598,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16987
17598
  * @example "PROD-12345"
16988
17599
  */
16989
17600
  id: string;
16990
- }, params?: RequestParams) => Promise<AxiosResponse<PartsGetResponse, any>>;
17601
+ }, params?: RequestParams) => Promise<AxiosResponse<PartsGetResponse, any, {}>>;
16991
17602
  /**
16992
17603
  * @description Gets a [part's](https://devrev.ai/docs/product/parts) information.
16993
17604
  *
@@ -16997,7 +17608,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16997
17608
  * @request POST:/parts.get
16998
17609
  * @secure
16999
17610
  */
17000
- partsGetPost: (data: PartsGetRequest, params?: RequestParams) => Promise<AxiosResponse<PartsGetResponse, any>>;
17611
+ partsGetPost: (data: PartsGetRequest, params?: RequestParams) => Promise<AxiosResponse<PartsGetResponse, any, {}>>;
17001
17612
  /**
17002
17613
  * @description Lists a collection of [parts](https://devrev.ai/docs/product/parts).
17003
17614
  *
@@ -17063,7 +17674,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17063
17674
  tags?: string[];
17064
17675
  /** Filters for parts of the provided type(s). */
17065
17676
  type?: PartType[];
17066
- }, params?: RequestParams) => Promise<AxiosResponse<PartsListResponse, any>>;
17677
+ }, params?: RequestParams) => Promise<AxiosResponse<PartsListResponse, any, {}>>;
17067
17678
  /**
17068
17679
  * @description Lists a collection of [parts](https://devrev.ai/docs/product/parts).
17069
17680
  *
@@ -17073,7 +17684,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17073
17684
  * @request POST:/parts.list
17074
17685
  * @secure
17075
17686
  */
17076
- partsListPost: (data: PartsListRequest, params?: RequestParams) => Promise<AxiosResponse<PartsListResponse, any>>;
17687
+ partsListPost: (data: PartsListRequest, params?: RequestParams) => Promise<AxiosResponse<PartsListResponse, any, {}>>;
17077
17688
  /**
17078
17689
  * @description Updates a [part's](https://devrev.ai/docs/product/parts) information.
17079
17690
  *
@@ -17083,7 +17694,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17083
17694
  * @request POST:/parts.update
17084
17695
  * @secure
17085
17696
  */
17086
- partsUpdate: (data: PartsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<PartsUpdateResponse, any>>;
17697
+ partsUpdate: (data: PartsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<PartsUpdateResponse, any, {}>>;
17087
17698
  /**
17088
17699
  * @description Lists the reactors for an object.
17089
17700
  *
@@ -17117,7 +17728,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17117
17728
  * @format int32
17118
17729
  */
17119
17730
  limit?: number;
17120
- }, params?: RequestParams) => Promise<AxiosResponse<ReactionsListResponse, any>>;
17731
+ }, params?: RequestParams) => Promise<AxiosResponse<ReactionsListResponse, any, {}>>;
17121
17732
  /**
17122
17733
  * @description Lists the reactors for an object.
17123
17734
  *
@@ -17127,7 +17738,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17127
17738
  * @request POST:/reactions.list
17128
17739
  * @secure
17129
17740
  */
17130
- reactionsListPost: (data: ReactionsListRequest, params?: RequestParams) => Promise<AxiosResponse<ReactionsListResponse, any>>;
17741
+ reactionsListPost: (data: ReactionsListRequest, params?: RequestParams) => Promise<AxiosResponse<ReactionsListResponse, any, {}>>;
17131
17742
  /**
17132
17743
  * @description Updates a reaction for an object.
17133
17744
  *
@@ -17137,7 +17748,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17137
17748
  * @request POST:/reactions.update
17138
17749
  * @secure
17139
17750
  */
17140
- reactionsUpdate: (data: ReactionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
17751
+ reactionsUpdate: (data: ReactionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
17141
17752
  /**
17142
17753
  * @description Creates a Rev organization in the authenticated user's Dev organization.
17143
17754
  *
@@ -17147,7 +17758,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17147
17758
  * @request POST:/rev-orgs.create
17148
17759
  * @secure
17149
17760
  */
17150
- revOrgsCreate: (data: RevOrgsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsCreateResponse, any>>;
17761
+ revOrgsCreate: (data: RevOrgsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsCreateResponse, any, {}>>;
17151
17762
  /**
17152
17763
  * @description Deletes the Rev organization.
17153
17764
  *
@@ -17157,7 +17768,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17157
17768
  * @request POST:/rev-orgs.delete
17158
17769
  * @secure
17159
17770
  */
17160
- revOrgsDelete: (data: RevOrgsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
17771
+ revOrgsDelete: (data: RevOrgsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
17161
17772
  /**
17162
17773
  * @description Retrieves the Rev organization's information.
17163
17774
  *
@@ -17181,7 +17792,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17181
17792
  * @example "REV-AbCdEfGh"
17182
17793
  */
17183
17794
  id?: string;
17184
- }, params?: RequestParams) => Promise<AxiosResponse<RevOrgsGetResponse, any>>;
17795
+ }, params?: RequestParams) => Promise<AxiosResponse<RevOrgsGetResponse, any, {}>>;
17185
17796
  /**
17186
17797
  * @description Retrieves the Rev organization's information.
17187
17798
  *
@@ -17191,7 +17802,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17191
17802
  * @request POST:/rev-orgs.get
17192
17803
  * @secure
17193
17804
  */
17194
- revOrgsGetPost: (data: RevOrgsGetRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsGetResponse, any>>;
17805
+ revOrgsGetPost: (data: RevOrgsGetRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsGetResponse, any, {}>>;
17195
17806
  /**
17196
17807
  * @description Gets the list of Rev organizations' information belonging to the authenticated user's Dev Organization which the user is also authorized to access.
17197
17808
  *
@@ -17255,7 +17866,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17255
17866
  * them.
17256
17867
  */
17257
17868
  sort_by?: string[];
17258
- }, params?: RequestParams) => Promise<AxiosResponse<RevOrgsListResponse, any>>;
17869
+ }, params?: RequestParams) => Promise<AxiosResponse<RevOrgsListResponse, any, {}>>;
17259
17870
  /**
17260
17871
  * @description Gets the list of Rev organizations' information belonging to the authenticated user's Dev Organization which the user is also authorized to access.
17261
17872
  *
@@ -17265,7 +17876,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17265
17876
  * @request POST:/rev-orgs.list
17266
17877
  * @secure
17267
17878
  */
17268
- revOrgsListPost: (data: RevOrgsListRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsListResponse, any>>;
17879
+ revOrgsListPost: (data: RevOrgsListRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsListResponse, any, {}>>;
17269
17880
  /**
17270
17881
  * @description Updates the Rev organization's information.
17271
17882
  *
@@ -17275,7 +17886,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17275
17886
  * @request POST:/rev-orgs.update
17276
17887
  * @secure
17277
17888
  */
17278
- revOrgsUpdate: (data: RevOrgsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsUpdateResponse, any>>;
17889
+ revOrgsUpdate: (data: RevOrgsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsUpdateResponse, any, {}>>;
17279
17890
  /**
17280
17891
  * @description Creates a Rev user for a Rev organization. Rev user can be a customer or a lead of an organization.
17281
17892
  *
@@ -17285,7 +17896,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17285
17896
  * @request POST:/rev-users.create
17286
17897
  * @secure
17287
17898
  */
17288
- revUsersCreate: (data: RevUsersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersCreateResponse, any>>;
17899
+ revUsersCreate: (data: RevUsersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersCreateResponse, any, {}>>;
17289
17900
  /**
17290
17901
  * @description Deletes a Rev user.
17291
17902
  *
@@ -17295,7 +17906,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17295
17906
  * @request POST:/rev-users.delete
17296
17907
  * @secure
17297
17908
  */
17298
- revUsersDelete: (data: RevUsersDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
17909
+ revUsersDelete: (data: RevUsersDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
17299
17910
  /**
17300
17911
  * @description Returns the Rev user of a Rev organization by its ID.
17301
17912
  *
@@ -17311,7 +17922,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17311
17922
  * @format id
17312
17923
  */
17313
17924
  id: string;
17314
- }, params?: RequestParams) => Promise<AxiosResponse<RevUsersGetResponse, any>>;
17925
+ }, params?: RequestParams) => Promise<AxiosResponse<RevUsersGetResponse, any, {}>>;
17315
17926
  /**
17316
17927
  * @description Returns the Rev user of a Rev organization by its ID.
17317
17928
  *
@@ -17321,7 +17932,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17321
17932
  * @request POST:/rev-users.get
17322
17933
  * @secure
17323
17934
  */
17324
- revUsersGetPost: (data: RevUsersGetRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersGetResponse, any>>;
17935
+ revUsersGetPost: (data: RevUsersGetRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersGetResponse, any, {}>>;
17325
17936
  /**
17326
17937
  * @description Returns a list of all Rev Users belonging to the authenticated user's Dev organization.
17327
17938
  *
@@ -17396,7 +18007,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17396
18007
  rev_org?: string[];
17397
18008
  /** Fields to sort the Rev users by and the direction to sort them. */
17398
18009
  sort_by?: string[];
17399
- }, params?: RequestParams) => Promise<AxiosResponse<RevUsersListResponse, any>>;
18010
+ }, params?: RequestParams) => Promise<AxiosResponse<RevUsersListResponse, any, {}>>;
17400
18011
  /**
17401
18012
  * @description Returns a list of all Rev Users belonging to the authenticated user's Dev organization.
17402
18013
  *
@@ -17406,7 +18017,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17406
18017
  * @request POST:/rev-users.list
17407
18018
  * @secure
17408
18019
  */
17409
- revUsersListPost: (data: RevUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersListResponse, any>>;
18020
+ revUsersListPost: (data: RevUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersListResponse, any, {}>>;
17410
18021
  /**
17411
18022
  * @description Merges the secondary Rev user into the primary Rev user.
17412
18023
  *
@@ -17416,7 +18027,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17416
18027
  * @request POST:/rev-users.merge
17417
18028
  * @secure
17418
18029
  */
17419
- revUsersMerge: (data: RevUsersMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
18030
+ revUsersMerge: (data: RevUsersMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
17420
18031
  /**
17421
18032
  * @description Scans through all Rev users.
17422
18033
  *
@@ -17479,7 +18090,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17479
18090
  * @example ["REV-AbCdEfGh"]
17480
18091
  */
17481
18092
  rev_org?: string[];
17482
- }, params?: RequestParams) => Promise<AxiosResponse<RevUsersScanResponse, any>>;
18093
+ }, params?: RequestParams) => Promise<AxiosResponse<RevUsersScanResponse, any, {}>>;
17483
18094
  /**
17484
18095
  * @description Scans through all Rev users.
17485
18096
  *
@@ -17489,7 +18100,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17489
18100
  * @request POST:/rev-users.scan
17490
18101
  * @secure
17491
18102
  */
17492
- revUsersScanPost: (data: RevUsersScanRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersScanResponse, any>>;
18103
+ revUsersScanPost: (data: RevUsersScanRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersScanResponse, any, {}>>;
17493
18104
  /**
17494
18105
  * @description Updates a Rev user.
17495
18106
  *
@@ -17499,7 +18110,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17499
18110
  * @request POST:/rev-users.update
17500
18111
  * @secure
17501
18112
  */
17502
- revUsersUpdate: (data: RevUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersUpdateResponse, any>>;
18113
+ revUsersUpdate: (data: RevUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersUpdateResponse, any, {}>>;
17503
18114
  /**
17504
18115
  * @description Gets the aggregated schema.
17505
18116
  *
@@ -17532,7 +18143,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17532
18143
  * @format id
17533
18144
  */
17534
18145
  stock_schema_fragment?: string;
17535
- }, params?: RequestParams) => Promise<AxiosResponse<AggregatedSchemaGetResponse, any>>;
18146
+ }, params?: RequestParams) => Promise<AxiosResponse<AggregatedSchemaGetResponse, any, {}>>;
17536
18147
  /**
17537
18148
  * @description Gets the aggregated schema.
17538
18149
  *
@@ -17542,7 +18153,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17542
18153
  * @request POST:/schemas.aggregated.get
17543
18154
  * @secure
17544
18155
  */
17545
- aggregatedSchemaGetPost: (data: AggregatedSchemaGetRequest, params?: RequestParams) => Promise<AxiosResponse<AggregatedSchemaGetResponse, any>>;
18156
+ aggregatedSchemaGetPost: (data: AggregatedSchemaGetRequest, params?: RequestParams) => Promise<AxiosResponse<AggregatedSchemaGetResponse, any, {}>>;
17546
18157
  /**
17547
18158
  * @description Gets a custom schema fragment.
17548
18159
  *
@@ -17558,7 +18169,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17558
18169
  * @format id
17559
18170
  */
17560
18171
  id: string;
17561
- }, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsGetResponse, any>>;
18172
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsGetResponse, any, {}>>;
17562
18173
  /**
17563
18174
  * @description Gets a custom schema fragment.
17564
18175
  *
@@ -17568,7 +18179,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17568
18179
  * @request POST:/schemas.custom.get
17569
18180
  * @secure
17570
18181
  */
17571
- customSchemaFragmentsGetPost: (data: CustomSchemaFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsGetResponse, any>>;
18182
+ customSchemaFragmentsGetPost: (data: CustomSchemaFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsGetResponse, any, {}>>;
17572
18183
  /**
17573
18184
  * @description Lists custom schema fragments.
17574
18185
  *
@@ -17619,7 +18230,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17619
18230
  subtype?: string[];
17620
18231
  /** Filters for custom schema fragment of the provided types. */
17621
18232
  types?: CustomSchemaFragmentType[];
17622
- }, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsListResponse, any>>;
18233
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsListResponse, any, {}>>;
17623
18234
  /**
17624
18235
  * @description Lists custom schema fragments.
17625
18236
  *
@@ -17629,7 +18240,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17629
18240
  * @request POST:/schemas.custom.list
17630
18241
  * @secure
17631
18242
  */
17632
- customSchemaFragmentsListPost: (data: CustomSchemaFragmentsListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsListResponse, any>>;
18243
+ customSchemaFragmentsListPost: (data: CustomSchemaFragmentsListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsListResponse, any, {}>>;
17633
18244
  /**
17634
18245
  * @description Creates or updates a custom schema fragment.
17635
18246
  *
@@ -17639,7 +18250,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17639
18250
  * @request POST:/schemas.custom.set
17640
18251
  * @secure
17641
18252
  */
17642
- customSchemaFragmentsSet: (data: CustomSchemaFragmentsSetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsSetResponse, any>>;
18253
+ customSchemaFragmentsSet: (data: CustomSchemaFragmentsSetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsSetResponse, any, {}>>;
17643
18254
  /**
17644
18255
  * @description Gets a stock schema fragment.
17645
18256
  *
@@ -17660,7 +18271,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17660
18271
  * @format text
17661
18272
  */
17662
18273
  leaf_type?: string;
17663
- }, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsGetResponse, any>>;
18274
+ }, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsGetResponse, any, {}>>;
17664
18275
  /**
17665
18276
  * @description Gets a stock schema fragment.
17666
18277
  *
@@ -17670,7 +18281,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17670
18281
  * @request POST:/schemas.stock.get
17671
18282
  * @secure
17672
18283
  */
17673
- stockSchemaFragmentsGetPost: (data: StockSchemaFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsGetResponse, any>>;
18284
+ stockSchemaFragmentsGetPost: (data: StockSchemaFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsGetResponse, any, {}>>;
17674
18285
  /**
17675
18286
  * @description Lists stock schema fragments.
17676
18287
  *
@@ -17711,7 +18322,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17711
18322
  prune?: StockSchemaFragmentsListRequestPrune[];
17712
18323
  /** The list of fields to sort the items by and how to sort them. */
17713
18324
  sort_by?: string[];
17714
- }, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsListResponse, any>>;
18325
+ }, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsListResponse, any, {}>>;
17715
18326
  /**
17716
18327
  * @description Lists stock schema fragments.
17717
18328
  *
@@ -17721,7 +18332,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17721
18332
  * @request POST:/schemas.stock.list
17722
18333
  * @secure
17723
18334
  */
17724
- stockSchemaFragmentsListPost: (data: StockSchemaFragmentsListRequest, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsListResponse, any>>;
18335
+ stockSchemaFragmentsListPost: (data: StockSchemaFragmentsListRequest, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsListResponse, any, {}>>;
17725
18336
  /**
17726
18337
  * @description Gets the new fragment IDs and fields resulting from changing a subtype.
17727
18338
  *
@@ -17731,7 +18342,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17731
18342
  * @request POST:/schemas.subtypes.prepare-update
17732
18343
  * @secure
17733
18344
  */
17734
- schemasSubtypePrepareUpdateGet: (data: SchemasSubtypePrepareUpdateGetRequest, params?: RequestParams) => Promise<AxiosResponse<SchemasSubtypePrepareUpdateGetResponse, any>>;
18345
+ schemasSubtypePrepareUpdateGet: (data: SchemasSubtypePrepareUpdateGetRequest, params?: RequestParams) => Promise<AxiosResponse<SchemasSubtypePrepareUpdateGetResponse, any, {}>>;
17735
18346
  /**
17736
18347
  * @description Creates a service account.
17737
18348
  *
@@ -17741,7 +18352,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17741
18352
  * @request POST:/service-accounts.create
17742
18353
  * @secure
17743
18354
  */
17744
- serviceAccountsCreate: (data: ServiceAccountsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsCreateResponse, any>>;
18355
+ serviceAccountsCreate: (data: ServiceAccountsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsCreateResponse, any, {}>>;
17745
18356
  /**
17746
18357
  * @description Gets a service account.
17747
18358
  *
@@ -17757,7 +18368,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17757
18368
  * @format id
17758
18369
  */
17759
18370
  id: string;
17760
- }, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsGetResponse, any>>;
18371
+ }, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsGetResponse, any, {}>>;
17761
18372
  /**
17762
18373
  * @description Gets a service account.
17763
18374
  *
@@ -17767,7 +18378,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17767
18378
  * @request POST:/service-accounts.get
17768
18379
  * @secure
17769
18380
  */
17770
- serviceAccountsGetPost: (data: ServiceAccountsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsGetResponse, any>>;
18381
+ serviceAccountsGetPost: (data: ServiceAccountsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsGetResponse, any, {}>>;
17771
18382
  /**
17772
18383
  * @description Gets an SLA tracker.
17773
18384
  *
@@ -17783,7 +18394,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17783
18394
  * @format id
17784
18395
  */
17785
18396
  id: string;
17786
- }, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersGetResponse, any>>;
18397
+ }, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersGetResponse, any, {}>>;
17787
18398
  /**
17788
18399
  * @description Gets an SLA tracker.
17789
18400
  *
@@ -17793,7 +18404,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17793
18404
  * @request POST:/sla-trackers.get
17794
18405
  * @secure
17795
18406
  */
17796
- slaTrackersGetPost: (data: SlaTrackersGetRequest, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersGetResponse, any>>;
18407
+ slaTrackersGetPost: (data: SlaTrackersGetRequest, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersGetResponse, any, {}>>;
17797
18408
  /**
17798
18409
  * @description Lists SLA trackers matching a filter.
17799
18410
  *
@@ -17852,7 +18463,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17852
18463
  stage?: string[];
17853
18464
  /** The SLA tracker statuses the filter matches. */
17854
18465
  status?: string[];
17855
- }, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersListResponse, any>>;
18466
+ }, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersListResponse, any, {}>>;
17856
18467
  /**
17857
18468
  * @description Lists SLA trackers matching a filter.
17858
18469
  *
@@ -17862,7 +18473,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17862
18473
  * @request POST:/sla-trackers.list
17863
18474
  * @secure
17864
18475
  */
17865
- slaTrackersListPost: (data: SlaTrackersListRequest, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersListResponse, any>>;
18476
+ slaTrackersListPost: (data: SlaTrackersListRequest, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersListResponse, any, {}>>;
17866
18477
  /**
17867
18478
  * @description Assigns the SLA to a set of Rev organizations.
17868
18479
  *
@@ -17872,7 +18483,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17872
18483
  * @request POST:/slas.assign
17873
18484
  * @secure
17874
18485
  */
17875
- slasAssign: (data: SlasAssignRequest, params?: RequestParams) => Promise<AxiosResponse<SlasAssignResponse, any>>;
18486
+ slasAssign: (data: SlasAssignRequest, params?: RequestParams) => Promise<AxiosResponse<SlasAssignResponse, any, {}>>;
17876
18487
  /**
17877
18488
  * @description Creates an SLA in draft status.
17878
18489
  *
@@ -17882,7 +18493,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17882
18493
  * @request POST:/slas.create
17883
18494
  * @secure
17884
18495
  */
17885
- slasCreate: (data: SlasCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SlasCreateResponse, any>>;
18496
+ slasCreate: (data: SlasCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SlasCreateResponse, any, {}>>;
17886
18497
  /**
17887
18498
  * @description Gets an SLA.
17888
18499
  *
@@ -17898,7 +18509,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17898
18509
  * @format id
17899
18510
  */
17900
18511
  id: string;
17901
- }, params?: RequestParams) => Promise<AxiosResponse<SlasGetResponse, any>>;
18512
+ }, params?: RequestParams) => Promise<AxiosResponse<SlasGetResponse, any, {}>>;
17902
18513
  /**
17903
18514
  * @description Gets an SLA.
17904
18515
  *
@@ -17908,7 +18519,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17908
18519
  * @request POST:/slas.get
17909
18520
  * @secure
17910
18521
  */
17911
- slasGetPost: (data: SlasGetRequest, params?: RequestParams) => Promise<AxiosResponse<SlasGetResponse, any>>;
18522
+ slasGetPost: (data: SlasGetRequest, params?: RequestParams) => Promise<AxiosResponse<SlasGetResponse, any, {}>>;
17912
18523
  /**
17913
18524
  * @description Lists SLAs matching a filter.
17914
18525
  *
@@ -17948,7 +18559,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17948
18559
  sort_by?: string[];
17949
18560
  /** The SLA statuses the filter matches. */
17950
18561
  status?: SlaStatus[];
17951
- }, params?: RequestParams) => Promise<AxiosResponse<SlasListResponse, any>>;
18562
+ }, params?: RequestParams) => Promise<AxiosResponse<SlasListResponse, any, {}>>;
17952
18563
  /**
17953
18564
  * @description Lists SLAs matching a filter.
17954
18565
  *
@@ -17958,7 +18569,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17958
18569
  * @request POST:/slas.list
17959
18570
  * @secure
17960
18571
  */
17961
- slasListPost: (data: SlasListRequest, params?: RequestParams) => Promise<AxiosResponse<SlasListResponse, any>>;
18572
+ slasListPost: (data: SlasListRequest, params?: RequestParams) => Promise<AxiosResponse<SlasListResponse, any, {}>>;
17962
18573
  /**
17963
18574
  * @description Changes the status of an SLA.
17964
18575
  *
@@ -17968,7 +18579,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17968
18579
  * @request POST:/slas.transition
17969
18580
  * @secure
17970
18581
  */
17971
- slasTransition: (data: SlasTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<SlasTransitionResponse, any>>;
18582
+ slasTransition: (data: SlasTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<SlasTransitionResponse, any, {}>>;
17972
18583
  /**
17973
18584
  * @description Updates a draft SLA.
17974
18585
  *
@@ -17978,7 +18589,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17978
18589
  * @request POST:/slas.update
17979
18590
  * @secure
17980
18591
  */
17981
- slasUpdate: (data: SlasUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SlasUpdateResponse, any>>;
18592
+ slasUpdate: (data: SlasUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SlasUpdateResponse, any, {}>>;
17982
18593
  /**
17983
18594
  * @description Executes deferred snap-kit actions.
17984
18595
  *
@@ -17988,7 +18599,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17988
18599
  * @request POST:/snap-kit-action.execute.deferred
17989
18600
  * @secure
17990
18601
  */
17991
- snapKitActionExecuteDeferred: (data: SnapKitActionExecuteDeferredRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
18602
+ snapKitActionExecuteDeferred: (data: SnapKitActionExecuteDeferredRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
17992
18603
  /**
17993
18604
  * @description Create a snap widget object.
17994
18605
  *
@@ -17998,7 +18609,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17998
18609
  * @request POST:/snap-widgets.create
17999
18610
  * @secure
18000
18611
  */
18001
- snapWidgetsCreate: (data: SnapWidgetsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SnapWidgetsCreateResponse, any>>;
18612
+ snapWidgetsCreate: (data: SnapWidgetsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SnapWidgetsCreateResponse, any, {}>>;
18002
18613
  /**
18003
18614
  * @description Creates a stage diagram.
18004
18615
  *
@@ -18008,7 +18619,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18008
18619
  * @request POST:/stage-diagrams.create
18009
18620
  * @secure
18010
18621
  */
18011
- stageDiagramsCreate: (data: StageDiagramsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsCreateResponse, any>>;
18622
+ stageDiagramsCreate: (data: StageDiagramsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsCreateResponse, any, {}>>;
18012
18623
  /**
18013
18624
  * @description Gets a stage diagram.
18014
18625
  *
@@ -18035,7 +18646,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18035
18646
  * @format text
18036
18647
  */
18037
18648
  leaf_type?: string;
18038
- }, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsGetResponse, any>>;
18649
+ }, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsGetResponse, any, {}>>;
18039
18650
  /**
18040
18651
  * @description Gets a stage diagram.
18041
18652
  *
@@ -18045,7 +18656,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18045
18656
  * @request POST:/stage-diagrams.get
18046
18657
  * @secure
18047
18658
  */
18048
- stageDiagramsGetPost: (data: StageDiagramsGetRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsGetResponse, any>>;
18659
+ stageDiagramsGetPost: (data: StageDiagramsGetRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsGetResponse, any, {}>>;
18049
18660
  /**
18050
18661
  * @description Lists stage diagrams.
18051
18662
  *
@@ -18075,7 +18686,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18075
18686
  name?: string[];
18076
18687
  /** The list of fields to sort the items by and how to sort them. */
18077
18688
  sort_by?: string[];
18078
- }, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsListResponse, any>>;
18689
+ }, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsListResponse, any, {}>>;
18079
18690
  /**
18080
18691
  * @description Lists stage diagrams.
18081
18692
  *
@@ -18085,7 +18696,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18085
18696
  * @request POST:/stage-diagrams.list
18086
18697
  * @secure
18087
18698
  */
18088
- stageDiagramsListPost: (data: StageDiagramsListRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsListResponse, any>>;
18699
+ stageDiagramsListPost: (data: StageDiagramsListRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsListResponse, any, {}>>;
18089
18700
  /**
18090
18701
  * @description Updates a stage diagram.
18091
18702
  *
@@ -18095,7 +18706,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18095
18706
  * @request POST:/stage-diagrams.update
18096
18707
  * @secure
18097
18708
  */
18098
- stageDiagramsUpdate: (data: StageDiagramsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsUpdateResponse, any>>;
18709
+ stageDiagramsUpdate: (data: StageDiagramsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsUpdateResponse, any, {}>>;
18099
18710
  /**
18100
18711
  * @description Creates a custom stage.
18101
18712
  *
@@ -18105,7 +18716,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18105
18716
  * @request POST:/stages.custom.create
18106
18717
  * @secure
18107
18718
  */
18108
- customStagesCreate: (data: CustomStagesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesCreateResponse, any>>;
18719
+ customStagesCreate: (data: CustomStagesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesCreateResponse, any, {}>>;
18109
18720
  /**
18110
18721
  * @description Gets a custom stage.
18111
18722
  *
@@ -18121,7 +18732,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18121
18732
  * @format id
18122
18733
  */
18123
18734
  id: string;
18124
- }, params?: RequestParams) => Promise<AxiosResponse<CustomStagesGetResponse, any>>;
18735
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomStagesGetResponse, any, {}>>;
18125
18736
  /**
18126
18737
  * @description Gets a custom stage.
18127
18738
  *
@@ -18131,7 +18742,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18131
18742
  * @request POST:/stages.custom.get
18132
18743
  * @secure
18133
18744
  */
18134
- customStagesGetPost: (data: CustomStagesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesGetResponse, any>>;
18745
+ customStagesGetPost: (data: CustomStagesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesGetResponse, any, {}>>;
18135
18746
  /**
18136
18747
  * @description Lists custom stages.
18137
18748
  *
@@ -18159,7 +18770,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18159
18770
  ordinal?: number[];
18160
18771
  /** The list of fields to sort the items by and how to sort them. */
18161
18772
  sort_by?: string[];
18162
- }, params?: RequestParams) => Promise<AxiosResponse<CustomStagesListResponse, any>>;
18773
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomStagesListResponse, any, {}>>;
18163
18774
  /**
18164
18775
  * @description Lists custom stages.
18165
18776
  *
@@ -18169,7 +18780,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18169
18780
  * @request POST:/stages.custom.list
18170
18781
  * @secure
18171
18782
  */
18172
- customStagesListPost: (data: CustomStagesListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesListResponse, any>>;
18783
+ customStagesListPost: (data: CustomStagesListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesListResponse, any, {}>>;
18173
18784
  /**
18174
18785
  * @description Updates a custom stage.
18175
18786
  *
@@ -18179,7 +18790,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18179
18790
  * @request POST:/stages.custom.update
18180
18791
  * @secure
18181
18792
  */
18182
- customStagesUpdate: (data: CustomStagesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesUpdateResponse, any>>;
18793
+ customStagesUpdate: (data: CustomStagesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesUpdateResponse, any, {}>>;
18183
18794
  /**
18184
18795
  * @description Creates a custom state.
18185
18796
  *
@@ -18189,7 +18800,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18189
18800
  * @request POST:/states.custom.create
18190
18801
  * @secure
18191
18802
  */
18192
- customStatesCreate: (data: CustomStatesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesCreateResponse, any>>;
18803
+ customStatesCreate: (data: CustomStatesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesCreateResponse, any, {}>>;
18193
18804
  /**
18194
18805
  * @description Gets a custom state.
18195
18806
  *
@@ -18205,7 +18816,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18205
18816
  * @format id
18206
18817
  */
18207
18818
  id: string;
18208
- }, params?: RequestParams) => Promise<AxiosResponse<CustomStatesGetResponse, any>>;
18819
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomStatesGetResponse, any, {}>>;
18209
18820
  /**
18210
18821
  * @description Gets a custom state.
18211
18822
  *
@@ -18215,7 +18826,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18215
18826
  * @request POST:/states.custom.get
18216
18827
  * @secure
18217
18828
  */
18218
- customStatesGetPost: (data: CustomStatesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesGetResponse, any>>;
18829
+ customStatesGetPost: (data: CustomStatesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesGetResponse, any, {}>>;
18219
18830
  /**
18220
18831
  * @description Lists custom states.
18221
18832
  *
@@ -18245,7 +18856,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18245
18856
  ordinal?: number[];
18246
18857
  /** The list of fields to sort the items by and how to sort them. */
18247
18858
  sort_by?: string[];
18248
- }, params?: RequestParams) => Promise<AxiosResponse<CustomStatesListResponse, any>>;
18859
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomStatesListResponse, any, {}>>;
18249
18860
  /**
18250
18861
  * @description Lists custom states.
18251
18862
  *
@@ -18255,7 +18866,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18255
18866
  * @request POST:/states.custom.list
18256
18867
  * @secure
18257
18868
  */
18258
- customStatesListPost: (data: CustomStatesListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesListResponse, any>>;
18869
+ customStatesListPost: (data: CustomStatesListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesListResponse, any, {}>>;
18259
18870
  /**
18260
18871
  * @description Updates a custom state.
18261
18872
  *
@@ -18265,7 +18876,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18265
18876
  * @request POST:/states.custom.update
18266
18877
  * @secure
18267
18878
  */
18268
- customStatesUpdate: (data: CustomStatesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesUpdateResponse, any>>;
18879
+ customStatesUpdate: (data: CustomStatesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesUpdateResponse, any, {}>>;
18269
18880
  /**
18270
18881
  * @description Creates a schema for survey, which includes name and description of schema.
18271
18882
  *
@@ -18275,7 +18886,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18275
18886
  * @request POST:/surveys.create
18276
18887
  * @secure
18277
18888
  */
18278
- surveysCreate: (data: SurveysCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysCreateResponse, any>>;
18889
+ surveysCreate: (data: SurveysCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysCreateResponse, any, {}>>;
18279
18890
  /**
18280
18891
  * @description Deletes the specified survey.
18281
18892
  *
@@ -18285,7 +18896,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18285
18896
  * @request POST:/surveys.delete
18286
18897
  * @secure
18287
18898
  */
18288
- surveysDelete: (data: SurveysDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
18899
+ surveysDelete: (data: SurveysDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
18289
18900
  /**
18290
18901
  * @description Gets a survey given the ID.
18291
18902
  *
@@ -18301,7 +18912,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18301
18912
  * @format id
18302
18913
  */
18303
18914
  id: string;
18304
- }, params?: RequestParams) => Promise<AxiosResponse<SurveysGetResponse, any>>;
18915
+ }, params?: RequestParams) => Promise<AxiosResponse<SurveysGetResponse, any, {}>>;
18305
18916
  /**
18306
18917
  * @description Gets a survey given the ID.
18307
18918
  *
@@ -18311,7 +18922,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18311
18922
  * @request POST:/surveys.get
18312
18923
  * @secure
18313
18924
  */
18314
- surveysGetPost: (data: SurveysGetRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysGetResponse, any>>;
18925
+ surveysGetPost: (data: SurveysGetRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysGetResponse, any, {}>>;
18315
18926
  /**
18316
18927
  * @description List surveys requested by the user.
18317
18928
  *
@@ -18348,7 +18959,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18348
18959
  name?: string[];
18349
18960
  /** Fields to sort the surveys by and the direction to sort them. */
18350
18961
  sort_by?: string[];
18351
- }, params?: RequestParams) => Promise<AxiosResponse<SurveysListResponse, any>>;
18962
+ }, params?: RequestParams) => Promise<AxiosResponse<SurveysListResponse, any, {}>>;
18352
18963
  /**
18353
18964
  * @description List surveys requested by the user.
18354
18965
  *
@@ -18358,7 +18969,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18358
18969
  * @request POST:/surveys.list
18359
18970
  * @secure
18360
18971
  */
18361
- surveysListPost: (data: SurveysListRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysListResponse, any>>;
18972
+ surveysListPost: (data: SurveysListRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysListResponse, any, {}>>;
18362
18973
  /**
18363
18974
  * @description List survey responses requested by the user.
18364
18975
  *
@@ -18412,7 +19023,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18412
19023
  stages?: number[];
18413
19024
  /** Filters for survey responses for the provided survey IDs. */
18414
19025
  surveys?: string[];
18415
- }, params?: RequestParams) => Promise<AxiosResponse<SurveysResponsesListResponse, any>>;
19026
+ }, params?: RequestParams) => Promise<AxiosResponse<SurveysResponsesListResponse, any, {}>>;
18416
19027
  /**
18417
19028
  * @description List survey responses requested by the user.
18418
19029
  *
@@ -18422,7 +19033,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18422
19033
  * @request POST:/surveys.responses.list
18423
19034
  * @secure
18424
19035
  */
18425
- surveysResponsesListPost: (data: SurveysResponsesListRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysResponsesListResponse, any>>;
19036
+ surveysResponsesListPost: (data: SurveysResponsesListRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysResponsesListResponse, any, {}>>;
18426
19037
  /**
18427
19038
  * @description Updates a user's survey response for the provided dispatch ID.
18428
19039
  *
@@ -18432,7 +19043,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18432
19043
  * @request POST:/surveys.responses.update
18433
19044
  * @secure
18434
19045
  */
18435
- surveysResponsesUpdate: (data: SurveysResponsesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
19046
+ surveysResponsesUpdate: (data: SurveysResponsesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
18436
19047
  /**
18437
19048
  * @description Sends a survey on the specified channels.
18438
19049
  *
@@ -18442,7 +19053,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18442
19053
  * @request POST:/surveys.send
18443
19054
  * @secure
18444
19055
  */
18445
- surveysSend: (data: SurveysSendRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
19056
+ surveysSend: (data: SurveysSendRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
18446
19057
  /**
18447
19058
  * @description Submits a user response to a survey, which is defined by the survey ID.
18448
19059
  *
@@ -18452,7 +19063,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18452
19063
  * @request POST:/surveys.submit
18453
19064
  * @secure
18454
19065
  */
18455
- surveysSubmit: (data: SurveysSubmitRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
19066
+ surveysSubmit: (data: SurveysSubmitRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
18456
19067
  /**
18457
19068
  * @description Updates a survey's metadata.
18458
19069
  *
@@ -18462,7 +19073,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18462
19073
  * @request POST:/surveys.update
18463
19074
  * @secure
18464
19075
  */
18465
- surveysUpdate: (data: SurveysUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysUpdateResponse, any>>;
19076
+ surveysUpdate: (data: SurveysUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysUpdateResponse, any, {}>>;
18466
19077
  /**
18467
19078
  * @description Lists system users within your organization.
18468
19079
  *
@@ -18492,7 +19103,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18492
19103
  mode?: ListMode;
18493
19104
  /** Fields to sort the system users by and the direction to sort them. */
18494
19105
  sort_by?: string[];
18495
- }, params?: RequestParams) => Promise<AxiosResponse<SysUsersListResponse, any>>;
19106
+ }, params?: RequestParams) => Promise<AxiosResponse<SysUsersListResponse, any, {}>>;
18496
19107
  /**
18497
19108
  * @description Lists system users within your organization.
18498
19109
  *
@@ -18502,7 +19113,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18502
19113
  * @request POST:/sys-users.list
18503
19114
  * @secure
18504
19115
  */
18505
- sysUsersListPost: (data: SysUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<SysUsersListResponse, any>>;
19116
+ sysUsersListPost: (data: SysUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<SysUsersListResponse, any, {}>>;
18506
19117
  /**
18507
19118
  * @description Updates the system user.
18508
19119
  *
@@ -18512,7 +19123,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18512
19123
  * @request POST:/sys-users.update
18513
19124
  * @secure
18514
19125
  */
18515
- sysUsersUpdate: (data: SysUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SysUsersUpdateResponse, any>>;
19126
+ sysUsersUpdate: (data: SysUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SysUsersUpdateResponse, any, {}>>;
18516
19127
  /**
18517
19128
  * @description Creates a new tag, which is used to create associations between objects and a logical concept denoted by the tag's name.
18518
19129
  *
@@ -18522,7 +19133,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18522
19133
  * @request POST:/tags.create
18523
19134
  * @secure
18524
19135
  */
18525
- tagsCreate: (data: TagsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<TagsCreateResponse, any>>;
19136
+ tagsCreate: (data: TagsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<TagsCreateResponse, any, {}>>;
18526
19137
  /**
18527
19138
  * @description Deletes a tag.
18528
19139
  *
@@ -18532,7 +19143,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18532
19143
  * @request POST:/tags.delete
18533
19144
  * @secure
18534
19145
  */
18535
- tagsDelete: (data: TagsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
19146
+ tagsDelete: (data: TagsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
18536
19147
  /**
18537
19148
  * @description Gets a tag's information.
18538
19149
  *
@@ -18549,7 +19160,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18549
19160
  * @example "TAG-12345"
18550
19161
  */
18551
19162
  id: string;
18552
- }, params?: RequestParams) => Promise<AxiosResponse<TagsGetResponse, any>>;
19163
+ }, params?: RequestParams) => Promise<AxiosResponse<TagsGetResponse, any, {}>>;
18553
19164
  /**
18554
19165
  * @description Gets a tag's information.
18555
19166
  *
@@ -18559,7 +19170,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18559
19170
  * @request POST:/tags.get
18560
19171
  * @secure
18561
19172
  */
18562
- tagsGetPost: (data: TagsGetRequest, params?: RequestParams) => Promise<AxiosResponse<TagsGetResponse, any>>;
19173
+ tagsGetPost: (data: TagsGetRequest, params?: RequestParams) => Promise<AxiosResponse<TagsGetResponse, any, {}>>;
18563
19174
  /**
18564
19175
  * @description Lists the available tags.
18565
19176
  *
@@ -18590,7 +19201,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18590
19201
  name?: string[];
18591
19202
  /** Fields to sort tags by and the direction to sort them. */
18592
19203
  sort_by?: string[];
18593
- }, params?: RequestParams) => Promise<AxiosResponse<TagsListResponse, any>>;
19204
+ }, params?: RequestParams) => Promise<AxiosResponse<TagsListResponse, any, {}>>;
18594
19205
  /**
18595
19206
  * @description Lists the available tags.
18596
19207
  *
@@ -18600,7 +19211,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18600
19211
  * @request POST:/tags.list
18601
19212
  * @secure
18602
19213
  */
18603
- tagsListPost: (data: TagsListRequest, params?: RequestParams) => Promise<AxiosResponse<TagsListResponse, any>>;
19214
+ tagsListPost: (data: TagsListRequest, params?: RequestParams) => Promise<AxiosResponse<TagsListResponse, any, {}>>;
18604
19215
  /**
18605
19216
  * @description Updates a tag's information.
18606
19217
  *
@@ -18610,7 +19221,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18610
19221
  * @request POST:/tags.update
18611
19222
  * @secure
18612
19223
  */
18613
- tagsUpdate: (data: TagsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<TagsUpdateResponse, any>>;
19224
+ tagsUpdate: (data: TagsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<TagsUpdateResponse, any, {}>>;
18614
19225
  /**
18615
19226
  * @description Creates a new entry on an object's timeline.
18616
19227
  *
@@ -18620,7 +19231,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18620
19231
  * @request POST:/timeline-entries.create
18621
19232
  * @secure
18622
19233
  */
18623
- timelineEntriesCreate: (data: TimelineEntriesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesCreateResponse, any>>;
19234
+ timelineEntriesCreate: (data: TimelineEntriesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesCreateResponse, any, {}>>;
18624
19235
  /**
18625
19236
  * @description Deletes an entry from an object's timeline.
18626
19237
  *
@@ -18630,7 +19241,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18630
19241
  * @request POST:/timeline-entries.delete
18631
19242
  * @secure
18632
19243
  */
18633
- timelineEntriesDelete: (data: TimelineEntriesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
19244
+ timelineEntriesDelete: (data: TimelineEntriesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
18634
19245
  /**
18635
19246
  * @description Gets an entry on an object's timeline.
18636
19247
  *
@@ -18647,7 +19258,15 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18647
19258
  * @example "don:core:dvrv-us-1:devo/example:ticket/123:comment/comment-id"
18648
19259
  */
18649
19260
  id: string;
18650
- }, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesGetResponse, any>>;
19261
+ /**
19262
+ * If set, then gets the entry with the given external reference for the
19263
+ * provided entry ID's timeline.
19264
+ * @format text
19265
+ * @minLength 1
19266
+ * @maxLength 512
19267
+ */
19268
+ external_ref?: string;
19269
+ }, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesGetResponse, any, {}>>;
18651
19270
  /**
18652
19271
  * @description Gets an entry on an object's timeline.
18653
19272
  *
@@ -18657,7 +19276,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18657
19276
  * @request POST:/timeline-entries.get
18658
19277
  * @secure
18659
19278
  */
18660
- timelineEntriesGetPost: (data: TimelineEntriesGetRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesGetResponse, any>>;
19279
+ timelineEntriesGetPost: (data: TimelineEntriesGetRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesGetResponse, any, {}>>;
18661
19280
  /**
18662
19281
  * @description Lists the timeline entries for an object.
18663
19282
  *
@@ -18674,6 +19293,24 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18674
19293
  * @example "PROD-12345"
18675
19294
  */
18676
19295
  object: string;
19296
+ /**
19297
+ * The collection(s) to list entries from, otherwise if not provided,
19298
+ * all entries are returned.
19299
+ */
19300
+ collections?: TimelineEntriesCollection[];
19301
+ /**
19302
+ * Filters for objects created after the provided timestamp (inclusive).
19303
+ * @format date-time
19304
+ * @example "2023-01-01T12:00:00.000Z"
19305
+ */
19306
+ 'created_date.after'?: string;
19307
+ /**
19308
+ * Filters for objects created before the provided timestamp
19309
+ * (inclusive).
19310
+ * @format date-time
19311
+ * @example "2023-01-01T12:00:00.000Z"
19312
+ */
19313
+ 'created_date.before'?: string;
18677
19314
  /**
18678
19315
  * The cursor to resume iteration from. If not provided, then iteration
18679
19316
  * starts from the beginning.
@@ -18681,8 +19318,16 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18681
19318
  */
18682
19319
  cursor?: string;
18683
19320
  /**
18684
- * The maximum number of entries to return. If not set, then this
18685
- * defaults to `50`.
19321
+ * Filters for entries containing at least one of the provided labels,
19322
+ * otherwise if no labels are provided, then no label filtering is done.
19323
+ * @minLength 1
19324
+ * @maxLength 64
19325
+ */
19326
+ labels?: string[];
19327
+ /**
19328
+ * The maximum number of entries to return. Note that fewer (possibly
19329
+ * zero) entries may be returned even if there are more entries, where
19330
+ * the returned cursor(s) are guaranteed to be updated.
18686
19331
  * @format int32
18687
19332
  */
18688
19333
  limit?: number;
@@ -18697,7 +19342,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18697
19342
  * specified will be returned.
18698
19343
  */
18699
19344
  visibility?: TimelineEntryVisibility[];
18700
- }, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesListResponse, any>>;
19345
+ }, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesListResponse, any, {}>>;
18701
19346
  /**
18702
19347
  * @description Lists the timeline entries for an object.
18703
19348
  *
@@ -18707,7 +19352,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18707
19352
  * @request POST:/timeline-entries.list
18708
19353
  * @secure
18709
19354
  */
18710
- timelineEntriesListPost: (data: TimelineEntriesListRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesListResponse, any>>;
19355
+ timelineEntriesListPost: (data: TimelineEntriesListRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesListResponse, any, {}>>;
18711
19356
  /**
18712
19357
  * @description Updates an entry on an object's timeline.
18713
19358
  *
@@ -18717,7 +19362,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18717
19362
  * @request POST:/timeline-entries.update
18718
19363
  * @secure
18719
19364
  */
18720
- timelineEntriesUpdate: (data: TimelineEntriesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesUpdateResponse, any>>;
19365
+ timelineEntriesUpdate: (data: TimelineEntriesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesUpdateResponse, any, {}>>;
18721
19366
  /**
18722
19367
  * @description Deletes the requested vista.
18723
19368
  *
@@ -18727,7 +19372,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18727
19372
  * @request POST:/vistas.delete
18728
19373
  * @secure
18729
19374
  */
18730
- vistasDelete: (data: VistasDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
19375
+ vistasDelete: (data: VistasDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
18731
19376
  /**
18732
19377
  * @description Gets the requested vistas's information.
18733
19378
  *
@@ -18744,7 +19389,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18744
19389
  * @example "VISTA-12345"
18745
19390
  */
18746
19391
  id: string;
18747
- }, params?: RequestParams) => Promise<AxiosResponse<VistasGetResponse, any>>;
19392
+ }, params?: RequestParams) => Promise<AxiosResponse<VistasGetResponse, any, {}>>;
18748
19393
  /**
18749
19394
  * @description Gets the requested vistas's information.
18750
19395
  *
@@ -18754,7 +19399,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18754
19399
  * @request POST:/vistas.get
18755
19400
  * @secure
18756
19401
  */
18757
- vistasGetPost: (data: VistasGetRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGetResponse, any>>;
19402
+ vistasGetPost: (data: VistasGetRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGetResponse, any, {}>>;
18758
19403
  /**
18759
19404
  * @description Deletes the requested vista group item
18760
19405
  *
@@ -18764,7 +19409,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18764
19409
  * @request POST:/vistas.groups.delete
18765
19410
  * @secure
18766
19411
  */
18767
- vistasGroupsDelete: (data: VistasGroupsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
19412
+ vistasGroupsDelete: (data: VistasGroupsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
18768
19413
  /**
18769
19414
  * @description Gets the requested vista group item's information.
18770
19415
  *
@@ -18780,7 +19425,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18780
19425
  * @format id
18781
19426
  */
18782
19427
  id: string;
18783
- }, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsGetResponse, any>>;
19428
+ }, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsGetResponse, any, {}>>;
18784
19429
  /**
18785
19430
  * @description Gets the requested vista group item's information.
18786
19431
  *
@@ -18790,7 +19435,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18790
19435
  * @request POST:/vistas.groups.get
18791
19436
  * @secure
18792
19437
  */
18793
- vistasGroupsGetPost: (data: VistasGroupsGetRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsGetResponse, any>>;
19438
+ vistasGroupsGetPost: (data: VistasGroupsGetRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsGetResponse, any, {}>>;
18794
19439
  /**
18795
19440
  * @description Lists the available vista group items.
18796
19441
  *
@@ -18852,7 +19497,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18852
19497
  state?: VistaGroupItemState[];
18853
19498
  /** Filters for vista group items of the specific type. */
18854
19499
  type?: GroupItemType[];
18855
- }, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsListResponse, any>>;
19500
+ }, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsListResponse, any, {}>>;
18856
19501
  /**
18857
19502
  * @description Lists the available vista group items.
18858
19503
  *
@@ -18862,7 +19507,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18862
19507
  * @request POST:/vistas.groups.list
18863
19508
  * @secure
18864
19509
  */
18865
- vistasGroupsListPost: (data: VistasGroupsListRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsListResponse, any>>;
19510
+ vistasGroupsListPost: (data: VistasGroupsListRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsListResponse, any, {}>>;
18866
19511
  /**
18867
19512
  * @description Lists the available vistas.
18868
19513
  *
@@ -18924,7 +19569,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18924
19569
  state?: VistaGroupItemState[];
18925
19570
  /** Filters for vistas of the specific type. */
18926
19571
  type?: VistaType[];
18927
- }, params?: RequestParams) => Promise<AxiosResponse<VistasListResponse, any>>;
19572
+ }, params?: RequestParams) => Promise<AxiosResponse<VistasListResponse, any, {}>>;
18928
19573
  /**
18929
19574
  * @description Lists the available vistas.
18930
19575
  *
@@ -18934,7 +19579,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18934
19579
  * @request POST:/vistas.list
18935
19580
  * @secure
18936
19581
  */
18937
- vistasListPost: (data: VistasListRequest, params?: RequestParams) => Promise<AxiosResponse<VistasListResponse, any>>;
19582
+ vistasListPost: (data: VistasListRequest, params?: RequestParams) => Promise<AxiosResponse<VistasListResponse, any, {}>>;
18938
19583
  /**
18939
19584
  * @description Change state of a web crawler job to pause or resume it back to running.
18940
19585
  *
@@ -18944,7 +19589,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18944
19589
  * @request POST:/web-crawler-jobs.control
18945
19590
  * @secure
18946
19591
  */
18947
- webCrawlerJobsControl: (data: WebCrawlerJobsControlRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsControlResponse, any>>;
19592
+ webCrawlerJobsControl: (data: WebCrawlerJobsControlRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsControlResponse, any, {}>>;
18948
19593
  /**
18949
19594
  * @description Creates a web crawler job whose objective is to crawl the provided URLs/sitemaps and generate corresponding webpages as artifacts.
18950
19595
  *
@@ -18954,7 +19599,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18954
19599
  * @request POST:/web-crawler-jobs.create
18955
19600
  * @secure
18956
19601
  */
18957
- createWebCrawlerJob: (data: WebCrawlerJobsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsCreateResponse, any>>;
19602
+ createWebCrawlerJob: (data: WebCrawlerJobsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsCreateResponse, any, {}>>;
18958
19603
  /**
18959
19604
  * @description Gets a web crawler job.
18960
19605
  *
@@ -18970,7 +19615,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18970
19615
  * @format id
18971
19616
  */
18972
19617
  id: string;
18973
- }, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsGetResponse, any>>;
19618
+ }, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsGetResponse, any, {}>>;
18974
19619
  /**
18975
19620
  * @description Gets a web crawler job.
18976
19621
  *
@@ -18980,7 +19625,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18980
19625
  * @request POST:/web-crawler-jobs.get
18981
19626
  * @secure
18982
19627
  */
18983
- getWebCrawlerJobPost: (data: WebCrawlerJobsGetRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsGetResponse, any>>;
19628
+ getWebCrawlerJobPost: (data: WebCrawlerJobsGetRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsGetResponse, any, {}>>;
18984
19629
  /**
18985
19630
  * @description Lists web crawler jobs.
18986
19631
  *
@@ -19013,7 +19658,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19013
19658
  * used.
19014
19659
  */
19015
19660
  mode?: ListMode;
19016
- }, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsListResponse, any>>;
19661
+ }, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsListResponse, any, {}>>;
19017
19662
  /**
19018
19663
  * @description Lists web crawler jobs.
19019
19664
  *
@@ -19023,7 +19668,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19023
19668
  * @request POST:/web-crawler-jobs.list
19024
19669
  * @secure
19025
19670
  */
19026
- listWebCrawlerJobsPost: (data: WebCrawlerJobsListRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsListResponse, any>>;
19671
+ listWebCrawlerJobsPost: (data: WebCrawlerJobsListRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsListResponse, any, {}>>;
19027
19672
  /**
19028
19673
  * @description Creates a new webhook target.
19029
19674
  *
@@ -19033,7 +19678,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19033
19678
  * @request POST:/webhooks.create
19034
19679
  * @secure
19035
19680
  */
19036
- webhooksCreate: (data: WebhooksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksCreateResponse, any>>;
19681
+ webhooksCreate: (data: WebhooksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksCreateResponse, any, {}>>;
19037
19682
  /**
19038
19683
  * @description Deletes the requested webhook.
19039
19684
  *
@@ -19043,7 +19688,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19043
19688
  * @request POST:/webhooks.delete
19044
19689
  * @secure
19045
19690
  */
19046
- webhooksDelete: (data: WebhooksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
19691
+ webhooksDelete: (data: WebhooksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
19047
19692
  /**
19048
19693
  * @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.
19049
19694
  *
@@ -19053,7 +19698,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19053
19698
  * @request POST:/webhooks.event
19054
19699
  * @secure
19055
19700
  */
19056
- webhooksEvent: (data: WebhookEventRequest, params?: RequestParams) => Promise<AxiosResponse<WebhookEventResponse, any>>;
19701
+ webhooksEvent: (data: WebhookEventRequest, params?: RequestParams) => Promise<AxiosResponse<WebhookEventResponse, any, {}>>;
19057
19702
  /**
19058
19703
  * @description Gets the requested webhook's information.
19059
19704
  *
@@ -19070,7 +19715,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19070
19715
  * @example "don:integration:dvrv-us-1:devo/example:webhook/webhook-id"
19071
19716
  */
19072
19717
  id: string;
19073
- }, params?: RequestParams) => Promise<AxiosResponse<WebhooksGetResponse, any>>;
19718
+ }, params?: RequestParams) => Promise<AxiosResponse<WebhooksGetResponse, any, {}>>;
19074
19719
  /**
19075
19720
  * @description Gets the requested webhook's information.
19076
19721
  *
@@ -19080,7 +19725,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19080
19725
  * @request POST:/webhooks.get
19081
19726
  * @secure
19082
19727
  */
19083
- webhooksGetPost: (data: WebhooksGetRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksGetResponse, any>>;
19728
+ webhooksGetPost: (data: WebhooksGetRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksGetResponse, any, {}>>;
19084
19729
  /**
19085
19730
  * @description Lists the webhooks.
19086
19731
  *
@@ -19090,7 +19735,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19090
19735
  * @request GET:/webhooks.list
19091
19736
  * @secure
19092
19737
  */
19093
- webhooksList: (params?: RequestParams) => Promise<AxiosResponse<WebhooksListResponse, any>>;
19738
+ webhooksList: (params?: RequestParams) => Promise<AxiosResponse<WebhooksListResponse, any, {}>>;
19094
19739
  /**
19095
19740
  * @description Lists the webhooks.
19096
19741
  *
@@ -19100,7 +19745,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19100
19745
  * @request POST:/webhooks.list
19101
19746
  * @secure
19102
19747
  */
19103
- webhooksListPost: (data: WebhooksListRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksListResponse, any>>;
19748
+ webhooksListPost: (data: WebhooksListRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksListResponse, any, {}>>;
19104
19749
  /**
19105
19750
  * @description Updates the requested webhook.
19106
19751
  *
@@ -19110,7 +19755,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19110
19755
  * @request POST:/webhooks.update
19111
19756
  * @secure
19112
19757
  */
19113
- webhooksUpdate: (data: WebhooksUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksUpdateResponse, any>>;
19758
+ webhooksUpdate: (data: WebhooksUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksUpdateResponse, any, {}>>;
19114
19759
  /**
19115
19760
  * @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.
19116
19761
  *
@@ -19120,7 +19765,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19120
19765
  * @request POST:/works.create
19121
19766
  * @secure
19122
19767
  */
19123
- worksCreate: (data: WorksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WorksCreateResponse, any>>;
19768
+ worksCreate: (data: WorksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WorksCreateResponse, any, {}>>;
19124
19769
  /**
19125
19770
  * @description Deletes a work item.
19126
19771
  *
@@ -19130,7 +19775,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19130
19775
  * @request POST:/works.delete
19131
19776
  * @secure
19132
19777
  */
19133
- worksDelete: (data: WorksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
19778
+ worksDelete: (data: WorksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
19134
19779
  /**
19135
19780
  * @description Exports a collection of work items.
19136
19781
  *
@@ -19151,6 +19796,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19151
19796
  * @example ["DEVU-12345"]
19152
19797
  */
19153
19798
  created_by?: string[];
19799
+ /** Filters for work with any of the provided external references. */
19800
+ external_ref?: string[];
19154
19801
  /**
19155
19802
  * The number of work items to return. The default is '50', the maximum
19156
19803
  * is '5000'.
@@ -19248,9 +19895,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19248
19895
  * channels.
19249
19896
  */
19250
19897
  'ticket.source_channel_v2'?: string[];
19898
+ /** Visibility enum ID of the ticket. */
19899
+ 'ticket.visibility'?: number[];
19251
19900
  /** Filters for work of the provided types. */
19252
19901
  type?: WorkType[];
19253
- }, params?: RequestParams) => Promise<AxiosResponse<WorksExportResponse, any>>;
19902
+ }, params?: RequestParams) => Promise<AxiosResponse<WorksExportResponse, any, {}>>;
19254
19903
  /**
19255
19904
  * @description Exports a collection of work items.
19256
19905
  *
@@ -19260,7 +19909,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19260
19909
  * @request POST:/works.export
19261
19910
  * @secure
19262
19911
  */
19263
- worksExportPost: (data: WorksExportRequest, params?: RequestParams) => Promise<AxiosResponse<WorksExportResponse, any>>;
19912
+ worksExportPost: (data: WorksExportRequest, params?: RequestParams) => Promise<AxiosResponse<WorksExportResponse, any, {}>>;
19264
19913
  /**
19265
19914
  * @description Gets a work item's information.
19266
19915
  *
@@ -19277,7 +19926,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19277
19926
  * @example "ISS-12345"
19278
19927
  */
19279
19928
  id: string;
19280
- }, params?: RequestParams) => Promise<AxiosResponse<WorksGetResponse, any>>;
19929
+ }, params?: RequestParams) => Promise<AxiosResponse<WorksGetResponse, any, {}>>;
19281
19930
  /**
19282
19931
  * @description Gets a work item's information.
19283
19932
  *
@@ -19287,7 +19936,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19287
19936
  * @request POST:/works.get
19288
19937
  * @secure
19289
19938
  */
19290
- worksGetPost: (data: WorksGetRequest, params?: RequestParams) => Promise<AxiosResponse<WorksGetResponse, any>>;
19939
+ worksGetPost: (data: WorksGetRequest, params?: RequestParams) => Promise<AxiosResponse<WorksGetResponse, any, {}>>;
19291
19940
  /**
19292
19941
  * @description Lists a collection of work items.
19293
19942
  *
@@ -19314,6 +19963,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19314
19963
  * @format text
19315
19964
  */
19316
19965
  cursor?: string;
19966
+ /** Filters for work with any of the provided external references. */
19967
+ external_ref?: string[];
19317
19968
  /**
19318
19969
  * Filters for issues with any of the provided accounts.
19319
19970
  * @example ["ACC-12345"]
@@ -19417,9 +20068,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19417
20068
  * channels.
19418
20069
  */
19419
20070
  'ticket.source_channel_v2'?: string[];
20071
+ /** Visibility enum ID of the ticket. */
20072
+ 'ticket.visibility'?: number[];
19420
20073
  /** Filters for work of the provided types. */
19421
20074
  type?: WorkType[];
19422
- }, params?: RequestParams) => Promise<AxiosResponse<WorksListResponse, any>>;
20075
+ }, params?: RequestParams) => Promise<AxiosResponse<WorksListResponse, any, {}>>;
19423
20076
  /**
19424
20077
  * @description Lists a collection of work items.
19425
20078
  *
@@ -19429,7 +20082,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19429
20082
  * @request POST:/works.list
19430
20083
  * @secure
19431
20084
  */
19432
- worksListPost: (data: WorksListRequest, params?: RequestParams) => Promise<AxiosResponse<WorksListResponse, any>>;
20085
+ worksListPost: (data: WorksListRequest, params?: RequestParams) => Promise<AxiosResponse<WorksListResponse, any, {}>>;
19433
20086
  /**
19434
20087
  * @description Updates a work item's information.
19435
20088
  *
@@ -19439,5 +20092,5 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19439
20092
  * @request POST:/works.update
19440
20093
  * @secure
19441
20094
  */
19442
- worksUpdate: (data: WorksUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<WorksUpdateResponse, any>>;
20095
+ worksUpdate: (data: WorksUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<WorksUpdateResponse, any, {}>>;
19443
20096
  }