@erp-galoper/types 1.0.1209 → 1.0.1210
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/openapi.ts +7 -4
- package/package.json +1 -1
package/openapi.ts
CHANGED
|
@@ -51035,9 +51035,9 @@ export interface components {
|
|
|
51035
51035
|
*/
|
|
51036
51036
|
assignedToIds?: number[];
|
|
51037
51037
|
/** Startdate */
|
|
51038
|
-
startDate
|
|
51038
|
+
startDate?: string | null;
|
|
51039
51039
|
/** Enddate */
|
|
51040
|
-
endDate
|
|
51040
|
+
endDate?: string | null;
|
|
51041
51041
|
/**
|
|
51042
51042
|
* Statusid
|
|
51043
51043
|
* Format: uuid
|
|
@@ -51261,8 +51261,11 @@ export interface components {
|
|
|
51261
51261
|
activities?: components["schemas"]["CreateUpdateActivity"][];
|
|
51262
51262
|
/** Customfields */
|
|
51263
51263
|
customFields?: components["schemas"]["CreateUpdateCustomFieldValues"][];
|
|
51264
|
-
/**
|
|
51265
|
-
|
|
51264
|
+
/**
|
|
51265
|
+
* Isrepeating
|
|
51266
|
+
* @default false
|
|
51267
|
+
*/
|
|
51268
|
+
isRepeating: boolean | null;
|
|
51266
51269
|
/** Repeatinterval */
|
|
51267
51270
|
repeatInterval?: string | null;
|
|
51268
51271
|
/** Repeatenddate */
|