@devrev/typescript-sdk 1.1.67 → 1.1.69

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -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
@@ -541,6 +543,12 @@ export interface ArchetypeMetricTarget {
541
543
  * @format int32
542
544
  */
543
545
  completed_in?: number;
546
+ /**
547
+ * For completed metrics the time (in seconds) it took to complete
548
+ * them. (Taking into account the schedule if any).
549
+ * @format int32
550
+ */
551
+ completed_in_seconds?: number;
544
552
  /** If true, the metric is part of the applied policy. */
545
553
  in_policy?: boolean;
546
554
  /**
@@ -657,6 +665,10 @@ export type Article = AtomBase & {
657
665
  resource?: Resource;
658
666
  /** The properties of an enum value. */
659
667
  scope?: EnumValue;
668
+ /** Status of the article. */
669
+ status?: ArticleStatus;
670
+ /** Tags associated with the article. */
671
+ tags?: TagWithValue[];
660
672
  /**
661
673
  * Title of the article.
662
674
  * @format text
@@ -1417,7 +1429,7 @@ export interface ArtifactsVersionsPrepareResponseFormData {
1417
1429
  value: string;
1418
1430
  }
1419
1431
  /** atom */
1420
- export type Atom = (Article | AuthToken | Capability | Conversation | DevUser | Enhancement | Feature | Group | Issue | Link | Product | RevOrg | RevUser | ServiceAccount | Sla | SlaTracker | SysUser | Tag | Ticket | TimelineComment | Webhook) & {
1432
+ export type Atom = (Article | AuthToken | Capability | Conversation | DevUser | Enhancement | Feature | Group | Issue | Link | Product | RevOrg | RevUser | ServiceAccount | Sla | SlaTracker | SysUser | Tag | Ticket | TimeMetricTracker | TimelineComment | Webhook) & {
1421
1433
  type: AtomType;
1422
1434
  };
1423
1435
  /** atom-base */
@@ -1461,7 +1473,7 @@ export interface AtomBaseSummary {
1461
1473
  id: string;
1462
1474
  }
1463
1475
  /** atom-summary */
1464
- export type AtomSummary = (ArticleSummary | AuthTokenSummary | CapabilitySummary | ConversationSummary | DevUserSummary | EnhancementSummary | FeatureSummary | GroupSummary | IssueSummary | LinkSummary | ProductSummary | RevOrgSummary | RevUserSummary | ServiceAccountSummary | SlaSummary | SlaTrackerSummary | SysUserSummary | TagSummary | TicketSummary | TimelineCommentSummary | WebhookSummary) & {
1476
+ export type AtomSummary = (ArticleSummary | AuthTokenSummary | CapabilitySummary | ConversationSummary | DevUserSummary | EnhancementSummary | FeatureSummary | GroupSummary | IssueSummary | LinkSummary | ProductSummary | RevOrgSummary | RevUserSummary | ServiceAccountSummary | SlaSummary | SlaTrackerSummary | SysUserSummary | TagSummary | TicketSummary | TimeMetricTrackerSummary | TimelineCommentSummary | WebhookSummary) & {
1465
1477
  type: AtomType;
1466
1478
  };
1467
1479
  export declare enum AtomType {
@@ -1484,6 +1496,7 @@ export declare enum AtomType {
1484
1496
  SysUser = "sys_user",
1485
1497
  Tag = "tag",
1486
1498
  Ticket = "ticket",
1499
+ TimeMetricTracker = "time_metric_tracker",
1487
1500
  TimelineComment = "timeline_comment",
1488
1501
  Webhook = "webhook"
1489
1502
  }
@@ -1768,10 +1781,10 @@ export interface AuthTokensCreateRequest {
1768
1781
  */
1769
1782
  client_id?: string;
1770
1783
  /**
1771
- * The expected validity lifetime of the token in number of days. In
1772
- * 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).
1773
1786
  * @min 0
1774
- * @max 4294967295
1787
+ * @max 1825
1775
1788
  */
1776
1789
  expires_in?: number;
1777
1790
  /** Specifies the process of obtaining a token. */
@@ -2812,8 +2825,74 @@ export interface CompositeSchema {
2812
2825
  */
2813
2826
  name?: string;
2814
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
+ }
2815
2892
  /** conversation */
2816
2893
  export type Conversation = AtomBase & {
2894
+ /** Details of the parts relevant to the conversation. */
2895
+ applies_to_parts?: PartSummary[];
2817
2896
  /** Channel IDs of the conversation. */
2818
2897
  channels?: ExternalCommunicationChannelSummary[];
2819
2898
  /**
@@ -2822,6 +2901,8 @@ export type Conversation = AtomBase & {
2822
2901
  */
2823
2902
  description?: string;
2824
2903
  group?: GroupSummary;
2904
+ /** Whether the object is frozen or not. */
2905
+ is_frozen?: boolean;
2825
2906
  /** The users in the conversation. */
2826
2907
  members: UserSummary[];
2827
2908
  /** The latest messages on the conversation. */
@@ -4774,6 +4855,11 @@ export interface DevUsersListRequest {
4774
4855
  sort_by?: string[];
4775
4856
  /** Filters Dev users based on state. */
4776
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[];
4777
4863
  }
4778
4864
  /**
4779
4865
  * dev-users-list-response
@@ -5044,7 +5130,7 @@ export interface DirectoriesGetRequest {
5044
5130
  * The ID of the requested directory.
5045
5131
  * @format id
5046
5132
  */
5047
- id: string;
5133
+ id?: string;
5048
5134
  }
5049
5135
  /**
5050
5136
  * directories-get-response
@@ -5861,6 +5947,19 @@ export interface EventAccountUpdated {
5861
5947
  account: Account;
5862
5948
  old_account?: Account;
5863
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
+ }
5864
5963
  /** event-ai-agent-response */
5865
5964
  export interface EventAiAgentResponse {
5866
5965
  /**
@@ -5902,6 +6001,11 @@ export interface EventAiAgentResponse {
5902
6001
  /** A list of suggestions generated for the AI agent event. */
5903
6002
  suggestions?: AiAgentEventSuggestions;
5904
6003
  }
6004
+ /** event-ai-agent-updated */
6005
+ export interface EventAiAgentUpdated {
6006
+ ai_agent: AiAgent;
6007
+ old_ai_agent?: AiAgent;
6008
+ }
5905
6009
  /** event-article-created */
5906
6010
  export interface EventArticleCreated {
5907
6011
  article: Article;
@@ -6117,6 +6221,15 @@ export interface EventRevUserUpdated {
6117
6221
  old_rev_user?: RevUser;
6118
6222
  rev_user: RevUser;
6119
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
+ }
6120
6233
  /** event-sla-tracker-created */
6121
6234
  export interface EventSlaTrackerCreated {
6122
6235
  sla_tracker: SlaTracker;
@@ -6326,6 +6439,24 @@ export interface EventWorkUpdated {
6326
6439
  old_work?: Work;
6327
6440
  work: Work;
6328
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
+ }
6329
6460
  /** external-communication-channel-summary */
6330
6461
  export type ExternalCommunicationChannelSummary = AtomBaseSummary;
6331
6462
  /**
@@ -6827,6 +6958,9 @@ export type Incident = AtomBase & {
6827
6958
  reported_by?: EnumValue;
6828
6959
  /** The properties of an enum value. */
6829
6960
  severity?: EnumValue;
6961
+ /** SLA summary for the object. */
6962
+ sla_summary?: ArchetypeSlaSummary;
6963
+ sla_tracker?: SlaTrackerSummary;
6830
6964
  /** The properties of an enum value. */
6831
6965
  source?: EnumValue;
6832
6966
  /** Describes the current stage of a object. */
@@ -6974,6 +7108,21 @@ export interface LegacyStageSummary {
6974
7108
  */
6975
7109
  name: string;
6976
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
+ };
6977
7126
  /**
6978
7127
  * lines-of-code
6979
7128
  * Details of lines of code in this code change.
@@ -7235,7 +7384,10 @@ export declare enum ListMode {
7235
7384
  Before = "before"
7236
7385
  }
7237
7386
  /** meeting */
7238
- export type Meeting = AtomBase;
7387
+ export type Meeting = AtomBase & {
7388
+ /** The properties of an enum value. */
7389
+ visibility?: EnumValue;
7390
+ };
7239
7391
  /** The channel of meeting. */
7240
7392
  export declare enum MeetingChannel {
7241
7393
  AmazonConnect = "amazon_connect",
@@ -7245,6 +7397,16 @@ export declare enum MeetingChannel {
7245
7397
  Teams = "teams",
7246
7398
  Zoom = "zoom"
7247
7399
  }
7400
+ /**
7401
+ * Direction of meeting - meetings within an organization are internal.
7402
+ * Meetings with external customers can be incoming or outgoing depending
7403
+ * on who initiates them.
7404
+ */
7405
+ export declare enum MeetingDirection {
7406
+ Incoming = "incoming",
7407
+ Internal = "internal",
7408
+ Outgoing = "outgoing"
7409
+ }
7248
7410
  /** The state of meeting. */
7249
7411
  export declare enum MeetingState {
7250
7412
  Canceled = "canceled",
@@ -7266,6 +7428,8 @@ export interface MeetingsCountRequest {
7266
7428
  created_by?: string[];
7267
7429
  /** Provides ways to specify date ranges on objects. */
7268
7430
  created_date?: DateFilter;
7431
+ /** Direction of the meetings to be fetched. */
7432
+ direction?: MeetingDirection[];
7269
7433
  /** Provides ways to specify date ranges on objects. */
7270
7434
  ended_date?: DateFilter;
7271
7435
  /** Filters for meetings with the provided external_ref(s). */
@@ -7440,6 +7604,8 @@ export interface MeetingsListRequest {
7440
7604
  * @format text
7441
7605
  */
7442
7606
  cursor?: string;
7607
+ /** Direction of the meetings to be fetched. */
7608
+ direction?: MeetingDirection[];
7443
7609
  /** Provides ways to specify date ranges on objects. */
7444
7610
  ended_date?: DateFilter;
7445
7611
  /** Filters for meetings with the provided external_ref(s). */
@@ -7603,6 +7769,8 @@ export interface MeetingsVistaFilter {
7603
7769
  created_by?: string[];
7604
7770
  /** Provides ways to specify date ranges on objects. */
7605
7771
  created_date?: DateFilter;
7772
+ /** Direction of the meetings to be fetched. */
7773
+ direction?: MeetingDirection[];
7606
7774
  /** Provides ways to specify date ranges on objects. */
7607
7775
  ended_date?: DateFilter;
7608
7776
  /** Filters for meetings with the provided external_ref(s). */
@@ -7687,6 +7855,7 @@ export type MetricDefinition = AtomBase & {
7687
7855
  /** The list of item types on which the metric might be applied. */
7688
7856
  export declare enum MetricDefinitionAppliesTo {
7689
7857
  Conversation = "conversation",
7858
+ Incident = "incident",
7690
7859
  Issue = "issue",
7691
7860
  Ticket = "ticket"
7692
7861
  }
@@ -7855,10 +8024,16 @@ export interface MetricDefinitionsUpdateResponse {
7855
8024
  metric_definition: MetricDefinition;
7856
8025
  }
7857
8026
  /** metric-tracker */
7858
- export interface MetricTracker {
8027
+ export type MetricTracker = TimeMetricTracker & {
7859
8028
  type: MetricTrackerType;
8029
+ };
8030
+ /** metric-tracker-base */
8031
+ export type MetricTrackerBase = AtomBase;
8032
+ /** metric-tracker-base-summary */
8033
+ export type MetricTrackerBaseSummary = AtomBaseSummary;
8034
+ export declare enum MetricTrackerType {
8035
+ TimeMetricTracker = "time_metric_tracker"
7860
8036
  }
7861
- export type MetricTrackerType = string;
7862
8037
  /** metric-trackers-get-request */
7863
8038
  export interface MetricTrackersGetRequest {
7864
8039
  /**
@@ -7877,6 +8052,8 @@ export interface MetricTrackersGetRequest {
7877
8052
  export interface MetricTrackersGetResponse {
7878
8053
  metric_tracker: MetricTracker;
7879
8054
  }
8055
+ /** one-time-line-item-summary */
8056
+ export type OneTimeLineItemSummary = LineItemBaseSummary;
7880
8057
  /** org-base */
7881
8058
  export type OrgBase = AtomBase & {
7882
8059
  /**
@@ -7996,7 +8173,27 @@ export type OrgScheduleFragment = AtomBase & {
7996
8173
  * inside a organization schedule, used to quickly look up the schedule
7997
8174
  * fragment for the right period.
7998
8175
  */
7999
- export type OrgScheduleFragmentOverview = object;
8176
+ export interface OrgScheduleFragmentOverview {
8177
+ /**
8178
+ * The date (inclusive) on which the organization schedule fragment
8179
+ * begins.
8180
+ * @format date-time
8181
+ * @example "2023-01-01T12:00:00.000Z"
8182
+ */
8183
+ from?: string;
8184
+ /**
8185
+ * The organization schedule fragment referenced.
8186
+ * @format id
8187
+ */
8188
+ id?: string;
8189
+ /**
8190
+ * The date (exclusive) on which the organization schedule fragment's
8191
+ * validity ends.
8192
+ * @format date-time
8193
+ * @example "2023-01-01T12:00:00.000Z"
8194
+ */
8195
+ to?: string;
8196
+ }
8000
8197
  /**
8001
8198
  * Status determines how an item can be used. In 'draft' status an item
8002
8199
  * can be edited but can't be used. When 'published' the item can longer
@@ -8075,7 +8272,32 @@ export interface OrgScheduleFragmentsTransitionResponse {
8075
8272
  * org-schedule-interval
8076
8273
  * An optionally named period on day granularity.
8077
8274
  */
8078
- export type OrgScheduleInterval = object;
8275
+ export interface OrgScheduleInterval {
8276
+ /**
8277
+ * The date (inclusive) on which the interval begins.
8278
+ * @format date-time
8279
+ * @example "2023-01-01T12:00:00.000Z"
8280
+ */
8281
+ from?: string;
8282
+ /**
8283
+ * If true, no schedule is looked up for these days, instead it is a
8284
+ * fully off day.
8285
+ */
8286
+ is_excluded?: boolean;
8287
+ /**
8288
+ * The name of the period, for example the event or holiday it
8289
+ * represents. Used to connect it to a specific weekly schedule.
8290
+ * @format text
8291
+ */
8292
+ name?: string;
8293
+ /**
8294
+ * The date (exclusive) on which the interval ends. If omitted, it is
8295
+ * a single day interval.
8296
+ * @format date-time
8297
+ * @example "2023-01-01T12:00:00.000Z"
8298
+ */
8299
+ to?: string;
8300
+ }
8079
8301
  /**
8080
8302
  * Status determines how an item can be used. In 'draft' status an item
8081
8303
  * can be edited but can't be used. When 'published' the item can longer
@@ -8474,6 +8696,8 @@ export interface PartsListRequest {
8474
8696
  * @example ["DEVU-12345"]
8475
8697
  */
8476
8698
  created_by?: string[];
8699
+ /** Provides ways to specify date ranges on objects. */
8700
+ created_date_v2?: DateFilter;
8477
8701
  /**
8478
8702
  * The cursor to resume iteration from. If not provided, then
8479
8703
  * iteration starts from the beginning.
@@ -8498,6 +8722,8 @@ export interface PartsListRequest {
8498
8722
  * @example ["DEVU-12345"]
8499
8723
  */
8500
8724
  modified_by?: string[];
8725
+ /** Provides ways to specify date ranges on objects. */
8726
+ modified_date_v2?: DateFilter;
8501
8727
  /** Filters for parts of the provided name(s). */
8502
8728
  name?: string[];
8503
8729
  /**
@@ -8616,6 +8842,74 @@ export declare enum PartsVistaGroupItemType {
8616
8842
  Curated = "curated",
8617
8843
  Dynamic = "dynamic"
8618
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
+ };
8619
8913
  /** product */
8620
8914
  export type Product = PartBase;
8621
8915
  /** product-summary */
@@ -8726,6 +9020,8 @@ export declare enum ReactionsUpdateRequestAction {
8726
9020
  }
8727
9021
  /** reactions-update-response */
8728
9022
  export type ReactionsUpdateResponse = object;
9023
+ /** recurring-line-item-summary */
9024
+ export type RecurringLineItemSummary = LineItemBaseSummary;
8729
9025
  /** remove-tag-with-value */
8730
9026
  export interface RemoveTagWithValue {
8731
9027
  /**
@@ -10097,6 +10393,71 @@ export interface ServiceAccountsGetRequest {
10097
10393
  export interface ServiceAccountsGetResponse {
10098
10394
  service_account: ServiceAccount;
10099
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
+ }
10100
10461
  /** set-issue-selector */
10101
10462
  export interface SetIssueSelector {
10102
10463
  /**
@@ -10292,6 +10653,70 @@ export interface SharedWithMembershipFilter {
10292
10653
  */
10293
10654
  role?: string;
10294
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
+ }
10295
10720
  /** sla */
10296
10721
  export type Sla = AtomBase & {
10297
10722
  /**
@@ -10346,6 +10771,7 @@ export type Sla = AtomBase & {
10346
10771
  */
10347
10772
  export declare enum SlaAppliesTo {
10348
10773
  Conversation = "conversation",
10774
+ Incident = "incident",
10349
10775
  Issue = "issue",
10350
10776
  Ticket = "ticket"
10351
10777
  }
@@ -10384,6 +10810,7 @@ export type SlaPolicy = object;
10384
10810
  /** The item type for which the SLA policy applies. */
10385
10811
  export declare enum SlaSelectorAppliesTo {
10386
10812
  Conversation = "conversation",
10813
+ Incident = "incident",
10387
10814
  Issue = "issue",
10388
10815
  Ticket = "ticket"
10389
10816
  }
@@ -10483,6 +10910,7 @@ export type SlaTracker = AtomBase & {
10483
10910
  /** The type of the object on which the SLA is being tracked. */
10484
10911
  export declare enum SlaTrackerAppliesToType {
10485
10912
  Conversation = "conversation",
10913
+ Incident = "incident",
10486
10914
  Issue = "issue",
10487
10915
  Ticket = "ticket"
10488
10916
  }
@@ -11995,6 +12423,8 @@ export type Ticket = WorkBase & {
11995
12423
  /** Channel IDs of the ticket. */
11996
12424
  channels_v2?: ExternalCommunicationChannelSummary[];
11997
12425
  group?: GroupSummary;
12426
+ /** Whether the object is frozen or not. */
12427
+ is_frozen?: boolean;
11998
12428
  /** Whether the ticket needs a response. */
11999
12429
  needs_response?: boolean;
12000
12430
  rev_org?: OrgSummary;
@@ -12047,6 +12477,42 @@ export type TicketSummary = WorkBaseSummary & {
12047
12477
  /** Severity of the ticket. */
12048
12478
  severity?: TicketSeverity;
12049
12479
  };
12480
+ /**
12481
+ * time-interval
12482
+ * A time period between two concrete timestamps.
12483
+ */
12484
+ export type TimeInterval = object;
12485
+ /** time-metric-tracker */
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
+ }
12514
+ /** time-metric-tracker-summary */
12515
+ export type TimeMetricTrackerSummary = MetricTrackerBaseSummary;
12050
12516
  /** timeline-comment */
12051
12517
  export type TimelineComment = TimelineEntryBase & {
12052
12518
  /** The artifacts for the comment. */
@@ -12078,12 +12544,22 @@ export declare enum TimelineCommentBodyType {
12078
12544
  }
12079
12545
  /** timeline-comment-summary */
12080
12546
  export type TimelineCommentSummary = TimelineEntryBaseSummary;
12547
+ /** Describes collections of timeline entries. */
12548
+ export declare enum TimelineEntriesCollection {
12549
+ Discussions = "discussions",
12550
+ Events = "events"
12551
+ }
12081
12552
  /**
12082
12553
  * timeline-entries-create-request
12083
12554
  * The request to create a timeline entry for an object.
12084
12555
  */
12085
12556
  export type TimelineEntriesCreateRequest = TimelineEntriesCreateRequestTimelineComment & {
12086
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[];
12087
12563
  /**
12088
12564
  * If set, then the entry is ephemeral and will be deleted after the
12089
12565
  * provided time. The minimum value should be at least a minute more
@@ -12092,6 +12568,13 @@ export type TimelineEntriesCreateRequest = TimelineEntriesCreateRequestTimelineC
12092
12568
  * @example "2023-01-01T12:00:00.000Z"
12093
12569
  */
12094
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[];
12095
12578
  /**
12096
12579
  * The ID of the object to create the timeline entry for.
12097
12580
  * @format id
@@ -12129,8 +12612,26 @@ export interface TimelineEntriesCreateRequestTimelineComment {
12129
12612
  body?: string;
12130
12613
  /** The type of the body to use for the comment. */
12131
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[];
12132
12628
  /** Snap Kit Body of the comment. */
12133
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[];
12134
12635
  }
12135
12636
  export declare enum TimelineEntriesCreateRequestType {
12136
12637
  TimelineComment = "timeline_comment"
@@ -12164,6 +12665,14 @@ export type TimelineEntriesDeleteResponse = object;
12164
12665
  * The request to get a timeline entry.
12165
12666
  */
12166
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;
12167
12676
  /**
12168
12677
  * The ID of the timeline entry to get.
12169
12678
  * @format id
@@ -12183,6 +12692,12 @@ export interface TimelineEntriesGetResponse {
12183
12692
  * The request to list timeline entries for an object.
12184
12693
  */
12185
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;
12186
12701
  /**
12187
12702
  * The cursor to resume iteration from. If not provided, then
12188
12703
  * iteration starts from the beginning.
@@ -12190,8 +12705,17 @@ export interface TimelineEntriesListRequest {
12190
12705
  */
12191
12706
  cursor?: string;
12192
12707
  /**
12193
- * The maximum number of entries to return. If not set, then this
12194
- * 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.
12195
12719
  * @format int32
12196
12720
  */
12197
12721
  limit?: number;
@@ -12259,6 +12783,16 @@ export interface TimelineEntriesUpdateRequestTimelineComment {
12259
12783
  body?: string;
12260
12784
  /** The type of the body to use for the comment. */
12261
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;
12262
12796
  /** Snap Kit Body of the comment. */
12263
12797
  snap_kit_body?: TimelineSnapKitBody;
12264
12798
  }
@@ -12286,6 +12820,28 @@ export interface TimelineEntriesUpdateRequestTimelineCommentArtifacts {
12286
12820
  */
12287
12821
  set?: string[];
12288
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
+ }
12289
12845
  export declare enum TimelineEntriesUpdateRequestType {
12290
12846
  TimelineComment = "timeline_comment"
12291
12847
  }
@@ -12377,6 +12933,25 @@ export interface TimelineSnapKitBody {
12377
12933
  */
12378
12934
  snap_in_id?: string;
12379
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
+ }
12380
12955
  /** update-command-action */
12381
12956
  export interface UpdateCommandAction {
12382
12957
  action_details?: UpdateCommandActionDetails;
@@ -13224,7 +13799,10 @@ export interface WebhookEventRequest {
13224
13799
  account_created?: EventAccountCreated;
13225
13800
  account_deleted?: EventAccountDeleted;
13226
13801
  account_updated?: EventAccountUpdated;
13802
+ ai_agent_created?: EventAiAgentCreated;
13803
+ ai_agent_deleted?: EventAiAgentDeleted;
13227
13804
  ai_agent_response?: EventAiAgentResponse;
13805
+ ai_agent_updated?: EventAiAgentUpdated;
13228
13806
  article_created?: EventArticleCreated;
13229
13807
  article_deleted?: EventArticleDeleted;
13230
13808
  article_updated?: EventArticleUpdated;
@@ -13265,6 +13843,8 @@ export interface WebhookEventRequest {
13265
13843
  rev_user_created?: EventRevUserCreated;
13266
13844
  rev_user_deleted?: EventRevUserDeleted;
13267
13845
  rev_user_updated?: EventRevUserUpdated;
13846
+ service_plan_created?: EventServicePlanCreated;
13847
+ service_plan_updated?: EventServicePlanUpdated;
13268
13848
  sla_tracker_created?: EventSlaTrackerCreated;
13269
13849
  sla_tracker_deleted?: EventSlaTrackerDeleted;
13270
13850
  sla_tracker_fetched?: EventSlaTrackerFetched;
@@ -13310,6 +13890,9 @@ export interface WebhookEventRequest {
13310
13890
  work_deleted?: EventWorkDeleted;
13311
13891
  work_fetched?: EventWorkFetched;
13312
13892
  work_updated?: EventWorkUpdated;
13893
+ workflow_created?: EventWorkflowCreated;
13894
+ workflow_deleted?: EventWorkflowDeleted;
13895
+ workflow_updated?: EventWorkflowUpdated;
13313
13896
  }
13314
13897
  /** webhook-event-response */
13315
13898
  export interface WebhookEventResponse {
@@ -13557,7 +14140,34 @@ export interface WebhooksUpdateResponse {
13557
14140
  * weekly-org-schedule
13558
14141
  * The schedule for each week.
13559
14142
  */
13560
- export type WeeklyOrgSchedule = object;
14143
+ export interface WeeklyOrgSchedule {
14144
+ /** The 'on' intervals of the week. */
14145
+ intervals?: WeeklyOrgScheduleInterval[];
14146
+ /**
14147
+ * Describes in which named period the schedule applies.
14148
+ * @format text
14149
+ */
14150
+ period_name?: string;
14151
+ }
14152
+ /**
14153
+ * weekly-org-schedule-interval
14154
+ * A time interval within a week when the schedule is 'on'. It is defined
14155
+ * in minutes counting from Sunday midnight to Sunday midnight. (that is,
14156
+ * 0 is Sunday 00:00).
14157
+ */
14158
+ export interface WeeklyOrgScheduleInterval {
14159
+ /**
14160
+ * The time (in minutes) when the interval starts.
14161
+ * @format int32
14162
+ */
14163
+ from?: number;
14164
+ /**
14165
+ * The time (in minutes) when the interval ends. Should be larger than
14166
+ * 'from'.
14167
+ * @format int32
14168
+ */
14169
+ to?: number;
14170
+ }
13561
14171
  /** widget */
13562
14172
  export type Widget = AtomBase;
13563
14173
  /** work */
@@ -13574,12 +14184,42 @@ export type WorkBase = AtomBase & {
13574
14184
  * @format text
13575
14185
  */
13576
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;
13577
14201
  /** The users that own the work. */
13578
14202
  owned_by: UserSummary[];
13579
14203
  /** Users that reported the work. */
13580
14204
  reported_by?: UserSummary[];
13581
14205
  /** Describes the current stage of a work item. */
13582
14206
  stage?: LegacyStage;
14207
+ /**
14208
+ * Display name for current state.
14209
+ * @format text
14210
+ */
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;
13583
14223
  /** Tags associated with the object. */
13584
14224
  tags?: TagWithValue[];
13585
14225
  /**
@@ -13600,6 +14240,11 @@ export type WorkBaseSummary = AtomBaseSummary & {
13600
14240
  owned_by: UserSummary[];
13601
14241
  /** Describes the current stage of a work item. */
13602
14242
  stage?: LegacyStageSummary;
14243
+ /**
14244
+ * Display name for current state.
14245
+ * @format text
14246
+ */
14247
+ state_display_name?: string;
13603
14248
  /**
13604
14249
  * Title of the work object.
13605
14250
  * @format text
@@ -13610,6 +14255,8 @@ export declare enum WorkType {
13610
14255
  Issue = "issue",
13611
14256
  Ticket = "ticket"
13612
14257
  }
14258
+ /** workflow */
14259
+ export type Workflow = AtomBase;
13613
14260
  /** workflow-run-summary */
13614
14261
  export type WorkflowRunSummary = AtomBaseSummary;
13615
14262
  /** workflow-summary */
@@ -13636,6 +14283,30 @@ export type WorksCreateRequest = (WorksCreateRequestIssue | WorksCreateRequestTi
13636
14283
  * @maxLength 65536
13637
14284
  */
13638
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;
13639
14310
  /**
13640
14311
  * The users that own the work.
13641
14312
  * @example ["DEVU-12345"]
@@ -13759,6 +14430,25 @@ export interface WorksCreateRequestTicket {
13759
14430
  * @format id
13760
14431
  */
13761
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;
13762
14452
  }
13763
14453
  /** works-create-response */
13764
14454
  export interface WorksCreateResponse {
@@ -13793,6 +14483,8 @@ export interface WorksExportRequest {
13793
14483
  created_by?: string[];
13794
14484
  /** Provides ways to specify date ranges on objects. */
13795
14485
  created_date?: DateFilter;
14486
+ /** Filters for work with any of the provided external references. */
14487
+ external_ref?: string[];
13796
14488
  /**
13797
14489
  * The number of work items to return. The default is '50', the
13798
14490
  * maximum is '5000'.
@@ -13897,6 +14589,8 @@ export interface WorksFilterTicket {
13897
14589
  source_channel_v2?: string[];
13898
14590
  /** The filter for survey aggregation. */
13899
14591
  surveys?: SurveyAggregationFilter;
14592
+ /** Visibility enum ID of the ticket. */
14593
+ visibility?: number[];
13900
14594
  }
13901
14595
  /** works-get-request */
13902
14596
  export interface WorksGetRequest {
@@ -13935,6 +14629,8 @@ export interface WorksListRequest {
13935
14629
  * @format text
13936
14630
  */
13937
14631
  cursor?: string;
14632
+ /** Filters for work with any of the provided external references. */
14633
+ external_ref?: string[];
13938
14634
  issue?: WorksFilterIssue;
13939
14635
  /**
13940
14636
  * The maximum number of works to return. The default is '50'.
@@ -14016,6 +14712,22 @@ export type WorksUpdateRequest = (Empty | WorksUpdateRequestIssue | WorksUpdateR
14016
14712
  * @maxLength 65536
14017
14713
  */
14018
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;
14019
14731
  /**
14020
14732
  * The work's ID.
14021
14733
  * @format id
@@ -14261,6 +14973,25 @@ export interface WorksUpdateRequestTicket {
14261
14973
  * @format id
14262
14974
  */
14263
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;
14264
14995
  }
14265
14996
  /** works-update-request-ticket-channels */
14266
14997
  export interface WorksUpdateRequestTicketChannels {
@@ -14323,7 +15054,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
14323
15054
  protected mergeRequestParams(params1: AxiosRequestConfig, params2?: AxiosRequestConfig): AxiosRequestConfig;
14324
15055
  protected stringifyFormItem(formItem: unknown): string;
14325
15056
  protected createFormData(input: Record<string, unknown>): FormData;
14326
- 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, {}>>;
14327
15058
  }
14328
15059
  /**
14329
15060
  * @title DevRev REST API
@@ -14342,7 +15073,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14342
15073
  * @request POST:/accounts.create
14343
15074
  * @secure
14344
15075
  */
14345
- accountsCreate: (data: AccountsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsCreateResponse, any>>;
15076
+ accountsCreate: (data: AccountsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsCreateResponse, any, {}>>;
14346
15077
  /**
14347
15078
  * @description Deletes an account.
14348
15079
  *
@@ -14352,7 +15083,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14352
15083
  * @request POST:/accounts.delete
14353
15084
  * @secure
14354
15085
  */
14355
- accountsDelete: (data: AccountsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
15086
+ accountsDelete: (data: AccountsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
14356
15087
  /**
14357
15088
  * @description Exports a collection of accounts.
14358
15089
  *
@@ -14410,7 +15141,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14410
15141
  tier?: string[];
14411
15142
  /** Array of websites of accounts to be filtered. */
14412
15143
  websites?: string[];
14413
- }, params?: RequestParams) => Promise<AxiosResponse<AccountsExportResponse, any>>;
15144
+ }, params?: RequestParams) => Promise<AxiosResponse<AccountsExportResponse, any, {}>>;
14414
15145
  /**
14415
15146
  * @description Exports a collection of accounts.
14416
15147
  *
@@ -14420,7 +15151,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14420
15151
  * @request POST:/accounts.export
14421
15152
  * @secure
14422
15153
  */
14423
- accountsExportPost: (data: AccountsExportRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsExportResponse, any>>;
15154
+ accountsExportPost: (data: AccountsExportRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsExportResponse, any, {}>>;
14424
15155
  /**
14425
15156
  * @description Retrieves an account's information.
14426
15157
  *
@@ -14437,7 +15168,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14437
15168
  * @example "ACC-12345"
14438
15169
  */
14439
15170
  id: string;
14440
- }, params?: RequestParams) => Promise<AxiosResponse<AccountsGetResponse, any>>;
15171
+ }, params?: RequestParams) => Promise<AxiosResponse<AccountsGetResponse, any, {}>>;
14441
15172
  /**
14442
15173
  * @description Retrieves an account's information.
14443
15174
  *
@@ -14447,7 +15178,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14447
15178
  * @request POST:/accounts.get
14448
15179
  * @secure
14449
15180
  */
14450
- accountsGetPost: (data: AccountsGetRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsGetResponse, any>>;
15181
+ accountsGetPost: (data: AccountsGetRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsGetResponse, any, {}>>;
14451
15182
  /**
14452
15183
  * @description Gets a list of accounts.
14453
15184
  *
@@ -14515,7 +15246,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14515
15246
  tier?: string[];
14516
15247
  /** Array of websites of accounts to be filtered. */
14517
15248
  websites?: string[];
14518
- }, params?: RequestParams) => Promise<AxiosResponse<AccountsListResponse, any>>;
15249
+ }, params?: RequestParams) => Promise<AxiosResponse<AccountsListResponse, any, {}>>;
14519
15250
  /**
14520
15251
  * @description Gets a list of accounts.
14521
15252
  *
@@ -14525,7 +15256,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14525
15256
  * @request POST:/accounts.list
14526
15257
  * @secure
14527
15258
  */
14528
- accountsListPost: (data: AccountsListRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsListResponse, any>>;
15259
+ accountsListPost: (data: AccountsListRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsListResponse, any, {}>>;
14529
15260
  /**
14530
15261
  * @description Merges two accounts.
14531
15262
  *
@@ -14535,7 +15266,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14535
15266
  * @request POST:/accounts.merge
14536
15267
  * @secure
14537
15268
  */
14538
- accountsMerge: (data: AccountsMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
15269
+ accountsMerge: (data: AccountsMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
14539
15270
  /**
14540
15271
  * @description Updates an account's information.
14541
15272
  *
@@ -14545,7 +15276,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14545
15276
  * @request POST:/accounts.update
14546
15277
  * @secure
14547
15278
  */
14548
- accountsUpdate: (data: AccountsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsUpdateResponse, any>>;
15279
+ accountsUpdate: (data: AccountsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsUpdateResponse, any, {}>>;
14549
15280
  /**
14550
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.
14551
15282
  *
@@ -14555,7 +15286,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14555
15286
  * @request POST:/articles.create
14556
15287
  * @secure
14557
15288
  */
14558
- createArticle: (data: ArticlesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesCreateResponse, any>>;
15289
+ createArticle: (data: ArticlesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesCreateResponse, any, {}>>;
14559
15290
  /**
14560
15291
  * @description Deletes an article.
14561
15292
  *
@@ -14565,7 +15296,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14565
15296
  * @request POST:/articles.delete
14566
15297
  * @secure
14567
15298
  */
14568
- deleteArticle: (data: ArticlesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
15299
+ deleteArticle: (data: ArticlesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
14569
15300
  /**
14570
15301
  * @description Gets an article.
14571
15302
  *
@@ -14582,7 +15313,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14582
15313
  * @example "ARTICLE-12345"
14583
15314
  */
14584
15315
  id: string;
14585
- }, params?: RequestParams) => Promise<AxiosResponse<ArticlesGetResponse, any>>;
15316
+ }, params?: RequestParams) => Promise<AxiosResponse<ArticlesGetResponse, any, {}>>;
14586
15317
  /**
14587
15318
  * @description Gets an article.
14588
15319
  *
@@ -14592,7 +15323,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14592
15323
  * @request POST:/articles.get
14593
15324
  * @secure
14594
15325
  */
14595
- getArticlePost: (data: ArticlesGetRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesGetResponse, any>>;
15326
+ getArticlePost: (data: ArticlesGetRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesGetResponse, any, {}>>;
14596
15327
  /**
14597
15328
  * @description Lists a collection of articles.
14598
15329
  *
@@ -14670,7 +15401,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14670
15401
  * @example ["TAG-12345"]
14671
15402
  */
14672
15403
  tags?: string[];
14673
- }, params?: RequestParams) => Promise<AxiosResponse<ArticlesListResponse, any>>;
15404
+ }, params?: RequestParams) => Promise<AxiosResponse<ArticlesListResponse, any, {}>>;
14674
15405
  /**
14675
15406
  * @description Lists a collection of articles.
14676
15407
  *
@@ -14680,7 +15411,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14680
15411
  * @request POST:/articles.list
14681
15412
  * @secure
14682
15413
  */
14683
- listArticlesPost: (data: ArticlesListRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesListResponse, any>>;
15414
+ listArticlesPost: (data: ArticlesListRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesListResponse, any, {}>>;
14684
15415
  /**
14685
15416
  * @description Updates an article.
14686
15417
  *
@@ -14690,7 +15421,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14690
15421
  * @request POST:/articles.update
14691
15422
  * @secure
14692
15423
  */
14693
- updateArticle: (data: ArticlesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesUpdateResponse, any>>;
15424
+ updateArticle: (data: ArticlesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesUpdateResponse, any, {}>>;
14694
15425
  /**
14695
15426
  * @description Gets the requested artifact's information.
14696
15427
  *
@@ -14712,7 +15443,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14712
15443
  * @format text
14713
15444
  */
14714
15445
  version?: string;
14715
- }, params?: RequestParams) => Promise<AxiosResponse<ArtifactsGetResponse, any>>;
15446
+ }, params?: RequestParams) => Promise<AxiosResponse<ArtifactsGetResponse, any, {}>>;
14716
15447
  /**
14717
15448
  * @description Gets the requested artifact's information.
14718
15449
  *
@@ -14722,7 +15453,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14722
15453
  * @request POST:/artifacts.get
14723
15454
  * @secure
14724
15455
  */
14725
- artifactsGetPost: (data: ArtifactsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsGetResponse, any>>;
15456
+ artifactsGetPost: (data: ArtifactsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsGetResponse, any, {}>>;
14726
15457
  /**
14727
15458
  * @description List the artifacts attached to an object.
14728
15459
  *
@@ -14738,7 +15469,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14738
15469
  * @format id
14739
15470
  */
14740
15471
  parent_id?: string;
14741
- }, params?: RequestParams) => Promise<AxiosResponse<ArtifactsListResponse, any>>;
15472
+ }, params?: RequestParams) => Promise<AxiosResponse<ArtifactsListResponse, any, {}>>;
14742
15473
  /**
14743
15474
  * @description List the artifacts attached to an object.
14744
15475
  *
@@ -14748,7 +15479,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14748
15479
  * @request POST:/artifacts.list
14749
15480
  * @secure
14750
15481
  */
14751
- artifactsListPost: (data: ArtifactsListRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsListResponse, any>>;
15482
+ artifactsListPost: (data: ArtifactsListRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsListResponse, any, {}>>;
14752
15483
  /**
14753
15484
  * @description Gets the download URL for the artifact.
14754
15485
  *
@@ -14770,7 +15501,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14770
15501
  * @format text
14771
15502
  */
14772
15503
  version?: string;
14773
- }, params?: RequestParams) => Promise<AxiosResponse<ArtifactsLocateResponse, any>>;
15504
+ }, params?: RequestParams) => Promise<AxiosResponse<ArtifactsLocateResponse, any, {}>>;
14774
15505
  /**
14775
15506
  * @description Gets the download URL for the artifact.
14776
15507
  *
@@ -14780,7 +15511,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14780
15511
  * @request POST:/artifacts.locate
14781
15512
  * @secure
14782
15513
  */
14783
- artifactsLocatePost: (data: ArtifactsLocateRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsLocateResponse, any>>;
15514
+ artifactsLocatePost: (data: ArtifactsLocateRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsLocateResponse, any, {}>>;
14784
15515
  /**
14785
15516
  * @description Creates an artifact and generates an upload URL for its data.
14786
15517
  *
@@ -14790,7 +15521,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14790
15521
  * @request POST:/artifacts.prepare
14791
15522
  * @secure
14792
15523
  */
14793
- artifactsPrepare: (data: ArtifactsPrepareRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsPrepareResponse, any>>;
15524
+ artifactsPrepare: (data: ArtifactsPrepareRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsPrepareResponse, any, {}>>;
14794
15525
  /**
14795
15526
  * @description Permanently deletes a version of an artifact.
14796
15527
  *
@@ -14800,7 +15531,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14800
15531
  * @request POST:/artifacts.versions.delete
14801
15532
  * @secure
14802
15533
  */
14803
- artifactsHardDeleteVersion: (data: ArtifactsHardDeleteVersionRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
15534
+ artifactsHardDeleteVersion: (data: ArtifactsHardDeleteVersionRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
14804
15535
  /**
14805
15536
  * @description Prepares a new version for an artifact, returning the URL and form data to upload the updated file.
14806
15537
  *
@@ -14810,7 +15541,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14810
15541
  * @request POST:/artifacts.versions.prepare
14811
15542
  * @secure
14812
15543
  */
14813
- artifactsVersionsPrepare: (data: ArtifactsVersionsPrepareRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsVersionsPrepareResponse, any>>;
15544
+ artifactsVersionsPrepare: (data: ArtifactsVersionsPrepareRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsVersionsPrepareResponse, any, {}>>;
14814
15545
  /**
14815
15546
  * @description Gets the specified object.
14816
15547
  *
@@ -14826,7 +15557,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14826
15557
  * @format id
14827
15558
  */
14828
15559
  id: string;
14829
- }, params?: RequestParams) => Promise<AxiosResponse<AtomsGetResponse, any>>;
15560
+ }, params?: RequestParams) => Promise<AxiosResponse<AtomsGetResponse, any, {}>>;
14830
15561
  /**
14831
15562
  * @description Gets the specified object.
14832
15563
  *
@@ -14836,7 +15567,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14836
15567
  * @request POST:/atoms.get
14837
15568
  * @secure
14838
15569
  */
14839
- atomsGetPost: (data: AtomsGetRequest, params?: RequestParams) => Promise<AxiosResponse<AtomsGetResponse, any>>;
15570
+ atomsGetPost: (data: AtomsGetRequest, params?: RequestParams) => Promise<AxiosResponse<AtomsGetResponse, any, {}>>;
14840
15571
  /**
14841
15572
  * @description Creates a JWT corresponding to the requested token type for the authenticated user.
14842
15573
  *
@@ -14846,7 +15577,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14846
15577
  * @request POST:/auth-tokens.create
14847
15578
  * @secure
14848
15579
  */
14849
- authTokensCreate: (data: AuthTokensCreateRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensCreateResponse, any>>;
15580
+ authTokensCreate: (data: AuthTokensCreateRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensCreateResponse, any, {}>>;
14850
15581
  /**
14851
15582
  * @description Revokes the token that matches the given token ID issued under the given Dev organization.
14852
15583
  *
@@ -14856,7 +15587,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14856
15587
  * @request POST:/auth-tokens.delete
14857
15588
  * @secure
14858
15589
  */
14859
- authTokensDelete: (data: AuthTokensDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
15590
+ authTokensDelete: (data: AuthTokensDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
14860
15591
  /**
14861
15592
  * @description Gets the token metadata corresponding to the given token ID under the given Dev organization.
14862
15593
  *
@@ -14872,7 +15603,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14872
15603
  * @format id
14873
15604
  */
14874
15605
  token_id: string;
14875
- }, params?: RequestParams) => Promise<AxiosResponse<AuthTokensGetResponse, any>>;
15606
+ }, params?: RequestParams) => Promise<AxiosResponse<AuthTokensGetResponse, any, {}>>;
14876
15607
  /**
14877
15608
  * @description Gets the token metadata corresponding to the given token ID under the given Dev organization.
14878
15609
  *
@@ -14882,7 +15613,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14882
15613
  * @request POST:/auth-tokens.get
14883
15614
  * @secure
14884
15615
  */
14885
- authTokensGetPost: (data: AuthTokensGetRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensGetResponse, any>>;
15616
+ authTokensGetPost: (data: AuthTokensGetRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensGetResponse, any, {}>>;
14886
15617
  /**
14887
15618
  * @description Returns the Dev organization, user and token attributes extracted from the auth token.
14888
15619
  *
@@ -14892,7 +15623,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14892
15623
  * @request GET:/auth-tokens.info
14893
15624
  * @secure
14894
15625
  */
14895
- authTokensInfo: (params?: RequestParams) => Promise<AxiosResponse<AuthTokensInfoResponse, any>>;
15626
+ authTokensInfo: (params?: RequestParams) => Promise<AxiosResponse<AuthTokensInfoResponse, any, {}>>;
14896
15627
  /**
14897
15628
  * @description Returns the Dev organization, user and token attributes extracted from the auth token.
14898
15629
  *
@@ -14902,7 +15633,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14902
15633
  * @request POST:/auth-tokens.info
14903
15634
  * @secure
14904
15635
  */
14905
- authTokensInfoPost: (data: AuthTokensInfoRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensInfoResponse, any>>;
15636
+ authTokensInfoPost: (data: AuthTokensInfoRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensInfoResponse, any, {}>>;
14906
15637
  /**
14907
15638
  * @description Gets the token metadata for all the tokens corresponding to the given token type issued for a given subject.
14908
15639
  *
@@ -14931,7 +15662,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14931
15662
  * @format id
14932
15663
  */
14933
15664
  subject?: string;
14934
- }, params?: RequestParams) => Promise<AxiosResponse<AuthTokensListResponse, any>>;
15665
+ }, params?: RequestParams) => Promise<AxiosResponse<AuthTokensListResponse, any, {}>>;
14935
15666
  /**
14936
15667
  * @description Gets the token metadata for all the tokens corresponding to the given token type issued for a given subject.
14937
15668
  *
@@ -14941,7 +15672,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14941
15672
  * @request POST:/auth-tokens.list
14942
15673
  * @secure
14943
15674
  */
14944
- authTokensListPost: (data: AuthTokensListRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensListResponse, any>>;
15675
+ authTokensListPost: (data: AuthTokensListRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensListResponse, any, {}>>;
14945
15676
  /**
14946
15677
  * @description Revokes all the tokens that matches the given token type created by the authenticated user.
14947
15678
  *
@@ -14951,7 +15682,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14951
15682
  * @request POST:/auth-tokens.self.delete
14952
15683
  * @secure
14953
15684
  */
14954
- authTokensSelfDelete: (data: AuthTokensSelfDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
15685
+ authTokensSelfDelete: (data: AuthTokensSelfDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
14955
15686
  /**
14956
15687
  * @description Updates token metadata of a token issued under a given Dev organization.
14957
15688
  *
@@ -14961,7 +15692,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14961
15692
  * @request POST:/auth-tokens.update
14962
15693
  * @secure
14963
15694
  */
14964
- authTokensUpdate: (data: AuthTokensUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensUpdateResponse, any>>;
15695
+ authTokensUpdate: (data: AuthTokensUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensUpdateResponse, any, {}>>;
14965
15696
  /**
14966
15697
  * @description Creates a new chat, or optionally opens an existing one.
14967
15698
  *
@@ -14971,7 +15702,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14971
15702
  * @request POST:/chats.create
14972
15703
  * @secure
14973
15704
  */
14974
- chatsCreate: (data: ChatsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsCreateResponse, any>>;
15705
+ chatsCreate: (data: ChatsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsCreateResponse, any, {}>>;
14975
15706
  /**
14976
15707
  * @description Gets a chat's information.
14977
15708
  *
@@ -14988,7 +15719,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14988
15719
  * @example "CHAN-AbCdEfGh"
14989
15720
  */
14990
15721
  id?: string;
14991
- }, params?: RequestParams) => Promise<AxiosResponse<ChatsGetResponse, any>>;
15722
+ }, params?: RequestParams) => Promise<AxiosResponse<ChatsGetResponse, any, {}>>;
14992
15723
  /**
14993
15724
  * @description Gets a chat's information.
14994
15725
  *
@@ -14998,7 +15729,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
14998
15729
  * @request POST:/chats.get
14999
15730
  * @secure
15000
15731
  */
15001
- chatsGetPost: (data: ChatsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsGetResponse, any>>;
15732
+ chatsGetPost: (data: ChatsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsGetResponse, any, {}>>;
15002
15733
  /**
15003
15734
  * @description Updates a chat's information.
15004
15735
  *
@@ -15008,7 +15739,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15008
15739
  * @request POST:/chats.update
15009
15740
  * @secure
15010
15741
  */
15011
- chatsUpdate: (data: ChatsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsUpdateResponse, any>>;
15742
+ chatsUpdate: (data: ChatsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsUpdateResponse, any, {}>>;
15012
15743
  /**
15013
15744
  * @description Creates a code change object.
15014
15745
  *
@@ -15018,7 +15749,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15018
15749
  * @request POST:/code-changes.create
15019
15750
  * @secure
15020
15751
  */
15021
- codeChangesCreate: (data: CodeChangesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesCreateResponse, any>>;
15752
+ codeChangesCreate: (data: CodeChangesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesCreateResponse, any, {}>>;
15022
15753
  /**
15023
15754
  * @description Deletes a code change object.
15024
15755
  *
@@ -15028,7 +15759,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15028
15759
  * @request POST:/code-changes.delete
15029
15760
  * @secure
15030
15761
  */
15031
- codeChangesDelete: (data: CodeChangesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
15762
+ codeChangesDelete: (data: CodeChangesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
15032
15763
  /**
15033
15764
  * @description Gets a code change object.
15034
15765
  *
@@ -15044,7 +15775,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15044
15775
  * @format id
15045
15776
  */
15046
15777
  id: string;
15047
- }, params?: RequestParams) => Promise<AxiosResponse<CodeChangesGetResponse, any>>;
15778
+ }, params?: RequestParams) => Promise<AxiosResponse<CodeChangesGetResponse, any, {}>>;
15048
15779
  /**
15049
15780
  * @description Gets a code change object.
15050
15781
  *
@@ -15054,7 +15785,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15054
15785
  * @request POST:/code-changes.get
15055
15786
  * @secure
15056
15787
  */
15057
- codeChangesGetPost: (data: CodeChangesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesGetResponse, any>>;
15788
+ codeChangesGetPost: (data: CodeChangesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesGetResponse, any, {}>>;
15058
15789
  /**
15059
15790
  * @description Lists code change objects.
15060
15791
  *
@@ -15082,7 +15813,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15082
15813
  * used.
15083
15814
  */
15084
15815
  mode?: ListMode;
15085
- }, params?: RequestParams) => Promise<AxiosResponse<CodeChangesListResponse, any>>;
15816
+ }, params?: RequestParams) => Promise<AxiosResponse<CodeChangesListResponse, any, {}>>;
15086
15817
  /**
15087
15818
  * @description Lists code change objects.
15088
15819
  *
@@ -15092,7 +15823,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15092
15823
  * @request POST:/code-changes.list
15093
15824
  * @secure
15094
15825
  */
15095
- codeChangesListPost: (data: CodeChangesListRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesListResponse, any>>;
15826
+ codeChangesListPost: (data: CodeChangesListRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesListResponse, any, {}>>;
15096
15827
  /**
15097
15828
  * @description Updates a code change object.
15098
15829
  *
@@ -15102,7 +15833,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15102
15833
  * @request POST:/code-changes.update
15103
15834
  * @secure
15104
15835
  */
15105
- codeChangesUpdate: (data: CodeChangesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesUpdateResponse, any>>;
15836
+ codeChangesUpdate: (data: CodeChangesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesUpdateResponse, any, {}>>;
15106
15837
  /**
15107
15838
  * @description Creates a command.
15108
15839
  *
@@ -15112,7 +15843,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15112
15843
  * @request POST:/commands.create
15113
15844
  * @secure
15114
15845
  */
15115
- commandsCreate: (data: CommandCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CommandCreateResponse, any>>;
15846
+ commandsCreate: (data: CommandCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CommandCreateResponse, any, {}>>;
15116
15847
  /**
15117
15848
  * @description Gets a command.
15118
15849
  *
@@ -15128,7 +15859,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15128
15859
  * @format id
15129
15860
  */
15130
15861
  id: string;
15131
- }, params?: RequestParams) => Promise<AxiosResponse<CommandGetResponse, any>>;
15862
+ }, params?: RequestParams) => Promise<AxiosResponse<CommandGetResponse, any, {}>>;
15132
15863
  /**
15133
15864
  * @description Gets a command.
15134
15865
  *
@@ -15138,7 +15869,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15138
15869
  * @request POST:/commands.get
15139
15870
  * @secure
15140
15871
  */
15141
- commandsGetPost: (data: CommandGetRequest, params?: RequestParams) => Promise<AxiosResponse<CommandGetResponse, any>>;
15872
+ commandsGetPost: (data: CommandGetRequest, params?: RequestParams) => Promise<AxiosResponse<CommandGetResponse, any, {}>>;
15142
15873
  /**
15143
15874
  * @description Lists commands for a Dev organization.
15144
15875
  *
@@ -15179,7 +15910,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15179
15910
  source_object_id?: string;
15180
15911
  /** Filter commands based on status. */
15181
15912
  status?: CommandStatus[];
15182
- }, params?: RequestParams) => Promise<AxiosResponse<CommandsListResponse, any>>;
15913
+ }, params?: RequestParams) => Promise<AxiosResponse<CommandsListResponse, any, {}>>;
15183
15914
  /**
15184
15915
  * @description Lists commands for a Dev organization.
15185
15916
  *
@@ -15189,7 +15920,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15189
15920
  * @request POST:/commands.list
15190
15921
  * @secure
15191
15922
  */
15192
- commandsListPost: (data: CommandsListRequest, params?: RequestParams) => Promise<AxiosResponse<CommandsListResponse, any>>;
15923
+ commandsListPost: (data: CommandsListRequest, params?: RequestParams) => Promise<AxiosResponse<CommandsListResponse, any, {}>>;
15193
15924
  /**
15194
15925
  * @description Updates a command.
15195
15926
  *
@@ -15199,7 +15930,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15199
15930
  * @request POST:/commands.update
15200
15931
  * @secure
15201
15932
  */
15202
- commandsUpdate: (data: CommandUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CommandUpdateResponse, any>>;
15933
+ commandsUpdate: (data: CommandUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CommandUpdateResponse, any, {}>>;
15203
15934
  /**
15204
15935
  * @description Creates a conversation.
15205
15936
  *
@@ -15209,7 +15940,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15209
15940
  * @request POST:/conversations.create
15210
15941
  * @secure
15211
15942
  */
15212
- conversationsCreate: (data: ConversationsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsCreateResponse, any>>;
15943
+ conversationsCreate: (data: ConversationsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsCreateResponse, any, {}>>;
15213
15944
  /**
15214
15945
  * @description Deletes the requested conversation.
15215
15946
  *
@@ -15219,7 +15950,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15219
15950
  * @request POST:/conversations.delete
15220
15951
  * @secure
15221
15952
  */
15222
- conversationsDelete: (data: ConversationsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
15953
+ conversationsDelete: (data: ConversationsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
15223
15954
  /**
15224
15955
  * @description Gets the requested conversation's information.
15225
15956
  *
@@ -15235,7 +15966,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15235
15966
  * @format id
15236
15967
  */
15237
15968
  id: string;
15238
- }, params?: RequestParams) => Promise<AxiosResponse<ConversationsGetResponse, any>>;
15969
+ }, params?: RequestParams) => Promise<AxiosResponse<ConversationsGetResponse, any, {}>>;
15239
15970
  /**
15240
15971
  * @description Gets the requested conversation's information.
15241
15972
  *
@@ -15245,7 +15976,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15245
15976
  * @request POST:/conversations.get
15246
15977
  * @secure
15247
15978
  */
15248
- conversationsGetPost: (data: ConversationsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsGetResponse, any>>;
15979
+ conversationsGetPost: (data: ConversationsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsGetResponse, any, {}>>;
15249
15980
  /**
15250
15981
  * @description Lists the available conversations.
15251
15982
  *
@@ -15364,7 +16095,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15364
16095
  * @format text
15365
16096
  */
15366
16097
  'tags_v2.value'?: string;
15367
- }, params?: RequestParams) => Promise<AxiosResponse<ConversationsListResponse, any>>;
16098
+ }, params?: RequestParams) => Promise<AxiosResponse<ConversationsListResponse, any, {}>>;
15368
16099
  /**
15369
16100
  * @description Lists the available conversations.
15370
16101
  *
@@ -15374,7 +16105,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15374
16105
  * @request POST:/conversations.list
15375
16106
  * @secure
15376
16107
  */
15377
- conversationsListPost: (data: ConversationsListRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsListResponse, any>>;
16108
+ conversationsListPost: (data: ConversationsListRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsListResponse, any, {}>>;
15378
16109
  /**
15379
16110
  * @description Updates the requested conversation.
15380
16111
  *
@@ -15384,7 +16115,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15384
16115
  * @request POST:/conversations.update
15385
16116
  * @secure
15386
16117
  */
15387
- conversationsUpdate: (data: ConversationsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsUpdateResponse, any>>;
16118
+ conversationsUpdate: (data: ConversationsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsUpdateResponse, any, {}>>;
15388
16119
  /**
15389
16120
  * @description Counts custom objects.
15390
16121
  *
@@ -15402,7 +16133,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15402
16133
  leaf_type: string;
15403
16134
  /** List of filters to apply. */
15404
16135
  filters?: any[];
15405
- }, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCountResponse, any>>;
16136
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCountResponse, any, {}>>;
15406
16137
  /**
15407
16138
  * @description Counts custom objects.
15408
16139
  *
@@ -15412,7 +16143,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15412
16143
  * @request POST:/custom-objects.count
15413
16144
  * @secure
15414
16145
  */
15415
- customObjectsCountPost: (data: CustomObjectsCountRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCountResponse, any>>;
16146
+ customObjectsCountPost: (data: CustomObjectsCountRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCountResponse, any, {}>>;
15416
16147
  /**
15417
16148
  * @description Creates a custom object.
15418
16149
  *
@@ -15422,7 +16153,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15422
16153
  * @request POST:/custom-objects.create
15423
16154
  * @secure
15424
16155
  */
15425
- customObjectsCreate: (data: CustomObjectsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCreateResponse, any>>;
16156
+ customObjectsCreate: (data: CustomObjectsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCreateResponse, any, {}>>;
15426
16157
  /**
15427
16158
  * @description Deletes a custom object.
15428
16159
  *
@@ -15432,7 +16163,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15432
16163
  * @request POST:/custom-objects.delete
15433
16164
  * @secure
15434
16165
  */
15435
- customObjectsDelete: (data: CustomObjectsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
16166
+ customObjectsDelete: (data: CustomObjectsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
15436
16167
  /**
15437
16168
  * @description Gets a custom object.
15438
16169
  *
@@ -15448,7 +16179,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15448
16179
  * @format id
15449
16180
  */
15450
16181
  id?: string;
15451
- }, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsGetResponse, any>>;
16182
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsGetResponse, any, {}>>;
15452
16183
  /**
15453
16184
  * @description Gets a custom object.
15454
16185
  *
@@ -15458,7 +16189,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15458
16189
  * @request POST:/custom-objects.get
15459
16190
  * @secure
15460
16191
  */
15461
- customObjectsGetPost: (data: CustomObjectsGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsGetResponse, any>>;
16192
+ customObjectsGetPost: (data: CustomObjectsGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsGetResponse, any, {}>>;
15462
16193
  /**
15463
16194
  * @description Lists custom objects.
15464
16195
  *
@@ -15496,7 +16227,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15496
16227
  mode?: ListMode;
15497
16228
  /** The list of fields to sort the items by and how to sort them. */
15498
16229
  sort_by?: string[];
15499
- }, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsListResponse, any>>;
16230
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsListResponse, any, {}>>;
15500
16231
  /**
15501
16232
  * @description Lists custom objects.
15502
16233
  *
@@ -15506,7 +16237,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15506
16237
  * @request POST:/custom-objects.list
15507
16238
  * @secure
15508
16239
  */
15509
- customObjectsListPost: (data: CustomObjectsListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsListResponse, any>>;
16240
+ customObjectsListPost: (data: CustomObjectsListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsListResponse, any, {}>>;
15510
16241
  /**
15511
16242
  * @description Updates a custom object.
15512
16243
  *
@@ -15516,7 +16247,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15516
16247
  * @request POST:/custom-objects.update
15517
16248
  * @secure
15518
16249
  */
15519
- customObjectsUpdate: (data: CustomObjectsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsUpdateResponse, any>>;
16250
+ customObjectsUpdate: (data: CustomObjectsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsUpdateResponse, any, {}>>;
15520
16251
  /**
15521
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.
15522
16253
  *
@@ -15526,7 +16257,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15526
16257
  * @request POST:/dev-orgs.auth-connections.create
15527
16258
  * @secure
15528
16259
  */
15529
- devOrgAuthConnectionsCreate: (data: DevOrgAuthConnectionsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsCreateResponse, any>>;
16260
+ devOrgAuthConnectionsCreate: (data: DevOrgAuthConnectionsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsCreateResponse, any, {}>>;
15530
16261
  /**
15531
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.
15532
16263
  *
@@ -15536,7 +16267,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15536
16267
  * @request POST:/dev-orgs.auth-connections.delete
15537
16268
  * @secure
15538
16269
  */
15539
- devOrgAuthConnectionsDelete: (data: DevOrgAuthConnectionsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
16270
+ devOrgAuthConnectionsDelete: (data: DevOrgAuthConnectionsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
15540
16271
  /**
15541
16272
  * @description Retrieves the details for an authentication connection.
15542
16273
  *
@@ -15552,7 +16283,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15552
16283
  * @format text
15553
16284
  */
15554
16285
  id: string;
15555
- }, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsGetResponse, any>>;
16286
+ }, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsGetResponse, any, {}>>;
15556
16287
  /**
15557
16288
  * @description Retrieves the details for an authentication connection.
15558
16289
  *
@@ -15562,7 +16293,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15562
16293
  * @request POST:/dev-orgs.auth-connections.get
15563
16294
  * @secure
15564
16295
  */
15565
- devOrgAuthConnectionsGetPost: (data: DevOrgAuthConnectionsGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsGetResponse, any>>;
16296
+ devOrgAuthConnectionsGetPost: (data: DevOrgAuthConnectionsGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsGetResponse, any, {}>>;
15566
16297
  /**
15567
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.
15568
16299
  *
@@ -15572,7 +16303,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15572
16303
  * @request GET:/dev-orgs.auth-connections.list
15573
16304
  * @secure
15574
16305
  */
15575
- devOrgAuthConnectionsList: (params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsListResponse, any>>;
16306
+ devOrgAuthConnectionsList: (params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsListResponse, any, {}>>;
15576
16307
  /**
15577
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.
15578
16309
  *
@@ -15582,7 +16313,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15582
16313
  * @request POST:/dev-orgs.auth-connections.list
15583
16314
  * @secure
15584
16315
  */
15585
- devOrgAuthConnectionsListPost: (data: Empty, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsListResponse, any>>;
16316
+ devOrgAuthConnectionsListPost: (data: Empty, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsListResponse, any, {}>>;
15586
16317
  /**
15587
16318
  * @description Enable or disable an authentication connection for a Dev organization. Atleast one authentication connection must be enabled for a Dev organization.
15588
16319
  *
@@ -15592,7 +16323,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15592
16323
  * @request POST:/dev-orgs.auth-connections.toggle
15593
16324
  * @secure
15594
16325
  */
15595
- devOrgAuthConnectionsToggle: (data: DevOrgAuthConnectionsToggleRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
16326
+ devOrgAuthConnectionsToggle: (data: DevOrgAuthConnectionsToggleRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
15596
16327
  /**
15597
16328
  * @description Updates an authentication connection.
15598
16329
  *
@@ -15602,7 +16333,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15602
16333
  * @request POST:/dev-orgs.auth-connections.update
15603
16334
  * @secure
15604
16335
  */
15605
- devOrgAuthConnectionsUpdate: (data: DevOrgAuthConnectionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsUpdateResponse, any>>;
16336
+ devOrgAuthConnectionsUpdate: (data: DevOrgAuthConnectionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsUpdateResponse, any, {}>>;
15606
16337
  /**
15607
16338
  * @description Gets the Dev organization's information of the authenticated user.
15608
16339
  *
@@ -15612,7 +16343,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15612
16343
  * @request GET:/dev-orgs.get
15613
16344
  * @secure
15614
16345
  */
15615
- devOrgsGet: (params?: RequestParams) => Promise<AxiosResponse<DevOrgsGetResponse, any>>;
16346
+ devOrgsGet: (params?: RequestParams) => Promise<AxiosResponse<DevOrgsGetResponse, any, {}>>;
15616
16347
  /**
15617
16348
  * @description Gets the Dev organization's information of the authenticated user.
15618
16349
  *
@@ -15622,7 +16353,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15622
16353
  * @request POST:/dev-orgs.get
15623
16354
  * @secure
15624
16355
  */
15625
- devOrgsGetPost: (data: DevOrgsGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgsGetResponse, any>>;
16356
+ devOrgsGetPost: (data: DevOrgsGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgsGetResponse, any, {}>>;
15626
16357
  /**
15627
16358
  * @description Activates the requested user.
15628
16359
  *
@@ -15632,7 +16363,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15632
16363
  * @request POST:/dev-users.activate
15633
16364
  * @secure
15634
16365
  */
15635
- devUsersActivate: (data: DevUsersActivateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersActivateResponse, any>>;
16366
+ devUsersActivate: (data: DevUsersActivateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersActivateResponse, any, {}>>;
15636
16367
  /**
15637
16368
  * @description Creates a Dev user for a Dev organization.
15638
16369
  *
@@ -15642,7 +16373,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15642
16373
  * @request POST:/dev-users.create
15643
16374
  * @secure
15644
16375
  */
15645
- devUsersCreate: (data: DevUsersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersCreateResponse, any>>;
16376
+ devUsersCreate: (data: DevUsersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersCreateResponse, any, {}>>;
15646
16377
  /**
15647
16378
  * @description Deactivates the requested user.
15648
16379
  *
@@ -15652,7 +16383,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15652
16383
  * @request POST:/dev-users.deactivate
15653
16384
  * @secure
15654
16385
  */
15655
- devUsersDeactivate: (data: DevUsersDeactivateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
16386
+ devUsersDeactivate: (data: DevUsersDeactivateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
15656
16387
  /**
15657
16388
  * @description Gets the requested user's information.
15658
16389
  *
@@ -15668,7 +16399,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15668
16399
  * @format id
15669
16400
  */
15670
16401
  id: string;
15671
- }, params?: RequestParams) => Promise<AxiosResponse<DevUsersGetResponse, any>>;
16402
+ }, params?: RequestParams) => Promise<AxiosResponse<DevUsersGetResponse, any, {}>>;
15672
16403
  /**
15673
16404
  * @description Gets the requested user's information.
15674
16405
  *
@@ -15678,7 +16409,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15678
16409
  * @request POST:/dev-users.get
15679
16410
  * @secure
15680
16411
  */
15681
- devUsersGetPost: (data: DevUsersGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersGetResponse, any>>;
16412
+ devUsersGetPost: (data: DevUsersGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersGetResponse, any, {}>>;
15682
16413
  /**
15683
16414
  * @description Links an external/secondary identity to the Dev user.
15684
16415
  *
@@ -15688,7 +16419,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15688
16419
  * @request POST:/dev-users.identities.link
15689
16420
  * @secure
15690
16421
  */
15691
- devUsersIdentitiesLink: (data: DevUsersIdentitiesLinkRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersIdentitiesLinkResponse, any>>;
16422
+ devUsersIdentitiesLink: (data: DevUsersIdentitiesLinkRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersIdentitiesLinkResponse, any, {}>>;
15692
16423
  /**
15693
16424
  * @description Unlinks an external/secondary identity from the Dev user.
15694
16425
  *
@@ -15698,7 +16429,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15698
16429
  * @request POST:/dev-users.identities.unlink
15699
16430
  * @secure
15700
16431
  */
15701
- devUsersIdentitiesUnlink: (data: DevUsersIdentitiesUnlinkRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersIdentitiesUnlinkResponse, any>>;
16432
+ devUsersIdentitiesUnlink: (data: DevUsersIdentitiesUnlinkRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersIdentitiesUnlinkResponse, any, {}>>;
15702
16433
  /**
15703
16434
  * @description Lists users within your organization.
15704
16435
  *
@@ -15743,7 +16474,12 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15743
16474
  sort_by?: string[];
15744
16475
  /** Filters Dev users based on state. */
15745
16476
  state?: UserState[];
15746
- }, 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, {}>>;
15747
16483
  /**
15748
16484
  * @description Lists users within your organization.
15749
16485
  *
@@ -15753,7 +16489,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15753
16489
  * @request POST:/dev-users.list
15754
16490
  * @secure
15755
16491
  */
15756
- devUsersListPost: (data: DevUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersListResponse, any>>;
16492
+ devUsersListPost: (data: DevUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersListResponse, any, {}>>;
15757
16493
  /**
15758
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.
15759
16495
  *
@@ -15763,7 +16499,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15763
16499
  * @request POST:/dev-users.merge
15764
16500
  * @secure
15765
16501
  */
15766
- devUsersMerge: (data: DevUsersMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
16502
+ devUsersMerge: (data: DevUsersMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
15767
16503
  /**
15768
16504
  * @description Gets the authenticated user's information.
15769
16505
  *
@@ -15773,7 +16509,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15773
16509
  * @request GET:/dev-users.self
15774
16510
  * @secure
15775
16511
  */
15776
- devUsersSelf: (params?: RequestParams) => Promise<AxiosResponse<DevUsersSelfResponse, any>>;
16512
+ devUsersSelf: (params?: RequestParams) => Promise<AxiosResponse<DevUsersSelfResponse, any, {}>>;
15777
16513
  /**
15778
16514
  * @description Gets the authenticated user's information.
15779
16515
  *
@@ -15783,7 +16519,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15783
16519
  * @request POST:/dev-users.self
15784
16520
  * @secure
15785
16521
  */
15786
- devUsersSelfPost: (data: DevUsersSelfRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersSelfResponse, any>>;
16522
+ devUsersSelfPost: (data: DevUsersSelfRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersSelfResponse, any, {}>>;
15787
16523
  /**
15788
16524
  * @description Updates the authenticated user.
15789
16525
  *
@@ -15793,7 +16529,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15793
16529
  * @request POST:/dev-users.self.update
15794
16530
  * @secure
15795
16531
  */
15796
- devUsersSelfUpdate: (data: DevUsersSelfUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersUpdateResponse, any>>;
16532
+ devUsersSelfUpdate: (data: DevUsersSelfUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersUpdateResponse, any, {}>>;
15797
16533
  /**
15798
16534
  * @description Updates the user corresponding to the input Id.
15799
16535
  *
@@ -15803,7 +16539,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15803
16539
  * @request POST:/dev-users.update
15804
16540
  * @secure
15805
16541
  */
15806
- devUsersUpdate: (data: DevUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersUpdateResponse, any>>;
16542
+ devUsersUpdate: (data: DevUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersUpdateResponse, any, {}>>;
15807
16543
  /**
15808
16544
  * @description Get count of directories matching given filter.
15809
16545
  *
@@ -15824,7 +16560,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15824
16560
  * @example ["DEVU-12345"]
15825
16561
  */
15826
16562
  modified_by?: string[];
15827
- }, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCountResponse, any>>;
16563
+ }, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCountResponse, any, {}>>;
15828
16564
  /**
15829
16565
  * @description Get count of directories matching given filter.
15830
16566
  *
@@ -15834,7 +16570,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15834
16570
  * @request POST:/directories.count
15835
16571
  * @secure
15836
16572
  */
15837
- directoriesCountPost: (data: DirectoriesCountRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCountResponse, any>>;
16573
+ directoriesCountPost: (data: DirectoriesCountRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCountResponse, any, {}>>;
15838
16574
  /**
15839
16575
  * @description Creates a directory for the specified inputs.
15840
16576
  *
@@ -15844,7 +16580,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15844
16580
  * @request POST:/directories.create
15845
16581
  * @secure
15846
16582
  */
15847
- directoriesCreate: (data: DirectoriesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCreateResponse, any>>;
16583
+ directoriesCreate: (data: DirectoriesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCreateResponse, any, {}>>;
15848
16584
  /**
15849
16585
  * @description Delete the specified directory.
15850
16586
  *
@@ -15854,7 +16590,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15854
16590
  * @request POST:/directories.delete
15855
16591
  * @secure
15856
16592
  */
15857
- directoriesDelete: (data: DirectoriesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
16593
+ directoriesDelete: (data: DirectoriesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
15858
16594
  /**
15859
16595
  * @description Gets the specified directory.
15860
16596
  *
@@ -15864,13 +16600,13 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15864
16600
  * @request GET:/directories.get
15865
16601
  * @secure
15866
16602
  */
15867
- directoriesGet: (query: {
16603
+ directoriesGet: (query?: {
15868
16604
  /**
15869
16605
  * The ID of the requested directory.
15870
16606
  * @format id
15871
16607
  */
15872
- id: string;
15873
- }, params?: RequestParams) => Promise<AxiosResponse<DirectoriesGetResponse, any>>;
16608
+ id?: string;
16609
+ }, params?: RequestParams) => Promise<AxiosResponse<DirectoriesGetResponse, any, {}>>;
15874
16610
  /**
15875
16611
  * @description Gets the specified directory.
15876
16612
  *
@@ -15880,7 +16616,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15880
16616
  * @request POST:/directories.get
15881
16617
  * @secure
15882
16618
  */
15883
- directoriesGetPost: (data: DirectoriesGetRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesGetResponse, any>>;
16619
+ directoriesGetPost: (data: DirectoriesGetRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesGetResponse, any, {}>>;
15884
16620
  /**
15885
16621
  * @description Lists directories matching the request.
15886
16622
  *
@@ -15917,7 +16653,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15917
16653
  * @example ["DEVU-12345"]
15918
16654
  */
15919
16655
  modified_by?: string[];
15920
- }, params?: RequestParams) => Promise<AxiosResponse<DirectoriesListResponse, any>>;
16656
+ }, params?: RequestParams) => Promise<AxiosResponse<DirectoriesListResponse, any, {}>>;
15921
16657
  /**
15922
16658
  * @description Lists directories matching the request.
15923
16659
  *
@@ -15927,7 +16663,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15927
16663
  * @request POST:/directories.list
15928
16664
  * @secure
15929
16665
  */
15930
- directoriesListPost: (data: DirectoriesListRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesListResponse, any>>;
16666
+ directoriesListPost: (data: DirectoriesListRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesListResponse, any, {}>>;
15931
16667
  /**
15932
16668
  * @description Updates the specified directory.
15933
16669
  *
@@ -15937,7 +16673,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15937
16673
  * @request POST:/directories.update
15938
16674
  * @secure
15939
16675
  */
15940
- directoriesUpdate: (data: DirectoriesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesUpdateResponse, any>>;
16676
+ directoriesUpdate: (data: DirectoriesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesUpdateResponse, any, {}>>;
15941
16677
  /**
15942
16678
  * @description Creates a new group. A group is a collection of users.
15943
16679
  *
@@ -15947,7 +16683,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15947
16683
  * @request POST:/groups.create
15948
16684
  * @secure
15949
16685
  */
15950
- groupsCreate: (data: GroupsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsCreateResponse, any>>;
16686
+ groupsCreate: (data: GroupsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsCreateResponse, any, {}>>;
15951
16687
  /**
15952
16688
  * @description Gets the requested group.
15953
16689
  *
@@ -15963,7 +16699,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15963
16699
  * @format id
15964
16700
  */
15965
16701
  id: string;
15966
- }, params?: RequestParams) => Promise<AxiosResponse<GroupsGetResponse, any>>;
16702
+ }, params?: RequestParams) => Promise<AxiosResponse<GroupsGetResponse, any, {}>>;
15967
16703
  /**
15968
16704
  * @description Gets the requested group.
15969
16705
  *
@@ -15973,7 +16709,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
15973
16709
  * @request POST:/groups.get
15974
16710
  * @secure
15975
16711
  */
15976
- groupsGetPost: (data: GroupsGetRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsGetResponse, any>>;
16712
+ groupsGetPost: (data: GroupsGetRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsGetResponse, any, {}>>;
15977
16713
  /**
15978
16714
  * @description Lists the available groups.
15979
16715
  *
@@ -16030,7 +16766,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16030
16766
  'sync_metadata.last_sync_out.sync_unit'?: string[];
16031
16767
  /** Filters for issues synced from this specific origin system. */
16032
16768
  'sync_metadata.origin_system'?: string[];
16033
- }, params?: RequestParams) => Promise<AxiosResponse<GroupsListResponse, any>>;
16769
+ }, params?: RequestParams) => Promise<AxiosResponse<GroupsListResponse, any, {}>>;
16034
16770
  /**
16035
16771
  * @description Lists the available groups.
16036
16772
  *
@@ -16040,7 +16776,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16040
16776
  * @request POST:/groups.list
16041
16777
  * @secure
16042
16778
  */
16043
- groupsListPost: (data: GroupsListRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsListResponse, any>>;
16779
+ groupsListPost: (data: GroupsListRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsListResponse, any, {}>>;
16044
16780
  /**
16045
16781
  * @description Adds a member to a group.
16046
16782
  *
@@ -16050,7 +16786,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16050
16786
  * @request POST:/groups.members.add
16051
16787
  * @secure
16052
16788
  */
16053
- groupMembersAdd: (data: GroupMembersAddRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
16789
+ groupMembersAdd: (data: GroupMembersAddRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
16054
16790
  /**
16055
16791
  * @description Lists the members in a group.
16056
16792
  *
@@ -16083,7 +16819,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16083
16819
  * used.
16084
16820
  */
16085
16821
  mode?: ListMode;
16086
- }, params?: RequestParams) => Promise<AxiosResponse<GroupMembersListResponse, any>>;
16822
+ }, params?: RequestParams) => Promise<AxiosResponse<GroupMembersListResponse, any, {}>>;
16087
16823
  /**
16088
16824
  * @description Lists the members in a group.
16089
16825
  *
@@ -16093,7 +16829,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16093
16829
  * @request POST:/groups.members.list
16094
16830
  * @secure
16095
16831
  */
16096
- groupMembersListPost: (data: GroupMembersListRequest, params?: RequestParams) => Promise<AxiosResponse<GroupMembersListResponse, any>>;
16832
+ groupMembersListPost: (data: GroupMembersListRequest, params?: RequestParams) => Promise<AxiosResponse<GroupMembersListResponse, any, {}>>;
16097
16833
  /**
16098
16834
  * @description Removes a member from a group.
16099
16835
  *
@@ -16103,7 +16839,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16103
16839
  * @request POST:/groups.members.remove
16104
16840
  * @secure
16105
16841
  */
16106
- groupMembersRemove: (data: GroupMembersRemoveRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
16842
+ groupMembersRemove: (data: GroupMembersRemoveRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
16107
16843
  /**
16108
16844
  * @description Updates the requested group.
16109
16845
  *
@@ -16113,7 +16849,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16113
16849
  * @request POST:/groups.update
16114
16850
  * @secure
16115
16851
  */
16116
- groupsUpdate: (data: GroupsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsUpdateResponse, any>>;
16852
+ groupsUpdate: (data: GroupsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsUpdateResponse, any, {}>>;
16117
16853
  /**
16118
16854
  * @description OAuth2 authorization callback.
16119
16855
  *
@@ -16133,7 +16869,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16133
16869
  * @format text
16134
16870
  */
16135
16871
  state: string;
16136
- }, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
16872
+ }, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
16137
16873
  /**
16138
16874
  * @description OAuth2 authorization callback.
16139
16875
  *
@@ -16143,7 +16879,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16143
16879
  * @request POST:/keyrings.authorize
16144
16880
  * @secure
16145
16881
  */
16146
- keyringsCreateCallbackPost: (data: KeyringsCreateCallbackRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
16882
+ keyringsCreateCallbackPost: (data: KeyringsCreateCallbackRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
16147
16883
  /**
16148
16884
  * @description Creates a link between two objects to indicate a relationship.
16149
16885
  *
@@ -16153,7 +16889,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16153
16889
  * @request POST:/links.create
16154
16890
  * @secure
16155
16891
  */
16156
- linksCreate: (data: LinksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<LinksCreateResponse, any>>;
16892
+ linksCreate: (data: LinksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<LinksCreateResponse, any, {}>>;
16157
16893
  /**
16158
16894
  * @description Deletes a link.
16159
16895
  *
@@ -16163,7 +16899,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16163
16899
  * @request POST:/links.delete
16164
16900
  * @secure
16165
16901
  */
16166
- linksDelete: (data: LinksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
16902
+ linksDelete: (data: LinksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
16167
16903
  /**
16168
16904
  * @description Gets the requested link's information.
16169
16905
  *
@@ -16179,7 +16915,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16179
16915
  * @format id
16180
16916
  */
16181
16917
  id: string;
16182
- }, params?: RequestParams) => Promise<AxiosResponse<LinksGetResponse, any>>;
16918
+ }, params?: RequestParams) => Promise<AxiosResponse<LinksGetResponse, any, {}>>;
16183
16919
  /**
16184
16920
  * @description Gets the requested link's information.
16185
16921
  *
@@ -16189,7 +16925,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16189
16925
  * @request POST:/links.get
16190
16926
  * @secure
16191
16927
  */
16192
- linksGetPost: (data: LinksGetRequest, params?: RequestParams) => Promise<AxiosResponse<LinksGetResponse, any>>;
16928
+ linksGetPost: (data: LinksGetRequest, params?: RequestParams) => Promise<AxiosResponse<LinksGetResponse, any, {}>>;
16193
16929
  /**
16194
16930
  * @description Lists the available links.
16195
16931
  *
@@ -16243,7 +16979,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16243
16979
  * @deprecated
16244
16980
  */
16245
16981
  types?: LinkType[];
16246
- }, params?: RequestParams) => Promise<AxiosResponse<LinksListResponse, any>>;
16982
+ }, params?: RequestParams) => Promise<AxiosResponse<LinksListResponse, any, {}>>;
16247
16983
  /**
16248
16984
  * @description Lists the available links.
16249
16985
  *
@@ -16253,7 +16989,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16253
16989
  * @request POST:/links.list
16254
16990
  * @secure
16255
16991
  */
16256
- linksListPost: (data: LinksListRequest, params?: RequestParams) => Promise<AxiosResponse<LinksListResponse, any>>;
16992
+ linksListPost: (data: LinksListRequest, params?: RequestParams) => Promise<AxiosResponse<LinksListResponse, any, {}>>;
16257
16993
  /**
16258
16994
  * @description Replaces a link.
16259
16995
  *
@@ -16263,7 +16999,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16263
16999
  * @request POST:/links.replace
16264
17000
  * @secure
16265
17001
  */
16266
- linksReplace: (data: LinksReplaceRequest, params?: RequestParams) => Promise<AxiosResponse<LinksReplaceResponse, any>>;
17002
+ linksReplace: (data: LinksReplaceRequest, params?: RequestParams) => Promise<AxiosResponse<LinksReplaceResponse, any, {}>>;
16267
17003
  /**
16268
17004
  * @description Counts the meeting records.
16269
17005
  *
@@ -16278,6 +17014,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16278
17014
  channel?: MeetingChannel[];
16279
17015
  /** Filters for meetings created by the specified user(s). */
16280
17016
  created_by?: string[];
17017
+ /** Direction of the meetings to be fetched. */
17018
+ direction?: MeetingDirection[];
16281
17019
  /** Filters for meetings with the provided external_ref(s). */
16282
17020
  external_ref?: string[];
16283
17021
  /**
@@ -16325,7 +17063,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16325
17063
  'sync_metadata.last_sync_out.sync_unit'?: string[];
16326
17064
  /** Filters for issues synced from this specific origin system. */
16327
17065
  'sync_metadata.origin_system'?: string[];
16328
- }, params?: RequestParams) => Promise<AxiosResponse<MeetingsCountResponse, any>>;
17066
+ }, params?: RequestParams) => Promise<AxiosResponse<MeetingsCountResponse, any, {}>>;
16329
17067
  /**
16330
17068
  * @description Counts the meeting records.
16331
17069
  *
@@ -16335,7 +17073,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16335
17073
  * @request POST:/meetings.count
16336
17074
  * @secure
16337
17075
  */
16338
- meetingsCountPost: (data: MeetingsCountRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsCountResponse, any>>;
17076
+ meetingsCountPost: (data: MeetingsCountRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsCountResponse, any, {}>>;
16339
17077
  /**
16340
17078
  * @description Creates a new meeting record.
16341
17079
  *
@@ -16345,7 +17083,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16345
17083
  * @request POST:/meetings.create
16346
17084
  * @secure
16347
17085
  */
16348
- meetingsCreate: (data: MeetingsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsCreateResponse, any>>;
17086
+ meetingsCreate: (data: MeetingsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsCreateResponse, any, {}>>;
16349
17087
  /**
16350
17088
  * @description Deletes the meeting record.
16351
17089
  *
@@ -16355,7 +17093,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16355
17093
  * @request POST:/meetings.delete
16356
17094
  * @secure
16357
17095
  */
16358
- meetingsDelete: (data: MeetingsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
17096
+ meetingsDelete: (data: MeetingsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
16359
17097
  /**
16360
17098
  * @description Gets the meeting record.
16361
17099
  *
@@ -16371,7 +17109,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16371
17109
  * @format id
16372
17110
  */
16373
17111
  id: string;
16374
- }, params?: RequestParams) => Promise<AxiosResponse<MeetingsGetResponse, any>>;
17112
+ }, params?: RequestParams) => Promise<AxiosResponse<MeetingsGetResponse, any, {}>>;
16375
17113
  /**
16376
17114
  * @description Gets the meeting record.
16377
17115
  *
@@ -16381,7 +17119,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16381
17119
  * @request POST:/meetings.get
16382
17120
  * @secure
16383
17121
  */
16384
- meetingsGetPost: (data: MeetingsGetRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsGetResponse, any>>;
17122
+ meetingsGetPost: (data: MeetingsGetRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsGetResponse, any, {}>>;
16385
17123
  /**
16386
17124
  * @description Lists the meeting records.
16387
17125
  *
@@ -16402,6 +17140,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16402
17140
  * @format text
16403
17141
  */
16404
17142
  cursor?: string;
17143
+ /** Direction of the meetings to be fetched. */
17144
+ direction?: MeetingDirection[];
16405
17145
  /** Filters for meetings with the provided external_ref(s). */
16406
17146
  external_ref?: string[];
16407
17147
  /**
@@ -16461,7 +17201,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16461
17201
  'sync_metadata.last_sync_out.sync_unit'?: string[];
16462
17202
  /** Filters for issues synced from this specific origin system. */
16463
17203
  'sync_metadata.origin_system'?: string[];
16464
- }, params?: RequestParams) => Promise<AxiosResponse<MeetingsListResponse, any>>;
17204
+ }, params?: RequestParams) => Promise<AxiosResponse<MeetingsListResponse, any, {}>>;
16465
17205
  /**
16466
17206
  * @description Lists the meeting records.
16467
17207
  *
@@ -16471,7 +17211,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16471
17211
  * @request POST:/meetings.list
16472
17212
  * @secure
16473
17213
  */
16474
- meetingsListPost: (data: MeetingsListRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsListResponse, any>>;
17214
+ meetingsListPost: (data: MeetingsListRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsListResponse, any, {}>>;
16475
17215
  /**
16476
17216
  * @description Updates the meeting record.
16477
17217
  *
@@ -16481,7 +17221,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16481
17221
  * @request POST:/meetings.update
16482
17222
  * @secure
16483
17223
  */
16484
- meetingsUpdate: (data: MeetingsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsUpdateResponse, any>>;
17224
+ meetingsUpdate: (data: MeetingsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsUpdateResponse, any, {}>>;
16485
17225
  /**
16486
17226
  * @description Executes the metric action on the given object.
16487
17227
  *
@@ -16491,7 +17231,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16491
17231
  * @request POST:/metric-action.execute
16492
17232
  * @secure
16493
17233
  */
16494
- metricActionExecute: (data: MetricActionExecuteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
17234
+ metricActionExecute: (data: MetricActionExecuteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
16495
17235
  /**
16496
17236
  * @description Creates a custom metric definition
16497
17237
  *
@@ -16501,7 +17241,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16501
17241
  * @request POST:/metric-definitions.create
16502
17242
  * @secure
16503
17243
  */
16504
- metricDefinitionsCreate: (data: MetricDefinitionsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsCreateResponse, any>>;
17244
+ metricDefinitionsCreate: (data: MetricDefinitionsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsCreateResponse, any, {}>>;
16505
17245
  /**
16506
17246
  * @description Deletes a custom metric definition
16507
17247
  *
@@ -16511,7 +17251,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16511
17251
  * @request POST:/metric-definitions.delete
16512
17252
  * @secure
16513
17253
  */
16514
- metricDefinitionsDelete: (data: MetricDefinitionsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
17254
+ metricDefinitionsDelete: (data: MetricDefinitionsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
16515
17255
  /**
16516
17256
  * @description Gets a custom metric definition
16517
17257
  *
@@ -16534,7 +17274,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16534
17274
  * @maxLength 64
16535
17275
  */
16536
17276
  name?: string;
16537
- }, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsGetResponse, any>>;
17277
+ }, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsGetResponse, any, {}>>;
16538
17278
  /**
16539
17279
  * @description Gets a custom metric definition
16540
17280
  *
@@ -16544,7 +17284,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16544
17284
  * @request POST:/metric-definitions.get
16545
17285
  * @secure
16546
17286
  */
16547
- metricDefinitionsGetPost: (data: MetricDefinitionsGetRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsGetResponse, any>>;
17287
+ metricDefinitionsGetPost: (data: MetricDefinitionsGetRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsGetResponse, any, {}>>;
16548
17288
  /**
16549
17289
  * @description Lists metric definitions matching a filter.
16550
17290
  *
@@ -16584,7 +17324,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16584
17324
  status?: MetricDefinitionStatus[];
16585
17325
  /** The type of metric definitions sought. */
16586
17326
  type?: MetricDefinitionMetricType[];
16587
- }, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsListResponse, any>>;
17327
+ }, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsListResponse, any, {}>>;
16588
17328
  /**
16589
17329
  * @description Lists metric definitions matching a filter.
16590
17330
  *
@@ -16594,7 +17334,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16594
17334
  * @request POST:/metric-definitions.list
16595
17335
  * @secure
16596
17336
  */
16597
- metricDefinitionsListPost: (data: MetricDefinitionsListRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsListResponse, any>>;
17337
+ metricDefinitionsListPost: (data: MetricDefinitionsListRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsListResponse, any, {}>>;
16598
17338
  /**
16599
17339
  * @description Updates a custom metric definition
16600
17340
  *
@@ -16604,7 +17344,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16604
17344
  * @request POST:/metric-definitions.update
16605
17345
  * @secure
16606
17346
  */
16607
- metricDefinitionsUpdate: (data: MetricDefinitionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsUpdateResponse, any>>;
17347
+ metricDefinitionsUpdate: (data: MetricDefinitionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsUpdateResponse, any, {}>>;
16608
17348
  /**
16609
17349
  * @description Gets a metric tracker.
16610
17350
  *
@@ -16625,7 +17365,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16625
17365
  * @format id
16626
17366
  */
16627
17367
  object: string;
16628
- }, params?: RequestParams) => Promise<AxiosResponse<MetricTrackersGetResponse, any>>;
17368
+ }, params?: RequestParams) => Promise<AxiosResponse<MetricTrackersGetResponse, any, {}>>;
16629
17369
  /**
16630
17370
  * @description Gets a metric tracker.
16631
17371
  *
@@ -16635,7 +17375,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16635
17375
  * @request POST:/metric-trackers.get
16636
17376
  * @secure
16637
17377
  */
16638
- metricTrackersGetPost: (data: MetricTrackersGetRequest, params?: RequestParams) => Promise<AxiosResponse<MetricTrackersGetResponse, any>>;
17378
+ metricTrackersGetPost: (data: MetricTrackersGetRequest, params?: RequestParams) => Promise<AxiosResponse<MetricTrackersGetResponse, any, {}>>;
16639
17379
  /**
16640
17380
  * @description Creates an organization schedule fragment.
16641
17381
  *
@@ -16645,7 +17385,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16645
17385
  * @request POST:/org-schedule-fragments.create
16646
17386
  * @secure
16647
17387
  */
16648
- orgScheduleFragmentsCreate: (data: OrgScheduleFragmentsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsCreateResponse, any>>;
17388
+ orgScheduleFragmentsCreate: (data: OrgScheduleFragmentsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsCreateResponse, any, {}>>;
16649
17389
  /**
16650
17390
  * @description Gets an organization schedule fragment.
16651
17391
  *
@@ -16661,7 +17401,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16661
17401
  * @format id
16662
17402
  */
16663
17403
  id: string;
16664
- }, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsGetResponse, any>>;
17404
+ }, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsGetResponse, any, {}>>;
16665
17405
  /**
16666
17406
  * @description Gets an organization schedule fragment.
16667
17407
  *
@@ -16671,7 +17411,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16671
17411
  * @request POST:/org-schedule-fragments.get
16672
17412
  * @secure
16673
17413
  */
16674
- orgScheduleFragmentsGetPost: (data: OrgScheduleFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsGetResponse, any>>;
17414
+ orgScheduleFragmentsGetPost: (data: OrgScheduleFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsGetResponse, any, {}>>;
16675
17415
  /**
16676
17416
  * @description Changes stage of an organization schedule fragment.
16677
17417
  *
@@ -16681,7 +17421,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16681
17421
  * @request POST:/org-schedule-fragments.transition
16682
17422
  * @secure
16683
17423
  */
16684
- orgScheduleFragmentsTransition: (data: OrgScheduleFragmentsTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsTransitionResponse, any>>;
17424
+ orgScheduleFragmentsTransition: (data: OrgScheduleFragmentsTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsTransitionResponse, any, {}>>;
16685
17425
  /**
16686
17426
  * @description Creates an organization schedule with a default weekly organization schedule and a list of organization schedule fragments.
16687
17427
  *
@@ -16691,7 +17431,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16691
17431
  * @request POST:/org-schedules.create
16692
17432
  * @secure
16693
17433
  */
16694
- orgSchedulesCreate: (data: OrgSchedulesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesCreateResponse, any>>;
17434
+ orgSchedulesCreate: (data: OrgSchedulesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesCreateResponse, any, {}>>;
16695
17435
  /**
16696
17436
  * @description Evaluates an organization's schedule at specified instants.
16697
17437
  *
@@ -16713,7 +17453,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16713
17453
  * @example ["2023-01-01T12:00:00.000Z"]
16714
17454
  */
16715
17455
  instants: string[];
16716
- }, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesEvaluateResponse, any>>;
17456
+ }, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesEvaluateResponse, any, {}>>;
16717
17457
  /**
16718
17458
  * @description Evaluates an organization's schedule at specified instants.
16719
17459
  *
@@ -16723,7 +17463,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16723
17463
  * @request POST:/org-schedules.evaluate
16724
17464
  * @secure
16725
17465
  */
16726
- orgSchedulesEvaluatePost: (data: OrgSchedulesEvaluateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesEvaluateResponse, any>>;
17466
+ orgSchedulesEvaluatePost: (data: OrgSchedulesEvaluateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesEvaluateResponse, any, {}>>;
16727
17467
  /**
16728
17468
  * @description Gets an organization schedule.
16729
17469
  *
@@ -16739,7 +17479,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16739
17479
  * @format id
16740
17480
  */
16741
17481
  id: string;
16742
- }, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesGetResponse, any>>;
17482
+ }, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesGetResponse, any, {}>>;
16743
17483
  /**
16744
17484
  * @description Gets an organization schedule.
16745
17485
  *
@@ -16749,7 +17489,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16749
17489
  * @request POST:/org-schedules.get
16750
17490
  * @secure
16751
17491
  */
16752
- orgSchedulesGetPost: (data: OrgSchedulesGetRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesGetResponse, any>>;
17492
+ orgSchedulesGetPost: (data: OrgSchedulesGetRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesGetResponse, any, {}>>;
16753
17493
  /**
16754
17494
  * @description Gets list of organization schedules.
16755
17495
  *
@@ -16781,7 +17521,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16781
17521
  mode?: ListMode;
16782
17522
  /** The organization schedule statuses the filter matches. */
16783
17523
  status?: OrgScheduleStatus[];
16784
- }, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesListResponse, any>>;
17524
+ }, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesListResponse, any, {}>>;
16785
17525
  /**
16786
17526
  * @description Gets list of organization schedules.
16787
17527
  *
@@ -16791,7 +17531,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16791
17531
  * @request POST:/org-schedules.list
16792
17532
  * @secure
16793
17533
  */
16794
- orgSchedulesListPost: (data: OrgSchedulesListRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesListResponse, any>>;
17534
+ orgSchedulesListPost: (data: OrgSchedulesListRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesListResponse, any, {}>>;
16795
17535
  /**
16796
17536
  * @description Sets next organization schedule fragment which must begin the day the last existing fragment ends.
16797
17537
  *
@@ -16801,7 +17541,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16801
17541
  * @request POST:/org-schedules.set-future
16802
17542
  * @secure
16803
17543
  */
16804
- orgSchedulesSetFuture: (data: OrgSchedulesSetFutureRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesSetFutureResponse, any>>;
17544
+ orgSchedulesSetFuture: (data: OrgSchedulesSetFutureRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesSetFutureResponse, any, {}>>;
16805
17545
  /**
16806
17546
  * @description Publishes or archives an organization schedule.
16807
17547
  *
@@ -16811,7 +17551,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16811
17551
  * @request POST:/org-schedules.transition
16812
17552
  * @secure
16813
17553
  */
16814
- orgSchedulesTransition: (data: OrgSchedulesTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesTransitionResponse, any>>;
17554
+ orgSchedulesTransition: (data: OrgSchedulesTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesTransitionResponse, any, {}>>;
16815
17555
  /**
16816
17556
  * @description Updates an organization schedule.
16817
17557
  *
@@ -16821,7 +17561,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16821
17561
  * @request POST:/org-schedules.update
16822
17562
  * @secure
16823
17563
  */
16824
- orgSchedulesUpdate: (data: OrgSchedulesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesUpdateResponse, any>>;
17564
+ orgSchedulesUpdate: (data: OrgSchedulesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesUpdateResponse, any, {}>>;
16825
17565
  /**
16826
17566
  * @description Creates new [part](https://devrev.ai/docs/product/parts).
16827
17567
  *
@@ -16831,7 +17571,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16831
17571
  * @request POST:/parts.create
16832
17572
  * @secure
16833
17573
  */
16834
- partsCreate: (data: PartsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<PartsCreateResponse, any>>;
17574
+ partsCreate: (data: PartsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<PartsCreateResponse, any, {}>>;
16835
17575
  /**
16836
17576
  * @description Deletes a [part](https://devrev.ai/docs/product/parts).
16837
17577
  *
@@ -16841,7 +17581,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16841
17581
  * @request POST:/parts.delete
16842
17582
  * @secure
16843
17583
  */
16844
- partsDelete: (data: PartsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
17584
+ partsDelete: (data: PartsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
16845
17585
  /**
16846
17586
  * @description Gets a [part's](https://devrev.ai/docs/product/parts) information.
16847
17587
  *
@@ -16858,7 +17598,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16858
17598
  * @example "PROD-12345"
16859
17599
  */
16860
17600
  id: string;
16861
- }, params?: RequestParams) => Promise<AxiosResponse<PartsGetResponse, any>>;
17601
+ }, params?: RequestParams) => Promise<AxiosResponse<PartsGetResponse, any, {}>>;
16862
17602
  /**
16863
17603
  * @description Gets a [part's](https://devrev.ai/docs/product/parts) information.
16864
17604
  *
@@ -16868,7 +17608,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16868
17608
  * @request POST:/parts.get
16869
17609
  * @secure
16870
17610
  */
16871
- partsGetPost: (data: PartsGetRequest, params?: RequestParams) => Promise<AxiosResponse<PartsGetResponse, any>>;
17611
+ partsGetPost: (data: PartsGetRequest, params?: RequestParams) => Promise<AxiosResponse<PartsGetResponse, any, {}>>;
16872
17612
  /**
16873
17613
  * @description Lists a collection of [parts](https://devrev.ai/docs/product/parts).
16874
17614
  *
@@ -16934,7 +17674,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16934
17674
  tags?: string[];
16935
17675
  /** Filters for parts of the provided type(s). */
16936
17676
  type?: PartType[];
16937
- }, params?: RequestParams) => Promise<AxiosResponse<PartsListResponse, any>>;
17677
+ }, params?: RequestParams) => Promise<AxiosResponse<PartsListResponse, any, {}>>;
16938
17678
  /**
16939
17679
  * @description Lists a collection of [parts](https://devrev.ai/docs/product/parts).
16940
17680
  *
@@ -16944,7 +17684,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16944
17684
  * @request POST:/parts.list
16945
17685
  * @secure
16946
17686
  */
16947
- partsListPost: (data: PartsListRequest, params?: RequestParams) => Promise<AxiosResponse<PartsListResponse, any>>;
17687
+ partsListPost: (data: PartsListRequest, params?: RequestParams) => Promise<AxiosResponse<PartsListResponse, any, {}>>;
16948
17688
  /**
16949
17689
  * @description Updates a [part's](https://devrev.ai/docs/product/parts) information.
16950
17690
  *
@@ -16954,7 +17694,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16954
17694
  * @request POST:/parts.update
16955
17695
  * @secure
16956
17696
  */
16957
- partsUpdate: (data: PartsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<PartsUpdateResponse, any>>;
17697
+ partsUpdate: (data: PartsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<PartsUpdateResponse, any, {}>>;
16958
17698
  /**
16959
17699
  * @description Lists the reactors for an object.
16960
17700
  *
@@ -16988,7 +17728,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16988
17728
  * @format int32
16989
17729
  */
16990
17730
  limit?: number;
16991
- }, params?: RequestParams) => Promise<AxiosResponse<ReactionsListResponse, any>>;
17731
+ }, params?: RequestParams) => Promise<AxiosResponse<ReactionsListResponse, any, {}>>;
16992
17732
  /**
16993
17733
  * @description Lists the reactors for an object.
16994
17734
  *
@@ -16998,7 +17738,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
16998
17738
  * @request POST:/reactions.list
16999
17739
  * @secure
17000
17740
  */
17001
- reactionsListPost: (data: ReactionsListRequest, params?: RequestParams) => Promise<AxiosResponse<ReactionsListResponse, any>>;
17741
+ reactionsListPost: (data: ReactionsListRequest, params?: RequestParams) => Promise<AxiosResponse<ReactionsListResponse, any, {}>>;
17002
17742
  /**
17003
17743
  * @description Updates a reaction for an object.
17004
17744
  *
@@ -17008,7 +17748,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17008
17748
  * @request POST:/reactions.update
17009
17749
  * @secure
17010
17750
  */
17011
- reactionsUpdate: (data: ReactionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
17751
+ reactionsUpdate: (data: ReactionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
17012
17752
  /**
17013
17753
  * @description Creates a Rev organization in the authenticated user's Dev organization.
17014
17754
  *
@@ -17018,7 +17758,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17018
17758
  * @request POST:/rev-orgs.create
17019
17759
  * @secure
17020
17760
  */
17021
- revOrgsCreate: (data: RevOrgsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsCreateResponse, any>>;
17761
+ revOrgsCreate: (data: RevOrgsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsCreateResponse, any, {}>>;
17022
17762
  /**
17023
17763
  * @description Deletes the Rev organization.
17024
17764
  *
@@ -17028,7 +17768,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17028
17768
  * @request POST:/rev-orgs.delete
17029
17769
  * @secure
17030
17770
  */
17031
- revOrgsDelete: (data: RevOrgsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
17771
+ revOrgsDelete: (data: RevOrgsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
17032
17772
  /**
17033
17773
  * @description Retrieves the Rev organization's information.
17034
17774
  *
@@ -17052,7 +17792,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17052
17792
  * @example "REV-AbCdEfGh"
17053
17793
  */
17054
17794
  id?: string;
17055
- }, params?: RequestParams) => Promise<AxiosResponse<RevOrgsGetResponse, any>>;
17795
+ }, params?: RequestParams) => Promise<AxiosResponse<RevOrgsGetResponse, any, {}>>;
17056
17796
  /**
17057
17797
  * @description Retrieves the Rev organization's information.
17058
17798
  *
@@ -17062,7 +17802,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17062
17802
  * @request POST:/rev-orgs.get
17063
17803
  * @secure
17064
17804
  */
17065
- revOrgsGetPost: (data: RevOrgsGetRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsGetResponse, any>>;
17805
+ revOrgsGetPost: (data: RevOrgsGetRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsGetResponse, any, {}>>;
17066
17806
  /**
17067
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.
17068
17808
  *
@@ -17126,7 +17866,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17126
17866
  * them.
17127
17867
  */
17128
17868
  sort_by?: string[];
17129
- }, params?: RequestParams) => Promise<AxiosResponse<RevOrgsListResponse, any>>;
17869
+ }, params?: RequestParams) => Promise<AxiosResponse<RevOrgsListResponse, any, {}>>;
17130
17870
  /**
17131
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.
17132
17872
  *
@@ -17136,7 +17876,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17136
17876
  * @request POST:/rev-orgs.list
17137
17877
  * @secure
17138
17878
  */
17139
- revOrgsListPost: (data: RevOrgsListRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsListResponse, any>>;
17879
+ revOrgsListPost: (data: RevOrgsListRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsListResponse, any, {}>>;
17140
17880
  /**
17141
17881
  * @description Updates the Rev organization's information.
17142
17882
  *
@@ -17146,7 +17886,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17146
17886
  * @request POST:/rev-orgs.update
17147
17887
  * @secure
17148
17888
  */
17149
- revOrgsUpdate: (data: RevOrgsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsUpdateResponse, any>>;
17889
+ revOrgsUpdate: (data: RevOrgsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsUpdateResponse, any, {}>>;
17150
17890
  /**
17151
17891
  * @description Creates a Rev user for a Rev organization. Rev user can be a customer or a lead of an organization.
17152
17892
  *
@@ -17156,7 +17896,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17156
17896
  * @request POST:/rev-users.create
17157
17897
  * @secure
17158
17898
  */
17159
- revUsersCreate: (data: RevUsersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersCreateResponse, any>>;
17899
+ revUsersCreate: (data: RevUsersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersCreateResponse, any, {}>>;
17160
17900
  /**
17161
17901
  * @description Deletes a Rev user.
17162
17902
  *
@@ -17166,7 +17906,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17166
17906
  * @request POST:/rev-users.delete
17167
17907
  * @secure
17168
17908
  */
17169
- revUsersDelete: (data: RevUsersDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
17909
+ revUsersDelete: (data: RevUsersDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
17170
17910
  /**
17171
17911
  * @description Returns the Rev user of a Rev organization by its ID.
17172
17912
  *
@@ -17182,7 +17922,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17182
17922
  * @format id
17183
17923
  */
17184
17924
  id: string;
17185
- }, params?: RequestParams) => Promise<AxiosResponse<RevUsersGetResponse, any>>;
17925
+ }, params?: RequestParams) => Promise<AxiosResponse<RevUsersGetResponse, any, {}>>;
17186
17926
  /**
17187
17927
  * @description Returns the Rev user of a Rev organization by its ID.
17188
17928
  *
@@ -17192,7 +17932,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17192
17932
  * @request POST:/rev-users.get
17193
17933
  * @secure
17194
17934
  */
17195
- revUsersGetPost: (data: RevUsersGetRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersGetResponse, any>>;
17935
+ revUsersGetPost: (data: RevUsersGetRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersGetResponse, any, {}>>;
17196
17936
  /**
17197
17937
  * @description Returns a list of all Rev Users belonging to the authenticated user's Dev organization.
17198
17938
  *
@@ -17267,7 +18007,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17267
18007
  rev_org?: string[];
17268
18008
  /** Fields to sort the Rev users by and the direction to sort them. */
17269
18009
  sort_by?: string[];
17270
- }, params?: RequestParams) => Promise<AxiosResponse<RevUsersListResponse, any>>;
18010
+ }, params?: RequestParams) => Promise<AxiosResponse<RevUsersListResponse, any, {}>>;
17271
18011
  /**
17272
18012
  * @description Returns a list of all Rev Users belonging to the authenticated user's Dev organization.
17273
18013
  *
@@ -17277,7 +18017,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17277
18017
  * @request POST:/rev-users.list
17278
18018
  * @secure
17279
18019
  */
17280
- revUsersListPost: (data: RevUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersListResponse, any>>;
18020
+ revUsersListPost: (data: RevUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersListResponse, any, {}>>;
17281
18021
  /**
17282
18022
  * @description Merges the secondary Rev user into the primary Rev user.
17283
18023
  *
@@ -17287,7 +18027,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17287
18027
  * @request POST:/rev-users.merge
17288
18028
  * @secure
17289
18029
  */
17290
- revUsersMerge: (data: RevUsersMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
18030
+ revUsersMerge: (data: RevUsersMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
17291
18031
  /**
17292
18032
  * @description Scans through all Rev users.
17293
18033
  *
@@ -17350,7 +18090,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17350
18090
  * @example ["REV-AbCdEfGh"]
17351
18091
  */
17352
18092
  rev_org?: string[];
17353
- }, params?: RequestParams) => Promise<AxiosResponse<RevUsersScanResponse, any>>;
18093
+ }, params?: RequestParams) => Promise<AxiosResponse<RevUsersScanResponse, any, {}>>;
17354
18094
  /**
17355
18095
  * @description Scans through all Rev users.
17356
18096
  *
@@ -17360,7 +18100,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17360
18100
  * @request POST:/rev-users.scan
17361
18101
  * @secure
17362
18102
  */
17363
- revUsersScanPost: (data: RevUsersScanRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersScanResponse, any>>;
18103
+ revUsersScanPost: (data: RevUsersScanRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersScanResponse, any, {}>>;
17364
18104
  /**
17365
18105
  * @description Updates a Rev user.
17366
18106
  *
@@ -17370,7 +18110,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17370
18110
  * @request POST:/rev-users.update
17371
18111
  * @secure
17372
18112
  */
17373
- revUsersUpdate: (data: RevUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersUpdateResponse, any>>;
18113
+ revUsersUpdate: (data: RevUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersUpdateResponse, any, {}>>;
17374
18114
  /**
17375
18115
  * @description Gets the aggregated schema.
17376
18116
  *
@@ -17403,7 +18143,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17403
18143
  * @format id
17404
18144
  */
17405
18145
  stock_schema_fragment?: string;
17406
- }, params?: RequestParams) => Promise<AxiosResponse<AggregatedSchemaGetResponse, any>>;
18146
+ }, params?: RequestParams) => Promise<AxiosResponse<AggregatedSchemaGetResponse, any, {}>>;
17407
18147
  /**
17408
18148
  * @description Gets the aggregated schema.
17409
18149
  *
@@ -17413,7 +18153,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17413
18153
  * @request POST:/schemas.aggregated.get
17414
18154
  * @secure
17415
18155
  */
17416
- aggregatedSchemaGetPost: (data: AggregatedSchemaGetRequest, params?: RequestParams) => Promise<AxiosResponse<AggregatedSchemaGetResponse, any>>;
18156
+ aggregatedSchemaGetPost: (data: AggregatedSchemaGetRequest, params?: RequestParams) => Promise<AxiosResponse<AggregatedSchemaGetResponse, any, {}>>;
17417
18157
  /**
17418
18158
  * @description Gets a custom schema fragment.
17419
18159
  *
@@ -17429,7 +18169,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17429
18169
  * @format id
17430
18170
  */
17431
18171
  id: string;
17432
- }, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsGetResponse, any>>;
18172
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsGetResponse, any, {}>>;
17433
18173
  /**
17434
18174
  * @description Gets a custom schema fragment.
17435
18175
  *
@@ -17439,7 +18179,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17439
18179
  * @request POST:/schemas.custom.get
17440
18180
  * @secure
17441
18181
  */
17442
- customSchemaFragmentsGetPost: (data: CustomSchemaFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsGetResponse, any>>;
18182
+ customSchemaFragmentsGetPost: (data: CustomSchemaFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsGetResponse, any, {}>>;
17443
18183
  /**
17444
18184
  * @description Lists custom schema fragments.
17445
18185
  *
@@ -17490,7 +18230,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17490
18230
  subtype?: string[];
17491
18231
  /** Filters for custom schema fragment of the provided types. */
17492
18232
  types?: CustomSchemaFragmentType[];
17493
- }, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsListResponse, any>>;
18233
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsListResponse, any, {}>>;
17494
18234
  /**
17495
18235
  * @description Lists custom schema fragments.
17496
18236
  *
@@ -17500,7 +18240,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17500
18240
  * @request POST:/schemas.custom.list
17501
18241
  * @secure
17502
18242
  */
17503
- customSchemaFragmentsListPost: (data: CustomSchemaFragmentsListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsListResponse, any>>;
18243
+ customSchemaFragmentsListPost: (data: CustomSchemaFragmentsListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsListResponse, any, {}>>;
17504
18244
  /**
17505
18245
  * @description Creates or updates a custom schema fragment.
17506
18246
  *
@@ -17510,7 +18250,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17510
18250
  * @request POST:/schemas.custom.set
17511
18251
  * @secure
17512
18252
  */
17513
- customSchemaFragmentsSet: (data: CustomSchemaFragmentsSetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsSetResponse, any>>;
18253
+ customSchemaFragmentsSet: (data: CustomSchemaFragmentsSetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsSetResponse, any, {}>>;
17514
18254
  /**
17515
18255
  * @description Gets a stock schema fragment.
17516
18256
  *
@@ -17531,7 +18271,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17531
18271
  * @format text
17532
18272
  */
17533
18273
  leaf_type?: string;
17534
- }, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsGetResponse, any>>;
18274
+ }, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsGetResponse, any, {}>>;
17535
18275
  /**
17536
18276
  * @description Gets a stock schema fragment.
17537
18277
  *
@@ -17541,7 +18281,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17541
18281
  * @request POST:/schemas.stock.get
17542
18282
  * @secure
17543
18283
  */
17544
- stockSchemaFragmentsGetPost: (data: StockSchemaFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsGetResponse, any>>;
18284
+ stockSchemaFragmentsGetPost: (data: StockSchemaFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsGetResponse, any, {}>>;
17545
18285
  /**
17546
18286
  * @description Lists stock schema fragments.
17547
18287
  *
@@ -17582,7 +18322,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17582
18322
  prune?: StockSchemaFragmentsListRequestPrune[];
17583
18323
  /** The list of fields to sort the items by and how to sort them. */
17584
18324
  sort_by?: string[];
17585
- }, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsListResponse, any>>;
18325
+ }, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsListResponse, any, {}>>;
17586
18326
  /**
17587
18327
  * @description Lists stock schema fragments.
17588
18328
  *
@@ -17592,7 +18332,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17592
18332
  * @request POST:/schemas.stock.list
17593
18333
  * @secure
17594
18334
  */
17595
- stockSchemaFragmentsListPost: (data: StockSchemaFragmentsListRequest, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsListResponse, any>>;
18335
+ stockSchemaFragmentsListPost: (data: StockSchemaFragmentsListRequest, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsListResponse, any, {}>>;
17596
18336
  /**
17597
18337
  * @description Gets the new fragment IDs and fields resulting from changing a subtype.
17598
18338
  *
@@ -17602,7 +18342,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17602
18342
  * @request POST:/schemas.subtypes.prepare-update
17603
18343
  * @secure
17604
18344
  */
17605
- schemasSubtypePrepareUpdateGet: (data: SchemasSubtypePrepareUpdateGetRequest, params?: RequestParams) => Promise<AxiosResponse<SchemasSubtypePrepareUpdateGetResponse, any>>;
18345
+ schemasSubtypePrepareUpdateGet: (data: SchemasSubtypePrepareUpdateGetRequest, params?: RequestParams) => Promise<AxiosResponse<SchemasSubtypePrepareUpdateGetResponse, any, {}>>;
17606
18346
  /**
17607
18347
  * @description Creates a service account.
17608
18348
  *
@@ -17612,7 +18352,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17612
18352
  * @request POST:/service-accounts.create
17613
18353
  * @secure
17614
18354
  */
17615
- serviceAccountsCreate: (data: ServiceAccountsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsCreateResponse, any>>;
18355
+ serviceAccountsCreate: (data: ServiceAccountsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsCreateResponse, any, {}>>;
17616
18356
  /**
17617
18357
  * @description Gets a service account.
17618
18358
  *
@@ -17628,7 +18368,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17628
18368
  * @format id
17629
18369
  */
17630
18370
  id: string;
17631
- }, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsGetResponse, any>>;
18371
+ }, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsGetResponse, any, {}>>;
17632
18372
  /**
17633
18373
  * @description Gets a service account.
17634
18374
  *
@@ -17638,7 +18378,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17638
18378
  * @request POST:/service-accounts.get
17639
18379
  * @secure
17640
18380
  */
17641
- serviceAccountsGetPost: (data: ServiceAccountsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsGetResponse, any>>;
18381
+ serviceAccountsGetPost: (data: ServiceAccountsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsGetResponse, any, {}>>;
17642
18382
  /**
17643
18383
  * @description Gets an SLA tracker.
17644
18384
  *
@@ -17654,7 +18394,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17654
18394
  * @format id
17655
18395
  */
17656
18396
  id: string;
17657
- }, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersGetResponse, any>>;
18397
+ }, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersGetResponse, any, {}>>;
17658
18398
  /**
17659
18399
  * @description Gets an SLA tracker.
17660
18400
  *
@@ -17664,7 +18404,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17664
18404
  * @request POST:/sla-trackers.get
17665
18405
  * @secure
17666
18406
  */
17667
- slaTrackersGetPost: (data: SlaTrackersGetRequest, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersGetResponse, any>>;
18407
+ slaTrackersGetPost: (data: SlaTrackersGetRequest, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersGetResponse, any, {}>>;
17668
18408
  /**
17669
18409
  * @description Lists SLA trackers matching a filter.
17670
18410
  *
@@ -17723,7 +18463,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17723
18463
  stage?: string[];
17724
18464
  /** The SLA tracker statuses the filter matches. */
17725
18465
  status?: string[];
17726
- }, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersListResponse, any>>;
18466
+ }, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersListResponse, any, {}>>;
17727
18467
  /**
17728
18468
  * @description Lists SLA trackers matching a filter.
17729
18469
  *
@@ -17733,7 +18473,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17733
18473
  * @request POST:/sla-trackers.list
17734
18474
  * @secure
17735
18475
  */
17736
- slaTrackersListPost: (data: SlaTrackersListRequest, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersListResponse, any>>;
18476
+ slaTrackersListPost: (data: SlaTrackersListRequest, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersListResponse, any, {}>>;
17737
18477
  /**
17738
18478
  * @description Assigns the SLA to a set of Rev organizations.
17739
18479
  *
@@ -17743,7 +18483,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17743
18483
  * @request POST:/slas.assign
17744
18484
  * @secure
17745
18485
  */
17746
- slasAssign: (data: SlasAssignRequest, params?: RequestParams) => Promise<AxiosResponse<SlasAssignResponse, any>>;
18486
+ slasAssign: (data: SlasAssignRequest, params?: RequestParams) => Promise<AxiosResponse<SlasAssignResponse, any, {}>>;
17747
18487
  /**
17748
18488
  * @description Creates an SLA in draft status.
17749
18489
  *
@@ -17753,7 +18493,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17753
18493
  * @request POST:/slas.create
17754
18494
  * @secure
17755
18495
  */
17756
- slasCreate: (data: SlasCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SlasCreateResponse, any>>;
18496
+ slasCreate: (data: SlasCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SlasCreateResponse, any, {}>>;
17757
18497
  /**
17758
18498
  * @description Gets an SLA.
17759
18499
  *
@@ -17769,7 +18509,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17769
18509
  * @format id
17770
18510
  */
17771
18511
  id: string;
17772
- }, params?: RequestParams) => Promise<AxiosResponse<SlasGetResponse, any>>;
18512
+ }, params?: RequestParams) => Promise<AxiosResponse<SlasGetResponse, any, {}>>;
17773
18513
  /**
17774
18514
  * @description Gets an SLA.
17775
18515
  *
@@ -17779,7 +18519,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17779
18519
  * @request POST:/slas.get
17780
18520
  * @secure
17781
18521
  */
17782
- slasGetPost: (data: SlasGetRequest, params?: RequestParams) => Promise<AxiosResponse<SlasGetResponse, any>>;
18522
+ slasGetPost: (data: SlasGetRequest, params?: RequestParams) => Promise<AxiosResponse<SlasGetResponse, any, {}>>;
17783
18523
  /**
17784
18524
  * @description Lists SLAs matching a filter.
17785
18525
  *
@@ -17819,7 +18559,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17819
18559
  sort_by?: string[];
17820
18560
  /** The SLA statuses the filter matches. */
17821
18561
  status?: SlaStatus[];
17822
- }, params?: RequestParams) => Promise<AxiosResponse<SlasListResponse, any>>;
18562
+ }, params?: RequestParams) => Promise<AxiosResponse<SlasListResponse, any, {}>>;
17823
18563
  /**
17824
18564
  * @description Lists SLAs matching a filter.
17825
18565
  *
@@ -17829,7 +18569,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17829
18569
  * @request POST:/slas.list
17830
18570
  * @secure
17831
18571
  */
17832
- slasListPost: (data: SlasListRequest, params?: RequestParams) => Promise<AxiosResponse<SlasListResponse, any>>;
18572
+ slasListPost: (data: SlasListRequest, params?: RequestParams) => Promise<AxiosResponse<SlasListResponse, any, {}>>;
17833
18573
  /**
17834
18574
  * @description Changes the status of an SLA.
17835
18575
  *
@@ -17839,7 +18579,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17839
18579
  * @request POST:/slas.transition
17840
18580
  * @secure
17841
18581
  */
17842
- slasTransition: (data: SlasTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<SlasTransitionResponse, any>>;
18582
+ slasTransition: (data: SlasTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<SlasTransitionResponse, any, {}>>;
17843
18583
  /**
17844
18584
  * @description Updates a draft SLA.
17845
18585
  *
@@ -17849,7 +18589,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17849
18589
  * @request POST:/slas.update
17850
18590
  * @secure
17851
18591
  */
17852
- slasUpdate: (data: SlasUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SlasUpdateResponse, any>>;
18592
+ slasUpdate: (data: SlasUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SlasUpdateResponse, any, {}>>;
17853
18593
  /**
17854
18594
  * @description Executes deferred snap-kit actions.
17855
18595
  *
@@ -17859,7 +18599,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17859
18599
  * @request POST:/snap-kit-action.execute.deferred
17860
18600
  * @secure
17861
18601
  */
17862
- snapKitActionExecuteDeferred: (data: SnapKitActionExecuteDeferredRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
18602
+ snapKitActionExecuteDeferred: (data: SnapKitActionExecuteDeferredRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
17863
18603
  /**
17864
18604
  * @description Create a snap widget object.
17865
18605
  *
@@ -17869,7 +18609,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17869
18609
  * @request POST:/snap-widgets.create
17870
18610
  * @secure
17871
18611
  */
17872
- snapWidgetsCreate: (data: SnapWidgetsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SnapWidgetsCreateResponse, any>>;
18612
+ snapWidgetsCreate: (data: SnapWidgetsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SnapWidgetsCreateResponse, any, {}>>;
17873
18613
  /**
17874
18614
  * @description Creates a stage diagram.
17875
18615
  *
@@ -17879,7 +18619,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17879
18619
  * @request POST:/stage-diagrams.create
17880
18620
  * @secure
17881
18621
  */
17882
- stageDiagramsCreate: (data: StageDiagramsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsCreateResponse, any>>;
18622
+ stageDiagramsCreate: (data: StageDiagramsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsCreateResponse, any, {}>>;
17883
18623
  /**
17884
18624
  * @description Gets a stage diagram.
17885
18625
  *
@@ -17906,7 +18646,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17906
18646
  * @format text
17907
18647
  */
17908
18648
  leaf_type?: string;
17909
- }, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsGetResponse, any>>;
18649
+ }, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsGetResponse, any, {}>>;
17910
18650
  /**
17911
18651
  * @description Gets a stage diagram.
17912
18652
  *
@@ -17916,7 +18656,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17916
18656
  * @request POST:/stage-diagrams.get
17917
18657
  * @secure
17918
18658
  */
17919
- stageDiagramsGetPost: (data: StageDiagramsGetRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsGetResponse, any>>;
18659
+ stageDiagramsGetPost: (data: StageDiagramsGetRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsGetResponse, any, {}>>;
17920
18660
  /**
17921
18661
  * @description Lists stage diagrams.
17922
18662
  *
@@ -17946,7 +18686,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17946
18686
  name?: string[];
17947
18687
  /** The list of fields to sort the items by and how to sort them. */
17948
18688
  sort_by?: string[];
17949
- }, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsListResponse, any>>;
18689
+ }, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsListResponse, any, {}>>;
17950
18690
  /**
17951
18691
  * @description Lists stage diagrams.
17952
18692
  *
@@ -17956,7 +18696,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17956
18696
  * @request POST:/stage-diagrams.list
17957
18697
  * @secure
17958
18698
  */
17959
- stageDiagramsListPost: (data: StageDiagramsListRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsListResponse, any>>;
18699
+ stageDiagramsListPost: (data: StageDiagramsListRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsListResponse, any, {}>>;
17960
18700
  /**
17961
18701
  * @description Updates a stage diagram.
17962
18702
  *
@@ -17966,7 +18706,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17966
18706
  * @request POST:/stage-diagrams.update
17967
18707
  * @secure
17968
18708
  */
17969
- stageDiagramsUpdate: (data: StageDiagramsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsUpdateResponse, any>>;
18709
+ stageDiagramsUpdate: (data: StageDiagramsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsUpdateResponse, any, {}>>;
17970
18710
  /**
17971
18711
  * @description Creates a custom stage.
17972
18712
  *
@@ -17976,7 +18716,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17976
18716
  * @request POST:/stages.custom.create
17977
18717
  * @secure
17978
18718
  */
17979
- customStagesCreate: (data: CustomStagesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesCreateResponse, any>>;
18719
+ customStagesCreate: (data: CustomStagesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesCreateResponse, any, {}>>;
17980
18720
  /**
17981
18721
  * @description Gets a custom stage.
17982
18722
  *
@@ -17992,7 +18732,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
17992
18732
  * @format id
17993
18733
  */
17994
18734
  id: string;
17995
- }, params?: RequestParams) => Promise<AxiosResponse<CustomStagesGetResponse, any>>;
18735
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomStagesGetResponse, any, {}>>;
17996
18736
  /**
17997
18737
  * @description Gets a custom stage.
17998
18738
  *
@@ -18002,7 +18742,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18002
18742
  * @request POST:/stages.custom.get
18003
18743
  * @secure
18004
18744
  */
18005
- customStagesGetPost: (data: CustomStagesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesGetResponse, any>>;
18745
+ customStagesGetPost: (data: CustomStagesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesGetResponse, any, {}>>;
18006
18746
  /**
18007
18747
  * @description Lists custom stages.
18008
18748
  *
@@ -18030,7 +18770,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18030
18770
  ordinal?: number[];
18031
18771
  /** The list of fields to sort the items by and how to sort them. */
18032
18772
  sort_by?: string[];
18033
- }, params?: RequestParams) => Promise<AxiosResponse<CustomStagesListResponse, any>>;
18773
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomStagesListResponse, any, {}>>;
18034
18774
  /**
18035
18775
  * @description Lists custom stages.
18036
18776
  *
@@ -18040,7 +18780,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18040
18780
  * @request POST:/stages.custom.list
18041
18781
  * @secure
18042
18782
  */
18043
- customStagesListPost: (data: CustomStagesListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesListResponse, any>>;
18783
+ customStagesListPost: (data: CustomStagesListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesListResponse, any, {}>>;
18044
18784
  /**
18045
18785
  * @description Updates a custom stage.
18046
18786
  *
@@ -18050,7 +18790,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18050
18790
  * @request POST:/stages.custom.update
18051
18791
  * @secure
18052
18792
  */
18053
- customStagesUpdate: (data: CustomStagesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesUpdateResponse, any>>;
18793
+ customStagesUpdate: (data: CustomStagesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesUpdateResponse, any, {}>>;
18054
18794
  /**
18055
18795
  * @description Creates a custom state.
18056
18796
  *
@@ -18060,7 +18800,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18060
18800
  * @request POST:/states.custom.create
18061
18801
  * @secure
18062
18802
  */
18063
- customStatesCreate: (data: CustomStatesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesCreateResponse, any>>;
18803
+ customStatesCreate: (data: CustomStatesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesCreateResponse, any, {}>>;
18064
18804
  /**
18065
18805
  * @description Gets a custom state.
18066
18806
  *
@@ -18076,7 +18816,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18076
18816
  * @format id
18077
18817
  */
18078
18818
  id: string;
18079
- }, params?: RequestParams) => Promise<AxiosResponse<CustomStatesGetResponse, any>>;
18819
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomStatesGetResponse, any, {}>>;
18080
18820
  /**
18081
18821
  * @description Gets a custom state.
18082
18822
  *
@@ -18086,7 +18826,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18086
18826
  * @request POST:/states.custom.get
18087
18827
  * @secure
18088
18828
  */
18089
- customStatesGetPost: (data: CustomStatesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesGetResponse, any>>;
18829
+ customStatesGetPost: (data: CustomStatesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesGetResponse, any, {}>>;
18090
18830
  /**
18091
18831
  * @description Lists custom states.
18092
18832
  *
@@ -18116,7 +18856,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18116
18856
  ordinal?: number[];
18117
18857
  /** The list of fields to sort the items by and how to sort them. */
18118
18858
  sort_by?: string[];
18119
- }, params?: RequestParams) => Promise<AxiosResponse<CustomStatesListResponse, any>>;
18859
+ }, params?: RequestParams) => Promise<AxiosResponse<CustomStatesListResponse, any, {}>>;
18120
18860
  /**
18121
18861
  * @description Lists custom states.
18122
18862
  *
@@ -18126,7 +18866,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18126
18866
  * @request POST:/states.custom.list
18127
18867
  * @secure
18128
18868
  */
18129
- customStatesListPost: (data: CustomStatesListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesListResponse, any>>;
18869
+ customStatesListPost: (data: CustomStatesListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesListResponse, any, {}>>;
18130
18870
  /**
18131
18871
  * @description Updates a custom state.
18132
18872
  *
@@ -18136,7 +18876,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18136
18876
  * @request POST:/states.custom.update
18137
18877
  * @secure
18138
18878
  */
18139
- customStatesUpdate: (data: CustomStatesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesUpdateResponse, any>>;
18879
+ customStatesUpdate: (data: CustomStatesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesUpdateResponse, any, {}>>;
18140
18880
  /**
18141
18881
  * @description Creates a schema for survey, which includes name and description of schema.
18142
18882
  *
@@ -18146,7 +18886,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18146
18886
  * @request POST:/surveys.create
18147
18887
  * @secure
18148
18888
  */
18149
- surveysCreate: (data: SurveysCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysCreateResponse, any>>;
18889
+ surveysCreate: (data: SurveysCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysCreateResponse, any, {}>>;
18150
18890
  /**
18151
18891
  * @description Deletes the specified survey.
18152
18892
  *
@@ -18156,7 +18896,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18156
18896
  * @request POST:/surveys.delete
18157
18897
  * @secure
18158
18898
  */
18159
- surveysDelete: (data: SurveysDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
18899
+ surveysDelete: (data: SurveysDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
18160
18900
  /**
18161
18901
  * @description Gets a survey given the ID.
18162
18902
  *
@@ -18172,7 +18912,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18172
18912
  * @format id
18173
18913
  */
18174
18914
  id: string;
18175
- }, params?: RequestParams) => Promise<AxiosResponse<SurveysGetResponse, any>>;
18915
+ }, params?: RequestParams) => Promise<AxiosResponse<SurveysGetResponse, any, {}>>;
18176
18916
  /**
18177
18917
  * @description Gets a survey given the ID.
18178
18918
  *
@@ -18182,7 +18922,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18182
18922
  * @request POST:/surveys.get
18183
18923
  * @secure
18184
18924
  */
18185
- surveysGetPost: (data: SurveysGetRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysGetResponse, any>>;
18925
+ surveysGetPost: (data: SurveysGetRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysGetResponse, any, {}>>;
18186
18926
  /**
18187
18927
  * @description List surveys requested by the user.
18188
18928
  *
@@ -18219,7 +18959,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18219
18959
  name?: string[];
18220
18960
  /** Fields to sort the surveys by and the direction to sort them. */
18221
18961
  sort_by?: string[];
18222
- }, params?: RequestParams) => Promise<AxiosResponse<SurveysListResponse, any>>;
18962
+ }, params?: RequestParams) => Promise<AxiosResponse<SurveysListResponse, any, {}>>;
18223
18963
  /**
18224
18964
  * @description List surveys requested by the user.
18225
18965
  *
@@ -18229,7 +18969,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18229
18969
  * @request POST:/surveys.list
18230
18970
  * @secure
18231
18971
  */
18232
- surveysListPost: (data: SurveysListRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysListResponse, any>>;
18972
+ surveysListPost: (data: SurveysListRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysListResponse, any, {}>>;
18233
18973
  /**
18234
18974
  * @description List survey responses requested by the user.
18235
18975
  *
@@ -18283,7 +19023,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18283
19023
  stages?: number[];
18284
19024
  /** Filters for survey responses for the provided survey IDs. */
18285
19025
  surveys?: string[];
18286
- }, params?: RequestParams) => Promise<AxiosResponse<SurveysResponsesListResponse, any>>;
19026
+ }, params?: RequestParams) => Promise<AxiosResponse<SurveysResponsesListResponse, any, {}>>;
18287
19027
  /**
18288
19028
  * @description List survey responses requested by the user.
18289
19029
  *
@@ -18293,7 +19033,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18293
19033
  * @request POST:/surveys.responses.list
18294
19034
  * @secure
18295
19035
  */
18296
- surveysResponsesListPost: (data: SurveysResponsesListRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysResponsesListResponse, any>>;
19036
+ surveysResponsesListPost: (data: SurveysResponsesListRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysResponsesListResponse, any, {}>>;
18297
19037
  /**
18298
19038
  * @description Updates a user's survey response for the provided dispatch ID.
18299
19039
  *
@@ -18303,7 +19043,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18303
19043
  * @request POST:/surveys.responses.update
18304
19044
  * @secure
18305
19045
  */
18306
- surveysResponsesUpdate: (data: SurveysResponsesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
19046
+ surveysResponsesUpdate: (data: SurveysResponsesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
18307
19047
  /**
18308
19048
  * @description Sends a survey on the specified channels.
18309
19049
  *
@@ -18313,7 +19053,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18313
19053
  * @request POST:/surveys.send
18314
19054
  * @secure
18315
19055
  */
18316
- surveysSend: (data: SurveysSendRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
19056
+ surveysSend: (data: SurveysSendRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
18317
19057
  /**
18318
19058
  * @description Submits a user response to a survey, which is defined by the survey ID.
18319
19059
  *
@@ -18323,7 +19063,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18323
19063
  * @request POST:/surveys.submit
18324
19064
  * @secure
18325
19065
  */
18326
- surveysSubmit: (data: SurveysSubmitRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
19066
+ surveysSubmit: (data: SurveysSubmitRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
18327
19067
  /**
18328
19068
  * @description Updates a survey's metadata.
18329
19069
  *
@@ -18333,7 +19073,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18333
19073
  * @request POST:/surveys.update
18334
19074
  * @secure
18335
19075
  */
18336
- surveysUpdate: (data: SurveysUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysUpdateResponse, any>>;
19076
+ surveysUpdate: (data: SurveysUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysUpdateResponse, any, {}>>;
18337
19077
  /**
18338
19078
  * @description Lists system users within your organization.
18339
19079
  *
@@ -18363,7 +19103,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18363
19103
  mode?: ListMode;
18364
19104
  /** Fields to sort the system users by and the direction to sort them. */
18365
19105
  sort_by?: string[];
18366
- }, params?: RequestParams) => Promise<AxiosResponse<SysUsersListResponse, any>>;
19106
+ }, params?: RequestParams) => Promise<AxiosResponse<SysUsersListResponse, any, {}>>;
18367
19107
  /**
18368
19108
  * @description Lists system users within your organization.
18369
19109
  *
@@ -18373,7 +19113,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18373
19113
  * @request POST:/sys-users.list
18374
19114
  * @secure
18375
19115
  */
18376
- sysUsersListPost: (data: SysUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<SysUsersListResponse, any>>;
19116
+ sysUsersListPost: (data: SysUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<SysUsersListResponse, any, {}>>;
18377
19117
  /**
18378
19118
  * @description Updates the system user.
18379
19119
  *
@@ -18383,7 +19123,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18383
19123
  * @request POST:/sys-users.update
18384
19124
  * @secure
18385
19125
  */
18386
- sysUsersUpdate: (data: SysUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SysUsersUpdateResponse, any>>;
19126
+ sysUsersUpdate: (data: SysUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SysUsersUpdateResponse, any, {}>>;
18387
19127
  /**
18388
19128
  * @description Creates a new tag, which is used to create associations between objects and a logical concept denoted by the tag's name.
18389
19129
  *
@@ -18393,7 +19133,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18393
19133
  * @request POST:/tags.create
18394
19134
  * @secure
18395
19135
  */
18396
- tagsCreate: (data: TagsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<TagsCreateResponse, any>>;
19136
+ tagsCreate: (data: TagsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<TagsCreateResponse, any, {}>>;
18397
19137
  /**
18398
19138
  * @description Deletes a tag.
18399
19139
  *
@@ -18403,7 +19143,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18403
19143
  * @request POST:/tags.delete
18404
19144
  * @secure
18405
19145
  */
18406
- tagsDelete: (data: TagsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
19146
+ tagsDelete: (data: TagsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
18407
19147
  /**
18408
19148
  * @description Gets a tag's information.
18409
19149
  *
@@ -18420,7 +19160,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18420
19160
  * @example "TAG-12345"
18421
19161
  */
18422
19162
  id: string;
18423
- }, params?: RequestParams) => Promise<AxiosResponse<TagsGetResponse, any>>;
19163
+ }, params?: RequestParams) => Promise<AxiosResponse<TagsGetResponse, any, {}>>;
18424
19164
  /**
18425
19165
  * @description Gets a tag's information.
18426
19166
  *
@@ -18430,7 +19170,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18430
19170
  * @request POST:/tags.get
18431
19171
  * @secure
18432
19172
  */
18433
- tagsGetPost: (data: TagsGetRequest, params?: RequestParams) => Promise<AxiosResponse<TagsGetResponse, any>>;
19173
+ tagsGetPost: (data: TagsGetRequest, params?: RequestParams) => Promise<AxiosResponse<TagsGetResponse, any, {}>>;
18434
19174
  /**
18435
19175
  * @description Lists the available tags.
18436
19176
  *
@@ -18461,7 +19201,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18461
19201
  name?: string[];
18462
19202
  /** Fields to sort tags by and the direction to sort them. */
18463
19203
  sort_by?: string[];
18464
- }, params?: RequestParams) => Promise<AxiosResponse<TagsListResponse, any>>;
19204
+ }, params?: RequestParams) => Promise<AxiosResponse<TagsListResponse, any, {}>>;
18465
19205
  /**
18466
19206
  * @description Lists the available tags.
18467
19207
  *
@@ -18471,7 +19211,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18471
19211
  * @request POST:/tags.list
18472
19212
  * @secure
18473
19213
  */
18474
- tagsListPost: (data: TagsListRequest, params?: RequestParams) => Promise<AxiosResponse<TagsListResponse, any>>;
19214
+ tagsListPost: (data: TagsListRequest, params?: RequestParams) => Promise<AxiosResponse<TagsListResponse, any, {}>>;
18475
19215
  /**
18476
19216
  * @description Updates a tag's information.
18477
19217
  *
@@ -18481,7 +19221,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18481
19221
  * @request POST:/tags.update
18482
19222
  * @secure
18483
19223
  */
18484
- tagsUpdate: (data: TagsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<TagsUpdateResponse, any>>;
19224
+ tagsUpdate: (data: TagsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<TagsUpdateResponse, any, {}>>;
18485
19225
  /**
18486
19226
  * @description Creates a new entry on an object's timeline.
18487
19227
  *
@@ -18491,7 +19231,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18491
19231
  * @request POST:/timeline-entries.create
18492
19232
  * @secure
18493
19233
  */
18494
- timelineEntriesCreate: (data: TimelineEntriesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesCreateResponse, any>>;
19234
+ timelineEntriesCreate: (data: TimelineEntriesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesCreateResponse, any, {}>>;
18495
19235
  /**
18496
19236
  * @description Deletes an entry from an object's timeline.
18497
19237
  *
@@ -18501,7 +19241,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18501
19241
  * @request POST:/timeline-entries.delete
18502
19242
  * @secure
18503
19243
  */
18504
- timelineEntriesDelete: (data: TimelineEntriesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
19244
+ timelineEntriesDelete: (data: TimelineEntriesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
18505
19245
  /**
18506
19246
  * @description Gets an entry on an object's timeline.
18507
19247
  *
@@ -18518,7 +19258,15 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18518
19258
  * @example "don:core:dvrv-us-1:devo/example:ticket/123:comment/comment-id"
18519
19259
  */
18520
19260
  id: string;
18521
- }, 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, {}>>;
18522
19270
  /**
18523
19271
  * @description Gets an entry on an object's timeline.
18524
19272
  *
@@ -18528,7 +19276,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18528
19276
  * @request POST:/timeline-entries.get
18529
19277
  * @secure
18530
19278
  */
18531
- timelineEntriesGetPost: (data: TimelineEntriesGetRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesGetResponse, any>>;
19279
+ timelineEntriesGetPost: (data: TimelineEntriesGetRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesGetResponse, any, {}>>;
18532
19280
  /**
18533
19281
  * @description Lists the timeline entries for an object.
18534
19282
  *
@@ -18545,6 +19293,24 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18545
19293
  * @example "PROD-12345"
18546
19294
  */
18547
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;
18548
19314
  /**
18549
19315
  * The cursor to resume iteration from. If not provided, then iteration
18550
19316
  * starts from the beginning.
@@ -18552,8 +19318,16 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18552
19318
  */
18553
19319
  cursor?: string;
18554
19320
  /**
18555
- * The maximum number of entries to return. If not set, then this
18556
- * 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.
18557
19331
  * @format int32
18558
19332
  */
18559
19333
  limit?: number;
@@ -18568,7 +19342,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18568
19342
  * specified will be returned.
18569
19343
  */
18570
19344
  visibility?: TimelineEntryVisibility[];
18571
- }, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesListResponse, any>>;
19345
+ }, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesListResponse, any, {}>>;
18572
19346
  /**
18573
19347
  * @description Lists the timeline entries for an object.
18574
19348
  *
@@ -18578,7 +19352,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18578
19352
  * @request POST:/timeline-entries.list
18579
19353
  * @secure
18580
19354
  */
18581
- timelineEntriesListPost: (data: TimelineEntriesListRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesListResponse, any>>;
19355
+ timelineEntriesListPost: (data: TimelineEntriesListRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesListResponse, any, {}>>;
18582
19356
  /**
18583
19357
  * @description Updates an entry on an object's timeline.
18584
19358
  *
@@ -18588,7 +19362,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18588
19362
  * @request POST:/timeline-entries.update
18589
19363
  * @secure
18590
19364
  */
18591
- timelineEntriesUpdate: (data: TimelineEntriesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesUpdateResponse, any>>;
19365
+ timelineEntriesUpdate: (data: TimelineEntriesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesUpdateResponse, any, {}>>;
18592
19366
  /**
18593
19367
  * @description Deletes the requested vista.
18594
19368
  *
@@ -18598,7 +19372,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18598
19372
  * @request POST:/vistas.delete
18599
19373
  * @secure
18600
19374
  */
18601
- vistasDelete: (data: VistasDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
19375
+ vistasDelete: (data: VistasDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
18602
19376
  /**
18603
19377
  * @description Gets the requested vistas's information.
18604
19378
  *
@@ -18615,7 +19389,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18615
19389
  * @example "VISTA-12345"
18616
19390
  */
18617
19391
  id: string;
18618
- }, params?: RequestParams) => Promise<AxiosResponse<VistasGetResponse, any>>;
19392
+ }, params?: RequestParams) => Promise<AxiosResponse<VistasGetResponse, any, {}>>;
18619
19393
  /**
18620
19394
  * @description Gets the requested vistas's information.
18621
19395
  *
@@ -18625,7 +19399,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18625
19399
  * @request POST:/vistas.get
18626
19400
  * @secure
18627
19401
  */
18628
- vistasGetPost: (data: VistasGetRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGetResponse, any>>;
19402
+ vistasGetPost: (data: VistasGetRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGetResponse, any, {}>>;
18629
19403
  /**
18630
19404
  * @description Deletes the requested vista group item
18631
19405
  *
@@ -18635,7 +19409,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18635
19409
  * @request POST:/vistas.groups.delete
18636
19410
  * @secure
18637
19411
  */
18638
- vistasGroupsDelete: (data: VistasGroupsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
19412
+ vistasGroupsDelete: (data: VistasGroupsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
18639
19413
  /**
18640
19414
  * @description Gets the requested vista group item's information.
18641
19415
  *
@@ -18651,7 +19425,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18651
19425
  * @format id
18652
19426
  */
18653
19427
  id: string;
18654
- }, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsGetResponse, any>>;
19428
+ }, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsGetResponse, any, {}>>;
18655
19429
  /**
18656
19430
  * @description Gets the requested vista group item's information.
18657
19431
  *
@@ -18661,7 +19435,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18661
19435
  * @request POST:/vistas.groups.get
18662
19436
  * @secure
18663
19437
  */
18664
- vistasGroupsGetPost: (data: VistasGroupsGetRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsGetResponse, any>>;
19438
+ vistasGroupsGetPost: (data: VistasGroupsGetRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsGetResponse, any, {}>>;
18665
19439
  /**
18666
19440
  * @description Lists the available vista group items.
18667
19441
  *
@@ -18723,7 +19497,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18723
19497
  state?: VistaGroupItemState[];
18724
19498
  /** Filters for vista group items of the specific type. */
18725
19499
  type?: GroupItemType[];
18726
- }, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsListResponse, any>>;
19500
+ }, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsListResponse, any, {}>>;
18727
19501
  /**
18728
19502
  * @description Lists the available vista group items.
18729
19503
  *
@@ -18733,7 +19507,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18733
19507
  * @request POST:/vistas.groups.list
18734
19508
  * @secure
18735
19509
  */
18736
- vistasGroupsListPost: (data: VistasGroupsListRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsListResponse, any>>;
19510
+ vistasGroupsListPost: (data: VistasGroupsListRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsListResponse, any, {}>>;
18737
19511
  /**
18738
19512
  * @description Lists the available vistas.
18739
19513
  *
@@ -18795,7 +19569,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18795
19569
  state?: VistaGroupItemState[];
18796
19570
  /** Filters for vistas of the specific type. */
18797
19571
  type?: VistaType[];
18798
- }, params?: RequestParams) => Promise<AxiosResponse<VistasListResponse, any>>;
19572
+ }, params?: RequestParams) => Promise<AxiosResponse<VistasListResponse, any, {}>>;
18799
19573
  /**
18800
19574
  * @description Lists the available vistas.
18801
19575
  *
@@ -18805,7 +19579,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18805
19579
  * @request POST:/vistas.list
18806
19580
  * @secure
18807
19581
  */
18808
- vistasListPost: (data: VistasListRequest, params?: RequestParams) => Promise<AxiosResponse<VistasListResponse, any>>;
19582
+ vistasListPost: (data: VistasListRequest, params?: RequestParams) => Promise<AxiosResponse<VistasListResponse, any, {}>>;
18809
19583
  /**
18810
19584
  * @description Change state of a web crawler job to pause or resume it back to running.
18811
19585
  *
@@ -18815,7 +19589,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18815
19589
  * @request POST:/web-crawler-jobs.control
18816
19590
  * @secure
18817
19591
  */
18818
- webCrawlerJobsControl: (data: WebCrawlerJobsControlRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsControlResponse, any>>;
19592
+ webCrawlerJobsControl: (data: WebCrawlerJobsControlRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsControlResponse, any, {}>>;
18819
19593
  /**
18820
19594
  * @description Creates a web crawler job whose objective is to crawl the provided URLs/sitemaps and generate corresponding webpages as artifacts.
18821
19595
  *
@@ -18825,7 +19599,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18825
19599
  * @request POST:/web-crawler-jobs.create
18826
19600
  * @secure
18827
19601
  */
18828
- createWebCrawlerJob: (data: WebCrawlerJobsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsCreateResponse, any>>;
19602
+ createWebCrawlerJob: (data: WebCrawlerJobsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsCreateResponse, any, {}>>;
18829
19603
  /**
18830
19604
  * @description Gets a web crawler job.
18831
19605
  *
@@ -18841,7 +19615,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18841
19615
  * @format id
18842
19616
  */
18843
19617
  id: string;
18844
- }, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsGetResponse, any>>;
19618
+ }, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsGetResponse, any, {}>>;
18845
19619
  /**
18846
19620
  * @description Gets a web crawler job.
18847
19621
  *
@@ -18851,7 +19625,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18851
19625
  * @request POST:/web-crawler-jobs.get
18852
19626
  * @secure
18853
19627
  */
18854
- getWebCrawlerJobPost: (data: WebCrawlerJobsGetRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsGetResponse, any>>;
19628
+ getWebCrawlerJobPost: (data: WebCrawlerJobsGetRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsGetResponse, any, {}>>;
18855
19629
  /**
18856
19630
  * @description Lists web crawler jobs.
18857
19631
  *
@@ -18884,7 +19658,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18884
19658
  * used.
18885
19659
  */
18886
19660
  mode?: ListMode;
18887
- }, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsListResponse, any>>;
19661
+ }, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsListResponse, any, {}>>;
18888
19662
  /**
18889
19663
  * @description Lists web crawler jobs.
18890
19664
  *
@@ -18894,7 +19668,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18894
19668
  * @request POST:/web-crawler-jobs.list
18895
19669
  * @secure
18896
19670
  */
18897
- listWebCrawlerJobsPost: (data: WebCrawlerJobsListRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsListResponse, any>>;
19671
+ listWebCrawlerJobsPost: (data: WebCrawlerJobsListRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsListResponse, any, {}>>;
18898
19672
  /**
18899
19673
  * @description Creates a new webhook target.
18900
19674
  *
@@ -18904,7 +19678,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18904
19678
  * @request POST:/webhooks.create
18905
19679
  * @secure
18906
19680
  */
18907
- webhooksCreate: (data: WebhooksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksCreateResponse, any>>;
19681
+ webhooksCreate: (data: WebhooksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksCreateResponse, any, {}>>;
18908
19682
  /**
18909
19683
  * @description Deletes the requested webhook.
18910
19684
  *
@@ -18914,7 +19688,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18914
19688
  * @request POST:/webhooks.delete
18915
19689
  * @secure
18916
19690
  */
18917
- webhooksDelete: (data: WebhooksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
19691
+ webhooksDelete: (data: WebhooksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
18918
19692
  /**
18919
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.
18920
19694
  *
@@ -18924,7 +19698,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18924
19698
  * @request POST:/webhooks.event
18925
19699
  * @secure
18926
19700
  */
18927
- webhooksEvent: (data: WebhookEventRequest, params?: RequestParams) => Promise<AxiosResponse<WebhookEventResponse, any>>;
19701
+ webhooksEvent: (data: WebhookEventRequest, params?: RequestParams) => Promise<AxiosResponse<WebhookEventResponse, any, {}>>;
18928
19702
  /**
18929
19703
  * @description Gets the requested webhook's information.
18930
19704
  *
@@ -18941,7 +19715,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18941
19715
  * @example "don:integration:dvrv-us-1:devo/example:webhook/webhook-id"
18942
19716
  */
18943
19717
  id: string;
18944
- }, params?: RequestParams) => Promise<AxiosResponse<WebhooksGetResponse, any>>;
19718
+ }, params?: RequestParams) => Promise<AxiosResponse<WebhooksGetResponse, any, {}>>;
18945
19719
  /**
18946
19720
  * @description Gets the requested webhook's information.
18947
19721
  *
@@ -18951,7 +19725,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18951
19725
  * @request POST:/webhooks.get
18952
19726
  * @secure
18953
19727
  */
18954
- webhooksGetPost: (data: WebhooksGetRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksGetResponse, any>>;
19728
+ webhooksGetPost: (data: WebhooksGetRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksGetResponse, any, {}>>;
18955
19729
  /**
18956
19730
  * @description Lists the webhooks.
18957
19731
  *
@@ -18961,7 +19735,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18961
19735
  * @request GET:/webhooks.list
18962
19736
  * @secure
18963
19737
  */
18964
- webhooksList: (params?: RequestParams) => Promise<AxiosResponse<WebhooksListResponse, any>>;
19738
+ webhooksList: (params?: RequestParams) => Promise<AxiosResponse<WebhooksListResponse, any, {}>>;
18965
19739
  /**
18966
19740
  * @description Lists the webhooks.
18967
19741
  *
@@ -18971,7 +19745,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18971
19745
  * @request POST:/webhooks.list
18972
19746
  * @secure
18973
19747
  */
18974
- webhooksListPost: (data: WebhooksListRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksListResponse, any>>;
19748
+ webhooksListPost: (data: WebhooksListRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksListResponse, any, {}>>;
18975
19749
  /**
18976
19750
  * @description Updates the requested webhook.
18977
19751
  *
@@ -18981,7 +19755,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18981
19755
  * @request POST:/webhooks.update
18982
19756
  * @secure
18983
19757
  */
18984
- webhooksUpdate: (data: WebhooksUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksUpdateResponse, any>>;
19758
+ webhooksUpdate: (data: WebhooksUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksUpdateResponse, any, {}>>;
18985
19759
  /**
18986
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.
18987
19761
  *
@@ -18991,7 +19765,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
18991
19765
  * @request POST:/works.create
18992
19766
  * @secure
18993
19767
  */
18994
- worksCreate: (data: WorksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WorksCreateResponse, any>>;
19768
+ worksCreate: (data: WorksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WorksCreateResponse, any, {}>>;
18995
19769
  /**
18996
19770
  * @description Deletes a work item.
18997
19771
  *
@@ -19001,7 +19775,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19001
19775
  * @request POST:/works.delete
19002
19776
  * @secure
19003
19777
  */
19004
- worksDelete: (data: WorksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
19778
+ worksDelete: (data: WorksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
19005
19779
  /**
19006
19780
  * @description Exports a collection of work items.
19007
19781
  *
@@ -19022,6 +19796,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19022
19796
  * @example ["DEVU-12345"]
19023
19797
  */
19024
19798
  created_by?: string[];
19799
+ /** Filters for work with any of the provided external references. */
19800
+ external_ref?: string[];
19025
19801
  /**
19026
19802
  * The number of work items to return. The default is '50', the maximum
19027
19803
  * is '5000'.
@@ -19119,9 +19895,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19119
19895
  * channels.
19120
19896
  */
19121
19897
  'ticket.source_channel_v2'?: string[];
19898
+ /** Visibility enum ID of the ticket. */
19899
+ 'ticket.visibility'?: number[];
19122
19900
  /** Filters for work of the provided types. */
19123
19901
  type?: WorkType[];
19124
- }, params?: RequestParams) => Promise<AxiosResponse<WorksExportResponse, any>>;
19902
+ }, params?: RequestParams) => Promise<AxiosResponse<WorksExportResponse, any, {}>>;
19125
19903
  /**
19126
19904
  * @description Exports a collection of work items.
19127
19905
  *
@@ -19131,7 +19909,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19131
19909
  * @request POST:/works.export
19132
19910
  * @secure
19133
19911
  */
19134
- worksExportPost: (data: WorksExportRequest, params?: RequestParams) => Promise<AxiosResponse<WorksExportResponse, any>>;
19912
+ worksExportPost: (data: WorksExportRequest, params?: RequestParams) => Promise<AxiosResponse<WorksExportResponse, any, {}>>;
19135
19913
  /**
19136
19914
  * @description Gets a work item's information.
19137
19915
  *
@@ -19148,7 +19926,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19148
19926
  * @example "ISS-12345"
19149
19927
  */
19150
19928
  id: string;
19151
- }, params?: RequestParams) => Promise<AxiosResponse<WorksGetResponse, any>>;
19929
+ }, params?: RequestParams) => Promise<AxiosResponse<WorksGetResponse, any, {}>>;
19152
19930
  /**
19153
19931
  * @description Gets a work item's information.
19154
19932
  *
@@ -19158,7 +19936,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19158
19936
  * @request POST:/works.get
19159
19937
  * @secure
19160
19938
  */
19161
- worksGetPost: (data: WorksGetRequest, params?: RequestParams) => Promise<AxiosResponse<WorksGetResponse, any>>;
19939
+ worksGetPost: (data: WorksGetRequest, params?: RequestParams) => Promise<AxiosResponse<WorksGetResponse, any, {}>>;
19162
19940
  /**
19163
19941
  * @description Lists a collection of work items.
19164
19942
  *
@@ -19185,6 +19963,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19185
19963
  * @format text
19186
19964
  */
19187
19965
  cursor?: string;
19966
+ /** Filters for work with any of the provided external references. */
19967
+ external_ref?: string[];
19188
19968
  /**
19189
19969
  * Filters for issues with any of the provided accounts.
19190
19970
  * @example ["ACC-12345"]
@@ -19288,9 +20068,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19288
20068
  * channels.
19289
20069
  */
19290
20070
  'ticket.source_channel_v2'?: string[];
20071
+ /** Visibility enum ID of the ticket. */
20072
+ 'ticket.visibility'?: number[];
19291
20073
  /** Filters for work of the provided types. */
19292
20074
  type?: WorkType[];
19293
- }, params?: RequestParams) => Promise<AxiosResponse<WorksListResponse, any>>;
20075
+ }, params?: RequestParams) => Promise<AxiosResponse<WorksListResponse, any, {}>>;
19294
20076
  /**
19295
20077
  * @description Lists a collection of work items.
19296
20078
  *
@@ -19300,7 +20082,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19300
20082
  * @request POST:/works.list
19301
20083
  * @secure
19302
20084
  */
19303
- worksListPost: (data: WorksListRequest, params?: RequestParams) => Promise<AxiosResponse<WorksListResponse, any>>;
20085
+ worksListPost: (data: WorksListRequest, params?: RequestParams) => Promise<AxiosResponse<WorksListResponse, any, {}>>;
19304
20086
  /**
19305
20087
  * @description Updates a work item's information.
19306
20088
  *
@@ -19310,5 +20092,5 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
19310
20092
  * @request POST:/works.update
19311
20093
  * @secure
19312
20094
  */
19313
- worksUpdate: (data: WorksUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<WorksUpdateResponse, any>>;
20095
+ worksUpdate: (data: WorksUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<WorksUpdateResponse, any, {}>>;
19314
20096
  }