@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.
- package/dist/auto-generated/beta/beta-devrev-sdk.d.ts +1213 -419
- package/dist/auto-generated/beta/beta-devrev-sdk.js +132 -4
- package/dist/auto-generated/public-devrev-sdk.d.ts +1093 -311
- package/dist/auto-generated/public-devrev-sdk.js +102 -3
- package/dist/tests/beta-devrev-sdk-util.test.js +12 -4
- package/dist/tests/error.test.js +7 -0
- package/package.json +2 -2
|
@@ -584,6 +584,8 @@ export declare enum AggregationDetailAggregationType {
|
|
|
584
584
|
* Stores aggregation type and dimension information.
|
|
585
585
|
*/
|
|
586
586
|
export type AggregationDetailSummary = object;
|
|
587
|
+
/** ai-agent */
|
|
588
|
+
export type AiAgent = AtomBase;
|
|
587
589
|
/**
|
|
588
590
|
* ai-agent-event
|
|
589
591
|
* An event to be processed by an AI agent.
|
|
@@ -698,7 +700,7 @@ export interface AiAgentEventInputMessage {
|
|
|
698
700
|
/**
|
|
699
701
|
* The text message of the AI agent event.
|
|
700
702
|
* @format text
|
|
701
|
-
* @maxLength
|
|
703
|
+
* @maxLength 16384
|
|
702
704
|
*/
|
|
703
705
|
message: string;
|
|
704
706
|
}
|
|
@@ -944,6 +946,12 @@ export interface ArchetypeMetricTarget {
|
|
|
944
946
|
* @format int32
|
|
945
947
|
*/
|
|
946
948
|
completed_in?: number;
|
|
949
|
+
/**
|
|
950
|
+
* For completed metrics the time (in seconds) it took to complete
|
|
951
|
+
* them. (Taking into account the schedule if any).
|
|
952
|
+
* @format int32
|
|
953
|
+
*/
|
|
954
|
+
completed_in_seconds?: number;
|
|
947
955
|
/** If true, the metric is part of the applied policy. */
|
|
948
956
|
in_policy?: boolean;
|
|
949
957
|
/**
|
|
@@ -1060,8 +1068,12 @@ export type Article = AtomBase & {
|
|
|
1060
1068
|
resource?: Resource;
|
|
1061
1069
|
/** The properties of an enum value. */
|
|
1062
1070
|
scope?: EnumValue;
|
|
1071
|
+
/** Status of the article. */
|
|
1072
|
+
status?: ArticleStatus;
|
|
1063
1073
|
/** Sync information for records synced into/from DevRev. */
|
|
1064
1074
|
sync_metadata?: SyncMetadata;
|
|
1075
|
+
/** Tags associated with the article. */
|
|
1076
|
+
tags?: TagWithValue[];
|
|
1065
1077
|
/**
|
|
1066
1078
|
* Title of the article.
|
|
1067
1079
|
* @format text
|
|
@@ -1704,6 +1716,28 @@ export interface ArtifactVersion {
|
|
|
1704
1716
|
*/
|
|
1705
1717
|
version: string;
|
|
1706
1718
|
}
|
|
1719
|
+
/**
|
|
1720
|
+
* artifacts-download-request
|
|
1721
|
+
* The request to download an artifact.
|
|
1722
|
+
*/
|
|
1723
|
+
export interface ArtifactsDownloadRequest {
|
|
1724
|
+
/**
|
|
1725
|
+
* The ID of the artifact to be downloaded.
|
|
1726
|
+
* @format id
|
|
1727
|
+
* @example "ARTIFACT-12345"
|
|
1728
|
+
*/
|
|
1729
|
+
id: string;
|
|
1730
|
+
/**
|
|
1731
|
+
* The access key for the artifact.
|
|
1732
|
+
* @format text
|
|
1733
|
+
*/
|
|
1734
|
+
key?: string;
|
|
1735
|
+
/**
|
|
1736
|
+
* The version of the artifact that needs to be downloaded.
|
|
1737
|
+
* @format text
|
|
1738
|
+
*/
|
|
1739
|
+
version?: string;
|
|
1740
|
+
}
|
|
1707
1741
|
/**
|
|
1708
1742
|
* artifacts-get-request
|
|
1709
1743
|
* The request to get an artifact's information.
|
|
@@ -1899,7 +1933,7 @@ export declare enum AssociatedToType {
|
|
|
1899
1933
|
RevOrg = "rev_org"
|
|
1900
1934
|
}
|
|
1901
1935
|
/** atom */
|
|
1902
|
-
export type Atom = (Account | AppFragment | Article | AuthToken | Capability | CodeChange | Command | Conversation | CustomObject | CustomTypeFragment | DevOrg | DevUser | Dm | Engagement | Enhancement | Feature | Group | Incident | Issue | Link | Linkable | Meeting | NotificationContentTemplate | ObjectMember | Opportunity | Product | QuestionAnswer | RevOrg | RevUser | Runnable | ServiceAccount | Sla | SlaTracker | SnapIn | SnapInVersion | SysUser | Tag | Task | TenantFragment | Ticket | TimelineChangeEvent | TimelineComment | Uom | UserPreferences | Webhook | Widget) & {
|
|
1936
|
+
export type Atom = (Account | AppFragment | Article | AuthToken | Capability | CodeChange | Command | Conversation | CustomObject | CustomTypeFragment | DevOrg | DevUser | Dm | Engagement | Enhancement | Feature | Group | Incident | Issue | Link | Linkable | Meeting | NotificationContentTemplate | ObjectMember | Opportunity | Product | QuestionAnswer | RevOrg | RevUser | Runnable | ServiceAccount | Sla | SlaTracker | SnapIn | SnapInVersion | SysUser | Tag | Task | TenantFragment | Ticket | TimeMetricTracker | TimelineChangeEvent | TimelineComment | Uom | UserPreferences | Webhook | Widget) & {
|
|
1903
1937
|
type: AtomType;
|
|
1904
1938
|
};
|
|
1905
1939
|
/** atom-base */
|
|
@@ -1943,7 +1977,7 @@ export interface AtomBaseSummary {
|
|
|
1943
1977
|
id: string;
|
|
1944
1978
|
}
|
|
1945
1979
|
/** atom-summary */
|
|
1946
|
-
export type AtomSummary = (AccountSummary | AppFragmentSummary | ArticleSummary | AuthTokenSummary | CapabilitySummary | CodeChangeSummary | CommandSummary | ConversationSummary | CustomObjectSummary | CustomTypeFragmentSummary | DevOrgSummary | DevUserSummary | DmSummary | EngagementSummary | EnhancementSummary | FeatureSummary | GroupSummary | IncidentSummary | IssueSummary | LinkSummary | LinkableSummary | MeetingSummary | NotificationContentTemplateSummary | ObjectMemberSummary | OpportunitySummary | ProductSummary | QuestionAnswerSummary | RevOrgSummary | RevUserSummary | RunnableSummary | ServiceAccountSummary | SlaSummary | SlaTrackerSummary | SnapInSummary | SnapInVersionSummary | SysUserSummary | TagSummary | TaskSummary | TenantFragmentSummary | TicketSummary | TimelineChangeEventSummary | TimelineCommentSummary | UomSummary | UserPreferencesSummary | WebhookSummary | WidgetSummary) & {
|
|
1980
|
+
export type AtomSummary = (AccountSummary | AppFragmentSummary | ArticleSummary | AuthTokenSummary | CapabilitySummary | CodeChangeSummary | CommandSummary | ConversationSummary | CustomObjectSummary | CustomTypeFragmentSummary | DevOrgSummary | DevUserSummary | DmSummary | EngagementSummary | EnhancementSummary | FeatureSummary | GroupSummary | IncidentSummary | IssueSummary | LinkSummary | LinkableSummary | MeetingSummary | NotificationContentTemplateSummary | ObjectMemberSummary | OpportunitySummary | ProductSummary | QuestionAnswerSummary | RevOrgSummary | RevUserSummary | RunnableSummary | ServiceAccountSummary | SlaSummary | SlaTrackerSummary | SnapInSummary | SnapInVersionSummary | SysUserSummary | TagSummary | TaskSummary | TenantFragmentSummary | TicketSummary | TimeMetricTrackerSummary | TimelineChangeEventSummary | TimelineCommentSummary | UomSummary | UserPreferencesSummary | WebhookSummary | WidgetSummary) & {
|
|
1947
1981
|
type: AtomType;
|
|
1948
1982
|
};
|
|
1949
1983
|
export declare enum AtomType {
|
|
@@ -1987,6 +2021,7 @@ export declare enum AtomType {
|
|
|
1987
2021
|
Task = "task",
|
|
1988
2022
|
TenantFragment = "tenant_fragment",
|
|
1989
2023
|
Ticket = "ticket",
|
|
2024
|
+
TimeMetricTracker = "time_metric_tracker",
|
|
1990
2025
|
TimelineChangeEvent = "timeline_change_event",
|
|
1991
2026
|
TimelineComment = "timeline_comment",
|
|
1992
2027
|
Uom = "uom",
|
|
@@ -2275,10 +2310,10 @@ export interface AuthTokensCreateRequest {
|
|
|
2275
2310
|
*/
|
|
2276
2311
|
client_id?: string;
|
|
2277
2312
|
/**
|
|
2278
|
-
* The expected validity lifetime of the token in number of days.
|
|
2279
|
-
*
|
|
2313
|
+
* The expected validity lifetime of the token in number of days. The
|
|
2314
|
+
* value must be less than or equal to 1825 days (5 years).
|
|
2280
2315
|
* @min 0
|
|
2281
|
-
* @max
|
|
2316
|
+
* @max 1825
|
|
2282
2317
|
*/
|
|
2283
2318
|
expires_in?: number;
|
|
2284
2319
|
/** Specifies the process of obtaining a token. */
|
|
@@ -2903,6 +2938,24 @@ export type Chat = Dm & {
|
|
|
2903
2938
|
};
|
|
2904
2939
|
/** chat-base */
|
|
2905
2940
|
export type ChatBase = AtomBase & {
|
|
2941
|
+
/** Custom fields. */
|
|
2942
|
+
custom_fields?: object;
|
|
2943
|
+
/**
|
|
2944
|
+
* Custom schema fragments.
|
|
2945
|
+
* @example ["don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"]
|
|
2946
|
+
*/
|
|
2947
|
+
custom_schema_fragments?: string[];
|
|
2948
|
+
/**
|
|
2949
|
+
* Stock schema fragment.
|
|
2950
|
+
* @format id
|
|
2951
|
+
* @example "don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"
|
|
2952
|
+
*/
|
|
2953
|
+
stock_schema_fragment?: string;
|
|
2954
|
+
/**
|
|
2955
|
+
* Subtype corresponding to the custom type fragment.
|
|
2956
|
+
* @format text
|
|
2957
|
+
*/
|
|
2958
|
+
subtype?: string;
|
|
2906
2959
|
/** Sync information for records synced into/from DevRev. */
|
|
2907
2960
|
sync_metadata?: SyncMetadata;
|
|
2908
2961
|
/**
|
|
@@ -3889,6 +3942,70 @@ export interface CompositeSchema {
|
|
|
3889
3942
|
*/
|
|
3890
3943
|
name?: string;
|
|
3891
3944
|
}
|
|
3945
|
+
/**
|
|
3946
|
+
* configuration
|
|
3947
|
+
* Settings related to payment, proration, etc. Configurations may or may
|
|
3948
|
+
* not be defined by a DevO. 1. If DevO defines configurations then same
|
|
3949
|
+
* configurations are copied to RevO also to sub pack (for now, later RevO
|
|
3950
|
+
* can also set) 2. If DevO doesn't set anything then these configurations
|
|
3951
|
+
* would be set to default by application for which they were being
|
|
3952
|
+
* defined (for eg. if DevO doesn't set payment method for it's RevOs then
|
|
3953
|
+
* stripe would set it to 'charge_automatically' by default).
|
|
3954
|
+
*/
|
|
3955
|
+
export interface Configuration {
|
|
3956
|
+
/**
|
|
3957
|
+
* Charge collection strategy for the service plan. Defaults to
|
|
3958
|
+
* charge_automatically.
|
|
3959
|
+
*/
|
|
3960
|
+
collection_method?: ConfigurationCollectionMethod;
|
|
3961
|
+
/**
|
|
3962
|
+
* Number of days a customer has to pay invoices generated by this
|
|
3963
|
+
* subscription. If collection method is set to send_invoice then this
|
|
3964
|
+
* field is mandatory.
|
|
3965
|
+
* @format int32
|
|
3966
|
+
*/
|
|
3967
|
+
days_until_due?: number;
|
|
3968
|
+
/**
|
|
3969
|
+
* Whether to generate invoice immediately if the service plan is
|
|
3970
|
+
* cancelled. Defaults to false.
|
|
3971
|
+
*/
|
|
3972
|
+
invoice_now_on_cancel_service_plan?: boolean;
|
|
3973
|
+
/**
|
|
3974
|
+
* If pending update is allowed or not, this is for those cases where
|
|
3975
|
+
* an additional step of authentication or manual approval is required
|
|
3976
|
+
* for the payment. Defaults to false. If this is true, then Proration
|
|
3977
|
+
* behavior should be always_invoice, and collection method should be
|
|
3978
|
+
* charge_automatically.
|
|
3979
|
+
*/
|
|
3980
|
+
pending_update?: boolean;
|
|
3981
|
+
/**
|
|
3982
|
+
* Whether to prorate if the service plan is cancelled. Defaults to
|
|
3983
|
+
* false.
|
|
3984
|
+
*/
|
|
3985
|
+
prorate_on_cancel_service_plan?: boolean;
|
|
3986
|
+
/**
|
|
3987
|
+
* Determines how to handle prorations resulting from the billing_date. If
|
|
3988
|
+
* no value is passed, the default is create_prorations.
|
|
3989
|
+
*/
|
|
3990
|
+
proration_behavior?: ConfigurationProrationBehavior;
|
|
3991
|
+
}
|
|
3992
|
+
/**
|
|
3993
|
+
* Charge collection strategy for the service plan. Defaults to
|
|
3994
|
+
* charge_automatically.
|
|
3995
|
+
*/
|
|
3996
|
+
export declare enum ConfigurationCollectionMethod {
|
|
3997
|
+
ChargeAutomatically = "charge_automatically",
|
|
3998
|
+
SendInvoice = "send_invoice"
|
|
3999
|
+
}
|
|
4000
|
+
/**
|
|
4001
|
+
* Determines how to handle prorations resulting from the billing_date. If
|
|
4002
|
+
* no value is passed, the default is create_prorations.
|
|
4003
|
+
*/
|
|
4004
|
+
export declare enum ConfigurationProrationBehavior {
|
|
4005
|
+
AlwaysInvoice = "always_invoice",
|
|
4006
|
+
CreateProrations = "create_prorations",
|
|
4007
|
+
None = "none"
|
|
4008
|
+
}
|
|
3892
4009
|
/** content-template */
|
|
3893
4010
|
export type ContentTemplate = NotificationContentTemplate & {
|
|
3894
4011
|
type: ContentTemplateType;
|
|
@@ -4034,6 +4151,8 @@ export type Conversation = AtomBase & {
|
|
|
4034
4151
|
* @example "2023-01-01T12:00:00.000Z"
|
|
4035
4152
|
*/
|
|
4036
4153
|
actual_close_date?: string;
|
|
4154
|
+
/** Details of the parts relevant to the conversation. */
|
|
4155
|
+
applies_to_parts?: PartSummary[];
|
|
4037
4156
|
/** Channel IDs of the conversation. */
|
|
4038
4157
|
channels?: ExternalCommunicationChannelSummary[];
|
|
4039
4158
|
/** Custom fields. */
|
|
@@ -4049,6 +4168,8 @@ export type Conversation = AtomBase & {
|
|
|
4049
4168
|
*/
|
|
4050
4169
|
description?: string;
|
|
4051
4170
|
group?: GroupSummary;
|
|
4171
|
+
/** Whether the object is frozen or not. */
|
|
4172
|
+
is_frozen?: boolean;
|
|
4052
4173
|
/** The users in the conversation. */
|
|
4053
4174
|
members: UserSummary[];
|
|
4054
4175
|
/** The latest messages on the conversation. */
|
|
@@ -5168,6 +5289,12 @@ export interface CustomLinkTypeListResponse {
|
|
|
5168
5289
|
prev_cursor?: string;
|
|
5169
5290
|
/** The custom link types. */
|
|
5170
5291
|
result: CustomLinkType[];
|
|
5292
|
+
/**
|
|
5293
|
+
* The custom link types matching the request filter in the backward
|
|
5294
|
+
* direction.Only returned if include_reverse_results is true.Objects
|
|
5295
|
+
* can be present in both result and reverse_result.
|
|
5296
|
+
*/
|
|
5297
|
+
reverse_result?: CustomLinkType[];
|
|
5171
5298
|
}
|
|
5172
5299
|
/** custom-link-type-summary */
|
|
5173
5300
|
export type CustomLinkTypeSummary = AtomBaseSummary;
|
|
@@ -6615,6 +6742,12 @@ export type DevUser = UserBase & {
|
|
|
6615
6742
|
* @format text
|
|
6616
6743
|
*/
|
|
6617
6744
|
subtype?: string;
|
|
6745
|
+
/**
|
|
6746
|
+
* The user's timezone in IANA Time Zone format (e.g., 'Asia/Kolkata',
|
|
6747
|
+
* 'America/New_York').
|
|
6748
|
+
* @format text
|
|
6749
|
+
*/
|
|
6750
|
+
timezone?: string;
|
|
6618
6751
|
};
|
|
6619
6752
|
/** dev-user-external-identity-filter */
|
|
6620
6753
|
export interface DevUserExternalIdentityFilter {
|
|
@@ -6842,6 +6975,11 @@ export interface DevUsersListRequest {
|
|
|
6842
6975
|
sort_by?: string[];
|
|
6843
6976
|
/** Filters Dev users based on state. */
|
|
6844
6977
|
state?: UserState[];
|
|
6978
|
+
/**
|
|
6979
|
+
* Filters for Dev users in the specified time zone in IANA format
|
|
6980
|
+
* (e.g., 'America/Los_Angeles').
|
|
6981
|
+
*/
|
|
6982
|
+
timezone?: string[];
|
|
6845
6983
|
}
|
|
6846
6984
|
/**
|
|
6847
6985
|
* dev-users-list-response
|
|
@@ -7112,7 +7250,7 @@ export interface DirectoriesGetRequest {
|
|
|
7112
7250
|
* The ID of the requested directory.
|
|
7113
7251
|
* @format id
|
|
7114
7252
|
*/
|
|
7115
|
-
id
|
|
7253
|
+
id?: string;
|
|
7116
7254
|
}
|
|
7117
7255
|
/**
|
|
7118
7256
|
* directories-get-response
|
|
@@ -8337,6 +8475,20 @@ export type ErrorNotFoundNotFound = object;
|
|
|
8337
8475
|
export declare enum ErrorNotFoundType {
|
|
8338
8476
|
NotFound = "not_found"
|
|
8339
8477
|
}
|
|
8478
|
+
/** error-see-other */
|
|
8479
|
+
export type ErrorSeeOther = ErrorBase & ErrorSeeOtherSeeOther & {
|
|
8480
|
+
type: ErrorSeeOtherType;
|
|
8481
|
+
/**
|
|
8482
|
+
* The URL to redirect to.
|
|
8483
|
+
* @format text
|
|
8484
|
+
*/
|
|
8485
|
+
location: string;
|
|
8486
|
+
};
|
|
8487
|
+
/** error-see-other-see-other */
|
|
8488
|
+
export type ErrorSeeOtherSeeOther = object;
|
|
8489
|
+
export declare enum ErrorSeeOtherType {
|
|
8490
|
+
SeeOther = "see_other"
|
|
8491
|
+
}
|
|
8340
8492
|
/** error-service-unavailable */
|
|
8341
8493
|
export type ErrorServiceUnavailable = ErrorBase & ErrorServiceUnavailableServiceUnavailable & {
|
|
8342
8494
|
type: ErrorServiceUnavailableType;
|
|
@@ -8388,6 +8540,19 @@ export interface EventAccountUpdated {
|
|
|
8388
8540
|
account: Account;
|
|
8389
8541
|
old_account?: Account;
|
|
8390
8542
|
}
|
|
8543
|
+
/** event-ai-agent-created */
|
|
8544
|
+
export interface EventAiAgentCreated {
|
|
8545
|
+
ai_agent: AiAgent;
|
|
8546
|
+
}
|
|
8547
|
+
/** event-ai-agent-deleted */
|
|
8548
|
+
export interface EventAiAgentDeleted {
|
|
8549
|
+
/**
|
|
8550
|
+
* The ID of the AI Agent that was deleted.
|
|
8551
|
+
* @format id
|
|
8552
|
+
*/
|
|
8553
|
+
id: string;
|
|
8554
|
+
old_ai_agent?: AiAgent;
|
|
8555
|
+
}
|
|
8391
8556
|
/** event-ai-agent-response */
|
|
8392
8557
|
export interface EventAiAgentResponse {
|
|
8393
8558
|
/**
|
|
@@ -8429,6 +8594,11 @@ export interface EventAiAgentResponse {
|
|
|
8429
8594
|
/** A list of suggestions generated for the AI agent event. */
|
|
8430
8595
|
suggestions?: AiAgentEventSuggestions;
|
|
8431
8596
|
}
|
|
8597
|
+
/** event-ai-agent-updated */
|
|
8598
|
+
export interface EventAiAgentUpdated {
|
|
8599
|
+
ai_agent: AiAgent;
|
|
8600
|
+
old_ai_agent?: AiAgent;
|
|
8601
|
+
}
|
|
8432
8602
|
/** event-article-created */
|
|
8433
8603
|
export interface EventArticleCreated {
|
|
8434
8604
|
article: Article;
|
|
@@ -8644,6 +8814,15 @@ export interface EventRevUserUpdated {
|
|
|
8644
8814
|
old_rev_user?: RevUser;
|
|
8645
8815
|
rev_user: RevUser;
|
|
8646
8816
|
}
|
|
8817
|
+
/** event-service-plan-created */
|
|
8818
|
+
export interface EventServicePlanCreated {
|
|
8819
|
+
service_plan: ServicePlan;
|
|
8820
|
+
}
|
|
8821
|
+
/** event-service-plan-updated */
|
|
8822
|
+
export interface EventServicePlanUpdated {
|
|
8823
|
+
old_service_plan?: ServicePlan;
|
|
8824
|
+
service_plan: ServicePlan;
|
|
8825
|
+
}
|
|
8647
8826
|
/** event-sla-tracker-created */
|
|
8648
8827
|
export interface EventSlaTrackerCreated {
|
|
8649
8828
|
sla_tracker: SlaTracker;
|
|
@@ -8972,6 +9151,24 @@ export interface EventWorkUpdated {
|
|
|
8972
9151
|
old_work?: Work;
|
|
8973
9152
|
work: Work;
|
|
8974
9153
|
}
|
|
9154
|
+
/** event-workflow-created */
|
|
9155
|
+
export interface EventWorkflowCreated {
|
|
9156
|
+
workflow: Workflow;
|
|
9157
|
+
}
|
|
9158
|
+
/** event-workflow-deleted */
|
|
9159
|
+
export interface EventWorkflowDeleted {
|
|
9160
|
+
/**
|
|
9161
|
+
* The ID of the workflow that was deleted.
|
|
9162
|
+
* @format id
|
|
9163
|
+
*/
|
|
9164
|
+
id: string;
|
|
9165
|
+
old_workflow?: Workflow;
|
|
9166
|
+
}
|
|
9167
|
+
/** event-workflow-updated */
|
|
9168
|
+
export interface EventWorkflowUpdated {
|
|
9169
|
+
old_workflow?: Workflow;
|
|
9170
|
+
workflow: Workflow;
|
|
9171
|
+
}
|
|
8975
9172
|
/**
|
|
8976
9173
|
* export-audit-logs-request
|
|
8977
9174
|
* Request object to get a log's information.
|
|
@@ -8993,6 +9190,12 @@ export interface ExportAuditLogsRequest {
|
|
|
8993
9190
|
* @example "2023-01-01T12:00:00.000Z"
|
|
8994
9191
|
*/
|
|
8995
9192
|
to: string;
|
|
9193
|
+
/**
|
|
9194
|
+
* A list of IDs representing the individuals whose audit logs are
|
|
9195
|
+
* being requested.
|
|
9196
|
+
* @example ["DEVU-12345"]
|
|
9197
|
+
*/
|
|
9198
|
+
users?: string[];
|
|
8996
9199
|
}
|
|
8997
9200
|
export declare enum ExportAuditLogsRequestOperationType {
|
|
8998
9201
|
Create = "create",
|
|
@@ -9041,6 +9244,7 @@ export declare enum ExternalSystemType {
|
|
|
9041
9244
|
JiraDataCenter = "jira_data_center",
|
|
9042
9245
|
Linear = "linear",
|
|
9043
9246
|
Rocketlane = "rocketlane",
|
|
9247
|
+
S3 = "s3",
|
|
9044
9248
|
SalesforceSales = "salesforce_sales",
|
|
9045
9249
|
SalesforceService = "salesforce_service",
|
|
9046
9250
|
Servicenow = "servicenow",
|
|
@@ -9199,6 +9403,12 @@ export interface FieldValidation {
|
|
|
9199
9403
|
/** field-value */
|
|
9200
9404
|
export type FieldValue = (FieldValueBool | FieldValueBoolList | FieldValueComposite | FieldValueCompositeList | FieldValueDateList | FieldValueDateTimeList | FieldValueDateTimeValue | FieldValueDateValue | FieldValueDouble | FieldValueDoubleList | FieldValueId | FieldValueIdList | FieldValueInt64 | FieldValueInt64List | FieldValueStage | FieldValueString | FieldValueStringList | FieldValueTagSummary | FieldValueTagSummaryList) & {
|
|
9201
9405
|
type: FieldValueType;
|
|
9406
|
+
/**
|
|
9407
|
+
* The metadata for translation, converted to a locale-specific value
|
|
9408
|
+
* in the API.
|
|
9409
|
+
* @format text
|
|
9410
|
+
*/
|
|
9411
|
+
display_value?: string;
|
|
9202
9412
|
};
|
|
9203
9413
|
/** field-value-bool */
|
|
9204
9414
|
export interface FieldValueBool {
|
|
@@ -9346,6 +9556,12 @@ export declare enum GenericNotificationEventType {
|
|
|
9346
9556
|
* knowledge base.
|
|
9347
9557
|
*/
|
|
9348
9558
|
export interface GetReplyRequest {
|
|
9559
|
+
/**
|
|
9560
|
+
* The language in which Turing should operate. The language should be
|
|
9561
|
+
* passed in IETF BCP 47 format. If not specified, defaults to en-US.
|
|
9562
|
+
* @format text
|
|
9563
|
+
*/
|
|
9564
|
+
language?: string;
|
|
9349
9565
|
/**
|
|
9350
9566
|
* The query string.
|
|
9351
9567
|
* @format text
|
|
@@ -9930,6 +10146,9 @@ export type Incident = AtomBase & {
|
|
|
9930
10146
|
reported_by?: EnumValue;
|
|
9931
10147
|
/** The properties of an enum value. */
|
|
9932
10148
|
severity?: EnumValue;
|
|
10149
|
+
/** SLA summary for the object. */
|
|
10150
|
+
sla_summary?: ArchetypeSlaSummary;
|
|
10151
|
+
sla_tracker?: SlaTrackerSummary;
|
|
9933
10152
|
/** The properties of an enum value. */
|
|
9934
10153
|
source?: EnumValue;
|
|
9935
10154
|
/** Describes the current stage of a object. */
|
|
@@ -10153,6 +10372,11 @@ export interface IncidentsGroupRequest {
|
|
|
10153
10372
|
group_by: string;
|
|
10154
10373
|
/** Provides ways to specify date ranges on objects. */
|
|
10155
10374
|
identified_date?: DateFilter;
|
|
10375
|
+
/**
|
|
10376
|
+
* Filters for incidents with any of the provided impacted customers.
|
|
10377
|
+
* @example ["ACC-12345"]
|
|
10378
|
+
*/
|
|
10379
|
+
impacted_customers?: string[];
|
|
10156
10380
|
/**
|
|
10157
10381
|
* The maximum number of groups to return. If not set, then the
|
|
10158
10382
|
* default is '10'.
|
|
@@ -10258,6 +10482,11 @@ export interface IncidentsListRequest {
|
|
|
10258
10482
|
custom_fields?: object;
|
|
10259
10483
|
/** Provides ways to specify date ranges on objects. */
|
|
10260
10484
|
identified_date?: DateFilter;
|
|
10485
|
+
/**
|
|
10486
|
+
* Filters for incidents with any of the provided impacted customers.
|
|
10487
|
+
* @example ["ACC-12345"]
|
|
10488
|
+
*/
|
|
10489
|
+
impacted_customers?: string[];
|
|
10261
10490
|
/**
|
|
10262
10491
|
* The maximum number of items.
|
|
10263
10492
|
* @format int32
|
|
@@ -10623,6 +10852,21 @@ export interface LegacyStageSummary {
|
|
|
10623
10852
|
name: string;
|
|
10624
10853
|
stage?: CustomStageSummary;
|
|
10625
10854
|
}
|
|
10855
|
+
/** line-item-base-summary */
|
|
10856
|
+
export type LineItemBaseSummary = AtomBaseSummary & {
|
|
10857
|
+
pricing: PricingSummary;
|
|
10858
|
+
/**
|
|
10859
|
+
* The quantity of units purchased.
|
|
10860
|
+
* @format int32
|
|
10861
|
+
*/
|
|
10862
|
+
quantity?: number;
|
|
10863
|
+
sku: SkuSummary;
|
|
10864
|
+
/**
|
|
10865
|
+
* The used quantity units.
|
|
10866
|
+
* @format int32
|
|
10867
|
+
*/
|
|
10868
|
+
used_quantity?: number;
|
|
10869
|
+
};
|
|
10626
10870
|
/**
|
|
10627
10871
|
* line-visualization-x-axis
|
|
10628
10872
|
* The X-axis for a line visualization.
|
|
@@ -11167,6 +11411,8 @@ export type Meeting = AtomBase & {
|
|
|
11167
11411
|
*/
|
|
11168
11412
|
title?: string;
|
|
11169
11413
|
transcript?: ArtifactSummary;
|
|
11414
|
+
/** The properties of an enum value. */
|
|
11415
|
+
visibility?: EnumValue;
|
|
11170
11416
|
};
|
|
11171
11417
|
/** The channel of meeting. */
|
|
11172
11418
|
export declare enum MeetingChannel {
|
|
@@ -11213,6 +11459,8 @@ export interface MeetingsCountRequest {
|
|
|
11213
11459
|
created_date?: DateFilter;
|
|
11214
11460
|
/** Filters for meeting on custom fields. */
|
|
11215
11461
|
custom_fields?: object;
|
|
11462
|
+
/** Direction of the meetings to be fetched. */
|
|
11463
|
+
direction?: MeetingDirection[];
|
|
11216
11464
|
/** Provides ways to specify date ranges on objects. */
|
|
11217
11465
|
ended_date?: DateFilter;
|
|
11218
11466
|
/** Filters for meetings with the provided external_ref(s). */
|
|
@@ -11403,6 +11651,8 @@ export interface MeetingsListRequest {
|
|
|
11403
11651
|
cursor?: string;
|
|
11404
11652
|
/** Filters for meeting on custom fields. */
|
|
11405
11653
|
custom_fields?: object;
|
|
11654
|
+
/** Direction of the meetings to be fetched. */
|
|
11655
|
+
direction?: MeetingDirection[];
|
|
11406
11656
|
/** Provides ways to specify date ranges on objects. */
|
|
11407
11657
|
ended_date?: DateFilter;
|
|
11408
11658
|
/** Filters for meetings with the provided external_ref(s). */
|
|
@@ -11570,6 +11820,8 @@ export interface MeetingsVistaFilter {
|
|
|
11570
11820
|
created_date?: DateFilter;
|
|
11571
11821
|
/** Filters for meeting on custom fields. */
|
|
11572
11822
|
custom_fields?: object;
|
|
11823
|
+
/** Direction of the meetings to be fetched. */
|
|
11824
|
+
direction?: MeetingDirection[];
|
|
11573
11825
|
/** Provides ways to specify date ranges on objects. */
|
|
11574
11826
|
ended_date?: DateFilter;
|
|
11575
11827
|
/** Filters for meetings with the provided external_ref(s). */
|
|
@@ -11703,6 +11955,7 @@ export type MetricDefinition = AtomBase & {
|
|
|
11703
11955
|
/** The list of item types on which the metric might be applied. */
|
|
11704
11956
|
export declare enum MetricDefinitionAppliesTo {
|
|
11705
11957
|
Conversation = "conversation",
|
|
11958
|
+
Incident = "incident",
|
|
11706
11959
|
Issue = "issue",
|
|
11707
11960
|
Ticket = "ticket"
|
|
11708
11961
|
}
|
|
@@ -11871,10 +12124,16 @@ export interface MetricDefinitionsUpdateResponse {
|
|
|
11871
12124
|
metric_definition: MetricDefinition;
|
|
11872
12125
|
}
|
|
11873
12126
|
/** metric-tracker */
|
|
11874
|
-
export
|
|
12127
|
+
export type MetricTracker = TimeMetricTracker & {
|
|
11875
12128
|
type: MetricTrackerType;
|
|
12129
|
+
};
|
|
12130
|
+
/** metric-tracker-base */
|
|
12131
|
+
export type MetricTrackerBase = AtomBase;
|
|
12132
|
+
/** metric-tracker-base-summary */
|
|
12133
|
+
export type MetricTrackerBaseSummary = AtomBaseSummary;
|
|
12134
|
+
export declare enum MetricTrackerType {
|
|
12135
|
+
TimeMetricTracker = "time_metric_tracker"
|
|
11876
12136
|
}
|
|
11877
|
-
export type MetricTrackerType = string;
|
|
11878
12137
|
/** metric-trackers-get-request */
|
|
11879
12138
|
export interface MetricTrackersGetRequest {
|
|
11880
12139
|
/**
|
|
@@ -12033,6 +12292,8 @@ export type ObjectMemberSummary = AtomBaseSummary & {
|
|
|
12033
12292
|
/** Sync information for records synced into/from DevRev. */
|
|
12034
12293
|
sync_metadata?: SyncMetadataSummary;
|
|
12035
12294
|
};
|
|
12295
|
+
/** one-time-line-item-summary */
|
|
12296
|
+
export type OneTimeLineItemSummary = LineItemBaseSummary;
|
|
12036
12297
|
/** operation-search-summary */
|
|
12037
12298
|
export type OperationSearchSummary = SearchSummaryBase & {
|
|
12038
12299
|
operation: OperationSummary;
|
|
@@ -12190,7 +12451,27 @@ export type OrgScheduleFragment = AtomBase & {
|
|
|
12190
12451
|
* inside a organization schedule, used to quickly look up the schedule
|
|
12191
12452
|
* fragment for the right period.
|
|
12192
12453
|
*/
|
|
12193
|
-
export
|
|
12454
|
+
export interface OrgScheduleFragmentOverview {
|
|
12455
|
+
/**
|
|
12456
|
+
* The date (inclusive) on which the organization schedule fragment
|
|
12457
|
+
* begins.
|
|
12458
|
+
* @format date-time
|
|
12459
|
+
* @example "2023-01-01T12:00:00.000Z"
|
|
12460
|
+
*/
|
|
12461
|
+
from?: string;
|
|
12462
|
+
/**
|
|
12463
|
+
* The organization schedule fragment referenced.
|
|
12464
|
+
* @format id
|
|
12465
|
+
*/
|
|
12466
|
+
id?: string;
|
|
12467
|
+
/**
|
|
12468
|
+
* The date (exclusive) on which the organization schedule fragment's
|
|
12469
|
+
* validity ends.
|
|
12470
|
+
* @format date-time
|
|
12471
|
+
* @example "2023-01-01T12:00:00.000Z"
|
|
12472
|
+
*/
|
|
12473
|
+
to?: string;
|
|
12474
|
+
}
|
|
12194
12475
|
/**
|
|
12195
12476
|
* Status determines how an item can be used. In 'draft' status an item
|
|
12196
12477
|
* can be edited but can't be used. When 'published' the item can longer
|
|
@@ -12269,7 +12550,32 @@ export interface OrgScheduleFragmentsTransitionResponse {
|
|
|
12269
12550
|
* org-schedule-interval
|
|
12270
12551
|
* An optionally named period on day granularity.
|
|
12271
12552
|
*/
|
|
12272
|
-
export
|
|
12553
|
+
export interface OrgScheduleInterval {
|
|
12554
|
+
/**
|
|
12555
|
+
* The date (inclusive) on which the interval begins.
|
|
12556
|
+
* @format date-time
|
|
12557
|
+
* @example "2023-01-01T12:00:00.000Z"
|
|
12558
|
+
*/
|
|
12559
|
+
from?: string;
|
|
12560
|
+
/**
|
|
12561
|
+
* If true, no schedule is looked up for these days, instead it is a
|
|
12562
|
+
* fully off day.
|
|
12563
|
+
*/
|
|
12564
|
+
is_excluded?: boolean;
|
|
12565
|
+
/**
|
|
12566
|
+
* The name of the period, for example the event or holiday it
|
|
12567
|
+
* represents. Used to connect it to a specific weekly schedule.
|
|
12568
|
+
* @format text
|
|
12569
|
+
*/
|
|
12570
|
+
name?: string;
|
|
12571
|
+
/**
|
|
12572
|
+
* The date (exclusive) on which the interval ends. If omitted, it is
|
|
12573
|
+
* a single day interval.
|
|
12574
|
+
* @format date-time
|
|
12575
|
+
* @example "2023-01-01T12:00:00.000Z"
|
|
12576
|
+
*/
|
|
12577
|
+
to?: string;
|
|
12578
|
+
}
|
|
12273
12579
|
/**
|
|
12274
12580
|
* Status determines how an item can be used. In 'draft' status an item
|
|
12275
12581
|
* can be edited but can't be used. When 'published' the item can longer
|
|
@@ -12850,6 +13156,8 @@ export interface PartsListRequest {
|
|
|
12850
13156
|
* @example ["DEVU-12345"]
|
|
12851
13157
|
*/
|
|
12852
13158
|
created_by?: string[];
|
|
13159
|
+
/** Provides ways to specify date ranges on objects. */
|
|
13160
|
+
created_date_v2?: DateFilter;
|
|
12853
13161
|
/**
|
|
12854
13162
|
* The cursor to resume iteration from. If not provided, then
|
|
12855
13163
|
* iteration starts from the beginning.
|
|
@@ -12877,6 +13185,8 @@ export interface PartsListRequest {
|
|
|
12877
13185
|
* @example ["DEVU-12345"]
|
|
12878
13186
|
*/
|
|
12879
13187
|
modified_by?: string[];
|
|
13188
|
+
/** Provides ways to specify date ranges on objects. */
|
|
13189
|
+
modified_date_v2?: DateFilter;
|
|
12880
13190
|
/** Filters for parts of the provided name(s). */
|
|
12881
13191
|
name?: string[];
|
|
12882
13192
|
/**
|
|
@@ -13158,6 +13468,74 @@ export type PreferencesUpdateRequest = UpdateUserPreferences & {
|
|
|
13158
13468
|
export interface PreferencesUpdateResponse {
|
|
13159
13469
|
preferences: Preferences;
|
|
13160
13470
|
}
|
|
13471
|
+
/**
|
|
13472
|
+
* price-slab-summary
|
|
13473
|
+
* Helps in defining the range pricing for cases such as tiered pricing,
|
|
13474
|
+
* volume pricing etc. For Example, if the pricing for first 100 api calls
|
|
13475
|
+
* per calls is $X and after that its $Y till infinity.
|
|
13476
|
+
*/
|
|
13477
|
+
export interface PriceSlabSummary {
|
|
13478
|
+
/**
|
|
13479
|
+
* The flat price for the complete slab, irrespective of qunatity one
|
|
13480
|
+
* uses in this price slab. This can be set only if unit price is set.
|
|
13481
|
+
* @format double
|
|
13482
|
+
*/
|
|
13483
|
+
flat_price?: number;
|
|
13484
|
+
/**
|
|
13485
|
+
* The price for each unit.
|
|
13486
|
+
* @format double
|
|
13487
|
+
*/
|
|
13488
|
+
unit_price?: number;
|
|
13489
|
+
/**
|
|
13490
|
+
* the quantity upto which this price is applicable. You can set this
|
|
13491
|
+
* value only if up to infinity is not set to true.
|
|
13492
|
+
* @format int32
|
|
13493
|
+
*/
|
|
13494
|
+
up_to?: number;
|
|
13495
|
+
/**
|
|
13496
|
+
* If true, this price slab is applicable for all the remaining
|
|
13497
|
+
* quantities till infinity.
|
|
13498
|
+
*/
|
|
13499
|
+
up_to_inf?: boolean;
|
|
13500
|
+
}
|
|
13501
|
+
/** Billing frequency of the SKU. */
|
|
13502
|
+
export declare enum PricingBillingCycle {
|
|
13503
|
+
Monthly = "monthly",
|
|
13504
|
+
OneTime = "one_time",
|
|
13505
|
+
Yearly = "yearly"
|
|
13506
|
+
}
|
|
13507
|
+
/** pricing-summary */
|
|
13508
|
+
export type PricingSummary = AtomBaseSummary & {
|
|
13509
|
+
/** Billing frequency of the SKU. */
|
|
13510
|
+
billing_cycle: PricingBillingCycle;
|
|
13511
|
+
/**
|
|
13512
|
+
* Number of units in each block. For example, If the metered units is
|
|
13513
|
+
* 540 and the block size is 100. Then the quantity will be 5.4. The
|
|
13514
|
+
* default value is 1.
|
|
13515
|
+
* @format int32
|
|
13516
|
+
*/
|
|
13517
|
+
block_size?: number;
|
|
13518
|
+
/**
|
|
13519
|
+
* Currency used for the pricing. For example, USD, INR etc. Defaults
|
|
13520
|
+
* to USD.
|
|
13521
|
+
* @format text
|
|
13522
|
+
*/
|
|
13523
|
+
currency: string;
|
|
13524
|
+
/**
|
|
13525
|
+
* if true then this pricing object can be used for new purchases. If
|
|
13526
|
+
* false then no new purchases can be made with this pricing object
|
|
13527
|
+
* but existing purchases can still use this pricing object. Defaults
|
|
13528
|
+
* to true.
|
|
13529
|
+
*/
|
|
13530
|
+
is_active?: boolean;
|
|
13531
|
+
/**
|
|
13532
|
+
* Whether the slabs should be priced tiered or flat. The default
|
|
13533
|
+
* value is false.
|
|
13534
|
+
*/
|
|
13535
|
+
is_tiered?: boolean;
|
|
13536
|
+
/** List of price slabs for the given currency. */
|
|
13537
|
+
price_slabs: PriceSlabSummary[];
|
|
13538
|
+
};
|
|
13161
13539
|
/** Type of the value. */
|
|
13162
13540
|
export declare enum PrimitiveValueType {
|
|
13163
13541
|
Attribute = "attribute",
|
|
@@ -13645,6 +14023,8 @@ export declare enum RecordTemplateState {
|
|
|
13645
14023
|
Inactive = "inactive",
|
|
13646
14024
|
NeedsAttention = "needs_attention"
|
|
13647
14025
|
}
|
|
14026
|
+
/** recurring-line-item-summary */
|
|
14027
|
+
export type RecurringLineItemSummary = LineItemBaseSummary;
|
|
13648
14028
|
/** remove-tag-with-value */
|
|
13649
14029
|
export interface RemoveTagWithValue {
|
|
13650
14030
|
/**
|
|
@@ -15908,6 +16288,71 @@ export interface ServiceAccountsUpdateRequest {
|
|
|
15908
16288
|
export interface ServiceAccountsUpdateResponse {
|
|
15909
16289
|
service_account: ServiceAccount;
|
|
15910
16290
|
}
|
|
16291
|
+
/** service-plan */
|
|
16292
|
+
export type ServicePlan = AtomBase & {
|
|
16293
|
+
account?: AccountSummary;
|
|
16294
|
+
/** The billing frequency of the service plan. */
|
|
16295
|
+
billing_cycle: ServicePlanBillingCycle;
|
|
16296
|
+
/**
|
|
16297
|
+
* Settings related to payment, proration, etc. Configurations may or may
|
|
16298
|
+
* not be defined by a DevO. 1. If DevO defines configurations then same
|
|
16299
|
+
* configurations are copied to RevO also to sub pack (for now, later RevO
|
|
16300
|
+
* can also set) 2. If DevO doesn't set anything then these configurations
|
|
16301
|
+
* would be set to default by application for which they were being
|
|
16302
|
+
* defined (for eg. if DevO doesn't set payment method for it's RevOs then
|
|
16303
|
+
* stripe would set it to 'charge_automatically' by default).
|
|
16304
|
+
*/
|
|
16305
|
+
configurations?: Configuration;
|
|
16306
|
+
/**
|
|
16307
|
+
* The currency on which the service plan is created.
|
|
16308
|
+
* @format text
|
|
16309
|
+
*/
|
|
16310
|
+
currency: string;
|
|
16311
|
+
/**
|
|
16312
|
+
* Description for the Service Plan.
|
|
16313
|
+
* @format text
|
|
16314
|
+
*/
|
|
16315
|
+
description?: string;
|
|
16316
|
+
/**
|
|
16317
|
+
* Human readable name for the service plan.
|
|
16318
|
+
* @format text
|
|
16319
|
+
*/
|
|
16320
|
+
name: string;
|
|
16321
|
+
/** The one-time invoice items attached to the service plan. */
|
|
16322
|
+
one_time_line_items?: OneTimeLineItemSummary[];
|
|
16323
|
+
/** The recurring items inside the service plan. */
|
|
16324
|
+
recurring_line_items?: RecurringLineItemSummary[];
|
|
16325
|
+
rev_org: OrgSummary;
|
|
16326
|
+
/**
|
|
16327
|
+
* The status of the service plan indicates its current state. If the
|
|
16328
|
+
* status is 'active,' it means the service plan items are in use and
|
|
16329
|
+
* billed every cycle. If the status is 'cancelled,' it signifies that the
|
|
16330
|
+
* service plan has been terminated and is no longer active or considered
|
|
16331
|
+
* for billing.
|
|
16332
|
+
*/
|
|
16333
|
+
status?: ServicePlanStatus;
|
|
16334
|
+
/**
|
|
16335
|
+
* The trial details store the time interval periods during which the
|
|
16336
|
+
* services offered in the service plan are not charged.
|
|
16337
|
+
*/
|
|
16338
|
+
trial_details?: TrialPeriod[];
|
|
16339
|
+
};
|
|
16340
|
+
/** The billing frequency of the service plan. */
|
|
16341
|
+
export declare enum ServicePlanBillingCycle {
|
|
16342
|
+
Monthly = "monthly"
|
|
16343
|
+
}
|
|
16344
|
+
/**
|
|
16345
|
+
* The status of the service plan indicates its current state. If the
|
|
16346
|
+
* status is 'active,' it means the service plan items are in use and
|
|
16347
|
+
* billed every cycle. If the status is 'cancelled,' it signifies that the
|
|
16348
|
+
* service plan has been terminated and is no longer active or considered
|
|
16349
|
+
* for billing.
|
|
16350
|
+
*/
|
|
16351
|
+
export declare enum ServicePlanStatus {
|
|
16352
|
+
Active = "active",
|
|
16353
|
+
Cancelled = "cancelled",
|
|
16354
|
+
Paused = "paused"
|
|
16355
|
+
}
|
|
15911
16356
|
/** set-issue-selector */
|
|
15912
16357
|
export interface SetIssueSelector {
|
|
15913
16358
|
/**
|
|
@@ -16119,6 +16564,70 @@ export interface SharedWithMembershipFilter {
|
|
|
16119
16564
|
*/
|
|
16120
16565
|
role?: string;
|
|
16121
16566
|
}
|
|
16567
|
+
/**
|
|
16568
|
+
* Current state of the SKU. A SKU is visible to RevOs only when it is
|
|
16569
|
+
* released.
|
|
16570
|
+
*/
|
|
16571
|
+
export declare enum SkuState {
|
|
16572
|
+
Approved = "approved",
|
|
16573
|
+
Draft = "draft",
|
|
16574
|
+
EndOfLife = "end_of_life",
|
|
16575
|
+
EndOfSale = "end_of_sale",
|
|
16576
|
+
Released = "released"
|
|
16577
|
+
}
|
|
16578
|
+
/** sku-summary */
|
|
16579
|
+
export type SkuSummary = AtomBaseSummary & {
|
|
16580
|
+
/**
|
|
16581
|
+
* Description of the SKU.
|
|
16582
|
+
* @format text
|
|
16583
|
+
*/
|
|
16584
|
+
description?: string;
|
|
16585
|
+
/**
|
|
16586
|
+
* Human readable name of the SKU. For example; Basic, Premium, etc.
|
|
16587
|
+
* @format text
|
|
16588
|
+
*/
|
|
16589
|
+
family_name: string;
|
|
16590
|
+
/**
|
|
16591
|
+
* Invoice Description is meant to be displayable on the invoice
|
|
16592
|
+
* against the usage for the SKU.
|
|
16593
|
+
* @format text
|
|
16594
|
+
*/
|
|
16595
|
+
invoice_description?: string;
|
|
16596
|
+
/**
|
|
16597
|
+
* If flag is enabled then the usage will be prorated for the time the
|
|
16598
|
+
* SKU is active.
|
|
16599
|
+
*/
|
|
16600
|
+
is_duration_based_proration_enabled?: boolean;
|
|
16601
|
+
/**
|
|
16602
|
+
* Indicates whether the SKU, particularly of type subscription, is a
|
|
16603
|
+
* user based licensed SKU. If set to true, the licensing mechanism
|
|
16604
|
+
* for the SKU is based on the number of individual users, each unique
|
|
16605
|
+
* user is required to have a separate license.
|
|
16606
|
+
*/
|
|
16607
|
+
is_user_based_license?: boolean;
|
|
16608
|
+
/**
|
|
16609
|
+
* Minimum duration in minutes for the SKU usage after which the SKU
|
|
16610
|
+
* would be charged.
|
|
16611
|
+
* @format int32
|
|
16612
|
+
*/
|
|
16613
|
+
minimum_duration_to_charge?: number;
|
|
16614
|
+
/** It defines the type of SKU. */
|
|
16615
|
+
sku_type: SkuType;
|
|
16616
|
+
/**
|
|
16617
|
+
* Current state of the SKU. A SKU is visible to RevOs only when it is
|
|
16618
|
+
* released.
|
|
16619
|
+
*/
|
|
16620
|
+
state: SkuState;
|
|
16621
|
+
};
|
|
16622
|
+
/** It defines the type of SKU. */
|
|
16623
|
+
export declare enum SkuType {
|
|
16624
|
+
Consumption = "consumption",
|
|
16625
|
+
ConsumptionAddon = "consumption_addon",
|
|
16626
|
+
OneOffAddon = "one_off_addon",
|
|
16627
|
+
OneOffCharge = "one_off_charge",
|
|
16628
|
+
Subscription = "subscription",
|
|
16629
|
+
SubscriptionAddon = "subscription_addon"
|
|
16630
|
+
}
|
|
16122
16631
|
/** sla */
|
|
16123
16632
|
export type Sla = AtomBase & {
|
|
16124
16633
|
/**
|
|
@@ -16173,6 +16682,7 @@ export type Sla = AtomBase & {
|
|
|
16173
16682
|
*/
|
|
16174
16683
|
export declare enum SlaAppliesTo {
|
|
16175
16684
|
Conversation = "conversation",
|
|
16685
|
+
Incident = "incident",
|
|
16176
16686
|
Issue = "issue",
|
|
16177
16687
|
Ticket = "ticket"
|
|
16178
16688
|
}
|
|
@@ -16211,6 +16721,7 @@ export type SlaPolicy = object;
|
|
|
16211
16721
|
/** The item type for which the SLA policy applies. */
|
|
16212
16722
|
export declare enum SlaSelectorAppliesTo {
|
|
16213
16723
|
Conversation = "conversation",
|
|
16724
|
+
Incident = "incident",
|
|
16214
16725
|
Issue = "issue",
|
|
16215
16726
|
Ticket = "ticket"
|
|
16216
16727
|
}
|
|
@@ -16310,6 +16821,7 @@ export type SlaTracker = AtomBase & {
|
|
|
16310
16821
|
/** The type of the object on which the SLA is being tracked. */
|
|
16311
16822
|
export declare enum SlaTrackerAppliesToType {
|
|
16312
16823
|
Conversation = "conversation",
|
|
16824
|
+
Incident = "incident",
|
|
16313
16825
|
Issue = "issue",
|
|
16314
16826
|
Ticket = "ticket"
|
|
16315
16827
|
}
|
|
@@ -16758,7 +17270,8 @@ export declare enum SnapWidgetNamespace {
|
|
|
16758
17270
|
EmailPreview = "email_preview",
|
|
16759
17271
|
LinkPreview = "link_preview",
|
|
16760
17272
|
MeetingPreview = "meeting_preview",
|
|
16761
|
-
PlugNudge = "plug_nudge"
|
|
17273
|
+
PlugNudge = "plug_nudge",
|
|
17274
|
+
SideThread = "side_thread"
|
|
16762
17275
|
}
|
|
16763
17276
|
/**
|
|
16764
17277
|
* snap-widget-open-plug-widget-action
|
|
@@ -17189,6 +17702,17 @@ export interface SubWidget {
|
|
|
17189
17702
|
*/
|
|
17190
17703
|
visualization: WidgetVisualization;
|
|
17191
17704
|
}
|
|
17705
|
+
/** subscribers-get-request */
|
|
17706
|
+
export interface SubscribersGetRequest {
|
|
17707
|
+
/**
|
|
17708
|
+
* The object's ID.
|
|
17709
|
+
* @format id
|
|
17710
|
+
* @example "ISS-12345"
|
|
17711
|
+
*/
|
|
17712
|
+
id: string;
|
|
17713
|
+
}
|
|
17714
|
+
/** subscribers-get-response */
|
|
17715
|
+
export type SubscribersGetResponse = object;
|
|
17192
17716
|
/** subscribers-list-request */
|
|
17193
17717
|
export interface SubscribersListRequest {
|
|
17194
17718
|
/**
|
|
@@ -18453,6 +18977,8 @@ export type Ticket = WorkBase & {
|
|
|
18453
18977
|
/** Channel IDs of the ticket. */
|
|
18454
18978
|
channels_v2?: ExternalCommunicationChannelSummary[];
|
|
18455
18979
|
group?: GroupSummary;
|
|
18980
|
+
/** Whether the object is frozen or not. */
|
|
18981
|
+
is_frozen?: boolean;
|
|
18456
18982
|
/** Whether the ticket needs a response. */
|
|
18457
18983
|
needs_response?: boolean;
|
|
18458
18984
|
rev_org?: OrgSummary;
|
|
@@ -18505,6 +19031,42 @@ export type TicketSummary = WorkBaseSummary & {
|
|
|
18505
19031
|
/** Severity of the ticket. */
|
|
18506
19032
|
severity?: TicketSeverity;
|
|
18507
19033
|
};
|
|
19034
|
+
/**
|
|
19035
|
+
* time-interval
|
|
19036
|
+
* A time period between two concrete timestamps.
|
|
19037
|
+
*/
|
|
19038
|
+
export type TimeInterval = object;
|
|
19039
|
+
/** time-metric-tracker */
|
|
19040
|
+
export type TimeMetricTracker = MetricTrackerBase & {
|
|
19041
|
+
/**
|
|
19042
|
+
* Intervals already in the past when the metric was on. It might have
|
|
19043
|
+
* been out-of-schedule in those times however.
|
|
19044
|
+
*/
|
|
19045
|
+
active_intervals?: TimeInterval[];
|
|
19046
|
+
/**
|
|
19047
|
+
* The time the metric was last started if it's in a running state.
|
|
19048
|
+
* @format date-time
|
|
19049
|
+
* @example "2023-01-01T12:00:00.000Z"
|
|
19050
|
+
*/
|
|
19051
|
+
last_started_at?: string;
|
|
19052
|
+
org_schedule?: OrgScheduleSummary;
|
|
19053
|
+
/** The current status of the metric. */
|
|
19054
|
+
status: TimeMetricTrackerStatus;
|
|
19055
|
+
/**
|
|
19056
|
+
* The amount of time already consumed when the metric was last
|
|
19057
|
+
* stopped. Units are same as present in metric definition.
|
|
19058
|
+
* @format int32
|
|
19059
|
+
*/
|
|
19060
|
+
time_consumed?: number;
|
|
19061
|
+
};
|
|
19062
|
+
/** The current status of the metric. */
|
|
19063
|
+
export declare enum TimeMetricTrackerStatus {
|
|
19064
|
+
Completed = "completed",
|
|
19065
|
+
Paused = "paused",
|
|
19066
|
+
Running = "running"
|
|
19067
|
+
}
|
|
19068
|
+
/** time-metric-tracker-summary */
|
|
19069
|
+
export type TimeMetricTrackerSummary = MetricTrackerBaseSummary;
|
|
18508
19070
|
/** timeline-change-event */
|
|
18509
19071
|
export type TimelineChangeEvent = TimelineEntryBase & {
|
|
18510
19072
|
/** A timeline change event. */
|
|
@@ -18758,6 +19320,7 @@ export interface TimelineEntriesListRequest {
|
|
|
18758
19320
|
* all entries are returned.
|
|
18759
19321
|
*/
|
|
18760
19322
|
collections?: TimelineEntriesCollection[];
|
|
19323
|
+
created_date?: DateTimeFilter;
|
|
18761
19324
|
/**
|
|
18762
19325
|
* The cursor to resume iteration from. If not provided, then
|
|
18763
19326
|
* iteration starts from the beginning.
|
|
@@ -18773,8 +19336,9 @@ export interface TimelineEntriesListRequest {
|
|
|
18773
19336
|
*/
|
|
18774
19337
|
labels?: string[];
|
|
18775
19338
|
/**
|
|
18776
|
-
* The maximum number of entries to return.
|
|
18777
|
-
*
|
|
19339
|
+
* The maximum number of entries to return. Note that fewer (possibly
|
|
19340
|
+
* zero) entries may be returned even if there are more entries, where
|
|
19341
|
+
* the returned cursor(s) are guaranteed to be updated.
|
|
18778
19342
|
* @format int32
|
|
18779
19343
|
*/
|
|
18780
19344
|
limit?: number;
|
|
@@ -19091,6 +19655,25 @@ export interface TrackEventsPublishRequest {
|
|
|
19091
19655
|
}
|
|
19092
19656
|
/** track-events-publish-response */
|
|
19093
19657
|
export type TrackEventsPublishResponse = object;
|
|
19658
|
+
/**
|
|
19659
|
+
* trial-period
|
|
19660
|
+
* The trial period duration during which the services offered in the
|
|
19661
|
+
* service plan are not charged.
|
|
19662
|
+
*/
|
|
19663
|
+
export interface TrialPeriod {
|
|
19664
|
+
/**
|
|
19665
|
+
* Trial period end time.
|
|
19666
|
+
* @format date-time
|
|
19667
|
+
* @example "2023-01-01T12:00:00.000Z"
|
|
19668
|
+
*/
|
|
19669
|
+
trial_period_end_time: string;
|
|
19670
|
+
/**
|
|
19671
|
+
* Trial period start time.
|
|
19672
|
+
* @format date-time
|
|
19673
|
+
* @example "2023-01-01T12:00:00.000Z"
|
|
19674
|
+
*/
|
|
19675
|
+
trial_period_start_time: string;
|
|
19676
|
+
}
|
|
19094
19677
|
/** turing-sources */
|
|
19095
19678
|
export type TuringSources = (ArticleSummary | QuestionAnswerSummary) & {
|
|
19096
19679
|
type: TuringSourcesType;
|
|
@@ -19220,7 +19803,7 @@ export type Uom = AtomBase & {
|
|
|
19220
19803
|
*/
|
|
19221
19804
|
name: string;
|
|
19222
19805
|
part?: PartSummary;
|
|
19223
|
-
product
|
|
19806
|
+
product?: PartSummary;
|
|
19224
19807
|
/**
|
|
19225
19808
|
* Unit encapsulates the name of the unit and the type of the unit. For
|
|
19226
19809
|
* example, '#Number of API calls' where name is 'number_of_api_calls' and
|
|
@@ -20760,7 +21343,10 @@ export interface WebhookEventRequest {
|
|
|
20760
21343
|
account_created?: EventAccountCreated;
|
|
20761
21344
|
account_deleted?: EventAccountDeleted;
|
|
20762
21345
|
account_updated?: EventAccountUpdated;
|
|
21346
|
+
ai_agent_created?: EventAiAgentCreated;
|
|
21347
|
+
ai_agent_deleted?: EventAiAgentDeleted;
|
|
20763
21348
|
ai_agent_response?: EventAiAgentResponse;
|
|
21349
|
+
ai_agent_updated?: EventAiAgentUpdated;
|
|
20764
21350
|
article_created?: EventArticleCreated;
|
|
20765
21351
|
article_deleted?: EventArticleDeleted;
|
|
20766
21352
|
article_updated?: EventArticleUpdated;
|
|
@@ -20801,6 +21387,8 @@ export interface WebhookEventRequest {
|
|
|
20801
21387
|
rev_user_created?: EventRevUserCreated;
|
|
20802
21388
|
rev_user_deleted?: EventRevUserDeleted;
|
|
20803
21389
|
rev_user_updated?: EventRevUserUpdated;
|
|
21390
|
+
service_plan_created?: EventServicePlanCreated;
|
|
21391
|
+
service_plan_updated?: EventServicePlanUpdated;
|
|
20804
21392
|
sla_tracker_created?: EventSlaTrackerCreated;
|
|
20805
21393
|
sla_tracker_deleted?: EventSlaTrackerDeleted;
|
|
20806
21394
|
sla_tracker_fetched?: EventSlaTrackerFetched;
|
|
@@ -20846,6 +21434,9 @@ export interface WebhookEventRequest {
|
|
|
20846
21434
|
work_deleted?: EventWorkDeleted;
|
|
20847
21435
|
work_fetched?: EventWorkFetched;
|
|
20848
21436
|
work_updated?: EventWorkUpdated;
|
|
21437
|
+
workflow_created?: EventWorkflowCreated;
|
|
21438
|
+
workflow_deleted?: EventWorkflowDeleted;
|
|
21439
|
+
workflow_updated?: EventWorkflowUpdated;
|
|
20849
21440
|
}
|
|
20850
21441
|
/** webhook-event-response */
|
|
20851
21442
|
export interface WebhookEventResponse {
|
|
@@ -21160,7 +21751,34 @@ export interface WebhooksUpdateResponse {
|
|
|
21160
21751
|
* weekly-org-schedule
|
|
21161
21752
|
* The schedule for each week.
|
|
21162
21753
|
*/
|
|
21163
|
-
export
|
|
21754
|
+
export interface WeeklyOrgSchedule {
|
|
21755
|
+
/** The 'on' intervals of the week. */
|
|
21756
|
+
intervals?: WeeklyOrgScheduleInterval[];
|
|
21757
|
+
/**
|
|
21758
|
+
* Describes in which named period the schedule applies.
|
|
21759
|
+
* @format text
|
|
21760
|
+
*/
|
|
21761
|
+
period_name?: string;
|
|
21762
|
+
}
|
|
21763
|
+
/**
|
|
21764
|
+
* weekly-org-schedule-interval
|
|
21765
|
+
* A time interval within a week when the schedule is 'on'. It is defined
|
|
21766
|
+
* in minutes counting from Sunday midnight to Sunday midnight. (that is,
|
|
21767
|
+
* 0 is Sunday 00:00).
|
|
21768
|
+
*/
|
|
21769
|
+
export interface WeeklyOrgScheduleInterval {
|
|
21770
|
+
/**
|
|
21771
|
+
* The time (in minutes) when the interval starts.
|
|
21772
|
+
* @format int32
|
|
21773
|
+
*/
|
|
21774
|
+
from?: number;
|
|
21775
|
+
/**
|
|
21776
|
+
* The time (in minutes) when the interval ends. Should be larger than
|
|
21777
|
+
* 'from'.
|
|
21778
|
+
* @format int32
|
|
21779
|
+
*/
|
|
21780
|
+
to?: number;
|
|
21781
|
+
}
|
|
21164
21782
|
/** widget */
|
|
21165
21783
|
export type Widget = AtomBase & {
|
|
21166
21784
|
/** Data sources provide the backing data tables for the widget. */
|
|
@@ -21539,7 +22157,7 @@ export declare enum WidgetVisualizationType {
|
|
|
21539
22157
|
export interface WidgetsGetRequest {
|
|
21540
22158
|
/**
|
|
21541
22159
|
* The requested widget's ID.
|
|
21542
|
-
* @format
|
|
22160
|
+
* @format id
|
|
21543
22161
|
*/
|
|
21544
22162
|
id: string;
|
|
21545
22163
|
}
|
|
@@ -21577,12 +22195,24 @@ export type WorkBase = AtomBase & {
|
|
|
21577
22195
|
* @example ["don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"]
|
|
21578
22196
|
*/
|
|
21579
22197
|
custom_schema_fragments?: string[];
|
|
22198
|
+
/**
|
|
22199
|
+
* An opaque key that's associated with the work item that's
|
|
22200
|
+
* guaranteed to be unique across all work items of same type (issue,
|
|
22201
|
+
* ticket, etc).
|
|
22202
|
+
* @format text
|
|
22203
|
+
*/
|
|
22204
|
+
external_ref?: string;
|
|
21580
22205
|
/** The users that own the work. */
|
|
21581
22206
|
owned_by: UserSummary[];
|
|
21582
22207
|
/** Users that reported the work. */
|
|
21583
22208
|
reported_by?: UserSummary[];
|
|
21584
22209
|
/** Describes the current stage of a work item. */
|
|
21585
22210
|
stage?: LegacyStage;
|
|
22211
|
+
/**
|
|
22212
|
+
* Display name for current state.
|
|
22213
|
+
* @format text
|
|
22214
|
+
*/
|
|
22215
|
+
state_display_name?: string;
|
|
21586
22216
|
/**
|
|
21587
22217
|
* Stock schema fragment.
|
|
21588
22218
|
* @format id
|
|
@@ -21616,6 +22246,11 @@ export type WorkBaseSummary = AtomBaseSummary & {
|
|
|
21616
22246
|
owned_by: UserSummary[];
|
|
21617
22247
|
/** Describes the current stage of a work item. */
|
|
21618
22248
|
stage?: LegacyStageSummary;
|
|
22249
|
+
/**
|
|
22250
|
+
* Display name for current state.
|
|
22251
|
+
* @format text
|
|
22252
|
+
*/
|
|
22253
|
+
state_display_name?: string;
|
|
21619
22254
|
/** Sync information for records synced into/from DevRev. */
|
|
21620
22255
|
sync_metadata?: SyncMetadataSummary;
|
|
21621
22256
|
/**
|
|
@@ -21643,6 +22278,8 @@ export declare enum WorkType {
|
|
|
21643
22278
|
Task = "task",
|
|
21644
22279
|
Ticket = "ticket"
|
|
21645
22280
|
}
|
|
22281
|
+
/** workflow */
|
|
22282
|
+
export type Workflow = AtomBase;
|
|
21646
22283
|
/** workflow-run-summary */
|
|
21647
22284
|
export type WorkflowRunSummary = AtomBaseSummary;
|
|
21648
22285
|
/** workflow-search-summary */
|
|
@@ -21689,6 +22326,14 @@ export type WorksCreateRequest = (WorksCreateRequestIssue | WorksCreateRequestOp
|
|
|
21689
22326
|
* validate_required_fields: true.
|
|
21690
22327
|
*/
|
|
21691
22328
|
custom_schema_spec?: CustomSchemaSpec;
|
|
22329
|
+
/**
|
|
22330
|
+
* The external reference for the work item. This must be unique
|
|
22331
|
+
* within the type of work item.
|
|
22332
|
+
* @format text
|
|
22333
|
+
* @minLength 1
|
|
22334
|
+
* @maxLength 512
|
|
22335
|
+
*/
|
|
22336
|
+
external_ref?: string;
|
|
21692
22337
|
/**
|
|
21693
22338
|
* The users that own the work.
|
|
21694
22339
|
* @example ["DEVU-12345"]
|
|
@@ -21903,6 +22548,25 @@ export interface WorksCreateRequestTicket {
|
|
|
21903
22548
|
* @format id
|
|
21904
22549
|
*/
|
|
21905
22550
|
source_channel_v2?: string;
|
|
22551
|
+
/**
|
|
22552
|
+
* Visibility enum ID of the ticket. Stock allowed values:
|
|
22553
|
+
* ```
|
|
22554
|
+
* {
|
|
22555
|
+
* "id": 1,
|
|
22556
|
+
* "label": "internal",
|
|
22557
|
+
* "ordinal": 1,
|
|
22558
|
+
* "overridable": false
|
|
22559
|
+
* },
|
|
22560
|
+
* {
|
|
22561
|
+
* "id": 2,
|
|
22562
|
+
* "label": "external",
|
|
22563
|
+
* "ordinal": 2,
|
|
22564
|
+
* "overridable": false
|
|
22565
|
+
* }
|
|
22566
|
+
* ```
|
|
22567
|
+
* @format int64
|
|
22568
|
+
*/
|
|
22569
|
+
visibility?: number;
|
|
21906
22570
|
}
|
|
21907
22571
|
/** works-create-response */
|
|
21908
22572
|
export interface WorksCreateResponse {
|
|
@@ -21939,6 +22603,8 @@ export interface WorksExportRequest {
|
|
|
21939
22603
|
created_date?: DateFilter;
|
|
21940
22604
|
/** Filters for custom fields. */
|
|
21941
22605
|
custom_fields?: object;
|
|
22606
|
+
/** Filters for work with any of the provided external references. */
|
|
22607
|
+
external_ref?: string[];
|
|
21942
22608
|
/**
|
|
21943
22609
|
* The number of work items to return. The default is '50', the
|
|
21944
22610
|
* maximum is '5000'.
|
|
@@ -22068,6 +22734,8 @@ export interface WorksFilterTicket {
|
|
|
22068
22734
|
subtype?: string[];
|
|
22069
22735
|
/** The filter for survey aggregation. */
|
|
22070
22736
|
surveys?: SurveyAggregationFilter;
|
|
22737
|
+
/** Visibility enum ID of the ticket. */
|
|
22738
|
+
visibility?: number[];
|
|
22071
22739
|
}
|
|
22072
22740
|
/** works-get-request */
|
|
22073
22741
|
export interface WorksGetRequest {
|
|
@@ -22108,6 +22776,8 @@ export interface WorksListRequest {
|
|
|
22108
22776
|
cursor?: string;
|
|
22109
22777
|
/** Filters for custom fields. */
|
|
22110
22778
|
custom_fields?: object;
|
|
22779
|
+
/** Filters for work with any of the provided external references. */
|
|
22780
|
+
external_ref?: string[];
|
|
22111
22781
|
issue?: WorksFilterIssue;
|
|
22112
22782
|
/**
|
|
22113
22783
|
* The maximum number of works to return. The default is '50'.
|
|
@@ -22547,6 +23217,25 @@ export interface WorksUpdateRequestTicket {
|
|
|
22547
23217
|
* @format id
|
|
22548
23218
|
*/
|
|
22549
23219
|
source_channel_v2?: string | null;
|
|
23220
|
+
/**
|
|
23221
|
+
* Visibility enum ID of the ticket. Stock allowed values:
|
|
23222
|
+
* ```
|
|
23223
|
+
* {
|
|
23224
|
+
* "id": 1,
|
|
23225
|
+
* "label": "internal",
|
|
23226
|
+
* "ordinal": 1,
|
|
23227
|
+
* "overridable": false
|
|
23228
|
+
* },
|
|
23229
|
+
* {
|
|
23230
|
+
* "id": 2,
|
|
23231
|
+
* "label": "external",
|
|
23232
|
+
* "ordinal": 2,
|
|
23233
|
+
* "overridable": false
|
|
23234
|
+
* }
|
|
23235
|
+
* ```
|
|
23236
|
+
* @format int64
|
|
23237
|
+
*/
|
|
23238
|
+
visibility?: number;
|
|
22550
23239
|
}
|
|
22551
23240
|
/** works-update-request-ticket-channels */
|
|
22552
23241
|
export interface WorksUpdateRequestTicketChannels {
|
|
@@ -22609,7 +23298,7 @@ export declare class HttpClient<SecurityDataType = unknown> {
|
|
|
22609
23298
|
protected mergeRequestParams(params1: AxiosRequestConfig, params2?: AxiosRequestConfig): AxiosRequestConfig;
|
|
22610
23299
|
protected stringifyFormItem(formItem: unknown): string;
|
|
22611
23300
|
protected createFormData(input: Record<string, unknown>): FormData;
|
|
22612
|
-
request: <T = any, _E = any>({ secure, path, type, query, format, body, ...params }: FullRequestParams) => Promise<AxiosResponse<T, any>>;
|
|
23301
|
+
request: <T = any, _E = any>({ secure, path, type, query, format, body, ...params }: FullRequestParams) => Promise<AxiosResponse<T, any, {}>>;
|
|
22613
23302
|
}
|
|
22614
23303
|
/**
|
|
22615
23304
|
* @title DevRev REST API
|
|
@@ -22628,7 +23317,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22628
23317
|
* @request POST:/accounts.create
|
|
22629
23318
|
* @secure
|
|
22630
23319
|
*/
|
|
22631
|
-
accountsCreate: (data: AccountsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsCreateResponse, any>>;
|
|
23320
|
+
accountsCreate: (data: AccountsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsCreateResponse, any, {}>>;
|
|
22632
23321
|
/**
|
|
22633
23322
|
* @description Deletes an account.
|
|
22634
23323
|
*
|
|
@@ -22638,7 +23327,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22638
23327
|
* @request POST:/accounts.delete
|
|
22639
23328
|
* @secure
|
|
22640
23329
|
*/
|
|
22641
|
-
accountsDelete: (data: AccountsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
23330
|
+
accountsDelete: (data: AccountsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
22642
23331
|
/**
|
|
22643
23332
|
* @description Exports a collection of accounts.
|
|
22644
23333
|
*
|
|
@@ -22706,7 +23395,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22706
23395
|
tier?: string[];
|
|
22707
23396
|
/** Array of websites of accounts to be filtered. */
|
|
22708
23397
|
websites?: string[];
|
|
22709
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AccountsExportResponse, any>>;
|
|
23398
|
+
}, params?: RequestParams) => Promise<AxiosResponse<AccountsExportResponse, any, {}>>;
|
|
22710
23399
|
/**
|
|
22711
23400
|
* @description Exports a collection of accounts.
|
|
22712
23401
|
*
|
|
@@ -22716,7 +23405,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22716
23405
|
* @request POST:/accounts.export
|
|
22717
23406
|
* @secure
|
|
22718
23407
|
*/
|
|
22719
|
-
accountsExportPost: (data: AccountsExportRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsExportResponse, any>>;
|
|
23408
|
+
accountsExportPost: (data: AccountsExportRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsExportResponse, any, {}>>;
|
|
22720
23409
|
/**
|
|
22721
23410
|
* @description Retrieves an account's information.
|
|
22722
23411
|
*
|
|
@@ -22733,7 +23422,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22733
23422
|
* @example "ACC-12345"
|
|
22734
23423
|
*/
|
|
22735
23424
|
id: string;
|
|
22736
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AccountsGetResponse, any>>;
|
|
23425
|
+
}, params?: RequestParams) => Promise<AxiosResponse<AccountsGetResponse, any, {}>>;
|
|
22737
23426
|
/**
|
|
22738
23427
|
* @description Retrieves an account's information.
|
|
22739
23428
|
*
|
|
@@ -22743,7 +23432,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22743
23432
|
* @request POST:/accounts.get
|
|
22744
23433
|
* @secure
|
|
22745
23434
|
*/
|
|
22746
|
-
accountsGetPost: (data: AccountsGetRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsGetResponse, any>>;
|
|
23435
|
+
accountsGetPost: (data: AccountsGetRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsGetResponse, any, {}>>;
|
|
22747
23436
|
/**
|
|
22748
23437
|
* @description Gets a list of accounts.
|
|
22749
23438
|
*
|
|
@@ -22821,7 +23510,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22821
23510
|
tier?: string[];
|
|
22822
23511
|
/** Array of websites of accounts to be filtered. */
|
|
22823
23512
|
websites?: string[];
|
|
22824
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AccountsListResponse, any>>;
|
|
23513
|
+
}, params?: RequestParams) => Promise<AxiosResponse<AccountsListResponse, any, {}>>;
|
|
22825
23514
|
/**
|
|
22826
23515
|
* @description Gets a list of accounts.
|
|
22827
23516
|
*
|
|
@@ -22831,7 +23520,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22831
23520
|
* @request POST:/accounts.list
|
|
22832
23521
|
* @secure
|
|
22833
23522
|
*/
|
|
22834
|
-
accountsListPost: (data: AccountsListRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsListResponse, any>>;
|
|
23523
|
+
accountsListPost: (data: AccountsListRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsListResponse, any, {}>>;
|
|
22835
23524
|
/**
|
|
22836
23525
|
* @description Merges two accounts.
|
|
22837
23526
|
*
|
|
@@ -22841,7 +23530,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22841
23530
|
* @request POST:/accounts.merge
|
|
22842
23531
|
* @secure
|
|
22843
23532
|
*/
|
|
22844
|
-
accountsMerge: (data: AccountsMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
23533
|
+
accountsMerge: (data: AccountsMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
22845
23534
|
/**
|
|
22846
23535
|
* @description Updates an account's information.
|
|
22847
23536
|
*
|
|
@@ -22851,7 +23540,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22851
23540
|
* @request POST:/accounts.update
|
|
22852
23541
|
* @secure
|
|
22853
23542
|
*/
|
|
22854
|
-
accountsUpdate: (data: AccountsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsUpdateResponse, any>>;
|
|
23543
|
+
accountsUpdate: (data: AccountsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<AccountsUpdateResponse, any, {}>>;
|
|
22855
23544
|
/**
|
|
22856
23545
|
* @description Execute an AI agent input event asynchronously.
|
|
22857
23546
|
*
|
|
@@ -22861,7 +23550,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22861
23550
|
* @request POST:/ai-agents.events.execute-async
|
|
22862
23551
|
* @secure
|
|
22863
23552
|
*/
|
|
22864
|
-
aiAgentEventsExecuteAsync: (data: AiAgentEventsExecuteAsyncRequest, params?: RequestParams) => Promise<AxiosResponse<AiAgentEventsExecuteAsyncResponse, any>>;
|
|
23553
|
+
aiAgentEventsExecuteAsync: (data: AiAgentEventsExecuteAsyncRequest, params?: RequestParams) => Promise<AxiosResponse<AiAgentEventsExecuteAsyncResponse, any, {}>>;
|
|
22865
23554
|
/**
|
|
22866
23555
|
* @description Gets a single sync unit's information.
|
|
22867
23556
|
*
|
|
@@ -22877,7 +23566,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22877
23566
|
* @format id
|
|
22878
23567
|
*/
|
|
22879
23568
|
id: string;
|
|
22880
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsGetResponse, any>>;
|
|
23569
|
+
}, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsGetResponse, any, {}>>;
|
|
22881
23570
|
/**
|
|
22882
23571
|
* @description Gets a single sync unit's information.
|
|
22883
23572
|
*
|
|
@@ -22887,7 +23576,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22887
23576
|
* @request POST:/airdrop.sync-units.get
|
|
22888
23577
|
* @secure
|
|
22889
23578
|
*/
|
|
22890
|
-
airdropSyncUnitsGetPost: (data: AirdropSyncUnitsGetRequest, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsGetResponse, any>>;
|
|
23579
|
+
airdropSyncUnitsGetPost: (data: AirdropSyncUnitsGetRequest, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsGetResponse, any, {}>>;
|
|
22891
23580
|
/**
|
|
22892
23581
|
* @description Gets a list of sync unit historical records.
|
|
22893
23582
|
*
|
|
@@ -22927,7 +23616,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22927
23616
|
* used.
|
|
22928
23617
|
*/
|
|
22929
23618
|
mode?: ListMode;
|
|
22930
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsHistoryResponse, any>>;
|
|
23619
|
+
}, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsHistoryResponse, any, {}>>;
|
|
22931
23620
|
/**
|
|
22932
23621
|
* @description Gets a list of sync unit historical records.
|
|
22933
23622
|
*
|
|
@@ -22937,7 +23626,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
22937
23626
|
* @request POST:/airdrop.sync-units.history
|
|
22938
23627
|
* @secure
|
|
22939
23628
|
*/
|
|
22940
|
-
airdropSyncUnitsHistoryPost: (data: AirdropSyncUnitsHistoryRequest, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsHistoryResponse, any>>;
|
|
23629
|
+
airdropSyncUnitsHistoryPost: (data: AirdropSyncUnitsHistoryRequest, params?: RequestParams) => Promise<AxiosResponse<AirdropSyncUnitsHistoryResponse, any, {}>>;
|
|
22941
23630
|
/**
|
|
22942
23631
|
* @description Get count of articles matching given filter.
|
|
22943
23632
|
*
|
|
@@ -23004,7 +23693,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23004
23693
|
* @example ["TAG-12345"]
|
|
23005
23694
|
*/
|
|
23006
23695
|
tags?: string[];
|
|
23007
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ArticlesCountResponse, any>>;
|
|
23696
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ArticlesCountResponse, any, {}>>;
|
|
23008
23697
|
/**
|
|
23009
23698
|
* @description Get count of articles matching given filter.
|
|
23010
23699
|
*
|
|
@@ -23014,7 +23703,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23014
23703
|
* @request POST:/articles.count
|
|
23015
23704
|
* @secure
|
|
23016
23705
|
*/
|
|
23017
|
-
articlesCountPost: (data: ArticlesCountRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesCountResponse, any>>;
|
|
23706
|
+
articlesCountPost: (data: ArticlesCountRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesCountResponse, any, {}>>;
|
|
23018
23707
|
/**
|
|
23019
23708
|
* @description Article is an object which can contain a URL or artifacts in the resource. It also contains the data regarding the owner, author, status and published date of the object. This call creates an article.
|
|
23020
23709
|
*
|
|
@@ -23024,7 +23713,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23024
23713
|
* @request POST:/articles.create
|
|
23025
23714
|
* @secure
|
|
23026
23715
|
*/
|
|
23027
|
-
createArticle: (data: ArticlesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesCreateResponse, any>>;
|
|
23716
|
+
createArticle: (data: ArticlesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesCreateResponse, any, {}>>;
|
|
23028
23717
|
/**
|
|
23029
23718
|
* @description Deletes an article.
|
|
23030
23719
|
*
|
|
@@ -23034,7 +23723,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23034
23723
|
* @request POST:/articles.delete
|
|
23035
23724
|
* @secure
|
|
23036
23725
|
*/
|
|
23037
|
-
deleteArticle: (data: ArticlesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
23726
|
+
deleteArticle: (data: ArticlesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
23038
23727
|
/**
|
|
23039
23728
|
* @description Gets an article.
|
|
23040
23729
|
*
|
|
@@ -23051,7 +23740,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23051
23740
|
* @example "ARTICLE-12345"
|
|
23052
23741
|
*/
|
|
23053
23742
|
id: string;
|
|
23054
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ArticlesGetResponse, any>>;
|
|
23743
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ArticlesGetResponse, any, {}>>;
|
|
23055
23744
|
/**
|
|
23056
23745
|
* @description Gets an article.
|
|
23057
23746
|
*
|
|
@@ -23061,7 +23750,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23061
23750
|
* @request POST:/articles.get
|
|
23062
23751
|
* @secure
|
|
23063
23752
|
*/
|
|
23064
|
-
getArticlePost: (data: ArticlesGetRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesGetResponse, any>>;
|
|
23753
|
+
getArticlePost: (data: ArticlesGetRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesGetResponse, any, {}>>;
|
|
23065
23754
|
/**
|
|
23066
23755
|
* @description Lists a collection of articles.
|
|
23067
23756
|
*
|
|
@@ -23139,7 +23828,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23139
23828
|
* @example ["TAG-12345"]
|
|
23140
23829
|
*/
|
|
23141
23830
|
tags?: string[];
|
|
23142
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ArticlesListResponse, any>>;
|
|
23831
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ArticlesListResponse, any, {}>>;
|
|
23143
23832
|
/**
|
|
23144
23833
|
* @description Lists a collection of articles.
|
|
23145
23834
|
*
|
|
@@ -23149,7 +23838,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23149
23838
|
* @request POST:/articles.list
|
|
23150
23839
|
* @secure
|
|
23151
23840
|
*/
|
|
23152
|
-
listArticlesPost: (data: ArticlesListRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesListResponse, any>>;
|
|
23841
|
+
listArticlesPost: (data: ArticlesListRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesListResponse, any, {}>>;
|
|
23153
23842
|
/**
|
|
23154
23843
|
* @description Updates an article.
|
|
23155
23844
|
*
|
|
@@ -23159,7 +23848,44 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23159
23848
|
* @request POST:/articles.update
|
|
23160
23849
|
* @secure
|
|
23161
23850
|
*/
|
|
23162
|
-
updateArticle: (data: ArticlesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesUpdateResponse, any>>;
|
|
23851
|
+
updateArticle: (data: ArticlesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ArticlesUpdateResponse, any, {}>>;
|
|
23852
|
+
/**
|
|
23853
|
+
* @description Redirects to the artifact's download URL.
|
|
23854
|
+
*
|
|
23855
|
+
* @tags artifacts
|
|
23856
|
+
* @name ArtifactsDownload
|
|
23857
|
+
* @summary Download Artifacts
|
|
23858
|
+
* @request GET:/artifacts.download
|
|
23859
|
+
* @secure
|
|
23860
|
+
*/
|
|
23861
|
+
artifactsDownload: (query: {
|
|
23862
|
+
/**
|
|
23863
|
+
* The ID of the artifact to be downloaded.
|
|
23864
|
+
* @format id
|
|
23865
|
+
* @example "ARTIFACT-12345"
|
|
23866
|
+
*/
|
|
23867
|
+
id: string;
|
|
23868
|
+
/**
|
|
23869
|
+
* The access key for the artifact.
|
|
23870
|
+
* @format text
|
|
23871
|
+
*/
|
|
23872
|
+
key?: string;
|
|
23873
|
+
/**
|
|
23874
|
+
* The version of the artifact that needs to be downloaded.
|
|
23875
|
+
* @format text
|
|
23876
|
+
*/
|
|
23877
|
+
version?: string;
|
|
23878
|
+
}, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
23879
|
+
/**
|
|
23880
|
+
* @description Redirects to the artifact's download URL.
|
|
23881
|
+
*
|
|
23882
|
+
* @tags artifacts
|
|
23883
|
+
* @name ArtifactsDownloadPost
|
|
23884
|
+
* @summary Download Artifacts (POST)
|
|
23885
|
+
* @request POST:/artifacts.download
|
|
23886
|
+
* @secure
|
|
23887
|
+
*/
|
|
23888
|
+
artifactsDownloadPost: (data: ArtifactsDownloadRequest, params?: RequestParams) => Promise<AxiosResponse<any, any, {}>>;
|
|
23163
23889
|
/**
|
|
23164
23890
|
* @description Gets the requested artifact's information.
|
|
23165
23891
|
*
|
|
@@ -23181,7 +23907,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23181
23907
|
* @format text
|
|
23182
23908
|
*/
|
|
23183
23909
|
version?: string;
|
|
23184
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ArtifactsGetResponse, any>>;
|
|
23910
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ArtifactsGetResponse, any, {}>>;
|
|
23185
23911
|
/**
|
|
23186
23912
|
* @description Gets the requested artifact's information.
|
|
23187
23913
|
*
|
|
@@ -23191,7 +23917,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23191
23917
|
* @request POST:/artifacts.get
|
|
23192
23918
|
* @secure
|
|
23193
23919
|
*/
|
|
23194
|
-
artifactsGetPost: (data: ArtifactsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsGetResponse, any>>;
|
|
23920
|
+
artifactsGetPost: (data: ArtifactsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsGetResponse, any, {}>>;
|
|
23195
23921
|
/**
|
|
23196
23922
|
* @description List the artifacts attached to an object.
|
|
23197
23923
|
*
|
|
@@ -23207,7 +23933,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23207
23933
|
* @format id
|
|
23208
23934
|
*/
|
|
23209
23935
|
parent_id?: string;
|
|
23210
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ArtifactsListResponse, any>>;
|
|
23936
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ArtifactsListResponse, any, {}>>;
|
|
23211
23937
|
/**
|
|
23212
23938
|
* @description List the artifacts attached to an object.
|
|
23213
23939
|
*
|
|
@@ -23217,7 +23943,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23217
23943
|
* @request POST:/artifacts.list
|
|
23218
23944
|
* @secure
|
|
23219
23945
|
*/
|
|
23220
|
-
artifactsListPost: (data: ArtifactsListRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsListResponse, any>>;
|
|
23946
|
+
artifactsListPost: (data: ArtifactsListRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsListResponse, any, {}>>;
|
|
23221
23947
|
/**
|
|
23222
23948
|
* @description Gets the download URL for the artifact.
|
|
23223
23949
|
*
|
|
@@ -23239,7 +23965,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23239
23965
|
* @format text
|
|
23240
23966
|
*/
|
|
23241
23967
|
version?: string;
|
|
23242
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ArtifactsLocateResponse, any>>;
|
|
23968
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ArtifactsLocateResponse, any, {}>>;
|
|
23243
23969
|
/**
|
|
23244
23970
|
* @description Gets the download URL for the artifact.
|
|
23245
23971
|
*
|
|
@@ -23249,7 +23975,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23249
23975
|
* @request POST:/artifacts.locate
|
|
23250
23976
|
* @secure
|
|
23251
23977
|
*/
|
|
23252
|
-
artifactsLocatePost: (data: ArtifactsLocateRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsLocateResponse, any>>;
|
|
23978
|
+
artifactsLocatePost: (data: ArtifactsLocateRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsLocateResponse, any, {}>>;
|
|
23253
23979
|
/**
|
|
23254
23980
|
* @description Creates an artifact and generates an upload URL for its data.
|
|
23255
23981
|
*
|
|
@@ -23259,7 +23985,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23259
23985
|
* @request POST:/artifacts.prepare
|
|
23260
23986
|
* @secure
|
|
23261
23987
|
*/
|
|
23262
|
-
artifactsPrepare: (data: ArtifactsPrepareRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsPrepareResponse, any>>;
|
|
23988
|
+
artifactsPrepare: (data: ArtifactsPrepareRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsPrepareResponse, any, {}>>;
|
|
23263
23989
|
/**
|
|
23264
23990
|
* @description Permanently deletes a version of an artifact.
|
|
23265
23991
|
*
|
|
@@ -23269,7 +23995,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23269
23995
|
* @request POST:/artifacts.versions.delete
|
|
23270
23996
|
* @secure
|
|
23271
23997
|
*/
|
|
23272
|
-
artifactsHardDeleteVersion: (data: ArtifactsHardDeleteVersionRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
23998
|
+
artifactsHardDeleteVersion: (data: ArtifactsHardDeleteVersionRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
23273
23999
|
/**
|
|
23274
24000
|
* @description Prepares a new version for an artifact, returning the URL and form data to upload the updated file.
|
|
23275
24001
|
*
|
|
@@ -23279,7 +24005,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23279
24005
|
* @request POST:/artifacts.versions.prepare
|
|
23280
24006
|
* @secure
|
|
23281
24007
|
*/
|
|
23282
|
-
artifactsVersionsPrepare: (data: ArtifactsVersionsPrepareRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsVersionsPrepareResponse, any>>;
|
|
24008
|
+
artifactsVersionsPrepare: (data: ArtifactsVersionsPrepareRequest, params?: RequestParams) => Promise<AxiosResponse<ArtifactsVersionsPrepareResponse, any, {}>>;
|
|
23283
24009
|
/**
|
|
23284
24010
|
* @description Gets the specified object.
|
|
23285
24011
|
*
|
|
@@ -23295,7 +24021,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23295
24021
|
* @format id
|
|
23296
24022
|
*/
|
|
23297
24023
|
id: string;
|
|
23298
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AtomsGetResponse, any>>;
|
|
24024
|
+
}, params?: RequestParams) => Promise<AxiosResponse<AtomsGetResponse, any, {}>>;
|
|
23299
24025
|
/**
|
|
23300
24026
|
* @description Gets the specified object.
|
|
23301
24027
|
*
|
|
@@ -23305,7 +24031,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23305
24031
|
* @request POST:/atoms.get
|
|
23306
24032
|
* @secure
|
|
23307
24033
|
*/
|
|
23308
|
-
atomsGetPost: (data: AtomsGetRequest, params?: RequestParams) => Promise<AxiosResponse<AtomsGetResponse, any>>;
|
|
24034
|
+
atomsGetPost: (data: AtomsGetRequest, params?: RequestParams) => Promise<AxiosResponse<AtomsGetResponse, any, {}>>;
|
|
23309
24035
|
/**
|
|
23310
24036
|
* @description Retrieves audit logs.
|
|
23311
24037
|
*
|
|
@@ -23315,7 +24041,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23315
24041
|
* @request POST:/audit-logs.fetch
|
|
23316
24042
|
* @secure
|
|
23317
24043
|
*/
|
|
23318
|
-
exportAuditLogs: (data: ExportAuditLogsRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
24044
|
+
exportAuditLogs: (data: ExportAuditLogsRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
23319
24045
|
/**
|
|
23320
24046
|
* @description Creates a JWT corresponding to the requested token type for the authenticated user.
|
|
23321
24047
|
*
|
|
@@ -23325,7 +24051,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23325
24051
|
* @request POST:/auth-tokens.create
|
|
23326
24052
|
* @secure
|
|
23327
24053
|
*/
|
|
23328
|
-
authTokensCreate: (data: AuthTokensCreateRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensCreateResponse, any>>;
|
|
24054
|
+
authTokensCreate: (data: AuthTokensCreateRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensCreateResponse, any, {}>>;
|
|
23329
24055
|
/**
|
|
23330
24056
|
* @description Revokes the token that matches the given token ID issued under the given Dev organization.
|
|
23331
24057
|
*
|
|
@@ -23335,7 +24061,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23335
24061
|
* @request POST:/auth-tokens.delete
|
|
23336
24062
|
* @secure
|
|
23337
24063
|
*/
|
|
23338
|
-
authTokensDelete: (data: AuthTokensDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
24064
|
+
authTokensDelete: (data: AuthTokensDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
23339
24065
|
/**
|
|
23340
24066
|
* @description Gets the token metadata corresponding to the given token ID under the given Dev organization.
|
|
23341
24067
|
*
|
|
@@ -23351,7 +24077,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23351
24077
|
* @format id
|
|
23352
24078
|
*/
|
|
23353
24079
|
token_id: string;
|
|
23354
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AuthTokensGetResponse, any>>;
|
|
24080
|
+
}, params?: RequestParams) => Promise<AxiosResponse<AuthTokensGetResponse, any, {}>>;
|
|
23355
24081
|
/**
|
|
23356
24082
|
* @description Gets the token metadata corresponding to the given token ID under the given Dev organization.
|
|
23357
24083
|
*
|
|
@@ -23361,7 +24087,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23361
24087
|
* @request POST:/auth-tokens.get
|
|
23362
24088
|
* @secure
|
|
23363
24089
|
*/
|
|
23364
|
-
authTokensGetPost: (data: AuthTokensGetRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensGetResponse, any>>;
|
|
24090
|
+
authTokensGetPost: (data: AuthTokensGetRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensGetResponse, any, {}>>;
|
|
23365
24091
|
/**
|
|
23366
24092
|
* @description Returns the Dev organization, user and token attributes extracted from the auth token.
|
|
23367
24093
|
*
|
|
@@ -23371,7 +24097,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23371
24097
|
* @request GET:/auth-tokens.info
|
|
23372
24098
|
* @secure
|
|
23373
24099
|
*/
|
|
23374
|
-
authTokensInfo: (params?: RequestParams) => Promise<AxiosResponse<AuthTokensInfoResponse, any>>;
|
|
24100
|
+
authTokensInfo: (params?: RequestParams) => Promise<AxiosResponse<AuthTokensInfoResponse, any, {}>>;
|
|
23375
24101
|
/**
|
|
23376
24102
|
* @description Returns the Dev organization, user and token attributes extracted from the auth token.
|
|
23377
24103
|
*
|
|
@@ -23381,7 +24107,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23381
24107
|
* @request POST:/auth-tokens.info
|
|
23382
24108
|
* @secure
|
|
23383
24109
|
*/
|
|
23384
|
-
authTokensInfoPost: (data: AuthTokensInfoRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensInfoResponse, any>>;
|
|
24110
|
+
authTokensInfoPost: (data: AuthTokensInfoRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensInfoResponse, any, {}>>;
|
|
23385
24111
|
/**
|
|
23386
24112
|
* @description Gets the token metadata for all the tokens corresponding to the given token type issued for a given subject.
|
|
23387
24113
|
*
|
|
@@ -23410,7 +24136,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23410
24136
|
* @format id
|
|
23411
24137
|
*/
|
|
23412
24138
|
subject?: string;
|
|
23413
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AuthTokensListResponse, any>>;
|
|
24139
|
+
}, params?: RequestParams) => Promise<AxiosResponse<AuthTokensListResponse, any, {}>>;
|
|
23414
24140
|
/**
|
|
23415
24141
|
* @description Gets the token metadata for all the tokens corresponding to the given token type issued for a given subject.
|
|
23416
24142
|
*
|
|
@@ -23420,7 +24146,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23420
24146
|
* @request POST:/auth-tokens.list
|
|
23421
24147
|
* @secure
|
|
23422
24148
|
*/
|
|
23423
|
-
authTokensListPost: (data: AuthTokensListRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensListResponse, any>>;
|
|
24149
|
+
authTokensListPost: (data: AuthTokensListRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensListResponse, any, {}>>;
|
|
23424
24150
|
/**
|
|
23425
24151
|
* @description Revokes all the tokens that matches the given token type created by the authenticated user.
|
|
23426
24152
|
*
|
|
@@ -23430,7 +24156,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23430
24156
|
* @request POST:/auth-tokens.self.delete
|
|
23431
24157
|
* @secure
|
|
23432
24158
|
*/
|
|
23433
|
-
authTokensSelfDelete: (data: AuthTokensSelfDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
24159
|
+
authTokensSelfDelete: (data: AuthTokensSelfDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
23434
24160
|
/**
|
|
23435
24161
|
* @description Updates token metadata of a token issued under a given Dev organization.
|
|
23436
24162
|
*
|
|
@@ -23440,7 +24166,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23440
24166
|
* @request POST:/auth-tokens.update
|
|
23441
24167
|
* @secure
|
|
23442
24168
|
*/
|
|
23443
|
-
authTokensUpdate: (data: AuthTokensUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensUpdateResponse, any>>;
|
|
24169
|
+
authTokensUpdate: (data: AuthTokensUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<AuthTokensUpdateResponse, any, {}>>;
|
|
23444
24170
|
/**
|
|
23445
24171
|
* @description Creates a new brand.
|
|
23446
24172
|
*
|
|
@@ -23450,7 +24176,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23450
24176
|
* @request POST:/brands.create
|
|
23451
24177
|
* @secure
|
|
23452
24178
|
*/
|
|
23453
|
-
brandsCreate: (data: BrandsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<BrandsCreateResponse, any>>;
|
|
24179
|
+
brandsCreate: (data: BrandsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<BrandsCreateResponse, any, {}>>;
|
|
23454
24180
|
/**
|
|
23455
24181
|
* @description Deletes a brand by its ID.
|
|
23456
24182
|
*
|
|
@@ -23460,7 +24186,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23460
24186
|
* @request POST:/brands.delete
|
|
23461
24187
|
* @secure
|
|
23462
24188
|
*/
|
|
23463
|
-
brandsDelete: (data: BrandsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
24189
|
+
brandsDelete: (data: BrandsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
23464
24190
|
/**
|
|
23465
24191
|
* @description Gets a brand by its ID.
|
|
23466
24192
|
*
|
|
@@ -23476,7 +24202,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23476
24202
|
* @format id
|
|
23477
24203
|
*/
|
|
23478
24204
|
id: string;
|
|
23479
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BrandsGetResponse, any>>;
|
|
24205
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BrandsGetResponse, any, {}>>;
|
|
23480
24206
|
/**
|
|
23481
24207
|
* @description Gets a brand by its ID.
|
|
23482
24208
|
*
|
|
@@ -23486,7 +24212,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23486
24212
|
* @request POST:/brands.get
|
|
23487
24213
|
* @secure
|
|
23488
24214
|
*/
|
|
23489
|
-
brandsGetPost: (data: BrandsGetRequest, params?: RequestParams) => Promise<AxiosResponse<BrandsGetResponse, any>>;
|
|
24215
|
+
brandsGetPost: (data: BrandsGetRequest, params?: RequestParams) => Promise<AxiosResponse<BrandsGetResponse, any, {}>>;
|
|
23490
24216
|
/**
|
|
23491
24217
|
* @description Lists all brands.
|
|
23492
24218
|
*
|
|
@@ -23503,7 +24229,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23503
24229
|
* @format text
|
|
23504
24230
|
*/
|
|
23505
24231
|
cursor?: string;
|
|
23506
|
-
}, params?: RequestParams) => Promise<AxiosResponse<BrandsListResponse, any>>;
|
|
24232
|
+
}, params?: RequestParams) => Promise<AxiosResponse<BrandsListResponse, any, {}>>;
|
|
23507
24233
|
/**
|
|
23508
24234
|
* @description Lists all brands.
|
|
23509
24235
|
*
|
|
@@ -23513,7 +24239,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23513
24239
|
* @request POST:/brands.list
|
|
23514
24240
|
* @secure
|
|
23515
24241
|
*/
|
|
23516
|
-
brandsListPost: (data: BrandsListRequest, params?: RequestParams) => Promise<AxiosResponse<BrandsListResponse, any>>;
|
|
24242
|
+
brandsListPost: (data: BrandsListRequest, params?: RequestParams) => Promise<AxiosResponse<BrandsListResponse, any, {}>>;
|
|
23517
24243
|
/**
|
|
23518
24244
|
* @description Updates a brand by its ID.
|
|
23519
24245
|
*
|
|
@@ -23523,7 +24249,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23523
24249
|
* @request POST:/brands.update
|
|
23524
24250
|
* @secure
|
|
23525
24251
|
*/
|
|
23526
|
-
brandsUpdate: (data: BrandsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<BrandsUpdateResponse, any>>;
|
|
24252
|
+
brandsUpdate: (data: BrandsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<BrandsUpdateResponse, any, {}>>;
|
|
23527
24253
|
/**
|
|
23528
24254
|
* @description Creates a new chat, or optionally opens an existing one.
|
|
23529
24255
|
*
|
|
@@ -23533,7 +24259,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23533
24259
|
* @request POST:/chats.create
|
|
23534
24260
|
* @secure
|
|
23535
24261
|
*/
|
|
23536
|
-
chatsCreate: (data: ChatsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsCreateResponse, any>>;
|
|
24262
|
+
chatsCreate: (data: ChatsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsCreateResponse, any, {}>>;
|
|
23537
24263
|
/**
|
|
23538
24264
|
* @description Gets a chat's information.
|
|
23539
24265
|
*
|
|
@@ -23550,7 +24276,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23550
24276
|
* @example "CHAN-AbCdEfGh"
|
|
23551
24277
|
*/
|
|
23552
24278
|
id?: string;
|
|
23553
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ChatsGetResponse, any>>;
|
|
24279
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ChatsGetResponse, any, {}>>;
|
|
23554
24280
|
/**
|
|
23555
24281
|
* @description Gets a chat's information.
|
|
23556
24282
|
*
|
|
@@ -23560,7 +24286,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23560
24286
|
* @request POST:/chats.get
|
|
23561
24287
|
* @secure
|
|
23562
24288
|
*/
|
|
23563
|
-
chatsGetPost: (data: ChatsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsGetResponse, any>>;
|
|
24289
|
+
chatsGetPost: (data: ChatsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsGetResponse, any, {}>>;
|
|
23564
24290
|
/**
|
|
23565
24291
|
* @description Updates a chat's information.
|
|
23566
24292
|
*
|
|
@@ -23570,7 +24296,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23570
24296
|
* @request POST:/chats.update
|
|
23571
24297
|
* @secure
|
|
23572
24298
|
*/
|
|
23573
|
-
chatsUpdate: (data: ChatsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsUpdateResponse, any>>;
|
|
24299
|
+
chatsUpdate: (data: ChatsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ChatsUpdateResponse, any, {}>>;
|
|
23574
24300
|
/**
|
|
23575
24301
|
* @description Creates a code change object.
|
|
23576
24302
|
*
|
|
@@ -23580,7 +24306,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23580
24306
|
* @request POST:/code-changes.create
|
|
23581
24307
|
* @secure
|
|
23582
24308
|
*/
|
|
23583
|
-
codeChangesCreate: (data: CodeChangesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesCreateResponse, any>>;
|
|
24309
|
+
codeChangesCreate: (data: CodeChangesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesCreateResponse, any, {}>>;
|
|
23584
24310
|
/**
|
|
23585
24311
|
* @description Deletes a code change object.
|
|
23586
24312
|
*
|
|
@@ -23590,7 +24316,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23590
24316
|
* @request POST:/code-changes.delete
|
|
23591
24317
|
* @secure
|
|
23592
24318
|
*/
|
|
23593
|
-
codeChangesDelete: (data: CodeChangesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
24319
|
+
codeChangesDelete: (data: CodeChangesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
23594
24320
|
/**
|
|
23595
24321
|
* @description Gets a code change object.
|
|
23596
24322
|
*
|
|
@@ -23606,7 +24332,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23606
24332
|
* @format id
|
|
23607
24333
|
*/
|
|
23608
24334
|
id: string;
|
|
23609
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CodeChangesGetResponse, any>>;
|
|
24335
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CodeChangesGetResponse, any, {}>>;
|
|
23610
24336
|
/**
|
|
23611
24337
|
* @description Gets a code change object.
|
|
23612
24338
|
*
|
|
@@ -23616,7 +24342,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23616
24342
|
* @request POST:/code-changes.get
|
|
23617
24343
|
* @secure
|
|
23618
24344
|
*/
|
|
23619
|
-
codeChangesGetPost: (data: CodeChangesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesGetResponse, any>>;
|
|
24345
|
+
codeChangesGetPost: (data: CodeChangesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesGetResponse, any, {}>>;
|
|
23620
24346
|
/**
|
|
23621
24347
|
* @description Lists code change objects.
|
|
23622
24348
|
*
|
|
@@ -23644,7 +24370,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23644
24370
|
* used.
|
|
23645
24371
|
*/
|
|
23646
24372
|
mode?: ListMode;
|
|
23647
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CodeChangesListResponse, any>>;
|
|
24373
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CodeChangesListResponse, any, {}>>;
|
|
23648
24374
|
/**
|
|
23649
24375
|
* @description Lists code change objects.
|
|
23650
24376
|
*
|
|
@@ -23654,7 +24380,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23654
24380
|
* @request POST:/code-changes.list
|
|
23655
24381
|
* @secure
|
|
23656
24382
|
*/
|
|
23657
|
-
codeChangesListPost: (data: CodeChangesListRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesListResponse, any>>;
|
|
24383
|
+
codeChangesListPost: (data: CodeChangesListRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesListResponse, any, {}>>;
|
|
23658
24384
|
/**
|
|
23659
24385
|
* @description Updates a code change object.
|
|
23660
24386
|
*
|
|
@@ -23664,7 +24390,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23664
24390
|
* @request POST:/code-changes.update
|
|
23665
24391
|
* @secure
|
|
23666
24392
|
*/
|
|
23667
|
-
codeChangesUpdate: (data: CodeChangesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesUpdateResponse, any>>;
|
|
24393
|
+
codeChangesUpdate: (data: CodeChangesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CodeChangesUpdateResponse, any, {}>>;
|
|
23668
24394
|
/**
|
|
23669
24395
|
* @description Creates a command.
|
|
23670
24396
|
*
|
|
@@ -23674,7 +24400,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23674
24400
|
* @request POST:/commands.create
|
|
23675
24401
|
* @secure
|
|
23676
24402
|
*/
|
|
23677
|
-
commandsCreate: (data: CommandCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CommandCreateResponse, any>>;
|
|
24403
|
+
commandsCreate: (data: CommandCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CommandCreateResponse, any, {}>>;
|
|
23678
24404
|
/**
|
|
23679
24405
|
* @description Gets a command.
|
|
23680
24406
|
*
|
|
@@ -23690,7 +24416,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23690
24416
|
* @format id
|
|
23691
24417
|
*/
|
|
23692
24418
|
id: string;
|
|
23693
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CommandGetResponse, any>>;
|
|
24419
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CommandGetResponse, any, {}>>;
|
|
23694
24420
|
/**
|
|
23695
24421
|
* @description Gets a command.
|
|
23696
24422
|
*
|
|
@@ -23700,7 +24426,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23700
24426
|
* @request POST:/commands.get
|
|
23701
24427
|
* @secure
|
|
23702
24428
|
*/
|
|
23703
|
-
commandsGetPost: (data: CommandGetRequest, params?: RequestParams) => Promise<AxiosResponse<CommandGetResponse, any>>;
|
|
24429
|
+
commandsGetPost: (data: CommandGetRequest, params?: RequestParams) => Promise<AxiosResponse<CommandGetResponse, any, {}>>;
|
|
23704
24430
|
/**
|
|
23705
24431
|
* @description Lists commands for a Dev organization.
|
|
23706
24432
|
*
|
|
@@ -23741,7 +24467,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23741
24467
|
source_object_id?: string;
|
|
23742
24468
|
/** Filter commands based on status. */
|
|
23743
24469
|
status?: CommandStatus[];
|
|
23744
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CommandsListResponse, any>>;
|
|
24470
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CommandsListResponse, any, {}>>;
|
|
23745
24471
|
/**
|
|
23746
24472
|
* @description Lists commands for a Dev organization.
|
|
23747
24473
|
*
|
|
@@ -23751,7 +24477,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23751
24477
|
* @request POST:/commands.list
|
|
23752
24478
|
* @secure
|
|
23753
24479
|
*/
|
|
23754
|
-
commandsListPost: (data: CommandsListRequest, params?: RequestParams) => Promise<AxiosResponse<CommandsListResponse, any>>;
|
|
24480
|
+
commandsListPost: (data: CommandsListRequest, params?: RequestParams) => Promise<AxiosResponse<CommandsListResponse, any, {}>>;
|
|
23755
24481
|
/**
|
|
23756
24482
|
* @description Updates a command.
|
|
23757
24483
|
*
|
|
@@ -23761,7 +24487,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23761
24487
|
* @request POST:/commands.update
|
|
23762
24488
|
* @secure
|
|
23763
24489
|
*/
|
|
23764
|
-
commandsUpdate: (data: CommandUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CommandUpdateResponse, any>>;
|
|
24490
|
+
commandsUpdate: (data: CommandUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CommandUpdateResponse, any, {}>>;
|
|
23765
24491
|
/**
|
|
23766
24492
|
* @description Create the content template.
|
|
23767
24493
|
*
|
|
@@ -23771,7 +24497,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23771
24497
|
* @request POST:/content-template.create
|
|
23772
24498
|
* @secure
|
|
23773
24499
|
*/
|
|
23774
|
-
contentTemplateCreate: (data: ContentTemplateCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateCreateResponse, any>>;
|
|
24500
|
+
contentTemplateCreate: (data: ContentTemplateCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateCreateResponse, any, {}>>;
|
|
23775
24501
|
/**
|
|
23776
24502
|
* @description Get the content template.
|
|
23777
24503
|
*
|
|
@@ -23787,7 +24513,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23787
24513
|
* @format id
|
|
23788
24514
|
*/
|
|
23789
24515
|
id: string;
|
|
23790
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateGetResponse, any>>;
|
|
24516
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateGetResponse, any, {}>>;
|
|
23791
24517
|
/**
|
|
23792
24518
|
* @description Get the content template.
|
|
23793
24519
|
*
|
|
@@ -23797,7 +24523,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23797
24523
|
* @request POST:/content-template.get
|
|
23798
24524
|
* @secure
|
|
23799
24525
|
*/
|
|
23800
|
-
contentTemplateGetPost: (data: ContentTemplateGetRequest, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateGetResponse, any>>;
|
|
24526
|
+
contentTemplateGetPost: (data: ContentTemplateGetRequest, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateGetResponse, any, {}>>;
|
|
23801
24527
|
/**
|
|
23802
24528
|
* @description Lists the content templates.
|
|
23803
24529
|
*
|
|
@@ -23839,7 +24565,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23839
24565
|
sort_by?: string[];
|
|
23840
24566
|
/** Filters for content template of the provided types. */
|
|
23841
24567
|
type?: ContentTemplateType[];
|
|
23842
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateListResponse, any>>;
|
|
24568
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateListResponse, any, {}>>;
|
|
23843
24569
|
/**
|
|
23844
24570
|
* @description Lists the content templates.
|
|
23845
24571
|
*
|
|
@@ -23849,7 +24575,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23849
24575
|
* @request POST:/content-template.list
|
|
23850
24576
|
* @secure
|
|
23851
24577
|
*/
|
|
23852
|
-
contentTemplateListPost: (data: ContentTemplateListRequest, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateListResponse, any>>;
|
|
24578
|
+
contentTemplateListPost: (data: ContentTemplateListRequest, params?: RequestParams) => Promise<AxiosResponse<ContentTemplateListResponse, any, {}>>;
|
|
23853
24579
|
/**
|
|
23854
24580
|
* @description Creates a conversation.
|
|
23855
24581
|
*
|
|
@@ -23859,7 +24585,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23859
24585
|
* @request POST:/conversations.create
|
|
23860
24586
|
* @secure
|
|
23861
24587
|
*/
|
|
23862
|
-
conversationsCreate: (data: ConversationsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsCreateResponse, any>>;
|
|
24588
|
+
conversationsCreate: (data: ConversationsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsCreateResponse, any, {}>>;
|
|
23863
24589
|
/**
|
|
23864
24590
|
* @description Deletes the requested conversation.
|
|
23865
24591
|
*
|
|
@@ -23869,7 +24595,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23869
24595
|
* @request POST:/conversations.delete
|
|
23870
24596
|
* @secure
|
|
23871
24597
|
*/
|
|
23872
|
-
conversationsDelete: (data: ConversationsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
24598
|
+
conversationsDelete: (data: ConversationsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
23873
24599
|
/**
|
|
23874
24600
|
* @description Exports a collection of conversation items.
|
|
23875
24601
|
*
|
|
@@ -23982,7 +24708,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23982
24708
|
* @format text
|
|
23983
24709
|
*/
|
|
23984
24710
|
'tags_v2.value'?: string;
|
|
23985
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ConversationsExportResponse, any>>;
|
|
24711
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ConversationsExportResponse, any, {}>>;
|
|
23986
24712
|
/**
|
|
23987
24713
|
* @description Exports a collection of conversation items.
|
|
23988
24714
|
*
|
|
@@ -23992,7 +24718,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
23992
24718
|
* @request POST:/conversations.export
|
|
23993
24719
|
* @secure
|
|
23994
24720
|
*/
|
|
23995
|
-
conversationsExportPost: (data: ConversationsExportRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsExportResponse, any>>;
|
|
24721
|
+
conversationsExportPost: (data: ConversationsExportRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsExportResponse, any, {}>>;
|
|
23996
24722
|
/**
|
|
23997
24723
|
* @description Gets the requested conversation's information.
|
|
23998
24724
|
*
|
|
@@ -24008,7 +24734,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24008
24734
|
* @format id
|
|
24009
24735
|
*/
|
|
24010
24736
|
id: string;
|
|
24011
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ConversationsGetResponse, any>>;
|
|
24737
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ConversationsGetResponse, any, {}>>;
|
|
24012
24738
|
/**
|
|
24013
24739
|
* @description Gets the requested conversation's information.
|
|
24014
24740
|
*
|
|
@@ -24018,7 +24744,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24018
24744
|
* @request POST:/conversations.get
|
|
24019
24745
|
* @secure
|
|
24020
24746
|
*/
|
|
24021
|
-
conversationsGetPost: (data: ConversationsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsGetResponse, any>>;
|
|
24747
|
+
conversationsGetPost: (data: ConversationsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsGetResponse, any, {}>>;
|
|
24022
24748
|
/**
|
|
24023
24749
|
* @description Lists the available conversations.
|
|
24024
24750
|
*
|
|
@@ -24141,7 +24867,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24141
24867
|
* @format text
|
|
24142
24868
|
*/
|
|
24143
24869
|
'tags_v2.value'?: string;
|
|
24144
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ConversationsListResponse, any>>;
|
|
24870
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ConversationsListResponse, any, {}>>;
|
|
24145
24871
|
/**
|
|
24146
24872
|
* @description Lists the available conversations.
|
|
24147
24873
|
*
|
|
@@ -24151,7 +24877,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24151
24877
|
* @request POST:/conversations.list
|
|
24152
24878
|
* @secure
|
|
24153
24879
|
*/
|
|
24154
|
-
conversationsListPost: (data: ConversationsListRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsListResponse, any>>;
|
|
24880
|
+
conversationsListPost: (data: ConversationsListRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsListResponse, any, {}>>;
|
|
24155
24881
|
/**
|
|
24156
24882
|
* @description Updates the requested conversation.
|
|
24157
24883
|
*
|
|
@@ -24161,7 +24887,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24161
24887
|
* @request POST:/conversations.update
|
|
24162
24888
|
* @secure
|
|
24163
24889
|
*/
|
|
24164
|
-
conversationsUpdate: (data: ConversationsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsUpdateResponse, any>>;
|
|
24890
|
+
conversationsUpdate: (data: ConversationsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ConversationsUpdateResponse, any, {}>>;
|
|
24165
24891
|
/**
|
|
24166
24892
|
* @description Counts custom objects.
|
|
24167
24893
|
*
|
|
@@ -24179,7 +24905,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24179
24905
|
leaf_type: string;
|
|
24180
24906
|
/** List of filters to apply. */
|
|
24181
24907
|
filters?: any[];
|
|
24182
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCountResponse, any>>;
|
|
24908
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCountResponse, any, {}>>;
|
|
24183
24909
|
/**
|
|
24184
24910
|
* @description Counts custom objects.
|
|
24185
24911
|
*
|
|
@@ -24189,7 +24915,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24189
24915
|
* @request POST:/custom-objects.count
|
|
24190
24916
|
* @secure
|
|
24191
24917
|
*/
|
|
24192
|
-
customObjectsCountPost: (data: CustomObjectsCountRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCountResponse, any>>;
|
|
24918
|
+
customObjectsCountPost: (data: CustomObjectsCountRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCountResponse, any, {}>>;
|
|
24193
24919
|
/**
|
|
24194
24920
|
* @description Creates a custom object.
|
|
24195
24921
|
*
|
|
@@ -24199,7 +24925,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24199
24925
|
* @request POST:/custom-objects.create
|
|
24200
24926
|
* @secure
|
|
24201
24927
|
*/
|
|
24202
|
-
customObjectsCreate: (data: CustomObjectsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCreateResponse, any>>;
|
|
24928
|
+
customObjectsCreate: (data: CustomObjectsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsCreateResponse, any, {}>>;
|
|
24203
24929
|
/**
|
|
24204
24930
|
* @description Deletes a custom object.
|
|
24205
24931
|
*
|
|
@@ -24209,7 +24935,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24209
24935
|
* @request POST:/custom-objects.delete
|
|
24210
24936
|
* @secure
|
|
24211
24937
|
*/
|
|
24212
|
-
customObjectsDelete: (data: CustomObjectsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
24938
|
+
customObjectsDelete: (data: CustomObjectsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
24213
24939
|
/**
|
|
24214
24940
|
* @description Gets a custom object.
|
|
24215
24941
|
*
|
|
@@ -24225,7 +24951,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24225
24951
|
* @format id
|
|
24226
24952
|
*/
|
|
24227
24953
|
id?: string;
|
|
24228
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsGetResponse, any>>;
|
|
24954
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsGetResponse, any, {}>>;
|
|
24229
24955
|
/**
|
|
24230
24956
|
* @description Gets a custom object.
|
|
24231
24957
|
*
|
|
@@ -24235,7 +24961,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24235
24961
|
* @request POST:/custom-objects.get
|
|
24236
24962
|
* @secure
|
|
24237
24963
|
*/
|
|
24238
|
-
customObjectsGetPost: (data: CustomObjectsGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsGetResponse, any>>;
|
|
24964
|
+
customObjectsGetPost: (data: CustomObjectsGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsGetResponse, any, {}>>;
|
|
24239
24965
|
/**
|
|
24240
24966
|
* @description Lists custom objects.
|
|
24241
24967
|
*
|
|
@@ -24273,7 +24999,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24273
24999
|
mode?: ListMode;
|
|
24274
25000
|
/** The list of fields to sort the items by and how to sort them. */
|
|
24275
25001
|
sort_by?: string[];
|
|
24276
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsListResponse, any>>;
|
|
25002
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsListResponse, any, {}>>;
|
|
24277
25003
|
/**
|
|
24278
25004
|
* @description Lists custom objects.
|
|
24279
25005
|
*
|
|
@@ -24283,7 +25009,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24283
25009
|
* @request POST:/custom-objects.list
|
|
24284
25010
|
* @secure
|
|
24285
25011
|
*/
|
|
24286
|
-
customObjectsListPost: (data: CustomObjectsListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsListResponse, any>>;
|
|
25012
|
+
customObjectsListPost: (data: CustomObjectsListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsListResponse, any, {}>>;
|
|
24287
25013
|
/**
|
|
24288
25014
|
* @description Updates a custom object.
|
|
24289
25015
|
*
|
|
@@ -24293,7 +25019,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24293
25019
|
* @request POST:/custom-objects.update
|
|
24294
25020
|
* @secure
|
|
24295
25021
|
*/
|
|
24296
|
-
customObjectsUpdate: (data: CustomObjectsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsUpdateResponse, any>>;
|
|
25022
|
+
customObjectsUpdate: (data: CustomObjectsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomObjectsUpdateResponse, any, {}>>;
|
|
24297
25023
|
/**
|
|
24298
25024
|
* @description Creates a new enterprise authentication connection for a Dev organization. This authentication connection will not be enabled by default for the organization and the user will need to explicitly enable this. Only 5 authentication connections can be created by an organization.
|
|
24299
25025
|
*
|
|
@@ -24303,7 +25029,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24303
25029
|
* @request POST:/dev-orgs.auth-connections.create
|
|
24304
25030
|
* @secure
|
|
24305
25031
|
*/
|
|
24306
|
-
devOrgAuthConnectionsCreate: (data: DevOrgAuthConnectionsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsCreateResponse, any>>;
|
|
25032
|
+
devOrgAuthConnectionsCreate: (data: DevOrgAuthConnectionsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsCreateResponse, any, {}>>;
|
|
24307
25033
|
/**
|
|
24308
25034
|
* @description Deletes an authentication connection. Only enterprise connections which are explicitly set up for a Dev organization can be deleted. Default connections can not be deleted using this method.
|
|
24309
25035
|
*
|
|
@@ -24313,7 +25039,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24313
25039
|
* @request POST:/dev-orgs.auth-connections.delete
|
|
24314
25040
|
* @secure
|
|
24315
25041
|
*/
|
|
24316
|
-
devOrgAuthConnectionsDelete: (data: DevOrgAuthConnectionsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
25042
|
+
devOrgAuthConnectionsDelete: (data: DevOrgAuthConnectionsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
24317
25043
|
/**
|
|
24318
25044
|
* @description Retrieves the details for an authentication connection.
|
|
24319
25045
|
*
|
|
@@ -24329,7 +25055,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24329
25055
|
* @format text
|
|
24330
25056
|
*/
|
|
24331
25057
|
id: string;
|
|
24332
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsGetResponse, any>>;
|
|
25058
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsGetResponse, any, {}>>;
|
|
24333
25059
|
/**
|
|
24334
25060
|
* @description Retrieves the details for an authentication connection.
|
|
24335
25061
|
*
|
|
@@ -24339,7 +25065,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24339
25065
|
* @request POST:/dev-orgs.auth-connections.get
|
|
24340
25066
|
* @secure
|
|
24341
25067
|
*/
|
|
24342
|
-
devOrgAuthConnectionsGetPost: (data: DevOrgAuthConnectionsGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsGetResponse, any>>;
|
|
25068
|
+
devOrgAuthConnectionsGetPost: (data: DevOrgAuthConnectionsGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsGetResponse, any, {}>>;
|
|
24343
25069
|
/**
|
|
24344
25070
|
* @description Lists all the authentication connections available for a Dev organization. This list will include both social and enterprise connections which are either available by default or are explicitly created by the user.
|
|
24345
25071
|
*
|
|
@@ -24349,7 +25075,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24349
25075
|
* @request GET:/dev-orgs.auth-connections.list
|
|
24350
25076
|
* @secure
|
|
24351
25077
|
*/
|
|
24352
|
-
devOrgAuthConnectionsList: (params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsListResponse, any>>;
|
|
25078
|
+
devOrgAuthConnectionsList: (params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsListResponse, any, {}>>;
|
|
24353
25079
|
/**
|
|
24354
25080
|
* @description Lists all the authentication connections available for a Dev organization. This list will include both social and enterprise connections which are either available by default or are explicitly created by the user.
|
|
24355
25081
|
*
|
|
@@ -24359,7 +25085,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24359
25085
|
* @request POST:/dev-orgs.auth-connections.list
|
|
24360
25086
|
* @secure
|
|
24361
25087
|
*/
|
|
24362
|
-
devOrgAuthConnectionsListPost: (data: Empty, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsListResponse, any>>;
|
|
25088
|
+
devOrgAuthConnectionsListPost: (data: Empty, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsListResponse, any, {}>>;
|
|
24363
25089
|
/**
|
|
24364
25090
|
* @description Enable or disable an authentication connection for a Dev organization. Atleast one authentication connection must be enabled for a Dev organization.
|
|
24365
25091
|
*
|
|
@@ -24369,7 +25095,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24369
25095
|
* @request POST:/dev-orgs.auth-connections.toggle
|
|
24370
25096
|
* @secure
|
|
24371
25097
|
*/
|
|
24372
|
-
devOrgAuthConnectionsToggle: (data: DevOrgAuthConnectionsToggleRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
25098
|
+
devOrgAuthConnectionsToggle: (data: DevOrgAuthConnectionsToggleRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
24373
25099
|
/**
|
|
24374
25100
|
* @description Updates an authentication connection.
|
|
24375
25101
|
*
|
|
@@ -24379,7 +25105,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24379
25105
|
* @request POST:/dev-orgs.auth-connections.update
|
|
24380
25106
|
* @secure
|
|
24381
25107
|
*/
|
|
24382
|
-
devOrgAuthConnectionsUpdate: (data: DevOrgAuthConnectionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsUpdateResponse, any>>;
|
|
25108
|
+
devOrgAuthConnectionsUpdate: (data: DevOrgAuthConnectionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgAuthConnectionsUpdateResponse, any, {}>>;
|
|
24383
25109
|
/**
|
|
24384
25110
|
* @description Gets the Dev organization's information of the authenticated user.
|
|
24385
25111
|
*
|
|
@@ -24389,7 +25115,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24389
25115
|
* @request GET:/dev-orgs.get
|
|
24390
25116
|
* @secure
|
|
24391
25117
|
*/
|
|
24392
|
-
devOrgsGet: (params?: RequestParams) => Promise<AxiosResponse<DevOrgsGetResponse, any>>;
|
|
25118
|
+
devOrgsGet: (params?: RequestParams) => Promise<AxiosResponse<DevOrgsGetResponse, any, {}>>;
|
|
24393
25119
|
/**
|
|
24394
25120
|
* @description Gets the Dev organization's information of the authenticated user.
|
|
24395
25121
|
*
|
|
@@ -24399,7 +25125,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24399
25125
|
* @request POST:/dev-orgs.get
|
|
24400
25126
|
* @secure
|
|
24401
25127
|
*/
|
|
24402
|
-
devOrgsGetPost: (data: DevOrgsGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgsGetResponse, any>>;
|
|
25128
|
+
devOrgsGetPost: (data: DevOrgsGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevOrgsGetResponse, any, {}>>;
|
|
24403
25129
|
/**
|
|
24404
25130
|
* @description Activates the requested user.
|
|
24405
25131
|
*
|
|
@@ -24409,7 +25135,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24409
25135
|
* @request POST:/dev-users.activate
|
|
24410
25136
|
* @secure
|
|
24411
25137
|
*/
|
|
24412
|
-
devUsersActivate: (data: DevUsersActivateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersActivateResponse, any>>;
|
|
25138
|
+
devUsersActivate: (data: DevUsersActivateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersActivateResponse, any, {}>>;
|
|
24413
25139
|
/**
|
|
24414
25140
|
* @description Creates a Dev user for a Dev organization.
|
|
24415
25141
|
*
|
|
@@ -24419,7 +25145,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24419
25145
|
* @request POST:/dev-users.create
|
|
24420
25146
|
* @secure
|
|
24421
25147
|
*/
|
|
24422
|
-
devUsersCreate: (data: DevUsersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersCreateResponse, any>>;
|
|
25148
|
+
devUsersCreate: (data: DevUsersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersCreateResponse, any, {}>>;
|
|
24423
25149
|
/**
|
|
24424
25150
|
* @description Deactivates the requested user.
|
|
24425
25151
|
*
|
|
@@ -24429,7 +25155,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24429
25155
|
* @request POST:/dev-users.deactivate
|
|
24430
25156
|
* @secure
|
|
24431
25157
|
*/
|
|
24432
|
-
devUsersDeactivate: (data: DevUsersDeactivateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
25158
|
+
devUsersDeactivate: (data: DevUsersDeactivateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
24433
25159
|
/**
|
|
24434
25160
|
* @description Gets the requested user's information.
|
|
24435
25161
|
*
|
|
@@ -24445,7 +25171,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24445
25171
|
* @format id
|
|
24446
25172
|
*/
|
|
24447
25173
|
id: string;
|
|
24448
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DevUsersGetResponse, any>>;
|
|
25174
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DevUsersGetResponse, any, {}>>;
|
|
24449
25175
|
/**
|
|
24450
25176
|
* @description Gets the requested user's information.
|
|
24451
25177
|
*
|
|
@@ -24455,7 +25181,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24455
25181
|
* @request POST:/dev-users.get
|
|
24456
25182
|
* @secure
|
|
24457
25183
|
*/
|
|
24458
|
-
devUsersGetPost: (data: DevUsersGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersGetResponse, any>>;
|
|
25184
|
+
devUsersGetPost: (data: DevUsersGetRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersGetResponse, any, {}>>;
|
|
24459
25185
|
/**
|
|
24460
25186
|
* @description Links an external/secondary identity to the Dev user.
|
|
24461
25187
|
*
|
|
@@ -24465,7 +25191,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24465
25191
|
* @request POST:/dev-users.identities.link
|
|
24466
25192
|
* @secure
|
|
24467
25193
|
*/
|
|
24468
|
-
devUsersIdentitiesLink: (data: DevUsersIdentitiesLinkRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersIdentitiesLinkResponse, any>>;
|
|
25194
|
+
devUsersIdentitiesLink: (data: DevUsersIdentitiesLinkRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersIdentitiesLinkResponse, any, {}>>;
|
|
24469
25195
|
/**
|
|
24470
25196
|
* @description Unlinks an external/secondary identity from the Dev user.
|
|
24471
25197
|
*
|
|
@@ -24475,7 +25201,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24475
25201
|
* @request POST:/dev-users.identities.unlink
|
|
24476
25202
|
* @secure
|
|
24477
25203
|
*/
|
|
24478
|
-
devUsersIdentitiesUnlink: (data: DevUsersIdentitiesUnlinkRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersIdentitiesUnlinkResponse, any>>;
|
|
25204
|
+
devUsersIdentitiesUnlink: (data: DevUsersIdentitiesUnlinkRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersIdentitiesUnlinkResponse, any, {}>>;
|
|
24479
25205
|
/**
|
|
24480
25206
|
* @description Lists users within your organization.
|
|
24481
25207
|
*
|
|
@@ -24522,7 +25248,12 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24522
25248
|
sort_by?: string[];
|
|
24523
25249
|
/** Filters Dev users based on state. */
|
|
24524
25250
|
state?: UserState[];
|
|
24525
|
-
|
|
25251
|
+
/**
|
|
25252
|
+
* Filters for Dev users in the specified time zone in IANA format
|
|
25253
|
+
* (e.g., 'America/Los_Angeles').
|
|
25254
|
+
*/
|
|
25255
|
+
timezone?: string[];
|
|
25256
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DevUsersListResponse, any, {}>>;
|
|
24526
25257
|
/**
|
|
24527
25258
|
* @description Lists users within your organization.
|
|
24528
25259
|
*
|
|
@@ -24532,7 +25263,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24532
25263
|
* @request POST:/dev-users.list
|
|
24533
25264
|
* @secure
|
|
24534
25265
|
*/
|
|
24535
|
-
devUsersListPost: (data: DevUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersListResponse, any>>;
|
|
25266
|
+
devUsersListPost: (data: DevUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersListResponse, any, {}>>;
|
|
24536
25267
|
/**
|
|
24537
25268
|
* @description Merges the identity of a secondary Dev user with the primary Dev user. The account of the secondary Dev user will be deactivated and will no longer be able to log into DevRev. All objects - issues, tickets, parts etc. owned by the secondary Dev user will be transferred to the primary Dev user.
|
|
24538
25269
|
*
|
|
@@ -24542,7 +25273,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24542
25273
|
* @request POST:/dev-users.merge
|
|
24543
25274
|
* @secure
|
|
24544
25275
|
*/
|
|
24545
|
-
devUsersMerge: (data: DevUsersMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
25276
|
+
devUsersMerge: (data: DevUsersMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
24546
25277
|
/**
|
|
24547
25278
|
* @description Gets the authenticated user's information.
|
|
24548
25279
|
*
|
|
@@ -24552,7 +25283,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24552
25283
|
* @request GET:/dev-users.self
|
|
24553
25284
|
* @secure
|
|
24554
25285
|
*/
|
|
24555
|
-
devUsersSelf: (params?: RequestParams) => Promise<AxiosResponse<DevUsersSelfResponse, any>>;
|
|
25286
|
+
devUsersSelf: (params?: RequestParams) => Promise<AxiosResponse<DevUsersSelfResponse, any, {}>>;
|
|
24556
25287
|
/**
|
|
24557
25288
|
* @description Gets the authenticated user's information.
|
|
24558
25289
|
*
|
|
@@ -24562,7 +25293,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24562
25293
|
* @request POST:/dev-users.self
|
|
24563
25294
|
* @secure
|
|
24564
25295
|
*/
|
|
24565
|
-
devUsersSelfPost: (data: DevUsersSelfRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersSelfResponse, any>>;
|
|
25296
|
+
devUsersSelfPost: (data: DevUsersSelfRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersSelfResponse, any, {}>>;
|
|
24566
25297
|
/**
|
|
24567
25298
|
* @description Updates the authenticated user.
|
|
24568
25299
|
*
|
|
@@ -24572,7 +25303,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24572
25303
|
* @request POST:/dev-users.self.update
|
|
24573
25304
|
* @secure
|
|
24574
25305
|
*/
|
|
24575
|
-
devUsersSelfUpdate: (data: DevUsersSelfUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersUpdateResponse, any>>;
|
|
25306
|
+
devUsersSelfUpdate: (data: DevUsersSelfUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersUpdateResponse, any, {}>>;
|
|
24576
25307
|
/**
|
|
24577
25308
|
* @description Updates the user corresponding to the input Id.
|
|
24578
25309
|
*
|
|
@@ -24582,7 +25313,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24582
25313
|
* @request POST:/dev-users.update
|
|
24583
25314
|
* @secure
|
|
24584
25315
|
*/
|
|
24585
|
-
devUsersUpdate: (data: DevUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersUpdateResponse, any>>;
|
|
25316
|
+
devUsersUpdate: (data: DevUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DevUsersUpdateResponse, any, {}>>;
|
|
24586
25317
|
/**
|
|
24587
25318
|
* @description Get count of directories matching given filter.
|
|
24588
25319
|
*
|
|
@@ -24603,7 +25334,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24603
25334
|
* @example ["DEVU-12345"]
|
|
24604
25335
|
*/
|
|
24605
25336
|
modified_by?: string[];
|
|
24606
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCountResponse, any>>;
|
|
25337
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCountResponse, any, {}>>;
|
|
24607
25338
|
/**
|
|
24608
25339
|
* @description Get count of directories matching given filter.
|
|
24609
25340
|
*
|
|
@@ -24613,7 +25344,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24613
25344
|
* @request POST:/directories.count
|
|
24614
25345
|
* @secure
|
|
24615
25346
|
*/
|
|
24616
|
-
directoriesCountPost: (data: DirectoriesCountRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCountResponse, any>>;
|
|
25347
|
+
directoriesCountPost: (data: DirectoriesCountRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCountResponse, any, {}>>;
|
|
24617
25348
|
/**
|
|
24618
25349
|
* @description Creates a directory for the specified inputs.
|
|
24619
25350
|
*
|
|
@@ -24623,7 +25354,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24623
25354
|
* @request POST:/directories.create
|
|
24624
25355
|
* @secure
|
|
24625
25356
|
*/
|
|
24626
|
-
directoriesCreate: (data: DirectoriesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCreateResponse, any>>;
|
|
25357
|
+
directoriesCreate: (data: DirectoriesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesCreateResponse, any, {}>>;
|
|
24627
25358
|
/**
|
|
24628
25359
|
* @description Delete the specified directory.
|
|
24629
25360
|
*
|
|
@@ -24633,7 +25364,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24633
25364
|
* @request POST:/directories.delete
|
|
24634
25365
|
* @secure
|
|
24635
25366
|
*/
|
|
24636
|
-
directoriesDelete: (data: DirectoriesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
25367
|
+
directoriesDelete: (data: DirectoriesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
24637
25368
|
/**
|
|
24638
25369
|
* @description Gets the specified directory.
|
|
24639
25370
|
*
|
|
@@ -24643,13 +25374,13 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24643
25374
|
* @request GET:/directories.get
|
|
24644
25375
|
* @secure
|
|
24645
25376
|
*/
|
|
24646
|
-
directoriesGet: (query
|
|
25377
|
+
directoriesGet: (query?: {
|
|
24647
25378
|
/**
|
|
24648
25379
|
* The ID of the requested directory.
|
|
24649
25380
|
* @format id
|
|
24650
25381
|
*/
|
|
24651
|
-
id
|
|
24652
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DirectoriesGetResponse, any>>;
|
|
25382
|
+
id?: string;
|
|
25383
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DirectoriesGetResponse, any, {}>>;
|
|
24653
25384
|
/**
|
|
24654
25385
|
* @description Gets the specified directory.
|
|
24655
25386
|
*
|
|
@@ -24659,7 +25390,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24659
25390
|
* @request POST:/directories.get
|
|
24660
25391
|
* @secure
|
|
24661
25392
|
*/
|
|
24662
|
-
directoriesGetPost: (data: DirectoriesGetRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesGetResponse, any>>;
|
|
25393
|
+
directoriesGetPost: (data: DirectoriesGetRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesGetResponse, any, {}>>;
|
|
24663
25394
|
/**
|
|
24664
25395
|
* @description Lists directories matching the request.
|
|
24665
25396
|
*
|
|
@@ -24696,7 +25427,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24696
25427
|
* @example ["DEVU-12345"]
|
|
24697
25428
|
*/
|
|
24698
25429
|
modified_by?: string[];
|
|
24699
|
-
}, params?: RequestParams) => Promise<AxiosResponse<DirectoriesListResponse, any>>;
|
|
25430
|
+
}, params?: RequestParams) => Promise<AxiosResponse<DirectoriesListResponse, any, {}>>;
|
|
24700
25431
|
/**
|
|
24701
25432
|
* @description Lists directories matching the request.
|
|
24702
25433
|
*
|
|
@@ -24706,7 +25437,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24706
25437
|
* @request POST:/directories.list
|
|
24707
25438
|
* @secure
|
|
24708
25439
|
*/
|
|
24709
|
-
directoriesListPost: (data: DirectoriesListRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesListResponse, any>>;
|
|
25440
|
+
directoriesListPost: (data: DirectoriesListRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesListResponse, any, {}>>;
|
|
24710
25441
|
/**
|
|
24711
25442
|
* @description Updates the specified directory.
|
|
24712
25443
|
*
|
|
@@ -24716,7 +25447,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24716
25447
|
* @request POST:/directories.update
|
|
24717
25448
|
* @secure
|
|
24718
25449
|
*/
|
|
24719
|
-
directoriesUpdate: (data: DirectoriesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesUpdateResponse, any>>;
|
|
25450
|
+
directoriesUpdate: (data: DirectoriesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<DirectoriesUpdateResponse, any, {}>>;
|
|
24720
25451
|
/**
|
|
24721
25452
|
* @description Counts the engagement records.
|
|
24722
25453
|
*
|
|
@@ -24741,7 +25472,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24741
25472
|
parent?: string[];
|
|
24742
25473
|
/** Filters for engagement of the provided types. */
|
|
24743
25474
|
type?: EngagementType[];
|
|
24744
|
-
}, params?: RequestParams) => Promise<AxiosResponse<EngagementsCountResponse, any>>;
|
|
25475
|
+
}, params?: RequestParams) => Promise<AxiosResponse<EngagementsCountResponse, any, {}>>;
|
|
24745
25476
|
/**
|
|
24746
25477
|
* @description Counts the engagement records.
|
|
24747
25478
|
*
|
|
@@ -24751,7 +25482,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24751
25482
|
* @request POST:/engagements.count
|
|
24752
25483
|
* @secure
|
|
24753
25484
|
*/
|
|
24754
|
-
engagementsCountPost: (data: EngagementsCountRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsCountResponse, any>>;
|
|
25485
|
+
engagementsCountPost: (data: EngagementsCountRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsCountResponse, any, {}>>;
|
|
24755
25486
|
/**
|
|
24756
25487
|
* @description Creates a new engagement record.
|
|
24757
25488
|
*
|
|
@@ -24761,7 +25492,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24761
25492
|
* @request POST:/engagements.create
|
|
24762
25493
|
* @secure
|
|
24763
25494
|
*/
|
|
24764
|
-
engagementsCreate: (data: EngagementsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsCreateResponse, any>>;
|
|
25495
|
+
engagementsCreate: (data: EngagementsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsCreateResponse, any, {}>>;
|
|
24765
25496
|
/**
|
|
24766
25497
|
* @description Deletes the engagement record.
|
|
24767
25498
|
*
|
|
@@ -24771,7 +25502,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24771
25502
|
* @request POST:/engagements.delete
|
|
24772
25503
|
* @secure
|
|
24773
25504
|
*/
|
|
24774
|
-
engagementsDelete: (data: EngagementsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
25505
|
+
engagementsDelete: (data: EngagementsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
24775
25506
|
/**
|
|
24776
25507
|
* @description Gets the engagement record.
|
|
24777
25508
|
*
|
|
@@ -24787,7 +25518,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24787
25518
|
* @format id
|
|
24788
25519
|
*/
|
|
24789
25520
|
id: string;
|
|
24790
|
-
}, params?: RequestParams) => Promise<AxiosResponse<EngagementsGetResponse, any>>;
|
|
25521
|
+
}, params?: RequestParams) => Promise<AxiosResponse<EngagementsGetResponse, any, {}>>;
|
|
24791
25522
|
/**
|
|
24792
25523
|
* @description Gets the engagement record.
|
|
24793
25524
|
*
|
|
@@ -24797,7 +25528,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24797
25528
|
* @request POST:/engagements.get
|
|
24798
25529
|
* @secure
|
|
24799
25530
|
*/
|
|
24800
|
-
engagementsGetPost: (data: EngagementsGetRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsGetResponse, any>>;
|
|
25531
|
+
engagementsGetPost: (data: EngagementsGetRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsGetResponse, any, {}>>;
|
|
24801
25532
|
/**
|
|
24802
25533
|
* @description Lists the engagement records.
|
|
24803
25534
|
*
|
|
@@ -24840,7 +25571,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24840
25571
|
sort_by?: string[];
|
|
24841
25572
|
/** Filters for engagement of the provided types. */
|
|
24842
25573
|
type?: EngagementType[];
|
|
24843
|
-
}, params?: RequestParams) => Promise<AxiosResponse<EngagementsListResponse, any>>;
|
|
25574
|
+
}, params?: RequestParams) => Promise<AxiosResponse<EngagementsListResponse, any, {}>>;
|
|
24844
25575
|
/**
|
|
24845
25576
|
* @description Lists the engagement records.
|
|
24846
25577
|
*
|
|
@@ -24850,7 +25581,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24850
25581
|
* @request POST:/engagements.list
|
|
24851
25582
|
* @secure
|
|
24852
25583
|
*/
|
|
24853
|
-
engagementsListPost: (data: EngagementsListRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsListResponse, any>>;
|
|
25584
|
+
engagementsListPost: (data: EngagementsListRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsListResponse, any, {}>>;
|
|
24854
25585
|
/**
|
|
24855
25586
|
* @description Updates the engagement record.
|
|
24856
25587
|
*
|
|
@@ -24860,7 +25591,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24860
25591
|
* @request POST:/engagements.update
|
|
24861
25592
|
* @secure
|
|
24862
25593
|
*/
|
|
24863
|
-
engagementsUpdate: (data: EngagementsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsUpdateResponse, any>>;
|
|
25594
|
+
engagementsUpdate: (data: EngagementsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<EngagementsUpdateResponse, any, {}>>;
|
|
24864
25595
|
/**
|
|
24865
25596
|
* @description Gets an event source.
|
|
24866
25597
|
*
|
|
@@ -24876,7 +25607,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24876
25607
|
* @format id
|
|
24877
25608
|
*/
|
|
24878
25609
|
id: string;
|
|
24879
|
-
}, params?: RequestParams) => Promise<AxiosResponse<EventSourceGetResponse, any>>;
|
|
25610
|
+
}, params?: RequestParams) => Promise<AxiosResponse<EventSourceGetResponse, any, {}>>;
|
|
24880
25611
|
/**
|
|
24881
25612
|
* @description Gets an event source.
|
|
24882
25613
|
*
|
|
@@ -24886,7 +25617,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24886
25617
|
* @request POST:/event-sources.get
|
|
24887
25618
|
* @secure
|
|
24888
25619
|
*/
|
|
24889
|
-
eventSourcesGetPost: (data: EventSourceGetRequest, params?: RequestParams) => Promise<AxiosResponse<EventSourceGetResponse, any>>;
|
|
25620
|
+
eventSourcesGetPost: (data: EventSourceGetRequest, params?: RequestParams) => Promise<AxiosResponse<EventSourceGetResponse, any, {}>>;
|
|
24890
25621
|
/**
|
|
24891
25622
|
* @description Schedules an event to be published to the specified event source.
|
|
24892
25623
|
*
|
|
@@ -24896,7 +25627,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24896
25627
|
* @request POST:/event-sources.schedule
|
|
24897
25628
|
* @secure
|
|
24898
25629
|
*/
|
|
24899
|
-
eventSourcesScheduleEvent: (data: EventSourcesScheduleEventRequest, params?: RequestParams) => Promise<AxiosResponse<EventSourcesScheduleEventResponse, any>>;
|
|
25630
|
+
eventSourcesScheduleEvent: (data: EventSourcesScheduleEventRequest, params?: RequestParams) => Promise<AxiosResponse<EventSourcesScheduleEventResponse, any, {}>>;
|
|
24900
25631
|
/**
|
|
24901
25632
|
* @description Deletes an event scheduled for the specified event source.
|
|
24902
25633
|
*
|
|
@@ -24906,7 +25637,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24906
25637
|
* @request POST:/event-sources.unschedule
|
|
24907
25638
|
* @secure
|
|
24908
25639
|
*/
|
|
24909
|
-
eventSourcesDeleteScheduledEvent: (data: EventSourcesDeleteScheduledEventRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
25640
|
+
eventSourcesDeleteScheduledEvent: (data: EventSourcesDeleteScheduledEventRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
24910
25641
|
/**
|
|
24911
25642
|
* @description Creates a new group. A group is a collection of users.
|
|
24912
25643
|
*
|
|
@@ -24916,7 +25647,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24916
25647
|
* @request POST:/groups.create
|
|
24917
25648
|
* @secure
|
|
24918
25649
|
*/
|
|
24919
|
-
groupsCreate: (data: GroupsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsCreateResponse, any>>;
|
|
25650
|
+
groupsCreate: (data: GroupsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsCreateResponse, any, {}>>;
|
|
24920
25651
|
/**
|
|
24921
25652
|
* @description Gets the requested group.
|
|
24922
25653
|
*
|
|
@@ -24932,7 +25663,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24932
25663
|
* @format id
|
|
24933
25664
|
*/
|
|
24934
25665
|
id: string;
|
|
24935
|
-
}, params?: RequestParams) => Promise<AxiosResponse<GroupsGetResponse, any>>;
|
|
25666
|
+
}, params?: RequestParams) => Promise<AxiosResponse<GroupsGetResponse, any, {}>>;
|
|
24936
25667
|
/**
|
|
24937
25668
|
* @description Gets the requested group.
|
|
24938
25669
|
*
|
|
@@ -24942,7 +25673,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24942
25673
|
* @request POST:/groups.get
|
|
24943
25674
|
* @secure
|
|
24944
25675
|
*/
|
|
24945
|
-
groupsGetPost: (data: GroupsGetRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsGetResponse, any>>;
|
|
25676
|
+
groupsGetPost: (data: GroupsGetRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsGetResponse, any, {}>>;
|
|
24946
25677
|
/**
|
|
24947
25678
|
* @description Lists the available groups.
|
|
24948
25679
|
*
|
|
@@ -24999,7 +25730,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
24999
25730
|
'sync_metadata.last_sync_out.sync_unit'?: string[];
|
|
25000
25731
|
/** Filters for issues synced from this specific origin system. */
|
|
25001
25732
|
'sync_metadata.origin_system'?: string[];
|
|
25002
|
-
}, params?: RequestParams) => Promise<AxiosResponse<GroupsListResponse, any>>;
|
|
25733
|
+
}, params?: RequestParams) => Promise<AxiosResponse<GroupsListResponse, any, {}>>;
|
|
25003
25734
|
/**
|
|
25004
25735
|
* @description Lists the available groups.
|
|
25005
25736
|
*
|
|
@@ -25009,7 +25740,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25009
25740
|
* @request POST:/groups.list
|
|
25010
25741
|
* @secure
|
|
25011
25742
|
*/
|
|
25012
|
-
groupsListPost: (data: GroupsListRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsListResponse, any>>;
|
|
25743
|
+
groupsListPost: (data: GroupsListRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsListResponse, any, {}>>;
|
|
25013
25744
|
/**
|
|
25014
25745
|
* @description Adds a member to a group.
|
|
25015
25746
|
*
|
|
@@ -25019,7 +25750,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25019
25750
|
* @request POST:/groups.members.add
|
|
25020
25751
|
* @secure
|
|
25021
25752
|
*/
|
|
25022
|
-
groupMembersAdd: (data: GroupMembersAddRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
25753
|
+
groupMembersAdd: (data: GroupMembersAddRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
25023
25754
|
/**
|
|
25024
25755
|
* @description Lists the members in a group.
|
|
25025
25756
|
*
|
|
@@ -25052,7 +25783,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25052
25783
|
* used.
|
|
25053
25784
|
*/
|
|
25054
25785
|
mode?: ListMode;
|
|
25055
|
-
}, params?: RequestParams) => Promise<AxiosResponse<GroupMembersListResponse, any>>;
|
|
25786
|
+
}, params?: RequestParams) => Promise<AxiosResponse<GroupMembersListResponse, any, {}>>;
|
|
25056
25787
|
/**
|
|
25057
25788
|
* @description Lists the members in a group.
|
|
25058
25789
|
*
|
|
@@ -25062,7 +25793,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25062
25793
|
* @request POST:/groups.members.list
|
|
25063
25794
|
* @secure
|
|
25064
25795
|
*/
|
|
25065
|
-
groupMembersListPost: (data: GroupMembersListRequest, params?: RequestParams) => Promise<AxiosResponse<GroupMembersListResponse, any>>;
|
|
25796
|
+
groupMembersListPost: (data: GroupMembersListRequest, params?: RequestParams) => Promise<AxiosResponse<GroupMembersListResponse, any, {}>>;
|
|
25066
25797
|
/**
|
|
25067
25798
|
* @description Removes a member from a group.
|
|
25068
25799
|
*
|
|
@@ -25072,7 +25803,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25072
25803
|
* @request POST:/groups.members.remove
|
|
25073
25804
|
* @secure
|
|
25074
25805
|
*/
|
|
25075
|
-
groupMembersRemove: (data: GroupMembersRemoveRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
25806
|
+
groupMembersRemove: (data: GroupMembersRemoveRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
25076
25807
|
/**
|
|
25077
25808
|
* @description Updates the requested group.
|
|
25078
25809
|
*
|
|
@@ -25082,7 +25813,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25082
25813
|
* @request POST:/groups.update
|
|
25083
25814
|
* @secure
|
|
25084
25815
|
*/
|
|
25085
|
-
groupsUpdate: (data: GroupsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsUpdateResponse, any>>;
|
|
25816
|
+
groupsUpdate: (data: GroupsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<GroupsUpdateResponse, any, {}>>;
|
|
25086
25817
|
/**
|
|
25087
25818
|
* @description Creates an incident.
|
|
25088
25819
|
*
|
|
@@ -25092,7 +25823,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25092
25823
|
* @request POST:/incidents.create
|
|
25093
25824
|
* @secure
|
|
25094
25825
|
*/
|
|
25095
|
-
incidentsCreate: (data: IncidentsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsCreateResponse, any>>;
|
|
25826
|
+
incidentsCreate: (data: IncidentsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsCreateResponse, any, {}>>;
|
|
25096
25827
|
/**
|
|
25097
25828
|
* @description Deletes an incident.
|
|
25098
25829
|
*
|
|
@@ -25102,7 +25833,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25102
25833
|
* @request POST:/incidents.delete
|
|
25103
25834
|
* @secure
|
|
25104
25835
|
*/
|
|
25105
|
-
incidentsDelete: (data: IncidentsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
25836
|
+
incidentsDelete: (data: IncidentsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
25106
25837
|
/**
|
|
25107
25838
|
* @description Gets an incident.
|
|
25108
25839
|
*
|
|
@@ -25118,7 +25849,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25118
25849
|
* @format id
|
|
25119
25850
|
*/
|
|
25120
25851
|
id: string;
|
|
25121
|
-
}, params?: RequestParams) => Promise<AxiosResponse<IncidentsGetResponse, any>>;
|
|
25852
|
+
}, params?: RequestParams) => Promise<AxiosResponse<IncidentsGetResponse, any, {}>>;
|
|
25122
25853
|
/**
|
|
25123
25854
|
* @description Gets an incident.
|
|
25124
25855
|
*
|
|
@@ -25128,7 +25859,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25128
25859
|
* @request POST:/incidents.get
|
|
25129
25860
|
* @secure
|
|
25130
25861
|
*/
|
|
25131
|
-
incidentsGetPost: (data: IncidentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsGetResponse, any>>;
|
|
25862
|
+
incidentsGetPost: (data: IncidentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsGetResponse, any, {}>>;
|
|
25132
25863
|
/**
|
|
25133
25864
|
* @description Lists collections of incidents by groups.
|
|
25134
25865
|
*
|
|
@@ -25159,6 +25890,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25159
25890
|
cursor?: string;
|
|
25160
25891
|
/** Filters for custom fields. */
|
|
25161
25892
|
custom_fields?: object;
|
|
25893
|
+
/**
|
|
25894
|
+
* Filters for incidents with any of the provided impacted customers.
|
|
25895
|
+
* @example ["ACC-12345"]
|
|
25896
|
+
*/
|
|
25897
|
+
impacted_customers?: string[];
|
|
25162
25898
|
/**
|
|
25163
25899
|
* The maximum number of groups to return. If not set, then the default
|
|
25164
25900
|
* is '10'.
|
|
@@ -25228,7 +25964,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25228
25964
|
'sync_metadata.origin_system'?: string[];
|
|
25229
25965
|
/** Filters for incidents by the provided titles. */
|
|
25230
25966
|
title?: string[];
|
|
25231
|
-
}, params?: RequestParams) => Promise<AxiosResponse<IncidentsGroupResponse, any>>;
|
|
25967
|
+
}, params?: RequestParams) => Promise<AxiosResponse<IncidentsGroupResponse, any, {}>>;
|
|
25232
25968
|
/**
|
|
25233
25969
|
* @description Lists collections of incidents by groups.
|
|
25234
25970
|
*
|
|
@@ -25238,7 +25974,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25238
25974
|
* @request POST:/incidents.group
|
|
25239
25975
|
* @secure
|
|
25240
25976
|
*/
|
|
25241
|
-
incidentsGroupPost: (data: IncidentsGroupRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsGroupResponse, any>>;
|
|
25977
|
+
incidentsGroupPost: (data: IncidentsGroupRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsGroupResponse, any, {}>>;
|
|
25242
25978
|
/**
|
|
25243
25979
|
* @description Lists incidents.
|
|
25244
25980
|
*
|
|
@@ -25264,6 +26000,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25264
26000
|
cursor?: string;
|
|
25265
26001
|
/** Filters for custom fields. */
|
|
25266
26002
|
custom_fields?: object;
|
|
26003
|
+
/**
|
|
26004
|
+
* Filters for incidents with any of the provided impacted customers.
|
|
26005
|
+
* @example ["ACC-12345"]
|
|
26006
|
+
*/
|
|
26007
|
+
impacted_customers?: string[];
|
|
25267
26008
|
/**
|
|
25268
26009
|
* The maximum number of items.
|
|
25269
26010
|
* @format int32
|
|
@@ -25326,7 +26067,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25326
26067
|
'sync_metadata.origin_system'?: string[];
|
|
25327
26068
|
/** Filters for incidents by the provided titles. */
|
|
25328
26069
|
title?: string[];
|
|
25329
|
-
}, params?: RequestParams) => Promise<AxiosResponse<IncidentsListResponse, any>>;
|
|
26070
|
+
}, params?: RequestParams) => Promise<AxiosResponse<IncidentsListResponse, any, {}>>;
|
|
25330
26071
|
/**
|
|
25331
26072
|
* @description Lists incidents.
|
|
25332
26073
|
*
|
|
@@ -25336,7 +26077,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25336
26077
|
* @request POST:/incidents.list
|
|
25337
26078
|
* @secure
|
|
25338
26079
|
*/
|
|
25339
|
-
incidentsListPost: (data: IncidentsListRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsListResponse, any>>;
|
|
26080
|
+
incidentsListPost: (data: IncidentsListRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsListResponse, any, {}>>;
|
|
25340
26081
|
/**
|
|
25341
26082
|
* @description Updates an incident.
|
|
25342
26083
|
*
|
|
@@ -25346,7 +26087,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25346
26087
|
* @request POST:/incidents.update
|
|
25347
26088
|
* @secure
|
|
25348
26089
|
*/
|
|
25349
|
-
incidentsUpdate: (data: IncidentsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsUpdateResponse, any>>;
|
|
26090
|
+
incidentsUpdate: (data: IncidentsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<IncidentsUpdateResponse, any, {}>>;
|
|
25350
26091
|
/**
|
|
25351
26092
|
* @description OAuth2 authorization callback.
|
|
25352
26093
|
*
|
|
@@ -25366,7 +26107,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25366
26107
|
* @format text
|
|
25367
26108
|
*/
|
|
25368
26109
|
state: string;
|
|
25369
|
-
}, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
26110
|
+
}, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
25370
26111
|
/**
|
|
25371
26112
|
* @description OAuth2 authorization callback.
|
|
25372
26113
|
*
|
|
@@ -25376,7 +26117,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25376
26117
|
* @request POST:/keyrings.authorize
|
|
25377
26118
|
* @secure
|
|
25378
26119
|
*/
|
|
25379
|
-
keyringsCreateCallbackPost: (data: KeyringsCreateCallbackRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
26120
|
+
keyringsCreateCallbackPost: (data: KeyringsCreateCallbackRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
25380
26121
|
/**
|
|
25381
26122
|
* @description Creates a custom link type.
|
|
25382
26123
|
*
|
|
@@ -25386,7 +26127,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25386
26127
|
* @request POST:/link-types.custom.create
|
|
25387
26128
|
* @secure
|
|
25388
26129
|
*/
|
|
25389
|
-
customLinkTypeCreate: (data: CustomLinkTypeCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeCreateResponse, any>>;
|
|
26130
|
+
customLinkTypeCreate: (data: CustomLinkTypeCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeCreateResponse, any, {}>>;
|
|
25390
26131
|
/**
|
|
25391
26132
|
* @description Gets a custom link type.
|
|
25392
26133
|
*
|
|
@@ -25402,7 +26143,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25402
26143
|
* @format id
|
|
25403
26144
|
*/
|
|
25404
26145
|
id: string;
|
|
25405
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeGetResponse, any>>;
|
|
26146
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeGetResponse, any, {}>>;
|
|
25406
26147
|
/**
|
|
25407
26148
|
* @description Gets a custom link type.
|
|
25408
26149
|
*
|
|
@@ -25412,7 +26153,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25412
26153
|
* @request POST:/link-types.custom.get
|
|
25413
26154
|
* @secure
|
|
25414
26155
|
*/
|
|
25415
|
-
customLinkTypeGetPost: (data: CustomLinkTypeGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeGetResponse, any>>;
|
|
26156
|
+
customLinkTypeGetPost: (data: CustomLinkTypeGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeGetResponse, any, {}>>;
|
|
25416
26157
|
/**
|
|
25417
26158
|
* @description Lists custom link types.
|
|
25418
26159
|
*
|
|
@@ -25518,7 +26259,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25518
26259
|
* @format text
|
|
25519
26260
|
*/
|
|
25520
26261
|
'target_types_v2.subtype'?: string;
|
|
25521
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeListResponse, any>>;
|
|
26262
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeListResponse, any, {}>>;
|
|
25522
26263
|
/**
|
|
25523
26264
|
* @description Lists custom link types.
|
|
25524
26265
|
*
|
|
@@ -25528,7 +26269,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25528
26269
|
* @request POST:/link-types.custom.list
|
|
25529
26270
|
* @secure
|
|
25530
26271
|
*/
|
|
25531
|
-
customLinkTypeListPost: (data: CustomLinkTypeListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeListResponse, any>>;
|
|
26272
|
+
customLinkTypeListPost: (data: CustomLinkTypeListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeListResponse, any, {}>>;
|
|
25532
26273
|
/**
|
|
25533
26274
|
* @description Updates a custom link type.
|
|
25534
26275
|
*
|
|
@@ -25538,7 +26279,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25538
26279
|
* @request POST:/link-types.custom.update
|
|
25539
26280
|
* @secure
|
|
25540
26281
|
*/
|
|
25541
|
-
customLinkTypeUpdate: (data: CustomLinkTypeUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeUpdateResponse, any>>;
|
|
26282
|
+
customLinkTypeUpdate: (data: CustomLinkTypeUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomLinkTypeUpdateResponse, any, {}>>;
|
|
25542
26283
|
/**
|
|
25543
26284
|
* @description Creates a link between two objects to indicate a relationship.
|
|
25544
26285
|
*
|
|
@@ -25548,7 +26289,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25548
26289
|
* @request POST:/links.create
|
|
25549
26290
|
* @secure
|
|
25550
26291
|
*/
|
|
25551
|
-
linksCreate: (data: LinksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<LinksCreateResponse, any>>;
|
|
26292
|
+
linksCreate: (data: LinksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<LinksCreateResponse, any, {}>>;
|
|
25552
26293
|
/**
|
|
25553
26294
|
* @description Deletes a link.
|
|
25554
26295
|
*
|
|
@@ -25558,7 +26299,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25558
26299
|
* @request POST:/links.delete
|
|
25559
26300
|
* @secure
|
|
25560
26301
|
*/
|
|
25561
|
-
linksDelete: (data: LinksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
26302
|
+
linksDelete: (data: LinksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
25562
26303
|
/**
|
|
25563
26304
|
* @description Gets the requested link's information.
|
|
25564
26305
|
*
|
|
@@ -25574,7 +26315,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25574
26315
|
* @format id
|
|
25575
26316
|
*/
|
|
25576
26317
|
id: string;
|
|
25577
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LinksGetResponse, any>>;
|
|
26318
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LinksGetResponse, any, {}>>;
|
|
25578
26319
|
/**
|
|
25579
26320
|
* @description Gets the requested link's information.
|
|
25580
26321
|
*
|
|
@@ -25584,7 +26325,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25584
26325
|
* @request POST:/links.get
|
|
25585
26326
|
* @secure
|
|
25586
26327
|
*/
|
|
25587
|
-
linksGetPost: (data: LinksGetRequest, params?: RequestParams) => Promise<AxiosResponse<LinksGetResponse, any>>;
|
|
26328
|
+
linksGetPost: (data: LinksGetRequest, params?: RequestParams) => Promise<AxiosResponse<LinksGetResponse, any, {}>>;
|
|
25588
26329
|
/**
|
|
25589
26330
|
* @description Lists the available links.
|
|
25590
26331
|
*
|
|
@@ -25638,7 +26379,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25638
26379
|
* @deprecated
|
|
25639
26380
|
*/
|
|
25640
26381
|
types?: LinkType[];
|
|
25641
|
-
}, params?: RequestParams) => Promise<AxiosResponse<LinksListResponse, any>>;
|
|
26382
|
+
}, params?: RequestParams) => Promise<AxiosResponse<LinksListResponse, any, {}>>;
|
|
25642
26383
|
/**
|
|
25643
26384
|
* @description Lists the available links.
|
|
25644
26385
|
*
|
|
@@ -25648,7 +26389,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25648
26389
|
* @request POST:/links.list
|
|
25649
26390
|
* @secure
|
|
25650
26391
|
*/
|
|
25651
|
-
linksListPost: (data: LinksListRequest, params?: RequestParams) => Promise<AxiosResponse<LinksListResponse, any>>;
|
|
26392
|
+
linksListPost: (data: LinksListRequest, params?: RequestParams) => Promise<AxiosResponse<LinksListResponse, any, {}>>;
|
|
25652
26393
|
/**
|
|
25653
26394
|
* @description Replaces a link.
|
|
25654
26395
|
*
|
|
@@ -25658,7 +26399,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25658
26399
|
* @request POST:/links.replace
|
|
25659
26400
|
* @secure
|
|
25660
26401
|
*/
|
|
25661
|
-
linksReplace: (data: LinksReplaceRequest, params?: RequestParams) => Promise<AxiosResponse<LinksReplaceResponse, any>>;
|
|
26402
|
+
linksReplace: (data: LinksReplaceRequest, params?: RequestParams) => Promise<AxiosResponse<LinksReplaceResponse, any, {}>>;
|
|
25662
26403
|
/**
|
|
25663
26404
|
* @description Counts the meeting records.
|
|
25664
26405
|
*
|
|
@@ -25675,6 +26416,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25675
26416
|
created_by?: string[];
|
|
25676
26417
|
/** Filters for meeting on custom fields. */
|
|
25677
26418
|
custom_fields?: object;
|
|
26419
|
+
/** Direction of the meetings to be fetched. */
|
|
26420
|
+
direction?: MeetingDirection[];
|
|
25678
26421
|
/** Filters for meetings with the provided external_ref(s). */
|
|
25679
26422
|
external_ref?: string[];
|
|
25680
26423
|
/**
|
|
@@ -25724,7 +26467,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25724
26467
|
'sync_metadata.origin_system'?: string[];
|
|
25725
26468
|
/** Filters for meeting by tags. */
|
|
25726
26469
|
tags?: string[];
|
|
25727
|
-
}, params?: RequestParams) => Promise<AxiosResponse<MeetingsCountResponse, any>>;
|
|
26470
|
+
}, params?: RequestParams) => Promise<AxiosResponse<MeetingsCountResponse, any, {}>>;
|
|
25728
26471
|
/**
|
|
25729
26472
|
* @description Counts the meeting records.
|
|
25730
26473
|
*
|
|
@@ -25734,7 +26477,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25734
26477
|
* @request POST:/meetings.count
|
|
25735
26478
|
* @secure
|
|
25736
26479
|
*/
|
|
25737
|
-
meetingsCountPost: (data: MeetingsCountRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsCountResponse, any>>;
|
|
26480
|
+
meetingsCountPost: (data: MeetingsCountRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsCountResponse, any, {}>>;
|
|
25738
26481
|
/**
|
|
25739
26482
|
* @description Creates a new meeting record.
|
|
25740
26483
|
*
|
|
@@ -25744,7 +26487,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25744
26487
|
* @request POST:/meetings.create
|
|
25745
26488
|
* @secure
|
|
25746
26489
|
*/
|
|
25747
|
-
meetingsCreate: (data: MeetingsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsCreateResponse, any>>;
|
|
26490
|
+
meetingsCreate: (data: MeetingsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsCreateResponse, any, {}>>;
|
|
25748
26491
|
/**
|
|
25749
26492
|
* @description Deletes the meeting record.
|
|
25750
26493
|
*
|
|
@@ -25754,7 +26497,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25754
26497
|
* @request POST:/meetings.delete
|
|
25755
26498
|
* @secure
|
|
25756
26499
|
*/
|
|
25757
|
-
meetingsDelete: (data: MeetingsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
26500
|
+
meetingsDelete: (data: MeetingsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
25758
26501
|
/**
|
|
25759
26502
|
* @description Gets the meeting record.
|
|
25760
26503
|
*
|
|
@@ -25770,7 +26513,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25770
26513
|
* @format id
|
|
25771
26514
|
*/
|
|
25772
26515
|
id: string;
|
|
25773
|
-
}, params?: RequestParams) => Promise<AxiosResponse<MeetingsGetResponse, any>>;
|
|
26516
|
+
}, params?: RequestParams) => Promise<AxiosResponse<MeetingsGetResponse, any, {}>>;
|
|
25774
26517
|
/**
|
|
25775
26518
|
* @description Gets the meeting record.
|
|
25776
26519
|
*
|
|
@@ -25780,7 +26523,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25780
26523
|
* @request POST:/meetings.get
|
|
25781
26524
|
* @secure
|
|
25782
26525
|
*/
|
|
25783
|
-
meetingsGetPost: (data: MeetingsGetRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsGetResponse, any>>;
|
|
26526
|
+
meetingsGetPost: (data: MeetingsGetRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsGetResponse, any, {}>>;
|
|
25784
26527
|
/**
|
|
25785
26528
|
* @description Lists the meeting records.
|
|
25786
26529
|
*
|
|
@@ -25803,6 +26546,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25803
26546
|
cursor?: string;
|
|
25804
26547
|
/** Filters for meeting on custom fields. */
|
|
25805
26548
|
custom_fields?: object;
|
|
26549
|
+
/** Direction of the meetings to be fetched. */
|
|
26550
|
+
direction?: MeetingDirection[];
|
|
25806
26551
|
/** Filters for meetings with the provided external_ref(s). */
|
|
25807
26552
|
external_ref?: string[];
|
|
25808
26553
|
/**
|
|
@@ -25864,7 +26609,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25864
26609
|
'sync_metadata.origin_system'?: string[];
|
|
25865
26610
|
/** Filters for meeting by tags. */
|
|
25866
26611
|
tags?: string[];
|
|
25867
|
-
}, params?: RequestParams) => Promise<AxiosResponse<MeetingsListResponse, any>>;
|
|
26612
|
+
}, params?: RequestParams) => Promise<AxiosResponse<MeetingsListResponse, any, {}>>;
|
|
25868
26613
|
/**
|
|
25869
26614
|
* @description Lists the meeting records.
|
|
25870
26615
|
*
|
|
@@ -25874,7 +26619,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25874
26619
|
* @request POST:/meetings.list
|
|
25875
26620
|
* @secure
|
|
25876
26621
|
*/
|
|
25877
|
-
meetingsListPost: (data: MeetingsListRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsListResponse, any>>;
|
|
26622
|
+
meetingsListPost: (data: MeetingsListRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsListResponse, any, {}>>;
|
|
25878
26623
|
/**
|
|
25879
26624
|
* @description Updates the meeting record.
|
|
25880
26625
|
*
|
|
@@ -25884,7 +26629,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25884
26629
|
* @request POST:/meetings.update
|
|
25885
26630
|
* @secure
|
|
25886
26631
|
*/
|
|
25887
|
-
meetingsUpdate: (data: MeetingsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsUpdateResponse, any>>;
|
|
26632
|
+
meetingsUpdate: (data: MeetingsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<MeetingsUpdateResponse, any, {}>>;
|
|
25888
26633
|
/**
|
|
25889
26634
|
* @description Executes the metric action on the given object.
|
|
25890
26635
|
*
|
|
@@ -25894,7 +26639,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25894
26639
|
* @request POST:/metric-action.execute
|
|
25895
26640
|
* @secure
|
|
25896
26641
|
*/
|
|
25897
|
-
metricActionExecute: (data: MetricActionExecuteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
26642
|
+
metricActionExecute: (data: MetricActionExecuteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
25898
26643
|
/**
|
|
25899
26644
|
* @description Creates a custom metric definition
|
|
25900
26645
|
*
|
|
@@ -25904,7 +26649,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25904
26649
|
* @request POST:/metric-definitions.create
|
|
25905
26650
|
* @secure
|
|
25906
26651
|
*/
|
|
25907
|
-
metricDefinitionsCreate: (data: MetricDefinitionsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsCreateResponse, any>>;
|
|
26652
|
+
metricDefinitionsCreate: (data: MetricDefinitionsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsCreateResponse, any, {}>>;
|
|
25908
26653
|
/**
|
|
25909
26654
|
* @description Deletes a custom metric definition
|
|
25910
26655
|
*
|
|
@@ -25914,7 +26659,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25914
26659
|
* @request POST:/metric-definitions.delete
|
|
25915
26660
|
* @secure
|
|
25916
26661
|
*/
|
|
25917
|
-
metricDefinitionsDelete: (data: MetricDefinitionsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
26662
|
+
metricDefinitionsDelete: (data: MetricDefinitionsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
25918
26663
|
/**
|
|
25919
26664
|
* @description Gets a custom metric definition
|
|
25920
26665
|
*
|
|
@@ -25937,7 +26682,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25937
26682
|
* @maxLength 64
|
|
25938
26683
|
*/
|
|
25939
26684
|
name?: string;
|
|
25940
|
-
}, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsGetResponse, any>>;
|
|
26685
|
+
}, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsGetResponse, any, {}>>;
|
|
25941
26686
|
/**
|
|
25942
26687
|
* @description Gets a custom metric definition
|
|
25943
26688
|
*
|
|
@@ -25947,7 +26692,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25947
26692
|
* @request POST:/metric-definitions.get
|
|
25948
26693
|
* @secure
|
|
25949
26694
|
*/
|
|
25950
|
-
metricDefinitionsGetPost: (data: MetricDefinitionsGetRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsGetResponse, any>>;
|
|
26695
|
+
metricDefinitionsGetPost: (data: MetricDefinitionsGetRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsGetResponse, any, {}>>;
|
|
25951
26696
|
/**
|
|
25952
26697
|
* @description Lists metric definitions matching a filter.
|
|
25953
26698
|
*
|
|
@@ -25987,7 +26732,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25987
26732
|
status?: MetricDefinitionStatus[];
|
|
25988
26733
|
/** The type of metric definitions sought. */
|
|
25989
26734
|
type?: MetricDefinitionMetricType[];
|
|
25990
|
-
}, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsListResponse, any>>;
|
|
26735
|
+
}, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsListResponse, any, {}>>;
|
|
25991
26736
|
/**
|
|
25992
26737
|
* @description Lists metric definitions matching a filter.
|
|
25993
26738
|
*
|
|
@@ -25997,7 +26742,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
25997
26742
|
* @request POST:/metric-definitions.list
|
|
25998
26743
|
* @secure
|
|
25999
26744
|
*/
|
|
26000
|
-
metricDefinitionsListPost: (data: MetricDefinitionsListRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsListResponse, any>>;
|
|
26745
|
+
metricDefinitionsListPost: (data: MetricDefinitionsListRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsListResponse, any, {}>>;
|
|
26001
26746
|
/**
|
|
26002
26747
|
* @description Updates a custom metric definition
|
|
26003
26748
|
*
|
|
@@ -26007,7 +26752,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26007
26752
|
* @request POST:/metric-definitions.update
|
|
26008
26753
|
* @secure
|
|
26009
26754
|
*/
|
|
26010
|
-
metricDefinitionsUpdate: (data: MetricDefinitionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsUpdateResponse, any>>;
|
|
26755
|
+
metricDefinitionsUpdate: (data: MetricDefinitionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<MetricDefinitionsUpdateResponse, any, {}>>;
|
|
26011
26756
|
/**
|
|
26012
26757
|
* @description Gets a metric tracker.
|
|
26013
26758
|
*
|
|
@@ -26028,7 +26773,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26028
26773
|
* @format id
|
|
26029
26774
|
*/
|
|
26030
26775
|
object: string;
|
|
26031
|
-
}, params?: RequestParams) => Promise<AxiosResponse<MetricTrackersGetResponse, any>>;
|
|
26776
|
+
}, params?: RequestParams) => Promise<AxiosResponse<MetricTrackersGetResponse, any, {}>>;
|
|
26032
26777
|
/**
|
|
26033
26778
|
* @description Gets a metric tracker.
|
|
26034
26779
|
*
|
|
@@ -26038,7 +26783,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26038
26783
|
* @request POST:/metric-trackers.get
|
|
26039
26784
|
* @secure
|
|
26040
26785
|
*/
|
|
26041
|
-
metricTrackersGetPost: (data: MetricTrackersGetRequest, params?: RequestParams) => Promise<AxiosResponse<MetricTrackersGetResponse, any>>;
|
|
26786
|
+
metricTrackersGetPost: (data: MetricTrackersGetRequest, params?: RequestParams) => Promise<AxiosResponse<MetricTrackersGetResponse, any, {}>>;
|
|
26042
26787
|
/**
|
|
26043
26788
|
* @description Ingest endpoint for DevRev metrics data from clients.
|
|
26044
26789
|
*
|
|
@@ -26048,7 +26793,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26048
26793
|
* @request POST:/metrics.devrev.ingest
|
|
26049
26794
|
* @secure
|
|
26050
26795
|
*/
|
|
26051
|
-
metricsDevrevIngest: (data: MetricsDataIngestRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
26796
|
+
metricsDevrevIngest: (data: MetricsDataIngestRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
26052
26797
|
/**
|
|
26053
26798
|
* @description Generate a notification.
|
|
26054
26799
|
*
|
|
@@ -26058,7 +26803,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26058
26803
|
* @request POST:/notifications.send
|
|
26059
26804
|
* @secure
|
|
26060
26805
|
*/
|
|
26061
|
-
notificationsSend: (data: NotificationsSendRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
26806
|
+
notificationsSend: (data: NotificationsSendRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
26062
26807
|
/**
|
|
26063
26808
|
* @description Creates an organization schedule fragment.
|
|
26064
26809
|
*
|
|
@@ -26068,7 +26813,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26068
26813
|
* @request POST:/org-schedule-fragments.create
|
|
26069
26814
|
* @secure
|
|
26070
26815
|
*/
|
|
26071
|
-
orgScheduleFragmentsCreate: (data: OrgScheduleFragmentsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsCreateResponse, any>>;
|
|
26816
|
+
orgScheduleFragmentsCreate: (data: OrgScheduleFragmentsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsCreateResponse, any, {}>>;
|
|
26072
26817
|
/**
|
|
26073
26818
|
* @description Gets an organization schedule fragment.
|
|
26074
26819
|
*
|
|
@@ -26084,7 +26829,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26084
26829
|
* @format id
|
|
26085
26830
|
*/
|
|
26086
26831
|
id: string;
|
|
26087
|
-
}, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsGetResponse, any>>;
|
|
26832
|
+
}, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsGetResponse, any, {}>>;
|
|
26088
26833
|
/**
|
|
26089
26834
|
* @description Gets an organization schedule fragment.
|
|
26090
26835
|
*
|
|
@@ -26094,7 +26839,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26094
26839
|
* @request POST:/org-schedule-fragments.get
|
|
26095
26840
|
* @secure
|
|
26096
26841
|
*/
|
|
26097
|
-
orgScheduleFragmentsGetPost: (data: OrgScheduleFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsGetResponse, any>>;
|
|
26842
|
+
orgScheduleFragmentsGetPost: (data: OrgScheduleFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsGetResponse, any, {}>>;
|
|
26098
26843
|
/**
|
|
26099
26844
|
* @description Changes stage of an organization schedule fragment.
|
|
26100
26845
|
*
|
|
@@ -26104,7 +26849,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26104
26849
|
* @request POST:/org-schedule-fragments.transition
|
|
26105
26850
|
* @secure
|
|
26106
26851
|
*/
|
|
26107
|
-
orgScheduleFragmentsTransition: (data: OrgScheduleFragmentsTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsTransitionResponse, any>>;
|
|
26852
|
+
orgScheduleFragmentsTransition: (data: OrgScheduleFragmentsTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<OrgScheduleFragmentsTransitionResponse, any, {}>>;
|
|
26108
26853
|
/**
|
|
26109
26854
|
* @description Creates an organization schedule with a default weekly organization schedule and a list of organization schedule fragments.
|
|
26110
26855
|
*
|
|
@@ -26114,7 +26859,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26114
26859
|
* @request POST:/org-schedules.create
|
|
26115
26860
|
* @secure
|
|
26116
26861
|
*/
|
|
26117
|
-
orgSchedulesCreate: (data: OrgSchedulesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesCreateResponse, any>>;
|
|
26862
|
+
orgSchedulesCreate: (data: OrgSchedulesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesCreateResponse, any, {}>>;
|
|
26118
26863
|
/**
|
|
26119
26864
|
* @description Evaluates an organization's schedule at specified instants.
|
|
26120
26865
|
*
|
|
@@ -26136,7 +26881,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26136
26881
|
* @example ["2023-01-01T12:00:00.000Z"]
|
|
26137
26882
|
*/
|
|
26138
26883
|
instants: string[];
|
|
26139
|
-
}, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesEvaluateResponse, any>>;
|
|
26884
|
+
}, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesEvaluateResponse, any, {}>>;
|
|
26140
26885
|
/**
|
|
26141
26886
|
* @description Evaluates an organization's schedule at specified instants.
|
|
26142
26887
|
*
|
|
@@ -26146,7 +26891,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26146
26891
|
* @request POST:/org-schedules.evaluate
|
|
26147
26892
|
* @secure
|
|
26148
26893
|
*/
|
|
26149
|
-
orgSchedulesEvaluatePost: (data: OrgSchedulesEvaluateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesEvaluateResponse, any>>;
|
|
26894
|
+
orgSchedulesEvaluatePost: (data: OrgSchedulesEvaluateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesEvaluateResponse, any, {}>>;
|
|
26150
26895
|
/**
|
|
26151
26896
|
* @description Gets an organization schedule.
|
|
26152
26897
|
*
|
|
@@ -26162,7 +26907,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26162
26907
|
* @format id
|
|
26163
26908
|
*/
|
|
26164
26909
|
id: string;
|
|
26165
|
-
}, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesGetResponse, any>>;
|
|
26910
|
+
}, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesGetResponse, any, {}>>;
|
|
26166
26911
|
/**
|
|
26167
26912
|
* @description Gets an organization schedule.
|
|
26168
26913
|
*
|
|
@@ -26172,7 +26917,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26172
26917
|
* @request POST:/org-schedules.get
|
|
26173
26918
|
* @secure
|
|
26174
26919
|
*/
|
|
26175
|
-
orgSchedulesGetPost: (data: OrgSchedulesGetRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesGetResponse, any>>;
|
|
26920
|
+
orgSchedulesGetPost: (data: OrgSchedulesGetRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesGetResponse, any, {}>>;
|
|
26176
26921
|
/**
|
|
26177
26922
|
* @description Gets list of organization schedules.
|
|
26178
26923
|
*
|
|
@@ -26204,7 +26949,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26204
26949
|
mode?: ListMode;
|
|
26205
26950
|
/** The organization schedule statuses the filter matches. */
|
|
26206
26951
|
status?: OrgScheduleStatus[];
|
|
26207
|
-
}, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesListResponse, any>>;
|
|
26952
|
+
}, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesListResponse, any, {}>>;
|
|
26208
26953
|
/**
|
|
26209
26954
|
* @description Gets list of organization schedules.
|
|
26210
26955
|
*
|
|
@@ -26214,7 +26959,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26214
26959
|
* @request POST:/org-schedules.list
|
|
26215
26960
|
* @secure
|
|
26216
26961
|
*/
|
|
26217
|
-
orgSchedulesListPost: (data: OrgSchedulesListRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesListResponse, any>>;
|
|
26962
|
+
orgSchedulesListPost: (data: OrgSchedulesListRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesListResponse, any, {}>>;
|
|
26218
26963
|
/**
|
|
26219
26964
|
* @description Sets next organization schedule fragment which must begin the day the last existing fragment ends.
|
|
26220
26965
|
*
|
|
@@ -26224,7 +26969,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26224
26969
|
* @request POST:/org-schedules.set-future
|
|
26225
26970
|
* @secure
|
|
26226
26971
|
*/
|
|
26227
|
-
orgSchedulesSetFuture: (data: OrgSchedulesSetFutureRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesSetFutureResponse, any>>;
|
|
26972
|
+
orgSchedulesSetFuture: (data: OrgSchedulesSetFutureRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesSetFutureResponse, any, {}>>;
|
|
26228
26973
|
/**
|
|
26229
26974
|
* @description Publishes or archives an organization schedule.
|
|
26230
26975
|
*
|
|
@@ -26234,7 +26979,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26234
26979
|
* @request POST:/org-schedules.transition
|
|
26235
26980
|
* @secure
|
|
26236
26981
|
*/
|
|
26237
|
-
orgSchedulesTransition: (data: OrgSchedulesTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesTransitionResponse, any>>;
|
|
26982
|
+
orgSchedulesTransition: (data: OrgSchedulesTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesTransitionResponse, any, {}>>;
|
|
26238
26983
|
/**
|
|
26239
26984
|
* @description Updates an organization schedule.
|
|
26240
26985
|
*
|
|
@@ -26244,7 +26989,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26244
26989
|
* @request POST:/org-schedules.update
|
|
26245
26990
|
* @secure
|
|
26246
26991
|
*/
|
|
26247
|
-
orgSchedulesUpdate: (data: OrgSchedulesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesUpdateResponse, any>>;
|
|
26992
|
+
orgSchedulesUpdate: (data: OrgSchedulesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<OrgSchedulesUpdateResponse, any, {}>>;
|
|
26248
26993
|
/**
|
|
26249
26994
|
* @description Creates new [part](https://devrev.ai/docs/product/parts).
|
|
26250
26995
|
*
|
|
@@ -26254,7 +26999,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26254
26999
|
* @request POST:/parts.create
|
|
26255
27000
|
* @secure
|
|
26256
27001
|
*/
|
|
26257
|
-
partsCreate: (data: PartsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<PartsCreateResponse, any>>;
|
|
27002
|
+
partsCreate: (data: PartsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<PartsCreateResponse, any, {}>>;
|
|
26258
27003
|
/**
|
|
26259
27004
|
* @description Deletes a [part](https://devrev.ai/docs/product/parts).
|
|
26260
27005
|
*
|
|
@@ -26264,7 +27009,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26264
27009
|
* @request POST:/parts.delete
|
|
26265
27010
|
* @secure
|
|
26266
27011
|
*/
|
|
26267
|
-
partsDelete: (data: PartsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
27012
|
+
partsDelete: (data: PartsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
26268
27013
|
/**
|
|
26269
27014
|
* @description Gets a [part's](https://devrev.ai/docs/product/parts) information.
|
|
26270
27015
|
*
|
|
@@ -26281,7 +27026,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26281
27026
|
* @example "PROD-12345"
|
|
26282
27027
|
*/
|
|
26283
27028
|
id: string;
|
|
26284
|
-
}, params?: RequestParams) => Promise<AxiosResponse<PartsGetResponse, any>>;
|
|
27029
|
+
}, params?: RequestParams) => Promise<AxiosResponse<PartsGetResponse, any, {}>>;
|
|
26285
27030
|
/**
|
|
26286
27031
|
* @description Gets a [part's](https://devrev.ai/docs/product/parts) information.
|
|
26287
27032
|
*
|
|
@@ -26291,7 +27036,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26291
27036
|
* @request POST:/parts.get
|
|
26292
27037
|
* @secure
|
|
26293
27038
|
*/
|
|
26294
|
-
partsGetPost: (data: PartsGetRequest, params?: RequestParams) => Promise<AxiosResponse<PartsGetResponse, any>>;
|
|
27039
|
+
partsGetPost: (data: PartsGetRequest, params?: RequestParams) => Promise<AxiosResponse<PartsGetResponse, any, {}>>;
|
|
26295
27040
|
/**
|
|
26296
27041
|
* @description Lists a collection of [parts](https://devrev.ai/docs/product/parts).
|
|
26297
27042
|
*
|
|
@@ -26431,7 +27176,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26431
27176
|
tags?: string[];
|
|
26432
27177
|
/** Filters for parts of the provided type(s). */
|
|
26433
27178
|
type?: PartType[];
|
|
26434
|
-
}, params?: RequestParams) => Promise<AxiosResponse<PartsListResponse, any>>;
|
|
27179
|
+
}, params?: RequestParams) => Promise<AxiosResponse<PartsListResponse, any, {}>>;
|
|
26435
27180
|
/**
|
|
26436
27181
|
* @description Lists a collection of [parts](https://devrev.ai/docs/product/parts).
|
|
26437
27182
|
*
|
|
@@ -26441,7 +27186,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26441
27186
|
* @request POST:/parts.list
|
|
26442
27187
|
* @secure
|
|
26443
27188
|
*/
|
|
26444
|
-
partsListPost: (data: PartsListRequest, params?: RequestParams) => Promise<AxiosResponse<PartsListResponse, any>>;
|
|
27189
|
+
partsListPost: (data: PartsListRequest, params?: RequestParams) => Promise<AxiosResponse<PartsListResponse, any, {}>>;
|
|
26445
27190
|
/**
|
|
26446
27191
|
* @description Updates a [part's](https://devrev.ai/docs/product/parts) information.
|
|
26447
27192
|
*
|
|
@@ -26451,7 +27196,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26451
27196
|
* @request POST:/parts.update
|
|
26452
27197
|
* @secure
|
|
26453
27198
|
*/
|
|
26454
|
-
partsUpdate: (data: PartsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<PartsUpdateResponse, any>>;
|
|
27199
|
+
partsUpdate: (data: PartsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<PartsUpdateResponse, any, {}>>;
|
|
26455
27200
|
/**
|
|
26456
27201
|
* @description Get the preferences object.
|
|
26457
27202
|
*
|
|
@@ -26476,7 +27221,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26476
27221
|
* @format text
|
|
26477
27222
|
*/
|
|
26478
27223
|
language_code?: string;
|
|
26479
|
-
}, params?: RequestParams) => Promise<AxiosResponse<PreferencesGetResponse, any>>;
|
|
27224
|
+
}, params?: RequestParams) => Promise<AxiosResponse<PreferencesGetResponse, any, {}>>;
|
|
26480
27225
|
/**
|
|
26481
27226
|
* @description Get the preferences object.
|
|
26482
27227
|
*
|
|
@@ -26486,7 +27231,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26486
27231
|
* @request POST:/preferences.get
|
|
26487
27232
|
* @secure
|
|
26488
27233
|
*/
|
|
26489
|
-
preferencesGetPost: (data: PreferencesGetRequest, params?: RequestParams) => Promise<AxiosResponse<PreferencesGetResponse, any>>;
|
|
27234
|
+
preferencesGetPost: (data: PreferencesGetRequest, params?: RequestParams) => Promise<AxiosResponse<PreferencesGetResponse, any, {}>>;
|
|
26490
27235
|
/**
|
|
26491
27236
|
* @description Updates the preference for a particular object.
|
|
26492
27237
|
*
|
|
@@ -26496,7 +27241,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26496
27241
|
* @request POST:/preferences.update
|
|
26497
27242
|
* @secure
|
|
26498
27243
|
*/
|
|
26499
|
-
preferencesUpdate: (data: PreferencesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<PreferencesUpdateResponse, any>>;
|
|
27244
|
+
preferencesUpdate: (data: PreferencesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<PreferencesUpdateResponse, any, {}>>;
|
|
26500
27245
|
/**
|
|
26501
27246
|
* @description Creates a question-answer.
|
|
26502
27247
|
*
|
|
@@ -26506,7 +27251,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26506
27251
|
* @request POST:/question-answers.create
|
|
26507
27252
|
* @secure
|
|
26508
27253
|
*/
|
|
26509
|
-
createQuestionAnswer: (data: QuestionAnswersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersCreateResponse, any>>;
|
|
27254
|
+
createQuestionAnswer: (data: QuestionAnswersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersCreateResponse, any, {}>>;
|
|
26510
27255
|
/**
|
|
26511
27256
|
* @description Deletes a question-answer.
|
|
26512
27257
|
*
|
|
@@ -26516,7 +27261,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26516
27261
|
* @request POST:/question-answers.delete
|
|
26517
27262
|
* @secure
|
|
26518
27263
|
*/
|
|
26519
|
-
deleteQuestionAnswer: (data: QuestionAnswersDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
27264
|
+
deleteQuestionAnswer: (data: QuestionAnswersDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
26520
27265
|
/**
|
|
26521
27266
|
* @description Gets a question-answer.
|
|
26522
27267
|
*
|
|
@@ -26532,7 +27277,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26532
27277
|
* @format id
|
|
26533
27278
|
*/
|
|
26534
27279
|
id: string;
|
|
26535
|
-
}, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersGetResponse, any>>;
|
|
27280
|
+
}, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersGetResponse, any, {}>>;
|
|
26536
27281
|
/**
|
|
26537
27282
|
* @description Gets a question-answer.
|
|
26538
27283
|
*
|
|
@@ -26542,7 +27287,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26542
27287
|
* @request POST:/question-answers.get
|
|
26543
27288
|
* @secure
|
|
26544
27289
|
*/
|
|
26545
|
-
getQuestionAnswerPost: (data: QuestionAnswersGetRequest, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersGetResponse, any>>;
|
|
27290
|
+
getQuestionAnswerPost: (data: QuestionAnswersGetRequest, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersGetResponse, any, {}>>;
|
|
26546
27291
|
/**
|
|
26547
27292
|
* @description Lists a collection of question-answers.
|
|
26548
27293
|
*
|
|
@@ -26591,7 +27336,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26591
27336
|
* @example ["DEVU-12345"]
|
|
26592
27337
|
*/
|
|
26593
27338
|
owned_by?: string[];
|
|
26594
|
-
}, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersListResponse, any>>;
|
|
27339
|
+
}, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersListResponse, any, {}>>;
|
|
26595
27340
|
/**
|
|
26596
27341
|
* @description Lists a collection of question-answers.
|
|
26597
27342
|
*
|
|
@@ -26601,7 +27346,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26601
27346
|
* @request POST:/question-answers.list
|
|
26602
27347
|
* @secure
|
|
26603
27348
|
*/
|
|
26604
|
-
listQuestionAnswersPost: (data: QuestionAnswersListRequest, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersListResponse, any>>;
|
|
27349
|
+
listQuestionAnswersPost: (data: QuestionAnswersListRequest, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersListResponse, any, {}>>;
|
|
26605
27350
|
/**
|
|
26606
27351
|
* @description Updates a question-answer.
|
|
26607
27352
|
*
|
|
@@ -26611,7 +27356,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26611
27356
|
* @request POST:/question-answers.update
|
|
26612
27357
|
* @secure
|
|
26613
27358
|
*/
|
|
26614
|
-
updateQuestionAnswer: (data: QuestionAnswersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersUpdateResponse, any>>;
|
|
27359
|
+
updateQuestionAnswer: (data: QuestionAnswersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersUpdateResponse, any, {}>>;
|
|
26615
27360
|
/**
|
|
26616
27361
|
* @description Lists the reactors for an object.
|
|
26617
27362
|
*
|
|
@@ -26645,7 +27390,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26645
27390
|
* @format int32
|
|
26646
27391
|
*/
|
|
26647
27392
|
limit?: number;
|
|
26648
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ReactionsListResponse, any>>;
|
|
27393
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ReactionsListResponse, any, {}>>;
|
|
26649
27394
|
/**
|
|
26650
27395
|
* @description Lists the reactors for an object.
|
|
26651
27396
|
*
|
|
@@ -26655,7 +27400,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26655
27400
|
* @request POST:/reactions.list
|
|
26656
27401
|
* @secure
|
|
26657
27402
|
*/
|
|
26658
|
-
reactionsListPost: (data: ReactionsListRequest, params?: RequestParams) => Promise<AxiosResponse<ReactionsListResponse, any>>;
|
|
27403
|
+
reactionsListPost: (data: ReactionsListRequest, params?: RequestParams) => Promise<AxiosResponse<ReactionsListResponse, any, {}>>;
|
|
26659
27404
|
/**
|
|
26660
27405
|
* @description Updates a reaction for an object.
|
|
26661
27406
|
*
|
|
@@ -26665,7 +27410,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26665
27410
|
* @request POST:/reactions.update
|
|
26666
27411
|
* @secure
|
|
26667
27412
|
*/
|
|
26668
|
-
reactionsUpdate: (data: ReactionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
27413
|
+
reactionsUpdate: (data: ReactionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
26669
27414
|
/**
|
|
26670
27415
|
* @description Returns a response for the chat conversation.
|
|
26671
27416
|
*
|
|
@@ -26675,7 +27420,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26675
27420
|
* @request POST:/recommendations.chat.completions
|
|
26676
27421
|
* @secure
|
|
26677
27422
|
*/
|
|
26678
|
-
chatCompletions: (data: ChatCompletionsRequest, params?: RequestParams) => Promise<AxiosResponse<ChatCompletionsResponse, any>>;
|
|
27423
|
+
chatCompletions: (data: ChatCompletionsRequest, params?: RequestParams) => Promise<AxiosResponse<ChatCompletionsResponse, any, {}>>;
|
|
26679
27424
|
/**
|
|
26680
27425
|
* @description Gets a reply for a user query.
|
|
26681
27426
|
*
|
|
@@ -26685,7 +27430,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26685
27430
|
* @request POST:/recommendations.get-reply
|
|
26686
27431
|
* @secure
|
|
26687
27432
|
*/
|
|
26688
|
-
getReply: (data: GetReplyRequest, params?: RequestParams) => Promise<AxiosResponse<GetReplyResponse, any>>;
|
|
27433
|
+
getReply: (data: GetReplyRequest, params?: RequestParams) => Promise<AxiosResponse<GetReplyResponse, any, {}>>;
|
|
26689
27434
|
/**
|
|
26690
27435
|
* @description Gets a record template object.
|
|
26691
27436
|
*
|
|
@@ -26701,7 +27446,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26701
27446
|
* @format id
|
|
26702
27447
|
*/
|
|
26703
27448
|
id: string;
|
|
26704
|
-
}, params?: RequestParams) => Promise<AxiosResponse<RecordTemplateGetResponse, any>>;
|
|
27449
|
+
}, params?: RequestParams) => Promise<AxiosResponse<RecordTemplateGetResponse, any, {}>>;
|
|
26705
27450
|
/**
|
|
26706
27451
|
* @description Gets a record template object.
|
|
26707
27452
|
*
|
|
@@ -26711,7 +27456,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26711
27456
|
* @request POST:/record-templates.get
|
|
26712
27457
|
* @secure
|
|
26713
27458
|
*/
|
|
26714
|
-
recordTemplateGetPost: (data: RecordTemplateGetRequest, params?: RequestParams) => Promise<AxiosResponse<RecordTemplateGetResponse, any>>;
|
|
27459
|
+
recordTemplateGetPost: (data: RecordTemplateGetRequest, params?: RequestParams) => Promise<AxiosResponse<RecordTemplateGetResponse, any, {}>>;
|
|
26715
27460
|
/**
|
|
26716
27461
|
* @description Creates a Rev organization in the authenticated user's Dev organization.
|
|
26717
27462
|
*
|
|
@@ -26721,7 +27466,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26721
27466
|
* @request POST:/rev-orgs.create
|
|
26722
27467
|
* @secure
|
|
26723
27468
|
*/
|
|
26724
|
-
revOrgsCreate: (data: RevOrgsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsCreateResponse, any>>;
|
|
27469
|
+
revOrgsCreate: (data: RevOrgsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsCreateResponse, any, {}>>;
|
|
26725
27470
|
/**
|
|
26726
27471
|
* @description Deletes the Rev organization.
|
|
26727
27472
|
*
|
|
@@ -26731,7 +27476,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26731
27476
|
* @request POST:/rev-orgs.delete
|
|
26732
27477
|
* @secure
|
|
26733
27478
|
*/
|
|
26734
|
-
revOrgsDelete: (data: RevOrgsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
27479
|
+
revOrgsDelete: (data: RevOrgsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
26735
27480
|
/**
|
|
26736
27481
|
* @description Retrieves the Rev organization's information.
|
|
26737
27482
|
*
|
|
@@ -26755,7 +27500,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26755
27500
|
* @example "REV-AbCdEfGh"
|
|
26756
27501
|
*/
|
|
26757
27502
|
id?: string;
|
|
26758
|
-
}, params?: RequestParams) => Promise<AxiosResponse<RevOrgsGetResponse, any>>;
|
|
27503
|
+
}, params?: RequestParams) => Promise<AxiosResponse<RevOrgsGetResponse, any, {}>>;
|
|
26759
27504
|
/**
|
|
26760
27505
|
* @description Retrieves the Rev organization's information.
|
|
26761
27506
|
*
|
|
@@ -26765,7 +27510,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26765
27510
|
* @request POST:/rev-orgs.get
|
|
26766
27511
|
* @secure
|
|
26767
27512
|
*/
|
|
26768
|
-
revOrgsGetPost: (data: RevOrgsGetRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsGetResponse, any>>;
|
|
27513
|
+
revOrgsGetPost: (data: RevOrgsGetRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsGetResponse, any, {}>>;
|
|
26769
27514
|
/**
|
|
26770
27515
|
* @description Gets the list of Rev organizations' information belonging to the authenticated user's Dev Organization which the user is also authorized to access.
|
|
26771
27516
|
*
|
|
@@ -26843,7 +27588,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26843
27588
|
sort_by?: string[];
|
|
26844
27589
|
/** List of tags to be filtered. */
|
|
26845
27590
|
tags?: string[];
|
|
26846
|
-
}, params?: RequestParams) => Promise<AxiosResponse<RevOrgsListResponse, any>>;
|
|
27591
|
+
}, params?: RequestParams) => Promise<AxiosResponse<RevOrgsListResponse, any, {}>>;
|
|
26847
27592
|
/**
|
|
26848
27593
|
* @description Gets the list of Rev organizations' information belonging to the authenticated user's Dev Organization which the user is also authorized to access.
|
|
26849
27594
|
*
|
|
@@ -26853,7 +27598,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26853
27598
|
* @request POST:/rev-orgs.list
|
|
26854
27599
|
* @secure
|
|
26855
27600
|
*/
|
|
26856
|
-
revOrgsListPost: (data: RevOrgsListRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsListResponse, any>>;
|
|
27601
|
+
revOrgsListPost: (data: RevOrgsListRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsListResponse, any, {}>>;
|
|
26857
27602
|
/**
|
|
26858
27603
|
* @description Updates the Rev organization's information.
|
|
26859
27604
|
*
|
|
@@ -26863,7 +27608,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26863
27608
|
* @request POST:/rev-orgs.update
|
|
26864
27609
|
* @secure
|
|
26865
27610
|
*/
|
|
26866
|
-
revOrgsUpdate: (data: RevOrgsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsUpdateResponse, any>>;
|
|
27611
|
+
revOrgsUpdate: (data: RevOrgsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsUpdateResponse, any, {}>>;
|
|
26867
27612
|
/**
|
|
26868
27613
|
* @description Adds an association to a Rev user. This API is only available when the multi-association contact feature is enabled.
|
|
26869
27614
|
*
|
|
@@ -26873,7 +27618,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26873
27618
|
* @request POST:/rev-users.associations.add
|
|
26874
27619
|
* @secure
|
|
26875
27620
|
*/
|
|
26876
|
-
revUsersAssociationsAdd: (data: RevUsersAssociationsAddRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
27621
|
+
revUsersAssociationsAdd: (data: RevUsersAssociationsAddRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
26877
27622
|
/**
|
|
26878
27623
|
* @description Returns a list of associations on a Rev user.
|
|
26879
27624
|
*
|
|
@@ -26906,7 +27651,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26906
27651
|
* used.
|
|
26907
27652
|
*/
|
|
26908
27653
|
mode?: ListMode;
|
|
26909
|
-
}, params?: RequestParams) => Promise<AxiosResponse<RevUsersAssociationsListResponse, any>>;
|
|
27654
|
+
}, params?: RequestParams) => Promise<AxiosResponse<RevUsersAssociationsListResponse, any, {}>>;
|
|
26910
27655
|
/**
|
|
26911
27656
|
* @description Returns a list of associations on a Rev user.
|
|
26912
27657
|
*
|
|
@@ -26916,7 +27661,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26916
27661
|
* @request POST:/rev-users.associations.list
|
|
26917
27662
|
* @secure
|
|
26918
27663
|
*/
|
|
26919
|
-
revUsersAssociationsListPost: (data: RevUsersAssociationsListRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersAssociationsListResponse, any>>;
|
|
27664
|
+
revUsersAssociationsListPost: (data: RevUsersAssociationsListRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersAssociationsListResponse, any, {}>>;
|
|
26920
27665
|
/**
|
|
26921
27666
|
* @description Removes an association from a Rev user. This API is only available when the multi-association contact feature is enabled.
|
|
26922
27667
|
*
|
|
@@ -26926,7 +27671,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26926
27671
|
* @request POST:/rev-users.associations.remove
|
|
26927
27672
|
* @secure
|
|
26928
27673
|
*/
|
|
26929
|
-
revUsersAssociationsRemove: (data: RevUsersAssociationsRemoveRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
27674
|
+
revUsersAssociationsRemove: (data: RevUsersAssociationsRemoveRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
26930
27675
|
/**
|
|
26931
27676
|
* @description Creates a Rev user for a Rev organization. Rev user can be a customer or a lead of an organization.
|
|
26932
27677
|
*
|
|
@@ -26936,7 +27681,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26936
27681
|
* @request POST:/rev-users.create
|
|
26937
27682
|
* @secure
|
|
26938
27683
|
*/
|
|
26939
|
-
revUsersCreate: (data: RevUsersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersCreateResponse, any>>;
|
|
27684
|
+
revUsersCreate: (data: RevUsersCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersCreateResponse, any, {}>>;
|
|
26940
27685
|
/**
|
|
26941
27686
|
* @description Deletes a Rev user.
|
|
26942
27687
|
*
|
|
@@ -26946,7 +27691,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26946
27691
|
* @request POST:/rev-users.delete
|
|
26947
27692
|
* @secure
|
|
26948
27693
|
*/
|
|
26949
|
-
revUsersDelete: (data: RevUsersDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
27694
|
+
revUsersDelete: (data: RevUsersDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
26950
27695
|
/**
|
|
26951
27696
|
* @description Deletes data of a contact.
|
|
26952
27697
|
*
|
|
@@ -26956,7 +27701,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26956
27701
|
* @request POST:/rev-users.delete-personal-data
|
|
26957
27702
|
* @secure
|
|
26958
27703
|
*/
|
|
26959
|
-
deleteRevUsersPersonalData: (data: DeleteRevUsersPersonalDataRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
27704
|
+
deleteRevUsersPersonalData: (data: DeleteRevUsersPersonalDataRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
26960
27705
|
/**
|
|
26961
27706
|
* @description Returns the Rev user of a Rev organization by its ID.
|
|
26962
27707
|
*
|
|
@@ -26972,7 +27717,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26972
27717
|
* @format id
|
|
26973
27718
|
*/
|
|
26974
27719
|
id: string;
|
|
26975
|
-
}, params?: RequestParams) => Promise<AxiosResponse<RevUsersGetResponse, any>>;
|
|
27720
|
+
}, params?: RequestParams) => Promise<AxiosResponse<RevUsersGetResponse, any, {}>>;
|
|
26976
27721
|
/**
|
|
26977
27722
|
* @description Returns the Rev user of a Rev organization by its ID.
|
|
26978
27723
|
*
|
|
@@ -26982,7 +27727,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26982
27727
|
* @request POST:/rev-users.get
|
|
26983
27728
|
* @secure
|
|
26984
27729
|
*/
|
|
26985
|
-
revUsersGetPost: (data: RevUsersGetRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersGetResponse, any>>;
|
|
27730
|
+
revUsersGetPost: (data: RevUsersGetRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersGetResponse, any, {}>>;
|
|
26986
27731
|
/**
|
|
26987
27732
|
* @description Links a rev user to a rev org.
|
|
26988
27733
|
*
|
|
@@ -26993,7 +27738,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
26993
27738
|
* @deprecated
|
|
26994
27739
|
* @secure
|
|
26995
27740
|
*/
|
|
26996
|
-
linkRevUserToRevOrg: (data: LinkRevUserToRevOrgRequest, params?: RequestParams) => Promise<AxiosResponse<LinkRevUserToRevOrgResponse, any>>;
|
|
27741
|
+
linkRevUserToRevOrg: (data: LinkRevUserToRevOrgRequest, params?: RequestParams) => Promise<AxiosResponse<LinkRevUserToRevOrgResponse, any, {}>>;
|
|
26997
27742
|
/**
|
|
26998
27743
|
* @description Returns a list of all Rev Users belonging to the authenticated user's Dev organization.
|
|
26999
27744
|
*
|
|
@@ -27074,7 +27819,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27074
27819
|
sort_by?: string[];
|
|
27075
27820
|
/** List of tags to be filtered. */
|
|
27076
27821
|
tags?: string[];
|
|
27077
|
-
}, params?: RequestParams) => Promise<AxiosResponse<RevUsersListResponse, any>>;
|
|
27822
|
+
}, params?: RequestParams) => Promise<AxiosResponse<RevUsersListResponse, any, {}>>;
|
|
27078
27823
|
/**
|
|
27079
27824
|
* @description Returns a list of all Rev Users belonging to the authenticated user's Dev organization.
|
|
27080
27825
|
*
|
|
@@ -27084,7 +27829,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27084
27829
|
* @request POST:/rev-users.list
|
|
27085
27830
|
* @secure
|
|
27086
27831
|
*/
|
|
27087
|
-
revUsersListPost: (data: RevUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersListResponse, any>>;
|
|
27832
|
+
revUsersListPost: (data: RevUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersListResponse, any, {}>>;
|
|
27088
27833
|
/**
|
|
27089
27834
|
* @description Merges the secondary Rev user into the primary Rev user.
|
|
27090
27835
|
*
|
|
@@ -27094,7 +27839,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27094
27839
|
* @request POST:/rev-users.merge
|
|
27095
27840
|
* @secure
|
|
27096
27841
|
*/
|
|
27097
|
-
revUsersMerge: (data: RevUsersMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
27842
|
+
revUsersMerge: (data: RevUsersMergeRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
27098
27843
|
/**
|
|
27099
27844
|
* @description Retrieves data of a contact.
|
|
27100
27845
|
*
|
|
@@ -27104,7 +27849,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27104
27849
|
* @request POST:/rev-users.personal-data
|
|
27105
27850
|
* @secure
|
|
27106
27851
|
*/
|
|
27107
|
-
getRevUsersPersonalData: (data: GetRevUsersPersonalDataRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
27852
|
+
getRevUsersPersonalData: (data: GetRevUsersPersonalDataRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
27108
27853
|
/**
|
|
27109
27854
|
* @description Scans through all Rev users.
|
|
27110
27855
|
*
|
|
@@ -27173,7 +27918,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27173
27918
|
rev_org?: string[];
|
|
27174
27919
|
/** List of tags to be filtered. */
|
|
27175
27920
|
tags?: string[];
|
|
27176
|
-
}, params?: RequestParams) => Promise<AxiosResponse<RevUsersScanResponse, any>>;
|
|
27921
|
+
}, params?: RequestParams) => Promise<AxiosResponse<RevUsersScanResponse, any, {}>>;
|
|
27177
27922
|
/**
|
|
27178
27923
|
* @description Scans through all Rev users.
|
|
27179
27924
|
*
|
|
@@ -27183,7 +27928,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27183
27928
|
* @request POST:/rev-users.scan
|
|
27184
27929
|
* @secure
|
|
27185
27930
|
*/
|
|
27186
|
-
revUsersScanPost: (data: RevUsersScanRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersScanResponse, any>>;
|
|
27931
|
+
revUsersScanPost: (data: RevUsersScanRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersScanResponse, any, {}>>;
|
|
27187
27932
|
/**
|
|
27188
27933
|
* @description Unlinks a rev user from a rev org.
|
|
27189
27934
|
*
|
|
@@ -27194,7 +27939,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27194
27939
|
* @deprecated
|
|
27195
27940
|
* @secure
|
|
27196
27941
|
*/
|
|
27197
|
-
unlinkRevUserFromRevOrg: (data: UnlinkRevUserFromRevOrgRequest, params?: RequestParams) => Promise<AxiosResponse<UnlinkRevUserFromRevOrgResponse, any>>;
|
|
27942
|
+
unlinkRevUserFromRevOrg: (data: UnlinkRevUserFromRevOrgRequest, params?: RequestParams) => Promise<AxiosResponse<UnlinkRevUserFromRevOrgResponse, any, {}>>;
|
|
27198
27943
|
/**
|
|
27199
27944
|
* @description Updates a Rev user.
|
|
27200
27945
|
*
|
|
@@ -27204,7 +27949,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27204
27949
|
* @request POST:/rev-users.update
|
|
27205
27950
|
* @secure
|
|
27206
27951
|
*/
|
|
27207
|
-
revUsersUpdate: (data: RevUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersUpdateResponse, any>>;
|
|
27952
|
+
revUsersUpdate: (data: RevUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersUpdateResponse, any, {}>>;
|
|
27208
27953
|
/**
|
|
27209
27954
|
* @description Assigns or revokes roles of a principal.
|
|
27210
27955
|
*
|
|
@@ -27214,7 +27959,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27214
27959
|
* @request POST:/roles.apply
|
|
27215
27960
|
* @secure
|
|
27216
27961
|
*/
|
|
27217
|
-
rolesApply: (data: RolesApplyRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
27962
|
+
rolesApply: (data: RolesApplyRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
27218
27963
|
/**
|
|
27219
27964
|
* @description Creates a new role.
|
|
27220
27965
|
*
|
|
@@ -27224,7 +27969,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27224
27969
|
* @request POST:/roles.create
|
|
27225
27970
|
* @secure
|
|
27226
27971
|
*/
|
|
27227
|
-
rolesCreate: (data: RolesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RolesCreateResponse, any>>;
|
|
27972
|
+
rolesCreate: (data: RolesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<RolesCreateResponse, any, {}>>;
|
|
27228
27973
|
/**
|
|
27229
27974
|
* @description Gets the aggregated schema.
|
|
27230
27975
|
*
|
|
@@ -27257,7 +28002,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27257
28002
|
* @format id
|
|
27258
28003
|
*/
|
|
27259
28004
|
stock_schema_fragment?: string;
|
|
27260
|
-
}, params?: RequestParams) => Promise<AxiosResponse<AggregatedSchemaGetResponse, any>>;
|
|
28005
|
+
}, params?: RequestParams) => Promise<AxiosResponse<AggregatedSchemaGetResponse, any, {}>>;
|
|
27261
28006
|
/**
|
|
27262
28007
|
* @description Gets the aggregated schema.
|
|
27263
28008
|
*
|
|
@@ -27267,7 +28012,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27267
28012
|
* @request POST:/schemas.aggregated.get
|
|
27268
28013
|
* @secure
|
|
27269
28014
|
*/
|
|
27270
|
-
aggregatedSchemaGetPost: (data: AggregatedSchemaGetRequest, params?: RequestParams) => Promise<AxiosResponse<AggregatedSchemaGetResponse, any>>;
|
|
28015
|
+
aggregatedSchemaGetPost: (data: AggregatedSchemaGetRequest, params?: RequestParams) => Promise<AxiosResponse<AggregatedSchemaGetResponse, any, {}>>;
|
|
27271
28016
|
/**
|
|
27272
28017
|
* @description Gets a custom schema fragment.
|
|
27273
28018
|
*
|
|
@@ -27283,7 +28028,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27283
28028
|
* @format id
|
|
27284
28029
|
*/
|
|
27285
28030
|
id: string;
|
|
27286
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsGetResponse, any>>;
|
|
28031
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsGetResponse, any, {}>>;
|
|
27287
28032
|
/**
|
|
27288
28033
|
* @description Gets a custom schema fragment.
|
|
27289
28034
|
*
|
|
@@ -27293,7 +28038,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27293
28038
|
* @request POST:/schemas.custom.get
|
|
27294
28039
|
* @secure
|
|
27295
28040
|
*/
|
|
27296
|
-
customSchemaFragmentsGetPost: (data: CustomSchemaFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsGetResponse, any>>;
|
|
28041
|
+
customSchemaFragmentsGetPost: (data: CustomSchemaFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsGetResponse, any, {}>>;
|
|
27297
28042
|
/**
|
|
27298
28043
|
* @description Lists custom schema fragments.
|
|
27299
28044
|
*
|
|
@@ -27344,7 +28089,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27344
28089
|
subtype?: string[];
|
|
27345
28090
|
/** Filters for custom schema fragment of the provided types. */
|
|
27346
28091
|
types?: CustomSchemaFragmentType[];
|
|
27347
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsListResponse, any>>;
|
|
28092
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsListResponse, any, {}>>;
|
|
27348
28093
|
/**
|
|
27349
28094
|
* @description Lists custom schema fragments.
|
|
27350
28095
|
*
|
|
@@ -27354,7 +28099,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27354
28099
|
* @request POST:/schemas.custom.list
|
|
27355
28100
|
* @secure
|
|
27356
28101
|
*/
|
|
27357
|
-
customSchemaFragmentsListPost: (data: CustomSchemaFragmentsListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsListResponse, any>>;
|
|
28102
|
+
customSchemaFragmentsListPost: (data: CustomSchemaFragmentsListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsListResponse, any, {}>>;
|
|
27358
28103
|
/**
|
|
27359
28104
|
* @description Creates or updates a custom schema fragment.
|
|
27360
28105
|
*
|
|
@@ -27364,7 +28109,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27364
28109
|
* @request POST:/schemas.custom.set
|
|
27365
28110
|
* @secure
|
|
27366
28111
|
*/
|
|
27367
|
-
customSchemaFragmentsSet: (data: CustomSchemaFragmentsSetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsSetResponse, any>>;
|
|
28112
|
+
customSchemaFragmentsSet: (data: CustomSchemaFragmentsSetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomSchemaFragmentsSetResponse, any, {}>>;
|
|
27368
28113
|
/**
|
|
27369
28114
|
* @description Gets a stock schema fragment.
|
|
27370
28115
|
*
|
|
@@ -27385,7 +28130,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27385
28130
|
* @format text
|
|
27386
28131
|
*/
|
|
27387
28132
|
leaf_type?: string;
|
|
27388
|
-
}, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsGetResponse, any>>;
|
|
28133
|
+
}, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsGetResponse, any, {}>>;
|
|
27389
28134
|
/**
|
|
27390
28135
|
* @description Gets a stock schema fragment.
|
|
27391
28136
|
*
|
|
@@ -27395,7 +28140,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27395
28140
|
* @request POST:/schemas.stock.get
|
|
27396
28141
|
* @secure
|
|
27397
28142
|
*/
|
|
27398
|
-
stockSchemaFragmentsGetPost: (data: StockSchemaFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsGetResponse, any>>;
|
|
28143
|
+
stockSchemaFragmentsGetPost: (data: StockSchemaFragmentsGetRequest, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsGetResponse, any, {}>>;
|
|
27399
28144
|
/**
|
|
27400
28145
|
* @description Lists stock schema fragments.
|
|
27401
28146
|
*
|
|
@@ -27436,7 +28181,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27436
28181
|
prune?: StockSchemaFragmentsListRequestPrune[];
|
|
27437
28182
|
/** The list of fields to sort the items by and how to sort them. */
|
|
27438
28183
|
sort_by?: string[];
|
|
27439
|
-
}, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsListResponse, any>>;
|
|
28184
|
+
}, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsListResponse, any, {}>>;
|
|
27440
28185
|
/**
|
|
27441
28186
|
* @description Lists stock schema fragments.
|
|
27442
28187
|
*
|
|
@@ -27446,7 +28191,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27446
28191
|
* @request POST:/schemas.stock.list
|
|
27447
28192
|
* @secure
|
|
27448
28193
|
*/
|
|
27449
|
-
stockSchemaFragmentsListPost: (data: StockSchemaFragmentsListRequest, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsListResponse, any>>;
|
|
28194
|
+
stockSchemaFragmentsListPost: (data: StockSchemaFragmentsListRequest, params?: RequestParams) => Promise<AxiosResponse<StockSchemaFragmentsListResponse, any, {}>>;
|
|
27450
28195
|
/**
|
|
27451
28196
|
* @description Lists subtypes.
|
|
27452
28197
|
*
|
|
@@ -27465,7 +28210,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27465
28210
|
leaf_type?: string;
|
|
27466
28211
|
/** List of leaf types for which subtypes are required. */
|
|
27467
28212
|
leaf_types?: string[];
|
|
27468
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SubtypesListResponse, any>>;
|
|
28213
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SubtypesListResponse, any, {}>>;
|
|
27469
28214
|
/**
|
|
27470
28215
|
* @description Lists subtypes.
|
|
27471
28216
|
*
|
|
@@ -27475,7 +28220,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27475
28220
|
* @request POST:/schemas.subtypes.list
|
|
27476
28221
|
* @secure
|
|
27477
28222
|
*/
|
|
27478
|
-
subtypesListPost: (data: SubtypesListRequest, params?: RequestParams) => Promise<AxiosResponse<SubtypesListResponse, any>>;
|
|
28223
|
+
subtypesListPost: (data: SubtypesListRequest, params?: RequestParams) => Promise<AxiosResponse<SubtypesListResponse, any, {}>>;
|
|
27479
28224
|
/**
|
|
27480
28225
|
* @description Gets the new fragment IDs and fields resulting from changing a subtype.
|
|
27481
28226
|
*
|
|
@@ -27485,7 +28230,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27485
28230
|
* @request POST:/schemas.subtypes.prepare-update
|
|
27486
28231
|
* @secure
|
|
27487
28232
|
*/
|
|
27488
|
-
schemasSubtypePrepareUpdateGet: (data: SchemasSubtypePrepareUpdateGetRequest, params?: RequestParams) => Promise<AxiosResponse<SchemasSubtypePrepareUpdateGetResponse, any>>;
|
|
28233
|
+
schemasSubtypePrepareUpdateGet: (data: SchemasSubtypePrepareUpdateGetRequest, params?: RequestParams) => Promise<AxiosResponse<SchemasSubtypePrepareUpdateGetResponse, any, {}>>;
|
|
27489
28234
|
/**
|
|
27490
28235
|
* @description Searches for records based on a given query.
|
|
27491
28236
|
*
|
|
@@ -27527,7 +28272,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27527
28272
|
sort_by?: SearchSortByParam | undefined;
|
|
27528
28273
|
/** Sorting order. The default is DESCENDING. */
|
|
27529
28274
|
sort_order?: SearchSortOrderParam | undefined;
|
|
27530
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SearchCoreResponse, any>>;
|
|
28275
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SearchCoreResponse, any, {}>>;
|
|
27531
28276
|
/**
|
|
27532
28277
|
* @description Searches for records based on a given query.
|
|
27533
28278
|
*
|
|
@@ -27537,7 +28282,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27537
28282
|
* @request POST:/search.core
|
|
27538
28283
|
* @secure
|
|
27539
28284
|
*/
|
|
27540
|
-
searchCorePost: (data: SearchCoreRequest, params?: RequestParams) => Promise<AxiosResponse<SearchCoreResponse, any>>;
|
|
28285
|
+
searchCorePost: (data: SearchCoreRequest, params?: RequestParams) => Promise<AxiosResponse<SearchCoreResponse, any, {}>>;
|
|
27541
28286
|
/**
|
|
27542
28287
|
* @description Performs search, using a combination of syntactic and semantic search.
|
|
27543
28288
|
*
|
|
@@ -27572,7 +28317,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27572
28317
|
* @max 1
|
|
27573
28318
|
*/
|
|
27574
28319
|
semantic_weight?: number | undefined;
|
|
27575
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SearchHybridResponse, any>>;
|
|
28320
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SearchHybridResponse, any, {}>>;
|
|
27576
28321
|
/**
|
|
27577
28322
|
* @description Performs search, using a combination of syntactic and semantic search.
|
|
27578
28323
|
*
|
|
@@ -27582,7 +28327,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27582
28327
|
* @request POST:/search.hybrid
|
|
27583
28328
|
* @secure
|
|
27584
28329
|
*/
|
|
27585
|
-
searchHybridPost: (data: SearchHybridRequest, params?: RequestParams) => Promise<AxiosResponse<SearchHybridResponse, any>>;
|
|
28330
|
+
searchHybridPost: (data: SearchHybridRequest, params?: RequestParams) => Promise<AxiosResponse<SearchHybridResponse, any, {}>>;
|
|
27586
28331
|
/**
|
|
27587
28332
|
* @description Creates a service account.
|
|
27588
28333
|
*
|
|
@@ -27592,7 +28337,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27592
28337
|
* @request POST:/service-accounts.create
|
|
27593
28338
|
* @secure
|
|
27594
28339
|
*/
|
|
27595
|
-
serviceAccountsCreate: (data: ServiceAccountsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsCreateResponse, any>>;
|
|
28340
|
+
serviceAccountsCreate: (data: ServiceAccountsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsCreateResponse, any, {}>>;
|
|
27596
28341
|
/**
|
|
27597
28342
|
* @description Gets a service account.
|
|
27598
28343
|
*
|
|
@@ -27608,7 +28353,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27608
28353
|
* @format id
|
|
27609
28354
|
*/
|
|
27610
28355
|
id: string;
|
|
27611
|
-
}, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsGetResponse, any>>;
|
|
28356
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsGetResponse, any, {}>>;
|
|
27612
28357
|
/**
|
|
27613
28358
|
* @description Gets a service account.
|
|
27614
28359
|
*
|
|
@@ -27618,7 +28363,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27618
28363
|
* @request POST:/service-accounts.get
|
|
27619
28364
|
* @secure
|
|
27620
28365
|
*/
|
|
27621
|
-
serviceAccountsGetPost: (data: ServiceAccountsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsGetResponse, any>>;
|
|
28366
|
+
serviceAccountsGetPost: (data: ServiceAccountsGetRequest, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsGetResponse, any, {}>>;
|
|
27622
28367
|
/**
|
|
27623
28368
|
* @description Updates a service account.
|
|
27624
28369
|
*
|
|
@@ -27628,7 +28373,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27628
28373
|
* @request POST:/service-accounts.update
|
|
27629
28374
|
* @secure
|
|
27630
28375
|
*/
|
|
27631
|
-
serviceAccountsUpdate: (data: ServiceAccountsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsUpdateResponse, any>>;
|
|
28376
|
+
serviceAccountsUpdate: (data: ServiceAccountsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<ServiceAccountsUpdateResponse, any, {}>>;
|
|
27632
28377
|
/**
|
|
27633
28378
|
* @description Gets an SLA tracker.
|
|
27634
28379
|
*
|
|
@@ -27644,7 +28389,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27644
28389
|
* @format id
|
|
27645
28390
|
*/
|
|
27646
28391
|
id: string;
|
|
27647
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersGetResponse, any>>;
|
|
28392
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersGetResponse, any, {}>>;
|
|
27648
28393
|
/**
|
|
27649
28394
|
* @description Gets an SLA tracker.
|
|
27650
28395
|
*
|
|
@@ -27654,7 +28399,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27654
28399
|
* @request POST:/sla-trackers.get
|
|
27655
28400
|
* @secure
|
|
27656
28401
|
*/
|
|
27657
|
-
slaTrackersGetPost: (data: SlaTrackersGetRequest, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersGetResponse, any>>;
|
|
28402
|
+
slaTrackersGetPost: (data: SlaTrackersGetRequest, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersGetResponse, any, {}>>;
|
|
27658
28403
|
/**
|
|
27659
28404
|
* @description Lists SLA trackers matching a filter.
|
|
27660
28405
|
*
|
|
@@ -27713,7 +28458,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27713
28458
|
stage?: string[];
|
|
27714
28459
|
/** The SLA tracker statuses the filter matches. */
|
|
27715
28460
|
status?: string[];
|
|
27716
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersListResponse, any>>;
|
|
28461
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersListResponse, any, {}>>;
|
|
27717
28462
|
/**
|
|
27718
28463
|
* @description Lists SLA trackers matching a filter.
|
|
27719
28464
|
*
|
|
@@ -27723,7 +28468,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27723
28468
|
* @request POST:/sla-trackers.list
|
|
27724
28469
|
* @secure
|
|
27725
28470
|
*/
|
|
27726
|
-
slaTrackersListPost: (data: SlaTrackersListRequest, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersListResponse, any>>;
|
|
28471
|
+
slaTrackersListPost: (data: SlaTrackersListRequest, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersListResponse, any, {}>>;
|
|
27727
28472
|
/**
|
|
27728
28473
|
* @description Removes a metric from the given object's SLA.
|
|
27729
28474
|
*
|
|
@@ -27733,7 +28478,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27733
28478
|
* @request POST:/sla-trackers.remove-metric
|
|
27734
28479
|
* @secure
|
|
27735
28480
|
*/
|
|
27736
|
-
slaTrackersRemoveMetric: (data: SlaTrackersRemoveMetricRequest, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersRemoveMetricResponse, any>>;
|
|
28481
|
+
slaTrackersRemoveMetric: (data: SlaTrackersRemoveMetricRequest, params?: RequestParams) => Promise<AxiosResponse<SlaTrackersRemoveMetricResponse, any, {}>>;
|
|
27737
28482
|
/**
|
|
27738
28483
|
* @description Assigns the SLA to a set of Rev organizations.
|
|
27739
28484
|
*
|
|
@@ -27743,7 +28488,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27743
28488
|
* @request POST:/slas.assign
|
|
27744
28489
|
* @secure
|
|
27745
28490
|
*/
|
|
27746
|
-
slasAssign: (data: SlasAssignRequest, params?: RequestParams) => Promise<AxiosResponse<SlasAssignResponse, any>>;
|
|
28491
|
+
slasAssign: (data: SlasAssignRequest, params?: RequestParams) => Promise<AxiosResponse<SlasAssignResponse, any, {}>>;
|
|
27747
28492
|
/**
|
|
27748
28493
|
* @description Creates an SLA in draft status.
|
|
27749
28494
|
*
|
|
@@ -27753,7 +28498,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27753
28498
|
* @request POST:/slas.create
|
|
27754
28499
|
* @secure
|
|
27755
28500
|
*/
|
|
27756
|
-
slasCreate: (data: SlasCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SlasCreateResponse, any>>;
|
|
28501
|
+
slasCreate: (data: SlasCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SlasCreateResponse, any, {}>>;
|
|
27757
28502
|
/**
|
|
27758
28503
|
* @description Gets an SLA.
|
|
27759
28504
|
*
|
|
@@ -27769,7 +28514,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27769
28514
|
* @format id
|
|
27770
28515
|
*/
|
|
27771
28516
|
id: string;
|
|
27772
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SlasGetResponse, any>>;
|
|
28517
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SlasGetResponse, any, {}>>;
|
|
27773
28518
|
/**
|
|
27774
28519
|
* @description Gets an SLA.
|
|
27775
28520
|
*
|
|
@@ -27779,7 +28524,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27779
28524
|
* @request POST:/slas.get
|
|
27780
28525
|
* @secure
|
|
27781
28526
|
*/
|
|
27782
|
-
slasGetPost: (data: SlasGetRequest, params?: RequestParams) => Promise<AxiosResponse<SlasGetResponse, any>>;
|
|
28527
|
+
slasGetPost: (data: SlasGetRequest, params?: RequestParams) => Promise<AxiosResponse<SlasGetResponse, any, {}>>;
|
|
27783
28528
|
/**
|
|
27784
28529
|
* @description Lists SLAs matching a filter.
|
|
27785
28530
|
*
|
|
@@ -27819,7 +28564,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27819
28564
|
sort_by?: string[];
|
|
27820
28565
|
/** The SLA statuses the filter matches. */
|
|
27821
28566
|
status?: SlaStatus[];
|
|
27822
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SlasListResponse, any>>;
|
|
28567
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SlasListResponse, any, {}>>;
|
|
27823
28568
|
/**
|
|
27824
28569
|
* @description Lists SLAs matching a filter.
|
|
27825
28570
|
*
|
|
@@ -27829,7 +28574,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27829
28574
|
* @request POST:/slas.list
|
|
27830
28575
|
* @secure
|
|
27831
28576
|
*/
|
|
27832
|
-
slasListPost: (data: SlasListRequest, params?: RequestParams) => Promise<AxiosResponse<SlasListResponse, any>>;
|
|
28577
|
+
slasListPost: (data: SlasListRequest, params?: RequestParams) => Promise<AxiosResponse<SlasListResponse, any, {}>>;
|
|
27833
28578
|
/**
|
|
27834
28579
|
* @description Changes the status of an SLA.
|
|
27835
28580
|
*
|
|
@@ -27839,7 +28584,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27839
28584
|
* @request POST:/slas.transition
|
|
27840
28585
|
* @secure
|
|
27841
28586
|
*/
|
|
27842
|
-
slasTransition: (data: SlasTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<SlasTransitionResponse, any>>;
|
|
28587
|
+
slasTransition: (data: SlasTransitionRequest, params?: RequestParams) => Promise<AxiosResponse<SlasTransitionResponse, any, {}>>;
|
|
27843
28588
|
/**
|
|
27844
28589
|
* @description Updates a draft SLA.
|
|
27845
28590
|
*
|
|
@@ -27849,7 +28594,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27849
28594
|
* @request POST:/slas.update
|
|
27850
28595
|
* @secure
|
|
27851
28596
|
*/
|
|
27852
|
-
slasUpdate: (data: SlasUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SlasUpdateResponse, any>>;
|
|
28597
|
+
slasUpdate: (data: SlasUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SlasUpdateResponse, any, {}>>;
|
|
27853
28598
|
/**
|
|
27854
28599
|
* @description Gets snap-in resources for a user in a snap-in.
|
|
27855
28600
|
*
|
|
@@ -27870,7 +28615,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27870
28615
|
* @format id
|
|
27871
28616
|
*/
|
|
27872
28617
|
user: string;
|
|
27873
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SnapInsResourcesResponse, any>>;
|
|
28618
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SnapInsResourcesResponse, any, {}>>;
|
|
27874
28619
|
/**
|
|
27875
28620
|
* @description Gets snap-in resources for a user in a snap-in.
|
|
27876
28621
|
*
|
|
@@ -27880,7 +28625,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27880
28625
|
* @request POST:/snap-ins.resources
|
|
27881
28626
|
* @secure
|
|
27882
28627
|
*/
|
|
27883
|
-
snapInsResourcesPost: (data: SnapInsResourcesRequest, params?: RequestParams) => Promise<AxiosResponse<SnapInsResourcesResponse, any>>;
|
|
28628
|
+
snapInsResourcesPost: (data: SnapInsResourcesRequest, params?: RequestParams) => Promise<AxiosResponse<SnapInsResourcesResponse, any, {}>>;
|
|
27884
28629
|
/**
|
|
27885
28630
|
* @description Updates a snap-in.
|
|
27886
28631
|
*
|
|
@@ -27890,7 +28635,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27890
28635
|
* @request POST:/snap-ins.update
|
|
27891
28636
|
* @secure
|
|
27892
28637
|
*/
|
|
27893
|
-
snapInsUpdate: (data: SnapInsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SnapInsUpdateResponse, any>>;
|
|
28638
|
+
snapInsUpdate: (data: SnapInsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SnapInsUpdateResponse, any, {}>>;
|
|
27894
28639
|
/**
|
|
27895
28640
|
* @description Executes deferred snap-kit actions.
|
|
27896
28641
|
*
|
|
@@ -27900,7 +28645,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27900
28645
|
* @request POST:/snap-kit-action.execute.deferred
|
|
27901
28646
|
* @secure
|
|
27902
28647
|
*/
|
|
27903
|
-
snapKitActionExecuteDeferred: (data: SnapKitActionExecuteDeferredRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
28648
|
+
snapKitActionExecuteDeferred: (data: SnapKitActionExecuteDeferredRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
27904
28649
|
/**
|
|
27905
28650
|
* @description Create a snap widget object.
|
|
27906
28651
|
*
|
|
@@ -27910,7 +28655,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27910
28655
|
* @request POST:/snap-widgets.create
|
|
27911
28656
|
* @secure
|
|
27912
28657
|
*/
|
|
27913
|
-
snapWidgetsCreate: (data: SnapWidgetsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SnapWidgetsCreateResponse, any>>;
|
|
28658
|
+
snapWidgetsCreate: (data: SnapWidgetsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SnapWidgetsCreateResponse, any, {}>>;
|
|
27914
28659
|
/**
|
|
27915
28660
|
* @description Creates a stage diagram.
|
|
27916
28661
|
*
|
|
@@ -27920,7 +28665,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27920
28665
|
* @request POST:/stage-diagrams.create
|
|
27921
28666
|
* @secure
|
|
27922
28667
|
*/
|
|
27923
|
-
stageDiagramsCreate: (data: StageDiagramsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsCreateResponse, any>>;
|
|
28668
|
+
stageDiagramsCreate: (data: StageDiagramsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsCreateResponse, any, {}>>;
|
|
27924
28669
|
/**
|
|
27925
28670
|
* @description Gets a stage diagram.
|
|
27926
28671
|
*
|
|
@@ -27947,7 +28692,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27947
28692
|
* @format text
|
|
27948
28693
|
*/
|
|
27949
28694
|
leaf_type?: string;
|
|
27950
|
-
}, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsGetResponse, any>>;
|
|
28695
|
+
}, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsGetResponse, any, {}>>;
|
|
27951
28696
|
/**
|
|
27952
28697
|
* @description Gets a stage diagram.
|
|
27953
28698
|
*
|
|
@@ -27957,7 +28702,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27957
28702
|
* @request POST:/stage-diagrams.get
|
|
27958
28703
|
* @secure
|
|
27959
28704
|
*/
|
|
27960
|
-
stageDiagramsGetPost: (data: StageDiagramsGetRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsGetResponse, any>>;
|
|
28705
|
+
stageDiagramsGetPost: (data: StageDiagramsGetRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsGetResponse, any, {}>>;
|
|
27961
28706
|
/**
|
|
27962
28707
|
* @description Lists stage diagrams.
|
|
27963
28708
|
*
|
|
@@ -27987,7 +28732,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27987
28732
|
name?: string[];
|
|
27988
28733
|
/** The list of fields to sort the items by and how to sort them. */
|
|
27989
28734
|
sort_by?: string[];
|
|
27990
|
-
}, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsListResponse, any>>;
|
|
28735
|
+
}, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsListResponse, any, {}>>;
|
|
27991
28736
|
/**
|
|
27992
28737
|
* @description Lists stage diagrams.
|
|
27993
28738
|
*
|
|
@@ -27997,7 +28742,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
27997
28742
|
* @request POST:/stage-diagrams.list
|
|
27998
28743
|
* @secure
|
|
27999
28744
|
*/
|
|
28000
|
-
stageDiagramsListPost: (data: StageDiagramsListRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsListResponse, any>>;
|
|
28745
|
+
stageDiagramsListPost: (data: StageDiagramsListRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsListResponse, any, {}>>;
|
|
28001
28746
|
/**
|
|
28002
28747
|
* @description Updates a stage diagram.
|
|
28003
28748
|
*
|
|
@@ -28007,7 +28752,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28007
28752
|
* @request POST:/stage-diagrams.update
|
|
28008
28753
|
* @secure
|
|
28009
28754
|
*/
|
|
28010
|
-
stageDiagramsUpdate: (data: StageDiagramsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsUpdateResponse, any>>;
|
|
28755
|
+
stageDiagramsUpdate: (data: StageDiagramsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<StageDiagramsUpdateResponse, any, {}>>;
|
|
28011
28756
|
/**
|
|
28012
28757
|
* @description Creates a custom stage.
|
|
28013
28758
|
*
|
|
@@ -28017,7 +28762,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28017
28762
|
* @request POST:/stages.custom.create
|
|
28018
28763
|
* @secure
|
|
28019
28764
|
*/
|
|
28020
|
-
customStagesCreate: (data: CustomStagesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesCreateResponse, any>>;
|
|
28765
|
+
customStagesCreate: (data: CustomStagesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesCreateResponse, any, {}>>;
|
|
28021
28766
|
/**
|
|
28022
28767
|
* @description Gets a custom stage.
|
|
28023
28768
|
*
|
|
@@ -28033,7 +28778,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28033
28778
|
* @format id
|
|
28034
28779
|
*/
|
|
28035
28780
|
id: string;
|
|
28036
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CustomStagesGetResponse, any>>;
|
|
28781
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CustomStagesGetResponse, any, {}>>;
|
|
28037
28782
|
/**
|
|
28038
28783
|
* @description Gets a custom stage.
|
|
28039
28784
|
*
|
|
@@ -28043,7 +28788,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28043
28788
|
* @request POST:/stages.custom.get
|
|
28044
28789
|
* @secure
|
|
28045
28790
|
*/
|
|
28046
|
-
customStagesGetPost: (data: CustomStagesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesGetResponse, any>>;
|
|
28791
|
+
customStagesGetPost: (data: CustomStagesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesGetResponse, any, {}>>;
|
|
28047
28792
|
/**
|
|
28048
28793
|
* @description Lists custom stages.
|
|
28049
28794
|
*
|
|
@@ -28071,7 +28816,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28071
28816
|
ordinal?: number[];
|
|
28072
28817
|
/** The list of fields to sort the items by and how to sort them. */
|
|
28073
28818
|
sort_by?: string[];
|
|
28074
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CustomStagesListResponse, any>>;
|
|
28819
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CustomStagesListResponse, any, {}>>;
|
|
28075
28820
|
/**
|
|
28076
28821
|
* @description Lists custom stages.
|
|
28077
28822
|
*
|
|
@@ -28081,7 +28826,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28081
28826
|
* @request POST:/stages.custom.list
|
|
28082
28827
|
* @secure
|
|
28083
28828
|
*/
|
|
28084
|
-
customStagesListPost: (data: CustomStagesListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesListResponse, any>>;
|
|
28829
|
+
customStagesListPost: (data: CustomStagesListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesListResponse, any, {}>>;
|
|
28085
28830
|
/**
|
|
28086
28831
|
* @description Updates a custom stage.
|
|
28087
28832
|
*
|
|
@@ -28091,7 +28836,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28091
28836
|
* @request POST:/stages.custom.update
|
|
28092
28837
|
* @secure
|
|
28093
28838
|
*/
|
|
28094
|
-
customStagesUpdate: (data: CustomStagesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesUpdateResponse, any>>;
|
|
28839
|
+
customStagesUpdate: (data: CustomStagesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStagesUpdateResponse, any, {}>>;
|
|
28095
28840
|
/**
|
|
28096
28841
|
* @description Creates a custom state.
|
|
28097
28842
|
*
|
|
@@ -28101,7 +28846,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28101
28846
|
* @request POST:/states.custom.create
|
|
28102
28847
|
* @secure
|
|
28103
28848
|
*/
|
|
28104
|
-
customStatesCreate: (data: CustomStatesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesCreateResponse, any>>;
|
|
28849
|
+
customStatesCreate: (data: CustomStatesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesCreateResponse, any, {}>>;
|
|
28105
28850
|
/**
|
|
28106
28851
|
* @description Gets a custom state.
|
|
28107
28852
|
*
|
|
@@ -28117,7 +28862,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28117
28862
|
* @format id
|
|
28118
28863
|
*/
|
|
28119
28864
|
id: string;
|
|
28120
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CustomStatesGetResponse, any>>;
|
|
28865
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CustomStatesGetResponse, any, {}>>;
|
|
28121
28866
|
/**
|
|
28122
28867
|
* @description Gets a custom state.
|
|
28123
28868
|
*
|
|
@@ -28127,7 +28872,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28127
28872
|
* @request POST:/states.custom.get
|
|
28128
28873
|
* @secure
|
|
28129
28874
|
*/
|
|
28130
|
-
customStatesGetPost: (data: CustomStatesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesGetResponse, any>>;
|
|
28875
|
+
customStatesGetPost: (data: CustomStatesGetRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesGetResponse, any, {}>>;
|
|
28131
28876
|
/**
|
|
28132
28877
|
* @description Lists custom states.
|
|
28133
28878
|
*
|
|
@@ -28157,7 +28902,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28157
28902
|
ordinal?: number[];
|
|
28158
28903
|
/** The list of fields to sort the items by and how to sort them. */
|
|
28159
28904
|
sort_by?: string[];
|
|
28160
|
-
}, params?: RequestParams) => Promise<AxiosResponse<CustomStatesListResponse, any>>;
|
|
28905
|
+
}, params?: RequestParams) => Promise<AxiosResponse<CustomStatesListResponse, any, {}>>;
|
|
28161
28906
|
/**
|
|
28162
28907
|
* @description Lists custom states.
|
|
28163
28908
|
*
|
|
@@ -28167,7 +28912,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28167
28912
|
* @request POST:/states.custom.list
|
|
28168
28913
|
* @secure
|
|
28169
28914
|
*/
|
|
28170
|
-
customStatesListPost: (data: CustomStatesListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesListResponse, any>>;
|
|
28915
|
+
customStatesListPost: (data: CustomStatesListRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesListResponse, any, {}>>;
|
|
28171
28916
|
/**
|
|
28172
28917
|
* @description Updates a custom state.
|
|
28173
28918
|
*
|
|
@@ -28177,7 +28922,34 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28177
28922
|
* @request POST:/states.custom.update
|
|
28178
28923
|
* @secure
|
|
28179
28924
|
*/
|
|
28180
|
-
customStatesUpdate: (data: CustomStatesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesUpdateResponse, any>>;
|
|
28925
|
+
customStatesUpdate: (data: CustomStatesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<CustomStatesUpdateResponse, any, {}>>;
|
|
28926
|
+
/**
|
|
28927
|
+
* @description Gets the requesting user's subscriber status for an object.
|
|
28928
|
+
*
|
|
28929
|
+
* @tags subscribers
|
|
28930
|
+
* @name SubscribersGet
|
|
28931
|
+
* @summary Get Subscriber
|
|
28932
|
+
* @request GET:/subscribers.get
|
|
28933
|
+
* @secure
|
|
28934
|
+
*/
|
|
28935
|
+
subscribersGet: (query: {
|
|
28936
|
+
/**
|
|
28937
|
+
* The object's ID.
|
|
28938
|
+
* @format id
|
|
28939
|
+
* @example "ISS-12345"
|
|
28940
|
+
*/
|
|
28941
|
+
id: string;
|
|
28942
|
+
}, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
28943
|
+
/**
|
|
28944
|
+
* @description Gets the requesting user's subscriber status for an object.
|
|
28945
|
+
*
|
|
28946
|
+
* @tags subscribers
|
|
28947
|
+
* @name SubscribersGetPost
|
|
28948
|
+
* @summary Get Subscriber (POST)
|
|
28949
|
+
* @request POST:/subscribers.get
|
|
28950
|
+
* @secure
|
|
28951
|
+
*/
|
|
28952
|
+
subscribersGetPost: (data: SubscribersGetRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
28181
28953
|
/**
|
|
28182
28954
|
* @description Lists subscribers of an object.
|
|
28183
28955
|
*
|
|
@@ -28206,7 +28978,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28206
28978
|
* @format int32
|
|
28207
28979
|
*/
|
|
28208
28980
|
limit?: number;
|
|
28209
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SubscribersListResponse, any>>;
|
|
28981
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SubscribersListResponse, any, {}>>;
|
|
28210
28982
|
/**
|
|
28211
28983
|
* @description Lists subscribers of an object.
|
|
28212
28984
|
*
|
|
@@ -28216,7 +28988,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28216
28988
|
* @request POST:/subscribers.list
|
|
28217
28989
|
* @secure
|
|
28218
28990
|
*/
|
|
28219
|
-
subscribersListPost: (data: SubscribersListRequest, params?: RequestParams) => Promise<AxiosResponse<SubscribersListResponse, any>>;
|
|
28991
|
+
subscribersListPost: (data: SubscribersListRequest, params?: RequestParams) => Promise<AxiosResponse<SubscribersListResponse, any, {}>>;
|
|
28220
28992
|
/**
|
|
28221
28993
|
* @description Updates subscribers on the object.
|
|
28222
28994
|
*
|
|
@@ -28226,7 +28998,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28226
28998
|
* @request POST:/subscribers.update
|
|
28227
28999
|
* @secure
|
|
28228
29000
|
*/
|
|
28229
|
-
subscribersUpdate: (data: SubscribersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
29001
|
+
subscribersUpdate: (data: SubscribersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
28230
29002
|
/**
|
|
28231
29003
|
* @description Creates a schema for survey, which includes name and description of schema.
|
|
28232
29004
|
*
|
|
@@ -28236,7 +29008,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28236
29008
|
* @request POST:/surveys.create
|
|
28237
29009
|
* @secure
|
|
28238
29010
|
*/
|
|
28239
|
-
surveysCreate: (data: SurveysCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysCreateResponse, any>>;
|
|
29011
|
+
surveysCreate: (data: SurveysCreateRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysCreateResponse, any, {}>>;
|
|
28240
29012
|
/**
|
|
28241
29013
|
* @description Deletes the specified survey.
|
|
28242
29014
|
*
|
|
@@ -28246,7 +29018,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28246
29018
|
* @request POST:/surveys.delete
|
|
28247
29019
|
* @secure
|
|
28248
29020
|
*/
|
|
28249
|
-
surveysDelete: (data: SurveysDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
29021
|
+
surveysDelete: (data: SurveysDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
28250
29022
|
/**
|
|
28251
29023
|
* @description Gets a survey given the ID.
|
|
28252
29024
|
*
|
|
@@ -28262,7 +29034,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28262
29034
|
* @format id
|
|
28263
29035
|
*/
|
|
28264
29036
|
id: string;
|
|
28265
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SurveysGetResponse, any>>;
|
|
29037
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SurveysGetResponse, any, {}>>;
|
|
28266
29038
|
/**
|
|
28267
29039
|
* @description Gets a survey given the ID.
|
|
28268
29040
|
*
|
|
@@ -28272,7 +29044,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28272
29044
|
* @request POST:/surveys.get
|
|
28273
29045
|
* @secure
|
|
28274
29046
|
*/
|
|
28275
|
-
surveysGetPost: (data: SurveysGetRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysGetResponse, any>>;
|
|
29047
|
+
surveysGetPost: (data: SurveysGetRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysGetResponse, any, {}>>;
|
|
28276
29048
|
/**
|
|
28277
29049
|
* @description List surveys requested by the user.
|
|
28278
29050
|
*
|
|
@@ -28309,7 +29081,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28309
29081
|
name?: string[];
|
|
28310
29082
|
/** Fields to sort the surveys by and the direction to sort them. */
|
|
28311
29083
|
sort_by?: string[];
|
|
28312
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SurveysListResponse, any>>;
|
|
29084
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SurveysListResponse, any, {}>>;
|
|
28313
29085
|
/**
|
|
28314
29086
|
* @description List surveys requested by the user.
|
|
28315
29087
|
*
|
|
@@ -28319,7 +29091,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28319
29091
|
* @request POST:/surveys.list
|
|
28320
29092
|
* @secure
|
|
28321
29093
|
*/
|
|
28322
|
-
surveysListPost: (data: SurveysListRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysListResponse, any>>;
|
|
29094
|
+
surveysListPost: (data: SurveysListRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysListResponse, any, {}>>;
|
|
28323
29095
|
/**
|
|
28324
29096
|
* @description List survey responses requested by the user.
|
|
28325
29097
|
*
|
|
@@ -28373,7 +29145,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28373
29145
|
stages?: number[];
|
|
28374
29146
|
/** Filters for survey responses for the provided survey IDs. */
|
|
28375
29147
|
surveys?: string[];
|
|
28376
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SurveysResponsesListResponse, any>>;
|
|
29148
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SurveysResponsesListResponse, any, {}>>;
|
|
28377
29149
|
/**
|
|
28378
29150
|
* @description List survey responses requested by the user.
|
|
28379
29151
|
*
|
|
@@ -28383,7 +29155,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28383
29155
|
* @request POST:/surveys.responses.list
|
|
28384
29156
|
* @secure
|
|
28385
29157
|
*/
|
|
28386
|
-
surveysResponsesListPost: (data: SurveysResponsesListRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysResponsesListResponse, any>>;
|
|
29158
|
+
surveysResponsesListPost: (data: SurveysResponsesListRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysResponsesListResponse, any, {}>>;
|
|
28387
29159
|
/**
|
|
28388
29160
|
* @description Updates a user's survey response for the provided dispatch ID.
|
|
28389
29161
|
*
|
|
@@ -28393,7 +29165,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28393
29165
|
* @request POST:/surveys.responses.update
|
|
28394
29166
|
* @secure
|
|
28395
29167
|
*/
|
|
28396
|
-
surveysResponsesUpdate: (data: SurveysResponsesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
29168
|
+
surveysResponsesUpdate: (data: SurveysResponsesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
28397
29169
|
/**
|
|
28398
29170
|
* @description Sends a survey on the specified channels.
|
|
28399
29171
|
*
|
|
@@ -28403,7 +29175,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28403
29175
|
* @request POST:/surveys.send
|
|
28404
29176
|
* @secure
|
|
28405
29177
|
*/
|
|
28406
|
-
surveysSend: (data: SurveysSendRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
29178
|
+
surveysSend: (data: SurveysSendRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
28407
29179
|
/**
|
|
28408
29180
|
* @description Submits a user response to a survey, which is defined by the survey ID.
|
|
28409
29181
|
*
|
|
@@ -28413,7 +29185,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28413
29185
|
* @request POST:/surveys.submit
|
|
28414
29186
|
* @secure
|
|
28415
29187
|
*/
|
|
28416
|
-
surveysSubmit: (data: SurveysSubmitRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
29188
|
+
surveysSubmit: (data: SurveysSubmitRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
28417
29189
|
/**
|
|
28418
29190
|
* @description Updates a survey's metadata.
|
|
28419
29191
|
*
|
|
@@ -28423,7 +29195,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28423
29195
|
* @request POST:/surveys.update
|
|
28424
29196
|
* @secure
|
|
28425
29197
|
*/
|
|
28426
|
-
surveysUpdate: (data: SurveysUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysUpdateResponse, any>>;
|
|
29198
|
+
surveysUpdate: (data: SurveysUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SurveysUpdateResponse, any, {}>>;
|
|
28427
29199
|
/**
|
|
28428
29200
|
* @description Lists system users within your organization.
|
|
28429
29201
|
*
|
|
@@ -28453,7 +29225,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28453
29225
|
mode?: ListMode;
|
|
28454
29226
|
/** Fields to sort the system users by and the direction to sort them. */
|
|
28455
29227
|
sort_by?: string[];
|
|
28456
|
-
}, params?: RequestParams) => Promise<AxiosResponse<SysUsersListResponse, any>>;
|
|
29228
|
+
}, params?: RequestParams) => Promise<AxiosResponse<SysUsersListResponse, any, {}>>;
|
|
28457
29229
|
/**
|
|
28458
29230
|
* @description Lists system users within your organization.
|
|
28459
29231
|
*
|
|
@@ -28463,7 +29235,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28463
29235
|
* @request POST:/sys-users.list
|
|
28464
29236
|
* @secure
|
|
28465
29237
|
*/
|
|
28466
|
-
sysUsersListPost: (data: SysUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<SysUsersListResponse, any>>;
|
|
29238
|
+
sysUsersListPost: (data: SysUsersListRequest, params?: RequestParams) => Promise<AxiosResponse<SysUsersListResponse, any, {}>>;
|
|
28467
29239
|
/**
|
|
28468
29240
|
* @description Updates the system user.
|
|
28469
29241
|
*
|
|
@@ -28473,7 +29245,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28473
29245
|
* @request POST:/sys-users.update
|
|
28474
29246
|
* @secure
|
|
28475
29247
|
*/
|
|
28476
|
-
sysUsersUpdate: (data: SysUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SysUsersUpdateResponse, any>>;
|
|
29248
|
+
sysUsersUpdate: (data: SysUsersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<SysUsersUpdateResponse, any, {}>>;
|
|
28477
29249
|
/**
|
|
28478
29250
|
* @description Creates a new tag, which is used to create associations between objects and a logical concept denoted by the tag's name.
|
|
28479
29251
|
*
|
|
@@ -28483,7 +29255,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28483
29255
|
* @request POST:/tags.create
|
|
28484
29256
|
* @secure
|
|
28485
29257
|
*/
|
|
28486
|
-
tagsCreate: (data: TagsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<TagsCreateResponse, any>>;
|
|
29258
|
+
tagsCreate: (data: TagsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<TagsCreateResponse, any, {}>>;
|
|
28487
29259
|
/**
|
|
28488
29260
|
* @description Deletes a tag.
|
|
28489
29261
|
*
|
|
@@ -28493,7 +29265,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28493
29265
|
* @request POST:/tags.delete
|
|
28494
29266
|
* @secure
|
|
28495
29267
|
*/
|
|
28496
|
-
tagsDelete: (data: TagsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
29268
|
+
tagsDelete: (data: TagsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
28497
29269
|
/**
|
|
28498
29270
|
* @description Gets a tag's information.
|
|
28499
29271
|
*
|
|
@@ -28510,7 +29282,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28510
29282
|
* @example "TAG-12345"
|
|
28511
29283
|
*/
|
|
28512
29284
|
id: string;
|
|
28513
|
-
}, params?: RequestParams) => Promise<AxiosResponse<TagsGetResponse, any>>;
|
|
29285
|
+
}, params?: RequestParams) => Promise<AxiosResponse<TagsGetResponse, any, {}>>;
|
|
28514
29286
|
/**
|
|
28515
29287
|
* @description Gets a tag's information.
|
|
28516
29288
|
*
|
|
@@ -28520,7 +29292,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28520
29292
|
* @request POST:/tags.get
|
|
28521
29293
|
* @secure
|
|
28522
29294
|
*/
|
|
28523
|
-
tagsGetPost: (data: TagsGetRequest, params?: RequestParams) => Promise<AxiosResponse<TagsGetResponse, any>>;
|
|
29295
|
+
tagsGetPost: (data: TagsGetRequest, params?: RequestParams) => Promise<AxiosResponse<TagsGetResponse, any, {}>>;
|
|
28524
29296
|
/**
|
|
28525
29297
|
* @description Lists the available tags.
|
|
28526
29298
|
*
|
|
@@ -28551,7 +29323,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28551
29323
|
name?: string[];
|
|
28552
29324
|
/** Fields to sort tags by and the direction to sort them. */
|
|
28553
29325
|
sort_by?: string[];
|
|
28554
|
-
}, params?: RequestParams) => Promise<AxiosResponse<TagsListResponse, any>>;
|
|
29326
|
+
}, params?: RequestParams) => Promise<AxiosResponse<TagsListResponse, any, {}>>;
|
|
28555
29327
|
/**
|
|
28556
29328
|
* @description Lists the available tags.
|
|
28557
29329
|
*
|
|
@@ -28561,7 +29333,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28561
29333
|
* @request POST:/tags.list
|
|
28562
29334
|
* @secure
|
|
28563
29335
|
*/
|
|
28564
|
-
tagsListPost: (data: TagsListRequest, params?: RequestParams) => Promise<AxiosResponse<TagsListResponse, any>>;
|
|
29336
|
+
tagsListPost: (data: TagsListRequest, params?: RequestParams) => Promise<AxiosResponse<TagsListResponse, any, {}>>;
|
|
28565
29337
|
/**
|
|
28566
29338
|
* @description Updates a tag's information.
|
|
28567
29339
|
*
|
|
@@ -28571,7 +29343,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28571
29343
|
* @request POST:/tags.update
|
|
28572
29344
|
* @secure
|
|
28573
29345
|
*/
|
|
28574
|
-
tagsUpdate: (data: TagsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<TagsUpdateResponse, any>>;
|
|
29346
|
+
tagsUpdate: (data: TagsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<TagsUpdateResponse, any, {}>>;
|
|
28575
29347
|
/**
|
|
28576
29348
|
* @description Creates a new entry on an object's timeline.
|
|
28577
29349
|
*
|
|
@@ -28581,7 +29353,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28581
29353
|
* @request POST:/timeline-entries.create
|
|
28582
29354
|
* @secure
|
|
28583
29355
|
*/
|
|
28584
|
-
timelineEntriesCreate: (data: TimelineEntriesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesCreateResponse, any>>;
|
|
29356
|
+
timelineEntriesCreate: (data: TimelineEntriesCreateRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesCreateResponse, any, {}>>;
|
|
28585
29357
|
/**
|
|
28586
29358
|
* @description Deletes an entry from an object's timeline.
|
|
28587
29359
|
*
|
|
@@ -28591,7 +29363,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28591
29363
|
* @request POST:/timeline-entries.delete
|
|
28592
29364
|
* @secure
|
|
28593
29365
|
*/
|
|
28594
|
-
timelineEntriesDelete: (data: TimelineEntriesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
29366
|
+
timelineEntriesDelete: (data: TimelineEntriesDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
28595
29367
|
/**
|
|
28596
29368
|
* @description Gets an entry on an object's timeline.
|
|
28597
29369
|
*
|
|
@@ -28616,7 +29388,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28616
29388
|
* @maxLength 512
|
|
28617
29389
|
*/
|
|
28618
29390
|
external_ref?: string;
|
|
28619
|
-
}, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesGetResponse, any>>;
|
|
29391
|
+
}, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesGetResponse, any, {}>>;
|
|
28620
29392
|
/**
|
|
28621
29393
|
* @description Gets an entry on an object's timeline.
|
|
28622
29394
|
*
|
|
@@ -28626,7 +29398,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28626
29398
|
* @request POST:/timeline-entries.get
|
|
28627
29399
|
* @secure
|
|
28628
29400
|
*/
|
|
28629
|
-
timelineEntriesGetPost: (data: TimelineEntriesGetRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesGetResponse, any>>;
|
|
29401
|
+
timelineEntriesGetPost: (data: TimelineEntriesGetRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesGetResponse, any, {}>>;
|
|
28630
29402
|
/**
|
|
28631
29403
|
* @description Lists the timeline entries for an object.
|
|
28632
29404
|
*
|
|
@@ -28648,6 +29420,19 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28648
29420
|
* all entries are returned.
|
|
28649
29421
|
*/
|
|
28650
29422
|
collections?: TimelineEntriesCollection[];
|
|
29423
|
+
/**
|
|
29424
|
+
* Filters for objects created after the provided timestamp (inclusive).
|
|
29425
|
+
* @format date-time
|
|
29426
|
+
* @example "2023-01-01T12:00:00.000Z"
|
|
29427
|
+
*/
|
|
29428
|
+
'created_date.after'?: string;
|
|
29429
|
+
/**
|
|
29430
|
+
* Filters for objects created before the provided timestamp
|
|
29431
|
+
* (inclusive).
|
|
29432
|
+
* @format date-time
|
|
29433
|
+
* @example "2023-01-01T12:00:00.000Z"
|
|
29434
|
+
*/
|
|
29435
|
+
'created_date.before'?: string;
|
|
28651
29436
|
/**
|
|
28652
29437
|
* The cursor to resume iteration from. If not provided, then iteration
|
|
28653
29438
|
* starts from the beginning.
|
|
@@ -28662,8 +29447,9 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28662
29447
|
*/
|
|
28663
29448
|
labels?: string[];
|
|
28664
29449
|
/**
|
|
28665
|
-
* The maximum number of entries to return.
|
|
28666
|
-
*
|
|
29450
|
+
* The maximum number of entries to return. Note that fewer (possibly
|
|
29451
|
+
* zero) entries may be returned even if there are more entries, where
|
|
29452
|
+
* the returned cursor(s) are guaranteed to be updated.
|
|
28667
29453
|
* @format int32
|
|
28668
29454
|
*/
|
|
28669
29455
|
limit?: number;
|
|
@@ -28678,7 +29464,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28678
29464
|
* specified will be returned.
|
|
28679
29465
|
*/
|
|
28680
29466
|
visibility?: TimelineEntryVisibility[];
|
|
28681
|
-
}, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesListResponse, any>>;
|
|
29467
|
+
}, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesListResponse, any, {}>>;
|
|
28682
29468
|
/**
|
|
28683
29469
|
* @description Lists the timeline entries for an object.
|
|
28684
29470
|
*
|
|
@@ -28688,7 +29474,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28688
29474
|
* @request POST:/timeline-entries.list
|
|
28689
29475
|
* @secure
|
|
28690
29476
|
*/
|
|
28691
|
-
timelineEntriesListPost: (data: TimelineEntriesListRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesListResponse, any>>;
|
|
29477
|
+
timelineEntriesListPost: (data: TimelineEntriesListRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesListResponse, any, {}>>;
|
|
28692
29478
|
/**
|
|
28693
29479
|
* @description Updates an entry on an object's timeline.
|
|
28694
29480
|
*
|
|
@@ -28698,7 +29484,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28698
29484
|
* @request POST:/timeline-entries.update
|
|
28699
29485
|
* @secure
|
|
28700
29486
|
*/
|
|
28701
|
-
timelineEntriesUpdate: (data: TimelineEntriesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesUpdateResponse, any>>;
|
|
29487
|
+
timelineEntriesUpdate: (data: TimelineEntriesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<TimelineEntriesUpdateResponse, any, {}>>;
|
|
28702
29488
|
/**
|
|
28703
29489
|
* @description Allows publishing of events (example from plug widget).
|
|
28704
29490
|
*
|
|
@@ -28708,7 +29494,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28708
29494
|
* @request POST:/track-events.publish
|
|
28709
29495
|
* @secure
|
|
28710
29496
|
*/
|
|
28711
|
-
trackEventsPublish: (data: TrackEventsPublishRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
29497
|
+
trackEventsPublish: (data: TrackEventsPublishRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
28712
29498
|
/**
|
|
28713
29499
|
* @description Counts the number of Unit of Measurements based on the given filters.
|
|
28714
29500
|
*
|
|
@@ -28740,7 +29526,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28740
29526
|
product_ids?: string[];
|
|
28741
29527
|
/** List of unit types for filtering list of UOMs. */
|
|
28742
29528
|
unit_types?: UnitType[];
|
|
28743
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UomsCountResponse, any>>;
|
|
29529
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UomsCountResponse, any, {}>>;
|
|
28744
29530
|
/**
|
|
28745
29531
|
* @description Counts the number of Unit of Measurements based on the given filters.
|
|
28746
29532
|
*
|
|
@@ -28750,7 +29536,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28750
29536
|
* @request POST:/uoms.count
|
|
28751
29537
|
* @secure
|
|
28752
29538
|
*/
|
|
28753
|
-
uomsCountPost: (data: UomsCountRequest, params?: RequestParams) => Promise<AxiosResponse<UomsCountResponse, any>>;
|
|
29539
|
+
uomsCountPost: (data: UomsCountRequest, params?: RequestParams) => Promise<AxiosResponse<UomsCountResponse, any, {}>>;
|
|
28754
29540
|
/**
|
|
28755
29541
|
* @description Creates a Unit of Measurement on a part.
|
|
28756
29542
|
*
|
|
@@ -28760,7 +29546,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28760
29546
|
* @request POST:/uoms.create
|
|
28761
29547
|
* @secure
|
|
28762
29548
|
*/
|
|
28763
|
-
uomsCreate: (data: UomsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<UomsCreateResponse, any>>;
|
|
29549
|
+
uomsCreate: (data: UomsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<UomsCreateResponse, any, {}>>;
|
|
28764
29550
|
/**
|
|
28765
29551
|
* @description Deletes a Unit of Measurement.
|
|
28766
29552
|
*
|
|
@@ -28770,7 +29556,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28770
29556
|
* @request POST:/uoms.delete
|
|
28771
29557
|
* @secure
|
|
28772
29558
|
*/
|
|
28773
|
-
uomsDelete: (data: UomsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any>>;
|
|
29559
|
+
uomsDelete: (data: UomsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<void, any, {}>>;
|
|
28774
29560
|
/**
|
|
28775
29561
|
* @description Gets a Unit of Measurement.
|
|
28776
29562
|
*
|
|
@@ -28786,7 +29572,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28786
29572
|
* @format id
|
|
28787
29573
|
*/
|
|
28788
29574
|
id: string;
|
|
28789
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UomsGetResponse, any>>;
|
|
29575
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UomsGetResponse, any, {}>>;
|
|
28790
29576
|
/**
|
|
28791
29577
|
* @description Gets a Unit of Measurement.
|
|
28792
29578
|
*
|
|
@@ -28796,7 +29582,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28796
29582
|
* @request POST:/uoms.get
|
|
28797
29583
|
* @secure
|
|
28798
29584
|
*/
|
|
28799
|
-
uomsGetPost: (data: UomsGetRequest, params?: RequestParams) => Promise<AxiosResponse<UomsGetResponse, any>>;
|
|
29585
|
+
uomsGetPost: (data: UomsGetRequest, params?: RequestParams) => Promise<AxiosResponse<UomsGetResponse, any, {}>>;
|
|
28800
29586
|
/**
|
|
28801
29587
|
* @description Gets the Unit of Measurements based on the given filters.
|
|
28802
29588
|
*
|
|
@@ -28850,7 +29636,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28850
29636
|
sort_by?: string[];
|
|
28851
29637
|
/** List of unit types for filtering list of UOMs. */
|
|
28852
29638
|
unit_types?: UnitType[];
|
|
28853
|
-
}, params?: RequestParams) => Promise<AxiosResponse<UomsListResponse, any>>;
|
|
29639
|
+
}, params?: RequestParams) => Promise<AxiosResponse<UomsListResponse, any, {}>>;
|
|
28854
29640
|
/**
|
|
28855
29641
|
* @description Gets the Unit of Measurements based on the given filters.
|
|
28856
29642
|
*
|
|
@@ -28860,7 +29646,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28860
29646
|
* @request POST:/uoms.list
|
|
28861
29647
|
* @secure
|
|
28862
29648
|
*/
|
|
28863
|
-
uomsListPost: (data: UomsListRequest, params?: RequestParams) => Promise<AxiosResponse<UomsListResponse, any>>;
|
|
29649
|
+
uomsListPost: (data: UomsListRequest, params?: RequestParams) => Promise<AxiosResponse<UomsListResponse, any, {}>>;
|
|
28864
29650
|
/**
|
|
28865
29651
|
* @description Updates a Unit of Measurement.
|
|
28866
29652
|
*
|
|
@@ -28870,7 +29656,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28870
29656
|
* @request POST:/uoms.update
|
|
28871
29657
|
* @secure
|
|
28872
29658
|
*/
|
|
28873
|
-
uomsUpdate: (data: UomsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UomsUpdateResponse, any>>;
|
|
29659
|
+
uomsUpdate: (data: UomsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<UomsUpdateResponse, any, {}>>;
|
|
28874
29660
|
/**
|
|
28875
29661
|
* @description Creates a vista.
|
|
28876
29662
|
*
|
|
@@ -28880,7 +29666,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28880
29666
|
* @request POST:/vistas.create
|
|
28881
29667
|
* @secure
|
|
28882
29668
|
*/
|
|
28883
|
-
vistasCreate: (data: VistasCreateRequest, params?: RequestParams) => Promise<AxiosResponse<VistasCreateResponse, any>>;
|
|
29669
|
+
vistasCreate: (data: VistasCreateRequest, params?: RequestParams) => Promise<AxiosResponse<VistasCreateResponse, any, {}>>;
|
|
28884
29670
|
/**
|
|
28885
29671
|
* @description Deletes the requested vista.
|
|
28886
29672
|
*
|
|
@@ -28890,7 +29676,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28890
29676
|
* @request POST:/vistas.delete
|
|
28891
29677
|
* @secure
|
|
28892
29678
|
*/
|
|
28893
|
-
vistasDelete: (data: VistasDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
29679
|
+
vistasDelete: (data: VistasDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
28894
29680
|
/**
|
|
28895
29681
|
* @description Gets the requested vistas's information.
|
|
28896
29682
|
*
|
|
@@ -28907,7 +29693,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28907
29693
|
* @example "VISTA-12345"
|
|
28908
29694
|
*/
|
|
28909
29695
|
id: string;
|
|
28910
|
-
}, params?: RequestParams) => Promise<AxiosResponse<VistasGetResponse, any>>;
|
|
29696
|
+
}, params?: RequestParams) => Promise<AxiosResponse<VistasGetResponse, any, {}>>;
|
|
28911
29697
|
/**
|
|
28912
29698
|
* @description Gets the requested vistas's information.
|
|
28913
29699
|
*
|
|
@@ -28917,7 +29703,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28917
29703
|
* @request POST:/vistas.get
|
|
28918
29704
|
* @secure
|
|
28919
29705
|
*/
|
|
28920
|
-
vistasGetPost: (data: VistasGetRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGetResponse, any>>;
|
|
29706
|
+
vistasGetPost: (data: VistasGetRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGetResponse, any, {}>>;
|
|
28921
29707
|
/**
|
|
28922
29708
|
* @description Deletes the requested vista group item
|
|
28923
29709
|
*
|
|
@@ -28927,7 +29713,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28927
29713
|
* @request POST:/vistas.groups.delete
|
|
28928
29714
|
* @secure
|
|
28929
29715
|
*/
|
|
28930
|
-
vistasGroupsDelete: (data: VistasGroupsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
29716
|
+
vistasGroupsDelete: (data: VistasGroupsDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
28931
29717
|
/**
|
|
28932
29718
|
* @description Gets the requested vista group item's information.
|
|
28933
29719
|
*
|
|
@@ -28943,7 +29729,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28943
29729
|
* @format id
|
|
28944
29730
|
*/
|
|
28945
29731
|
id: string;
|
|
28946
|
-
}, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsGetResponse, any>>;
|
|
29732
|
+
}, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsGetResponse, any, {}>>;
|
|
28947
29733
|
/**
|
|
28948
29734
|
* @description Gets the requested vista group item's information.
|
|
28949
29735
|
*
|
|
@@ -28953,7 +29739,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
28953
29739
|
* @request POST:/vistas.groups.get
|
|
28954
29740
|
* @secure
|
|
28955
29741
|
*/
|
|
28956
|
-
vistasGroupsGetPost: (data: VistasGroupsGetRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsGetResponse, any>>;
|
|
29742
|
+
vistasGroupsGetPost: (data: VistasGroupsGetRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsGetResponse, any, {}>>;
|
|
28957
29743
|
/**
|
|
28958
29744
|
* @description Lists the available vista group items.
|
|
28959
29745
|
*
|
|
@@ -29015,7 +29801,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29015
29801
|
state?: VistaGroupItemState[];
|
|
29016
29802
|
/** Filters for vista group items of the specific type. */
|
|
29017
29803
|
type?: GroupItemType[];
|
|
29018
|
-
}, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsListResponse, any>>;
|
|
29804
|
+
}, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsListResponse, any, {}>>;
|
|
29019
29805
|
/**
|
|
29020
29806
|
* @description Lists the available vista group items.
|
|
29021
29807
|
*
|
|
@@ -29025,7 +29811,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29025
29811
|
* @request POST:/vistas.groups.list
|
|
29026
29812
|
* @secure
|
|
29027
29813
|
*/
|
|
29028
|
-
vistasGroupsListPost: (data: VistasGroupsListRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsListResponse, any>>;
|
|
29814
|
+
vistasGroupsListPost: (data: VistasGroupsListRequest, params?: RequestParams) => Promise<AxiosResponse<VistasGroupsListResponse, any, {}>>;
|
|
29029
29815
|
/**
|
|
29030
29816
|
* @description Lists the available vistas.
|
|
29031
29817
|
*
|
|
@@ -29087,7 +29873,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29087
29873
|
state?: VistaGroupItemState[];
|
|
29088
29874
|
/** Filters for vistas of the specific type. */
|
|
29089
29875
|
type?: VistaType[];
|
|
29090
|
-
}, params?: RequestParams) => Promise<AxiosResponse<VistasListResponse, any>>;
|
|
29876
|
+
}, params?: RequestParams) => Promise<AxiosResponse<VistasListResponse, any, {}>>;
|
|
29091
29877
|
/**
|
|
29092
29878
|
* @description Lists the available vistas.
|
|
29093
29879
|
*
|
|
@@ -29097,7 +29883,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29097
29883
|
* @request POST:/vistas.list
|
|
29098
29884
|
* @secure
|
|
29099
29885
|
*/
|
|
29100
|
-
vistasListPost: (data: VistasListRequest, params?: RequestParams) => Promise<AxiosResponse<VistasListResponse, any>>;
|
|
29886
|
+
vistasListPost: (data: VistasListRequest, params?: RequestParams) => Promise<AxiosResponse<VistasListResponse, any, {}>>;
|
|
29101
29887
|
/**
|
|
29102
29888
|
* @description Change state of a web crawler job to pause or resume it back to running.
|
|
29103
29889
|
*
|
|
@@ -29107,7 +29893,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29107
29893
|
* @request POST:/web-crawler-jobs.control
|
|
29108
29894
|
* @secure
|
|
29109
29895
|
*/
|
|
29110
|
-
webCrawlerJobsControl: (data: WebCrawlerJobsControlRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsControlResponse, any>>;
|
|
29896
|
+
webCrawlerJobsControl: (data: WebCrawlerJobsControlRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsControlResponse, any, {}>>;
|
|
29111
29897
|
/**
|
|
29112
29898
|
* @description Creates a web crawler job whose objective is to crawl the provided URLs/sitemaps and generate corresponding webpages as artifacts.
|
|
29113
29899
|
*
|
|
@@ -29117,7 +29903,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29117
29903
|
* @request POST:/web-crawler-jobs.create
|
|
29118
29904
|
* @secure
|
|
29119
29905
|
*/
|
|
29120
|
-
createWebCrawlerJob: (data: WebCrawlerJobsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsCreateResponse, any>>;
|
|
29906
|
+
createWebCrawlerJob: (data: WebCrawlerJobsCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsCreateResponse, any, {}>>;
|
|
29121
29907
|
/**
|
|
29122
29908
|
* @description Gets a web crawler job.
|
|
29123
29909
|
*
|
|
@@ -29133,7 +29919,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29133
29919
|
* @format id
|
|
29134
29920
|
*/
|
|
29135
29921
|
id: string;
|
|
29136
|
-
}, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsGetResponse, any>>;
|
|
29922
|
+
}, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsGetResponse, any, {}>>;
|
|
29137
29923
|
/**
|
|
29138
29924
|
* @description Gets a web crawler job.
|
|
29139
29925
|
*
|
|
@@ -29143,7 +29929,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29143
29929
|
* @request POST:/web-crawler-jobs.get
|
|
29144
29930
|
* @secure
|
|
29145
29931
|
*/
|
|
29146
|
-
getWebCrawlerJobPost: (data: WebCrawlerJobsGetRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsGetResponse, any>>;
|
|
29932
|
+
getWebCrawlerJobPost: (data: WebCrawlerJobsGetRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsGetResponse, any, {}>>;
|
|
29147
29933
|
/**
|
|
29148
29934
|
* @description Lists web crawler jobs.
|
|
29149
29935
|
*
|
|
@@ -29176,7 +29962,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29176
29962
|
* used.
|
|
29177
29963
|
*/
|
|
29178
29964
|
mode?: ListMode;
|
|
29179
|
-
}, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsListResponse, any>>;
|
|
29965
|
+
}, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsListResponse, any, {}>>;
|
|
29180
29966
|
/**
|
|
29181
29967
|
* @description Lists web crawler jobs.
|
|
29182
29968
|
*
|
|
@@ -29186,7 +29972,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29186
29972
|
* @request POST:/web-crawler-jobs.list
|
|
29187
29973
|
* @secure
|
|
29188
29974
|
*/
|
|
29189
|
-
listWebCrawlerJobsPost: (data: WebCrawlerJobsListRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsListResponse, any>>;
|
|
29975
|
+
listWebCrawlerJobsPost: (data: WebCrawlerJobsListRequest, params?: RequestParams) => Promise<AxiosResponse<WebCrawlerJobsListResponse, any, {}>>;
|
|
29190
29976
|
/**
|
|
29191
29977
|
* @description Creates a new webhook target.
|
|
29192
29978
|
*
|
|
@@ -29196,7 +29982,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29196
29982
|
* @request POST:/webhooks.create
|
|
29197
29983
|
* @secure
|
|
29198
29984
|
*/
|
|
29199
|
-
webhooksCreate: (data: WebhooksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksCreateResponse, any>>;
|
|
29985
|
+
webhooksCreate: (data: WebhooksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksCreateResponse, any, {}>>;
|
|
29200
29986
|
/**
|
|
29201
29987
|
* @description Deletes the requested webhook.
|
|
29202
29988
|
*
|
|
@@ -29206,7 +29992,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29206
29992
|
* @request POST:/webhooks.delete
|
|
29207
29993
|
* @secure
|
|
29208
29994
|
*/
|
|
29209
|
-
webhooksDelete: (data: WebhooksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
29995
|
+
webhooksDelete: (data: WebhooksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
29210
29996
|
/**
|
|
29211
29997
|
* @description Describes a webhook invocation for an event from DevRev to a webhook's target URL, where the receiving handler must implement the specified protocol. Note the documented endpoint is for exposition and not provided by DevRev.
|
|
29212
29998
|
*
|
|
@@ -29216,7 +30002,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29216
30002
|
* @request POST:/webhooks.event
|
|
29217
30003
|
* @secure
|
|
29218
30004
|
*/
|
|
29219
|
-
webhooksEvent: (data: WebhookEventRequest, params?: RequestParams) => Promise<AxiosResponse<WebhookEventResponse, any>>;
|
|
30005
|
+
webhooksEvent: (data: WebhookEventRequest, params?: RequestParams) => Promise<AxiosResponse<WebhookEventResponse, any, {}>>;
|
|
29220
30006
|
/**
|
|
29221
30007
|
* @description Fetches an object via webhook.
|
|
29222
30008
|
*
|
|
@@ -29226,7 +30012,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29226
30012
|
* @request POST:/webhooks.fetch
|
|
29227
30013
|
* @secure
|
|
29228
30014
|
*/
|
|
29229
|
-
webhooksFetch: (data: WebhooksFetchRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
30015
|
+
webhooksFetch: (data: WebhooksFetchRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
29230
30016
|
/**
|
|
29231
30017
|
* @description Gets the requested webhook's information.
|
|
29232
30018
|
*
|
|
@@ -29243,7 +30029,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29243
30029
|
* @example "don:integration:dvrv-us-1:devo/example:webhook/webhook-id"
|
|
29244
30030
|
*/
|
|
29245
30031
|
id: string;
|
|
29246
|
-
}, params?: RequestParams) => Promise<AxiosResponse<WebhooksGetResponse, any>>;
|
|
30032
|
+
}, params?: RequestParams) => Promise<AxiosResponse<WebhooksGetResponse, any, {}>>;
|
|
29247
30033
|
/**
|
|
29248
30034
|
* @description Gets the requested webhook's information.
|
|
29249
30035
|
*
|
|
@@ -29253,7 +30039,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29253
30039
|
* @request POST:/webhooks.get
|
|
29254
30040
|
* @secure
|
|
29255
30041
|
*/
|
|
29256
|
-
webhooksGetPost: (data: WebhooksGetRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksGetResponse, any>>;
|
|
30042
|
+
webhooksGetPost: (data: WebhooksGetRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksGetResponse, any, {}>>;
|
|
29257
30043
|
/**
|
|
29258
30044
|
* @description Lists the webhooks.
|
|
29259
30045
|
*
|
|
@@ -29263,7 +30049,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29263
30049
|
* @request GET:/webhooks.list
|
|
29264
30050
|
* @secure
|
|
29265
30051
|
*/
|
|
29266
|
-
webhooksList: (params?: RequestParams) => Promise<AxiosResponse<WebhooksListResponse, any>>;
|
|
30052
|
+
webhooksList: (params?: RequestParams) => Promise<AxiosResponse<WebhooksListResponse, any, {}>>;
|
|
29267
30053
|
/**
|
|
29268
30054
|
* @description Lists the webhooks.
|
|
29269
30055
|
*
|
|
@@ -29273,7 +30059,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29273
30059
|
* @request POST:/webhooks.list
|
|
29274
30060
|
* @secure
|
|
29275
30061
|
*/
|
|
29276
|
-
webhooksListPost: (data: WebhooksListRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksListResponse, any>>;
|
|
30062
|
+
webhooksListPost: (data: WebhooksListRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksListResponse, any, {}>>;
|
|
29277
30063
|
/**
|
|
29278
30064
|
* @description Updates the requested webhook.
|
|
29279
30065
|
*
|
|
@@ -29283,7 +30069,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29283
30069
|
* @request POST:/webhooks.update
|
|
29284
30070
|
* @secure
|
|
29285
30071
|
*/
|
|
29286
|
-
webhooksUpdate: (data: WebhooksUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksUpdateResponse, any>>;
|
|
30072
|
+
webhooksUpdate: (data: WebhooksUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksUpdateResponse, any, {}>>;
|
|
29287
30073
|
/**
|
|
29288
30074
|
* @description Returns the requested widget.
|
|
29289
30075
|
*
|
|
@@ -29296,10 +30082,10 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29296
30082
|
widgetsGet: (query: {
|
|
29297
30083
|
/**
|
|
29298
30084
|
* The requested widget's ID.
|
|
29299
|
-
* @format
|
|
30085
|
+
* @format id
|
|
29300
30086
|
*/
|
|
29301
30087
|
id: string;
|
|
29302
|
-
}, params?: RequestParams) => Promise<AxiosResponse<WidgetsGetResponse, any>>;
|
|
30088
|
+
}, params?: RequestParams) => Promise<AxiosResponse<WidgetsGetResponse, any, {}>>;
|
|
29303
30089
|
/**
|
|
29304
30090
|
* @description Returns the requested widget.
|
|
29305
30091
|
*
|
|
@@ -29309,7 +30095,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29309
30095
|
* @request POST:/widgets.get
|
|
29310
30096
|
* @secure
|
|
29311
30097
|
*/
|
|
29312
|
-
widgetsGetPost: (data: WidgetsGetRequest, params?: RequestParams) => Promise<AxiosResponse<WidgetsGetResponse, any>>;
|
|
30098
|
+
widgetsGetPost: (data: WidgetsGetRequest, params?: RequestParams) => Promise<AxiosResponse<WidgetsGetResponse, any, {}>>;
|
|
29313
30099
|
/**
|
|
29314
30100
|
* @description Creates new work ([issue](https://devrev.ai/docs/product/build), [ticket](https://devrev.ai/docs/product/support)) item. [task](https://devrev.ai/docs/product/tasks) and opportunity work types are supported in the beta version.
|
|
29315
30101
|
*
|
|
@@ -29319,7 +30105,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29319
30105
|
* @request POST:/works.create
|
|
29320
30106
|
* @secure
|
|
29321
30107
|
*/
|
|
29322
|
-
worksCreate: (data: WorksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WorksCreateResponse, any>>;
|
|
30108
|
+
worksCreate: (data: WorksCreateRequest, params?: RequestParams) => Promise<AxiosResponse<WorksCreateResponse, any, {}>>;
|
|
29323
30109
|
/**
|
|
29324
30110
|
* @description Deletes a work item.
|
|
29325
30111
|
*
|
|
@@ -29329,7 +30115,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29329
30115
|
* @request POST:/works.delete
|
|
29330
30116
|
* @secure
|
|
29331
30117
|
*/
|
|
29332
|
-
worksDelete: (data: WorksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
30118
|
+
worksDelete: (data: WorksDeleteRequest, params?: RequestParams) => Promise<AxiosResponse<object, any, {}>>;
|
|
29333
30119
|
/**
|
|
29334
30120
|
* @description Exports a collection of work items.
|
|
29335
30121
|
*
|
|
@@ -29352,6 +30138,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29352
30138
|
created_by?: string[];
|
|
29353
30139
|
/** Filters for custom fields. */
|
|
29354
30140
|
custom_fields?: object;
|
|
30141
|
+
/** Filters for work with any of the provided external references. */
|
|
30142
|
+
external_ref?: string[];
|
|
29355
30143
|
/**
|
|
29356
30144
|
* The number of work items to return. The default is '50', the maximum
|
|
29357
30145
|
* is '5000'.
|
|
@@ -29469,9 +30257,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29469
30257
|
'ticket.source_channel_v2'?: string[];
|
|
29470
30258
|
/** Filters for tickets with any of the provided subtypes. */
|
|
29471
30259
|
'ticket.subtype'?: string[];
|
|
30260
|
+
/** Visibility enum ID of the ticket. */
|
|
30261
|
+
'ticket.visibility'?: number[];
|
|
29472
30262
|
/** Filters for work of the provided types. */
|
|
29473
30263
|
type?: WorkType[];
|
|
29474
|
-
}, params?: RequestParams) => Promise<AxiosResponse<WorksExportResponse, any>>;
|
|
30264
|
+
}, params?: RequestParams) => Promise<AxiosResponse<WorksExportResponse, any, {}>>;
|
|
29475
30265
|
/**
|
|
29476
30266
|
* @description Exports a collection of work items.
|
|
29477
30267
|
*
|
|
@@ -29481,7 +30271,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29481
30271
|
* @request POST:/works.export
|
|
29482
30272
|
* @secure
|
|
29483
30273
|
*/
|
|
29484
|
-
worksExportPost: (data: WorksExportRequest, params?: RequestParams) => Promise<AxiosResponse<WorksExportResponse, any>>;
|
|
30274
|
+
worksExportPost: (data: WorksExportRequest, params?: RequestParams) => Promise<AxiosResponse<WorksExportResponse, any, {}>>;
|
|
29485
30275
|
/**
|
|
29486
30276
|
* @description Gets a work item's information.
|
|
29487
30277
|
*
|
|
@@ -29498,7 +30288,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29498
30288
|
* @example "ISS-12345"
|
|
29499
30289
|
*/
|
|
29500
30290
|
id: string;
|
|
29501
|
-
}, params?: RequestParams) => Promise<AxiosResponse<WorksGetResponse, any>>;
|
|
30291
|
+
}, params?: RequestParams) => Promise<AxiosResponse<WorksGetResponse, any, {}>>;
|
|
29502
30292
|
/**
|
|
29503
30293
|
* @description Gets a work item's information.
|
|
29504
30294
|
*
|
|
@@ -29508,7 +30298,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29508
30298
|
* @request POST:/works.get
|
|
29509
30299
|
* @secure
|
|
29510
30300
|
*/
|
|
29511
|
-
worksGetPost: (data: WorksGetRequest, params?: RequestParams) => Promise<AxiosResponse<WorksGetResponse, any>>;
|
|
30301
|
+
worksGetPost: (data: WorksGetRequest, params?: RequestParams) => Promise<AxiosResponse<WorksGetResponse, any, {}>>;
|
|
29512
30302
|
/**
|
|
29513
30303
|
* @description Lists a collection of work items.
|
|
29514
30304
|
*
|
|
@@ -29537,6 +30327,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29537
30327
|
cursor?: string;
|
|
29538
30328
|
/** Filters for custom fields. */
|
|
29539
30329
|
custom_fields?: object;
|
|
30330
|
+
/** Filters for work with any of the provided external references. */
|
|
30331
|
+
external_ref?: string[];
|
|
29540
30332
|
/**
|
|
29541
30333
|
* Filters for issues with any of the provided accounts.
|
|
29542
30334
|
* @example ["ACC-12345"]
|
|
@@ -29658,9 +30450,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29658
30450
|
'ticket.source_channel_v2'?: string[];
|
|
29659
30451
|
/** Filters for tickets with any of the provided subtypes. */
|
|
29660
30452
|
'ticket.subtype'?: string[];
|
|
30453
|
+
/** Visibility enum ID of the ticket. */
|
|
30454
|
+
'ticket.visibility'?: number[];
|
|
29661
30455
|
/** Filters for work of the provided types. */
|
|
29662
30456
|
type?: WorkType[];
|
|
29663
|
-
}, params?: RequestParams) => Promise<AxiosResponse<WorksListResponse, any>>;
|
|
30457
|
+
}, params?: RequestParams) => Promise<AxiosResponse<WorksListResponse, any, {}>>;
|
|
29664
30458
|
/**
|
|
29665
30459
|
* @description Lists a collection of work items.
|
|
29666
30460
|
*
|
|
@@ -29670,7 +30464,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29670
30464
|
* @request POST:/works.list
|
|
29671
30465
|
* @secure
|
|
29672
30466
|
*/
|
|
29673
|
-
worksListPost: (data: WorksListRequest, params?: RequestParams) => Promise<AxiosResponse<WorksListResponse, any>>;
|
|
30467
|
+
worksListPost: (data: WorksListRequest, params?: RequestParams) => Promise<AxiosResponse<WorksListResponse, any, {}>>;
|
|
29674
30468
|
/**
|
|
29675
30469
|
* @description Updates a work item's information.
|
|
29676
30470
|
*
|
|
@@ -29680,5 +30474,5 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
29680
30474
|
* @request POST:/works.update
|
|
29681
30475
|
* @secure
|
|
29682
30476
|
*/
|
|
29683
|
-
worksUpdate: (data: WorksUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<WorksUpdateResponse, any>>;
|
|
30477
|
+
worksUpdate: (data: WorksUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<WorksUpdateResponse, any, {}>>;
|
|
29684
30478
|
}
|