@equisoft/equisoft-connect-sdk-typescript
Advanced tools
Comparing version 10.8.3-snapshot.20211021175812 to 10.8.3-snapshot.20211022194631
@@ -92,7 +92,7 @@ /** | ||
/** | ||
* | ||
* @type {FieldValue} | ||
* Event sub category | ||
* @type {any} | ||
* @memberof EventsEvent | ||
*/ | ||
subCategory?: FieldValue; | ||
subCategory?: any | null; | ||
/** | ||
@@ -99,0 +99,0 @@ * The recurrence rule for this event. The recurrence is a string conform to RFC 5545 (see RRULE http://tools.ietf.org/html/rfc5545#section-3.8.5.3). |
@@ -40,3 +40,3 @@ "use strict"; | ||
'category': !runtime_1.exists(json, 'category') ? undefined : _1.FieldValueFromJSON(json['category']), | ||
'subCategory': !runtime_1.exists(json, 'subCategory') ? undefined : _1.FieldValueFromJSON(json['subCategory']), | ||
'subCategory': !runtime_1.exists(json, 'subCategory') ? undefined : json['subCategory'], | ||
'recurrenceRule': !runtime_1.exists(json, 'recurrenceRule') ? undefined : json['recurrenceRule'], | ||
@@ -77,3 +77,3 @@ 'recurringEventId': !runtime_1.exists(json, 'recurringEventId') ? undefined : json['recurringEventId'], | ||
'category': _1.FieldValueToJSON(value.category), | ||
'subCategory': _1.FieldValueToJSON(value.subCategory), | ||
'subCategory': value.subCategory, | ||
'recurrenceRule': value.recurrenceRule, | ||
@@ -80,0 +80,0 @@ 'recurringEventId': value.recurringEventId, |
@@ -74,7 +74,7 @@ /** | ||
/** | ||
* | ||
* @type {FieldValue} | ||
* Event sub category | ||
* @type {any} | ||
* @memberof TasksTask | ||
*/ | ||
subCategory?: FieldValue; | ||
subCategory?: any | null; | ||
/** | ||
@@ -81,0 +81,0 @@ * Importance/Priority of an event or task. 5 is the most important. |
@@ -37,3 +37,3 @@ "use strict"; | ||
'category': !runtime_1.exists(json, 'category') ? undefined : _1.FieldValueFromJSON(json['category']), | ||
'subCategory': !runtime_1.exists(json, 'subCategory') ? undefined : _1.FieldValueFromJSON(json['subCategory']), | ||
'subCategory': !runtime_1.exists(json, 'subCategory') ? undefined : json['subCategory'], | ||
'priority': !runtime_1.exists(json, 'priority') ? undefined : json['priority'], | ||
@@ -66,3 +66,3 @@ 'visibility': !runtime_1.exists(json, 'visibility') ? undefined : json['visibility'], | ||
'category': _1.FieldValueToJSON(value.category), | ||
'subCategory': _1.FieldValueToJSON(value.subCategory), | ||
'subCategory': value.subCategory, | ||
'priority': value.priority, | ||
@@ -69,0 +69,0 @@ 'visibility': value.visibility, |
{ | ||
"name": "@equisoft/equisoft-connect-sdk-typescript", | ||
"version": "10.8.3-snapshot.20211021175812", | ||
"version": "10.8.3-snapshot.20211022194631", | ||
"description": "OpenAPI client for @equisoft/equisoft-connect-sdk-typescript", | ||
@@ -5,0 +5,0 @@ "author": "OpenAPI-Generator", |
@@ -110,7 +110,7 @@ /* tslint:disable */ | ||
/** | ||
* | ||
* @type {FieldValue} | ||
* Event sub category | ||
* @type {any} | ||
* @memberof EventsEvent | ||
*/ | ||
subCategory?: FieldValue; | ||
subCategory?: any | null; | ||
/** | ||
@@ -214,3 +214,3 @@ * The recurrence rule for this event. The recurrence is a string conform to RFC 5545 (see RRULE http://tools.ietf.org/html/rfc5545#section-3.8.5.3). | ||
'category': !exists(json, 'category') ? undefined : FieldValueFromJSON(json['category']), | ||
'subCategory': !exists(json, 'subCategory') ? undefined : FieldValueFromJSON(json['subCategory']), | ||
'subCategory': !exists(json, 'subCategory') ? undefined : json['subCategory'], | ||
'recurrenceRule': !exists(json, 'recurrenceRule') ? undefined : json['recurrenceRule'], | ||
@@ -252,3 +252,3 @@ 'recurringEventId': !exists(json, 'recurringEventId') ? undefined : json['recurringEventId'], | ||
'category': FieldValueToJSON(value.category), | ||
'subCategory': FieldValueToJSON(value.subCategory), | ||
'subCategory': value.subCategory, | ||
'recurrenceRule': value.recurrenceRule, | ||
@@ -255,0 +255,0 @@ 'recurringEventId': value.recurringEventId, |
@@ -88,7 +88,7 @@ /* tslint:disable */ | ||
/** | ||
* | ||
* @type {FieldValue} | ||
* Event sub category | ||
* @type {any} | ||
* @memberof TasksTask | ||
*/ | ||
subCategory?: FieldValue; | ||
subCategory?: any | null; | ||
/** | ||
@@ -157,3 +157,3 @@ * Importance/Priority of an event or task. 5 is the most important. | ||
'category': !exists(json, 'category') ? undefined : FieldValueFromJSON(json['category']), | ||
'subCategory': !exists(json, 'subCategory') ? undefined : FieldValueFromJSON(json['subCategory']), | ||
'subCategory': !exists(json, 'subCategory') ? undefined : json['subCategory'], | ||
'priority': !exists(json, 'priority') ? undefined : json['priority'], | ||
@@ -187,3 +187,3 @@ 'visibility': !exists(json, 'visibility') ? undefined : json['visibility'], | ||
'category': FieldValueToJSON(value.category), | ||
'subCategory': FieldValueToJSON(value.subCategory), | ||
'subCategory': value.subCategory, | ||
'priority': value.priority, | ||
@@ -190,0 +190,0 @@ 'visibility': value.visibility, |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
1952968