scordi-extension 1.18.3 → 1.18.5
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/blocks/CheckStatusBlock.d.ts +51 -0
- package/dist/blocks/CheckStatusBlock.d.ts.map +1 -0
- package/dist/blocks/MarkBorderBlock.d.ts +62 -0
- package/dist/blocks/MarkBorderBlock.d.ts.map +1 -1
- package/dist/blocks/index.d.ts +94 -0
- package/dist/blocks/index.d.ts.map +1 -1
- package/dist/sdk/EightGClient.d.ts +2 -2
- package/dist/sdk/index.cjs +97 -5
- package/dist/sdk/index.js +3833 -3454
- package/dist/sidepanel/types.d.ts +22 -0
- package/dist/sidepanel/types.d.ts.map +1 -0
- package/dist/workflow/context/execution-context/binding.d.ts +0 -1
- package/dist/workflow/context/execution-context/binding.d.ts.map +1 -1
- package/package.json +1 -1
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
import { z } from 'zod';
|
|
2
|
+
import { BlockResult } from './types';
|
|
3
|
+
import { CheckType } from '@/sidepanel/types';
|
|
4
|
+
export declare const CheckStatusBlockSchema: z.ZodObject<{
|
|
5
|
+
name: z.ZodLiteral<"check-status">;
|
|
6
|
+
checkType: z.ZodEnum<["login", "pageLoad", "element", "custom"]>;
|
|
7
|
+
title: z.ZodString;
|
|
8
|
+
description: z.ZodOptional<z.ZodString>;
|
|
9
|
+
options: z.ZodOptional<z.ZodObject<{
|
|
10
|
+
timeoutMs: z.ZodOptional<z.ZodNumber>;
|
|
11
|
+
retryable: z.ZodOptional<z.ZodBoolean>;
|
|
12
|
+
customValidator: z.ZodOptional<z.ZodString>;
|
|
13
|
+
}, "strip", z.ZodTypeAny, {
|
|
14
|
+
timeoutMs?: number | undefined;
|
|
15
|
+
retryable?: boolean | undefined;
|
|
16
|
+
customValidator?: string | undefined;
|
|
17
|
+
}, {
|
|
18
|
+
timeoutMs?: number | undefined;
|
|
19
|
+
retryable?: boolean | undefined;
|
|
20
|
+
customValidator?: string | undefined;
|
|
21
|
+
}>>;
|
|
22
|
+
}, "strip", z.ZodTypeAny, {
|
|
23
|
+
name: "check-status";
|
|
24
|
+
title: string;
|
|
25
|
+
checkType: "custom" | "login" | "pageLoad" | "element";
|
|
26
|
+
options?: {
|
|
27
|
+
timeoutMs?: number | undefined;
|
|
28
|
+
retryable?: boolean | undefined;
|
|
29
|
+
customValidator?: string | undefined;
|
|
30
|
+
} | undefined;
|
|
31
|
+
description?: string | undefined;
|
|
32
|
+
}, {
|
|
33
|
+
name: "check-status";
|
|
34
|
+
title: string;
|
|
35
|
+
checkType: "custom" | "login" | "pageLoad" | "element";
|
|
36
|
+
options?: {
|
|
37
|
+
timeoutMs?: number | undefined;
|
|
38
|
+
retryable?: boolean | undefined;
|
|
39
|
+
customValidator?: string | undefined;
|
|
40
|
+
} | undefined;
|
|
41
|
+
description?: string | undefined;
|
|
42
|
+
}>;
|
|
43
|
+
export type CheckStatusBlock = z.infer<typeof CheckStatusBlockSchema>;
|
|
44
|
+
export declare function validateCheckStatusBlock(block: any): CheckStatusBlock;
|
|
45
|
+
export declare function handlerCheckStatusBlock(block: CheckStatusBlock): Promise<BlockResult<any>>;
|
|
46
|
+
export declare function performStatusCheck(checkType: CheckType): {
|
|
47
|
+
success: boolean;
|
|
48
|
+
message: string;
|
|
49
|
+
data?: any;
|
|
50
|
+
};
|
|
51
|
+
//# sourceMappingURL=CheckStatusBlock.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CheckStatusBlock.d.ts","sourceRoot":"","sources":["../../src/blocks/CheckStatusBlock.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AACtC,OAAO,EAAE,SAAS,EAAsB,MAAM,mBAAmB,CAAC;AAGlE,eAAO,MAAM,sBAAsB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EAYjC,CAAC;AAEH,MAAM,MAAM,gBAAgB,GAAG,CAAC,CAAC,KAAK,CAAC,OAAO,sBAAsB,CAAC,CAAC;AAGtE,wBAAgB,wBAAwB,CAAC,KAAK,EAAE,GAAG,GAAG,gBAAgB,CASrE;AAGD,wBAAsB,uBAAuB,CAC3C,KAAK,EAAE,gBAAgB,GACtB,OAAO,CAAC,WAAW,CAAC,GAAG,CAAC,CAAC,CAqC3B;AAGD,wBAAgB,kBAAkB,CAAC,SAAS,EAAE,SAAS,GAAG;IAAE,OAAO,EAAE,OAAO,CAAC;IAAC,OAAO,EAAE,MAAM,CAAC;IAAC,IAAI,CAAC,EAAE,GAAG,CAAA;CAAE,CAa1G"}
|
|
@@ -2,12 +2,23 @@ import z from 'zod';
|
|
|
2
2
|
import { Block, BlockResult } from './types';
|
|
3
3
|
export interface MarkBorderBlock extends Block {
|
|
4
4
|
readonly name: 'mark-border';
|
|
5
|
+
highlightMode?: 'border' | 'spotlight' | 'both';
|
|
5
6
|
borderStyle?: {
|
|
6
7
|
color?: string;
|
|
7
8
|
width?: number;
|
|
8
9
|
style?: 'solid' | 'dashed' | 'dotted' | 'double';
|
|
9
10
|
animated?: boolean;
|
|
10
11
|
};
|
|
12
|
+
spotlightOptions?: {
|
|
13
|
+
overlayOpacity?: number;
|
|
14
|
+
showPointer?: boolean;
|
|
15
|
+
pointerPosition?: 'top' | 'right' | 'bottom' | 'left';
|
|
16
|
+
showLabel?: boolean;
|
|
17
|
+
label?: string;
|
|
18
|
+
description?: string;
|
|
19
|
+
pulseColor?: string;
|
|
20
|
+
borderRadius?: number;
|
|
21
|
+
};
|
|
11
22
|
textFilter?: {
|
|
12
23
|
text: string | string[];
|
|
13
24
|
mode: 'exact' | 'contains' | 'startsWith' | 'endsWith' | 'regex';
|
|
@@ -31,6 +42,7 @@ export declare const MarkBorderBlockSchema: z.ZodObject<{
|
|
|
31
42
|
}>;
|
|
32
43
|
} & {
|
|
33
44
|
name: z.ZodLiteral<"mark-border">;
|
|
45
|
+
highlightMode: z.ZodOptional<z.ZodEnum<["border", "spotlight", "both"]>>;
|
|
34
46
|
borderStyle: z.ZodOptional<z.ZodObject<{
|
|
35
47
|
color: z.ZodOptional<z.ZodString>;
|
|
36
48
|
width: z.ZodOptional<z.ZodNumber>;
|
|
@@ -47,6 +59,34 @@ export declare const MarkBorderBlockSchema: z.ZodObject<{
|
|
|
47
59
|
color?: string | undefined;
|
|
48
60
|
animated?: boolean | undefined;
|
|
49
61
|
}>>;
|
|
62
|
+
spotlightOptions: z.ZodOptional<z.ZodObject<{
|
|
63
|
+
overlayOpacity: z.ZodOptional<z.ZodNumber>;
|
|
64
|
+
showPointer: z.ZodOptional<z.ZodBoolean>;
|
|
65
|
+
pointerPosition: z.ZodOptional<z.ZodEnum<["top", "right", "bottom", "left"]>>;
|
|
66
|
+
showLabel: z.ZodOptional<z.ZodBoolean>;
|
|
67
|
+
label: z.ZodOptional<z.ZodString>;
|
|
68
|
+
description: z.ZodOptional<z.ZodString>;
|
|
69
|
+
pulseColor: z.ZodOptional<z.ZodString>;
|
|
70
|
+
borderRadius: z.ZodOptional<z.ZodNumber>;
|
|
71
|
+
}, "strip", z.ZodTypeAny, {
|
|
72
|
+
label?: string | undefined;
|
|
73
|
+
overlayOpacity?: number | undefined;
|
|
74
|
+
showPointer?: boolean | undefined;
|
|
75
|
+
pointerPosition?: "top" | "bottom" | "right" | "left" | undefined;
|
|
76
|
+
showLabel?: boolean | undefined;
|
|
77
|
+
description?: string | undefined;
|
|
78
|
+
pulseColor?: string | undefined;
|
|
79
|
+
borderRadius?: number | undefined;
|
|
80
|
+
}, {
|
|
81
|
+
label?: string | undefined;
|
|
82
|
+
overlayOpacity?: number | undefined;
|
|
83
|
+
showPointer?: boolean | undefined;
|
|
84
|
+
pointerPosition?: "top" | "bottom" | "right" | "left" | undefined;
|
|
85
|
+
showLabel?: boolean | undefined;
|
|
86
|
+
description?: string | undefined;
|
|
87
|
+
pulseColor?: string | undefined;
|
|
88
|
+
borderRadius?: number | undefined;
|
|
89
|
+
}>>;
|
|
50
90
|
textFilter: z.ZodOptional<z.ZodObject<{
|
|
51
91
|
text: z.ZodUnion<[z.ZodString, z.ZodArray<z.ZodString, "many">]>;
|
|
52
92
|
mode: z.ZodEnum<["exact", "contains", "startsWith", "endsWith", "regex"]>;
|
|
@@ -70,12 +110,23 @@ export declare const MarkBorderBlockSchema: z.ZodObject<{
|
|
|
70
110
|
text: string | string[];
|
|
71
111
|
mode: "exact" | "regex" | "contains" | "startsWith" | "endsWith";
|
|
72
112
|
} | undefined;
|
|
113
|
+
highlightMode?: "border" | "spotlight" | "both" | undefined;
|
|
73
114
|
borderStyle?: {
|
|
74
115
|
style?: "solid" | "dashed" | "dotted" | "double" | undefined;
|
|
75
116
|
width?: number | undefined;
|
|
76
117
|
color?: string | undefined;
|
|
77
118
|
animated?: boolean | undefined;
|
|
78
119
|
} | undefined;
|
|
120
|
+
spotlightOptions?: {
|
|
121
|
+
label?: string | undefined;
|
|
122
|
+
overlayOpacity?: number | undefined;
|
|
123
|
+
showPointer?: boolean | undefined;
|
|
124
|
+
pointerPosition?: "top" | "bottom" | "right" | "left" | undefined;
|
|
125
|
+
showLabel?: boolean | undefined;
|
|
126
|
+
description?: string | undefined;
|
|
127
|
+
pulseColor?: string | undefined;
|
|
128
|
+
borderRadius?: number | undefined;
|
|
129
|
+
} | undefined;
|
|
79
130
|
}, {
|
|
80
131
|
name: "mark-border";
|
|
81
132
|
selector: string;
|
|
@@ -89,12 +140,23 @@ export declare const MarkBorderBlockSchema: z.ZodObject<{
|
|
|
89
140
|
text: string | string[];
|
|
90
141
|
mode: "exact" | "regex" | "contains" | "startsWith" | "endsWith";
|
|
91
142
|
} | undefined;
|
|
143
|
+
highlightMode?: "border" | "spotlight" | "both" | undefined;
|
|
92
144
|
borderStyle?: {
|
|
93
145
|
style?: "solid" | "dashed" | "dotted" | "double" | undefined;
|
|
94
146
|
width?: number | undefined;
|
|
95
147
|
color?: string | undefined;
|
|
96
148
|
animated?: boolean | undefined;
|
|
97
149
|
} | undefined;
|
|
150
|
+
spotlightOptions?: {
|
|
151
|
+
label?: string | undefined;
|
|
152
|
+
overlayOpacity?: number | undefined;
|
|
153
|
+
showPointer?: boolean | undefined;
|
|
154
|
+
pointerPosition?: "top" | "bottom" | "right" | "left" | undefined;
|
|
155
|
+
showLabel?: boolean | undefined;
|
|
156
|
+
description?: string | undefined;
|
|
157
|
+
pulseColor?: string | undefined;
|
|
158
|
+
borderRadius?: number | undefined;
|
|
159
|
+
} | undefined;
|
|
98
160
|
}>;
|
|
99
161
|
export declare function validateMarkBorderBlock(data: unknown): MarkBorderBlock;
|
|
100
162
|
export declare function handlerMarkBorder(data: MarkBorderBlock): Promise<BlockResult<boolean>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"MarkBorderBlock.d.ts","sourceRoot":"","sources":["../../src/blocks/MarkBorderBlock.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,KAAK,EAAE,WAAW,EAAmB,MAAM,SAAS,CAAC;AAG9D,MAAM,WAAW,eAAgB,SAAQ,KAAK;IAC5C,QAAQ,CAAC,IAAI,EAAE,aAAa,CAAC;IAE7B,WAAW,CAAC,EAAE;QACZ,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,KAAK,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,CAAC;QACjD,QAAQ,CAAC,EAAE,OAAO,CAAC;KACpB,CAAC;IAEF,UAAU,CAAC,EAAE;QACX,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;QACxB,IAAI,EAAE,OAAO,GAAG,UAAU,GAAG,YAAY,GAAG,UAAU,GAAG,OAAO,CAAC;KAClE,CAAC;CACH;AAED,eAAO,MAAM,qBAAqB
|
|
1
|
+
{"version":3,"file":"MarkBorderBlock.d.ts","sourceRoot":"","sources":["../../src/blocks/MarkBorderBlock.ts"],"names":[],"mappings":"AAAA,OAAO,CAAC,MAAM,KAAK,CAAC;AACpB,OAAO,EAAE,KAAK,EAAE,WAAW,EAAmB,MAAM,SAAS,CAAC;AAG9D,MAAM,WAAW,eAAgB,SAAQ,KAAK;IAC5C,QAAQ,CAAC,IAAI,EAAE,aAAa,CAAC;IAE7B,aAAa,CAAC,EAAE,QAAQ,GAAG,WAAW,GAAG,MAAM,CAAC;IAEhD,WAAW,CAAC,EAAE;QACZ,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,KAAK,CAAC,EAAE,OAAO,GAAG,QAAQ,GAAG,QAAQ,GAAG,QAAQ,CAAC;QACjD,QAAQ,CAAC,EAAE,OAAO,CAAC;KACpB,CAAC;IAEF,gBAAgB,CAAC,EAAE;QACjB,cAAc,CAAC,EAAE,MAAM,CAAC;QACxB,WAAW,CAAC,EAAE,OAAO,CAAC;QACtB,eAAe,CAAC,EAAE,KAAK,GAAG,OAAO,GAAG,QAAQ,GAAG,MAAM,CAAC;QACtD,SAAS,CAAC,EAAE,OAAO,CAAC;QACpB,KAAK,CAAC,EAAE,MAAM,CAAC;QACf,WAAW,CAAC,EAAE,MAAM,CAAC;QACrB,UAAU,CAAC,EAAE,MAAM,CAAC;QACpB,YAAY,CAAC,EAAE,MAAM,CAAC;KACvB,CAAC;IAEF,UAAU,CAAC,EAAE;QACX,IAAI,EAAE,MAAM,GAAG,MAAM,EAAE,CAAC;QACxB,IAAI,EAAE,OAAO,GAAG,UAAU,GAAG,YAAY,GAAG,UAAU,GAAG,OAAO,CAAC;KAClE,CAAC;CACH;AAED,eAAO,MAAM,qBAAqB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;EA6BhC,CAAC;AAEH,wBAAgB,uBAAuB,CAAC,IAAI,EAAE,OAAO,GAAG,eAAe,CAEtE;AAED,wBAAsB,iBAAiB,CAAC,IAAI,EAAE,eAAe,GAAG,OAAO,CAAC,WAAW,CAAC,OAAO,CAAC,CAAC,CAsF5F"}
|
package/dist/blocks/index.d.ts
CHANGED
|
@@ -24,6 +24,7 @@ export type { NetworkCatchBlock, NetworkCatchResponse } from './NetworkCatchBloc
|
|
|
24
24
|
export type { MarkBorderBlock } from './MarkBorderBlock';
|
|
25
25
|
export type { ApplyLocaleBlock } from './ApplyLocaleBlock';
|
|
26
26
|
export type { PasteValueBlock } from './PasteValueBlock';
|
|
27
|
+
export type { CheckStatusBlock } from './CheckStatusBlock';
|
|
27
28
|
export { GetTextBlockSchema } from './GetTextBlock';
|
|
28
29
|
export { GetAttributeValueBlockSchema } from './GetAttributeValueBlock';
|
|
29
30
|
export { GetValueFormsBlockSchema } from './GetValueFormBlock';
|
|
@@ -47,6 +48,7 @@ export { NetworkCatchBlockSchema } from './NetworkCatchBlock';
|
|
|
47
48
|
export { MarkBorderBlockSchema } from './MarkBorderBlock';
|
|
48
49
|
export { ApplyLocaleBlockSchema } from './ApplyLocaleBlock';
|
|
49
50
|
export { PasteValueBlockSchema } from './PasteValueBlock';
|
|
51
|
+
export { CheckStatusBlockSchema } from './CheckStatusBlock';
|
|
50
52
|
import { GetTextBlock } from './GetTextBlock';
|
|
51
53
|
import { GetAttributeValueBlock } from './GetAttributeValueBlock';
|
|
52
54
|
import { GetValueFormsBlock } from './GetValueFormBlock';
|
|
@@ -70,6 +72,7 @@ import { NetworkCatchBlock } from './NetworkCatchBlock';
|
|
|
70
72
|
import { MarkBorderBlock } from './MarkBorderBlock';
|
|
71
73
|
import { ApplyLocaleBlock } from './ApplyLocaleBlock';
|
|
72
74
|
import { PasteValueBlock } from './PasteValueBlock';
|
|
75
|
+
import { CheckStatusBlock } from './CheckStatusBlock';
|
|
73
76
|
import { Block, BlockResult } from './types';
|
|
74
77
|
export declare const AllBlockSchemas: {
|
|
75
78
|
readonly 'get-text': import("zod").ZodObject<{
|
|
@@ -961,6 +964,7 @@ export declare const AllBlockSchemas: {
|
|
|
961
964
|
}>;
|
|
962
965
|
} & {
|
|
963
966
|
name: import("zod").ZodLiteral<"mark-border">;
|
|
967
|
+
highlightMode: import("zod").ZodOptional<import("zod").ZodEnum<["border", "spotlight", "both"]>>;
|
|
964
968
|
borderStyle: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
965
969
|
color: import("zod").ZodOptional<import("zod").ZodString>;
|
|
966
970
|
width: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
@@ -977,6 +981,34 @@ export declare const AllBlockSchemas: {
|
|
|
977
981
|
color?: string | undefined;
|
|
978
982
|
animated?: boolean | undefined;
|
|
979
983
|
}>>;
|
|
984
|
+
spotlightOptions: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
985
|
+
overlayOpacity: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
986
|
+
showPointer: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
987
|
+
pointerPosition: import("zod").ZodOptional<import("zod").ZodEnum<["top", "right", "bottom", "left"]>>;
|
|
988
|
+
showLabel: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
989
|
+
label: import("zod").ZodOptional<import("zod").ZodString>;
|
|
990
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
991
|
+
pulseColor: import("zod").ZodOptional<import("zod").ZodString>;
|
|
992
|
+
borderRadius: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
993
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
994
|
+
label?: string | undefined;
|
|
995
|
+
overlayOpacity?: number | undefined;
|
|
996
|
+
showPointer?: boolean | undefined;
|
|
997
|
+
pointerPosition?: "top" | "bottom" | "right" | "left" | undefined;
|
|
998
|
+
showLabel?: boolean | undefined;
|
|
999
|
+
description?: string | undefined;
|
|
1000
|
+
pulseColor?: string | undefined;
|
|
1001
|
+
borderRadius?: number | undefined;
|
|
1002
|
+
}, {
|
|
1003
|
+
label?: string | undefined;
|
|
1004
|
+
overlayOpacity?: number | undefined;
|
|
1005
|
+
showPointer?: boolean | undefined;
|
|
1006
|
+
pointerPosition?: "top" | "bottom" | "right" | "left" | undefined;
|
|
1007
|
+
showLabel?: boolean | undefined;
|
|
1008
|
+
description?: string | undefined;
|
|
1009
|
+
pulseColor?: string | undefined;
|
|
1010
|
+
borderRadius?: number | undefined;
|
|
1011
|
+
}>>;
|
|
980
1012
|
textFilter: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
981
1013
|
text: import("zod").ZodUnion<[import("zod").ZodString, import("zod").ZodArray<import("zod").ZodString, "many">]>;
|
|
982
1014
|
mode: import("zod").ZodEnum<["exact", "contains", "startsWith", "endsWith", "regex"]>;
|
|
@@ -1000,12 +1032,23 @@ export declare const AllBlockSchemas: {
|
|
|
1000
1032
|
text: string | string[];
|
|
1001
1033
|
mode: "exact" | "regex" | "contains" | "startsWith" | "endsWith";
|
|
1002
1034
|
} | undefined;
|
|
1035
|
+
highlightMode?: "border" | "spotlight" | "both" | undefined;
|
|
1003
1036
|
borderStyle?: {
|
|
1004
1037
|
style?: "solid" | "dashed" | "dotted" | "double" | undefined;
|
|
1005
1038
|
width?: number | undefined;
|
|
1006
1039
|
color?: string | undefined;
|
|
1007
1040
|
animated?: boolean | undefined;
|
|
1008
1041
|
} | undefined;
|
|
1042
|
+
spotlightOptions?: {
|
|
1043
|
+
label?: string | undefined;
|
|
1044
|
+
overlayOpacity?: number | undefined;
|
|
1045
|
+
showPointer?: boolean | undefined;
|
|
1046
|
+
pointerPosition?: "top" | "bottom" | "right" | "left" | undefined;
|
|
1047
|
+
showLabel?: boolean | undefined;
|
|
1048
|
+
description?: string | undefined;
|
|
1049
|
+
pulseColor?: string | undefined;
|
|
1050
|
+
borderRadius?: number | undefined;
|
|
1051
|
+
} | undefined;
|
|
1009
1052
|
}, {
|
|
1010
1053
|
name: "mark-border";
|
|
1011
1054
|
selector: string;
|
|
@@ -1019,12 +1062,23 @@ export declare const AllBlockSchemas: {
|
|
|
1019
1062
|
text: string | string[];
|
|
1020
1063
|
mode: "exact" | "regex" | "contains" | "startsWith" | "endsWith";
|
|
1021
1064
|
} | undefined;
|
|
1065
|
+
highlightMode?: "border" | "spotlight" | "both" | undefined;
|
|
1022
1066
|
borderStyle?: {
|
|
1023
1067
|
style?: "solid" | "dashed" | "dotted" | "double" | undefined;
|
|
1024
1068
|
width?: number | undefined;
|
|
1025
1069
|
color?: string | undefined;
|
|
1026
1070
|
animated?: boolean | undefined;
|
|
1027
1071
|
} | undefined;
|
|
1072
|
+
spotlightOptions?: {
|
|
1073
|
+
label?: string | undefined;
|
|
1074
|
+
overlayOpacity?: number | undefined;
|
|
1075
|
+
showPointer?: boolean | undefined;
|
|
1076
|
+
pointerPosition?: "top" | "bottom" | "right" | "left" | undefined;
|
|
1077
|
+
showLabel?: boolean | undefined;
|
|
1078
|
+
description?: string | undefined;
|
|
1079
|
+
pulseColor?: string | undefined;
|
|
1080
|
+
borderRadius?: number | undefined;
|
|
1081
|
+
} | undefined;
|
|
1028
1082
|
}>;
|
|
1029
1083
|
readonly 'apply-locale': import("zod").ZodObject<{
|
|
1030
1084
|
name: import("zod").ZodLiteral<"apply-locale">;
|
|
@@ -1092,6 +1146,45 @@ export declare const AllBlockSchemas: {
|
|
|
1092
1146
|
multiple?: boolean | undefined;
|
|
1093
1147
|
};
|
|
1094
1148
|
}>;
|
|
1149
|
+
readonly 'check-status': import("zod").ZodObject<{
|
|
1150
|
+
name: import("zod").ZodLiteral<"check-status">;
|
|
1151
|
+
checkType: import("zod").ZodEnum<["login", "pageLoad", "element", "custom"]>;
|
|
1152
|
+
title: import("zod").ZodString;
|
|
1153
|
+
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1154
|
+
options: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
1155
|
+
timeoutMs: import("zod").ZodOptional<import("zod").ZodNumber>;
|
|
1156
|
+
retryable: import("zod").ZodOptional<import("zod").ZodBoolean>;
|
|
1157
|
+
customValidator: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1158
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1159
|
+
timeoutMs?: number | undefined;
|
|
1160
|
+
retryable?: boolean | undefined;
|
|
1161
|
+
customValidator?: string | undefined;
|
|
1162
|
+
}, {
|
|
1163
|
+
timeoutMs?: number | undefined;
|
|
1164
|
+
retryable?: boolean | undefined;
|
|
1165
|
+
customValidator?: string | undefined;
|
|
1166
|
+
}>>;
|
|
1167
|
+
}, "strip", import("zod").ZodTypeAny, {
|
|
1168
|
+
name: "check-status";
|
|
1169
|
+
title: string;
|
|
1170
|
+
checkType: "custom" | "login" | "pageLoad" | "element";
|
|
1171
|
+
options?: {
|
|
1172
|
+
timeoutMs?: number | undefined;
|
|
1173
|
+
retryable?: boolean | undefined;
|
|
1174
|
+
customValidator?: string | undefined;
|
|
1175
|
+
} | undefined;
|
|
1176
|
+
description?: string | undefined;
|
|
1177
|
+
}, {
|
|
1178
|
+
name: "check-status";
|
|
1179
|
+
title: string;
|
|
1180
|
+
checkType: "custom" | "login" | "pageLoad" | "element";
|
|
1181
|
+
options?: {
|
|
1182
|
+
timeoutMs?: number | undefined;
|
|
1183
|
+
retryable?: boolean | undefined;
|
|
1184
|
+
customValidator?: string | undefined;
|
|
1185
|
+
} | undefined;
|
|
1186
|
+
description?: string | undefined;
|
|
1187
|
+
}>;
|
|
1095
1188
|
};
|
|
1096
1189
|
export declare class BlockHandler {
|
|
1097
1190
|
static executeBlock(block: GetTextBlock): Promise<BlockResult<string | string[]>>;
|
|
@@ -1120,6 +1213,7 @@ export declare class BlockHandler {
|
|
|
1120
1213
|
static executeBlock(block: MarkBorderBlock): Promise<BlockResult<boolean>>;
|
|
1121
1214
|
static executeBlock(block: ApplyLocaleBlock): Promise<BlockResult<any>>;
|
|
1122
1215
|
static executeBlock(block: PasteValueBlock): Promise<BlockResult<boolean>>;
|
|
1216
|
+
static executeBlock(block: CheckStatusBlock): Promise<BlockResult<any>>;
|
|
1123
1217
|
static executeBlock(block: Block): Promise<BlockResult>;
|
|
1124
1218
|
}
|
|
1125
1219
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/blocks/index.ts"],"names":[],"mappings":"AACA,YAAY,EAAE,KAAK,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAClD,OAAO,EAAE,eAAe,EAAE,MAAM,SAAS,CAAC;AAG1C,YAAY,EAAE,YAAY,EAAE,MAAM,gBAAgB,CAAC;AACnD,YAAY,EAAE,sBAAsB,EAAE,MAAM,0BAA0B,CAAC;AACvE,YAAY,EAAE,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;AAC9D,YAAY,EAAE,kBAAkB,EAAE,MAAM,qBAAqB,CAAC;AAC9D,YAAY,EAAE,oBAAoB,EAAE,MAAM,uBAAuB,CAAC;AAClE,YAAY,EAAE,uBAAuB,EAAE,MAAM,2BAA2B,CAAC;AACzE,YAAY,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,YAAY,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACzD,YAAY,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AACrD,YAAY,EAAE,SAAS,EAAE,MAAM,aAAa,CAAC;AAC7C,YAAY,EAAE,qBAAqB,EAAE,sBAAsB,EAAE,MAAM,yBAAyB,CAAC;AAC7F,YAAY,EAAE,aAAa,EAAE,MAAM,iBAAiB,CAAC;AACrD,YAAY,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACzD,YAAY,EAAE,mBAAmB,EAAE,WAAW,EAAE,MAAM,uBAAuB,CAAC;AAC9E,YAAY,EAAE,WAAW,EAAE,MAAM,eAAe,CAAC;AACjD,YAAY,EACV,gBAAgB,EAChB,WAAW,EACX,gBAAgB,EAChB,sBAAsB,EACtB,qBAAqB,GACtB,MAAM,oBAAoB,CAAC;AAC5B,OAAO,EAAE,YAAY,EAAE,iBAAiB,EAAE,MAAM,EAAE,MAAM,oBAAoB,CAAC;AAC7E,YAAY,EAAE,aAAa,EAAE,gBAAgB,EAAE,MAAM,iBAAiB,CAAC;AACvE,YAAY,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,YAAY,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACzD,YAAY,EAAE,iBAAiB,EAAE,oBAAoB,EAAE,MAAM,qBAAqB,CAAC;AACnF,YAAY,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;AACzD,YAAY,EAAE,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAC3D,YAAY,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/blocks/index.ts"],"names":[],"mappings":"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"}
|
|
@@ -34,19 +34,19 @@ export declare const WorkspaceDetailItemSchema: z.ZodObject<{
|
|
|
34
34
|
orgPageUrl: z.ZodString;
|
|
35
35
|
roles: z.ZodArray<z.ZodString, "many">;
|
|
36
36
|
}, "strip", z.ZodTypeAny, {
|
|
37
|
+
description: string;
|
|
37
38
|
slug: string;
|
|
38
39
|
displayName: string;
|
|
39
40
|
profileImageUrl: string;
|
|
40
|
-
description: string;
|
|
41
41
|
publicEmail: string;
|
|
42
42
|
billingEmail: string;
|
|
43
43
|
orgPageUrl: string;
|
|
44
44
|
roles: string[];
|
|
45
45
|
}, {
|
|
46
|
+
description: string;
|
|
46
47
|
slug: string;
|
|
47
48
|
displayName: string;
|
|
48
49
|
profileImageUrl: string;
|
|
49
|
-
description: string;
|
|
50
50
|
publicEmail: string;
|
|
51
51
|
billingEmail: string;
|
|
52
52
|
orgPageUrl: string;
|