@uipath/apollo-react 3.37.0 → 3.38.0
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.
|
@@ -52,7 +52,8 @@ const nodeSchema = external_zod_namespaceObject.z.object({
|
|
|
52
52
|
handleCustomization: external_zod_namespaceObject.z.object({
|
|
53
53
|
groups: external_zod_namespaceObject.z.array(handle_cjs_namespaceObject.handleGroupOverrideSchema)
|
|
54
54
|
}).optional(),
|
|
55
|
-
model: external_zod_namespaceObject.z.unknown().optional()
|
|
55
|
+
model: external_zod_namespaceObject.z.unknown().optional(),
|
|
56
|
+
parentId: external_base_cjs_namespaceObject.idSchema.optional()
|
|
56
57
|
});
|
|
57
58
|
exports.nodeSchema = __webpack_exports__.nodeSchema;
|
|
58
59
|
exports.uiSchema = __webpack_exports__.uiSchema;
|
|
@@ -105,6 +105,7 @@ export declare const nodeSchema: z.ZodObject<{
|
|
|
105
105
|
}, z.core.$strip>>;
|
|
106
106
|
}, z.core.$strip>>;
|
|
107
107
|
model: z.ZodOptional<z.ZodUnknown>;
|
|
108
|
+
parentId: z.ZodOptional<z.ZodString>;
|
|
108
109
|
}, z.core.$strip>;
|
|
109
110
|
export type InstanceUiConfig = z.infer<typeof uiSchema>;
|
|
110
111
|
export type NodeInstance = z.infer<typeof nodeSchema>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"node.d.ts","sourceRoot":"","sources":["../../../../src/canvas/schema/node-instance/node.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAOxB,eAAO,MAAM,QAAQ;;;;;;;;;;kCAeG,CAAC;AAKzB,eAAO,MAAM,UAAU
|
|
1
|
+
{"version":3,"file":"node.d.ts","sourceRoot":"","sources":["../../../../src/canvas/schema/node-instance/node.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AAOxB,eAAO,MAAM,QAAQ;;;;;;;;;;kCAeG,CAAC;AAKzB,eAAO,MAAM,UAAU;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAiCrB,CAAC;AAGH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,QAAQ,CAAC,CAAC;AAExD,MAAM,MAAM,YAAY,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,UAAU,CAAC,CAAC"}
|
|
@@ -23,6 +23,7 @@ const nodeSchema = z.object({
|
|
|
23
23
|
handleCustomization: z.object({
|
|
24
24
|
groups: z.array(handleGroupOverrideSchema)
|
|
25
25
|
}).optional(),
|
|
26
|
-
model: z.unknown().optional()
|
|
26
|
+
model: z.unknown().optional(),
|
|
27
|
+
parentId: idSchema.optional()
|
|
27
28
|
});
|
|
28
29
|
export { nodeSchema, uiSchema };
|