@tagsamurai/gsts-api-services 2.0.1-alpha.32 → 2.0.1-alpha.33
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.
- package/package.json +1 -1
- package/src/dto/iam.dto.d.ts +1 -1
- package/src/types/iam.type.d.ts +1 -1
package/package.json
CHANGED
package/src/dto/iam.dto.d.ts
CHANGED
|
@@ -81,7 +81,7 @@ export type GetCustomFieldOptionsParams = Partial<{
|
|
|
81
81
|
export interface CreateEditCustomFieldPayload {
|
|
82
82
|
isRequired: boolean;
|
|
83
83
|
name: string;
|
|
84
|
-
dataType:
|
|
84
|
+
dataType: DataType;
|
|
85
85
|
optionValue: string[];
|
|
86
86
|
}
|
|
87
87
|
export interface SetActiveCustomFieldPayload {
|
package/src/types/iam.type.d.ts
CHANGED
|
@@ -149,7 +149,7 @@ export interface Position extends DropdownOption {
|
|
|
149
149
|
}
|
|
150
150
|
export interface Division extends DropdownOption {
|
|
151
151
|
}
|
|
152
|
-
export type DataType = 'Text' | 'Numeric' | 'Date' | 'Dropdown' | 'Text Area' | BaseString;
|
|
152
|
+
export type DataType = 'Text' | 'Numeric' | 'Date' | 'Dropdown' | 'Text Area' | 'Phone' | BaseString;
|
|
153
153
|
export interface CustomField {
|
|
154
154
|
_id: string;
|
|
155
155
|
name: string;
|