@bubblelab/bubble-core 0.1.30 → 0.1.32
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/bubble-bundle.d.ts +11 -11
- package/dist/bubbles/service-bubble/http.d.ts +4 -4
- package/dist/bubbles/service-bubble/insforge-db.d.ts +6 -6
- package/dist/bubbles/service-bubble/jira/index.d.ts +1 -1
- package/dist/bubbles/service-bubble/jira/index.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/jira/index.js.map +1 -1
- package/dist/bubbles/service-bubble/jira/jira.d.ts +64 -54
- package/dist/bubbles/service-bubble/jira/jira.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/jira/jira.js +87 -12
- package/dist/bubbles/service-bubble/jira/jira.js.map +1 -1
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts +75 -74
- package/dist/bubbles/service-bubble/jira/jira.schema.d.ts.map +1 -1
- package/dist/bubbles/service-bubble/jira/jira.schema.js +5 -7
- package/dist/bubbles/service-bubble/jira/jira.schema.js.map +1 -1
- package/dist/bubbles/service-bubble/postgresql.d.ts +6 -6
- package/dist/bubbles/tool-bubble/sql-query-tool.d.ts +4 -4
- package/dist/bubbles/workflow-bubble/slack-data-assistant.workflow.d.ts +4 -4
- package/dist/bubbles.json +12 -20
- package/package.json +2 -2
|
@@ -15,7 +15,7 @@ declare const HttpParamsSchema: z.ZodObject<{
|
|
|
15
15
|
}, "strip", z.ZodTypeAny, {
|
|
16
16
|
url: string;
|
|
17
17
|
timeout: number;
|
|
18
|
-
method: "
|
|
18
|
+
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
|
|
19
19
|
followRedirects: boolean;
|
|
20
20
|
authType: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header";
|
|
21
21
|
body?: string | Record<string, unknown> | undefined;
|
|
@@ -28,7 +28,7 @@ declare const HttpParamsSchema: z.ZodObject<{
|
|
|
28
28
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
29
29
|
timeout?: number | undefined;
|
|
30
30
|
headers?: Record<string, string> | undefined;
|
|
31
|
-
method?: "
|
|
31
|
+
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
32
32
|
followRedirects?: boolean | undefined;
|
|
33
33
|
authType?: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
|
|
34
34
|
authHeader?: string | undefined;
|
|
@@ -85,7 +85,7 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
|
|
|
85
85
|
}, "strip", z.ZodTypeAny, {
|
|
86
86
|
url: string;
|
|
87
87
|
timeout: number;
|
|
88
|
-
method: "
|
|
88
|
+
method: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS";
|
|
89
89
|
followRedirects: boolean;
|
|
90
90
|
authType: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header";
|
|
91
91
|
body?: string | Record<string, unknown> | undefined;
|
|
@@ -98,7 +98,7 @@ export declare class HttpBubble extends ServiceBubble<HttpParams, HttpResult> {
|
|
|
98
98
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
99
99
|
timeout?: number | undefined;
|
|
100
100
|
headers?: Record<string, string> | undefined;
|
|
101
|
-
method?: "
|
|
101
|
+
method?: "GET" | "POST" | "PUT" | "DELETE" | "PATCH" | "HEAD" | "OPTIONS" | undefined;
|
|
102
102
|
followRedirects?: boolean | undefined;
|
|
103
103
|
authType?: "custom" | "none" | "bearer" | "basic" | "api-key" | "api-key-header" | undefined;
|
|
104
104
|
authHeader?: string | undefined;
|
|
@@ -11,9 +11,9 @@ declare const InsForgeDbParamsSchema: z.ZodObject<{
|
|
|
11
11
|
maxRows: z.ZodDefault<z.ZodNumber>;
|
|
12
12
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
13
13
|
}, "strip", z.ZodTypeAny, {
|
|
14
|
-
timeout: number;
|
|
15
14
|
query: string;
|
|
16
|
-
|
|
15
|
+
timeout: number;
|
|
16
|
+
allowedOperations: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "CREATE")[];
|
|
17
17
|
parameters: unknown[];
|
|
18
18
|
maxRows: number;
|
|
19
19
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -21,7 +21,7 @@ declare const InsForgeDbParamsSchema: z.ZodObject<{
|
|
|
21
21
|
query: string;
|
|
22
22
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
23
23
|
timeout?: number | undefined;
|
|
24
|
-
allowedOperations?: ("
|
|
24
|
+
allowedOperations?: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
|
|
25
25
|
parameters?: unknown[] | undefined;
|
|
26
26
|
maxRows?: number | undefined;
|
|
27
27
|
}>;
|
|
@@ -85,9 +85,9 @@ export declare class InsForgeDbBubble extends ServiceBubble<InsForgeDbParams, In
|
|
|
85
85
|
maxRows: z.ZodDefault<z.ZodNumber>;
|
|
86
86
|
credentials: z.ZodOptional<z.ZodRecord<z.ZodNativeEnum<typeof CredentialType>, z.ZodString>>;
|
|
87
87
|
}, "strip", z.ZodTypeAny, {
|
|
88
|
-
timeout: number;
|
|
89
88
|
query: string;
|
|
90
|
-
|
|
89
|
+
timeout: number;
|
|
90
|
+
allowedOperations: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "CREATE")[];
|
|
91
91
|
parameters: unknown[];
|
|
92
92
|
maxRows: number;
|
|
93
93
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
@@ -95,7 +95,7 @@ export declare class InsForgeDbBubble extends ServiceBubble<InsForgeDbParams, In
|
|
|
95
95
|
query: string;
|
|
96
96
|
credentials?: Partial<Record<CredentialType, string>> | undefined;
|
|
97
97
|
timeout?: number | undefined;
|
|
98
|
-
allowedOperations?: ("
|
|
98
|
+
allowedOperations?: ("DELETE" | "SELECT" | "INSERT" | "UPDATE" | "WITH" | "EXPLAIN" | "CREATE")[] | undefined;
|
|
99
99
|
parameters?: unknown[] | undefined;
|
|
100
100
|
maxRows?: number | undefined;
|
|
101
101
|
}>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
export { JiraBubble } from './jira.js';
|
|
2
|
-
export { JiraParamsSchema, JiraResultSchema, JiraUserSchema, JiraIssueTypeSchema, JiraStatusSchema, JiraPrioritySchema, JiraProjectSchema, JiraCommentSchema, JiraTransitionSchema, JiraIssueSchema, type JiraParams, type JiraParamsInput, type JiraResult, type JiraSearchParams, type JiraGetParams, type JiraCreateParams, type JiraUpdateParams, type JiraTransitionParams, type JiraListTransitionsParams, type JiraListProjectsParams, type JiraListIssueTypesParams, type JiraAddCommentParams, type JiraGetCommentsParams, } from './jira.schema.js';
|
|
2
|
+
export { JiraParamsSchema, JiraResultSchema, JiraUserSchema, JiraIssueTypeSchema, JiraStatusSchema, JiraPrioritySchema, JiraProjectSchema, JiraCommentSchema, JiraTransitionSchema, JiraIssueSchema, type JiraParams, type JiraParamsInput, type JiraResult, type JiraSearchParams, type JiraGetParams, type JiraCreateParams, type JiraUpdateParams, type JiraTransitionParams, type JiraListTransitionsParams, type JiraListProjectsParams, type JiraListIssueTypesParams, type JiraAddCommentParams, type JiraGetCommentsParams, type JiraIssue, } from './jira.schema.js';
|
|
3
3
|
export { textToADF, adfToText, enhanceErrorMessage, normalizeDate, findTransitionByStatus, } from './jira.utils.js';
|
|
4
4
|
export { JiraIntegrationFlow } from './jira.integration.flow.js';
|
|
5
5
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/jira/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AACvC,OAAO,EACL,gBAAgB,EAChB,gBAAgB,EAChB,cAAc,EACd,mBAAmB,EACnB,gBAAgB,EAChB,kBAAkB,EAClB,iBAAiB,EACjB,iBAAiB,EACjB,oBAAoB,EACpB,eAAe,EACf,KAAK,UAAU,EACf,KAAK,eAAe,EACpB,KAAK,UAAU,EACf,KAAK,gBAAgB,EACrB,KAAK,aAAa,EAClB,KAAK,gBAAgB,EACrB,KAAK,gBAAgB,EACrB,KAAK,oBAAoB,EACzB,KAAK,yBAAyB,EAC9B,KAAK,sBAAsB,EAC3B,KAAK,wBAAwB,EAC7B,KAAK,oBAAoB,EACzB,KAAK,qBAAqB,
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/jira/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AACvC,OAAO,EACL,gBAAgB,EAChB,gBAAgB,EAChB,cAAc,EACd,mBAAmB,EACnB,gBAAgB,EAChB,kBAAkB,EAClB,iBAAiB,EACjB,iBAAiB,EACjB,oBAAoB,EACpB,eAAe,EACf,KAAK,UAAU,EACf,KAAK,eAAe,EACpB,KAAK,UAAU,EACf,KAAK,gBAAgB,EACrB,KAAK,aAAa,EAClB,KAAK,gBAAgB,EACrB,KAAK,gBAAgB,EACrB,KAAK,oBAAoB,EACzB,KAAK,yBAAyB,EAC9B,KAAK,sBAAsB,EAC3B,KAAK,wBAAwB,EAC7B,KAAK,oBAAoB,EACzB,KAAK,qBAAqB,EAC1B,KAAK,SAAS,GACf,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EACL,SAAS,EACT,SAAS,EACT,mBAAmB,EACnB,aAAa,EACb,sBAAsB,GACvB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/jira/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AACvC,OAAO,EACL,gBAAgB,EAChB,gBAAgB,EAChB,cAAc,EACd,mBAAmB,EACnB,gBAAgB,EAChB,kBAAkB,EAClB,iBAAiB,EACjB,iBAAiB,EACjB,oBAAoB,EACpB,eAAe,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/jira/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,WAAW,CAAC;AACvC,OAAO,EACL,gBAAgB,EAChB,gBAAgB,EAChB,cAAc,EACd,mBAAmB,EACnB,gBAAgB,EAChB,kBAAkB,EAClB,iBAAiB,EACjB,iBAAiB,EACjB,oBAAoB,EACpB,eAAe,GAehB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EACL,SAAS,EACT,SAAS,EACT,mBAAmB,EACnB,aAAa,EACb,sBAAsB,GACvB,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAE,mBAAmB,EAAE,MAAM,4BAA4B,CAAC"}
|
|
@@ -85,7 +85,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
85
85
|
type: import("zod").ZodDefault<import("zod").ZodOptional<import("zod").ZodString>>;
|
|
86
86
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
87
87
|
assignee: import("zod").ZodOptional<import("zod").ZodString>;
|
|
88
|
-
priority: import("zod").ZodOptional<import("zod").
|
|
88
|
+
priority: import("zod").ZodOptional<import("zod").ZodString>;
|
|
89
89
|
labels: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
90
90
|
parent: import("zod").ZodOptional<import("zod").ZodString>;
|
|
91
91
|
due_date: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -96,7 +96,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
96
96
|
project: string;
|
|
97
97
|
operation: "create";
|
|
98
98
|
description?: string | undefined;
|
|
99
|
-
priority?:
|
|
99
|
+
priority?: string | undefined;
|
|
100
100
|
assignee?: string | undefined;
|
|
101
101
|
labels?: string[] | undefined;
|
|
102
102
|
parent?: string | undefined;
|
|
@@ -108,7 +108,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
108
108
|
operation: "create";
|
|
109
109
|
type?: string | undefined;
|
|
110
110
|
description?: string | undefined;
|
|
111
|
-
priority?:
|
|
111
|
+
priority?: string | undefined;
|
|
112
112
|
assignee?: string | undefined;
|
|
113
113
|
labels?: string[] | undefined;
|
|
114
114
|
parent?: string | undefined;
|
|
@@ -120,7 +120,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
120
120
|
summary: import("zod").ZodOptional<import("zod").ZodString>;
|
|
121
121
|
description: import("zod").ZodOptional<import("zod").ZodString>;
|
|
122
122
|
assignee: import("zod").ZodOptional<import("zod").ZodNullable<import("zod").ZodString>>;
|
|
123
|
-
priority: import("zod").ZodOptional<import("zod").
|
|
123
|
+
priority: import("zod").ZodOptional<import("zod").ZodString>;
|
|
124
124
|
labels: import("zod").ZodOptional<import("zod").ZodObject<{
|
|
125
125
|
add: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
126
126
|
remove: import("zod").ZodOptional<import("zod").ZodArray<import("zod").ZodString, "many">>;
|
|
@@ -142,7 +142,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
142
142
|
operation: "update";
|
|
143
143
|
description?: string | undefined;
|
|
144
144
|
summary?: string | undefined;
|
|
145
|
-
priority?:
|
|
145
|
+
priority?: string | undefined;
|
|
146
146
|
assignee?: string | null | undefined;
|
|
147
147
|
labels?: {
|
|
148
148
|
set?: string[] | undefined;
|
|
@@ -157,7 +157,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
157
157
|
operation: "update";
|
|
158
158
|
description?: string | undefined;
|
|
159
159
|
summary?: string | undefined;
|
|
160
|
-
priority?:
|
|
160
|
+
priority?: string | undefined;
|
|
161
161
|
assignee?: string | null | undefined;
|
|
162
162
|
labels?: {
|
|
163
163
|
set?: string[] | undefined;
|
|
@@ -406,7 +406,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
406
406
|
emailAddress?: string | undefined;
|
|
407
407
|
active?: boolean | undefined;
|
|
408
408
|
}>>>;
|
|
409
|
-
body: import("zod").ZodOptional<import("zod").
|
|
409
|
+
body: import("zod").ZodOptional<import("zod").ZodString>;
|
|
410
410
|
renderedBody: import("zod").ZodOptional<import("zod").ZodString>;
|
|
411
411
|
created: import("zod").ZodOptional<import("zod").ZodString>;
|
|
412
412
|
updated: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -418,7 +418,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
418
418
|
emailAddress?: string | undefined;
|
|
419
419
|
active?: boolean | undefined;
|
|
420
420
|
} | null | undefined;
|
|
421
|
-
body?:
|
|
421
|
+
body?: string | undefined;
|
|
422
422
|
renderedBody?: string | undefined;
|
|
423
423
|
created?: string | undefined;
|
|
424
424
|
updated?: string | undefined;
|
|
@@ -430,7 +430,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
430
430
|
emailAddress?: string | undefined;
|
|
431
431
|
active?: boolean | undefined;
|
|
432
432
|
} | null | undefined;
|
|
433
|
-
body?:
|
|
433
|
+
body?: string | undefined;
|
|
434
434
|
renderedBody?: string | undefined;
|
|
435
435
|
created?: string | undefined;
|
|
436
436
|
updated?: string | undefined;
|
|
@@ -445,7 +445,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
445
445
|
emailAddress?: string | undefined;
|
|
446
446
|
active?: boolean | undefined;
|
|
447
447
|
} | null | undefined;
|
|
448
|
-
body?:
|
|
448
|
+
body?: string | undefined;
|
|
449
449
|
renderedBody?: string | undefined;
|
|
450
450
|
created?: string | undefined;
|
|
451
451
|
updated?: string | undefined;
|
|
@@ -460,7 +460,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
460
460
|
emailAddress?: string | undefined;
|
|
461
461
|
active?: boolean | undefined;
|
|
462
462
|
} | null | undefined;
|
|
463
|
-
body?:
|
|
463
|
+
body?: string | undefined;
|
|
464
464
|
renderedBody?: string | undefined;
|
|
465
465
|
created?: string | undefined;
|
|
466
466
|
updated?: string | undefined;
|
|
@@ -602,7 +602,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
602
602
|
emailAddress?: string | undefined;
|
|
603
603
|
active?: boolean | undefined;
|
|
604
604
|
}>>>;
|
|
605
|
-
body: import("zod").ZodOptional<import("zod").
|
|
605
|
+
body: import("zod").ZodOptional<import("zod").ZodString>;
|
|
606
606
|
renderedBody: import("zod").ZodOptional<import("zod").ZodString>;
|
|
607
607
|
created: import("zod").ZodOptional<import("zod").ZodString>;
|
|
608
608
|
updated: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -614,7 +614,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
614
614
|
emailAddress?: string | undefined;
|
|
615
615
|
active?: boolean | undefined;
|
|
616
616
|
} | null | undefined;
|
|
617
|
-
body?:
|
|
617
|
+
body?: string | undefined;
|
|
618
618
|
renderedBody?: string | undefined;
|
|
619
619
|
created?: string | undefined;
|
|
620
620
|
updated?: string | undefined;
|
|
@@ -626,7 +626,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
626
626
|
emailAddress?: string | undefined;
|
|
627
627
|
active?: boolean | undefined;
|
|
628
628
|
} | null | undefined;
|
|
629
|
-
body?:
|
|
629
|
+
body?: string | undefined;
|
|
630
630
|
renderedBody?: string | undefined;
|
|
631
631
|
created?: string | undefined;
|
|
632
632
|
updated?: string | undefined;
|
|
@@ -641,7 +641,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
641
641
|
emailAddress?: string | undefined;
|
|
642
642
|
active?: boolean | undefined;
|
|
643
643
|
} | null | undefined;
|
|
644
|
-
body?:
|
|
644
|
+
body?: string | undefined;
|
|
645
645
|
renderedBody?: string | undefined;
|
|
646
646
|
created?: string | undefined;
|
|
647
647
|
updated?: string | undefined;
|
|
@@ -656,7 +656,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
656
656
|
emailAddress?: string | undefined;
|
|
657
657
|
active?: boolean | undefined;
|
|
658
658
|
} | null | undefined;
|
|
659
|
-
body?:
|
|
659
|
+
body?: string | undefined;
|
|
660
660
|
renderedBody?: string | undefined;
|
|
661
661
|
created?: string | undefined;
|
|
662
662
|
updated?: string | undefined;
|
|
@@ -798,7 +798,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
798
798
|
emailAddress?: string | undefined;
|
|
799
799
|
active?: boolean | undefined;
|
|
800
800
|
}>>>;
|
|
801
|
-
body: import("zod").ZodOptional<import("zod").
|
|
801
|
+
body: import("zod").ZodOptional<import("zod").ZodString>;
|
|
802
802
|
renderedBody: import("zod").ZodOptional<import("zod").ZodString>;
|
|
803
803
|
created: import("zod").ZodOptional<import("zod").ZodString>;
|
|
804
804
|
updated: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -810,7 +810,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
810
810
|
emailAddress?: string | undefined;
|
|
811
811
|
active?: boolean | undefined;
|
|
812
812
|
} | null | undefined;
|
|
813
|
-
body?:
|
|
813
|
+
body?: string | undefined;
|
|
814
814
|
renderedBody?: string | undefined;
|
|
815
815
|
created?: string | undefined;
|
|
816
816
|
updated?: string | undefined;
|
|
@@ -822,7 +822,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
822
822
|
emailAddress?: string | undefined;
|
|
823
823
|
active?: boolean | undefined;
|
|
824
824
|
} | null | undefined;
|
|
825
|
-
body?:
|
|
825
|
+
body?: string | undefined;
|
|
826
826
|
renderedBody?: string | undefined;
|
|
827
827
|
created?: string | undefined;
|
|
828
828
|
updated?: string | undefined;
|
|
@@ -837,7 +837,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
837
837
|
emailAddress?: string | undefined;
|
|
838
838
|
active?: boolean | undefined;
|
|
839
839
|
} | null | undefined;
|
|
840
|
-
body?:
|
|
840
|
+
body?: string | undefined;
|
|
841
841
|
renderedBody?: string | undefined;
|
|
842
842
|
created?: string | undefined;
|
|
843
843
|
updated?: string | undefined;
|
|
@@ -852,7 +852,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
852
852
|
emailAddress?: string | undefined;
|
|
853
853
|
active?: boolean | undefined;
|
|
854
854
|
} | null | undefined;
|
|
855
|
-
body?:
|
|
855
|
+
body?: string | undefined;
|
|
856
856
|
renderedBody?: string | undefined;
|
|
857
857
|
created?: string | undefined;
|
|
858
858
|
updated?: string | undefined;
|
|
@@ -973,7 +973,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
973
973
|
emailAddress?: string | undefined;
|
|
974
974
|
active?: boolean | undefined;
|
|
975
975
|
} | null | undefined;
|
|
976
|
-
body?:
|
|
976
|
+
body?: string | undefined;
|
|
977
977
|
renderedBody?: string | undefined;
|
|
978
978
|
created?: string | undefined;
|
|
979
979
|
updated?: string | undefined;
|
|
@@ -1055,7 +1055,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1055
1055
|
emailAddress?: string | undefined;
|
|
1056
1056
|
active?: boolean | undefined;
|
|
1057
1057
|
} | null | undefined;
|
|
1058
|
-
body?:
|
|
1058
|
+
body?: string | undefined;
|
|
1059
1059
|
renderedBody?: string | undefined;
|
|
1060
1060
|
created?: string | undefined;
|
|
1061
1061
|
updated?: string | undefined;
|
|
@@ -1146,7 +1146,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1146
1146
|
emailAddress?: string | undefined;
|
|
1147
1147
|
active?: boolean | undefined;
|
|
1148
1148
|
} | null | undefined;
|
|
1149
|
-
body?:
|
|
1149
|
+
body?: string | undefined;
|
|
1150
1150
|
renderedBody?: string | undefined;
|
|
1151
1151
|
created?: string | undefined;
|
|
1152
1152
|
updated?: string | undefined;
|
|
@@ -1236,7 +1236,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1236
1236
|
emailAddress?: string | undefined;
|
|
1237
1237
|
active?: boolean | undefined;
|
|
1238
1238
|
} | null | undefined;
|
|
1239
|
-
body?:
|
|
1239
|
+
body?: string | undefined;
|
|
1240
1240
|
renderedBody?: string | undefined;
|
|
1241
1241
|
created?: string | undefined;
|
|
1242
1242
|
updated?: string | undefined;
|
|
@@ -1406,7 +1406,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1406
1406
|
emailAddress?: string | undefined;
|
|
1407
1407
|
active?: boolean | undefined;
|
|
1408
1408
|
}>>>;
|
|
1409
|
-
body: import("zod").ZodOptional<import("zod").
|
|
1409
|
+
body: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1410
1410
|
renderedBody: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1411
1411
|
created: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1412
1412
|
updated: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -1418,7 +1418,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1418
1418
|
emailAddress?: string | undefined;
|
|
1419
1419
|
active?: boolean | undefined;
|
|
1420
1420
|
} | null | undefined;
|
|
1421
|
-
body?:
|
|
1421
|
+
body?: string | undefined;
|
|
1422
1422
|
renderedBody?: string | undefined;
|
|
1423
1423
|
created?: string | undefined;
|
|
1424
1424
|
updated?: string | undefined;
|
|
@@ -1430,7 +1430,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1430
1430
|
emailAddress?: string | undefined;
|
|
1431
1431
|
active?: boolean | undefined;
|
|
1432
1432
|
} | null | undefined;
|
|
1433
|
-
body?:
|
|
1433
|
+
body?: string | undefined;
|
|
1434
1434
|
renderedBody?: string | undefined;
|
|
1435
1435
|
created?: string | undefined;
|
|
1436
1436
|
updated?: string | undefined;
|
|
@@ -1445,7 +1445,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1445
1445
|
emailAddress?: string | undefined;
|
|
1446
1446
|
active?: boolean | undefined;
|
|
1447
1447
|
} | null | undefined;
|
|
1448
|
-
body?:
|
|
1448
|
+
body?: string | undefined;
|
|
1449
1449
|
renderedBody?: string | undefined;
|
|
1450
1450
|
created?: string | undefined;
|
|
1451
1451
|
updated?: string | undefined;
|
|
@@ -1460,7 +1460,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1460
1460
|
emailAddress?: string | undefined;
|
|
1461
1461
|
active?: boolean | undefined;
|
|
1462
1462
|
} | null | undefined;
|
|
1463
|
-
body?:
|
|
1463
|
+
body?: string | undefined;
|
|
1464
1464
|
renderedBody?: string | undefined;
|
|
1465
1465
|
created?: string | undefined;
|
|
1466
1466
|
updated?: string | undefined;
|
|
@@ -1602,7 +1602,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1602
1602
|
emailAddress?: string | undefined;
|
|
1603
1603
|
active?: boolean | undefined;
|
|
1604
1604
|
}>>>;
|
|
1605
|
-
body: import("zod").ZodOptional<import("zod").
|
|
1605
|
+
body: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1606
1606
|
renderedBody: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1607
1607
|
created: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1608
1608
|
updated: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -1614,7 +1614,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1614
1614
|
emailAddress?: string | undefined;
|
|
1615
1615
|
active?: boolean | undefined;
|
|
1616
1616
|
} | null | undefined;
|
|
1617
|
-
body?:
|
|
1617
|
+
body?: string | undefined;
|
|
1618
1618
|
renderedBody?: string | undefined;
|
|
1619
1619
|
created?: string | undefined;
|
|
1620
1620
|
updated?: string | undefined;
|
|
@@ -1626,7 +1626,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1626
1626
|
emailAddress?: string | undefined;
|
|
1627
1627
|
active?: boolean | undefined;
|
|
1628
1628
|
} | null | undefined;
|
|
1629
|
-
body?:
|
|
1629
|
+
body?: string | undefined;
|
|
1630
1630
|
renderedBody?: string | undefined;
|
|
1631
1631
|
created?: string | undefined;
|
|
1632
1632
|
updated?: string | undefined;
|
|
@@ -1641,7 +1641,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1641
1641
|
emailAddress?: string | undefined;
|
|
1642
1642
|
active?: boolean | undefined;
|
|
1643
1643
|
} | null | undefined;
|
|
1644
|
-
body?:
|
|
1644
|
+
body?: string | undefined;
|
|
1645
1645
|
renderedBody?: string | undefined;
|
|
1646
1646
|
created?: string | undefined;
|
|
1647
1647
|
updated?: string | undefined;
|
|
@@ -1656,7 +1656,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1656
1656
|
emailAddress?: string | undefined;
|
|
1657
1657
|
active?: boolean | undefined;
|
|
1658
1658
|
} | null | undefined;
|
|
1659
|
-
body?:
|
|
1659
|
+
body?: string | undefined;
|
|
1660
1660
|
renderedBody?: string | undefined;
|
|
1661
1661
|
created?: string | undefined;
|
|
1662
1662
|
updated?: string | undefined;
|
|
@@ -1798,7 +1798,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1798
1798
|
emailAddress?: string | undefined;
|
|
1799
1799
|
active?: boolean | undefined;
|
|
1800
1800
|
}>>>;
|
|
1801
|
-
body: import("zod").ZodOptional<import("zod").
|
|
1801
|
+
body: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1802
1802
|
renderedBody: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1803
1803
|
created: import("zod").ZodOptional<import("zod").ZodString>;
|
|
1804
1804
|
updated: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -1810,7 +1810,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1810
1810
|
emailAddress?: string | undefined;
|
|
1811
1811
|
active?: boolean | undefined;
|
|
1812
1812
|
} | null | undefined;
|
|
1813
|
-
body?:
|
|
1813
|
+
body?: string | undefined;
|
|
1814
1814
|
renderedBody?: string | undefined;
|
|
1815
1815
|
created?: string | undefined;
|
|
1816
1816
|
updated?: string | undefined;
|
|
@@ -1822,7 +1822,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1822
1822
|
emailAddress?: string | undefined;
|
|
1823
1823
|
active?: boolean | undefined;
|
|
1824
1824
|
} | null | undefined;
|
|
1825
|
-
body?:
|
|
1825
|
+
body?: string | undefined;
|
|
1826
1826
|
renderedBody?: string | undefined;
|
|
1827
1827
|
created?: string | undefined;
|
|
1828
1828
|
updated?: string | undefined;
|
|
@@ -1837,7 +1837,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1837
1837
|
emailAddress?: string | undefined;
|
|
1838
1838
|
active?: boolean | undefined;
|
|
1839
1839
|
} | null | undefined;
|
|
1840
|
-
body?:
|
|
1840
|
+
body?: string | undefined;
|
|
1841
1841
|
renderedBody?: string | undefined;
|
|
1842
1842
|
created?: string | undefined;
|
|
1843
1843
|
updated?: string | undefined;
|
|
@@ -1852,7 +1852,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1852
1852
|
emailAddress?: string | undefined;
|
|
1853
1853
|
active?: boolean | undefined;
|
|
1854
1854
|
} | null | undefined;
|
|
1855
|
-
body?:
|
|
1855
|
+
body?: string | undefined;
|
|
1856
1856
|
renderedBody?: string | undefined;
|
|
1857
1857
|
created?: string | undefined;
|
|
1858
1858
|
updated?: string | undefined;
|
|
@@ -1973,7 +1973,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
1973
1973
|
emailAddress?: string | undefined;
|
|
1974
1974
|
active?: boolean | undefined;
|
|
1975
1975
|
} | null | undefined;
|
|
1976
|
-
body?:
|
|
1976
|
+
body?: string | undefined;
|
|
1977
1977
|
renderedBody?: string | undefined;
|
|
1978
1978
|
created?: string | undefined;
|
|
1979
1979
|
updated?: string | undefined;
|
|
@@ -2055,7 +2055,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2055
2055
|
emailAddress?: string | undefined;
|
|
2056
2056
|
active?: boolean | undefined;
|
|
2057
2057
|
} | null | undefined;
|
|
2058
|
-
body?:
|
|
2058
|
+
body?: string | undefined;
|
|
2059
2059
|
renderedBody?: string | undefined;
|
|
2060
2060
|
created?: string | undefined;
|
|
2061
2061
|
updated?: string | undefined;
|
|
@@ -2143,7 +2143,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2143
2143
|
emailAddress?: string | undefined;
|
|
2144
2144
|
active?: boolean | undefined;
|
|
2145
2145
|
} | null | undefined;
|
|
2146
|
-
body?:
|
|
2146
|
+
body?: string | undefined;
|
|
2147
2147
|
renderedBody?: string | undefined;
|
|
2148
2148
|
created?: string | undefined;
|
|
2149
2149
|
updated?: string | undefined;
|
|
@@ -2230,7 +2230,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2230
2230
|
emailAddress?: string | undefined;
|
|
2231
2231
|
active?: boolean | undefined;
|
|
2232
2232
|
} | null | undefined;
|
|
2233
|
-
body?:
|
|
2233
|
+
body?: string | undefined;
|
|
2234
2234
|
renderedBody?: string | undefined;
|
|
2235
2235
|
created?: string | undefined;
|
|
2236
2236
|
updated?: string | undefined;
|
|
@@ -2512,7 +2512,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2512
2512
|
emailAddress?: string | undefined;
|
|
2513
2513
|
active?: boolean | undefined;
|
|
2514
2514
|
}>>>;
|
|
2515
|
-
body: import("zod").ZodOptional<import("zod").
|
|
2515
|
+
body: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2516
2516
|
renderedBody: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2517
2517
|
created: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2518
2518
|
updated: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -2524,7 +2524,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2524
2524
|
emailAddress?: string | undefined;
|
|
2525
2525
|
active?: boolean | undefined;
|
|
2526
2526
|
} | null | undefined;
|
|
2527
|
-
body?:
|
|
2527
|
+
body?: string | undefined;
|
|
2528
2528
|
renderedBody?: string | undefined;
|
|
2529
2529
|
created?: string | undefined;
|
|
2530
2530
|
updated?: string | undefined;
|
|
@@ -2536,7 +2536,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2536
2536
|
emailAddress?: string | undefined;
|
|
2537
2537
|
active?: boolean | undefined;
|
|
2538
2538
|
} | null | undefined;
|
|
2539
|
-
body?:
|
|
2539
|
+
body?: string | undefined;
|
|
2540
2540
|
renderedBody?: string | undefined;
|
|
2541
2541
|
created?: string | undefined;
|
|
2542
2542
|
updated?: string | undefined;
|
|
@@ -2554,7 +2554,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2554
2554
|
emailAddress?: string | undefined;
|
|
2555
2555
|
active?: boolean | undefined;
|
|
2556
2556
|
} | null | undefined;
|
|
2557
|
-
body?:
|
|
2557
|
+
body?: string | undefined;
|
|
2558
2558
|
renderedBody?: string | undefined;
|
|
2559
2559
|
created?: string | undefined;
|
|
2560
2560
|
updated?: string | undefined;
|
|
@@ -2571,7 +2571,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2571
2571
|
emailAddress?: string | undefined;
|
|
2572
2572
|
active?: boolean | undefined;
|
|
2573
2573
|
} | null | undefined;
|
|
2574
|
-
body?:
|
|
2574
|
+
body?: string | undefined;
|
|
2575
2575
|
renderedBody?: string | undefined;
|
|
2576
2576
|
created?: string | undefined;
|
|
2577
2577
|
updated?: string | undefined;
|
|
@@ -2597,7 +2597,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2597
2597
|
emailAddress?: string | undefined;
|
|
2598
2598
|
active?: boolean | undefined;
|
|
2599
2599
|
}>>>;
|
|
2600
|
-
body: import("zod").ZodOptional<import("zod").
|
|
2600
|
+
body: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2601
2601
|
renderedBody: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2602
2602
|
created: import("zod").ZodOptional<import("zod").ZodString>;
|
|
2603
2603
|
updated: import("zod").ZodOptional<import("zod").ZodString>;
|
|
@@ -2609,7 +2609,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2609
2609
|
emailAddress?: string | undefined;
|
|
2610
2610
|
active?: boolean | undefined;
|
|
2611
2611
|
} | null | undefined;
|
|
2612
|
-
body?:
|
|
2612
|
+
body?: string | undefined;
|
|
2613
2613
|
renderedBody?: string | undefined;
|
|
2614
2614
|
created?: string | undefined;
|
|
2615
2615
|
updated?: string | undefined;
|
|
@@ -2621,7 +2621,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2621
2621
|
emailAddress?: string | undefined;
|
|
2622
2622
|
active?: boolean | undefined;
|
|
2623
2623
|
} | null | undefined;
|
|
2624
|
-
body?:
|
|
2624
|
+
body?: string | undefined;
|
|
2625
2625
|
renderedBody?: string | undefined;
|
|
2626
2626
|
created?: string | undefined;
|
|
2627
2627
|
updated?: string | undefined;
|
|
@@ -2640,7 +2640,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2640
2640
|
emailAddress?: string | undefined;
|
|
2641
2641
|
active?: boolean | undefined;
|
|
2642
2642
|
} | null | undefined;
|
|
2643
|
-
body?:
|
|
2643
|
+
body?: string | undefined;
|
|
2644
2644
|
renderedBody?: string | undefined;
|
|
2645
2645
|
created?: string | undefined;
|
|
2646
2646
|
updated?: string | undefined;
|
|
@@ -2658,7 +2658,7 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2658
2658
|
emailAddress?: string | undefined;
|
|
2659
2659
|
active?: boolean | undefined;
|
|
2660
2660
|
} | null | undefined;
|
|
2661
|
-
body?:
|
|
2661
|
+
body?: string | undefined;
|
|
2662
2662
|
renderedBody?: string | undefined;
|
|
2663
2663
|
created?: string | undefined;
|
|
2664
2664
|
updated?: string | undefined;
|
|
@@ -2677,6 +2677,16 @@ export declare class JiraBubble<T extends JiraParamsInput = JiraParamsInput> ext
|
|
|
2677
2677
|
*/
|
|
2678
2678
|
private parseCredentials;
|
|
2679
2679
|
private makeJiraApiRequest;
|
|
2680
|
+
/**
|
|
2681
|
+
* Resolves an assignee (email or accountId) to a Jira accountId.
|
|
2682
|
+
* If the assignee contains '@', it's treated as an email and looked up via the Jira API.
|
|
2683
|
+
* Otherwise, it's assumed to be an accountId and returned as-is.
|
|
2684
|
+
*
|
|
2685
|
+
* @param assignee - Email address or accountId
|
|
2686
|
+
* @returns The resolved accountId
|
|
2687
|
+
* @throws Error if assignee is an email but no user is found
|
|
2688
|
+
*/
|
|
2689
|
+
private resolveAssigneeAccountId;
|
|
2680
2690
|
protected performAction(context?: BubbleContext): Promise<Extract<JiraResult, {
|
|
2681
2691
|
operation: T['operation'];
|
|
2682
2692
|
}>>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"jira.d.ts","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/jira/jira.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,wCAAwC,CAAC;AACvE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAC9D,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAC3D,OAAO,EAIL,KAAK,eAAe,EACpB,KAAK,UAAU,
|
|
1
|
+
{"version":3,"file":"jira.d.ts","sourceRoot":"","sources":["../../../../src/bubbles/service-bubble/jira/jira.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,aAAa,EAAE,MAAM,wCAAwC,CAAC;AACvE,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,0BAA0B,CAAC;AAC9D,OAAO,EAAE,cAAc,EAAE,MAAM,2BAA2B,CAAC;AAC3D,OAAO,EAIL,KAAK,eAAe,EACpB,KAAK,UAAU,EAYhB,MAAM,kBAAkB,CAAC;AAS1B;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,qBAAa,UAAU,CACrB,CAAC,SAAS,eAAe,GAAG,eAAe,CAC3C,SAAQ,aAAa,CAAC,CAAC,EAAE,OAAO,CAAC,UAAU,EAAE;IAAE,SAAS,EAAE,CAAC,CAAC,WAAW,CAAC,CAAA;CAAE,CAAC,CAAC;IAC5E,MAAM,CAAC,QAAQ,CAAC,IAAI,EAAG,SAAS,CAAU;IAC1C,MAAM,CAAC,QAAQ,CAAC,OAAO,UAAU;IACjC,MAAM,CAAC,QAAQ,CAAC,QAAQ,EAAG,OAAO,CAAU;IAC5C,MAAM,CAAC,QAAQ,CAAC,UAAU,UAAU;IACpC,MAAM,CAAC,QAAQ,CAAC,MAAM;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SAAoB;IAC1C,MAAM,CAAC,QAAQ,CAAC,YAAY;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;SAAoB;IAChD,MAAM,CAAC,QAAQ,CAAC,gBAAgB,gEAC+B;IAC/D,MAAM,CAAC,QAAQ,CAAC,eAAe,2qCA2B7B;IACF,MAAM,CAAC,QAAQ,CAAC,KAAK,UAAU;gBAEnB,MAAM,EAAE,CAAC,EAAE,OAAO,CAAC,EAAE,aAAa;IAIjC,cAAc,IAAI,OAAO,CAAC,OAAO,CAAC;IAkB/C;;;;OAIG;IACH,OAAO,CAAC,gBAAgB;YAmCV,kBAAkB;IAsDhC;;;;;;;;OAQG;YACW,wBAAwB;cAyDtB,aAAa,CAC3B,OAAO,CAAC,EAAE,aAAa,GACtB,OAAO,CAAC,OAAO,CAAC,UAAU,EAAE;QAAE,SAAS,EAAE,CAAC,CAAC,WAAW,CAAC,CAAA;KAAE,CAAC,CAAC;YAyDhD,MAAM;YAqEN,GAAG;YAoEH,MAAM;YAsEN,MAAM;YA6GN,UAAU;YA4EV,eAAe;YAyBf,YAAY;YA6BZ,cAAc;YAkCd,UAAU;YA4BV,WAAW;IA4CzB,SAAS,CAAC,gBAAgB,IAAI,MAAM,GAAG,SAAS;CAYjD"}
|