@tagsamurai/gsts-api-services 1.1.0-alpha.17 → 1.1.0-alpha.18

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": "1.1.0-alpha.17",
3
+ "version": "1.1.0-alpha.18",
4
4
  "author": "developer.tagsamurai",
5
5
  "description": "Global Settings Tag Samurai Services Library",
6
6
  "module": "./api-services.es.js",
@@ -167,7 +167,7 @@ export interface CustomField {
167
167
  optionValue: string[];
168
168
  usedOptions: string[];
169
169
  isActive: boolean;
170
- isRequired: 'Yes' | 'No' | BaseString;
170
+ isRequired: boolean;
171
171
  createdAt: string;
172
172
  updatedAt: string;
173
173
  decimalPlaces?: number;
@@ -177,7 +177,7 @@ export interface ActiveCustomField {
177
177
  name: string;
178
178
  dataType: DataType;
179
179
  optionValue: string[];
180
- isRequired: 'Yes' | 'No' | BaseString;
180
+ isRequired: boolean;
181
181
  decimalPlaces?: number;
182
182
  }
183
183
  export interface CustomFieldList {