@devrev/typescript-sdk 1.1.50 → 1.1.51
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.
|
@@ -5036,7 +5036,32 @@ export interface EngagementsUpdateResponse {
|
|
|
5036
5036
|
engagement: Engagement;
|
|
5037
5037
|
}
|
|
5038
5038
|
/** enhancement */
|
|
5039
|
-
export type Enhancement = PartBase
|
|
5039
|
+
export type Enhancement = PartBase & {
|
|
5040
|
+
/**
|
|
5041
|
+
* Actual close date for the object.
|
|
5042
|
+
* @format date-time
|
|
5043
|
+
* @example "2023-01-01T12:00:00.000Z"
|
|
5044
|
+
*/
|
|
5045
|
+
actual_close_date?: string;
|
|
5046
|
+
/**
|
|
5047
|
+
* Actual start date for the object.
|
|
5048
|
+
* @format date-time
|
|
5049
|
+
* @example "2023-01-01T12:00:00.000Z"
|
|
5050
|
+
*/
|
|
5051
|
+
actual_start_date?: string;
|
|
5052
|
+
/**
|
|
5053
|
+
* Target close date for the object.
|
|
5054
|
+
* @format date-time
|
|
5055
|
+
* @example "2023-01-01T12:00:00.000Z"
|
|
5056
|
+
*/
|
|
5057
|
+
target_close_date?: string;
|
|
5058
|
+
/**
|
|
5059
|
+
* Target start date for the object.
|
|
5060
|
+
* @format date-time
|
|
5061
|
+
* @example "2023-01-01T12:00:00.000Z"
|
|
5062
|
+
*/
|
|
5063
|
+
target_start_date?: string;
|
|
5064
|
+
};
|
|
5040
5065
|
/** enhancement-summary */
|
|
5041
5066
|
export type EnhancementSummary = PartBaseSummary;
|
|
5042
5067
|
/**
|
|
@@ -11136,6 +11161,7 @@ export declare enum SnapWidgetNamespace {
|
|
|
11136
11161
|
CommentSuggestionReplies = "comment_suggestion_replies",
|
|
11137
11162
|
EmailPreview = "email_preview",
|
|
11138
11163
|
LinkPreview = "link_preview",
|
|
11164
|
+
MeetingPreview = "meeting_preview",
|
|
11139
11165
|
PlugNudge = "plug_nudge"
|
|
11140
11166
|
}
|
|
11141
11167
|
/** The status of the snap widget. */
|
|
@@ -14261,6 +14287,8 @@ export interface WorksFilterTicket {
|
|
|
14261
14287
|
channels?: TicketChannels[];
|
|
14262
14288
|
/** Filters for tickets belonging to specific groups. */
|
|
14263
14289
|
group?: string[];
|
|
14290
|
+
/** Filters for frozen tickets. */
|
|
14291
|
+
is_frozen?: boolean;
|
|
14264
14292
|
/** Filters for tickets that are spam. */
|
|
14265
14293
|
is_spam?: boolean;
|
|
14266
14294
|
/** Filters for tickets that need response. */
|
|
@@ -20143,6 +20171,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
20143
20171
|
'ticket.channels'?: TicketChannels[];
|
|
20144
20172
|
/** Filters for tickets belonging to specific groups. */
|
|
20145
20173
|
'ticket.group'?: string[];
|
|
20174
|
+
/** Filters for frozen tickets. */
|
|
20175
|
+
'ticket.is_frozen'?: boolean;
|
|
20146
20176
|
/** Filters for tickets that are spam. */
|
|
20147
20177
|
'ticket.is_spam'?: boolean;
|
|
20148
20178
|
/** Filters for tickets that need response. */
|
|
@@ -20310,6 +20340,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
20310
20340
|
'ticket.channels'?: TicketChannels[];
|
|
20311
20341
|
/** Filters for tickets belonging to specific groups. */
|
|
20312
20342
|
'ticket.group'?: string[];
|
|
20343
|
+
/** Filters for frozen tickets. */
|
|
20344
|
+
'ticket.is_frozen'?: boolean;
|
|
20313
20345
|
/** Filters for tickets that are spam. */
|
|
20314
20346
|
'ticket.is_spam'?: boolean;
|
|
20315
20347
|
/** Filters for tickets that need response. */
|
|
@@ -966,6 +966,7 @@ var SnapWidgetNamespace;
|
|
|
966
966
|
SnapWidgetNamespace["CommentSuggestionReplies"] = "comment_suggestion_replies";
|
|
967
967
|
SnapWidgetNamespace["EmailPreview"] = "email_preview";
|
|
968
968
|
SnapWidgetNamespace["LinkPreview"] = "link_preview";
|
|
969
|
+
SnapWidgetNamespace["MeetingPreview"] = "meeting_preview";
|
|
969
970
|
SnapWidgetNamespace["PlugNudge"] = "plug_nudge";
|
|
970
971
|
})(SnapWidgetNamespace = exports.SnapWidgetNamespace || (exports.SnapWidgetNamespace = {}));
|
|
971
972
|
/** The status of the snap widget. */
|
|
@@ -1493,7 +1493,32 @@ export interface DevUsersSelfResponse {
|
|
|
1493
1493
|
/** empty */
|
|
1494
1494
|
export type Empty = object;
|
|
1495
1495
|
/** enhancement */
|
|
1496
|
-
export type Enhancement = PartBase
|
|
1496
|
+
export type Enhancement = PartBase & {
|
|
1497
|
+
/**
|
|
1498
|
+
* Actual close date for the object.
|
|
1499
|
+
* @format date-time
|
|
1500
|
+
* @example "2023-01-01T12:00:00.000Z"
|
|
1501
|
+
*/
|
|
1502
|
+
actual_close_date?: string;
|
|
1503
|
+
/**
|
|
1504
|
+
* Actual start date for the object.
|
|
1505
|
+
* @format date-time
|
|
1506
|
+
* @example "2023-01-01T12:00:00.000Z"
|
|
1507
|
+
*/
|
|
1508
|
+
actual_start_date?: string;
|
|
1509
|
+
/**
|
|
1510
|
+
* Target close date for the object.
|
|
1511
|
+
* @format date-time
|
|
1512
|
+
* @example "2023-01-01T12:00:00.000Z"
|
|
1513
|
+
*/
|
|
1514
|
+
target_close_date?: string;
|
|
1515
|
+
/**
|
|
1516
|
+
* Target start date for the object.
|
|
1517
|
+
* @format date-time
|
|
1518
|
+
* @example "2023-01-01T12:00:00.000Z"
|
|
1519
|
+
*/
|
|
1520
|
+
target_start_date?: string;
|
|
1521
|
+
};
|
|
1497
1522
|
/** enhancement-summary */
|
|
1498
1523
|
export type EnhancementSummary = PartBaseSummary;
|
|
1499
1524
|
/**
|
|
@@ -5308,6 +5333,8 @@ export interface WorksFilterTicket {
|
|
|
5308
5333
|
channels?: TicketChannels[];
|
|
5309
5334
|
/** Filters for tickets belonging to specific groups. */
|
|
5310
5335
|
group?: string[];
|
|
5336
|
+
/** Filters for frozen tickets. */
|
|
5337
|
+
is_frozen?: boolean;
|
|
5311
5338
|
/** Filters for tickets that are spam. */
|
|
5312
5339
|
is_spam?: boolean;
|
|
5313
5340
|
/** Filters for tickets that need response. */
|
|
@@ -7137,6 +7164,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7137
7164
|
'ticket.channels'?: TicketChannels[];
|
|
7138
7165
|
/** Filters for tickets belonging to specific groups. */
|
|
7139
7166
|
'ticket.group'?: string[];
|
|
7167
|
+
/** Filters for frozen tickets. */
|
|
7168
|
+
'ticket.is_frozen'?: boolean;
|
|
7140
7169
|
/** Filters for tickets that are spam. */
|
|
7141
7170
|
'ticket.is_spam'?: boolean;
|
|
7142
7171
|
/** Filters for tickets that need response. */
|
|
@@ -7282,6 +7311,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
7282
7311
|
'ticket.channels'?: TicketChannels[];
|
|
7283
7312
|
/** Filters for tickets belonging to specific groups. */
|
|
7284
7313
|
'ticket.group'?: string[];
|
|
7314
|
+
/** Filters for frozen tickets. */
|
|
7315
|
+
'ticket.is_frozen'?: boolean;
|
|
7285
7316
|
/** Filters for tickets that are spam. */
|
|
7286
7317
|
'ticket.is_spam'?: boolean;
|
|
7287
7318
|
/** Filters for tickets that need response. */
|