@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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tagsamurai/gsts-api-services",
3
- "version": "2.0.1-alpha.32",
3
+ "version": "2.0.1-alpha.33",
4
4
  "author": "developer.tagsamurai",
5
5
  "description": "Global Settings Tag Samurai Services Library",
6
6
  "module": "./api-services.es.js",
@@ -81,7 +81,7 @@ export type GetCustomFieldOptionsParams = Partial<{
81
81
  export interface CreateEditCustomFieldPayload {
82
82
  isRequired: boolean;
83
83
  name: string;
84
- dataType: string;
84
+ dataType: DataType;
85
85
  optionValue: string[];
86
86
  }
87
87
  export interface SetActiveCustomFieldPayload {
@@ -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;