@devrev/typescript-sdk 1.1.12 → 1.1.13
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,6 +1068,11 @@ 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. */
|
|
@@ -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
|
|
@@ -6207,6 +6219,8 @@ export declare class Api<SecurityDataType extends unknown> extends HttpClient<Se
|
|
|
6207
6219
|
email?: string[];
|
|
6208
6220
|
/** List of external refs to filter Rev users for. */
|
|
6209
6221
|
external_ref?: string[];
|
|
6222
|
+
/** Value of is_verified field to filter the Rev users. */
|
|
6223
|
+
is_verified?: boolean;
|
|
6210
6224
|
/**
|
|
6211
6225
|
* The maximum number of Rev users to return. The default is '50'.
|
|
6212
6226
|
* @format int32
|