@devrev/typescript-sdk 1.1.12 → 1.1.14
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.
|
@@ -1068,10 +1068,15 @@ export interface CustomSchemaFragmentsSetRequestAppFragment {
|
|
|
1068
1068
|
}
|
|
1069
1069
|
/** custom-schema-fragments-set-request-custom-type-fragment */
|
|
1070
1070
|
export interface CustomSchemaFragmentsSetRequestCustomTypeFragment {
|
|
1071
|
+
/**
|
|
1072
|
+
* Path components used to display available custom types in tree
|
|
1073
|
+
* form.
|
|
1074
|
+
*/
|
|
1075
|
+
path?: CustomTypePathComponent[];
|
|
1071
1076
|
/** The ID of the associated custom stage diagram. */
|
|
1072
1077
|
stage_diagram?: string;
|
|
1073
1078
|
/** List of stock field enum overrides. */
|
|
1074
|
-
|
|
1079
|
+
stock_field_uenum_overrides?: StockFieldUenumOverride[];
|
|
1075
1080
|
/** The string used to populate the subtype in the leaf type. */
|
|
1076
1081
|
subtype: string;
|
|
1077
1082
|
/** The display name of the subtype. */
|
|
@@ -1091,6 +1096,11 @@ export interface CustomSchemaFragmentsSetResponse {
|
|
|
1091
1096
|
}
|
|
1092
1097
|
/** custom-type-fragment */
|
|
1093
1098
|
export type CustomTypeFragment = CustomSchemaFragmentBase;
|
|
1099
|
+
/**
|
|
1100
|
+
* custom-type-path-component
|
|
1101
|
+
* Path component for rendering custom type lists in tree form.
|
|
1102
|
+
*/
|
|
1103
|
+
export type CustomTypePathComponent = object;
|
|
1094
1104
|
/**
|
|
1095
1105
|
* date-filter
|
|
1096
1106
|
* Provides ways to specify date ranges on objects.
|
|
@@ -2865,6 +2875,8 @@ export interface RevUsersListRequest {
|
|
|
2865
2875
|
email?: string[];
|
|
2866
2876
|
/** List of external refs to filter Rev users for. */
|
|
2867
2877
|
external_ref?: string[];
|
|
2878
|
+
/** Value of is_verified field to filter the Rev users. */
|
|
2879
|
+
is_verified?: boolean;
|
|
2868
2880
|
/**
|
|
2869
2881
|
* The maximum number of Rev users to return. The default is '50'.
|
|
2870
2882
|
* @format int32
|
|
@@ -3715,10 +3727,10 @@ export interface StageUpdate {
|
|
|
3715
3727
|
name?: string;
|
|
3716
3728
|
}
|
|
3717
3729
|
/**
|
|
3718
|
-
* stock-field-
|
|
3730
|
+
* stock-field-uenum-override
|
|
3719
3731
|
* Override for the allowed values of a stock field enum.
|
|
3720
3732
|
*/
|
|
3721
|
-
export type
|
|
3733
|
+
export type StockFieldUenumOverride = object;
|
|
3722
3734
|
/** subtype */
|
|
3723
3735
|
export interface Subtype {
|
|
3724
3736
|
/** Display name of the subtype. */
|
|
@@ -4636,6 +4648,11 @@ export interface WorksExportRequest {
|
|
|
4636
4648
|
sort_by?: string[];
|
|
4637
4649
|
/** The filter for stages. */
|
|
4638
4650
|
stage?: StageFilter;
|
|
4651
|
+
/**
|
|
4652
|
+
* Filters for work with any of the provided tags.
|
|
4653
|
+
* @example ["don:core:<partition>:devo/<dev-org-id>:tag/<tag-id>"]
|
|
4654
|
+
*/
|
|
4655
|
+
tags?: string[];
|
|
4639
4656
|
/** Provides ways to specify date ranges on objects. */
|
|
4640
4657
|
target_close_date?: DateFilter;
|
|
4641
4658
|
ticket?: WorksFilterTicket;
|
|
@@ -4752,6 +4769,11 @@ export interface WorksListRequest {
|
|
|
4752
4769
|
sort_by?: string[];
|
|
4753
4770
|
/** The filter for stages. */
|
|
4754
4771
|
stage?: StageFilter;
|
|
4772
|
+
/**
|
|
4773
|
+
* Filters for work with any of the provided tags.
|
|
4774
|
+
* @example ["don:core:<partition>:devo/<dev-org-id>:tag/<tag-id>"]
|
|
4775
|
+
*/
|
|
4776
|
+
tags?: string[];
|
|
4755
4777
|
/** Provides ways to specify date ranges on objects. */
|
|
4756
4778
|
target_close_date?: DateFilter;
|
|
4757
4779
|
ticket?: WorksFilterTicket;
|
|
@@ -6207,6 +6229,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6207
6229
|
email?: string[];
|
|
6208
6230
|
/** List of external refs to filter Rev users for. */
|
|
6209
6231
|
external_ref?: string[];
|
|
6232
|
+
/** Value of is_verified field to filter the Rev users. */
|
|
6233
|
+
is_verified?: boolean;
|
|
6210
6234
|
/**
|
|
6211
6235
|
* The maximum number of Rev users to return. The default is '50'.
|
|
6212
6236
|
* @format int32
|
|
@@ -6687,6 +6711,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6687
6711
|
sort_by?: string[];
|
|
6688
6712
|
/** Filters for records in the provided stage(s) by name. */
|
|
6689
6713
|
'stage.name'?: string[];
|
|
6714
|
+
/**
|
|
6715
|
+
* Filters for work with any of the provided tags.
|
|
6716
|
+
* @example ["don:core:<partition>:devo/<dev-org-id>:tag/<tag-id>"]
|
|
6717
|
+
*/
|
|
6718
|
+
tags?: string[];
|
|
6690
6719
|
/** Filters for tickets belonging to specific groups. */
|
|
6691
6720
|
'ticket.group'?: string[];
|
|
6692
6721
|
/** Filters for tickets that are spam. */
|
|
@@ -6798,6 +6827,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6798
6827
|
sort_by?: string[];
|
|
6799
6828
|
/** Filters for records in the provided stage(s) by name. */
|
|
6800
6829
|
'stage.name'?: string[];
|
|
6830
|
+
/**
|
|
6831
|
+
* Filters for work with any of the provided tags.
|
|
6832
|
+
* @example ["don:core:<partition>:devo/<dev-org-id>:tag/<tag-id>"]
|
|
6833
|
+
*/
|
|
6834
|
+
tags?: string[];
|
|
6801
6835
|
/** Filters for tickets belonging to specific groups. */
|
|
6802
6836
|
'ticket.group'?: string[];
|
|
6803
6837
|
/** Filters for tickets that are spam. */
|
|
@@ -2784,6 +2784,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
2784
2784
|
owned_by?: string[];
|
|
2785
2785
|
/** Filters for records in the provided stage(s) by name. */
|
|
2786
2786
|
'stage.name'?: string[];
|
|
2787
|
+
/**
|
|
2788
|
+
* Filters for work with any of the provided tags.
|
|
2789
|
+
* @example ["don:core:<partition>:devo/<dev-org-id>:tag/<tag-id>"]
|
|
2790
|
+
*/
|
|
2791
|
+
tags?: string[];
|
|
2787
2792
|
/** Filters for tickets belonging to specific groups. */
|
|
2788
2793
|
'ticket.group'?: string[];
|
|
2789
2794
|
/** Filters for tickets that are spam. */
|
|
@@ -2866,6 +2871,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
2866
2871
|
owned_by?: string[];
|
|
2867
2872
|
/** Filters for records in the provided stage(s) by name. */
|
|
2868
2873
|
'stage.name'?: string[];
|
|
2874
|
+
/**
|
|
2875
|
+
* Filters for work with any of the provided tags.
|
|
2876
|
+
* @example ["don:core:<partition>:devo/<dev-org-id>:tag/<tag-id>"]
|
|
2877
|
+
*/
|
|
2878
|
+
tags?: string[];
|
|
2869
2879
|
/** Filters for tickets belonging to specific groups. */
|
|
2870
2880
|
'ticket.group'?: string[];
|
|
2871
2881
|
/** Filters for tickets that are spam. */
|