@polagram/core 0.2.0 → 0.4.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.
- package/dist/index.d.ts +20 -4
- package/dist/polagram-core.js +1382 -1318
- package/dist/polagram-core.umd.cjs +47 -17
- package/package.json +4 -2
package/dist/index.d.ts
CHANGED
|
@@ -230,7 +230,11 @@ declare const LensSchema: z.ZodObject<{
|
|
|
230
230
|
}, z.core.$strip>]>;
|
|
231
231
|
}, z.core.$strip>, z.ZodObject<{
|
|
232
232
|
action: z.ZodLiteral<"merge">;
|
|
233
|
-
|
|
233
|
+
into: z.ZodOptional<z.ZodObject<{
|
|
234
|
+
name: z.ZodOptional<z.ZodString>;
|
|
235
|
+
id: z.ZodOptional<z.ZodString>;
|
|
236
|
+
stereotype: z.ZodOptional<z.ZodString>;
|
|
237
|
+
}, z.core.$strip>>;
|
|
234
238
|
selector: z.ZodObject<{
|
|
235
239
|
kind: z.ZodLiteral<"participant">;
|
|
236
240
|
name: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -251,7 +255,11 @@ declare const LensSchema: z.ZodObject<{
|
|
|
251
255
|
|
|
252
256
|
export declare interface MergeLayer {
|
|
253
257
|
action: 'merge';
|
|
254
|
-
|
|
258
|
+
into?: {
|
|
259
|
+
name?: string;
|
|
260
|
+
id?: string;
|
|
261
|
+
stereotype?: string;
|
|
262
|
+
};
|
|
255
263
|
selector: ParticipantSelector;
|
|
256
264
|
}
|
|
257
265
|
|
|
@@ -544,7 +552,11 @@ export declare const PolagramConfigSchema: z.ZodObject<{
|
|
|
544
552
|
}, z.core.$strip>]>;
|
|
545
553
|
}, z.core.$strip>, z.ZodObject<{
|
|
546
554
|
action: z.ZodLiteral<"merge">;
|
|
547
|
-
|
|
555
|
+
into: z.ZodOptional<z.ZodObject<{
|
|
556
|
+
name: z.ZodOptional<z.ZodString>;
|
|
557
|
+
id: z.ZodOptional<z.ZodString>;
|
|
558
|
+
stereotype: z.ZodOptional<z.ZodString>;
|
|
559
|
+
}, z.core.$strip>>;
|
|
548
560
|
selector: z.ZodObject<{
|
|
549
561
|
kind: z.ZodLiteral<"participant">;
|
|
550
562
|
name: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|
|
@@ -717,7 +729,11 @@ declare const TargetConfigSchema: z.ZodObject<{
|
|
|
717
729
|
}, z.core.$strip>]>;
|
|
718
730
|
}, z.core.$strip>, z.ZodObject<{
|
|
719
731
|
action: z.ZodLiteral<"merge">;
|
|
720
|
-
|
|
732
|
+
into: z.ZodOptional<z.ZodObject<{
|
|
733
|
+
name: z.ZodOptional<z.ZodString>;
|
|
734
|
+
id: z.ZodOptional<z.ZodString>;
|
|
735
|
+
stereotype: z.ZodOptional<z.ZodString>;
|
|
736
|
+
}, z.core.$strip>>;
|
|
721
737
|
selector: z.ZodObject<{
|
|
722
738
|
kind: z.ZodLiteral<"participant">;
|
|
723
739
|
name: z.ZodOptional<z.ZodUnion<readonly [z.ZodString, z.ZodObject<{
|