@devrev/typescript-sdk 1.1.13 → 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.
|
@@ -1076,7 +1076,7 @@ export interface CustomSchemaFragmentsSetRequestCustomTypeFragment {
|
|
|
1076
1076
|
/** The ID of the associated custom stage diagram. */
|
|
1077
1077
|
stage_diagram?: string;
|
|
1078
1078
|
/** List of stock field enum overrides. */
|
|
1079
|
-
|
|
1079
|
+
stock_field_uenum_overrides?: StockFieldUenumOverride[];
|
|
1080
1080
|
/** The string used to populate the subtype in the leaf type. */
|
|
1081
1081
|
subtype: string;
|
|
1082
1082
|
/** The display name of the subtype. */
|
|
@@ -3727,10 +3727,10 @@ export interface StageUpdate {
|
|
|
3727
3727
|
name?: string;
|
|
3728
3728
|
}
|
|
3729
3729
|
/**
|
|
3730
|
-
* stock-field-
|
|
3730
|
+
* stock-field-uenum-override
|
|
3731
3731
|
* Override for the allowed values of a stock field enum.
|
|
3732
3732
|
*/
|
|
3733
|
-
export type
|
|
3733
|
+
export type StockFieldUenumOverride = object;
|
|
3734
3734
|
/** subtype */
|
|
3735
3735
|
export interface Subtype {
|
|
3736
3736
|
/** Display name of the subtype. */
|
|
@@ -4648,6 +4648,11 @@ export interface WorksExportRequest {
|
|
|
4648
4648
|
sort_by?: string[];
|
|
4649
4649
|
/** The filter for stages. */
|
|
4650
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[];
|
|
4651
4656
|
/** Provides ways to specify date ranges on objects. */
|
|
4652
4657
|
target_close_date?: DateFilter;
|
|
4653
4658
|
ticket?: WorksFilterTicket;
|
|
@@ -4764,6 +4769,11 @@ export interface WorksListRequest {
|
|
|
4764
4769
|
sort_by?: string[];
|
|
4765
4770
|
/** The filter for stages. */
|
|
4766
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[];
|
|
4767
4777
|
/** Provides ways to specify date ranges on objects. */
|
|
4768
4778
|
target_close_date?: DateFilter;
|
|
4769
4779
|
ticket?: WorksFilterTicket;
|
|
@@ -6701,6 +6711,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6701
6711
|
sort_by?: string[];
|
|
6702
6712
|
/** Filters for records in the provided stage(s) by name. */
|
|
6703
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[];
|
|
6704
6719
|
/** Filters for tickets belonging to specific groups. */
|
|
6705
6720
|
'ticket.group'?: string[];
|
|
6706
6721
|
/** Filters for tickets that are spam. */
|
|
@@ -6812,6 +6827,11 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6812
6827
|
sort_by?: string[];
|
|
6813
6828
|
/** Filters for records in the provided stage(s) by name. */
|
|
6814
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[];
|
|
6815
6835
|
/** Filters for tickets belonging to specific groups. */
|
|
6816
6836
|
'ticket.group'?: string[];
|
|
6817
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. */
|