@devrev/typescript-sdk 1.1.40 → 1.1.42
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.
|
@@ -13,7 +13,7 @@ export type Account = OrgBase & {
|
|
|
13
13
|
custom_fields?: object;
|
|
14
14
|
/**
|
|
15
15
|
* Custom schema fragments.
|
|
16
|
-
* @example ["don:core
|
|
16
|
+
* @example ["don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"]
|
|
17
17
|
*/
|
|
18
18
|
custom_schema_fragments?: string[];
|
|
19
19
|
/** Description of the corresponding Account. */
|
|
@@ -24,12 +24,12 @@ export type Account = OrgBase & {
|
|
|
24
24
|
* External refs are unique identifiers from your customer system of
|
|
25
25
|
* records, stored as a list.
|
|
26
26
|
*/
|
|
27
|
-
external_refs
|
|
27
|
+
external_refs?: string[];
|
|
28
28
|
/** List of Dev user IDs owning this Account. */
|
|
29
29
|
owned_by: UserSummary[];
|
|
30
30
|
/**
|
|
31
31
|
* Stock schema fragment.
|
|
32
|
-
* @example "don:core
|
|
32
|
+
* @example "don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"
|
|
33
33
|
*/
|
|
34
34
|
stock_schema_fragment?: string;
|
|
35
35
|
/** Subtype corresponding to the custom type fragment. */
|
|
@@ -91,7 +91,7 @@ export interface AccountsCreateRequest {
|
|
|
91
91
|
/**
|
|
92
92
|
* Schema fragment IDs associated with this account SOR.
|
|
93
93
|
* @deprecated
|
|
94
|
-
* @example ["don:core
|
|
94
|
+
* @example ["don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"]
|
|
95
95
|
*/
|
|
96
96
|
schema_fragment_ids?: string[];
|
|
97
97
|
/** Tags associated with the account. */
|
|
@@ -333,7 +333,7 @@ export interface AccountsUpdateRequest {
|
|
|
333
333
|
/**
|
|
334
334
|
* Schema fragment IDs associated with this account SOR.
|
|
335
335
|
* @deprecated
|
|
336
|
-
* @example ["don:core
|
|
336
|
+
* @example ["don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"]
|
|
337
337
|
*/
|
|
338
338
|
schema_fragment_ids?: string[];
|
|
339
339
|
/** Updated tags list associated with the account. */
|
|
@@ -622,6 +622,12 @@ export interface ArchetypeMetricTarget {
|
|
|
622
622
|
* @example "2023-01-01T12:00:00.000Z"
|
|
623
623
|
*/
|
|
624
624
|
breached_at?: string;
|
|
625
|
+
/**
|
|
626
|
+
* The time at which the metric completed at.
|
|
627
|
+
* @format date-time
|
|
628
|
+
* @example "2023-01-01T12:00:00.000Z"
|
|
629
|
+
*/
|
|
630
|
+
completed_at?: string;
|
|
625
631
|
/**
|
|
626
632
|
* For completed metrics the time (in minutes) it took to complete
|
|
627
633
|
* them. (Taking into account the schedule if any).
|
|
@@ -673,7 +679,31 @@ export interface ArchetypeMetricTarget {
|
|
|
673
679
|
* archetype-sla-summary
|
|
674
680
|
* SLA summary for the object.
|
|
675
681
|
*/
|
|
676
|
-
export
|
|
682
|
+
export interface ArchetypeSlaSummary {
|
|
683
|
+
/** The name of the metric which is closest to breach. */
|
|
684
|
+
closest_to_breach_metric?: string;
|
|
685
|
+
org_schedule?: OrgScheduleSummary;
|
|
686
|
+
/**
|
|
687
|
+
* The remaining time (in minutes) for the closest_to_breach_metric if
|
|
688
|
+
* it is paused. A paused metric will only be closest to breach if no
|
|
689
|
+
* metrics are running (running, warning and breached stage).
|
|
690
|
+
* @format int32
|
|
691
|
+
*/
|
|
692
|
+
remaining_time?: number;
|
|
693
|
+
sla_tracker?: SlaTracker;
|
|
694
|
+
/**
|
|
695
|
+
* The stage of the SLA. This is the metric stage which is closest to
|
|
696
|
+
* breach.
|
|
697
|
+
*/
|
|
698
|
+
stage?: SlaSummaryStage;
|
|
699
|
+
/**
|
|
700
|
+
* The target time to avoid SLA breach. This is the target time of the
|
|
701
|
+
* metric which is closest to breach.
|
|
702
|
+
* @format date-time
|
|
703
|
+
* @example "2023-01-01T12:00:00.000Z"
|
|
704
|
+
*/
|
|
705
|
+
target_time?: string;
|
|
706
|
+
}
|
|
677
707
|
/** article */
|
|
678
708
|
export type Article = AtomBase & {
|
|
679
709
|
/** Parts relevant to the article. */
|
|
@@ -1268,6 +1298,14 @@ export interface ArtifactsVersionsPrepareResponseFormData {
|
|
|
1268
1298
|
/** Value corresponding to the key. */
|
|
1269
1299
|
value: string;
|
|
1270
1300
|
}
|
|
1301
|
+
/** associated-to-summary */
|
|
1302
|
+
export type AssociatedToSummary = (AccountSummary | RevOrgSummary) & {
|
|
1303
|
+
type: AssociatedToType;
|
|
1304
|
+
};
|
|
1305
|
+
export declare enum AssociatedToType {
|
|
1306
|
+
Account = "account",
|
|
1307
|
+
RevOrg = "rev_org"
|
|
1308
|
+
}
|
|
1271
1309
|
/** atom-base */
|
|
1272
1310
|
export interface AtomBase {
|
|
1273
1311
|
created_by?: UserSummary;
|
|
@@ -3186,12 +3224,12 @@ export type CustomObject = AtomBase & {
|
|
|
3186
3224
|
custom_fields?: object;
|
|
3187
3225
|
/**
|
|
3188
3226
|
* Custom schema fragments.
|
|
3189
|
-
* @example ["don:core
|
|
3227
|
+
* @example ["don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"]
|
|
3190
3228
|
*/
|
|
3191
3229
|
custom_schema_fragments?: string[];
|
|
3192
3230
|
/**
|
|
3193
3231
|
* Stock schema fragment.
|
|
3194
|
-
* @example "don:core
|
|
3232
|
+
* @example "don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"
|
|
3195
3233
|
*/
|
|
3196
3234
|
stock_schema_fragment?: string;
|
|
3197
3235
|
/** Subtype corresponding to the custom type fragment. */
|
|
@@ -4124,7 +4162,7 @@ export type DevUser = UserBase & {
|
|
|
4124
4162
|
custom_fields?: object;
|
|
4125
4163
|
/**
|
|
4126
4164
|
* Custom schema fragments.
|
|
4127
|
-
* @example ["don:core
|
|
4165
|
+
* @example ["don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"]
|
|
4128
4166
|
*/
|
|
4129
4167
|
custom_schema_fragments?: string[];
|
|
4130
4168
|
/**
|
|
@@ -4141,7 +4179,7 @@ export type DevUser = UserBase & {
|
|
|
4141
4179
|
skills?: UserSkill[];
|
|
4142
4180
|
/**
|
|
4143
4181
|
* Stock schema fragment.
|
|
4144
|
-
* @example "don:core
|
|
4182
|
+
* @example "don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"
|
|
4145
4183
|
*/
|
|
4146
4184
|
stock_schema_fragment?: string;
|
|
4147
4185
|
/** Subtype corresponding to the custom type fragment. */
|
|
@@ -5560,7 +5598,7 @@ export interface EventTimelineEntryCreated {
|
|
|
5560
5598
|
export interface EventTimelineEntryDeleted {
|
|
5561
5599
|
/**
|
|
5562
5600
|
* The ID of the timeline entry that was deleted.
|
|
5563
|
-
* @example "don:core
|
|
5601
|
+
* @example "don:core:dvrv-us-1:devo/example:ticket/123:comment/comment-id"
|
|
5564
5602
|
*/
|
|
5565
5603
|
id: string;
|
|
5566
5604
|
old_entry?: TimelineEntry;
|
|
@@ -5578,7 +5616,7 @@ export interface EventWebhookCreated {
|
|
|
5578
5616
|
export interface EventWebhookDeleted {
|
|
5579
5617
|
/**
|
|
5580
5618
|
* The ID of the webhook that was deleted.
|
|
5581
|
-
* @example "don:integration
|
|
5619
|
+
* @example "don:integration:dvrv-us-1:devo/example:webhook/webhook-id"
|
|
5582
5620
|
*/
|
|
5583
5621
|
id: string;
|
|
5584
5622
|
}
|
|
@@ -6150,7 +6188,7 @@ export type Incident = AtomBase & {
|
|
|
6150
6188
|
custom_fields?: object;
|
|
6151
6189
|
/**
|
|
6152
6190
|
* Custom schema fragments.
|
|
6153
|
-
* @example ["don:core
|
|
6191
|
+
* @example ["don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"]
|
|
6154
6192
|
*/
|
|
6155
6193
|
custom_schema_fragments?: string[];
|
|
6156
6194
|
/**
|
|
@@ -6190,7 +6228,7 @@ export type Incident = AtomBase & {
|
|
|
6190
6228
|
stakeholders?: UserSummary[];
|
|
6191
6229
|
/**
|
|
6192
6230
|
* Stock schema fragment.
|
|
6193
|
-
* @example "don:core
|
|
6231
|
+
* @example "don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"
|
|
6194
6232
|
*/
|
|
6195
6233
|
stock_schema_fragment?: string;
|
|
6196
6234
|
/** Subtype corresponding to the custom type fragment. */
|
|
@@ -6760,7 +6798,7 @@ export interface LinkDescriptorFilter {
|
|
|
6760
6798
|
link_descriptors: LinkTargetDescriptor[];
|
|
6761
6799
|
}
|
|
6762
6800
|
/** link-endpoint-summary */
|
|
6763
|
-
export type LinkEndpointSummary = (AccountSummary | CapabilitySummary | ConversationSummary | DevUserSummary | EnhancementSummary | FeatureSummary | IncidentSummary | IssueSummary | OpportunitySummary | ProductSummary | RevOrgSummary | RevUserSummary | TaskSummary | TicketSummary) & {
|
|
6801
|
+
export type LinkEndpointSummary = (AccountSummary | CapabilitySummary | ConversationSummary | DevUserSummary | EnhancementSummary | FeatureSummary | IncidentSummary | IssueSummary | MeetingSummary | OpportunitySummary | ProductSummary | RevOrgSummary | RevUserSummary | TaskSummary | TicketSummary) & {
|
|
6764
6802
|
type: LinkEndpointType;
|
|
6765
6803
|
};
|
|
6766
6804
|
export declare enum LinkEndpointType {
|
|
@@ -6772,6 +6810,7 @@ export declare enum LinkEndpointType {
|
|
|
6772
6810
|
Feature = "feature",
|
|
6773
6811
|
Incident = "incident",
|
|
6774
6812
|
Issue = "issue",
|
|
6813
|
+
Meeting = "meeting",
|
|
6775
6814
|
Opportunity = "opportunity",
|
|
6776
6815
|
Product = "product",
|
|
6777
6816
|
RevOrg = "rev_org",
|
|
@@ -6988,7 +7027,7 @@ export type Meeting = AtomBase & {
|
|
|
6988
7027
|
custom_fields?: object;
|
|
6989
7028
|
/**
|
|
6990
7029
|
* Custom schema fragments.
|
|
6991
|
-
* @example ["don:core
|
|
7030
|
+
* @example ["don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"]
|
|
6992
7031
|
*/
|
|
6993
7032
|
custom_schema_fragments?: string[];
|
|
6994
7033
|
/** Description of the meeting. */
|
|
@@ -7022,7 +7061,7 @@ export type Meeting = AtomBase & {
|
|
|
7022
7061
|
state?: MeetingState;
|
|
7023
7062
|
/**
|
|
7024
7063
|
* Stock schema fragment.
|
|
7025
|
-
* @example "don:core
|
|
7064
|
+
* @example "don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"
|
|
7026
7065
|
*/
|
|
7027
7066
|
stock_schema_fragment?: string;
|
|
7028
7067
|
/** Subtype corresponding to the custom type fragment. */
|
|
@@ -7060,6 +7099,8 @@ export interface MeetingsCountRequest {
|
|
|
7060
7099
|
created_date?: DateFilter;
|
|
7061
7100
|
/** Filters for meeting on custom fields. */
|
|
7062
7101
|
custom_fields?: object;
|
|
7102
|
+
/** Provides ways to specify date ranges on objects. */
|
|
7103
|
+
ended_date?: DateFilter;
|
|
7063
7104
|
/** Filters for meetings with the provided external_ref(s). */
|
|
7064
7105
|
external_ref?: string[];
|
|
7065
7106
|
/** Filters for links associated with the meeting. */
|
|
@@ -7075,6 +7116,8 @@ export interface MeetingsCountRequest {
|
|
|
7075
7116
|
* @example ["ACC-12345"]
|
|
7076
7117
|
*/
|
|
7077
7118
|
parent?: string[];
|
|
7119
|
+
/** Provides ways to specify date ranges on objects. */
|
|
7120
|
+
scheduled_date?: DateFilter;
|
|
7078
7121
|
/** Filters for meeting on specified state or outcomes. */
|
|
7079
7122
|
state?: MeetingState[];
|
|
7080
7123
|
/** Filters for meeting by tags. */
|
|
@@ -7189,6 +7232,8 @@ export interface MeetingsListRequest {
|
|
|
7189
7232
|
cursor?: string;
|
|
7190
7233
|
/** Filters for meeting on custom fields. */
|
|
7191
7234
|
custom_fields?: object;
|
|
7235
|
+
/** Provides ways to specify date ranges on objects. */
|
|
7236
|
+
ended_date?: DateFilter;
|
|
7192
7237
|
/** Filters for meetings with the provided external_ref(s). */
|
|
7193
7238
|
external_ref?: string[];
|
|
7194
7239
|
/**
|
|
@@ -7217,6 +7262,8 @@ export interface MeetingsListRequest {
|
|
|
7217
7262
|
* @example ["ACC-12345"]
|
|
7218
7263
|
*/
|
|
7219
7264
|
parent?: string[];
|
|
7265
|
+
/** Provides ways to specify date ranges on objects. */
|
|
7266
|
+
scheduled_date?: DateFilter;
|
|
7220
7267
|
/** Fields to sort the meetings by and the direction to sort them. */
|
|
7221
7268
|
sort_by?: string[];
|
|
7222
7269
|
/** Filters for meeting on specified state or outcomes. */
|
|
@@ -8043,7 +8090,7 @@ export type PartBase = AtomBase & {
|
|
|
8043
8090
|
custom_fields?: object;
|
|
8044
8091
|
/**
|
|
8045
8092
|
* Custom schema fragments.
|
|
8046
|
-
* @example ["don:core
|
|
8093
|
+
* @example ["don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"]
|
|
8047
8094
|
*/
|
|
8048
8095
|
custom_schema_fragments?: string[];
|
|
8049
8096
|
/** Description of the part. */
|
|
@@ -8054,7 +8101,7 @@ export type PartBase = AtomBase & {
|
|
|
8054
8101
|
owned_by: UserSummary[];
|
|
8055
8102
|
/**
|
|
8056
8103
|
* Stock schema fragment.
|
|
8057
|
-
* @example "don:core
|
|
8104
|
+
* @example "don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"
|
|
8058
8105
|
*/
|
|
8059
8106
|
stock_schema_fragment?: string;
|
|
8060
8107
|
/** Subtype corresponding to the custom type fragment. */
|
|
@@ -8100,7 +8147,7 @@ export type PartsCreateRequest = (PartsCreateRequestCapability | PartsCreateRequ
|
|
|
8100
8147
|
custom_fields?: object;
|
|
8101
8148
|
/**
|
|
8102
8149
|
* The custom schema fragments to use.
|
|
8103
|
-
* @example ["don:core
|
|
8150
|
+
* @example ["don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"]
|
|
8104
8151
|
*/
|
|
8105
8152
|
custom_schema_fragments?: string[];
|
|
8106
8153
|
/**
|
|
@@ -8249,7 +8296,7 @@ export type PartsUpdateRequest = (Empty | PartsUpdateRequestCapability | PartsUp
|
|
|
8249
8296
|
custom_fields?: object;
|
|
8250
8297
|
/**
|
|
8251
8298
|
* The custom schema fragments to use.
|
|
8252
|
-
* @example ["don:core
|
|
8299
|
+
* @example ["don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"]
|
|
8253
8300
|
*/
|
|
8254
8301
|
custom_schema_fragments?: string[];
|
|
8255
8302
|
/**
|
|
@@ -8339,6 +8386,19 @@ export interface PreferencesGetResponse {
|
|
|
8339
8386
|
export declare enum PreferencesType {
|
|
8340
8387
|
UserPreferences = "user_preferences"
|
|
8341
8388
|
}
|
|
8389
|
+
/** preferences-update-request */
|
|
8390
|
+
export type PreferencesUpdateRequest = UpdateUserPreferences & {
|
|
8391
|
+
type: PreferencesType;
|
|
8392
|
+
/**
|
|
8393
|
+
* The ID of the object for which the preferences are to be updated.
|
|
8394
|
+
* @example "DEV-AbCdEfGh"
|
|
8395
|
+
*/
|
|
8396
|
+
object: string;
|
|
8397
|
+
};
|
|
8398
|
+
/** preferences-update-response */
|
|
8399
|
+
export interface PreferencesUpdateResponse {
|
|
8400
|
+
preferences: Preferences;
|
|
8401
|
+
}
|
|
8342
8402
|
/** product */
|
|
8343
8403
|
export type Product = PartBase;
|
|
8344
8404
|
/** product-summary */
|
|
@@ -8625,6 +8685,59 @@ export interface QuestionAnswersUpdateRequestTags {
|
|
|
8625
8685
|
export interface QuestionAnswersUpdateResponse {
|
|
8626
8686
|
question_answer: QuestionAnswer;
|
|
8627
8687
|
}
|
|
8688
|
+
/** reactions-list-request */
|
|
8689
|
+
export interface ReactionsListRequest {
|
|
8690
|
+
/**
|
|
8691
|
+
* The cursor to resume iteration from, otherwise if not provided,
|
|
8692
|
+
* then iteration starts from the beginning.
|
|
8693
|
+
*/
|
|
8694
|
+
cursor?: string;
|
|
8695
|
+
/**
|
|
8696
|
+
* The emoji to list the reactors for. This can be the short name of
|
|
8697
|
+
* the emoji (e.g. "joy"), or the code point (e.g. "1f602").
|
|
8698
|
+
*/
|
|
8699
|
+
emoji: string;
|
|
8700
|
+
/**
|
|
8701
|
+
* The maximum number of reactors to return.
|
|
8702
|
+
* @format int32
|
|
8703
|
+
*/
|
|
8704
|
+
limit?: number;
|
|
8705
|
+
/**
|
|
8706
|
+
* The ID of the object to list reactors for.
|
|
8707
|
+
* @example "don:core:dvrv-us-1:devo/example:ticket/123:comment/comment-id"
|
|
8708
|
+
*/
|
|
8709
|
+
object: string;
|
|
8710
|
+
}
|
|
8711
|
+
/** reactions-list-response */
|
|
8712
|
+
export interface ReactionsListResponse {
|
|
8713
|
+
/**
|
|
8714
|
+
* The cursor that should be used to iterate the next sequence of
|
|
8715
|
+
* results, otherwise if not set, then no elements exist after.
|
|
8716
|
+
*/
|
|
8717
|
+
next_cursor?: string;
|
|
8718
|
+
/** The users that have reacted. */
|
|
8719
|
+
reactors: UserSummary[];
|
|
8720
|
+
}
|
|
8721
|
+
/** reactions-update-request */
|
|
8722
|
+
export interface ReactionsUpdateRequest {
|
|
8723
|
+
action: ReactionsUpdateRequestAction;
|
|
8724
|
+
/**
|
|
8725
|
+
* The emoji for the reaction. This can be the short name of the emoji
|
|
8726
|
+
* (e.g. "joy"), or the code point (e.g. "1f602").
|
|
8727
|
+
*/
|
|
8728
|
+
emoji: string;
|
|
8729
|
+
/**
|
|
8730
|
+
* The object to update the reaction for.
|
|
8731
|
+
* @example "don:core:dvrv-us-1:devo/example:ticket/123:comment/comment-id"
|
|
8732
|
+
*/
|
|
8733
|
+
object: string;
|
|
8734
|
+
}
|
|
8735
|
+
export declare enum ReactionsUpdateRequestAction {
|
|
8736
|
+
Add = "add",
|
|
8737
|
+
Remove = "remove"
|
|
8738
|
+
}
|
|
8739
|
+
/** reactions-update-response */
|
|
8740
|
+
export type ReactionsUpdateResponse = object;
|
|
8628
8741
|
/** remove-tag-with-value */
|
|
8629
8742
|
export interface RemoveTagWithValue {
|
|
8630
8743
|
/**
|
|
@@ -8667,7 +8780,7 @@ export type RevOrg = OrgBase & {
|
|
|
8667
8780
|
custom_fields?: object;
|
|
8668
8781
|
/**
|
|
8669
8782
|
* Custom schema fragments.
|
|
8670
|
-
* @example ["don:core
|
|
8783
|
+
* @example ["don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"]
|
|
8671
8784
|
*/
|
|
8672
8785
|
custom_schema_fragments?: string[];
|
|
8673
8786
|
/** Description of the Rev organization. */
|
|
@@ -8683,7 +8796,7 @@ export type RevOrg = OrgBase & {
|
|
|
8683
8796
|
external_ref?: string;
|
|
8684
8797
|
/**
|
|
8685
8798
|
* Stock schema fragment.
|
|
8686
|
-
* @example "don:core
|
|
8799
|
+
* @example "don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"
|
|
8687
8800
|
*/
|
|
8688
8801
|
stock_schema_fragment?: string;
|
|
8689
8802
|
/** Subtype corresponding to the custom type fragment. */
|
|
@@ -8713,7 +8826,7 @@ export interface RevOrgsCreateRequest {
|
|
|
8713
8826
|
custom_fields?: object;
|
|
8714
8827
|
/**
|
|
8715
8828
|
* Schema fragment IDs associated with this Rev organization.
|
|
8716
|
-
* @example ["don:core
|
|
8829
|
+
* @example ["don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"]
|
|
8717
8830
|
*/
|
|
8718
8831
|
custom_schema_fragments?: string[];
|
|
8719
8832
|
/** Description of the Rev organization. */
|
|
@@ -8868,7 +8981,7 @@ export interface RevOrgsUpdateRequest {
|
|
|
8868
8981
|
artifacts?: RevOrgsUpdateRequestArtifacts;
|
|
8869
8982
|
/**
|
|
8870
8983
|
* Schema fragment IDs associated with this Rev organization.
|
|
8871
|
-
* @example ["don:core
|
|
8984
|
+
* @example ["don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"]
|
|
8872
8985
|
*/
|
|
8873
8986
|
custom_schema_fragments?: string[];
|
|
8874
8987
|
/** Description of the Rev organization. */
|
|
@@ -8921,7 +9034,7 @@ export type RevUser = UserBase & {
|
|
|
8921
9034
|
custom_fields?: object;
|
|
8922
9035
|
/**
|
|
8923
9036
|
* Custom schema fragments.
|
|
8924
|
-
* @example ["don:core
|
|
9037
|
+
* @example ["don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"]
|
|
8925
9038
|
*/
|
|
8926
9039
|
custom_schema_fragments?: string[];
|
|
8927
9040
|
/** Description of the Rev user. */
|
|
@@ -8939,7 +9052,7 @@ export type RevUser = UserBase & {
|
|
|
8939
9052
|
rev_org?: OrgSummary;
|
|
8940
9053
|
/**
|
|
8941
9054
|
* Stock schema fragment.
|
|
8942
|
-
* @example "don:core
|
|
9055
|
+
* @example "don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"
|
|
8943
9056
|
*/
|
|
8944
9057
|
stock_schema_fragment?: string;
|
|
8945
9058
|
/** Subtype corresponding to the custom type fragment. */
|
|
@@ -8947,6 +9060,15 @@ export type RevUser = UserBase & {
|
|
|
8947
9060
|
/** Tags associated with the object. */
|
|
8948
9061
|
tags?: TagWithValue[];
|
|
8949
9062
|
};
|
|
9063
|
+
/**
|
|
9064
|
+
* rev-user-association
|
|
9065
|
+
* Association of Rev users with Rev orgs or accounts. A Rev user can be
|
|
9066
|
+
* associated with 0 or more accounts and Rev orgs. A Rev org association
|
|
9067
|
+
* automatically adds an account association.
|
|
9068
|
+
*/
|
|
9069
|
+
export interface RevUserAssociation {
|
|
9070
|
+
associated_to?: AssociatedToSummary;
|
|
9071
|
+
}
|
|
8950
9072
|
/** rev-user-summary */
|
|
8951
9073
|
export type RevUserSummary = UserBaseSummary & {
|
|
8952
9074
|
/**
|
|
@@ -8959,6 +9081,51 @@ export type RevUserSummary = UserBaseSummary & {
|
|
|
8959
9081
|
external_ref?: string;
|
|
8960
9082
|
rev_org?: OrgSummary;
|
|
8961
9083
|
};
|
|
9084
|
+
/**
|
|
9085
|
+
* rev-users-associations-list-request
|
|
9086
|
+
* Gets the list of Rev user associations.
|
|
9087
|
+
*/
|
|
9088
|
+
export interface RevUsersAssociationsListRequest {
|
|
9089
|
+
/**
|
|
9090
|
+
* The cursor to resume iteration from. If not provided, then
|
|
9091
|
+
* iteration starts from the beginning.
|
|
9092
|
+
*/
|
|
9093
|
+
cursor?: string;
|
|
9094
|
+
/**
|
|
9095
|
+
* The maximum number of Associations to return per page. The default
|
|
9096
|
+
* is '50'.
|
|
9097
|
+
* @format int32
|
|
9098
|
+
*/
|
|
9099
|
+
limit?: number;
|
|
9100
|
+
/**
|
|
9101
|
+
* The iteration mode to use. If "after", then entries after the provided
|
|
9102
|
+
* cursor will be returned, or if no cursor is provided, then from the
|
|
9103
|
+
* beginning. If "before", then entries before the provided cursor will be
|
|
9104
|
+
* returned, or if no cursor is provided, then from the end. Entries will
|
|
9105
|
+
* always be returned in the specified sort-by order.
|
|
9106
|
+
*/
|
|
9107
|
+
mode?: ListMode;
|
|
9108
|
+
/** The ID of Rev user to list all associations of. */
|
|
9109
|
+
rev_user_id: string;
|
|
9110
|
+
}
|
|
9111
|
+
/**
|
|
9112
|
+
* rev-users-associations-list-response
|
|
9113
|
+
* The response to listing all the associations of a Rev user.
|
|
9114
|
+
*/
|
|
9115
|
+
export interface RevUsersAssociationsListResponse {
|
|
9116
|
+
/** The associations of a Rev user. */
|
|
9117
|
+
associations: RevUserAssociation[];
|
|
9118
|
+
/**
|
|
9119
|
+
* The cursor used to iterate subsequent results in accordance to the
|
|
9120
|
+
* sort order. If not set, then no later elements exist.
|
|
9121
|
+
*/
|
|
9122
|
+
next_cursor?: string;
|
|
9123
|
+
/**
|
|
9124
|
+
* The cursor used to iterate preceding results in accordance to the
|
|
9125
|
+
* sort order. If not set, then no prior elements exist.
|
|
9126
|
+
*/
|
|
9127
|
+
prev_cursor?: string;
|
|
9128
|
+
}
|
|
8962
9129
|
/**
|
|
8963
9130
|
* rev-users-create-request
|
|
8964
9131
|
* Request object to create a new Rev user for a Rev organization.
|
|
@@ -8979,7 +9146,7 @@ export interface RevUsersCreateRequest {
|
|
|
8979
9146
|
/**
|
|
8980
9147
|
* The schema fragment IDs associated with the Rev user.
|
|
8981
9148
|
* @deprecated
|
|
8982
|
-
* @example ["don:core
|
|
9149
|
+
* @example ["don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"]
|
|
8983
9150
|
*/
|
|
8984
9151
|
custom_schema_fragments?: string[];
|
|
8985
9152
|
/**
|
|
@@ -9056,6 +9223,11 @@ export interface RevUsersGetResponse {
|
|
|
9056
9223
|
* Organization which the user is also authorized to access.
|
|
9057
9224
|
*/
|
|
9058
9225
|
export interface RevUsersListRequest {
|
|
9226
|
+
/**
|
|
9227
|
+
* Filters for Rev users with specified associations
|
|
9228
|
+
* (account/workspace).
|
|
9229
|
+
*/
|
|
9230
|
+
associations?: string[];
|
|
9059
9231
|
/** Filters for Rev users that were created by the specified user(s). */
|
|
9060
9232
|
created_by?: string[];
|
|
9061
9233
|
created_date?: DateTimeFilter;
|
|
@@ -9140,6 +9312,11 @@ export type RevUsersMergeResponse = object;
|
|
|
9140
9312
|
* Scans the list of Rev users.
|
|
9141
9313
|
*/
|
|
9142
9314
|
export interface RevUsersScanRequest {
|
|
9315
|
+
/**
|
|
9316
|
+
* Filters for Rev users with specified associations
|
|
9317
|
+
* (account/workspace).
|
|
9318
|
+
*/
|
|
9319
|
+
associations?: string[];
|
|
9143
9320
|
/** Filters for Rev users that were created by the specified user(s). */
|
|
9144
9321
|
created_by?: string[];
|
|
9145
9322
|
created_date?: DateTimeFilter;
|
|
@@ -9224,7 +9401,7 @@ export interface RevUsersUpdateRequestArtifacts {
|
|
|
9224
9401
|
export interface RevUsersUpdateRequestCustomSchemaFragments {
|
|
9225
9402
|
/**
|
|
9226
9403
|
* Sets the IDs to the provided schema fragment IDs.
|
|
9227
|
-
* @example ["don:core
|
|
9404
|
+
* @example ["don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"]
|
|
9228
9405
|
*/
|
|
9229
9406
|
set?: string[];
|
|
9230
9407
|
}
|
|
@@ -10211,6 +10388,11 @@ export interface SharedWithMembershipFilter {
|
|
|
10211
10388
|
}
|
|
10212
10389
|
/** sla */
|
|
10213
10390
|
export type Sla = AtomBase & {
|
|
10391
|
+
/**
|
|
10392
|
+
* A set of account attributes that must be satisfied for the SLA to
|
|
10393
|
+
* apply. AND applies between each field.
|
|
10394
|
+
*/
|
|
10395
|
+
account_filter?: object;
|
|
10214
10396
|
/**
|
|
10215
10397
|
* Describes the compensation to be provided in case of SLA breach. It is
|
|
10216
10398
|
* not 'self-executing', it is the responsibility of the organization
|
|
@@ -10354,6 +10536,8 @@ export declare enum SlaSummaryStage {
|
|
|
10354
10536
|
export type SlaTracker = AtomBase & {
|
|
10355
10537
|
/** Details of the object on which the SLA is being tracked. */
|
|
10356
10538
|
applies_to_id?: string;
|
|
10539
|
+
/** The type of the object on which the SLA is being tracked. */
|
|
10540
|
+
applies_to_type?: SlaTrackerAppliesToType;
|
|
10357
10541
|
/** Summary of the metrics target being tracked in the SLA tracker. */
|
|
10358
10542
|
metric_target_summaries: ArchetypeMetricTarget[];
|
|
10359
10543
|
/** User, timestamp and metric Id of removed metrics. */
|
|
@@ -10373,8 +10557,17 @@ export type SlaTracker = AtomBase & {
|
|
|
10373
10557
|
*/
|
|
10374
10558
|
status?: string;
|
|
10375
10559
|
};
|
|
10560
|
+
/** The type of the object on which the SLA is being tracked. */
|
|
10561
|
+
export declare enum SlaTrackerAppliesToType {
|
|
10562
|
+
Conversation = "conversation",
|
|
10563
|
+
Issue = "issue",
|
|
10564
|
+
Ticket = "ticket"
|
|
10565
|
+
}
|
|
10376
10566
|
/** sla-tracker-summary */
|
|
10377
|
-
export type SlaTrackerSummary = AtomBaseSummary
|
|
10567
|
+
export type SlaTrackerSummary = AtomBaseSummary & {
|
|
10568
|
+
/** The type of the object on which the SLA is being tracked. */
|
|
10569
|
+
applies_to_type?: SlaTrackerAppliesToType;
|
|
10570
|
+
};
|
|
10378
10571
|
/** sla-trackers-get-request */
|
|
10379
10572
|
export interface SlaTrackersGetRequest {
|
|
10380
10573
|
/** The ID of the SLA tracker to get. */
|
|
@@ -11881,14 +12074,14 @@ export interface TimelineEntriesCreateRequestTimelineComment {
|
|
|
11881
12074
|
external_ref?: string;
|
|
11882
12075
|
/**
|
|
11883
12076
|
* The IDs of the previews of the links posted in the comment.
|
|
11884
|
-
* @example ["don:core
|
|
12077
|
+
* @example ["don:core:dvrv-us-1:devo/example:snap_widget/snap-widget-id"]
|
|
11885
12078
|
*/
|
|
11886
12079
|
link_previews?: string[];
|
|
11887
12080
|
/** Snap Kit Body of the comment. */
|
|
11888
12081
|
snap_kit_body?: TimelineSnapKitBody;
|
|
11889
12082
|
/**
|
|
11890
12083
|
* The snap widget body of the comment.
|
|
11891
|
-
* @example ["don:core
|
|
12084
|
+
* @example ["don:core:dvrv-us-1:devo/example:snap_widget/snap-widget-id"]
|
|
11892
12085
|
*/
|
|
11893
12086
|
snap_widget_body?: string[];
|
|
11894
12087
|
}
|
|
@@ -11909,7 +12102,7 @@ export interface TimelineEntriesCreateResponse {
|
|
|
11909
12102
|
export interface TimelineEntriesDeleteRequest {
|
|
11910
12103
|
/**
|
|
11911
12104
|
* The ID of the timeline entry to delete.
|
|
11912
|
-
* @example "don:core
|
|
12105
|
+
* @example "don:core:dvrv-us-1:devo/example:ticket/123:comment/comment-id"
|
|
11913
12106
|
*/
|
|
11914
12107
|
id: string;
|
|
11915
12108
|
}
|
|
@@ -11932,7 +12125,7 @@ export interface TimelineEntriesGetRequest {
|
|
|
11932
12125
|
external_ref?: string;
|
|
11933
12126
|
/**
|
|
11934
12127
|
* The ID of the timeline entry to get.
|
|
11935
|
-
* @example "don:core
|
|
12128
|
+
* @example "don:core:dvrv-us-1:devo/example:ticket/123:comment/comment-id"
|
|
11936
12129
|
*/
|
|
11937
12130
|
id: string;
|
|
11938
12131
|
}
|
|
@@ -12018,7 +12211,7 @@ export type TimelineEntriesUpdateRequest = TimelineEntriesUpdateRequestTimelineC
|
|
|
12018
12211
|
type: TimelineEntriesUpdateRequestType;
|
|
12019
12212
|
/**
|
|
12020
12213
|
* The ID of the timeline entry to update.
|
|
12021
|
-
* @example "don:core
|
|
12214
|
+
* @example "don:core:dvrv-us-1:devo/example:ticket/123:comment/comment-id"
|
|
12022
12215
|
*/
|
|
12023
12216
|
id: string;
|
|
12024
12217
|
};
|
|
@@ -12071,19 +12264,19 @@ export interface TimelineEntriesUpdateRequestTimelineCommentLinkPreviews {
|
|
|
12071
12264
|
* Adds the provided link previews to the comment. A link preview
|
|
12072
12265
|
* cannot be added more than once, i.e. nothing is done if the link
|
|
12073
12266
|
* preview is already present. Mutually exclusive with `set`.
|
|
12074
|
-
* @example ["don:core
|
|
12267
|
+
* @example ["don:core:dvrv-us-1:devo/example:snap_widget/snap-widget-id"]
|
|
12075
12268
|
*/
|
|
12076
12269
|
add?: string[];
|
|
12077
12270
|
/**
|
|
12078
12271
|
* Removes the provided link previews from the comment. If a link
|
|
12079
12272
|
* preview is not present, then it's ignored. Mutually exclusive with
|
|
12080
12273
|
* `set`.
|
|
12081
|
-
* @example ["don:core
|
|
12274
|
+
* @example ["don:core:dvrv-us-1:devo/example:snap_widget/snap-widget-id"]
|
|
12082
12275
|
*/
|
|
12083
12276
|
remove?: string[];
|
|
12084
12277
|
/**
|
|
12085
12278
|
* Set the link previews to the provided IDs.
|
|
12086
|
-
* @example ["don:core
|
|
12279
|
+
* @example ["don:core:dvrv-us-1:devo/example:snap_widget/snap-widget-id"]
|
|
12087
12280
|
*/
|
|
12088
12281
|
set?: string[];
|
|
12089
12282
|
}
|
|
@@ -12587,6 +12780,14 @@ export interface UomsUpdateRequestDimensions {
|
|
|
12587
12780
|
export interface UomsUpdateResponse {
|
|
12588
12781
|
uom: Uom;
|
|
12589
12782
|
}
|
|
12783
|
+
/**
|
|
12784
|
+
* update-availability-preferences-group
|
|
12785
|
+
* Update object for AvailabilityPreferencesGroup.
|
|
12786
|
+
*/
|
|
12787
|
+
export interface UpdateAvailabilityPreferencesGroup {
|
|
12788
|
+
/** Manually set presence to away */
|
|
12789
|
+
manual_away?: boolean;
|
|
12790
|
+
}
|
|
12590
12791
|
/** update-command-action */
|
|
12591
12792
|
export interface UpdateCommandAction {
|
|
12592
12793
|
action_details?: UpdateCommandActionDetails;
|
|
@@ -12628,6 +12829,16 @@ export interface UpdateCommandSurface {
|
|
|
12628
12829
|
/** Surfaces from where this command can be invoked. */
|
|
12629
12830
|
surface?: CommandSurfaceSurface;
|
|
12630
12831
|
}
|
|
12832
|
+
/**
|
|
12833
|
+
* update-general-preferences-group
|
|
12834
|
+
* Update object for GeneralPreferencesGroup.
|
|
12835
|
+
*/
|
|
12836
|
+
export interface UpdateGeneralPreferencesGroup {
|
|
12837
|
+
/** Update object for AvailabilityPreferencesGroup. */
|
|
12838
|
+
availability?: UpdateAvailabilityPreferencesGroup;
|
|
12839
|
+
/** Preferred locale of the user */
|
|
12840
|
+
preferred_locale?: string;
|
|
12841
|
+
}
|
|
12631
12842
|
/** update-impacted-customer-details */
|
|
12632
12843
|
export interface UpdateImpactedCustomerDetails {
|
|
12633
12844
|
/**
|
|
@@ -12730,6 +12941,14 @@ export interface UpdateTagWithValue {
|
|
|
12730
12941
|
/** Value associated with the tag for the object. */
|
|
12731
12942
|
value?: string;
|
|
12732
12943
|
}
|
|
12944
|
+
/**
|
|
12945
|
+
* update-user-preferences
|
|
12946
|
+
* Update object for UserPreferences.
|
|
12947
|
+
*/
|
|
12948
|
+
export interface UpdateUserPreferences {
|
|
12949
|
+
/** Update object for GeneralPreferencesGroup. */
|
|
12950
|
+
general_preferences?: UpdateGeneralPreferencesGroup;
|
|
12951
|
+
}
|
|
12733
12952
|
/** user-base */
|
|
12734
12953
|
export type UserBase = AtomBase & {
|
|
12735
12954
|
/** The user's display name. The name is non-unique and mutable. */
|
|
@@ -12944,7 +13163,7 @@ export interface WebhookEventRequest {
|
|
|
12944
13163
|
webhook_deleted?: EventWebhookDeleted;
|
|
12945
13164
|
/**
|
|
12946
13165
|
* ID of the webhook for the event.
|
|
12947
|
-
* @example "don:integration
|
|
13166
|
+
* @example "don:integration:dvrv-us-1:devo/example:webhook/webhook-id"
|
|
12948
13167
|
*/
|
|
12949
13168
|
webhook_id: string;
|
|
12950
13169
|
webhook_updated?: EventWebhookUpdated;
|
|
@@ -13087,7 +13306,7 @@ export interface WebhooksCreateResponse {
|
|
|
13087
13306
|
export interface WebhooksDeleteRequest {
|
|
13088
13307
|
/**
|
|
13089
13308
|
* ID for the webhook.
|
|
13090
|
-
* @example "don:integration
|
|
13309
|
+
* @example "don:integration:dvrv-us-1:devo/example:webhook/webhook-id"
|
|
13091
13310
|
*/
|
|
13092
13311
|
id: string;
|
|
13093
13312
|
}
|
|
@@ -13103,7 +13322,7 @@ export type WebhooksDeleteResponse = object;
|
|
|
13103
13322
|
export interface WebhooksFetchRequest {
|
|
13104
13323
|
/**
|
|
13105
13324
|
* The ID of the webhook to fetch the object for.
|
|
13106
|
-
* @example "don:integration
|
|
13325
|
+
* @example "don:integration:dvrv-us-1:devo/example:webhook/webhook-id"
|
|
13107
13326
|
*/
|
|
13108
13327
|
id: string;
|
|
13109
13328
|
/**
|
|
@@ -13124,7 +13343,7 @@ export type WebhooksFetchResponse = object;
|
|
|
13124
13343
|
export interface WebhooksGetRequest {
|
|
13125
13344
|
/**
|
|
13126
13345
|
* ID for the webhook.
|
|
13127
|
-
* @example "don:integration
|
|
13346
|
+
* @example "don:integration:dvrv-us-1:devo/example:webhook/webhook-id"
|
|
13128
13347
|
*/
|
|
13129
13348
|
id: string;
|
|
13130
13349
|
}
|
|
@@ -13164,7 +13383,7 @@ export interface WebhooksUpdateRequest {
|
|
|
13164
13383
|
headers?: WebhooksUpdateRequestHeaders;
|
|
13165
13384
|
/**
|
|
13166
13385
|
* ID for the webhook.
|
|
13167
|
-
* @example "don:integration
|
|
13386
|
+
* @example "don:integration:dvrv-us-1:devo/example:webhook/webhook-id"
|
|
13168
13387
|
*/
|
|
13169
13388
|
id: string;
|
|
13170
13389
|
/**
|
|
@@ -13258,7 +13477,7 @@ export type WorkBase = AtomBase & {
|
|
|
13258
13477
|
custom_fields?: object;
|
|
13259
13478
|
/**
|
|
13260
13479
|
* Custom schema fragments.
|
|
13261
|
-
* @example ["don:core
|
|
13480
|
+
* @example ["don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"]
|
|
13262
13481
|
*/
|
|
13263
13482
|
custom_schema_fragments?: string[];
|
|
13264
13483
|
/** The users that own the work. */
|
|
@@ -13269,7 +13488,7 @@ export type WorkBase = AtomBase & {
|
|
|
13269
13488
|
stage?: LegacyStage;
|
|
13270
13489
|
/**
|
|
13271
13490
|
* Stock schema fragment.
|
|
13272
|
-
* @example "don:core
|
|
13491
|
+
* @example "don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"
|
|
13273
13492
|
*/
|
|
13274
13493
|
stock_schema_fragment?: string;
|
|
13275
13494
|
/** Subtype corresponding to the custom type fragment. */
|
|
@@ -13340,7 +13559,7 @@ export type WorksCreateRequest = (WorksCreateRequestIssue | WorksCreateRequestOp
|
|
|
13340
13559
|
custom_fields?: object;
|
|
13341
13560
|
/**
|
|
13342
13561
|
* The custom schema fragments to use.
|
|
13343
|
-
* @example ["don:core
|
|
13562
|
+
* @example ["don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"]
|
|
13344
13563
|
*/
|
|
13345
13564
|
custom_schema_fragments?: string[];
|
|
13346
13565
|
/**
|
|
@@ -13530,6 +13749,8 @@ export interface WorksExportRequest {
|
|
|
13530
13749
|
/** The filter for stages. */
|
|
13531
13750
|
stage?: StageFilter;
|
|
13532
13751
|
staged_info?: StagedInfoFilter;
|
|
13752
|
+
/** Filters for work with any of the provided states. */
|
|
13753
|
+
state?: string[];
|
|
13533
13754
|
sync_metadata?: SyncMetadataFilter;
|
|
13534
13755
|
/**
|
|
13535
13756
|
* Filters for work with any of the provided tags.
|
|
@@ -13686,6 +13907,8 @@ export interface WorksListRequest {
|
|
|
13686
13907
|
/** The filter for stages. */
|
|
13687
13908
|
stage?: StageFilter;
|
|
13688
13909
|
staged_info?: StagedInfoFilter;
|
|
13910
|
+
/** Filters for work with any of the provided states. */
|
|
13911
|
+
state?: string[];
|
|
13689
13912
|
sync_metadata?: SyncMetadataFilter;
|
|
13690
13913
|
/**
|
|
13691
13914
|
* Filters for work with any of the provided tags.
|
|
@@ -13726,7 +13949,7 @@ export type WorksUpdateRequest = (Empty | WorksUpdateRequestIssue | WorksUpdateR
|
|
|
13726
13949
|
custom_fields?: object;
|
|
13727
13950
|
/**
|
|
13728
13951
|
* The custom schema fragments to use.
|
|
13729
|
-
* @example ["don:core
|
|
13952
|
+
* @example ["don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"]
|
|
13730
13953
|
*/
|
|
13731
13954
|
custom_schema_fragments?: string[];
|
|
13732
13955
|
/**
|
|
@@ -14002,6 +14225,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14002
14225
|
*
|
|
14003
14226
|
* @tags accounts
|
|
14004
14227
|
* @name AccountsCreate
|
|
14228
|
+
* @summary Create Account
|
|
14005
14229
|
* @request POST:/accounts.create
|
|
14006
14230
|
* @secure
|
|
14007
14231
|
*/
|
|
@@ -14011,6 +14235,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14011
14235
|
*
|
|
14012
14236
|
* @tags accounts
|
|
14013
14237
|
* @name AccountsDelete
|
|
14238
|
+
* @summary Delete Account
|
|
14014
14239
|
* @request POST:/accounts.delete
|
|
14015
14240
|
* @secure
|
|
14016
14241
|
*/
|
|
@@ -14020,6 +14245,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14020
14245
|
*
|
|
14021
14246
|
* @tags accounts
|
|
14022
14247
|
* @name AccountsExport
|
|
14248
|
+
* @summary Export Accounts
|
|
14023
14249
|
* @request GET:/accounts.export
|
|
14024
14250
|
* @secure
|
|
14025
14251
|
*/
|
|
@@ -14083,6 +14309,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14083
14309
|
*
|
|
14084
14310
|
* @tags accounts
|
|
14085
14311
|
* @name AccountsExportPost
|
|
14312
|
+
* @summary Export Accounts (POST)
|
|
14086
14313
|
* @request POST:/accounts.export
|
|
14087
14314
|
* @secure
|
|
14088
14315
|
*/
|
|
@@ -14092,6 +14319,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14092
14319
|
*
|
|
14093
14320
|
* @tags accounts
|
|
14094
14321
|
* @name AccountsGet
|
|
14322
|
+
* @summary Get Account
|
|
14095
14323
|
* @request GET:/accounts.get
|
|
14096
14324
|
* @secure
|
|
14097
14325
|
*/
|
|
@@ -14107,6 +14335,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14107
14335
|
*
|
|
14108
14336
|
* @tags accounts
|
|
14109
14337
|
* @name AccountsGetPost
|
|
14338
|
+
* @summary Get Account (POST)
|
|
14110
14339
|
* @request POST:/accounts.get
|
|
14111
14340
|
* @secure
|
|
14112
14341
|
*/
|
|
@@ -14116,6 +14345,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14116
14345
|
*
|
|
14117
14346
|
* @tags accounts
|
|
14118
14347
|
* @name AccountsList
|
|
14348
|
+
* @summary List Accounts
|
|
14119
14349
|
* @request GET:/accounts.list
|
|
14120
14350
|
* @secure
|
|
14121
14351
|
*/
|
|
@@ -14188,6 +14418,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14188
14418
|
*
|
|
14189
14419
|
* @tags accounts
|
|
14190
14420
|
* @name AccountsListPost
|
|
14421
|
+
* @summary List Accounts (POST)
|
|
14191
14422
|
* @request POST:/accounts.list
|
|
14192
14423
|
* @secure
|
|
14193
14424
|
*/
|
|
@@ -14197,6 +14428,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14197
14428
|
*
|
|
14198
14429
|
* @tags accounts
|
|
14199
14430
|
* @name AccountsMerge
|
|
14431
|
+
* @summary Merge Accounts
|
|
14200
14432
|
* @request POST:/accounts.merge
|
|
14201
14433
|
* @secure
|
|
14202
14434
|
*/
|
|
@@ -14206,6 +14438,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14206
14438
|
*
|
|
14207
14439
|
* @tags accounts
|
|
14208
14440
|
* @name AccountsUpdate
|
|
14441
|
+
* @summary Update Account
|
|
14209
14442
|
* @request POST:/accounts.update
|
|
14210
14443
|
* @secure
|
|
14211
14444
|
*/
|
|
@@ -14215,6 +14448,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14215
14448
|
*
|
|
14216
14449
|
* @tags airdrop
|
|
14217
14450
|
* @name AirdropSyncUnitsGet
|
|
14451
|
+
* @summary Get Airdrop Sync Unit
|
|
14218
14452
|
* @request GET:/airdrop.sync-units.get
|
|
14219
14453
|
* @secure
|
|
14220
14454
|
*/
|
|
@@ -14227,6 +14461,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14227
14461
|
*
|
|
14228
14462
|
* @tags airdrop
|
|
14229
14463
|
* @name AirdropSyncUnitsGetPost
|
|
14464
|
+
* @summary Get Airdrop Sync Unit (POST)
|
|
14230
14465
|
* @request POST:/airdrop.sync-units.get
|
|
14231
14466
|
* @secure
|
|
14232
14467
|
*/
|
|
@@ -14236,6 +14471,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14236
14471
|
*
|
|
14237
14472
|
* @tags airdrop
|
|
14238
14473
|
* @name AirdropSyncUnitsHistory
|
|
14474
|
+
* @summary History Airdrop Sync Units
|
|
14239
14475
|
* @request GET:/airdrop.sync-units.history
|
|
14240
14476
|
* @secure
|
|
14241
14477
|
*/
|
|
@@ -14271,6 +14507,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14271
14507
|
*
|
|
14272
14508
|
* @tags airdrop
|
|
14273
14509
|
* @name AirdropSyncUnitsHistoryPost
|
|
14510
|
+
* @summary History Airdrop Sync Units (POST)
|
|
14274
14511
|
* @request POST:/airdrop.sync-units.history
|
|
14275
14512
|
* @secure
|
|
14276
14513
|
*/
|
|
@@ -14280,6 +14517,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14280
14517
|
*
|
|
14281
14518
|
* @tags articles
|
|
14282
14519
|
* @name ArticlesCount
|
|
14520
|
+
* @summary Count Articles
|
|
14283
14521
|
* @request GET:/articles.count
|
|
14284
14522
|
* @secure
|
|
14285
14523
|
*/
|
|
@@ -14328,6 +14566,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14328
14566
|
*
|
|
14329
14567
|
* @tags articles
|
|
14330
14568
|
* @name ArticlesCountPost
|
|
14569
|
+
* @summary Count Articles (POST)
|
|
14331
14570
|
* @request POST:/articles.count
|
|
14332
14571
|
* @secure
|
|
14333
14572
|
*/
|
|
@@ -14337,6 +14576,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14337
14576
|
*
|
|
14338
14577
|
* @tags articles
|
|
14339
14578
|
* @name CreateArticle
|
|
14579
|
+
* @summary Create Article
|
|
14340
14580
|
* @request POST:/articles.create
|
|
14341
14581
|
* @secure
|
|
14342
14582
|
*/
|
|
@@ -14346,6 +14586,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14346
14586
|
*
|
|
14347
14587
|
* @tags articles
|
|
14348
14588
|
* @name DeleteArticle
|
|
14589
|
+
* @summary Delete Article
|
|
14349
14590
|
* @request POST:/articles.delete
|
|
14350
14591
|
* @secure
|
|
14351
14592
|
*/
|
|
@@ -14355,6 +14596,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14355
14596
|
*
|
|
14356
14597
|
* @tags articles
|
|
14357
14598
|
* @name GetArticle
|
|
14599
|
+
* @summary Get Article
|
|
14358
14600
|
* @request GET:/articles.get
|
|
14359
14601
|
* @secure
|
|
14360
14602
|
*/
|
|
@@ -14370,6 +14612,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14370
14612
|
*
|
|
14371
14613
|
* @tags articles
|
|
14372
14614
|
* @name GetArticlePost
|
|
14615
|
+
* @summary Get Article (POST)
|
|
14373
14616
|
* @request POST:/articles.get
|
|
14374
14617
|
* @secure
|
|
14375
14618
|
*/
|
|
@@ -14379,6 +14622,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14379
14622
|
*
|
|
14380
14623
|
* @tags articles
|
|
14381
14624
|
* @name ListArticles
|
|
14625
|
+
* @summary List Articles
|
|
14382
14626
|
* @request GET:/articles.list
|
|
14383
14627
|
* @secure
|
|
14384
14628
|
*/
|
|
@@ -14440,6 +14684,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14440
14684
|
*
|
|
14441
14685
|
* @tags articles
|
|
14442
14686
|
* @name ListArticlesPost
|
|
14687
|
+
* @summary List Articles (POST)
|
|
14443
14688
|
* @request POST:/articles.list
|
|
14444
14689
|
* @secure
|
|
14445
14690
|
*/
|
|
@@ -14449,6 +14694,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14449
14694
|
*
|
|
14450
14695
|
* @tags articles
|
|
14451
14696
|
* @name UpdateArticle
|
|
14697
|
+
* @summary Update Article
|
|
14452
14698
|
* @request POST:/articles.update
|
|
14453
14699
|
* @secure
|
|
14454
14700
|
*/
|
|
@@ -14458,6 +14704,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14458
14704
|
*
|
|
14459
14705
|
* @tags artifacts
|
|
14460
14706
|
* @name ArtifactsGet
|
|
14707
|
+
* @summary Get Artifact
|
|
14461
14708
|
* @request GET:/artifacts.get
|
|
14462
14709
|
* @secure
|
|
14463
14710
|
*/
|
|
@@ -14475,6 +14722,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14475
14722
|
*
|
|
14476
14723
|
* @tags artifacts
|
|
14477
14724
|
* @name ArtifactsGetPost
|
|
14725
|
+
* @summary Get Artifact (POST)
|
|
14478
14726
|
* @request POST:/artifacts.get
|
|
14479
14727
|
* @secure
|
|
14480
14728
|
*/
|
|
@@ -14484,6 +14732,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14484
14732
|
*
|
|
14485
14733
|
* @tags artifacts
|
|
14486
14734
|
* @name ArtifactsList
|
|
14735
|
+
* @summary List Artifacts
|
|
14487
14736
|
* @request GET:/artifacts.list
|
|
14488
14737
|
* @secure
|
|
14489
14738
|
*/
|
|
@@ -14496,6 +14745,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14496
14745
|
*
|
|
14497
14746
|
* @tags artifacts
|
|
14498
14747
|
* @name ArtifactsListPost
|
|
14748
|
+
* @summary List Artifacts (POST)
|
|
14499
14749
|
* @request POST:/artifacts.list
|
|
14500
14750
|
* @secure
|
|
14501
14751
|
*/
|
|
@@ -14505,6 +14755,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14505
14755
|
*
|
|
14506
14756
|
* @tags artifacts
|
|
14507
14757
|
* @name ArtifactsLocate
|
|
14758
|
+
* @summary Locate Artifacts
|
|
14508
14759
|
* @request GET:/artifacts.locate
|
|
14509
14760
|
* @secure
|
|
14510
14761
|
*/
|
|
@@ -14522,6 +14773,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14522
14773
|
*
|
|
14523
14774
|
* @tags artifacts
|
|
14524
14775
|
* @name ArtifactsLocatePost
|
|
14776
|
+
* @summary Locate Artifacts (POST)
|
|
14525
14777
|
* @request POST:/artifacts.locate
|
|
14526
14778
|
* @secure
|
|
14527
14779
|
*/
|
|
@@ -14531,6 +14783,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14531
14783
|
*
|
|
14532
14784
|
* @tags artifacts
|
|
14533
14785
|
* @name ArtifactsPrepare
|
|
14786
|
+
* @summary Prepare Artifacts
|
|
14534
14787
|
* @request POST:/artifacts.prepare
|
|
14535
14788
|
* @secure
|
|
14536
14789
|
*/
|
|
@@ -14540,6 +14793,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14540
14793
|
*
|
|
14541
14794
|
* @tags artifacts
|
|
14542
14795
|
* @name ArtifactsVersionsPrepare
|
|
14796
|
+
* @summary Prepare Artifacts Versions
|
|
14543
14797
|
* @request POST:/artifacts.versions.prepare
|
|
14544
14798
|
* @secure
|
|
14545
14799
|
*/
|
|
@@ -14549,6 +14803,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14549
14803
|
*
|
|
14550
14804
|
* @tags compliance
|
|
14551
14805
|
* @name ExportAuditLogs
|
|
14806
|
+
* @summary Fetch Audit Logs
|
|
14552
14807
|
* @request POST:/audit-logs.fetch
|
|
14553
14808
|
* @secure
|
|
14554
14809
|
*/
|
|
@@ -14558,6 +14813,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14558
14813
|
*
|
|
14559
14814
|
* @tags auth-tokens
|
|
14560
14815
|
* @name AuthTokensCreate
|
|
14816
|
+
* @summary Create Auth Token
|
|
14561
14817
|
* @request POST:/auth-tokens.create
|
|
14562
14818
|
* @secure
|
|
14563
14819
|
*/
|
|
@@ -14567,6 +14823,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14567
14823
|
*
|
|
14568
14824
|
* @tags auth-tokens
|
|
14569
14825
|
* @name AuthTokensDelete
|
|
14826
|
+
* @summary Delete Auth Token
|
|
14570
14827
|
* @request POST:/auth-tokens.delete
|
|
14571
14828
|
* @secure
|
|
14572
14829
|
*/
|
|
@@ -14576,6 +14833,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14576
14833
|
*
|
|
14577
14834
|
* @tags auth-tokens
|
|
14578
14835
|
* @name AuthTokensGet
|
|
14836
|
+
* @summary Get Auth Token
|
|
14579
14837
|
* @request GET:/auth-tokens.get
|
|
14580
14838
|
* @secure
|
|
14581
14839
|
*/
|
|
@@ -14588,6 +14846,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14588
14846
|
*
|
|
14589
14847
|
* @tags auth-tokens
|
|
14590
14848
|
* @name AuthTokensGetPost
|
|
14849
|
+
* @summary Get Auth Token (POST)
|
|
14591
14850
|
* @request POST:/auth-tokens.get
|
|
14592
14851
|
* @secure
|
|
14593
14852
|
*/
|
|
@@ -14597,6 +14856,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14597
14856
|
*
|
|
14598
14857
|
* @tags auth-tokens
|
|
14599
14858
|
* @name AuthTokensInfo
|
|
14859
|
+
* @summary Info Auth Tokens
|
|
14600
14860
|
* @request GET:/auth-tokens.info
|
|
14601
14861
|
* @secure
|
|
14602
14862
|
*/
|
|
@@ -14606,6 +14866,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14606
14866
|
*
|
|
14607
14867
|
* @tags auth-tokens
|
|
14608
14868
|
* @name AuthTokensInfoPost
|
|
14869
|
+
* @summary Info Auth Tokens (POST)
|
|
14609
14870
|
* @request POST:/auth-tokens.info
|
|
14610
14871
|
* @secure
|
|
14611
14872
|
*/
|
|
@@ -14615,6 +14876,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14615
14876
|
*
|
|
14616
14877
|
* @tags auth-tokens
|
|
14617
14878
|
* @name AuthTokensList
|
|
14879
|
+
* @summary List Auth Tokens
|
|
14618
14880
|
* @request GET:/auth-tokens.list
|
|
14619
14881
|
* @secure
|
|
14620
14882
|
*/
|
|
@@ -14641,6 +14903,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14641
14903
|
*
|
|
14642
14904
|
* @tags auth-tokens
|
|
14643
14905
|
* @name AuthTokensListPost
|
|
14906
|
+
* @summary List Auth Tokens (POST)
|
|
14644
14907
|
* @request POST:/auth-tokens.list
|
|
14645
14908
|
* @secure
|
|
14646
14909
|
*/
|
|
@@ -14650,6 +14913,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14650
14913
|
*
|
|
14651
14914
|
* @tags auth-tokens
|
|
14652
14915
|
* @name AuthTokensSelfDelete
|
|
14916
|
+
* @summary Delete Auth Tokens Self
|
|
14653
14917
|
* @request POST:/auth-tokens.self.delete
|
|
14654
14918
|
* @secure
|
|
14655
14919
|
*/
|
|
@@ -14659,6 +14923,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14659
14923
|
*
|
|
14660
14924
|
* @tags auth-tokens
|
|
14661
14925
|
* @name AuthTokensUpdate
|
|
14926
|
+
* @summary Update Auth Token
|
|
14662
14927
|
* @request POST:/auth-tokens.update
|
|
14663
14928
|
* @secure
|
|
14664
14929
|
*/
|
|
@@ -14668,6 +14933,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14668
14933
|
*
|
|
14669
14934
|
* @tags code-changes
|
|
14670
14935
|
* @name CodeChangesCreate
|
|
14936
|
+
* @summary Create Code Change
|
|
14671
14937
|
* @request POST:/code-changes.create
|
|
14672
14938
|
* @secure
|
|
14673
14939
|
*/
|
|
@@ -14677,6 +14943,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14677
14943
|
*
|
|
14678
14944
|
* @tags code-changes
|
|
14679
14945
|
* @name CodeChangesDelete
|
|
14946
|
+
* @summary Delete Code Change
|
|
14680
14947
|
* @request POST:/code-changes.delete
|
|
14681
14948
|
* @secure
|
|
14682
14949
|
*/
|
|
@@ -14686,6 +14953,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14686
14953
|
*
|
|
14687
14954
|
* @tags code-changes
|
|
14688
14955
|
* @name CodeChangesGet
|
|
14956
|
+
* @summary Get Code Change
|
|
14689
14957
|
* @request GET:/code-changes.get
|
|
14690
14958
|
* @secure
|
|
14691
14959
|
*/
|
|
@@ -14698,6 +14966,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14698
14966
|
*
|
|
14699
14967
|
* @tags code-changes
|
|
14700
14968
|
* @name CodeChangesGetPost
|
|
14969
|
+
* @summary Get Code Change (POST)
|
|
14701
14970
|
* @request POST:/code-changes.get
|
|
14702
14971
|
* @secure
|
|
14703
14972
|
*/
|
|
@@ -14707,6 +14976,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14707
14976
|
*
|
|
14708
14977
|
* @tags code-changes
|
|
14709
14978
|
* @name CodeChangesList
|
|
14979
|
+
* @summary List Code Changes
|
|
14710
14980
|
* @request GET:/code-changes.list
|
|
14711
14981
|
* @secure
|
|
14712
14982
|
*/
|
|
@@ -14733,6 +15003,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14733
15003
|
*
|
|
14734
15004
|
* @tags code-changes
|
|
14735
15005
|
* @name CodeChangesListPost
|
|
15006
|
+
* @summary List Code Changes (POST)
|
|
14736
15007
|
* @request POST:/code-changes.list
|
|
14737
15008
|
* @secure
|
|
14738
15009
|
*/
|
|
@@ -14742,6 +15013,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14742
15013
|
*
|
|
14743
15014
|
* @tags code-changes
|
|
14744
15015
|
* @name CodeChangesUpdate
|
|
15016
|
+
* @summary Update Code Change
|
|
14745
15017
|
* @request POST:/code-changes.update
|
|
14746
15018
|
* @secure
|
|
14747
15019
|
*/
|
|
@@ -14751,6 +15023,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14751
15023
|
*
|
|
14752
15024
|
* @tags command
|
|
14753
15025
|
* @name CommandsCreate
|
|
15026
|
+
* @summary Create Command
|
|
14754
15027
|
* @request POST:/commands.create
|
|
14755
15028
|
* @secure
|
|
14756
15029
|
*/
|
|
@@ -14760,6 +15033,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14760
15033
|
*
|
|
14761
15034
|
* @tags command
|
|
14762
15035
|
* @name CommandsGet
|
|
15036
|
+
* @summary Get Command
|
|
14763
15037
|
* @request GET:/commands.get
|
|
14764
15038
|
* @secure
|
|
14765
15039
|
*/
|
|
@@ -14772,6 +15046,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14772
15046
|
*
|
|
14773
15047
|
* @tags command
|
|
14774
15048
|
* @name CommandsGetPost
|
|
15049
|
+
* @summary Get Command (POST)
|
|
14775
15050
|
* @request POST:/commands.get
|
|
14776
15051
|
* @secure
|
|
14777
15052
|
*/
|
|
@@ -14781,6 +15056,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14781
15056
|
*
|
|
14782
15057
|
* @tags command
|
|
14783
15058
|
* @name CommandsList
|
|
15059
|
+
* @summary List Commands
|
|
14784
15060
|
* @request GET:/commands.list
|
|
14785
15061
|
* @secure
|
|
14786
15062
|
*/
|
|
@@ -14817,6 +15093,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14817
15093
|
*
|
|
14818
15094
|
* @tags command
|
|
14819
15095
|
* @name CommandsListPost
|
|
15096
|
+
* @summary List Commands (POST)
|
|
14820
15097
|
* @request POST:/commands.list
|
|
14821
15098
|
* @secure
|
|
14822
15099
|
*/
|
|
@@ -14826,6 +15103,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14826
15103
|
*
|
|
14827
15104
|
* @tags command
|
|
14828
15105
|
* @name CommandsUpdate
|
|
15106
|
+
* @summary Update Command
|
|
14829
15107
|
* @request POST:/commands.update
|
|
14830
15108
|
* @secure
|
|
14831
15109
|
*/
|
|
@@ -14835,6 +15113,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14835
15113
|
*
|
|
14836
15114
|
* @tags notifications
|
|
14837
15115
|
* @name ContentTemplateCreate
|
|
15116
|
+
* @summary Create Content Template
|
|
14838
15117
|
* @request POST:/content-template.create
|
|
14839
15118
|
* @secure
|
|
14840
15119
|
*/
|
|
@@ -14844,6 +15123,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14844
15123
|
*
|
|
14845
15124
|
* @tags notifications
|
|
14846
15125
|
* @name ContentTemplateGet
|
|
15126
|
+
* @summary Get Content Template
|
|
14847
15127
|
* @request GET:/content-template.get
|
|
14848
15128
|
* @secure
|
|
14849
15129
|
*/
|
|
@@ -14856,6 +15136,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14856
15136
|
*
|
|
14857
15137
|
* @tags notifications
|
|
14858
15138
|
* @name ContentTemplateGetPost
|
|
15139
|
+
* @summary Get Content Template (POST)
|
|
14859
15140
|
* @request POST:/content-template.get
|
|
14860
15141
|
* @secure
|
|
14861
15142
|
*/
|
|
@@ -14865,6 +15146,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14865
15146
|
*
|
|
14866
15147
|
* @tags notifications
|
|
14867
15148
|
* @name ContentTemplateList
|
|
15149
|
+
* @summary List Content Template
|
|
14868
15150
|
* @request GET:/content-template.list
|
|
14869
15151
|
* @secure
|
|
14870
15152
|
*/
|
|
@@ -14905,6 +15187,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14905
15187
|
*
|
|
14906
15188
|
* @tags notifications
|
|
14907
15189
|
* @name ContentTemplateListPost
|
|
15190
|
+
* @summary List Content Template (POST)
|
|
14908
15191
|
* @request POST:/content-template.list
|
|
14909
15192
|
* @secure
|
|
14910
15193
|
*/
|
|
@@ -14914,6 +15197,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14914
15197
|
*
|
|
14915
15198
|
* @tags conversations
|
|
14916
15199
|
* @name ConversationsCreate
|
|
15200
|
+
* @summary Create Conversation
|
|
14917
15201
|
* @request POST:/conversations.create
|
|
14918
15202
|
* @secure
|
|
14919
15203
|
*/
|
|
@@ -14923,6 +15207,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14923
15207
|
*
|
|
14924
15208
|
* @tags conversations
|
|
14925
15209
|
* @name ConversationsDelete
|
|
15210
|
+
* @summary Delete Conversation
|
|
14926
15211
|
* @request POST:/conversations.delete
|
|
14927
15212
|
* @secure
|
|
14928
15213
|
*/
|
|
@@ -14932,6 +15217,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
14932
15217
|
*
|
|
14933
15218
|
* @tags conversations
|
|
14934
15219
|
* @name ConversationsExport
|
|
15220
|
+
* @summary Export Conversations
|
|
14935
15221
|
* @request GET:/conversations.export
|
|
14936
15222
|
* @secure
|
|
14937
15223
|
*/
|
|
@@ -15013,6 +15299,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15013
15299
|
*
|
|
15014
15300
|
* @tags conversations
|
|
15015
15301
|
* @name ConversationsExportPost
|
|
15302
|
+
* @summary Export Conversations (POST)
|
|
15016
15303
|
* @request POST:/conversations.export
|
|
15017
15304
|
* @secure
|
|
15018
15305
|
*/
|
|
@@ -15022,6 +15309,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15022
15309
|
*
|
|
15023
15310
|
* @tags conversations
|
|
15024
15311
|
* @name ConversationsGet
|
|
15312
|
+
* @summary Get Conversation
|
|
15025
15313
|
* @request GET:/conversations.get
|
|
15026
15314
|
* @secure
|
|
15027
15315
|
*/
|
|
@@ -15034,6 +15322,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15034
15322
|
*
|
|
15035
15323
|
* @tags conversations
|
|
15036
15324
|
* @name ConversationsGetPost
|
|
15325
|
+
* @summary Get Conversation (POST)
|
|
15037
15326
|
* @request POST:/conversations.get
|
|
15038
15327
|
* @secure
|
|
15039
15328
|
*/
|
|
@@ -15043,6 +15332,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15043
15332
|
*
|
|
15044
15333
|
* @tags conversations
|
|
15045
15334
|
* @name ConversationsList
|
|
15335
|
+
* @summary List Conversations
|
|
15046
15336
|
* @request GET:/conversations.list
|
|
15047
15337
|
* @secure
|
|
15048
15338
|
*/
|
|
@@ -15133,6 +15423,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15133
15423
|
*
|
|
15134
15424
|
* @tags conversations
|
|
15135
15425
|
* @name ConversationsListPost
|
|
15426
|
+
* @summary List Conversations (POST)
|
|
15136
15427
|
* @request POST:/conversations.list
|
|
15137
15428
|
* @secure
|
|
15138
15429
|
*/
|
|
@@ -15142,6 +15433,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15142
15433
|
*
|
|
15143
15434
|
* @tags conversations
|
|
15144
15435
|
* @name ConversationsUpdate
|
|
15436
|
+
* @summary Update Conversation
|
|
15145
15437
|
* @request POST:/conversations.update
|
|
15146
15438
|
* @secure
|
|
15147
15439
|
*/
|
|
@@ -15151,6 +15443,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15151
15443
|
*
|
|
15152
15444
|
* @tags customization
|
|
15153
15445
|
* @name CustomObjectsCount
|
|
15446
|
+
* @summary Count Custom Objects
|
|
15154
15447
|
* @request GET:/custom-objects.count
|
|
15155
15448
|
* @secure
|
|
15156
15449
|
*/
|
|
@@ -15165,6 +15458,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15165
15458
|
*
|
|
15166
15459
|
* @tags customization
|
|
15167
15460
|
* @name CustomObjectsCountPost
|
|
15461
|
+
* @summary Count Custom Objects (POST)
|
|
15168
15462
|
* @request POST:/custom-objects.count
|
|
15169
15463
|
* @secure
|
|
15170
15464
|
*/
|
|
@@ -15174,6 +15468,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15174
15468
|
*
|
|
15175
15469
|
* @tags customization
|
|
15176
15470
|
* @name CustomObjectsCreate
|
|
15471
|
+
* @summary Create Custom Object
|
|
15177
15472
|
* @request POST:/custom-objects.create
|
|
15178
15473
|
* @secure
|
|
15179
15474
|
*/
|
|
@@ -15183,6 +15478,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15183
15478
|
*
|
|
15184
15479
|
* @tags customization
|
|
15185
15480
|
* @name CustomObjectsDelete
|
|
15481
|
+
* @summary Delete Custom Object
|
|
15186
15482
|
* @request POST:/custom-objects.delete
|
|
15187
15483
|
* @secure
|
|
15188
15484
|
*/
|
|
@@ -15192,6 +15488,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15192
15488
|
*
|
|
15193
15489
|
* @tags customization
|
|
15194
15490
|
* @name CustomObjectsGet
|
|
15491
|
+
* @summary Get Custom Object
|
|
15195
15492
|
* @request GET:/custom-objects.get
|
|
15196
15493
|
* @secure
|
|
15197
15494
|
*/
|
|
@@ -15204,6 +15501,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15204
15501
|
*
|
|
15205
15502
|
* @tags customization
|
|
15206
15503
|
* @name CustomObjectsGetPost
|
|
15504
|
+
* @summary Get Custom Object (POST)
|
|
15207
15505
|
* @request POST:/custom-objects.get
|
|
15208
15506
|
* @secure
|
|
15209
15507
|
*/
|
|
@@ -15213,6 +15511,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15213
15511
|
*
|
|
15214
15512
|
* @tags customization
|
|
15215
15513
|
* @name CustomObjectsList
|
|
15514
|
+
* @summary List Custom Objects
|
|
15216
15515
|
* @request GET:/custom-objects.list
|
|
15217
15516
|
* @secure
|
|
15218
15517
|
*/
|
|
@@ -15244,6 +15543,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15244
15543
|
*
|
|
15245
15544
|
* @tags customization
|
|
15246
15545
|
* @name CustomObjectsListPost
|
|
15546
|
+
* @summary List Custom Objects (POST)
|
|
15247
15547
|
* @request POST:/custom-objects.list
|
|
15248
15548
|
* @secure
|
|
15249
15549
|
*/
|
|
@@ -15253,6 +15553,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15253
15553
|
*
|
|
15254
15554
|
* @tags customization
|
|
15255
15555
|
* @name CustomObjectsUpdate
|
|
15556
|
+
* @summary Update Custom Object
|
|
15256
15557
|
* @request POST:/custom-objects.update
|
|
15257
15558
|
* @secure
|
|
15258
15559
|
*/
|
|
@@ -15262,6 +15563,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15262
15563
|
*
|
|
15263
15564
|
* @tags auth-connection, dev-orgs
|
|
15264
15565
|
* @name DevOrgAuthConnectionsCreate
|
|
15566
|
+
* @summary Create Dev Orgs Auth Connection
|
|
15265
15567
|
* @request POST:/dev-orgs.auth-connections.create
|
|
15266
15568
|
* @secure
|
|
15267
15569
|
*/
|
|
@@ -15271,6 +15573,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15271
15573
|
*
|
|
15272
15574
|
* @tags auth-connection, dev-orgs
|
|
15273
15575
|
* @name DevOrgAuthConnectionsDelete
|
|
15576
|
+
* @summary Delete Dev Orgs Auth Connection
|
|
15274
15577
|
* @request POST:/dev-orgs.auth-connections.delete
|
|
15275
15578
|
* @secure
|
|
15276
15579
|
*/
|
|
@@ -15280,6 +15583,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15280
15583
|
*
|
|
15281
15584
|
* @tags auth-connection, dev-orgs
|
|
15282
15585
|
* @name DevOrgAuthConnectionsGet
|
|
15586
|
+
* @summary Get Dev Orgs Auth Connection
|
|
15283
15587
|
* @request GET:/dev-orgs.auth-connections.get
|
|
15284
15588
|
* @secure
|
|
15285
15589
|
*/
|
|
@@ -15292,6 +15596,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15292
15596
|
*
|
|
15293
15597
|
* @tags auth-connection, dev-orgs
|
|
15294
15598
|
* @name DevOrgAuthConnectionsGetPost
|
|
15599
|
+
* @summary Get Dev Orgs Auth Connection (POST)
|
|
15295
15600
|
* @request POST:/dev-orgs.auth-connections.get
|
|
15296
15601
|
* @secure
|
|
15297
15602
|
*/
|
|
@@ -15301,6 +15606,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15301
15606
|
*
|
|
15302
15607
|
* @tags auth-connection, dev-orgs
|
|
15303
15608
|
* @name DevOrgAuthConnectionsList
|
|
15609
|
+
* @summary List Dev Orgs Auth Connections
|
|
15304
15610
|
* @request GET:/dev-orgs.auth-connections.list
|
|
15305
15611
|
* @secure
|
|
15306
15612
|
*/
|
|
@@ -15310,6 +15616,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15310
15616
|
*
|
|
15311
15617
|
* @tags auth-connection, dev-orgs
|
|
15312
15618
|
* @name DevOrgAuthConnectionsListPost
|
|
15619
|
+
* @summary List Dev Orgs Auth Connections (POST)
|
|
15313
15620
|
* @request POST:/dev-orgs.auth-connections.list
|
|
15314
15621
|
* @secure
|
|
15315
15622
|
*/
|
|
@@ -15319,6 +15626,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15319
15626
|
*
|
|
15320
15627
|
* @tags auth-connection, dev-orgs
|
|
15321
15628
|
* @name DevOrgAuthConnectionsToggle
|
|
15629
|
+
* @summary Toggle Dev Orgs Auth Connections
|
|
15322
15630
|
* @request POST:/dev-orgs.auth-connections.toggle
|
|
15323
15631
|
* @secure
|
|
15324
15632
|
*/
|
|
@@ -15328,6 +15636,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15328
15636
|
*
|
|
15329
15637
|
* @tags auth-connection, dev-orgs
|
|
15330
15638
|
* @name DevOrgAuthConnectionsUpdate
|
|
15639
|
+
* @summary Update Dev Orgs Auth Connection
|
|
15331
15640
|
* @request POST:/dev-orgs.auth-connections.update
|
|
15332
15641
|
* @secure
|
|
15333
15642
|
*/
|
|
@@ -15337,6 +15646,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15337
15646
|
*
|
|
15338
15647
|
* @tags dev-users
|
|
15339
15648
|
* @name DevUsersActivate
|
|
15649
|
+
* @summary Activate Dev Users
|
|
15340
15650
|
* @request POST:/dev-users.activate
|
|
15341
15651
|
* @secure
|
|
15342
15652
|
*/
|
|
@@ -15346,6 +15656,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15346
15656
|
*
|
|
15347
15657
|
* @tags dev-users
|
|
15348
15658
|
* @name DevUsersDeactivate
|
|
15659
|
+
* @summary Deactivate Dev Users
|
|
15349
15660
|
* @request POST:/dev-users.deactivate
|
|
15350
15661
|
* @secure
|
|
15351
15662
|
*/
|
|
@@ -15355,6 +15666,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15355
15666
|
*
|
|
15356
15667
|
* @tags dev-users
|
|
15357
15668
|
* @name DevUsersGet
|
|
15669
|
+
* @summary Get Dev User
|
|
15358
15670
|
* @request GET:/dev-users.get
|
|
15359
15671
|
* @secure
|
|
15360
15672
|
*/
|
|
@@ -15367,6 +15679,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15367
15679
|
*
|
|
15368
15680
|
* @tags dev-users
|
|
15369
15681
|
* @name DevUsersGetPost
|
|
15682
|
+
* @summary Get Dev User (POST)
|
|
15370
15683
|
* @request POST:/dev-users.get
|
|
15371
15684
|
* @secure
|
|
15372
15685
|
*/
|
|
@@ -15376,6 +15689,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15376
15689
|
*
|
|
15377
15690
|
* @tags dev-users
|
|
15378
15691
|
* @name DevUsersIdentitiesLink
|
|
15692
|
+
* @summary Link Dev Users Identities
|
|
15379
15693
|
* @request POST:/dev-users.identities.link
|
|
15380
15694
|
* @secure
|
|
15381
15695
|
*/
|
|
@@ -15385,6 +15699,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15385
15699
|
*
|
|
15386
15700
|
* @tags dev-users
|
|
15387
15701
|
* @name DevUsersIdentitiesUnlink
|
|
15702
|
+
* @summary Unlink Dev Users Identities
|
|
15388
15703
|
* @request POST:/dev-users.identities.unlink
|
|
15389
15704
|
* @secure
|
|
15390
15705
|
*/
|
|
@@ -15394,6 +15709,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15394
15709
|
*
|
|
15395
15710
|
* @tags dev-users
|
|
15396
15711
|
* @name DevUsersList
|
|
15712
|
+
* @summary List Dev Users
|
|
15397
15713
|
* @request GET:/dev-users.list
|
|
15398
15714
|
* @secure
|
|
15399
15715
|
*/
|
|
@@ -15431,6 +15747,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15431
15747
|
*
|
|
15432
15748
|
* @tags dev-users
|
|
15433
15749
|
* @name DevUsersListPost
|
|
15750
|
+
* @summary List Dev Users (POST)
|
|
15434
15751
|
* @request POST:/dev-users.list
|
|
15435
15752
|
* @secure
|
|
15436
15753
|
*/
|
|
@@ -15440,6 +15757,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15440
15757
|
*
|
|
15441
15758
|
* @tags dev-users
|
|
15442
15759
|
* @name DevUsersSelf
|
|
15760
|
+
* @summary Self Dev User
|
|
15443
15761
|
* @request GET:/dev-users.self
|
|
15444
15762
|
* @secure
|
|
15445
15763
|
*/
|
|
@@ -15449,6 +15767,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15449
15767
|
*
|
|
15450
15768
|
* @tags dev-users
|
|
15451
15769
|
* @name DevUsersSelfPost
|
|
15770
|
+
* @summary Self Dev User (POST)
|
|
15452
15771
|
* @request POST:/dev-users.self
|
|
15453
15772
|
* @secure
|
|
15454
15773
|
*/
|
|
@@ -15458,6 +15777,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15458
15777
|
*
|
|
15459
15778
|
* @tags dev-users
|
|
15460
15779
|
* @name DevUsersSelfUpdate
|
|
15780
|
+
* @summary Update Dev Users Self
|
|
15461
15781
|
* @request POST:/dev-users.self.update
|
|
15462
15782
|
* @secure
|
|
15463
15783
|
*/
|
|
@@ -15467,6 +15787,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15467
15787
|
*
|
|
15468
15788
|
* @tags dev-users
|
|
15469
15789
|
* @name DevUsersUpdate
|
|
15790
|
+
* @summary Update Dev User
|
|
15470
15791
|
* @request POST:/dev-users.update
|
|
15471
15792
|
* @secure
|
|
15472
15793
|
*/
|
|
@@ -15476,6 +15797,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15476
15797
|
*
|
|
15477
15798
|
* @tags directory
|
|
15478
15799
|
* @name DirectoriesCount
|
|
15800
|
+
* @summary Count Directories
|
|
15479
15801
|
* @request GET:/directories.count
|
|
15480
15802
|
* @secure
|
|
15481
15803
|
*/
|
|
@@ -15496,6 +15818,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15496
15818
|
*
|
|
15497
15819
|
* @tags directory
|
|
15498
15820
|
* @name DirectoriesCountPost
|
|
15821
|
+
* @summary Count Directories (POST)
|
|
15499
15822
|
* @request POST:/directories.count
|
|
15500
15823
|
* @secure
|
|
15501
15824
|
*/
|
|
@@ -15505,6 +15828,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15505
15828
|
*
|
|
15506
15829
|
* @tags directory
|
|
15507
15830
|
* @name DirectoriesCreate
|
|
15831
|
+
* @summary Create Directory
|
|
15508
15832
|
* @request POST:/directories.create
|
|
15509
15833
|
* @secure
|
|
15510
15834
|
*/
|
|
@@ -15514,6 +15838,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15514
15838
|
*
|
|
15515
15839
|
* @tags directory
|
|
15516
15840
|
* @name DirectoriesDelete
|
|
15841
|
+
* @summary Delete Directory
|
|
15517
15842
|
* @request POST:/directories.delete
|
|
15518
15843
|
* @secure
|
|
15519
15844
|
*/
|
|
@@ -15523,6 +15848,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15523
15848
|
*
|
|
15524
15849
|
* @tags directory
|
|
15525
15850
|
* @name DirectoriesGet
|
|
15851
|
+
* @summary Get Directory
|
|
15526
15852
|
* @request GET:/directories.get
|
|
15527
15853
|
* @secure
|
|
15528
15854
|
*/
|
|
@@ -15535,6 +15861,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15535
15861
|
*
|
|
15536
15862
|
* @tags directory
|
|
15537
15863
|
* @name DirectoriesGetPost
|
|
15864
|
+
* @summary Get Directory (POST)
|
|
15538
15865
|
* @request POST:/directories.get
|
|
15539
15866
|
* @secure
|
|
15540
15867
|
*/
|
|
@@ -15544,6 +15871,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15544
15871
|
*
|
|
15545
15872
|
* @tags directory
|
|
15546
15873
|
* @name DirectoriesList
|
|
15874
|
+
* @summary List Directories
|
|
15547
15875
|
* @request GET:/directories.list
|
|
15548
15876
|
* @secure
|
|
15549
15877
|
*/
|
|
@@ -15579,6 +15907,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15579
15907
|
*
|
|
15580
15908
|
* @tags directory
|
|
15581
15909
|
* @name DirectoriesListPost
|
|
15910
|
+
* @summary List Directories (POST)
|
|
15582
15911
|
* @request POST:/directories.list
|
|
15583
15912
|
* @secure
|
|
15584
15913
|
*/
|
|
@@ -15588,6 +15917,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15588
15917
|
*
|
|
15589
15918
|
* @tags directory
|
|
15590
15919
|
* @name DirectoriesUpdate
|
|
15920
|
+
* @summary Update Directory
|
|
15591
15921
|
* @request POST:/directories.update
|
|
15592
15922
|
* @secure
|
|
15593
15923
|
*/
|
|
@@ -15597,6 +15927,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15597
15927
|
*
|
|
15598
15928
|
* @tags engagements
|
|
15599
15929
|
* @name EngagementsCount
|
|
15930
|
+
* @summary Count Engagements
|
|
15600
15931
|
* @request GET:/engagements.count
|
|
15601
15932
|
* @secure
|
|
15602
15933
|
*/
|
|
@@ -15621,6 +15952,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15621
15952
|
*
|
|
15622
15953
|
* @tags engagements
|
|
15623
15954
|
* @name EngagementsCountPost
|
|
15955
|
+
* @summary Count Engagements (POST)
|
|
15624
15956
|
* @request POST:/engagements.count
|
|
15625
15957
|
* @secure
|
|
15626
15958
|
*/
|
|
@@ -15630,6 +15962,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15630
15962
|
*
|
|
15631
15963
|
* @tags engagements
|
|
15632
15964
|
* @name EngagementsCreate
|
|
15965
|
+
* @summary Create Engagement
|
|
15633
15966
|
* @request POST:/engagements.create
|
|
15634
15967
|
* @secure
|
|
15635
15968
|
*/
|
|
@@ -15639,6 +15972,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15639
15972
|
*
|
|
15640
15973
|
* @tags engagements
|
|
15641
15974
|
* @name EngagementsDelete
|
|
15975
|
+
* @summary Delete Engagement
|
|
15642
15976
|
* @request POST:/engagements.delete
|
|
15643
15977
|
* @secure
|
|
15644
15978
|
*/
|
|
@@ -15648,6 +15982,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15648
15982
|
*
|
|
15649
15983
|
* @tags engagements
|
|
15650
15984
|
* @name EngagementsGet
|
|
15985
|
+
* @summary Get Engagement
|
|
15651
15986
|
* @request GET:/engagements.get
|
|
15652
15987
|
* @secure
|
|
15653
15988
|
*/
|
|
@@ -15660,6 +15995,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15660
15995
|
*
|
|
15661
15996
|
* @tags engagements
|
|
15662
15997
|
* @name EngagementsGetPost
|
|
15998
|
+
* @summary Get Engagement (POST)
|
|
15663
15999
|
* @request POST:/engagements.get
|
|
15664
16000
|
* @secure
|
|
15665
16001
|
*/
|
|
@@ -15669,6 +16005,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15669
16005
|
*
|
|
15670
16006
|
* @tags engagements
|
|
15671
16007
|
* @name EngagementsList
|
|
16008
|
+
* @summary List Engagements
|
|
15672
16009
|
* @request GET:/engagements.list
|
|
15673
16010
|
* @secure
|
|
15674
16011
|
*/
|
|
@@ -15710,6 +16047,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15710
16047
|
*
|
|
15711
16048
|
* @tags engagements
|
|
15712
16049
|
* @name EngagementsListPost
|
|
16050
|
+
* @summary List Engagements (POST)
|
|
15713
16051
|
* @request POST:/engagements.list
|
|
15714
16052
|
* @secure
|
|
15715
16053
|
*/
|
|
@@ -15719,6 +16057,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15719
16057
|
*
|
|
15720
16058
|
* @tags engagements
|
|
15721
16059
|
* @name EngagementsUpdate
|
|
16060
|
+
* @summary Update Engagement
|
|
15722
16061
|
* @request POST:/engagements.update
|
|
15723
16062
|
* @secure
|
|
15724
16063
|
*/
|
|
@@ -15728,6 +16067,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15728
16067
|
*
|
|
15729
16068
|
* @tags event-source
|
|
15730
16069
|
* @name EventSourcesGet
|
|
16070
|
+
* @summary Get Event Source
|
|
15731
16071
|
* @request GET:/event-sources.get
|
|
15732
16072
|
* @secure
|
|
15733
16073
|
*/
|
|
@@ -15740,6 +16080,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15740
16080
|
*
|
|
15741
16081
|
* @tags event-source
|
|
15742
16082
|
* @name EventSourcesGetPost
|
|
16083
|
+
* @summary Get Event Source (POST)
|
|
15743
16084
|
* @request POST:/event-sources.get
|
|
15744
16085
|
* @secure
|
|
15745
16086
|
*/
|
|
@@ -15749,6 +16090,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15749
16090
|
*
|
|
15750
16091
|
* @tags event-source
|
|
15751
16092
|
* @name EventSourcesScheduleEvent
|
|
16093
|
+
* @summary Schedule Event Sources
|
|
15752
16094
|
* @request POST:/event-sources.schedule
|
|
15753
16095
|
* @secure
|
|
15754
16096
|
*/
|
|
@@ -15758,6 +16100,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15758
16100
|
*
|
|
15759
16101
|
* @tags event-source
|
|
15760
16102
|
* @name EventSourcesDeleteScheduledEvent
|
|
16103
|
+
* @summary Unschedule Event Sources
|
|
15761
16104
|
* @request POST:/event-sources.unschedule
|
|
15762
16105
|
* @secure
|
|
15763
16106
|
*/
|
|
@@ -15767,6 +16110,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15767
16110
|
*
|
|
15768
16111
|
* @tags groups
|
|
15769
16112
|
* @name GroupsCreate
|
|
16113
|
+
* @summary Create Group
|
|
15770
16114
|
* @request POST:/groups.create
|
|
15771
16115
|
* @secure
|
|
15772
16116
|
*/
|
|
@@ -15776,6 +16120,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15776
16120
|
*
|
|
15777
16121
|
* @tags groups
|
|
15778
16122
|
* @name GroupsGet
|
|
16123
|
+
* @summary Get Group
|
|
15779
16124
|
* @request GET:/groups.get
|
|
15780
16125
|
* @secure
|
|
15781
16126
|
*/
|
|
@@ -15788,6 +16133,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15788
16133
|
*
|
|
15789
16134
|
* @tags groups
|
|
15790
16135
|
* @name GroupsGetPost
|
|
16136
|
+
* @summary Get Group (POST)
|
|
15791
16137
|
* @request POST:/groups.get
|
|
15792
16138
|
* @secure
|
|
15793
16139
|
*/
|
|
@@ -15797,6 +16143,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15797
16143
|
*
|
|
15798
16144
|
* @tags groups
|
|
15799
16145
|
* @name GroupsList
|
|
16146
|
+
* @summary List Groups
|
|
15800
16147
|
* @request GET:/groups.list
|
|
15801
16148
|
* @secure
|
|
15802
16149
|
*/
|
|
@@ -15832,6 +16179,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15832
16179
|
*
|
|
15833
16180
|
* @tags groups
|
|
15834
16181
|
* @name GroupsListPost
|
|
16182
|
+
* @summary List Groups (POST)
|
|
15835
16183
|
* @request POST:/groups.list
|
|
15836
16184
|
* @secure
|
|
15837
16185
|
*/
|
|
@@ -15841,6 +16189,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15841
16189
|
*
|
|
15842
16190
|
* @tags groups
|
|
15843
16191
|
* @name GroupMembersAdd
|
|
16192
|
+
* @summary Add Groups Members
|
|
15844
16193
|
* @request POST:/groups.members.add
|
|
15845
16194
|
* @secure
|
|
15846
16195
|
*/
|
|
@@ -15850,6 +16199,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15850
16199
|
*
|
|
15851
16200
|
* @tags groups
|
|
15852
16201
|
* @name GroupMembersList
|
|
16202
|
+
* @summary List Groups Members
|
|
15853
16203
|
* @request GET:/groups.members.list
|
|
15854
16204
|
* @secure
|
|
15855
16205
|
*/
|
|
@@ -15878,6 +16228,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15878
16228
|
*
|
|
15879
16229
|
* @tags groups
|
|
15880
16230
|
* @name GroupMembersListPost
|
|
16231
|
+
* @summary List Groups Members (POST)
|
|
15881
16232
|
* @request POST:/groups.members.list
|
|
15882
16233
|
* @secure
|
|
15883
16234
|
*/
|
|
@@ -15887,6 +16238,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15887
16238
|
*
|
|
15888
16239
|
* @tags groups
|
|
15889
16240
|
* @name GroupMembersRemove
|
|
16241
|
+
* @summary Remove Groups Members
|
|
15890
16242
|
* @request POST:/groups.members.remove
|
|
15891
16243
|
* @secure
|
|
15892
16244
|
*/
|
|
@@ -15896,6 +16248,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15896
16248
|
*
|
|
15897
16249
|
* @tags groups
|
|
15898
16250
|
* @name GroupsUpdate
|
|
16251
|
+
* @summary Update Group
|
|
15899
16252
|
* @request POST:/groups.update
|
|
15900
16253
|
* @secure
|
|
15901
16254
|
*/
|
|
@@ -15905,6 +16258,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15905
16258
|
*
|
|
15906
16259
|
* @tags operate
|
|
15907
16260
|
* @name IncidentsCreate
|
|
16261
|
+
* @summary Create Incident
|
|
15908
16262
|
* @request POST:/incidents.create
|
|
15909
16263
|
* @secure
|
|
15910
16264
|
*/
|
|
@@ -15914,6 +16268,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15914
16268
|
*
|
|
15915
16269
|
* @tags operate
|
|
15916
16270
|
* @name IncidentsDelete
|
|
16271
|
+
* @summary Delete Incident
|
|
15917
16272
|
* @request POST:/incidents.delete
|
|
15918
16273
|
* @secure
|
|
15919
16274
|
*/
|
|
@@ -15923,6 +16278,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15923
16278
|
*
|
|
15924
16279
|
* @tags operate
|
|
15925
16280
|
* @name IncidentsGet
|
|
16281
|
+
* @summary Get Incident
|
|
15926
16282
|
* @request GET:/incidents.get
|
|
15927
16283
|
* @secure
|
|
15928
16284
|
*/
|
|
@@ -15935,6 +16291,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15935
16291
|
*
|
|
15936
16292
|
* @tags operate
|
|
15937
16293
|
* @name IncidentsGetPost
|
|
16294
|
+
* @summary Get Incident (POST)
|
|
15938
16295
|
* @request POST:/incidents.get
|
|
15939
16296
|
* @secure
|
|
15940
16297
|
*/
|
|
@@ -15944,6 +16301,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
15944
16301
|
*
|
|
15945
16302
|
* @tags operate
|
|
15946
16303
|
* @name IncidentsGroup
|
|
16304
|
+
* @summary Group Incidents
|
|
15947
16305
|
* @request GET:/incidents.group
|
|
15948
16306
|
* @secure
|
|
15949
16307
|
*/
|
|
@@ -16016,6 +16374,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16016
16374
|
*
|
|
16017
16375
|
* @tags operate
|
|
16018
16376
|
* @name IncidentsGroupPost
|
|
16377
|
+
* @summary Group Incidents (POST)
|
|
16019
16378
|
* @request POST:/incidents.group
|
|
16020
16379
|
* @secure
|
|
16021
16380
|
*/
|
|
@@ -16025,6 +16384,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16025
16384
|
*
|
|
16026
16385
|
* @tags operate
|
|
16027
16386
|
* @name IncidentsList
|
|
16387
|
+
* @summary List Incidents
|
|
16028
16388
|
* @request GET:/incidents.list
|
|
16029
16389
|
* @secure
|
|
16030
16390
|
*/
|
|
@@ -16088,6 +16448,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16088
16448
|
*
|
|
16089
16449
|
* @tags operate
|
|
16090
16450
|
* @name IncidentsListPost
|
|
16451
|
+
* @summary List Incidents (POST)
|
|
16091
16452
|
* @request POST:/incidents.list
|
|
16092
16453
|
* @secure
|
|
16093
16454
|
*/
|
|
@@ -16097,6 +16458,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16097
16458
|
*
|
|
16098
16459
|
* @tags operate
|
|
16099
16460
|
* @name IncidentsUpdate
|
|
16461
|
+
* @summary Update Incident
|
|
16100
16462
|
* @request POST:/incidents.update
|
|
16101
16463
|
* @secure
|
|
16102
16464
|
*/
|
|
@@ -16106,6 +16468,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16106
16468
|
*
|
|
16107
16469
|
* @tags keyring
|
|
16108
16470
|
* @name KeyringsCreateCallback
|
|
16471
|
+
* @summary Authorize Keyrings
|
|
16109
16472
|
* @request GET:/keyrings.authorize
|
|
16110
16473
|
*/
|
|
16111
16474
|
keyringsCreateCallback: (query: {
|
|
@@ -16119,6 +16482,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16119
16482
|
*
|
|
16120
16483
|
* @tags keyring
|
|
16121
16484
|
* @name KeyringsCreateCallbackPost
|
|
16485
|
+
* @summary Authorize Keyrings (POST)
|
|
16122
16486
|
* @request POST:/keyrings.authorize
|
|
16123
16487
|
* @secure
|
|
16124
16488
|
*/
|
|
@@ -16128,6 +16492,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16128
16492
|
*
|
|
16129
16493
|
* @tags customization
|
|
16130
16494
|
* @name CustomLinkTypeCreate
|
|
16495
|
+
* @summary Create Link Types Custom
|
|
16131
16496
|
* @request POST:/link-types.custom.create
|
|
16132
16497
|
* @secure
|
|
16133
16498
|
*/
|
|
@@ -16137,6 +16502,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16137
16502
|
*
|
|
16138
16503
|
* @tags customization
|
|
16139
16504
|
* @name CustomLinkTypeGet
|
|
16505
|
+
* @summary Get Link Types Custom
|
|
16140
16506
|
* @request GET:/link-types.custom.get
|
|
16141
16507
|
* @secure
|
|
16142
16508
|
*/
|
|
@@ -16149,6 +16515,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16149
16515
|
*
|
|
16150
16516
|
* @tags customization
|
|
16151
16517
|
* @name CustomLinkTypeGetPost
|
|
16518
|
+
* @summary Get Link Types Custom (POST)
|
|
16152
16519
|
* @request POST:/link-types.custom.get
|
|
16153
16520
|
* @secure
|
|
16154
16521
|
*/
|
|
@@ -16158,6 +16525,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16158
16525
|
*
|
|
16159
16526
|
* @tags customization
|
|
16160
16527
|
* @name CustomLinkTypeList
|
|
16528
|
+
* @summary List Link Types Custom
|
|
16161
16529
|
* @request GET:/link-types.custom.list
|
|
16162
16530
|
* @secure
|
|
16163
16531
|
*/
|
|
@@ -16189,6 +16557,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16189
16557
|
*
|
|
16190
16558
|
* @tags customization
|
|
16191
16559
|
* @name CustomLinkTypeListPost
|
|
16560
|
+
* @summary List Link Types Custom (POST)
|
|
16192
16561
|
* @request POST:/link-types.custom.list
|
|
16193
16562
|
* @secure
|
|
16194
16563
|
*/
|
|
@@ -16198,6 +16567,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16198
16567
|
*
|
|
16199
16568
|
* @tags customization
|
|
16200
16569
|
* @name CustomLinkTypeUpdate
|
|
16570
|
+
* @summary Update Link Types Custom
|
|
16201
16571
|
* @request POST:/link-types.custom.update
|
|
16202
16572
|
* @secure
|
|
16203
16573
|
*/
|
|
@@ -16207,6 +16577,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16207
16577
|
*
|
|
16208
16578
|
* @tags links
|
|
16209
16579
|
* @name LinksCreate
|
|
16580
|
+
* @summary Create Link
|
|
16210
16581
|
* @request POST:/links.create
|
|
16211
16582
|
* @secure
|
|
16212
16583
|
*/
|
|
@@ -16216,6 +16587,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16216
16587
|
*
|
|
16217
16588
|
* @tags links
|
|
16218
16589
|
* @name LinksDelete
|
|
16590
|
+
* @summary Delete Link
|
|
16219
16591
|
* @request POST:/links.delete
|
|
16220
16592
|
* @secure
|
|
16221
16593
|
*/
|
|
@@ -16225,6 +16597,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16225
16597
|
*
|
|
16226
16598
|
* @tags links
|
|
16227
16599
|
* @name LinksGet
|
|
16600
|
+
* @summary Get Link
|
|
16228
16601
|
* @request GET:/links.get
|
|
16229
16602
|
* @secure
|
|
16230
16603
|
*/
|
|
@@ -16237,6 +16610,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16237
16610
|
*
|
|
16238
16611
|
* @tags links
|
|
16239
16612
|
* @name LinksGetPost
|
|
16613
|
+
* @summary Get Link (POST)
|
|
16240
16614
|
* @request POST:/links.get
|
|
16241
16615
|
* @secure
|
|
16242
16616
|
*/
|
|
@@ -16246,6 +16620,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16246
16620
|
*
|
|
16247
16621
|
* @tags links
|
|
16248
16622
|
* @name LinksList
|
|
16623
|
+
* @summary List Links
|
|
16249
16624
|
* @request GET:/links.list
|
|
16250
16625
|
* @secure
|
|
16251
16626
|
*/
|
|
@@ -16295,6 +16670,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16295
16670
|
*
|
|
16296
16671
|
* @tags links
|
|
16297
16672
|
* @name LinksListPost
|
|
16673
|
+
* @summary List Links (POST)
|
|
16298
16674
|
* @request POST:/links.list
|
|
16299
16675
|
* @secure
|
|
16300
16676
|
*/
|
|
@@ -16304,6 +16680,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16304
16680
|
*
|
|
16305
16681
|
* @tags meetings
|
|
16306
16682
|
* @name MeetingsCount
|
|
16683
|
+
* @summary Count Meetings
|
|
16307
16684
|
* @request GET:/meetings.count
|
|
16308
16685
|
* @secure
|
|
16309
16686
|
*/
|
|
@@ -16341,6 +16718,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16341
16718
|
*
|
|
16342
16719
|
* @tags meetings
|
|
16343
16720
|
* @name MeetingsCountPost
|
|
16721
|
+
* @summary Count Meetings (POST)
|
|
16344
16722
|
* @request POST:/meetings.count
|
|
16345
16723
|
* @secure
|
|
16346
16724
|
*/
|
|
@@ -16350,6 +16728,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16350
16728
|
*
|
|
16351
16729
|
* @tags meetings
|
|
16352
16730
|
* @name MeetingsCreate
|
|
16731
|
+
* @summary Create Meeting
|
|
16353
16732
|
* @request POST:/meetings.create
|
|
16354
16733
|
* @secure
|
|
16355
16734
|
*/
|
|
@@ -16359,6 +16738,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16359
16738
|
*
|
|
16360
16739
|
* @tags meetings
|
|
16361
16740
|
* @name MeetingsDelete
|
|
16741
|
+
* @summary Delete Meeting
|
|
16362
16742
|
* @request POST:/meetings.delete
|
|
16363
16743
|
* @secure
|
|
16364
16744
|
*/
|
|
@@ -16368,6 +16748,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16368
16748
|
*
|
|
16369
16749
|
* @tags meetings
|
|
16370
16750
|
* @name MeetingsGet
|
|
16751
|
+
* @summary Get Meeting
|
|
16371
16752
|
* @request GET:/meetings.get
|
|
16372
16753
|
* @secure
|
|
16373
16754
|
*/
|
|
@@ -16380,6 +16761,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16380
16761
|
*
|
|
16381
16762
|
* @tags meetings
|
|
16382
16763
|
* @name MeetingsGetPost
|
|
16764
|
+
* @summary Get Meeting (POST)
|
|
16383
16765
|
* @request POST:/meetings.get
|
|
16384
16766
|
* @secure
|
|
16385
16767
|
*/
|
|
@@ -16389,6 +16771,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16389
16771
|
*
|
|
16390
16772
|
* @tags meetings
|
|
16391
16773
|
* @name MeetingsList
|
|
16774
|
+
* @summary List Meetings
|
|
16392
16775
|
* @request GET:/meetings.list
|
|
16393
16776
|
* @secure
|
|
16394
16777
|
*/
|
|
@@ -16443,6 +16826,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16443
16826
|
*
|
|
16444
16827
|
* @tags meetings
|
|
16445
16828
|
* @name MeetingsListPost
|
|
16829
|
+
* @summary List Meetings (POST)
|
|
16446
16830
|
* @request POST:/meetings.list
|
|
16447
16831
|
* @secure
|
|
16448
16832
|
*/
|
|
@@ -16452,6 +16836,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16452
16836
|
*
|
|
16453
16837
|
* @tags meetings
|
|
16454
16838
|
* @name MeetingsUpdate
|
|
16839
|
+
* @summary Update Meeting
|
|
16455
16840
|
* @request POST:/meetings.update
|
|
16456
16841
|
* @secure
|
|
16457
16842
|
*/
|
|
@@ -16461,6 +16846,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16461
16846
|
*
|
|
16462
16847
|
* @tags slas
|
|
16463
16848
|
* @name MetricActionExecute
|
|
16849
|
+
* @summary Execute Metric Action
|
|
16464
16850
|
* @request POST:/metric-action.execute
|
|
16465
16851
|
* @secure
|
|
16466
16852
|
*/
|
|
@@ -16470,6 +16856,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16470
16856
|
*
|
|
16471
16857
|
* @tags slas
|
|
16472
16858
|
* @name MetricDefinitionsCreate
|
|
16859
|
+
* @summary Create Metric Definition
|
|
16473
16860
|
* @request POST:/metric-definitions.create
|
|
16474
16861
|
* @secure
|
|
16475
16862
|
*/
|
|
@@ -16479,6 +16866,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16479
16866
|
*
|
|
16480
16867
|
* @tags slas
|
|
16481
16868
|
* @name MetricDefinitionsDelete
|
|
16869
|
+
* @summary Delete Metric Definition
|
|
16482
16870
|
* @request POST:/metric-definitions.delete
|
|
16483
16871
|
* @secure
|
|
16484
16872
|
*/
|
|
@@ -16488,6 +16876,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16488
16876
|
*
|
|
16489
16877
|
* @tags slas
|
|
16490
16878
|
* @name MetricDefinitionsGet
|
|
16879
|
+
* @summary Get Metric Definition
|
|
16491
16880
|
* @request GET:/metric-definitions.get
|
|
16492
16881
|
* @secure
|
|
16493
16882
|
*/
|
|
@@ -16506,6 +16895,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16506
16895
|
*
|
|
16507
16896
|
* @tags slas
|
|
16508
16897
|
* @name MetricDefinitionsGetPost
|
|
16898
|
+
* @summary Get Metric Definition (POST)
|
|
16509
16899
|
* @request POST:/metric-definitions.get
|
|
16510
16900
|
* @secure
|
|
16511
16901
|
*/
|
|
@@ -16515,6 +16905,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16515
16905
|
*
|
|
16516
16906
|
* @tags slas
|
|
16517
16907
|
* @name MetricDefinitionsList
|
|
16908
|
+
* @summary List Metric Definitions
|
|
16518
16909
|
* @request GET:/metric-definitions.list
|
|
16519
16910
|
* @secure
|
|
16520
16911
|
*/
|
|
@@ -16553,6 +16944,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16553
16944
|
*
|
|
16554
16945
|
* @tags slas
|
|
16555
16946
|
* @name MetricDefinitionsListPost
|
|
16947
|
+
* @summary List Metric Definitions (POST)
|
|
16556
16948
|
* @request POST:/metric-definitions.list
|
|
16557
16949
|
* @secure
|
|
16558
16950
|
*/
|
|
@@ -16562,6 +16954,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16562
16954
|
*
|
|
16563
16955
|
* @tags slas
|
|
16564
16956
|
* @name MetricDefinitionsUpdate
|
|
16957
|
+
* @summary Update Metric Definition
|
|
16565
16958
|
* @request POST:/metric-definitions.update
|
|
16566
16959
|
* @secure
|
|
16567
16960
|
*/
|
|
@@ -16571,6 +16964,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16571
16964
|
*
|
|
16572
16965
|
* @tags product-usage
|
|
16573
16966
|
* @name MetricsDevrevIngest
|
|
16967
|
+
* @summary Ingest Metrics Devrev
|
|
16574
16968
|
* @request POST:/metrics.devrev.ingest
|
|
16575
16969
|
* @secure
|
|
16576
16970
|
*/
|
|
@@ -16580,6 +16974,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16580
16974
|
*
|
|
16581
16975
|
* @tags notifications
|
|
16582
16976
|
* @name NotificationsSend
|
|
16977
|
+
* @summary Send Notifications
|
|
16583
16978
|
* @request POST:/notifications.send
|
|
16584
16979
|
* @secure
|
|
16585
16980
|
*/
|
|
@@ -16589,6 +16984,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16589
16984
|
*
|
|
16590
16985
|
* @tags schedules
|
|
16591
16986
|
* @name OrgScheduleFragmentsCreate
|
|
16987
|
+
* @summary Create Org Schedule Fragment
|
|
16592
16988
|
* @request POST:/org-schedule-fragments.create
|
|
16593
16989
|
* @secure
|
|
16594
16990
|
*/
|
|
@@ -16598,6 +16994,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16598
16994
|
*
|
|
16599
16995
|
* @tags schedules
|
|
16600
16996
|
* @name OrgScheduleFragmentsGet
|
|
16997
|
+
* @summary Get Org Schedule Fragment
|
|
16601
16998
|
* @request GET:/org-schedule-fragments.get
|
|
16602
16999
|
* @secure
|
|
16603
17000
|
*/
|
|
@@ -16610,6 +17007,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16610
17007
|
*
|
|
16611
17008
|
* @tags schedules
|
|
16612
17009
|
* @name OrgScheduleFragmentsGetPost
|
|
17010
|
+
* @summary Get Org Schedule Fragment (POST)
|
|
16613
17011
|
* @request POST:/org-schedule-fragments.get
|
|
16614
17012
|
* @secure
|
|
16615
17013
|
*/
|
|
@@ -16619,6 +17017,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16619
17017
|
*
|
|
16620
17018
|
* @tags schedules
|
|
16621
17019
|
* @name OrgScheduleFragmentsTransition
|
|
17020
|
+
* @summary Transition Org Schedule Fragments
|
|
16622
17021
|
* @request POST:/org-schedule-fragments.transition
|
|
16623
17022
|
* @secure
|
|
16624
17023
|
*/
|
|
@@ -16628,6 +17027,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16628
17027
|
*
|
|
16629
17028
|
* @tags schedules
|
|
16630
17029
|
* @name OrgSchedulesCreate
|
|
17030
|
+
* @summary Create Org Schedule
|
|
16631
17031
|
* @request POST:/org-schedules.create
|
|
16632
17032
|
* @secure
|
|
16633
17033
|
*/
|
|
@@ -16637,6 +17037,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16637
17037
|
*
|
|
16638
17038
|
* @tags schedules
|
|
16639
17039
|
* @name OrgSchedulesEvaluate
|
|
17040
|
+
* @summary Evaluate Org Schedules
|
|
16640
17041
|
* @request GET:/org-schedules.evaluate
|
|
16641
17042
|
* @secure
|
|
16642
17043
|
*/
|
|
@@ -16655,6 +17056,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16655
17056
|
*
|
|
16656
17057
|
* @tags schedules
|
|
16657
17058
|
* @name OrgSchedulesEvaluatePost
|
|
17059
|
+
* @summary Evaluate Org Schedules (POST)
|
|
16658
17060
|
* @request POST:/org-schedules.evaluate
|
|
16659
17061
|
* @secure
|
|
16660
17062
|
*/
|
|
@@ -16664,6 +17066,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16664
17066
|
*
|
|
16665
17067
|
* @tags schedules
|
|
16666
17068
|
* @name OrgSchedulesGet
|
|
17069
|
+
* @summary Get Org Schedule
|
|
16667
17070
|
* @request GET:/org-schedules.get
|
|
16668
17071
|
* @secure
|
|
16669
17072
|
*/
|
|
@@ -16676,6 +17079,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16676
17079
|
*
|
|
16677
17080
|
* @tags schedules
|
|
16678
17081
|
* @name OrgSchedulesGetPost
|
|
17082
|
+
* @summary Get Org Schedule (POST)
|
|
16679
17083
|
* @request POST:/org-schedules.get
|
|
16680
17084
|
* @secure
|
|
16681
17085
|
*/
|
|
@@ -16685,6 +17089,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16685
17089
|
*
|
|
16686
17090
|
* @tags schedules
|
|
16687
17091
|
* @name OrgSchedulesList
|
|
17092
|
+
* @summary List Org Schedules
|
|
16688
17093
|
* @request GET:/org-schedules.list
|
|
16689
17094
|
* @secure
|
|
16690
17095
|
*/
|
|
@@ -16715,6 +17120,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16715
17120
|
*
|
|
16716
17121
|
* @tags schedules
|
|
16717
17122
|
* @name OrgSchedulesListPost
|
|
17123
|
+
* @summary List Org Schedules (POST)
|
|
16718
17124
|
* @request POST:/org-schedules.list
|
|
16719
17125
|
* @secure
|
|
16720
17126
|
*/
|
|
@@ -16724,6 +17130,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16724
17130
|
*
|
|
16725
17131
|
* @tags schedules
|
|
16726
17132
|
* @name OrgSchedulesSetFuture
|
|
17133
|
+
* @summary Set-Future Org Schedules
|
|
16727
17134
|
* @request POST:/org-schedules.set-future
|
|
16728
17135
|
* @secure
|
|
16729
17136
|
*/
|
|
@@ -16733,6 +17140,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16733
17140
|
*
|
|
16734
17141
|
* @tags schedules
|
|
16735
17142
|
* @name OrgSchedulesTransition
|
|
17143
|
+
* @summary Transition Org Schedules
|
|
16736
17144
|
* @request POST:/org-schedules.transition
|
|
16737
17145
|
* @secure
|
|
16738
17146
|
*/
|
|
@@ -16742,6 +17150,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16742
17150
|
*
|
|
16743
17151
|
* @tags schedules
|
|
16744
17152
|
* @name OrgSchedulesUpdate
|
|
17153
|
+
* @summary Update Org Schedule
|
|
16745
17154
|
* @request POST:/org-schedules.update
|
|
16746
17155
|
* @secure
|
|
16747
17156
|
*/
|
|
@@ -16751,6 +17160,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16751
17160
|
*
|
|
16752
17161
|
* @tags parts
|
|
16753
17162
|
* @name PartsCreate
|
|
17163
|
+
* @summary Create Part
|
|
16754
17164
|
* @request POST:/parts.create
|
|
16755
17165
|
* @secure
|
|
16756
17166
|
*/
|
|
@@ -16760,6 +17170,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16760
17170
|
*
|
|
16761
17171
|
* @tags parts
|
|
16762
17172
|
* @name PartsDelete
|
|
17173
|
+
* @summary Delete Part
|
|
16763
17174
|
* @request POST:/parts.delete
|
|
16764
17175
|
* @secure
|
|
16765
17176
|
*/
|
|
@@ -16769,6 +17180,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16769
17180
|
*
|
|
16770
17181
|
* @tags parts
|
|
16771
17182
|
* @name PartsGet
|
|
17183
|
+
* @summary Get Part
|
|
16772
17184
|
* @request GET:/parts.get
|
|
16773
17185
|
* @secure
|
|
16774
17186
|
*/
|
|
@@ -16784,6 +17196,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16784
17196
|
*
|
|
16785
17197
|
* @tags parts
|
|
16786
17198
|
* @name PartsGetPost
|
|
17199
|
+
* @summary Get Part (POST)
|
|
16787
17200
|
* @request POST:/parts.get
|
|
16788
17201
|
* @secure
|
|
16789
17202
|
*/
|
|
@@ -16793,6 +17206,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16793
17206
|
*
|
|
16794
17207
|
* @tags parts
|
|
16795
17208
|
* @name PartsList
|
|
17209
|
+
* @summary List Parts
|
|
16796
17210
|
* @request GET:/parts.list
|
|
16797
17211
|
* @secure
|
|
16798
17212
|
*/
|
|
@@ -16845,6 +17259,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16845
17259
|
*
|
|
16846
17260
|
* @tags parts
|
|
16847
17261
|
* @name PartsListPost
|
|
17262
|
+
* @summary List Parts (POST)
|
|
16848
17263
|
* @request POST:/parts.list
|
|
16849
17264
|
* @secure
|
|
16850
17265
|
*/
|
|
@@ -16854,6 +17269,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16854
17269
|
*
|
|
16855
17270
|
* @tags parts
|
|
16856
17271
|
* @name PartsUpdate
|
|
17272
|
+
* @summary Update Part
|
|
16857
17273
|
* @request POST:/parts.update
|
|
16858
17274
|
* @secure
|
|
16859
17275
|
*/
|
|
@@ -16863,6 +17279,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16863
17279
|
*
|
|
16864
17280
|
* @tags preferences
|
|
16865
17281
|
* @name PreferencesGet
|
|
17282
|
+
* @summary Get Preference
|
|
16866
17283
|
* @request GET:/preferences.get
|
|
16867
17284
|
* @secure
|
|
16868
17285
|
*/
|
|
@@ -16881,15 +17298,27 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16881
17298
|
*
|
|
16882
17299
|
* @tags preferences
|
|
16883
17300
|
* @name PreferencesGetPost
|
|
17301
|
+
* @summary Get Preference (POST)
|
|
16884
17302
|
* @request POST:/preferences.get
|
|
16885
17303
|
* @secure
|
|
16886
17304
|
*/
|
|
16887
17305
|
preferencesGetPost: (data: PreferencesGetRequest, params?: RequestParams) => Promise<AxiosResponse<PreferencesGetResponse, any>>;
|
|
17306
|
+
/**
|
|
17307
|
+
* @description Updates the preference for a particular object.
|
|
17308
|
+
*
|
|
17309
|
+
* @tags preferences
|
|
17310
|
+
* @name PreferencesUpdate
|
|
17311
|
+
* @summary Update Preference
|
|
17312
|
+
* @request POST:/preferences.update
|
|
17313
|
+
* @secure
|
|
17314
|
+
*/
|
|
17315
|
+
preferencesUpdate: (data: PreferencesUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<PreferencesUpdateResponse, any>>;
|
|
16888
17316
|
/**
|
|
16889
17317
|
* @description Creates a question-answer.
|
|
16890
17318
|
*
|
|
16891
17319
|
* @tags question-answers
|
|
16892
17320
|
* @name CreateQuestionAnswer
|
|
17321
|
+
* @summary Create Question Answer
|
|
16893
17322
|
* @request POST:/question-answers.create
|
|
16894
17323
|
* @secure
|
|
16895
17324
|
*/
|
|
@@ -16899,6 +17328,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16899
17328
|
*
|
|
16900
17329
|
* @tags question-answers
|
|
16901
17330
|
* @name DeleteQuestionAnswer
|
|
17331
|
+
* @summary Delete Question Answer
|
|
16902
17332
|
* @request POST:/question-answers.delete
|
|
16903
17333
|
* @secure
|
|
16904
17334
|
*/
|
|
@@ -16908,6 +17338,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16908
17338
|
*
|
|
16909
17339
|
* @tags question-answers
|
|
16910
17340
|
* @name GetQuestionAnswer
|
|
17341
|
+
* @summary Get Question Answer
|
|
16911
17342
|
* @request GET:/question-answers.get
|
|
16912
17343
|
* @secure
|
|
16913
17344
|
*/
|
|
@@ -16920,6 +17351,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16920
17351
|
*
|
|
16921
17352
|
* @tags question-answers
|
|
16922
17353
|
* @name GetQuestionAnswerPost
|
|
17354
|
+
* @summary Get Question Answer (POST)
|
|
16923
17355
|
* @request POST:/question-answers.get
|
|
16924
17356
|
* @secure
|
|
16925
17357
|
*/
|
|
@@ -16929,6 +17361,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16929
17361
|
*
|
|
16930
17362
|
* @tags question-answers
|
|
16931
17363
|
* @name ListQuestionAnswers
|
|
17364
|
+
* @summary List Question Answers
|
|
16932
17365
|
* @request GET:/question-answers.list
|
|
16933
17366
|
* @secure
|
|
16934
17367
|
*/
|
|
@@ -16976,6 +17409,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16976
17409
|
*
|
|
16977
17410
|
* @tags question-answers
|
|
16978
17411
|
* @name ListQuestionAnswersPost
|
|
17412
|
+
* @summary List Question Answers (POST)
|
|
16979
17413
|
* @request POST:/question-answers.list
|
|
16980
17414
|
* @secure
|
|
16981
17415
|
*/
|
|
@@ -16985,15 +17419,68 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
16985
17419
|
*
|
|
16986
17420
|
* @tags question-answers
|
|
16987
17421
|
* @name UpdateQuestionAnswer
|
|
17422
|
+
* @summary Update Question Answer
|
|
16988
17423
|
* @request POST:/question-answers.update
|
|
16989
17424
|
* @secure
|
|
16990
17425
|
*/
|
|
16991
17426
|
updateQuestionAnswer: (data: QuestionAnswersUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<QuestionAnswersUpdateResponse, any>>;
|
|
17427
|
+
/**
|
|
17428
|
+
* @description Lists the reactors for an object.
|
|
17429
|
+
*
|
|
17430
|
+
* @tags timeline-entries, works
|
|
17431
|
+
* @name ReactionsList
|
|
17432
|
+
* @summary List Reactions
|
|
17433
|
+
* @request GET:/reactions.list
|
|
17434
|
+
* @secure
|
|
17435
|
+
*/
|
|
17436
|
+
reactionsList: (query: {
|
|
17437
|
+
/**
|
|
17438
|
+
* The emoji to list the reactors for. This can be the short name of the
|
|
17439
|
+
* emoji (e.g. "joy"), or the code point (e.g. "1f602").
|
|
17440
|
+
*/
|
|
17441
|
+
emoji: string;
|
|
17442
|
+
/**
|
|
17443
|
+
* The ID of the object to list reactors for.
|
|
17444
|
+
* @example "don:core:dvrv-us-1:devo/example:ticket/123:comment/comment-id"
|
|
17445
|
+
*/
|
|
17446
|
+
object: string;
|
|
17447
|
+
/**
|
|
17448
|
+
* The cursor to resume iteration from, otherwise if not provided, then
|
|
17449
|
+
* iteration starts from the beginning.
|
|
17450
|
+
*/
|
|
17451
|
+
cursor?: string;
|
|
17452
|
+
/**
|
|
17453
|
+
* The maximum number of reactors to return.
|
|
17454
|
+
* @format int32
|
|
17455
|
+
*/
|
|
17456
|
+
limit?: number;
|
|
17457
|
+
}, params?: RequestParams) => Promise<AxiosResponse<ReactionsListResponse, any>>;
|
|
17458
|
+
/**
|
|
17459
|
+
* @description Lists the reactors for an object.
|
|
17460
|
+
*
|
|
17461
|
+
* @tags timeline-entries, works
|
|
17462
|
+
* @name ReactionsListPost
|
|
17463
|
+
* @summary List Reactions (POST)
|
|
17464
|
+
* @request POST:/reactions.list
|
|
17465
|
+
* @secure
|
|
17466
|
+
*/
|
|
17467
|
+
reactionsListPost: (data: ReactionsListRequest, params?: RequestParams) => Promise<AxiosResponse<ReactionsListResponse, any>>;
|
|
17468
|
+
/**
|
|
17469
|
+
* @description Updates a reaction for an object.
|
|
17470
|
+
*
|
|
17471
|
+
* @tags timeline-entries, works
|
|
17472
|
+
* @name ReactionsUpdate
|
|
17473
|
+
* @summary Update Reaction
|
|
17474
|
+
* @request POST:/reactions.update
|
|
17475
|
+
* @secure
|
|
17476
|
+
*/
|
|
17477
|
+
reactionsUpdate: (data: ReactionsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<object, any>>;
|
|
16992
17478
|
/**
|
|
16993
17479
|
* @description Returns a response for the chat conversation.
|
|
16994
17480
|
*
|
|
16995
17481
|
* @tags recommendations
|
|
16996
17482
|
* @name ChatCompletions
|
|
17483
|
+
* @summary Completions Recommendations Chat
|
|
16997
17484
|
* @request POST:/recommendations.chat.completions
|
|
16998
17485
|
* @secure
|
|
16999
17486
|
*/
|
|
@@ -17003,6 +17490,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17003
17490
|
*
|
|
17004
17491
|
* @tags recommendations
|
|
17005
17492
|
* @name GetReply
|
|
17493
|
+
* @summary Get-Reply Recommendations
|
|
17006
17494
|
* @request POST:/recommendations.get-reply
|
|
17007
17495
|
* @secure
|
|
17008
17496
|
*/
|
|
@@ -17012,6 +17500,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17012
17500
|
*
|
|
17013
17501
|
* @tags rev-orgs
|
|
17014
17502
|
* @name RevOrgsCreate
|
|
17503
|
+
* @summary Create Rev Org
|
|
17015
17504
|
* @request POST:/rev-orgs.create
|
|
17016
17505
|
* @secure
|
|
17017
17506
|
*/
|
|
@@ -17021,6 +17510,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17021
17510
|
*
|
|
17022
17511
|
* @tags rev-orgs
|
|
17023
17512
|
* @name RevOrgsDelete
|
|
17513
|
+
* @summary Delete Rev Org
|
|
17024
17514
|
* @request POST:/rev-orgs.delete
|
|
17025
17515
|
* @secure
|
|
17026
17516
|
*/
|
|
@@ -17030,6 +17520,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17030
17520
|
*
|
|
17031
17521
|
* @tags rev-orgs
|
|
17032
17522
|
* @name RevOrgsGet
|
|
17523
|
+
* @summary Get Rev Org
|
|
17033
17524
|
* @request GET:/rev-orgs.get
|
|
17034
17525
|
* @secure
|
|
17035
17526
|
*/
|
|
@@ -17051,6 +17542,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17051
17542
|
*
|
|
17052
17543
|
* @tags rev-orgs
|
|
17053
17544
|
* @name RevOrgsGetPost
|
|
17545
|
+
* @summary Get Rev Org (POST)
|
|
17054
17546
|
* @request POST:/rev-orgs.get
|
|
17055
17547
|
* @secure
|
|
17056
17548
|
*/
|
|
@@ -17060,6 +17552,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17060
17552
|
*
|
|
17061
17553
|
* @tags rev-orgs
|
|
17062
17554
|
* @name RevOrgsList
|
|
17555
|
+
* @summary List Rev Orgs
|
|
17063
17556
|
* @request GET:/rev-orgs.list
|
|
17064
17557
|
* @secure
|
|
17065
17558
|
*/
|
|
@@ -17136,6 +17629,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17136
17629
|
*
|
|
17137
17630
|
* @tags rev-orgs
|
|
17138
17631
|
* @name RevOrgsListPost
|
|
17632
|
+
* @summary List Rev Orgs (POST)
|
|
17139
17633
|
* @request POST:/rev-orgs.list
|
|
17140
17634
|
* @secure
|
|
17141
17635
|
*/
|
|
@@ -17145,15 +17639,56 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17145
17639
|
*
|
|
17146
17640
|
* @tags rev-orgs
|
|
17147
17641
|
* @name RevOrgsUpdate
|
|
17642
|
+
* @summary Update Rev Org
|
|
17148
17643
|
* @request POST:/rev-orgs.update
|
|
17149
17644
|
* @secure
|
|
17150
17645
|
*/
|
|
17151
17646
|
revOrgsUpdate: (data: RevOrgsUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<RevOrgsUpdateResponse, any>>;
|
|
17647
|
+
/**
|
|
17648
|
+
* @description Returns a list of associations on a Rev user.
|
|
17649
|
+
*
|
|
17650
|
+
* @tags rev-users
|
|
17651
|
+
* @name RevUsersAssociationsList
|
|
17652
|
+
* @summary List Rev Users Associations
|
|
17653
|
+
* @request GET:/rev-users.associations.list
|
|
17654
|
+
* @secure
|
|
17655
|
+
*/
|
|
17656
|
+
revUsersAssociationsList: (query: {
|
|
17657
|
+
/** The ID of Rev user to list all associations of. */
|
|
17658
|
+
rev_user_id: string;
|
|
17659
|
+
/**
|
|
17660
|
+
* The cursor to resume iteration from. If not provided, then iteration
|
|
17661
|
+
* starts from the beginning.
|
|
17662
|
+
*/
|
|
17663
|
+
cursor?: string;
|
|
17664
|
+
/**
|
|
17665
|
+
* The maximum number of Associations to return per page. The default is
|
|
17666
|
+
* '50'.
|
|
17667
|
+
* @format int32
|
|
17668
|
+
*/
|
|
17669
|
+
limit?: number;
|
|
17670
|
+
/**
|
|
17671
|
+
* The iteration mode to use, otherwise if not set, then "after" is
|
|
17672
|
+
* used.
|
|
17673
|
+
*/
|
|
17674
|
+
mode?: ListMode;
|
|
17675
|
+
}, params?: RequestParams) => Promise<AxiosResponse<RevUsersAssociationsListResponse, any>>;
|
|
17676
|
+
/**
|
|
17677
|
+
* @description Returns a list of associations on a Rev user.
|
|
17678
|
+
*
|
|
17679
|
+
* @tags rev-users
|
|
17680
|
+
* @name RevUsersAssociationsListPost
|
|
17681
|
+
* @summary List Rev Users Associations (POST)
|
|
17682
|
+
* @request POST:/rev-users.associations.list
|
|
17683
|
+
* @secure
|
|
17684
|
+
*/
|
|
17685
|
+
revUsersAssociationsListPost: (data: RevUsersAssociationsListRequest, params?: RequestParams) => Promise<AxiosResponse<RevUsersAssociationsListResponse, any>>;
|
|
17152
17686
|
/**
|
|
17153
17687
|
* @description Creates a Rev user for a Rev organization. Rev user can be a customer or a lead of an organization.
|
|
17154
17688
|
*
|
|
17155
17689
|
* @tags rev-users
|
|
17156
17690
|
* @name RevUsersCreate
|
|
17691
|
+
* @summary Create Rev User
|
|
17157
17692
|
* @request POST:/rev-users.create
|
|
17158
17693
|
* @secure
|
|
17159
17694
|
*/
|
|
@@ -17163,6 +17698,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17163
17698
|
*
|
|
17164
17699
|
* @tags rev-users
|
|
17165
17700
|
* @name RevUsersDelete
|
|
17701
|
+
* @summary Delete Rev User
|
|
17166
17702
|
* @request POST:/rev-users.delete
|
|
17167
17703
|
* @secure
|
|
17168
17704
|
*/
|
|
@@ -17172,6 +17708,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17172
17708
|
*
|
|
17173
17709
|
* @tags compliance
|
|
17174
17710
|
* @name DeleteRevUsersPersonalData
|
|
17711
|
+
* @summary Delete-Personal-Data Rev Users
|
|
17175
17712
|
* @request POST:/rev-users.delete-personal-data
|
|
17176
17713
|
* @secure
|
|
17177
17714
|
*/
|
|
@@ -17181,6 +17718,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17181
17718
|
*
|
|
17182
17719
|
* @tags rev-users
|
|
17183
17720
|
* @name RevUsersGet
|
|
17721
|
+
* @summary Get Rev User
|
|
17184
17722
|
* @request GET:/rev-users.get
|
|
17185
17723
|
* @secure
|
|
17186
17724
|
*/
|
|
@@ -17193,6 +17731,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17193
17731
|
*
|
|
17194
17732
|
* @tags rev-users
|
|
17195
17733
|
* @name RevUsersGetPost
|
|
17734
|
+
* @summary Get Rev User (POST)
|
|
17196
17735
|
* @request POST:/rev-users.get
|
|
17197
17736
|
* @secure
|
|
17198
17737
|
*/
|
|
@@ -17202,6 +17741,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17202
17741
|
*
|
|
17203
17742
|
* @tags rev-users
|
|
17204
17743
|
* @name LinkRevUserToRevOrg
|
|
17744
|
+
* @summary Link Rev Users
|
|
17205
17745
|
* @request POST:/rev-users.link
|
|
17206
17746
|
* @secure
|
|
17207
17747
|
*/
|
|
@@ -17211,10 +17751,16 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17211
17751
|
*
|
|
17212
17752
|
* @tags rev-users
|
|
17213
17753
|
* @name RevUsersList
|
|
17754
|
+
* @summary List Rev Users
|
|
17214
17755
|
* @request GET:/rev-users.list
|
|
17215
17756
|
* @secure
|
|
17216
17757
|
*/
|
|
17217
17758
|
revUsersList: (query?: {
|
|
17759
|
+
/**
|
|
17760
|
+
* Filters for Rev users with specified associations
|
|
17761
|
+
* (account/workspace).
|
|
17762
|
+
*/
|
|
17763
|
+
associations?: string[];
|
|
17218
17764
|
/** Filters for Rev users that were created by the specified user(s). */
|
|
17219
17765
|
created_by?: string[];
|
|
17220
17766
|
/**
|
|
@@ -17283,6 +17829,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17283
17829
|
*
|
|
17284
17830
|
* @tags rev-users
|
|
17285
17831
|
* @name RevUsersListPost
|
|
17832
|
+
* @summary List Rev Users (POST)
|
|
17286
17833
|
* @request POST:/rev-users.list
|
|
17287
17834
|
* @secure
|
|
17288
17835
|
*/
|
|
@@ -17292,6 +17839,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17292
17839
|
*
|
|
17293
17840
|
* @tags rev-users
|
|
17294
17841
|
* @name RevUsersMerge
|
|
17842
|
+
* @summary Merge Rev Users
|
|
17295
17843
|
* @request POST:/rev-users.merge
|
|
17296
17844
|
* @secure
|
|
17297
17845
|
*/
|
|
@@ -17301,6 +17849,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17301
17849
|
*
|
|
17302
17850
|
* @tags compliance
|
|
17303
17851
|
* @name GetRevUsersPersonalData
|
|
17852
|
+
* @summary Personal-Data Rev Users
|
|
17304
17853
|
* @request POST:/rev-users.personal-data
|
|
17305
17854
|
* @secure
|
|
17306
17855
|
*/
|
|
@@ -17310,10 +17859,16 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17310
17859
|
*
|
|
17311
17860
|
* @tags rev-users
|
|
17312
17861
|
* @name RevUsersScan
|
|
17862
|
+
* @summary Scan Rev Users
|
|
17313
17863
|
* @request GET:/rev-users.scan
|
|
17314
17864
|
* @secure
|
|
17315
17865
|
*/
|
|
17316
17866
|
revUsersScan: (query?: {
|
|
17867
|
+
/**
|
|
17868
|
+
* Filters for Rev users with specified associations
|
|
17869
|
+
* (account/workspace).
|
|
17870
|
+
*/
|
|
17871
|
+
associations?: string[];
|
|
17317
17872
|
/** Filters for Rev users that were created by the specified user(s). */
|
|
17318
17873
|
created_by?: string[];
|
|
17319
17874
|
/**
|
|
@@ -17370,6 +17925,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17370
17925
|
*
|
|
17371
17926
|
* @tags rev-users
|
|
17372
17927
|
* @name RevUsersScanPost
|
|
17928
|
+
* @summary Scan Rev Users (POST)
|
|
17373
17929
|
* @request POST:/rev-users.scan
|
|
17374
17930
|
* @secure
|
|
17375
17931
|
*/
|
|
@@ -17379,6 +17935,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17379
17935
|
*
|
|
17380
17936
|
* @tags rev-users
|
|
17381
17937
|
* @name UnlinkRevUserFromRevOrg
|
|
17938
|
+
* @summary Unlink Rev Users
|
|
17382
17939
|
* @request POST:/rev-users.unlink
|
|
17383
17940
|
* @secure
|
|
17384
17941
|
*/
|
|
@@ -17388,6 +17945,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17388
17945
|
*
|
|
17389
17946
|
* @tags rev-users
|
|
17390
17947
|
* @name RevUsersUpdate
|
|
17948
|
+
* @summary Update Rev User
|
|
17391
17949
|
* @request POST:/rev-users.update
|
|
17392
17950
|
* @secure
|
|
17393
17951
|
*/
|
|
@@ -17397,6 +17955,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17397
17955
|
*
|
|
17398
17956
|
* @tags customization
|
|
17399
17957
|
* @name AggregatedSchemaGet
|
|
17958
|
+
* @summary Get Schemas Aggregated
|
|
17400
17959
|
* @request GET:/schemas.aggregated.get
|
|
17401
17960
|
* @secure
|
|
17402
17961
|
*/
|
|
@@ -17416,6 +17975,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17416
17975
|
*
|
|
17417
17976
|
* @tags customization
|
|
17418
17977
|
* @name AggregatedSchemaGetPost
|
|
17978
|
+
* @summary Get Schemas Aggregated (POST)
|
|
17419
17979
|
* @request POST:/schemas.aggregated.get
|
|
17420
17980
|
* @secure
|
|
17421
17981
|
*/
|
|
@@ -17425,6 +17985,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17425
17985
|
*
|
|
17426
17986
|
* @tags customization
|
|
17427
17987
|
* @name CustomSchemaFragmentsGet
|
|
17988
|
+
* @summary Get Schemas Custom
|
|
17428
17989
|
* @request GET:/schemas.custom.get
|
|
17429
17990
|
* @secure
|
|
17430
17991
|
*/
|
|
@@ -17437,6 +17998,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17437
17998
|
*
|
|
17438
17999
|
* @tags customization
|
|
17439
18000
|
* @name CustomSchemaFragmentsGetPost
|
|
18001
|
+
* @summary Get Schemas Custom (POST)
|
|
17440
18002
|
* @request POST:/schemas.custom.get
|
|
17441
18003
|
* @secure
|
|
17442
18004
|
*/
|
|
@@ -17446,6 +18008,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17446
18008
|
*
|
|
17447
18009
|
* @tags customization
|
|
17448
18010
|
* @name CustomSchemaFragmentsList
|
|
18011
|
+
* @summary List Schemas Custom
|
|
17449
18012
|
* @request GET:/schemas.custom.list
|
|
17450
18013
|
* @secure
|
|
17451
18014
|
*/
|
|
@@ -17490,6 +18053,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17490
18053
|
*
|
|
17491
18054
|
* @tags customization
|
|
17492
18055
|
* @name CustomSchemaFragmentsListPost
|
|
18056
|
+
* @summary List Schemas Custom (POST)
|
|
17493
18057
|
* @request POST:/schemas.custom.list
|
|
17494
18058
|
* @secure
|
|
17495
18059
|
*/
|
|
@@ -17499,6 +18063,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17499
18063
|
*
|
|
17500
18064
|
* @tags customization
|
|
17501
18065
|
* @name CustomSchemaFragmentsSet
|
|
18066
|
+
* @summary Set Schemas Custom
|
|
17502
18067
|
* @request POST:/schemas.custom.set
|
|
17503
18068
|
* @secure
|
|
17504
18069
|
*/
|
|
@@ -17508,6 +18073,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17508
18073
|
*
|
|
17509
18074
|
* @tags customization
|
|
17510
18075
|
* @name StockSchemaFragmentsGet
|
|
18076
|
+
* @summary Get Schemas Stock
|
|
17511
18077
|
* @request GET:/schemas.stock.get
|
|
17512
18078
|
* @secure
|
|
17513
18079
|
*/
|
|
@@ -17522,6 +18088,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17522
18088
|
*
|
|
17523
18089
|
* @tags customization
|
|
17524
18090
|
* @name StockSchemaFragmentsGetPost
|
|
18091
|
+
* @summary Get Schemas Stock (POST)
|
|
17525
18092
|
* @request POST:/schemas.stock.get
|
|
17526
18093
|
* @secure
|
|
17527
18094
|
*/
|
|
@@ -17531,6 +18098,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17531
18098
|
*
|
|
17532
18099
|
* @tags customization
|
|
17533
18100
|
* @name StockSchemaFragmentsList
|
|
18101
|
+
* @summary List Schemas Stock
|
|
17534
18102
|
* @request GET:/schemas.stock.list
|
|
17535
18103
|
* @secure
|
|
17536
18104
|
*/
|
|
@@ -17570,6 +18138,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17570
18138
|
*
|
|
17571
18139
|
* @tags customization
|
|
17572
18140
|
* @name StockSchemaFragmentsListPost
|
|
18141
|
+
* @summary List Schemas Stock (POST)
|
|
17573
18142
|
* @request POST:/schemas.stock.list
|
|
17574
18143
|
* @secure
|
|
17575
18144
|
*/
|
|
@@ -17579,6 +18148,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17579
18148
|
*
|
|
17580
18149
|
* @tags customization
|
|
17581
18150
|
* @name SubtypesList
|
|
18151
|
+
* @summary List Schemas Subtypes
|
|
17582
18152
|
* @request GET:/schemas.subtypes.list
|
|
17583
18153
|
* @secure
|
|
17584
18154
|
*/
|
|
@@ -17596,6 +18166,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17596
18166
|
*
|
|
17597
18167
|
* @tags customization
|
|
17598
18168
|
* @name SubtypesListPost
|
|
18169
|
+
* @summary List Schemas Subtypes (POST)
|
|
17599
18170
|
* @request POST:/schemas.subtypes.list
|
|
17600
18171
|
* @secure
|
|
17601
18172
|
*/
|
|
@@ -17605,6 +18176,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17605
18176
|
*
|
|
17606
18177
|
* @tags search
|
|
17607
18178
|
* @name SearchCore
|
|
18179
|
+
* @summary Core Search
|
|
17608
18180
|
* @request GET:/search.core
|
|
17609
18181
|
* @secure
|
|
17610
18182
|
*/
|
|
@@ -17639,6 +18211,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17639
18211
|
*
|
|
17640
18212
|
* @tags search
|
|
17641
18213
|
* @name SearchCorePost
|
|
18214
|
+
* @summary Core Search (POST)
|
|
17642
18215
|
* @request POST:/search.core
|
|
17643
18216
|
* @secure
|
|
17644
18217
|
*/
|
|
@@ -17648,6 +18221,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17648
18221
|
*
|
|
17649
18222
|
* @tags search
|
|
17650
18223
|
* @name SearchHybrid
|
|
18224
|
+
* @summary Hybrid Search
|
|
17651
18225
|
* @request GET:/search.hybrid
|
|
17652
18226
|
* @secure
|
|
17653
18227
|
*/
|
|
@@ -17681,6 +18255,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17681
18255
|
*
|
|
17682
18256
|
* @tags search
|
|
17683
18257
|
* @name SearchHybridPost
|
|
18258
|
+
* @summary Hybrid Search (POST)
|
|
17684
18259
|
* @request POST:/search.hybrid
|
|
17685
18260
|
* @secure
|
|
17686
18261
|
*/
|
|
@@ -17690,6 +18265,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17690
18265
|
*
|
|
17691
18266
|
* @tags service-accounts
|
|
17692
18267
|
* @name ServiceAccountsGet
|
|
18268
|
+
* @summary Get Service Account
|
|
17693
18269
|
* @request GET:/service-accounts.get
|
|
17694
18270
|
* @secure
|
|
17695
18271
|
*/
|
|
@@ -17702,6 +18278,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17702
18278
|
*
|
|
17703
18279
|
* @tags service-accounts
|
|
17704
18280
|
* @name ServiceAccountsGetPost
|
|
18281
|
+
* @summary Get Service Account (POST)
|
|
17705
18282
|
* @request POST:/service-accounts.get
|
|
17706
18283
|
* @secure
|
|
17707
18284
|
*/
|
|
@@ -17711,6 +18288,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17711
18288
|
*
|
|
17712
18289
|
* @tags slas
|
|
17713
18290
|
* @name SlaTrackersGet
|
|
18291
|
+
* @summary Get Sla Tracker
|
|
17714
18292
|
* @request GET:/sla-trackers.get
|
|
17715
18293
|
* @secure
|
|
17716
18294
|
*/
|
|
@@ -17723,6 +18301,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17723
18301
|
*
|
|
17724
18302
|
* @tags slas
|
|
17725
18303
|
* @name SlaTrackersGetPost
|
|
18304
|
+
* @summary Get Sla Tracker (POST)
|
|
17726
18305
|
* @request POST:/sla-trackers.get
|
|
17727
18306
|
* @secure
|
|
17728
18307
|
*/
|
|
@@ -17732,6 +18311,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17732
18311
|
*
|
|
17733
18312
|
* @tags slas
|
|
17734
18313
|
* @name SlaTrackersList
|
|
18314
|
+
* @summary List Sla Trackers
|
|
17735
18315
|
* @request GET:/sla-trackers.list
|
|
17736
18316
|
* @secure
|
|
17737
18317
|
*/
|
|
@@ -17789,6 +18369,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17789
18369
|
*
|
|
17790
18370
|
* @tags slas
|
|
17791
18371
|
* @name SlaTrackersListPost
|
|
18372
|
+
* @summary List Sla Trackers (POST)
|
|
17792
18373
|
* @request POST:/sla-trackers.list
|
|
17793
18374
|
* @secure
|
|
17794
18375
|
*/
|
|
@@ -17798,6 +18379,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17798
18379
|
*
|
|
17799
18380
|
* @tags slas
|
|
17800
18381
|
* @name SlasAssign
|
|
18382
|
+
* @summary Assign Slas
|
|
17801
18383
|
* @request POST:/slas.assign
|
|
17802
18384
|
* @secure
|
|
17803
18385
|
*/
|
|
@@ -17807,6 +18389,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17807
18389
|
*
|
|
17808
18390
|
* @tags slas
|
|
17809
18391
|
* @name SlasCreate
|
|
18392
|
+
* @summary Create Sla
|
|
17810
18393
|
* @request POST:/slas.create
|
|
17811
18394
|
* @secure
|
|
17812
18395
|
*/
|
|
@@ -17816,6 +18399,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17816
18399
|
*
|
|
17817
18400
|
* @tags slas
|
|
17818
18401
|
* @name SlasGet
|
|
18402
|
+
* @summary Get Sla
|
|
17819
18403
|
* @request GET:/slas.get
|
|
17820
18404
|
* @secure
|
|
17821
18405
|
*/
|
|
@@ -17828,6 +18412,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17828
18412
|
*
|
|
17829
18413
|
* @tags slas
|
|
17830
18414
|
* @name SlasGetPost
|
|
18415
|
+
* @summary Get Sla (POST)
|
|
17831
18416
|
* @request POST:/slas.get
|
|
17832
18417
|
* @secure
|
|
17833
18418
|
*/
|
|
@@ -17837,6 +18422,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17837
18422
|
*
|
|
17838
18423
|
* @tags slas
|
|
17839
18424
|
* @name SlasList
|
|
18425
|
+
* @summary List Slas
|
|
17840
18426
|
* @request GET:/slas.list
|
|
17841
18427
|
* @secure
|
|
17842
18428
|
*/
|
|
@@ -17875,6 +18461,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17875
18461
|
*
|
|
17876
18462
|
* @tags slas
|
|
17877
18463
|
* @name SlasListPost
|
|
18464
|
+
* @summary List Slas (POST)
|
|
17878
18465
|
* @request POST:/slas.list
|
|
17879
18466
|
* @secure
|
|
17880
18467
|
*/
|
|
@@ -17884,6 +18471,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17884
18471
|
*
|
|
17885
18472
|
* @tags slas
|
|
17886
18473
|
* @name SlasTransition
|
|
18474
|
+
* @summary Transition Slas
|
|
17887
18475
|
* @request POST:/slas.transition
|
|
17888
18476
|
* @secure
|
|
17889
18477
|
*/
|
|
@@ -17893,6 +18481,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17893
18481
|
*
|
|
17894
18482
|
* @tags slas
|
|
17895
18483
|
* @name SlasUpdate
|
|
18484
|
+
* @summary Update Sla
|
|
17896
18485
|
* @request POST:/slas.update
|
|
17897
18486
|
* @secure
|
|
17898
18487
|
*/
|
|
@@ -17902,6 +18491,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17902
18491
|
*
|
|
17903
18492
|
* @tags snap-ins
|
|
17904
18493
|
* @name SnapInsResources
|
|
18494
|
+
* @summary Resources Snap Ins
|
|
17905
18495
|
* @request GET:/snap-ins.resources
|
|
17906
18496
|
* @secure
|
|
17907
18497
|
*/
|
|
@@ -17916,6 +18506,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17916
18506
|
*
|
|
17917
18507
|
* @tags snap-ins
|
|
17918
18508
|
* @name SnapInsResourcesPost
|
|
18509
|
+
* @summary Resources Snap Ins (POST)
|
|
17919
18510
|
* @request POST:/snap-ins.resources
|
|
17920
18511
|
* @secure
|
|
17921
18512
|
*/
|
|
@@ -17925,6 +18516,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17925
18516
|
*
|
|
17926
18517
|
* @tags snap-ins
|
|
17927
18518
|
* @name SnapInsUpdate
|
|
18519
|
+
* @summary Update Snap In
|
|
17928
18520
|
* @request POST:/snap-ins.update
|
|
17929
18521
|
* @secure
|
|
17930
18522
|
*/
|
|
@@ -17934,6 +18526,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17934
18526
|
*
|
|
17935
18527
|
* @tags snap-widgets
|
|
17936
18528
|
* @name SnapWidgetsCreate
|
|
18529
|
+
* @summary Create Snap Widget
|
|
17937
18530
|
* @request POST:/snap-widgets.create
|
|
17938
18531
|
* @secure
|
|
17939
18532
|
*/
|
|
@@ -17943,6 +18536,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17943
18536
|
*
|
|
17944
18537
|
* @tags customization
|
|
17945
18538
|
* @name CustomStagesCreate
|
|
18539
|
+
* @summary Create Stages Custom
|
|
17946
18540
|
* @request POST:/stages.custom.create
|
|
17947
18541
|
* @secure
|
|
17948
18542
|
*/
|
|
@@ -17952,6 +18546,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17952
18546
|
*
|
|
17953
18547
|
* @tags customization
|
|
17954
18548
|
* @name CustomStagesGet
|
|
18549
|
+
* @summary Get Stages Custom
|
|
17955
18550
|
* @request GET:/stages.custom.get
|
|
17956
18551
|
* @secure
|
|
17957
18552
|
*/
|
|
@@ -17964,6 +18559,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17964
18559
|
*
|
|
17965
18560
|
* @tags customization
|
|
17966
18561
|
* @name CustomStagesGetPost
|
|
18562
|
+
* @summary Get Stages Custom (POST)
|
|
17967
18563
|
* @request POST:/stages.custom.get
|
|
17968
18564
|
* @secure
|
|
17969
18565
|
*/
|
|
@@ -17973,6 +18569,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17973
18569
|
*
|
|
17974
18570
|
* @tags customization
|
|
17975
18571
|
* @name CustomStagesList
|
|
18572
|
+
* @summary List Stages Custom
|
|
17976
18573
|
* @request GET:/stages.custom.list
|
|
17977
18574
|
* @secure
|
|
17978
18575
|
*/
|
|
@@ -17999,6 +18596,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
17999
18596
|
*
|
|
18000
18597
|
* @tags customization
|
|
18001
18598
|
* @name CustomStagesListPost
|
|
18599
|
+
* @summary List Stages Custom (POST)
|
|
18002
18600
|
* @request POST:/stages.custom.list
|
|
18003
18601
|
* @secure
|
|
18004
18602
|
*/
|
|
@@ -18008,6 +18606,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18008
18606
|
*
|
|
18009
18607
|
* @tags customization
|
|
18010
18608
|
* @name CustomStagesUpdate
|
|
18609
|
+
* @summary Update Stages Custom
|
|
18011
18610
|
* @request POST:/stages.custom.update
|
|
18012
18611
|
* @secure
|
|
18013
18612
|
*/
|
|
@@ -18017,6 +18616,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18017
18616
|
*
|
|
18018
18617
|
* @tags customization
|
|
18019
18618
|
* @name CustomStatesCreate
|
|
18619
|
+
* @summary Create States Custom
|
|
18020
18620
|
* @request POST:/states.custom.create
|
|
18021
18621
|
* @secure
|
|
18022
18622
|
*/
|
|
@@ -18026,6 +18626,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18026
18626
|
*
|
|
18027
18627
|
* @tags customization
|
|
18028
18628
|
* @name CustomStatesGet
|
|
18629
|
+
* @summary Get States Custom
|
|
18029
18630
|
* @request GET:/states.custom.get
|
|
18030
18631
|
* @secure
|
|
18031
18632
|
*/
|
|
@@ -18038,6 +18639,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18038
18639
|
*
|
|
18039
18640
|
* @tags customization
|
|
18040
18641
|
* @name CustomStatesGetPost
|
|
18642
|
+
* @summary Get States Custom (POST)
|
|
18041
18643
|
* @request POST:/states.custom.get
|
|
18042
18644
|
* @secure
|
|
18043
18645
|
*/
|
|
@@ -18047,6 +18649,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18047
18649
|
*
|
|
18048
18650
|
* @tags customization
|
|
18049
18651
|
* @name CustomStatesList
|
|
18652
|
+
* @summary List States Custom
|
|
18050
18653
|
* @request GET:/states.custom.list
|
|
18051
18654
|
* @secure
|
|
18052
18655
|
*/
|
|
@@ -18075,6 +18678,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18075
18678
|
*
|
|
18076
18679
|
* @tags customization
|
|
18077
18680
|
* @name CustomStatesListPost
|
|
18681
|
+
* @summary List States Custom (POST)
|
|
18078
18682
|
* @request POST:/states.custom.list
|
|
18079
18683
|
* @secure
|
|
18080
18684
|
*/
|
|
@@ -18084,6 +18688,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18084
18688
|
*
|
|
18085
18689
|
* @tags customization
|
|
18086
18690
|
* @name CustomStatesUpdate
|
|
18691
|
+
* @summary Update States Custom
|
|
18087
18692
|
* @request POST:/states.custom.update
|
|
18088
18693
|
* @secure
|
|
18089
18694
|
*/
|
|
@@ -18093,6 +18698,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18093
18698
|
*
|
|
18094
18699
|
* @tags surveys
|
|
18095
18700
|
* @name SurveysCreate
|
|
18701
|
+
* @summary Create Survey
|
|
18096
18702
|
* @request POST:/surveys.create
|
|
18097
18703
|
* @secure
|
|
18098
18704
|
*/
|
|
@@ -18102,6 +18708,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18102
18708
|
*
|
|
18103
18709
|
* @tags surveys
|
|
18104
18710
|
* @name SurveysDelete
|
|
18711
|
+
* @summary Delete Survey
|
|
18105
18712
|
* @request POST:/surveys.delete
|
|
18106
18713
|
* @secure
|
|
18107
18714
|
*/
|
|
@@ -18111,6 +18718,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18111
18718
|
*
|
|
18112
18719
|
* @tags surveys
|
|
18113
18720
|
* @name SurveysList
|
|
18721
|
+
* @summary List Surveys
|
|
18114
18722
|
* @request GET:/surveys.list
|
|
18115
18723
|
* @secure
|
|
18116
18724
|
*/
|
|
@@ -18146,6 +18754,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18146
18754
|
*
|
|
18147
18755
|
* @tags surveys
|
|
18148
18756
|
* @name SurveysListPost
|
|
18757
|
+
* @summary List Surveys (POST)
|
|
18149
18758
|
* @request POST:/surveys.list
|
|
18150
18759
|
* @secure
|
|
18151
18760
|
*/
|
|
@@ -18155,6 +18764,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18155
18764
|
*
|
|
18156
18765
|
* @tags surveys
|
|
18157
18766
|
* @name SurveysResponsesList
|
|
18767
|
+
* @summary List Surveys Responses
|
|
18158
18768
|
* @request GET:/surveys.responses.list
|
|
18159
18769
|
* @secure
|
|
18160
18770
|
*/
|
|
@@ -18205,6 +18815,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18205
18815
|
*
|
|
18206
18816
|
* @tags surveys
|
|
18207
18817
|
* @name SurveysResponsesListPost
|
|
18818
|
+
* @summary List Surveys Responses (POST)
|
|
18208
18819
|
* @request POST:/surveys.responses.list
|
|
18209
18820
|
* @secure
|
|
18210
18821
|
*/
|
|
@@ -18214,6 +18825,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18214
18825
|
*
|
|
18215
18826
|
* @tags surveys
|
|
18216
18827
|
* @name SurveysSend
|
|
18828
|
+
* @summary Send Surveys
|
|
18217
18829
|
* @request POST:/surveys.send
|
|
18218
18830
|
* @secure
|
|
18219
18831
|
*/
|
|
@@ -18223,6 +18835,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18223
18835
|
*
|
|
18224
18836
|
* @tags surveys
|
|
18225
18837
|
* @name SurveysSubmit
|
|
18838
|
+
* @summary Submit Surveys
|
|
18226
18839
|
* @request POST:/surveys.submit
|
|
18227
18840
|
* @secure
|
|
18228
18841
|
*/
|
|
@@ -18232,6 +18845,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18232
18845
|
*
|
|
18233
18846
|
* @tags surveys
|
|
18234
18847
|
* @name SurveysUpdate
|
|
18848
|
+
* @summary Update Survey
|
|
18235
18849
|
* @request POST:/surveys.update
|
|
18236
18850
|
* @secure
|
|
18237
18851
|
*/
|
|
@@ -18241,6 +18855,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18241
18855
|
*
|
|
18242
18856
|
* @tags sys-users
|
|
18243
18857
|
* @name SysUsersList
|
|
18858
|
+
* @summary List Sys Users
|
|
18244
18859
|
* @request GET:/sys-users.list
|
|
18245
18860
|
* @secure
|
|
18246
18861
|
*/
|
|
@@ -18269,6 +18884,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18269
18884
|
*
|
|
18270
18885
|
* @tags sys-users
|
|
18271
18886
|
* @name SysUsersListPost
|
|
18887
|
+
* @summary List Sys Users (POST)
|
|
18272
18888
|
* @request POST:/sys-users.list
|
|
18273
18889
|
* @secure
|
|
18274
18890
|
*/
|
|
@@ -18278,6 +18894,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18278
18894
|
*
|
|
18279
18895
|
* @tags sys-users
|
|
18280
18896
|
* @name SysUsersUpdate
|
|
18897
|
+
* @summary Update Sys User
|
|
18281
18898
|
* @request POST:/sys-users.update
|
|
18282
18899
|
* @secure
|
|
18283
18900
|
*/
|
|
@@ -18287,6 +18904,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18287
18904
|
*
|
|
18288
18905
|
* @tags tags
|
|
18289
18906
|
* @name TagsCreate
|
|
18907
|
+
* @summary Create Tag
|
|
18290
18908
|
* @request POST:/tags.create
|
|
18291
18909
|
* @secure
|
|
18292
18910
|
*/
|
|
@@ -18296,6 +18914,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18296
18914
|
*
|
|
18297
18915
|
* @tags tags
|
|
18298
18916
|
* @name TagsDelete
|
|
18917
|
+
* @summary Delete Tag
|
|
18299
18918
|
* @request POST:/tags.delete
|
|
18300
18919
|
* @secure
|
|
18301
18920
|
*/
|
|
@@ -18305,6 +18924,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18305
18924
|
*
|
|
18306
18925
|
* @tags tags
|
|
18307
18926
|
* @name TagsGet
|
|
18927
|
+
* @summary Get Tag
|
|
18308
18928
|
* @request GET:/tags.get
|
|
18309
18929
|
* @secure
|
|
18310
18930
|
*/
|
|
@@ -18320,6 +18940,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18320
18940
|
*
|
|
18321
18941
|
* @tags tags
|
|
18322
18942
|
* @name TagsGetPost
|
|
18943
|
+
* @summary Get Tag (POST)
|
|
18323
18944
|
* @request POST:/tags.get
|
|
18324
18945
|
* @secure
|
|
18325
18946
|
*/
|
|
@@ -18329,6 +18950,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18329
18950
|
*
|
|
18330
18951
|
* @tags tags
|
|
18331
18952
|
* @name TagsList
|
|
18953
|
+
* @summary List Tags
|
|
18332
18954
|
* @request GET:/tags.list
|
|
18333
18955
|
* @secure
|
|
18334
18956
|
*/
|
|
@@ -18358,6 +18980,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18358
18980
|
*
|
|
18359
18981
|
* @tags tags
|
|
18360
18982
|
* @name TagsListPost
|
|
18983
|
+
* @summary List Tags (POST)
|
|
18361
18984
|
* @request POST:/tags.list
|
|
18362
18985
|
* @secure
|
|
18363
18986
|
*/
|
|
@@ -18367,6 +18990,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18367
18990
|
*
|
|
18368
18991
|
* @tags tags
|
|
18369
18992
|
* @name TagsUpdate
|
|
18993
|
+
* @summary Update Tag
|
|
18370
18994
|
* @request POST:/tags.update
|
|
18371
18995
|
* @secure
|
|
18372
18996
|
*/
|
|
@@ -18376,6 +19000,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18376
19000
|
*
|
|
18377
19001
|
* @tags timeline-entries
|
|
18378
19002
|
* @name TimelineEntriesCreate
|
|
19003
|
+
* @summary Create Timeline Entry
|
|
18379
19004
|
* @request POST:/timeline-entries.create
|
|
18380
19005
|
* @secure
|
|
18381
19006
|
*/
|
|
@@ -18385,6 +19010,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18385
19010
|
*
|
|
18386
19011
|
* @tags timeline-entries
|
|
18387
19012
|
* @name TimelineEntriesDelete
|
|
19013
|
+
* @summary Delete Timeline Entry
|
|
18388
19014
|
* @request POST:/timeline-entries.delete
|
|
18389
19015
|
* @secure
|
|
18390
19016
|
*/
|
|
@@ -18394,13 +19020,14 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18394
19020
|
*
|
|
18395
19021
|
* @tags timeline-entries
|
|
18396
19022
|
* @name TimelineEntriesGet
|
|
19023
|
+
* @summary Get Timeline Entry
|
|
18397
19024
|
* @request GET:/timeline-entries.get
|
|
18398
19025
|
* @secure
|
|
18399
19026
|
*/
|
|
18400
19027
|
timelineEntriesGet: (query: {
|
|
18401
19028
|
/**
|
|
18402
19029
|
* The ID of the timeline entry to get.
|
|
18403
|
-
* @example "don:core
|
|
19030
|
+
* @example "don:core:dvrv-us-1:devo/example:ticket/123:comment/comment-id"
|
|
18404
19031
|
*/
|
|
18405
19032
|
id: string;
|
|
18406
19033
|
/**
|
|
@@ -18416,6 +19043,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18416
19043
|
*
|
|
18417
19044
|
* @tags timeline-entries
|
|
18418
19045
|
* @name TimelineEntriesGetPost
|
|
19046
|
+
* @summary Get Timeline Entry (POST)
|
|
18419
19047
|
* @request POST:/timeline-entries.get
|
|
18420
19048
|
* @secure
|
|
18421
19049
|
*/
|
|
@@ -18425,6 +19053,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18425
19053
|
*
|
|
18426
19054
|
* @tags timeline-entries
|
|
18427
19055
|
* @name TimelineEntriesList
|
|
19056
|
+
* @summary List Timeline Entries
|
|
18428
19057
|
* @request GET:/timeline-entries.list
|
|
18429
19058
|
* @secure
|
|
18430
19059
|
*/
|
|
@@ -18474,6 +19103,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18474
19103
|
*
|
|
18475
19104
|
* @tags timeline-entries
|
|
18476
19105
|
* @name TimelineEntriesListPost
|
|
19106
|
+
* @summary List Timeline Entries (POST)
|
|
18477
19107
|
* @request POST:/timeline-entries.list
|
|
18478
19108
|
* @secure
|
|
18479
19109
|
*/
|
|
@@ -18483,6 +19113,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18483
19113
|
*
|
|
18484
19114
|
* @tags timeline-entries
|
|
18485
19115
|
* @name TimelineEntriesUpdate
|
|
19116
|
+
* @summary Update Timeline Entry
|
|
18486
19117
|
* @request POST:/timeline-entries.update
|
|
18487
19118
|
* @secure
|
|
18488
19119
|
*/
|
|
@@ -18492,6 +19123,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18492
19123
|
*
|
|
18493
19124
|
* @tags event-source
|
|
18494
19125
|
* @name TrackEventsPublish
|
|
19126
|
+
* @summary Publish Track Events
|
|
18495
19127
|
* @request POST:/track-events.publish
|
|
18496
19128
|
* @secure
|
|
18497
19129
|
*/
|
|
@@ -18501,6 +19133,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18501
19133
|
*
|
|
18502
19134
|
* @tags product-usage
|
|
18503
19135
|
* @name UomsCount
|
|
19136
|
+
* @summary Count Uoms
|
|
18504
19137
|
* @request GET:/uoms.count
|
|
18505
19138
|
* @secure
|
|
18506
19139
|
*/
|
|
@@ -18532,6 +19165,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18532
19165
|
*
|
|
18533
19166
|
* @tags product-usage
|
|
18534
19167
|
* @name UomsCountPost
|
|
19168
|
+
* @summary Count Uoms (POST)
|
|
18535
19169
|
* @request POST:/uoms.count
|
|
18536
19170
|
* @secure
|
|
18537
19171
|
*/
|
|
@@ -18541,6 +19175,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18541
19175
|
*
|
|
18542
19176
|
* @tags product-usage
|
|
18543
19177
|
* @name UomsCreate
|
|
19178
|
+
* @summary Create Uom
|
|
18544
19179
|
* @request POST:/uoms.create
|
|
18545
19180
|
* @secure
|
|
18546
19181
|
*/
|
|
@@ -18550,6 +19185,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18550
19185
|
*
|
|
18551
19186
|
* @tags product-usage
|
|
18552
19187
|
* @name UomsDelete
|
|
19188
|
+
* @summary Delete Uom
|
|
18553
19189
|
* @request POST:/uoms.delete
|
|
18554
19190
|
* @secure
|
|
18555
19191
|
*/
|
|
@@ -18559,6 +19195,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18559
19195
|
*
|
|
18560
19196
|
* @tags product-usage
|
|
18561
19197
|
* @name UomsGet
|
|
19198
|
+
* @summary Get Uom
|
|
18562
19199
|
* @request GET:/uoms.get
|
|
18563
19200
|
* @secure
|
|
18564
19201
|
*/
|
|
@@ -18571,6 +19208,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18571
19208
|
*
|
|
18572
19209
|
* @tags product-usage
|
|
18573
19210
|
* @name UomsGetPost
|
|
19211
|
+
* @summary Get Uom (POST)
|
|
18574
19212
|
* @request POST:/uoms.get
|
|
18575
19213
|
* @secure
|
|
18576
19214
|
*/
|
|
@@ -18580,6 +19218,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18580
19218
|
*
|
|
18581
19219
|
* @tags product-usage
|
|
18582
19220
|
* @name UomsList
|
|
19221
|
+
* @summary List Uoms
|
|
18583
19222
|
* @request GET:/uoms.list
|
|
18584
19223
|
* @secure
|
|
18585
19224
|
*/
|
|
@@ -18632,6 +19271,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18632
19271
|
*
|
|
18633
19272
|
* @tags product-usage
|
|
18634
19273
|
* @name UomsListPost
|
|
19274
|
+
* @summary List Uoms (POST)
|
|
18635
19275
|
* @request POST:/uoms.list
|
|
18636
19276
|
* @secure
|
|
18637
19277
|
*/
|
|
@@ -18641,6 +19281,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18641
19281
|
*
|
|
18642
19282
|
* @tags product-usage
|
|
18643
19283
|
* @name UomsUpdate
|
|
19284
|
+
* @summary Update Uom
|
|
18644
19285
|
* @request POST:/uoms.update
|
|
18645
19286
|
* @secure
|
|
18646
19287
|
*/
|
|
@@ -18650,6 +19291,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18650
19291
|
*
|
|
18651
19292
|
* @tags webhooks
|
|
18652
19293
|
* @name WebhooksCreate
|
|
19294
|
+
* @summary Create Webhook
|
|
18653
19295
|
* @request POST:/webhooks.create
|
|
18654
19296
|
* @secure
|
|
18655
19297
|
*/
|
|
@@ -18659,6 +19301,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18659
19301
|
*
|
|
18660
19302
|
* @tags webhooks
|
|
18661
19303
|
* @name WebhooksDelete
|
|
19304
|
+
* @summary Delete Webhook
|
|
18662
19305
|
* @request POST:/webhooks.delete
|
|
18663
19306
|
* @secure
|
|
18664
19307
|
*/
|
|
@@ -18668,6 +19311,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18668
19311
|
*
|
|
18669
19312
|
* @tags webhooks
|
|
18670
19313
|
* @name WebhooksEvent
|
|
19314
|
+
* @summary Event Webhooks
|
|
18671
19315
|
* @request POST:/webhooks.event
|
|
18672
19316
|
* @secure
|
|
18673
19317
|
*/
|
|
@@ -18677,6 +19321,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18677
19321
|
*
|
|
18678
19322
|
* @tags webhooks
|
|
18679
19323
|
* @name WebhooksFetch
|
|
19324
|
+
* @summary Fetch Webhooks
|
|
18680
19325
|
* @request POST:/webhooks.fetch
|
|
18681
19326
|
* @secure
|
|
18682
19327
|
*/
|
|
@@ -18686,13 +19331,14 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18686
19331
|
*
|
|
18687
19332
|
* @tags webhooks
|
|
18688
19333
|
* @name WebhooksGet
|
|
19334
|
+
* @summary Get Webhook
|
|
18689
19335
|
* @request GET:/webhooks.get
|
|
18690
19336
|
* @secure
|
|
18691
19337
|
*/
|
|
18692
19338
|
webhooksGet: (query: {
|
|
18693
19339
|
/**
|
|
18694
19340
|
* ID for the webhook.
|
|
18695
|
-
* @example "don:integration
|
|
19341
|
+
* @example "don:integration:dvrv-us-1:devo/example:webhook/webhook-id"
|
|
18696
19342
|
*/
|
|
18697
19343
|
id: string;
|
|
18698
19344
|
}, params?: RequestParams) => Promise<AxiosResponse<WebhooksGetResponse, any>>;
|
|
@@ -18701,6 +19347,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18701
19347
|
*
|
|
18702
19348
|
* @tags webhooks
|
|
18703
19349
|
* @name WebhooksGetPost
|
|
19350
|
+
* @summary Get Webhook (POST)
|
|
18704
19351
|
* @request POST:/webhooks.get
|
|
18705
19352
|
* @secure
|
|
18706
19353
|
*/
|
|
@@ -18710,6 +19357,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18710
19357
|
*
|
|
18711
19358
|
* @tags webhooks
|
|
18712
19359
|
* @name WebhooksList
|
|
19360
|
+
* @summary List Webhooks
|
|
18713
19361
|
* @request GET:/webhooks.list
|
|
18714
19362
|
* @secure
|
|
18715
19363
|
*/
|
|
@@ -18719,6 +19367,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18719
19367
|
*
|
|
18720
19368
|
* @tags webhooks
|
|
18721
19369
|
* @name WebhooksListPost
|
|
19370
|
+
* @summary List Webhooks (POST)
|
|
18722
19371
|
* @request POST:/webhooks.list
|
|
18723
19372
|
* @secure
|
|
18724
19373
|
*/
|
|
@@ -18728,15 +19377,17 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18728
19377
|
*
|
|
18729
19378
|
* @tags webhooks
|
|
18730
19379
|
* @name WebhooksUpdate
|
|
19380
|
+
* @summary Update Webhook
|
|
18731
19381
|
* @request POST:/webhooks.update
|
|
18732
19382
|
* @secure
|
|
18733
19383
|
*/
|
|
18734
19384
|
webhooksUpdate: (data: WebhooksUpdateRequest, params?: RequestParams) => Promise<AxiosResponse<WebhooksUpdateResponse, any>>;
|
|
18735
19385
|
/**
|
|
18736
|
-
* @description Creates new work ([issue](https://devrev.ai/docs/product/build), [ticket](https://devrev.ai/docs/product/support)) item. [task](https://
|
|
19386
|
+
* @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.
|
|
18737
19387
|
*
|
|
18738
19388
|
* @tags works
|
|
18739
19389
|
* @name WorksCreate
|
|
19390
|
+
* @summary Create Work
|
|
18740
19391
|
* @request POST:/works.create
|
|
18741
19392
|
* @secure
|
|
18742
19393
|
*/
|
|
@@ -18746,6 +19397,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18746
19397
|
*
|
|
18747
19398
|
* @tags works
|
|
18748
19399
|
* @name WorksDelete
|
|
19400
|
+
* @summary Delete Work
|
|
18749
19401
|
* @request POST:/works.delete
|
|
18750
19402
|
* @secure
|
|
18751
19403
|
*/
|
|
@@ -18755,6 +19407,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18755
19407
|
*
|
|
18756
19408
|
* @tags works
|
|
18757
19409
|
* @name WorksExport
|
|
19410
|
+
* @summary Export Works
|
|
18758
19411
|
* @request GET:/works.export
|
|
18759
19412
|
* @secure
|
|
18760
19413
|
*/
|
|
@@ -18827,6 +19480,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18827
19480
|
'stage.name'?: string[];
|
|
18828
19481
|
/** Filters for issues that are staged. */
|
|
18829
19482
|
'staged_info.is_staged'?: boolean;
|
|
19483
|
+
/** Filters for work with any of the provided states. */
|
|
19484
|
+
state?: string[];
|
|
18830
19485
|
/** Filters for issues with this specific external reference. */
|
|
18831
19486
|
'sync_metadata.external_reference'?: string[];
|
|
18832
19487
|
/** Filters for works with selected sync statuses. */
|
|
@@ -18874,6 +19529,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18874
19529
|
*
|
|
18875
19530
|
* @tags works
|
|
18876
19531
|
* @name WorksExportPost
|
|
19532
|
+
* @summary Export Works (POST)
|
|
18877
19533
|
* @request POST:/works.export
|
|
18878
19534
|
* @secure
|
|
18879
19535
|
*/
|
|
@@ -18883,6 +19539,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18883
19539
|
*
|
|
18884
19540
|
* @tags works
|
|
18885
19541
|
* @name WorksGet
|
|
19542
|
+
* @summary Get Work
|
|
18886
19543
|
* @request GET:/works.get
|
|
18887
19544
|
* @secure
|
|
18888
19545
|
*/
|
|
@@ -18898,6 +19555,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18898
19555
|
*
|
|
18899
19556
|
* @tags works
|
|
18900
19557
|
* @name WorksGetPost
|
|
19558
|
+
* @summary Get Work (POST)
|
|
18901
19559
|
* @request POST:/works.get
|
|
18902
19560
|
* @secure
|
|
18903
19561
|
*/
|
|
@@ -18907,6 +19565,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18907
19565
|
*
|
|
18908
19566
|
* @tags works
|
|
18909
19567
|
* @name WorksList
|
|
19568
|
+
* @summary List Works
|
|
18910
19569
|
* @request GET:/works.list
|
|
18911
19570
|
* @secure
|
|
18912
19571
|
*/
|
|
@@ -18988,6 +19647,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
18988
19647
|
'stage.name'?: string[];
|
|
18989
19648
|
/** Filters for issues that are staged. */
|
|
18990
19649
|
'staged_info.is_staged'?: boolean;
|
|
19650
|
+
/** Filters for work with any of the provided states. */
|
|
19651
|
+
state?: string[];
|
|
18991
19652
|
/** Filters for issues with this specific external reference. */
|
|
18992
19653
|
'sync_metadata.external_reference'?: string[];
|
|
18993
19654
|
/** Filters for works with selected sync statuses. */
|
|
@@ -19035,6 +19696,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
19035
19696
|
*
|
|
19036
19697
|
* @tags works
|
|
19037
19698
|
* @name WorksListPost
|
|
19699
|
+
* @summary List Works (POST)
|
|
19038
19700
|
* @request POST:/works.list
|
|
19039
19701
|
* @secure
|
|
19040
19702
|
*/
|
|
@@ -19044,6 +19706,7 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
19044
19706
|
*
|
|
19045
19707
|
* @tags works
|
|
19046
19708
|
* @name WorksUpdate
|
|
19709
|
+
* @summary Update Work
|
|
19047
19710
|
* @request POST:/works.update
|
|
19048
19711
|
* @secure
|
|
19049
19712
|
*/
|