@equisoft/equisoft-connect-sdk-typescript 10.15.1 → 10.16.1-snapshot.20220301213404
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/dist/models/EventsCreateEventPayload.d.ts +5 -5
- package/dist/models/EventsPatchEventPayload.d.ts +5 -5
- package/dist/models/TasksCreateTaskPayload.d.ts +2 -2
- package/dist/models/TasksPatchTaskPayload.d.ts +2 -2
- package/package.json +1 -1
- package/src/models/EventsCreateEventPayload.ts +5 -5
- package/src/models/EventsPatchEventPayload.ts +5 -5
- package/src/models/TasksCreateTaskPayload.ts +2 -2
- package/src/models/TasksPatchTaskPayload.ts +2 -2
|
@@ -77,11 +77,11 @@ export interface EventsCreateEventPayload {
|
|
|
77
77
|
*/
|
|
78
78
|
location?: string;
|
|
79
79
|
/**
|
|
80
|
-
* Event type
|
|
81
|
-
* @type {
|
|
80
|
+
* Event type
|
|
81
|
+
* @type {any}
|
|
82
82
|
* @memberof EventsCreateEventPayload
|
|
83
83
|
*/
|
|
84
|
-
type?:
|
|
84
|
+
type?: any | null;
|
|
85
85
|
/**
|
|
86
86
|
* ID of the field value to use as category.
|
|
87
87
|
* @type {number}
|
|
@@ -96,10 +96,10 @@ export interface EventsCreateEventPayload {
|
|
|
96
96
|
subCategoryId?: number;
|
|
97
97
|
/**
|
|
98
98
|
* Importance/Priority of an event or task. 5 is the most important.
|
|
99
|
-
* @type {
|
|
99
|
+
* @type {any}
|
|
100
100
|
* @memberof EventsCreateEventPayload
|
|
101
101
|
*/
|
|
102
|
-
priority?:
|
|
102
|
+
priority?: any | null;
|
|
103
103
|
/**
|
|
104
104
|
* Confidentiality level of the Event (private or not). [NORMAL, PRIVATE]
|
|
105
105
|
* @type {string}
|
|
@@ -65,11 +65,11 @@ export interface EventsPatchEventPayload {
|
|
|
65
65
|
*/
|
|
66
66
|
location?: string;
|
|
67
67
|
/**
|
|
68
|
-
* Event type
|
|
69
|
-
* @type {
|
|
68
|
+
* Event type
|
|
69
|
+
* @type {any}
|
|
70
70
|
* @memberof EventsPatchEventPayload
|
|
71
71
|
*/
|
|
72
|
-
type?:
|
|
72
|
+
type?: any | null;
|
|
73
73
|
/**
|
|
74
74
|
* ID of the field value to use as category.
|
|
75
75
|
* @type {number}
|
|
@@ -84,10 +84,10 @@ export interface EventsPatchEventPayload {
|
|
|
84
84
|
subCategoryId?: number;
|
|
85
85
|
/**
|
|
86
86
|
* Importance/Priority of an event or task. 5 is the most important.
|
|
87
|
-
* @type {
|
|
87
|
+
* @type {any}
|
|
88
88
|
* @memberof EventsPatchEventPayload
|
|
89
89
|
*/
|
|
90
|
-
priority?:
|
|
90
|
+
priority?: any | null;
|
|
91
91
|
/**
|
|
92
92
|
* Confidentiality level of the Event (private or not). [NORMAL, PRIVATE]
|
|
93
93
|
* @type {string}
|
|
@@ -77,10 +77,10 @@ export interface TasksCreateTaskPayload {
|
|
|
77
77
|
subCategoryId?: number;
|
|
78
78
|
/**
|
|
79
79
|
* Importance/Priority of an event or task. 5 is the most important.
|
|
80
|
-
* @type {
|
|
80
|
+
* @type {any}
|
|
81
81
|
* @memberof TasksCreateTaskPayload
|
|
82
82
|
*/
|
|
83
|
-
priority?:
|
|
83
|
+
priority?: any | null;
|
|
84
84
|
/**
|
|
85
85
|
* Confidentiality level of the Event (private or not). [NORMAL, PRIVATE]
|
|
86
86
|
* @type {string}
|
|
@@ -65,10 +65,10 @@ export interface TasksPatchTaskPayload {
|
|
|
65
65
|
subCategoryId?: number;
|
|
66
66
|
/**
|
|
67
67
|
* Importance/Priority of an event or task. 5 is the most important.
|
|
68
|
-
* @type {
|
|
68
|
+
* @type {any}
|
|
69
69
|
* @memberof TasksPatchTaskPayload
|
|
70
70
|
*/
|
|
71
|
-
priority?:
|
|
71
|
+
priority?: any | null;
|
|
72
72
|
/**
|
|
73
73
|
* Confidentiality level of the Event (private or not). [NORMAL, PRIVATE]
|
|
74
74
|
* @type {string}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equisoft/equisoft-connect-sdk-typescript",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.16.1-snapshot.20220301213404",
|
|
4
4
|
"description": "OpenAPI client for @equisoft/equisoft-connect-sdk-typescript",
|
|
5
5
|
"author": "OpenAPI-Generator",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -87,11 +87,11 @@ export interface EventsCreateEventPayload {
|
|
|
87
87
|
*/
|
|
88
88
|
location?: string;
|
|
89
89
|
/**
|
|
90
|
-
* Event type
|
|
91
|
-
* @type {
|
|
90
|
+
* Event type
|
|
91
|
+
* @type {any}
|
|
92
92
|
* @memberof EventsCreateEventPayload
|
|
93
93
|
*/
|
|
94
|
-
type?:
|
|
94
|
+
type?: any | null;
|
|
95
95
|
/**
|
|
96
96
|
* ID of the field value to use as category.
|
|
97
97
|
* @type {number}
|
|
@@ -106,10 +106,10 @@ export interface EventsCreateEventPayload {
|
|
|
106
106
|
subCategoryId?: number;
|
|
107
107
|
/**
|
|
108
108
|
* Importance/Priority of an event or task. 5 is the most important.
|
|
109
|
-
* @type {
|
|
109
|
+
* @type {any}
|
|
110
110
|
* @memberof EventsCreateEventPayload
|
|
111
111
|
*/
|
|
112
|
-
priority?:
|
|
112
|
+
priority?: any | null;
|
|
113
113
|
/**
|
|
114
114
|
* Confidentiality level of the Event (private or not). [NORMAL, PRIVATE]
|
|
115
115
|
* @type {string}
|
|
@@ -75,11 +75,11 @@ export interface EventsPatchEventPayload {
|
|
|
75
75
|
*/
|
|
76
76
|
location?: string;
|
|
77
77
|
/**
|
|
78
|
-
* Event type
|
|
79
|
-
* @type {
|
|
78
|
+
* Event type
|
|
79
|
+
* @type {any}
|
|
80
80
|
* @memberof EventsPatchEventPayload
|
|
81
81
|
*/
|
|
82
|
-
type?:
|
|
82
|
+
type?: any | null;
|
|
83
83
|
/**
|
|
84
84
|
* ID of the field value to use as category.
|
|
85
85
|
* @type {number}
|
|
@@ -94,10 +94,10 @@ export interface EventsPatchEventPayload {
|
|
|
94
94
|
subCategoryId?: number;
|
|
95
95
|
/**
|
|
96
96
|
* Importance/Priority of an event or task. 5 is the most important.
|
|
97
|
-
* @type {
|
|
97
|
+
* @type {any}
|
|
98
98
|
* @memberof EventsPatchEventPayload
|
|
99
99
|
*/
|
|
100
|
-
priority?:
|
|
100
|
+
priority?: any | null;
|
|
101
101
|
/**
|
|
102
102
|
* Confidentiality level of the Event (private or not). [NORMAL, PRIVATE]
|
|
103
103
|
* @type {string}
|
|
@@ -81,10 +81,10 @@ export interface TasksCreateTaskPayload {
|
|
|
81
81
|
subCategoryId?: number;
|
|
82
82
|
/**
|
|
83
83
|
* Importance/Priority of an event or task. 5 is the most important.
|
|
84
|
-
* @type {
|
|
84
|
+
* @type {any}
|
|
85
85
|
* @memberof TasksCreateTaskPayload
|
|
86
86
|
*/
|
|
87
|
-
priority?:
|
|
87
|
+
priority?: any | null;
|
|
88
88
|
/**
|
|
89
89
|
* Confidentiality level of the Event (private or not). [NORMAL, PRIVATE]
|
|
90
90
|
* @type {string}
|
|
@@ -69,10 +69,10 @@ export interface TasksPatchTaskPayload {
|
|
|
69
69
|
subCategoryId?: number;
|
|
70
70
|
/**
|
|
71
71
|
* Importance/Priority of an event or task. 5 is the most important.
|
|
72
|
-
* @type {
|
|
72
|
+
* @type {any}
|
|
73
73
|
* @memberof TasksPatchTaskPayload
|
|
74
74
|
*/
|
|
75
|
-
priority?:
|
|
75
|
+
priority?: any | null;
|
|
76
76
|
/**
|
|
77
77
|
* Confidentiality level of the Event (private or not). [NORMAL, PRIVATE]
|
|
78
78
|
* @type {string}
|