@walkeros/explorer 3.2.0 → 3.3.0-next-1776098542393

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.cts CHANGED
@@ -13,7 +13,9 @@ interface DestinationDemoProps {
13
13
  event: WalkerOS.PartialEvent;
14
14
  mapping?: Mapping.Rule | string;
15
15
  settings?: unknown;
16
+ include?: string[];
16
17
  generic?: boolean;
18
+ initFirst?: boolean;
17
19
  labelEvent?: string;
18
20
  labelMapping?: string;
19
21
  labelOutput?: string;
@@ -53,7 +55,7 @@ interface DestinationDemoProps {
53
55
  * ```
54
56
  */
55
57
  declare function createCaptureFn(fnName: string, onCapture: (output: string) => void): (...args: unknown[]) => void;
56
- declare function DestinationDemo({ destination, event: initialEvent, mapping: initialMapping, settings, generic, labelEvent, labelMapping, labelOutput, fn, }: DestinationDemoProps): react_jsx_runtime.JSX.Element;
58
+ declare function DestinationDemo({ destination, event: initialEvent, mapping: initialMapping, settings, include, generic, initFirst, labelEvent, labelMapping, labelOutput, fn, }: DestinationDemoProps): react_jsx_runtime.JSX.Element;
57
59
 
58
60
  interface DestinationInitDemoProps {
59
61
  destination: Destination.Instance;
package/dist/index.d.ts CHANGED
@@ -13,7 +13,9 @@ interface DestinationDemoProps {
13
13
  event: WalkerOS.PartialEvent;
14
14
  mapping?: Mapping.Rule | string;
15
15
  settings?: unknown;
16
+ include?: string[];
16
17
  generic?: boolean;
18
+ initFirst?: boolean;
17
19
  labelEvent?: string;
18
20
  labelMapping?: string;
19
21
  labelOutput?: string;
@@ -53,7 +55,7 @@ interface DestinationDemoProps {
53
55
  * ```
54
56
  */
55
57
  declare function createCaptureFn(fnName: string, onCapture: (output: string) => void): (...args: unknown[]) => void;
56
- declare function DestinationDemo({ destination, event: initialEvent, mapping: initialMapping, settings, generic, labelEvent, labelMapping, labelOutput, fn, }: DestinationDemoProps): react_jsx_runtime.JSX.Element;
58
+ declare function DestinationDemo({ destination, event: initialEvent, mapping: initialMapping, settings, include, generic, initFirst, labelEvent, labelMapping, labelOutput, fn, }: DestinationDemoProps): react_jsx_runtime.JSX.Element;
57
59
 
58
60
  interface DestinationInitDemoProps {
59
61
  destination: Destination.Instance;