@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.
Files changed (2) hide show
  1. package/openapi.ts +7 -4
  2. 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: string | null;
51038
+ startDate?: string | null;
51039
51039
  /** Enddate */
51040
- endDate: string | null;
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
- /** Isrepeating */
51265
- isRepeating?: boolean | null;
51264
+ /**
51265
+ * Isrepeating
51266
+ * @default false
51267
+ */
51268
+ isRepeating: boolean | null;
51266
51269
  /** Repeatinterval */
51267
51270
  repeatInterval?: string | null;
51268
51271
  /** Repeatenddate */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@erp-galoper/types",
3
- "version": "1.0.1209",
3
+ "version": "1.0.1210",
4
4
  "main": "openapi.ts",
5
5
  "types": "openapi.ts",
6
6
  "files": ["openapi.ts"],