skedyul 1.2.23 → 1.2.24

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.
@@ -11,7 +11,6 @@ import type { ResourceDependency } from './resource';
11
11
  * Field data types (lowercase).
12
12
  * - 'string': Short text (single line)
13
13
  * - 'long_string': Long text (multi-line, stored as text in DB)
14
- * - 'text': Alias for long_string
15
14
  * - 'number': Numeric value
16
15
  * - 'boolean': True/false
17
16
  * - 'date': Date only (no time)
@@ -22,7 +21,7 @@ import type { ResourceDependency } from './resource';
22
21
  * - 'relation': Reference to another model
23
22
  * - 'object': JSON object
24
23
  */
25
- export type FieldType = 'string' | 'long_string' | 'text' | 'number' | 'boolean' | 'date' | 'datetime' | 'time' | 'file' | 'image' | 'relation' | 'object';
24
+ export type FieldType = 'string' | 'long_string' | 'number' | 'boolean' | 'date' | 'datetime' | 'time' | 'file' | 'image' | 'relation' | 'object';
26
25
  /**
27
26
  * Behavior when a related record is deleted.
28
27
  * - 'none': No action (orphan the reference)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skedyul",
3
- "version": "1.2.23",
3
+ "version": "1.2.24",
4
4
  "description": "The Skedyul SDK for Node.js",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",