skedyul 0.1.85 → 0.1.86

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/.build-stamp CHANGED
@@ -1 +1 @@
1
- 1769124449646
1
+ 1769134000524
package/dist/config.d.ts CHANGED
@@ -142,7 +142,7 @@ export interface WorkflowDefinition {
142
142
  }
143
143
  export type PageType = 'INSTANCE' | 'LIST';
144
144
  export type PageBlockType = 'form' | 'spreadsheet' | 'kanban' | 'calendar' | 'link';
145
- export type PageFieldType = 'STRING' | 'FILE' | 'NUMBER' | 'DATE' | 'BOOLEAN' | 'SELECT' | 'FORM';
145
+ export type PageFieldType = 'STRING' | 'FILE' | 'NUMBER' | 'DATE' | 'BOOLEAN' | 'SELECT' | 'FORM' | 'RELATIONSHIP';
146
146
  export interface PageFieldSource {
147
147
  model: string;
148
148
  field: string;
@@ -174,6 +174,8 @@ export interface PageFieldDefinition {
174
174
  header?: PageFormHeader;
175
175
  fields?: PageFieldDefinition[];
176
176
  actions?: PageActionDefinition[];
177
+ /** Target internal model handle for RELATIONSHIP type fields */
178
+ model?: string;
177
179
  }
178
180
  export interface PageBlockDefinition {
179
181
  type: PageBlockType;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "skedyul",
3
- "version": "0.1.85",
3
+ "version": "0.1.86",
4
4
  "description": "The Skedyul SDK for Node.js",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",