@devrev/typescript-sdk 1.1.42 → 1.1.43
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.
|
@@ -1447,7 +1447,9 @@ export interface AuthConnectionOptionsOkta {
|
|
|
1447
1447
|
*/
|
|
1448
1448
|
export interface AuthConnectionOptionsSaml {
|
|
1449
1449
|
/**
|
|
1450
|
-
* Connection name for the SAML authentication connection.
|
|
1450
|
+
* Connection name for the SAML authentication connection. Must match
|
|
1451
|
+
* the `connection` query parameter specified in the sign on URL
|
|
1452
|
+
* during SAML configuration in your identity provider.
|
|
1451
1453
|
* @minLength 1
|
|
1452
1454
|
* @maxLength 128
|
|
1453
1455
|
*/
|
|
@@ -2541,6 +2543,13 @@ export interface ContentTemplateListResponse {
|
|
|
2541
2543
|
export type ContentTemplateType = string;
|
|
2542
2544
|
/** conversation */
|
|
2543
2545
|
export type Conversation = AtomBase & {
|
|
2546
|
+
/** Custom fields. */
|
|
2547
|
+
custom_fields?: object;
|
|
2548
|
+
/**
|
|
2549
|
+
* Custom schema fragments.
|
|
2550
|
+
* @example ["don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"]
|
|
2551
|
+
*/
|
|
2552
|
+
custom_schema_fragments?: string[];
|
|
2544
2553
|
/** Description of the conversation object. */
|
|
2545
2554
|
description?: string;
|
|
2546
2555
|
group?: GroupSummary;
|
|
@@ -2557,6 +2566,13 @@ export type Conversation = AtomBase & {
|
|
|
2557
2566
|
sla_tracker?: SlaTrackerSummary;
|
|
2558
2567
|
/** Describes the current stage of a work item. */
|
|
2559
2568
|
stage?: LegacyStage;
|
|
2569
|
+
/**
|
|
2570
|
+
* Stock schema fragment.
|
|
2571
|
+
* @example "don:core:dvrv-us-1:devo/example:custom_type_fragment/custom-type-fragment-id"
|
|
2572
|
+
*/
|
|
2573
|
+
stock_schema_fragment?: string;
|
|
2574
|
+
/** Subtype corresponding to the custom type fragment. */
|
|
2575
|
+
subtype?: string;
|
|
2560
2576
|
/** Tags associated with the object. */
|
|
2561
2577
|
tags?: TagWithValue[];
|
|
2562
2578
|
/** Title of the conversation object. */
|
|
@@ -3956,7 +3972,9 @@ export interface DevOrgAuthConnectionsCreateRequestOktaOptions {
|
|
|
3956
3972
|
*/
|
|
3957
3973
|
export interface DevOrgAuthConnectionsCreateRequestSamlOptions {
|
|
3958
3974
|
/**
|
|
3959
|
-
* Connection name for the SAML authentication connection.
|
|
3975
|
+
* Connection name for the SAML authentication connection. Must match
|
|
3976
|
+
* the `connection` query parameter specified in the sign on URL
|
|
3977
|
+
* during SAML configuration in your identity provider.
|
|
3960
3978
|
* @minLength 1
|
|
3961
3979
|
* @maxLength 128
|
|
3962
3980
|
*/
|
|
@@ -9476,6 +9494,8 @@ export type SchemaEnumFieldDescriptor = SchemaFieldDescriptorBase & {
|
|
|
9476
9494
|
allowed_values: string[];
|
|
9477
9495
|
/** Default value. */
|
|
9478
9496
|
default_value?: string;
|
|
9497
|
+
/** Translations for allowed_values field. */
|
|
9498
|
+
translated_values?: Record<string, string>;
|
|
9479
9499
|
};
|
|
9480
9500
|
/** schema-enum-list-field-descriptor */
|
|
9481
9501
|
export type SchemaEnumListFieldDescriptor = SchemaFieldDescriptorBase & {
|
|
@@ -9483,6 +9503,8 @@ export type SchemaEnumListFieldDescriptor = SchemaFieldDescriptorBase & {
|
|
|
9483
9503
|
allowed_values: string[];
|
|
9484
9504
|
/** Default value. */
|
|
9485
9505
|
default_value?: string[];
|
|
9506
|
+
/** Translations for allowed_values field. */
|
|
9507
|
+
translated_values?: Record<string, string>;
|
|
9486
9508
|
};
|
|
9487
9509
|
/**
|
|
9488
9510
|
* schema-field-create-view-ui-metadata
|
|
@@ -13592,7 +13614,11 @@ export type WorksCreateRequest = (WorksCreateRequestIssue | WorksCreateRequestOp
|
|
|
13592
13614
|
* @example "2023-01-01T12:00:00.000Z"
|
|
13593
13615
|
*/
|
|
13594
13616
|
target_close_date?: string;
|
|
13595
|
-
/**
|
|
13617
|
+
/**
|
|
13618
|
+
* Title of the work object.
|
|
13619
|
+
* @minLength 1
|
|
13620
|
+
* @maxLength 256
|
|
13621
|
+
*/
|
|
13596
13622
|
title: string;
|
|
13597
13623
|
};
|
|
13598
13624
|
/** works-create-request-issue */
|
|
@@ -13982,7 +14008,11 @@ export type WorksUpdateRequest = (Empty | WorksUpdateRequestIssue | WorksUpdateR
|
|
|
13982
14008
|
* @example "2023-01-01T12:00:00.000Z"
|
|
13983
14009
|
*/
|
|
13984
14010
|
target_close_date?: string | null;
|
|
13985
|
-
/**
|
|
14011
|
+
/**
|
|
14012
|
+
* Updated title of the work object, or unchanged if not provided.
|
|
14013
|
+
* @minLength 1
|
|
14014
|
+
* @maxLength 256
|
|
14015
|
+
*/
|
|
13986
14016
|
title?: string;
|
|
13987
14017
|
};
|
|
13988
14018
|
/** works-update-request-artifacts */
|
|
@@ -612,7 +612,9 @@ export interface AuthConnectionOptionsOkta {
|
|
|
612
612
|
*/
|
|
613
613
|
export interface AuthConnectionOptionsSaml {
|
|
614
614
|
/**
|
|
615
|
-
* Connection name for the SAML authentication connection.
|
|
615
|
+
* Connection name for the SAML authentication connection. Must match
|
|
616
|
+
* the `connection` query parameter specified in the sign on URL
|
|
617
|
+
* during SAML configuration in your identity provider.
|
|
616
618
|
* @minLength 1
|
|
617
619
|
* @maxLength 128
|
|
618
620
|
*/
|
|
@@ -1152,7 +1154,9 @@ export interface DevOrgAuthConnectionsCreateRequestOktaOptions {
|
|
|
1152
1154
|
*/
|
|
1153
1155
|
export interface DevOrgAuthConnectionsCreateRequestSamlOptions {
|
|
1154
1156
|
/**
|
|
1155
|
-
* Connection name for the SAML authentication connection.
|
|
1157
|
+
* Connection name for the SAML authentication connection. Must match
|
|
1158
|
+
* the `connection` query parameter specified in the sign on URL
|
|
1159
|
+
* during SAML configuration in your identity provider.
|
|
1156
1160
|
* @minLength 1
|
|
1157
1161
|
* @maxLength 128
|
|
1158
1162
|
*/
|
|
@@ -2948,6 +2952,8 @@ export type SchemaEnumFieldDescriptor = SchemaFieldDescriptorBase & {
|
|
|
2948
2952
|
allowed_values: string[];
|
|
2949
2953
|
/** Default value. */
|
|
2950
2954
|
default_value?: string;
|
|
2955
|
+
/** Translations for allowed_values field. */
|
|
2956
|
+
translated_values?: Record<string, string>;
|
|
2951
2957
|
};
|
|
2952
2958
|
/** schema-enum-list-field-descriptor */
|
|
2953
2959
|
export type SchemaEnumListFieldDescriptor = SchemaFieldDescriptorBase & {
|
|
@@ -2955,6 +2961,8 @@ export type SchemaEnumListFieldDescriptor = SchemaFieldDescriptorBase & {
|
|
|
2955
2961
|
allowed_values: string[];
|
|
2956
2962
|
/** Default value. */
|
|
2957
2963
|
default_value?: string[];
|
|
2964
|
+
/** Translations for allowed_values field. */
|
|
2965
|
+
translated_values?: Record<string, string>;
|
|
2958
2966
|
};
|
|
2959
2967
|
/**
|
|
2960
2968
|
* schema-field-descriptor
|
|
@@ -5052,7 +5060,11 @@ export type WorksCreateRequest = (WorksCreateRequestIssue | WorksCreateRequestTi
|
|
|
5052
5060
|
* @example "2023-01-01T12:00:00.000Z"
|
|
5053
5061
|
*/
|
|
5054
5062
|
target_close_date?: string;
|
|
5055
|
-
/**
|
|
5063
|
+
/**
|
|
5064
|
+
* Title of the work object.
|
|
5065
|
+
* @minLength 1
|
|
5066
|
+
* @maxLength 256
|
|
5067
|
+
*/
|
|
5056
5068
|
title: string;
|
|
5057
5069
|
};
|
|
5058
5070
|
/** works-create-request-issue */
|
|
@@ -5344,7 +5356,11 @@ export type WorksUpdateRequest = (Empty | WorksUpdateRequestIssue | WorksUpdateR
|
|
|
5344
5356
|
* @example "2023-01-01T12:00:00.000Z"
|
|
5345
5357
|
*/
|
|
5346
5358
|
target_close_date?: string | null;
|
|
5347
|
-
/**
|
|
5359
|
+
/**
|
|
5360
|
+
* Updated title of the work object, or unchanged if not provided.
|
|
5361
|
+
* @minLength 1
|
|
5362
|
+
* @maxLength 256
|
|
5363
|
+
*/
|
|
5348
5364
|
title?: string;
|
|
5349
5365
|
};
|
|
5350
5366
|
/** works-update-request-artifacts */
|