attio 0.0.1-experimental.20250716.1 → 0.0.1-experimental.20250718

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.
@@ -36,7 +36,9 @@ export async function generateClientEntry({ srcDirAbsolute, assetsDirAbsolute, }
36
36
  recordAction: [],
37
37
  bulkRecordAction: [],
38
38
  recordWidget: [],
39
- transcriptSelectionAction: [],
39
+ callRecordingInsightTextSelectionAction: [],
40
+ callRecordingSummaryTextSelectionAction: [],
41
+ callRecordingTranscriptTextSelectionAction: [],
40
42
  workflowBlock: [],
41
43
  };
42
44
  surfaceExports.forEach(([, surfaceNames], index) => {
@@ -48,7 +50,9 @@ export async function generateClientEntry({ srcDirAbsolute, assetsDirAbsolute, }
48
50
  "record-action": [${surfaceImportNamesBySurfaceType.recordAction.join(", ")}],
49
51
  "bulk-record-action": [${surfaceImportNamesBySurfaceType.bulkRecordAction.join(", ")}],
50
52
  "record-widget": [${surfaceImportNamesBySurfaceType.recordWidget.join(", ")}],
51
- "transcript-selection-action": [${surfaceImportNamesBySurfaceType.transcriptSelectionAction.join(", ")}],
53
+ "call-recording-insight-text-selection-action": [${surfaceImportNamesBySurfaceType.callRecordingInsightTextSelectionAction.join(", ")}],
54
+ "call-recording-summary-text-selection-action": [${surfaceImportNamesBySurfaceType.callRecordingSummaryTextSelectionAction.join(", ")}],
55
+ "call-recording-transcript-text-selection-action": [${surfaceImportNamesBySurfaceType.callRecordingTranscriptTextSelectionAction.join(", ")}],
52
56
  "workflow-block": [${surfaceImportNamesBySurfaceType.workflowBlock.join(", ")}]
53
57
  });`;
54
58
  const importAssetsJS = assets
@@ -0,0 +1,52 @@
1
+ import type { Icon } from "./icon";
2
+ /**
3
+ * A text selection action is some action that can be taken when
4
+ * a user selects text in call recording insights.
5
+ *
6
+ * You should use this in a TypeScript file in your app's `src` directory.
7
+ *
8
+ * ## EXAMPLE USAGE
9
+ *
10
+ * ----
11
+ * ```tsx
12
+ * // my-call-recording-insight-text-selection-action.tsx
13
+ * import type { CallRecordingInsightTextSelectionAction } from "attio/client";
14
+ *
15
+ * export const callRecordingInsightTextSelectionAction: CallRecordingInsightTextSelectionAction = {
16
+ * onTrigger: (selection) => {
17
+ * console.log("reference", selection)
18
+ * },
19
+ * label: "Reference",
20
+ * icon: "Link"
21
+ * }
22
+ * ```
23
+ * ----
24
+ * @deprecated This part of the SDK is not yet released and may change. Do not use it yet.
25
+ */
26
+ export interface CallRecordingInsightTextSelectionAction {
27
+ /**
28
+ * A unique identifier for the action.
29
+ */
30
+ readonly id: string;
31
+ /**
32
+ * A function to execute when the action is triggered
33
+ *
34
+ * @param selection - The selected text.
35
+ */
36
+ readonly onTrigger: (selection: {
37
+ text: string;
38
+ markdown: string;
39
+ }) => Promise<void>;
40
+ /**
41
+ * The label to display for the action
42
+ */
43
+ readonly label: string;
44
+ /**
45
+ * An icon to display in the action, either an `AttioIcon` or
46
+ * a string `.png` referencing a file in your app's `assets`
47
+ * directory.
48
+ *
49
+ * If no `icon` prop is provided, it will default to your app's icon.
50
+ */
51
+ readonly icon?: Icon;
52
+ }
@@ -0,0 +1,52 @@
1
+ import type { Icon } from "./icon";
2
+ /**
3
+ * A text selection action is some action that can be taken when
4
+ * a user selects text in call recording summaries.
5
+ *
6
+ * You should use this in a TypeScript file in your app's `src` directory.
7
+ *
8
+ * ## EXAMPLE USAGE
9
+ *
10
+ * ----
11
+ * ```tsx
12
+ * // my-call-recording-summary-text-selection-action.tsx
13
+ * import type { CallRecordingSummaryTextSelectionAction } from "attio/client";
14
+ *
15
+ * export const callRecordingSummaryTextSelectionAction: CallRecordingSummaryTextSelectionAction = {
16
+ * onTrigger: (selection) => {
17
+ * console.log("reference", selection)
18
+ * },
19
+ * label: "Reference",
20
+ * icon: "Link"
21
+ * }
22
+ * ```
23
+ * ----
24
+ * @deprecated This part of the SDK is not yet released and may change. Do not use it yet.
25
+ */
26
+ export interface CallRecordingSummaryTextSelectionAction {
27
+ /**
28
+ * A unique identifier for the action.
29
+ */
30
+ readonly id: string;
31
+ /**
32
+ * A function to execute when the action is triggered
33
+ *
34
+ * @param selection - The selected text.
35
+ */
36
+ readonly onTrigger: (selection: {
37
+ text: string;
38
+ markdown: string;
39
+ }) => Promise<void>;
40
+ /**
41
+ * The label to display for the action
42
+ */
43
+ readonly label: string;
44
+ /**
45
+ * An icon to display in the action, either an `AttioIcon` or
46
+ * a string `.png` referencing a file in your app's `assets`
47
+ * directory.
48
+ *
49
+ * If no `icon` prop is provided, it will default to your app's icon.
50
+ */
51
+ readonly icon?: Icon;
52
+ }
@@ -10,19 +10,20 @@ import type { Icon } from "./icon";
10
10
  * ----
11
11
  * ```tsx
12
12
  * // my-transcript-selection-action.tsx
13
- * import type { TranscriptSelectionAction } from "attio/client";
13
+ * import type { CallRecordingTranscriptTextSelectionAction } from "attio/client";
14
14
  *
15
- * export const transcriptTextSelectionAction: TranscriptSelectionAction = {
16
- * onTrigger: ({text, url}) => {
17
- * console.log("reference", text, url)
15
+ * export const callRecordingTranscriptTextSelectionAction: CallRecordingTranscriptTextSelectionAction = {
16
+ * onTrigger: ({transcript, url}) => {
17
+ * console.log("reference", transcript, url)
18
18
  * },
19
19
  * label: "Reference",
20
20
  * icon: "Link"
21
21
  * }
22
22
  * ```
23
23
  * ----
24
+ * @deprecated This part of the SDK is not yet released and may change. Do not use it yet.
24
25
  */
25
- export interface TranscriptSelectionAction {
26
+ export interface CallRecordingTranscriptTextSelectionAction {
26
27
  /**
27
28
  * A unique identifier for the action.
28
29
  */
@@ -18,12 +18,8 @@ export interface IconComboboxOption extends BaseComboboxOption {
18
18
  export interface AvatarComboboxOption extends BaseComboboxOption {
19
19
  /** Excluded from avatar options */
20
20
  icon?: never;
21
- /**
22
- * An avatar to display for this option
23
- *
24
- * If null, a placeholder avatar will be displayed.
25
- */
26
- avatarUrl: string | null;
21
+ /** An avatar to display for this option */
22
+ avatarUrl: string;
27
23
  /** Excluded from avatar options */
28
24
  color?: never;
29
25
  }
@@ -69,7 +65,9 @@ export interface CategorizedPlainComboboxOption extends PlainComboboxOption {
69
65
  categoryLabel: string;
70
66
  }
71
67
  export type CategorizedComboboxOption = CategorizedIconComboboxOption | CategorizedAvatarComboboxOption | CategorizedColorComboboxOption | CategorizedPlainComboboxOption;
72
- export interface IconComboboxOptionsProvider {
68
+ export type DecoratedComboboxOption = IconComboboxOption | AvatarComboboxOption | ColorComboboxOption;
69
+ export type CategorizedDecoratedComboboxOption = CategorizedIconComboboxOption | CategorizedAvatarComboboxOption | CategorizedColorComboboxOption;
70
+ export interface DecoratedComboboxOptionsProvider {
73
71
  /**
74
72
  * An async function that, given an option value, returns the label and icon of the option,
75
73
  * or undefined if the option is not found.
@@ -77,7 +75,7 @@ export interface IconComboboxOptionsProvider {
77
75
  * @param value - The value of the option
78
76
  * @returns - The label and icon of the option
79
77
  */
80
- getOption: (value: string) => Promise<Omit<IconComboboxOption, "value"> | undefined>;
78
+ getOption: (value: string) => Promise<Omit<DecoratedComboboxOption, "value"> | undefined>;
81
79
  /**
82
80
  * An async function that, given a search query, returns a list of "matching" icon combobox options.
83
81
  *
@@ -86,45 +84,7 @@ export interface IconComboboxOptionsProvider {
86
84
  * @param query - The search query
87
85
  * @returns - A list of icon combobox options
88
86
  */
89
- search: (query: string) => Promise<Array<IconComboboxOption> | Array<CategorizedIconComboboxOption>>;
90
- }
91
- export interface AvatarComboboxOptionsProvider {
92
- /**
93
- * An async function that, given an option value, returns the label and avatar of the option,
94
- * or undefined if the option is not found.
95
- *
96
- * @param value - The value of the option
97
- * @returns - The label and avatar of the option
98
- */
99
- getOption: (value: string) => Promise<Omit<AvatarComboboxOption, "value"> | undefined>;
100
- /**
101
- * An async function that, given a search query, returns a list of "matching" avatar combobox options.
102
- *
103
- * What "matching" means is up to the developer.
104
- *
105
- * @param query - The search query
106
- * @returns - A list of avatar combobox options
107
- */
108
- search: (query: string) => Promise<Array<AvatarComboboxOption> | Array<CategorizedAvatarComboboxOption>>;
109
- }
110
- export interface ColorComboboxOptionsProvider {
111
- /**
112
- * An async function that, given an option value, returns the label and color of the option,
113
- * or undefined if the option is not found.
114
- *
115
- * @param value - The value of the option
116
- * @returns - The label and color of the option
117
- */
118
- getOption: (value: string) => Promise<Omit<ColorComboboxOption, "value"> | undefined>;
119
- /**
120
- * An async function that, given a search query, returns a list of "matching" color combobox options.
121
- *
122
- * What "matching" means is up to the developer.
123
- *
124
- * @param query - The search query
125
- * @returns - A list of color combobox options
126
- */
127
- search: (query: string) => Promise<Array<ColorComboboxOption> | Array<CategorizedColorComboboxOption>>;
87
+ search: (query: string) => Promise<Array<DecoratedComboboxOption> | Array<CategorizedDecoratedComboboxOption>>;
128
88
  }
129
89
  export interface PlainComboboxOptionsProvider {
130
90
  /**
@@ -145,5 +105,5 @@ export interface PlainComboboxOptionsProvider {
145
105
  */
146
106
  search: (query: string) => Promise<Array<PlainComboboxOption> | Array<CategorizedPlainComboboxOption>>;
147
107
  }
148
- export type ComboboxOptionsProvider = IconComboboxOptionsProvider | AvatarComboboxOptionsProvider | ColorComboboxOptionsProvider | PlainComboboxOptionsProvider;
108
+ export type ComboboxOptionsProvider = DecoratedComboboxOptionsProvider | PlainComboboxOptionsProvider;
149
109
  export {};
@@ -2,7 +2,7 @@ export { Avatar } from "./avatar.js";
2
2
  export { Badge } from "./badge.js";
3
3
  export { Button } from "./button.js";
4
4
  export { Column } from "./column.js";
5
- export { AvatarComboboxOption, AvatarComboboxOptionsProvider, CategorizedAvatarComboboxOption, CategorizedColorComboboxOption, CategorizedComboboxOption, CategorizedIconComboboxOption, CategorizedPlainComboboxOption, ColorComboboxOption, ColorComboboxOptionsProvider, ComboboxOption, ComboboxOptionsProvider, IconComboboxOption, IconComboboxOptionsProvider, PlainComboboxOption, PlainComboboxOptionsProvider, } from "./combobox.js";
5
+ export { CategorizedComboboxOption, CategorizedDecoratedComboboxOption, ComboboxOption, ComboboxOptionsProvider, DecoratedComboboxOption, DecoratedComboboxOptionsProvider, PlainComboboxOption, PlainComboboxOptionsProvider, } from "./combobox.js";
6
6
  export { DialogList } from "./dialog-list.js";
7
7
  export { Divider } from "./divider.js";
8
8
  export { Json } from "./json.js";
@@ -1,5 +1,5 @@
1
1
  import type { JSX } from "react";
2
- import type { AvatarComboboxOption, AvatarComboboxOptionsProvider, ColorComboboxOption, ColorComboboxOptionsProvider, IconComboboxOption, IconComboboxOptionsProvider, PlainComboboxOption, PlainComboboxOptionsProvider } from "../components/combobox";
2
+ import type { DecoratedComboboxOption, DecoratedComboboxOptionsProvider, PlainComboboxOption, PlainComboboxOptionsProvider } from "../components/combobox";
3
3
  import type { PathTo, ValueOf } from "../forms/path";
4
4
  import type { FormValue } from "../forms/value";
5
5
  export type FormSchema = Record<string, FormValue>;
@@ -125,6 +125,12 @@ export interface BaseComboboxProps<TSchema extends FormSchema> {
125
125
  data?: PathTo<TSchema, "string">;
126
126
  /** The path to the value of the combobox field, e.g. `"mode"` or `"shipping.method"` */
127
127
  name: PathTo<TSchema, "string">;
128
+ /**
129
+ * Whether the combobox field is decorated. Defaults to false.
130
+ *
131
+ * @deprecated This may change in the future.
132
+ */
133
+ __experimental_decorated?: boolean;
128
134
  /**
129
135
  * The optional placeholder text for the search input
130
136
  *
@@ -135,62 +141,28 @@ export interface BaseComboboxProps<TSchema extends FormSchema> {
135
141
  disabled?: boolean;
136
142
  }
137
143
  /**
138
- * Props for icon combobox variant.
139
- */
140
- export interface IconComboboxProps {
141
- /** The decoration type for the combobox options */
142
- decoration: "icon";
143
- /**
144
- * The options of the combobox field
145
- *
146
- * Either an array of options, or a provider that asynchronously fetches options.
147
- */
148
- options: Array<IconComboboxOption> | IconComboboxOptionsProvider;
149
- /**
150
- * The optional placeholder text or option of the combobox field
151
- **/
152
- placeholder?: string | Omit<IconComboboxOption, "value">;
153
- }
154
- /**
155
- * Props for avatar combobox variant.
156
- */
157
- export interface AvatarComboboxProps {
158
- /** The decoration type for the combobox options */
159
- decoration: "avatar";
160
- /**
161
- * The options of the combobox field
162
- *
163
- * Either an array of options, or a provider that asynchronously fetches options.
164
- */
165
- options: Array<AvatarComboboxOption> | AvatarComboboxOptionsProvider;
166
- /**
167
- * The optional placeholder text or option of the combobox field
168
- **/
169
- placeholder?: string | Omit<AvatarComboboxOption, "value">;
170
- }
171
- /**
172
- * Props for color combobox variant.
144
+ * Props for decorated combobox variant.
173
145
  */
174
- export interface ColorComboboxProps {
175
- /** The decoration type for the combobox options */
176
- decoration: "color";
146
+ export interface DecoratedComboboxProps {
147
+ /** If decorated, the combobox will be require decorated options. */
148
+ decorated: true;
177
149
  /**
178
150
  * The options of the combobox field
179
151
  *
180
152
  * Either an array of options, or a provider that asynchronously fetches options.
181
153
  */
182
- options: Array<ColorComboboxOption> | ColorComboboxOptionsProvider;
154
+ options: Array<DecoratedComboboxOption> | DecoratedComboboxOptionsProvider;
183
155
  /**
184
156
  * The optional placeholder text or option of the combobox field
185
157
  **/
186
- placeholder?: string | Omit<ColorComboboxOption, "value">;
158
+ placeholder?: string | Omit<DecoratedComboboxOption, "value">;
187
159
  }
188
160
  /**
189
161
  * Props for plain combobox variant.
190
162
  */
191
163
  export interface PlainComboboxProps {
192
- /** The decoration type for the combobox options (excluded from plain variant) */
193
- decoration?: never;
164
+ /** If not decorated, the combobox will be plain. */
165
+ decorated?: false;
194
166
  /**
195
167
  * The options of the combobox field
196
168
  *
@@ -205,7 +177,7 @@ export interface PlainComboboxProps {
205
177
  /**
206
178
  * A combobox input field.
207
179
  */
208
- type Combobox<TSchema extends FormSchema> = (props: BaseComboboxProps<TSchema> & (IconComboboxProps | AvatarComboboxProps | ColorComboboxProps | PlainComboboxProps)) => JSX.Element;
180
+ type Combobox<TSchema extends FormSchema> = (props: BaseComboboxProps<TSchema> & (DecoratedComboboxProps | PlainComboboxProps)) => JSX.Element;
209
181
  /**
210
182
  * A component used to render a collection of inputs.
211
183
  */
@@ -1,8 +1,10 @@
1
1
  export type { BulkRecordAction } from "./bulk-record-action.js";
2
+ export type { CallRecordingInsightTextSelectionAction } from "./call-recording-insight-text-selection-action.js";
3
+ export type { CallRecordingSummaryTextSelectionAction } from "./call-recording-summary-text-selection-action.js";
4
+ export type { CallRecordingTranscriptTextSelectionAction } from "./call-recording-transcript-text-selection-action.js";
2
5
  export type { Attribute } from "./object-slug.js";
3
6
  export type { RecordAction } from "./record-action.js";
4
7
  export type { RecordWidget } from "./record-widget.js";
5
- export type { TranscriptSelectionAction } from "./transcript-selection-action.js";
6
8
  export type { WorkflowBlock } from "./workflow-block.js";
7
9
  export { AlertOptions, alert } from "./alert.js";
8
10
  export * from "./components/index.js";
@@ -1 +1 @@
1
- {"fileNames":["../../../../node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../client/alert.ts","../client/icon.ts","../client/object-slug.ts","../client/bulk-record-action.ts","../client/confirm.ts","../client/record-action.ts","../client/components/widget-title.ts","../client/components/widget-text-widget.ts","../client/components/widget-text-primary.ts","../client/components/widget-text-secondary.ts","../client/components/widget-badge.ts","../client/components/widget.ts","../client/record-widget.ts","../client/transcript-selection-action.ts","../client/workflow/schema.ts","../client/workflow-block.ts","../../../../node_modules/@types/react/global.d.ts","../../../../node_modules/csstype/index.d.ts","../../../../node_modules/@types/react/index.d.ts","../client/components/avatar.ts","../client/components/badge.ts","../client/components/keyboard-key.ts","../client/components/button.ts","../client/components/column.ts","../client/components/combobox.ts","../client/components/dialog-list.ts","../client/components/divider.ts","../client/components/json.ts","../client/components/link.ts","../client/components/row.ts","../client/components/section.ts","../client/components/text-block.ts","../client/components/typography.ts","../client/components/index.ts","../client/forms/value.ts","../client/forms/array.ts","../client/forms/boolean.ts","../client/forms/number.ts","../client/forms/string.ts","../client/forms/index.ts","../client/util/prettify.ts","../client/forms/path.ts","../client/hooks/use-async-cache.ts","../client/hooks/use-form.ts","../client/run-query.ts","../client/hooks/use-query.ts","../client/hooks/use-record.ts","../client/hooks/use-records.ts","../client/hooks/use-workspace.ts","../client/hooks/index.ts","../client/platform.ts","../client/show-dialog.ts","../client/show-iframe.ts","../client/show-toast.ts","../client/workflow/index.ts","../client/index.ts","../server/attio-fetch.ts","../server/connections.ts","../server/env.ts","../server/webhook-handlers.ts","../server/experimental/kv-store.ts","../server/experimental/index.ts","../server/index.ts","../shared/errors.ts","../shared/index.ts","../global.d.ts","../../../../node_modules/@types/node/compatibility/disposable.d.ts","../../../../node_modules/@types/node/compatibility/indexable.d.ts","../../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../../node_modules/@types/node/compatibility/index.d.ts","../../../../node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../../../../node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../../../../node_modules/buffer/index.d.ts","../../../../node_modules/undici-types/header.d.ts","../../../../node_modules/undici-types/readable.d.ts","../../../../node_modules/undici-types/file.d.ts","../../../../node_modules/undici-types/fetch.d.ts","../../../../node_modules/undici-types/formdata.d.ts","../../../../node_modules/undici-types/connector.d.ts","../../../../node_modules/undici-types/client.d.ts","../../../../node_modules/undici-types/errors.d.ts","../../../../node_modules/undici-types/dispatcher.d.ts","../../../../node_modules/undici-types/global-dispatcher.d.ts","../../../../node_modules/undici-types/global-origin.d.ts","../../../../node_modules/undici-types/pool-stats.d.ts","../../../../node_modules/undici-types/pool.d.ts","../../../../node_modules/undici-types/handlers.d.ts","../../../../node_modules/undici-types/balanced-pool.d.ts","../../../../node_modules/undici-types/agent.d.ts","../../../../node_modules/undici-types/mock-interceptor.d.ts","../../../../node_modules/undici-types/mock-agent.d.ts","../../../../node_modules/undici-types/mock-client.d.ts","../../../../node_modules/undici-types/mock-pool.d.ts","../../../../node_modules/undici-types/mock-errors.d.ts","../../../../node_modules/undici-types/proxy-agent.d.ts","../../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../../node_modules/undici-types/retry-handler.d.ts","../../../../node_modules/undici-types/retry-agent.d.ts","../../../../node_modules/undici-types/api.d.ts","../../../../node_modules/undici-types/interceptors.d.ts","../../../../node_modules/undici-types/util.d.ts","../../../../node_modules/undici-types/cookies.d.ts","../../../../node_modules/undici-types/patch.d.ts","../../../../node_modules/undici-types/websocket.d.ts","../../../../node_modules/undici-types/eventsource.d.ts","../../../../node_modules/undici-types/filereader.d.ts","../../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../../node_modules/undici-types/content-type.d.ts","../../../../node_modules/undici-types/cache.d.ts","../../../../node_modules/undici-types/index.d.ts","../../../../node_modules/@types/node/globals.d.ts","../../../../node_modules/@types/node/assert.d.ts","../../../../node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/@types/node/buffer.d.ts","../../../../node_modules/@types/node/child_process.d.ts","../../../../node_modules/@types/node/cluster.d.ts","../../../../node_modules/@types/node/console.d.ts","../../../../node_modules/@types/node/constants.d.ts","../../../../node_modules/@types/node/crypto.d.ts","../../../../node_modules/@types/node/dgram.d.ts","../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/@types/node/dns.d.ts","../../../../node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/@types/node/domain.d.ts","../../../../node_modules/@types/node/dom-events.d.ts","../../../../node_modules/@types/node/events.d.ts","../../../../node_modules/@types/node/fs.d.ts","../../../../node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/@types/node/http.d.ts","../../../../node_modules/@types/node/http2.d.ts","../../../../node_modules/@types/node/https.d.ts","../../../../node_modules/@types/node/inspector.d.ts","../../../../node_modules/@types/node/module.d.ts","../../../../node_modules/@types/node/net.d.ts","../../../../node_modules/@types/node/os.d.ts","../../../../node_modules/@types/node/path.d.ts","../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/@types/node/process.d.ts","../../../../node_modules/@types/node/punycode.d.ts","../../../../node_modules/@types/node/querystring.d.ts","../../../../node_modules/@types/node/readline.d.ts","../../../../node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/@types/node/repl.d.ts","../../../../node_modules/@types/node/sea.d.ts","../../../../node_modules/@types/node/sqlite.d.ts","../../../../node_modules/@types/node/stream.d.ts","../../../../node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/@types/node/stream/web.d.ts","../../../../node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/@types/node/test.d.ts","../../../../node_modules/@types/node/timers.d.ts","../../../../node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/@types/node/tls.d.ts","../../../../node_modules/@types/node/trace_events.d.ts","../../../../node_modules/@types/node/tty.d.ts","../../../../node_modules/@types/node/url.d.ts","../../../../node_modules/@types/node/util.d.ts","../../../../node_modules/@types/node/v8.d.ts","../../../../node_modules/@types/node/vm.d.ts","../../../../node_modules/@types/node/wasi.d.ts","../../../../node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/@types/node/zlib.d.ts","../../../../node_modules/@types/node/ts5.6/index.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/fetch.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/utils.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/filter-boolean.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/is-array.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/json-parse.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/array-includes.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/set-has.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/map-has.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/array-index-of.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/recommended.d.ts","../reset.d.ts"],"fileIdsList":[[116,159,211],[116,159],[116,159,210,212,213,214,215,216,217,218],[116,156,159],[116,158,159],[116,159,164,194],[116,159,160,165,171,172,179,191,202],[116,159,160,161,171,179],[111,112,113,116,159],[116,159,162,203],[116,159,163,164,172,180],[116,159,164,191,199],[116,159,165,167,171,179],[116,158,159,166],[116,159,167,168],[116,159,169,171],[116,158,159,171],[116,159,171,172,173,191,202],[116,159,171,172,173,186,191,194],[116,154,159],[116,154,159,167,171,174,179,191,202],[116,159,171,172,174,175,179,191,199,202],[116,159,174,176,191,199,202],[116,159,171,177],[116,159,178,202],[116,159,167,171,179,191],[116,159,180],[116,159,181],[116,158,159,182],[116,156,157,158,159,160,161,162,163,164,165,166,167,168,169,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208],[116,159,184],[116,159,185],[116,159,171,186,187],[116,159,186,188,203,205],[116,159,171,191,192,194],[116,159,193,194],[116,159,191,192],[116,159,194],[116,159,195],[116,156,159,191],[116,159,171,197,198],[116,159,197,198],[116,159,164,179,191,199],[116,159,200],[159],[114,115,116,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208],[116,159,179,201],[116,159,174,185,202],[116,159,164,203],[116,159,191,204],[116,159,178,205],[116,159,206],[116,159,171,173,182,191,194,202,205,207],[116,159,191,208],[61,62,116,159],[116,126,130,159,202],[116,126,159,191,202],[116,121,159],[116,123,126,159,199,202],[116,159,179,199],[116,159,209],[116,121,159,209],[116,123,126,159,179,202],[116,118,119,122,125,159,171,191,202],[116,126,133,159],[116,118,124,159],[116,126,147,148,159],[116,122,126,159,194,202,209],[116,147,159,209],[116,120,121,159,209],[116,126,159],[116,120,121,122,123,124,125,126,127,128,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,148,149,150,151,152,153,159],[116,126,141,159],[116,126,133,134,159],[116,124,126,134,135,159],[116,125,159],[116,118,121,126,159],[116,126,130,134,135,159],[116,130,159],[116,124,126,129,159,202],[116,118,123,126,133,159],[116,159,191],[116,121,126,147,159,207,209],[46,47,116,159],[63,116,159],[63,66,116,159],[46,116,159],[46,63,116,159],[56,64,65,67,68,69,70,71,72,73,74,75,76,77,116,159],[51,52,53,54,55,116,159],[79,116,159],[80,81,82,83,116,159],[80,81,82,83,85,116,159],[87,88,90,91,92,93,116,159],[63,69,79,86,116,159],[89,116,159],[47,116,159],[45,46,47,48,49,50,57,58,60,78,79,80,81,82,83,84,86,89,94,95,96,97,98,99,116,159],[47,56,116,159],[59,116,159],[105,116,159],[101,102,103,104,106,116,159],[108,116,159]],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"45d8ccb3dfd57355eb29749919142d4321a0aa4df6acdfc54e30433d7176600a","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a94697425a99354df73d9c8291e2ecd4dddd370aed4023c2d6dee6cccb32666","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3f9fc0ec0b96a9e642f11eda09c0be83a61c7b336977f8b9fdb1e9788e925fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"7e5876a1bb053f86140569fbe10bd95b5820c9faa8db31f8ede544c9dbfd5a3c","signature":"de6c965ec27e4caca4b2d919a10d9ec7716bf075bd4612212f2fa6feb66a9bf7"},{"version":"952f7d096952e00db8a817eab245683af30af3528cb9250b92b4c70d750c5798","signature":"cd7487f16f4c3d33faeff4cb85aa3fffb67da15b90f5b67f60fa30fbbd7c4847"},{"version":"75ed310180837d6d62e4f3a38768e2a3795ad11f801466bead0c7b0e35263f57","signature":"21fad2f9f72334c157a67bbc076fd7644c1383db494b0d7d0c013545509578be"},{"version":"3541a75ac4ead3dc30453b9e9b6e4dee38d6d081f3d4f04eaedb2fdb93e790f7","signature":"303285a7c1f6a00375f877217e31ba49c1dff25310e9b94f39a2852345a92783"},{"version":"dec1b91e1bbe45b9fa46e0fbfd67da1152a480947e7553d1f43bc57a85e64ce6","signature":"bd1f55ebe2ccc7899f8c180de85728bb54f6bf9f9591a306b78314023e5192c7"},{"version":"190b441361da45ede16f3a1fa4b2c4f1d5aae06daa5f0bdf354c87d653741f4f","signature":"bd4cca1b51c0f9e33fc1d7086769109d270e7fa34ebb31006d0c4a0789d02fac"},{"version":"fb1eab958addf23b6d1437d4d50ea9a0d99f209207205f8191c9bf0bc795096f","signature":"4a81dad4b3ed54e4524e4a7145c62ba00895ef48e073a33efdaccb376fa66f53"},{"version":"b874c33749790ddaf700373d38ac55c7b3c8b31d577917c179249eff16595d09","signature":"0a8a6f37629b102c37698f7e09f5bdd65d68348459a92522e18a4597294a0415"},{"version":"601e9d8cc71778f1e65b2f48990ddd4583041378929c107c3da86f7ef8d8d06c","signature":"69e363ec7e50ff27f50a17f852c323ab312318a89b69e0e23115f3a1b994b0c3"},{"version":"7f9df4937068330fc9a1b50ab2a012a66d7fc49d110b83ffb156b01a54f1dbc8","signature":"15231d98864623165c596387920a44bddded00642ca5f40330492f87e14e2e7b"},{"version":"e6ade12f73d8c1360c385a8a921cc548587975ef396a18b001c88220e84ad978","signature":"ac00b0d73131f88f1ab84976b69d99d85637a62e78df38f26b2a00ab56b5d434"},{"version":"b03f9f0f76c80c2115f43a01bbc8ecb828b57cc822f00a58986a841cd57fccc1","signature":"8f30a01f42c3c6c62328670a5c7dbf1250324e45aa91580deea52c5a792669cc"},{"version":"b1bf3596d15786d9c7a43c7b25d5ca1b175569be19308cd71603e244d54828a2","signature":"9a30fa865d68528e542edf59c5e7e1cdb93c982461b507bece2d3a8ef17772e0"},{"version":"a6c44391fdd03e8bce56497dde12eb023e4ee5b3072f5834aee7ced2a00b209c","signature":"02dedef123a1e40677e4946f0072984fcc881df517f9c8f6a9a607b481137fc6"},{"version":"29eb0340e5273de693d2426e28151aac7021554fbae389bb5112c14e09094da4","signature":"d99fbd9cf451f9207ab0aad7b1abbd6973b7d6b1a8a915a076da47c74ae839d3"},{"version":"f2ad744f3f40e18d27b705033367b14f1ec36af89c6cb5d094ee1b7c6c0168c8","signature":"e3986fd5e4d2333bb79a5965ce4ba2ffa93e29c0af3dd10ba0422b22b5c54fd8"},{"version":"36a2e4c9a67439aca5f91bb304611d5ae6e20d420503e96c230cf8fcdc948d94","affectsGlobalScope":true,"impliedFormat":1},{"version":"ba7617784f6b9aeac5e20c5eea869bbc3ef31b905f59c796b0fd401dae17c111","impliedFormat":1},{"version":"d8595ef77dcd0be994752157543c6a2e990c1253f44c0c98b8a12568b722f97f","impliedFormat":1},{"version":"2196530485f4402ee4a6d24189c0e4882f871b7bdbaac3ba366655cfc47bbf24","signature":"12354772fc8ac4d7f8d2531e302db873b354f74d0aee4a05bb8e9acd13cb5eae"},{"version":"b4e9eaab6eb1d27d2d8e1f1dd7f3fcac8e0c65771c819fc61f53e5ab1b4d1857","signature":"81999292794865fb519c129d61078f35126c6981835c73544b3e154e333a97b4"},{"version":"5c5cbde656d28a0b16d4acb405326fdadd524e66c9450668e055a44fb404ea84","signature":"0eccb0db27cfa7cf19b64468ba9f5b8ec2efd139bed77ef094c3cdea56d0a6e8"},{"version":"88733fb601c4c9a15e0e6127d2f7e45a75bef8e48808e01df65f4cea78f4378f","signature":"a229771fbc62f26a9ded41c83e65cf5685d1566a2f0ee809a1cadc3fd9832252"},{"version":"2a2c058b6f2f25c8970e44b7f8aa122669d71111ac39e412a69f8a17d903fb8d","signature":"1884418e4289999e5d748a7868169aa7aebfa07ec72ff82251e7677907d79d70"},{"version":"132bb1b0a1829c3cdf2d665d078b434e4c658af8b9d79bfcdb3e6f684007ef4c","signature":"18af7b97abaab5a090d817341fc7845ff09df721067aa896cb0121a5b694e341"},{"version":"c701b494791d9c2f05327b4f22037eed4ae8b578265c9d81993adfa9a026cb9c","signature":"94dd1909e2b129d459af0b60e737407d361a156225973e5a6e1d9a8b1003d5a4"},{"version":"9e1f575bfdbca66f84956aa907fb4006d8d9a235d19729419e6e93927b169760","signature":"6580e076cb5b8f485d643aba7586dc01464e539e0498f4c1e26bbcf34e4feef4"},{"version":"128b31cf38040478b2df8d1cde8766c1c30dc67830cdd57184de27d8cb87515b","signature":"c06c3ab7b80ed97f30fbad31e11c34ef2c1fa4bd63d0f584dd2a0268c90fb2f8"},{"version":"0c6331a555a078c64c4464e21f9b634a3a6b85b730675a24cfa3188940d354a5","signature":"64b55e1076b6ac907f7e9c962344c8190244d0f541b30a86928bd5768e419cf7"},{"version":"42eba9ea3f8ec5aab2fef6dcc7ddb530d54924428476d94bac90218bd552d351","signature":"d37b2fb811d0314ca18223ad3ad2e735651f5a4eaed5faecc20c24aecbd00c51"},{"version":"02235c65b9a16a7386fa65ec4f3f20e382ee077b9137e5250a16501f46691686","signature":"6102fd5ec32ea812dbaa5022005379d45b865fadf5eab27b6e753e4a6e59f0f8"},{"version":"c7e239bbfda78e446a91b7e92bf69112d881e67b420391a01402027895a1d59f","signature":"1844e4798a89123bcf50d1cd6fe3d65e4c6dd4b826e0732884c7f66f898b1f87"},{"version":"e6848377f4c5d0ac21ace35ace064574bf58f0a1c8f6dff1bc9183aa9dcb4dc1","signature":"68ce37b60771eb3075a6f12b7b080fd5e5d2db5635c7282541f26c0f3fc9a7f0"},{"version":"e660caa140fa8ba9abf54ba7b784ad996e4a3620deba89b550c73ede6d423ea6","signature":"14ad2ba323e9112908d2600a39dd920f634338878bf30ae25fe1ab100c43e125"},{"version":"4a16230ab62064856e30a8f5663c644ba73755e25cd63e1fcc58219942d1a1fc","signature":"39a79af99cf2aed34b5d723719137653837633851ee412da15dd039dac6a5f34"},{"version":"05d53bb06eab7a7ef40f5adf211da43a0c4159fc0f949eaff0015c6fd06a74c8","signature":"df49018ea32178e2a630fb608a3ee2ba6e581a7e3793bc33e3d96922f2dc93e8"},{"version":"c30463cd38b0d28b9a86475f3b8dc3af100d3ecd9b73dec9d0a1dee91560e157","signature":"0b02c97b359b157f812cc3b4a125ef40bfa987cb97aecdd7bb889255dc339e02"},{"version":"63383d6b0180be854413ff9c517016ae49cd72a4b0596db76683bcecd97afc98","signature":"780736f61737a47724f87240c2563fe140a51bc36f2e45119bb2b8030a6d368d"},{"version":"ecfc38d887ead886d10fbf7a4ee119c43e570886f218ed9de960c334fd0abdcf","signature":"7d4ef8e51141836a837df32ade5be2bdf347eae370e760a4d597920204e420a5"},{"version":"7551f5776de43e2de35106640bb489a3b3fda2aa87e12b1b39fb5d422d565051","signature":"3396739b1a9a097787e119a402ad97a8d996db9d40f66d575ee417849997a03a"},{"version":"f3d8b45c64db8e04d5c17a786e0bb3cedf28cf17e5e1cf64ca508dfb9be8b445","signature":"6160ae0bbe477143d1305f9dc83625cd982fb58cf7dfe4adaf8b9d1481a82435"},{"version":"66b19c6c7e293876ffae1ee4fa4e26996d07d3a4af3ea4302d6ad6204fae7e30","signature":"1f75f81a664d36b58d8649c1066e697412a0b5983c5e7f76b5f310b4f0ea4027"},{"version":"5e598d58705128f3fc737afb4bca664130e47da42edf16016c8b6b779496097c","signature":"8ef49329160b5cc2511044937ec57af12bebd598bf8730e92fe741e74bfe1e50"},{"version":"fa49e57f08b84ab8b2b9e6797ae10869a9a5006fa1666c9b24d72eef9aacd917","signature":"c3ad3d55832c4cc1ffafd8d9df02579a21ec287c82ab78b13b6d3a486d4d20e2"},{"version":"c9110436c3c5ef03550074c5f89048707803804de8606d419fe01345ee54aeb2","signature":"c3f07f0027508b70e33755245bdc56d8c11b04b6145565b6d191bcc6d1db69bb"},{"version":"f441c3dacced7790789ddc92641d72aaa002e45e7123505c4507afe0959ed604","signature":"63d44cdbfb2b4c3ca3bf4bd05d7399453628e8a234c69cdd7335b7afde7d258c"},{"version":"3eecba57bb19cdd55834d7c761f17423f6a75cdc906a6bd508b92cff8a24a9b8","signature":"b6dcd95acdff28d9d09448e937f2698a2d9ced12b132d9eaae58ffae5fca6313"},{"version":"a1b11ecdeb71f22f4a952717c6c7ecc2d48a503c8b3a51a122841a5c30eeb9c0","signature":"479cf677253ec738cdc2949f414a64851bc84a8efba6bf641672a458f1a96924"},{"version":"8e4aaf032249c994e42e1d3267571aa58fac4ffd1b88f3ed1c7ddd8218d6e9ca","signature":"94752360d75977c47c492f42ad764fee4354fef64b068f56ee4e7af19c850a79"},{"version":"d98eb6ca65662adbaedcd8fb5ec9900a741de4ceed7de25c576c67a49ba57d40","signature":"2f60c98d12e66a2559e8fb0e6495c6e2e8648a6480b604e8c2dff5b785af0b48"},{"version":"8bd3cdbec99430fdd5c3b99d10b631d34bd2e8fd44525b8521cfea8a44bf423d","signature":"8567c2485ecebe3ea1eb5483206e12ff675af0a1bada874a7d44e9c5a617eba0"},{"version":"805d030cc8cd6f859c0f4857ffab9ffdf46bdbd2567aa0222a9c6172015ea7fe","signature":"ba849cfaf2d4c4ffdfe7306aba4fbcfeab605e1a73c92ca5fe338531b30140db"},{"version":"b1053c888fba79f22e185349982c03d31b3816e8561e86d47915c485db7c94d2","signature":"8d214f810c03ae68bc74062978133c34cd658559370ec6422b799ea8741e334a"},{"version":"05cbf4bd0e88cbedb96297113631de68cf0eeafece07913d292a08099127f376","signature":"bbfd42cffd7481a4db77f8b022a72cfc49e8275d63142d96d58139280418d63b"},{"version":"6825a0c76b2f9e5ca613b94cef471790dba18b7e7d0215b74a8bd9c7ef6ca049","signature":"dafce8c3cdb4ca924b5b4fcafd83b7d76168f4173d0d0fb1f135b71f18ee606e"},{"version":"7d2456f047540639c0a02e6907a59cd51014ef33a6016cab88c5d2957490d147","signature":"386bc32ad5953fd2eff55e1ef8bb0d38f37e74bfcd2979b95a702a109bbd2b74"},{"version":"bbf194e6bbe99c19615fd3ebf646a7fa5f3febd4794ce90938c38a00ddac499a","signature":"61c3cddc9407102a66708b5bc8d95548dc2f757f16cfa191c56d7187e2967e2a"},{"version":"13b32a22a86bc5ae75807ccacde7a03270bbab6d630b9dee2934b38e3836477f","signature":"e04a11c20a79c2949be0b1e1b36af1f8eaec6832f1ccd026dfeb2b8512d9a771"},{"version":"73d6d7e1ae65fb7b5c0f971a34f0ed823a0ed6adfd3bd29cb3a314db6c5fd753","signature":"cfe58d764a530a5002ed4d0522dab853f933241401c935623422e8e81ffb4455"},{"version":"1619889adb85f8d01f2c60700f118be73b46a33211be91a0223f7e644350166f","signature":"9e0687c4c92a4a40d2c9e2f8c8180f683a65ba25b845792b9b08d2229720e5dc"},{"version":"e6f3a9519838d8f32a76b08f62124a1e81ce1b1723923b873556b75d906f8134","signature":"a990bd09e1de2c3cd15d8b87170d204ce3e933269dd9ab82ddac00773a32aee5"},{"version":"9176d91e1a4eeacfe5cd57a81e8b89410881a61b61fdc8995df5161de86fb467","signature":"6d87349a8d6f9a35dacba5b4707bf29f00b92d65da9a4515b7b429fc9e18014a"},{"version":"0b0476fbc7016a4274555f1ab8f6eebe5bb61fe790bf60a54befa584a84fcf73","signature":"61f602e9bcf630eabdaefd58209b16313c051f3839787947e9270bbf66002d05"},{"version":"d91fa5351e668b9a08d704d4a05e8b3059294e79811b7aa7f003a023e9329b53","signature":"ed31f748c1ce9fa5631ec5c3869abc654f4f77efd10e77bfa5306c95148356ba"},{"version":"084dbf97c7193fced3acf778e4fe00d5f603d2713cb61909e314d81095326db1","signature":"6d96f2605e7591e854f9828570631fd8aea23729baac4a8bd4c56c30a1cd4c76"},{"version":"e0918784966cad929cb82e5d775a213a651269418b511d3c1ca65d740e226176","affectsGlobalScope":true},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true,"impliedFormat":1},{"version":"109b9c280e8848c08bf4a78fff1fed0750a6ca1735671b5cf08b71bae5448c03","affectsGlobalScope":true,"impliedFormat":1},{"version":"ef18cbf1d8374576e3db03ff33c2c7499845972eb0c4adf87392949709c5e160","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"a12d953aa755b14ac1d28ecdc1e184f3285b01d6d1e58abc11bf1826bc9d80e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"a38efe83ff77c34e0f418a806a01ca3910c02ee7d64212a59d59bca6c2c38fa1","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"3fe4022ba1e738034e38ad9afacbf0f1f16b458ed516326f5bf9e4a31e9be1dc","impliedFormat":1},{"version":"a957197054b074bcdf5555d26286e8461680c7c878040d0f4e2d5509a7524944","affectsGlobalScope":true,"impliedFormat":1},{"version":"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","impliedFormat":1},{"version":"e9b97d69510658d2f4199b7d384326b7c4053b9e6645f5c19e1c2a54ede427fc","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"f478f6f5902dc144c0d6d7bdc919c5177cac4d17a8ca8653c2daf6d7dc94317f","affectsGlobalScope":true,"impliedFormat":1},{"version":"19d5f8d3930e9f99aa2c36258bf95abbe5adf7e889e6181872d1cdba7c9a7dd5","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","impliedFormat":1},{"version":"e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"88bc59b32d0d5b4e5d9632ac38edea23454057e643684c3c0b94511296f2998c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a0a1dda070290b92da5a50113b73ecc4dd6bcbffad66e3c86503d483eafbadcf","impliedFormat":1},{"version":"59dcad36c4549175a25998f6a8b33c1df8e18df9c12ebad1dfb25af13fd4b1ce","impliedFormat":1},{"version":"206a70e72af3e24688397b81304358526ce70d020e4c2606c4acfd1fa1e81fb2","impliedFormat":1},{"version":"017caf5d2a8ef581cf94f678af6ce7415e06956317946315560f1487b9a56167","impliedFormat":1},{"version":"528b62e4272e3ddfb50e8eed9e359dedea0a4d171c3eb8f337f4892aac37b24b","impliedFormat":1},{"version":"d71535813e39c23baa113bc4a29a0e187b87d1105ccc8c5a6ebaca38d9a9bff2","impliedFormat":1},{"version":"4c3148420835de895b9218b2cea321a4607008ba5cefa57b2a57e1c1ef85d22f","affectsGlobalScope":true,"impliedFormat":1},{"version":"f72bc8fe16da67e4e3268599295797b202b95e54bd215a03f97e925dd1502a36","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"915e18c559321c0afaa8d34674d3eb77e1ded12c3e85bf2a9891ec48b07a1ca5","affectsGlobalScope":true,"impliedFormat":1},{"version":"636302a00dfd1f9fe6e8e91e4e9350c6518dcc8d51a474e4fc3a9ba07135100b","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"e1ce1d622f1e561f6cdf246372ead3bbc07ce0342024d0e9c7caf3136f712698","impliedFormat":1},{"version":"199c8269497136f3a0f4da1d1d90ab033f899f070e0dd801946f2a241c8abba2","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"27e4532aaaa1665d0dd19023321e4dc12a35a741d6b8e1ca3517fcc2544e0efe","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"6266d94fb9165d42716e45f3a537ca9f59c07b1dfa8394a659acf139134807db","affectsGlobalScope":true,"impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"98ffdf93dfdd206516971d28e3e473f417a5cfd41172e46b4ce45008f640588e","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"7d6ff413e198d25639f9f01f16673e7df4e4bd2875a42455afd4ecc02ef156da","affectsGlobalScope":true,"impliedFormat":1},{"version":"a7692a54334fd08960cd0c610ff509c2caa93998e0dcefa54021489bcc67c22d","affectsGlobalScope":true,"impliedFormat":1},{"version":"74736930d108365d7bbe740c7154706ccfb1b2a3855a897963ab3e5c07ecbf19","impliedFormat":1},{"version":"3a051941721a7f905544732b0eb819c8d88333a96576b13af08b82c4f17581e4","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"1e25f8d0a8573cafd5b5a16af22d26ab872068a693b9dbccd3f72846ab373655","affectsGlobalScope":true,"impliedFormat":1},{"version":"3797dd6f4ea3dc15f356f8cdd3128bfa18122213b38a80d6c1f05d8e13cbdad8","impliedFormat":1},{"version":"171fd8807643c46a9d17e843959abdf10480d57d60d38d061fb44a4c8d4a8cc4","impliedFormat":1},{"version":"98e4a7b236b99d95ba3b38f30392dc9370020002350dab42e78ae1a6353dcdd3","affectsGlobalScope":true,"impliedFormat":1},{"version":"dcf299a72c98d55f888980dffe2cd19020cdef6cbb32a0b28ef30b496ef7642d","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e707bebde6153d06452cb3d03a9889a922853da46caf00f5fcc358c490bd6b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"22f9c4223c59fd47ea5aadee362aec0b1adc9a6e58f58d9d848d71732f676abf","affectsGlobalScope":true,"impliedFormat":1},{"version":"8c5c8110577288007799018d817ecec25fe3eb3aefba99fc8720eb7c1bcd306e","affectsGlobalScope":true,"impliedFormat":1},{"version":"db41487da1c62b8a2e9aeaba4b79b9e2270452cfca0165bacb22ab50b2fb9bed","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb0d8eac52f68a5fd4f4e8119040c907ca182f45f883e29b5e61cb9eeecb068a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1bc1de3b1f094ed8f0612239c11d3163c1b1d7e197ecc6c1606051a3be8bfb5d","affectsGlobalScope":true,"impliedFormat":1},{"version":"78eebaa895ec3bfc488e0f2a7a05d573604be33f692187381ba8108cfe31b8c4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5fc07ceecfafaba4308ea6c954298a259294fe3736b1e3cecda45ef626653769","impliedFormat":1},"289235dc0bf9e32f655ebd3a49b7992a122c1ddc9ada0a71fd1337cbac17dfe7"],"root":[[45,60],[64,110]],"options":{"allowJs":false,"allowSyntheticDefaultImports":true,"allowUmdGlobalAccess":false,"allowUnreachableCode":false,"allowUnusedLabels":false,"alwaysStrict":true,"composite":true,"declaration":true,"declarationMap":false,"emitDeclarationOnly":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":1,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":false,"outDir":"./","removeComments":false,"sourceMap":false,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":6},"referencedMap":[[215,1],[218,1],[210,2],[212,1],[213,2],[214,2],[217,1],[219,3],[216,1],[211,2],[156,4],[157,4],[158,5],[159,6],[160,7],[161,8],[111,2],[114,9],[112,2],[113,2],[162,10],[163,11],[164,12],[165,13],[166,14],[167,15],[168,15],[170,2],[169,16],[171,17],[172,18],[173,19],[155,20],[174,21],[175,22],[176,23],[177,24],[178,25],[179,26],[180,27],[181,28],[182,29],[183,30],[184,31],[185,32],[186,33],[187,33],[188,34],[189,2],[190,2],[191,35],[193,36],[192,37],[194,38],[195,39],[196,40],[197,41],[198,42],[199,43],[200,44],[116,45],[115,2],[209,46],[201,47],[202,48],[203,49],[204,50],[205,51],[206,52],[207,53],[208,54],[61,2],[63,55],[117,2],[62,2],[43,2],[44,2],[9,2],[8,2],[2,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[3,2],[18,2],[4,2],[19,2],[23,2],[20,2],[21,2],[22,2],[24,2],[25,2],[26,2],[5,2],[27,2],[28,2],[29,2],[30,2],[6,2],[34,2],[31,2],[32,2],[33,2],[35,2],[7,2],[36,2],[41,2],[42,2],[37,2],[38,2],[39,2],[40,2],[1,2],[133,56],[143,57],[132,56],[153,58],[124,59],[123,60],[152,61],[146,62],[151,63],[126,64],[140,65],[125,66],[149,67],[121,68],[120,61],[150,69],[122,70],[127,71],[128,2],[131,71],[118,2],[154,72],[144,73],[135,74],[136,75],[138,76],[134,77],[137,78],[147,61],[129,79],[130,80],[139,81],[119,82],[142,73],[141,71],[145,2],[148,83],[45,2],[48,84],[64,85],[65,85],[67,86],[68,85],[69,87],[70,88],[71,85],[78,89],[72,85],[66,2],[73,85],[74,85],[75,85],[76,85],[77,85],[55,2],[53,2],[54,2],[52,2],[51,2],[56,90],[49,87],[80,91],[81,91],[84,92],[82,91],[86,93],[83,91],[79,2],[94,94],[87,2],[88,95],[90,96],[91,97],[92,97],[93,2],[46,2],[100,98],[47,2],[95,2],[50,84],[57,99],[89,2],[96,85],[97,2],[98,2],[58,87],[85,2],[60,100],[99,100],[59,2],[110,2],[220,2],[101,2],[102,2],[103,2],[106,101],[105,2],[107,102],[104,2],[108,2],[109,103]],"latestChangedDtsFile":"./shared/index.d.ts","version":"5.6.3"}
1
+ {"fileNames":["../../../../node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../client/alert.ts","../client/icon.ts","../client/object-slug.ts","../client/bulk-record-action.ts","../client/call-recording-insight-text-selection-action.ts","../client/call-recording-summary-text-selection-action.ts","../client/call-recording-transcript-text-selection-action.ts","../client/confirm.ts","../client/record-action.ts","../client/components/widget-title.ts","../client/components/widget-text-widget.ts","../client/components/widget-text-primary.ts","../client/components/widget-text-secondary.ts","../client/components/widget-badge.ts","../client/components/widget.ts","../client/record-widget.ts","../client/workflow/schema.ts","../client/workflow-block.ts","../../../../node_modules/@types/react/global.d.ts","../../../../node_modules/csstype/index.d.ts","../../../../node_modules/@types/react/index.d.ts","../client/components/avatar.ts","../client/components/badge.ts","../client/components/keyboard-key.ts","../client/components/button.ts","../client/components/column.ts","../client/components/combobox.ts","../client/components/dialog-list.ts","../client/components/divider.ts","../client/components/json.ts","../client/components/link.ts","../client/components/row.ts","../client/components/section.ts","../client/components/text-block.ts","../client/components/typography.ts","../client/components/index.ts","../client/forms/value.ts","../client/forms/array.ts","../client/forms/boolean.ts","../client/forms/number.ts","../client/forms/string.ts","../client/forms/index.ts","../client/util/prettify.ts","../client/forms/path.ts","../client/hooks/use-async-cache.ts","../client/hooks/use-form.ts","../client/run-query.ts","../client/hooks/use-query.ts","../client/hooks/use-record.ts","../client/hooks/use-records.ts","../client/hooks/use-workspace.ts","../client/hooks/index.ts","../client/platform.ts","../client/show-dialog.ts","../client/show-iframe.ts","../client/show-toast.ts","../client/workflow/index.ts","../client/index.ts","../server/attio-fetch.ts","../server/connections.ts","../server/env.ts","../server/webhook-handlers.ts","../server/experimental/kv-store.ts","../server/experimental/index.ts","../server/index.ts","../shared/errors.ts","../shared/index.ts","../global.d.ts","../../../../node_modules/@types/node/compatibility/disposable.d.ts","../../../../node_modules/@types/node/compatibility/indexable.d.ts","../../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../../node_modules/@types/node/compatibility/index.d.ts","../../../../node_modules/@types/node/ts5.6/globals.typedarray.d.ts","../../../../node_modules/@types/node/ts5.6/buffer.buffer.d.ts","../../../../node_modules/buffer/index.d.ts","../../../../node_modules/undici-types/header.d.ts","../../../../node_modules/undici-types/readable.d.ts","../../../../node_modules/undici-types/file.d.ts","../../../../node_modules/undici-types/fetch.d.ts","../../../../node_modules/undici-types/formdata.d.ts","../../../../node_modules/undici-types/connector.d.ts","../../../../node_modules/undici-types/client.d.ts","../../../../node_modules/undici-types/errors.d.ts","../../../../node_modules/undici-types/dispatcher.d.ts","../../../../node_modules/undici-types/global-dispatcher.d.ts","../../../../node_modules/undici-types/global-origin.d.ts","../../../../node_modules/undici-types/pool-stats.d.ts","../../../../node_modules/undici-types/pool.d.ts","../../../../node_modules/undici-types/handlers.d.ts","../../../../node_modules/undici-types/balanced-pool.d.ts","../../../../node_modules/undici-types/agent.d.ts","../../../../node_modules/undici-types/mock-interceptor.d.ts","../../../../node_modules/undici-types/mock-agent.d.ts","../../../../node_modules/undici-types/mock-client.d.ts","../../../../node_modules/undici-types/mock-pool.d.ts","../../../../node_modules/undici-types/mock-errors.d.ts","../../../../node_modules/undici-types/proxy-agent.d.ts","../../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../../node_modules/undici-types/retry-handler.d.ts","../../../../node_modules/undici-types/retry-agent.d.ts","../../../../node_modules/undici-types/api.d.ts","../../../../node_modules/undici-types/interceptors.d.ts","../../../../node_modules/undici-types/util.d.ts","../../../../node_modules/undici-types/cookies.d.ts","../../../../node_modules/undici-types/patch.d.ts","../../../../node_modules/undici-types/websocket.d.ts","../../../../node_modules/undici-types/eventsource.d.ts","../../../../node_modules/undici-types/filereader.d.ts","../../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../../node_modules/undici-types/content-type.d.ts","../../../../node_modules/undici-types/cache.d.ts","../../../../node_modules/undici-types/index.d.ts","../../../../node_modules/@types/node/globals.d.ts","../../../../node_modules/@types/node/assert.d.ts","../../../../node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/@types/node/buffer.d.ts","../../../../node_modules/@types/node/child_process.d.ts","../../../../node_modules/@types/node/cluster.d.ts","../../../../node_modules/@types/node/console.d.ts","../../../../node_modules/@types/node/constants.d.ts","../../../../node_modules/@types/node/crypto.d.ts","../../../../node_modules/@types/node/dgram.d.ts","../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/@types/node/dns.d.ts","../../../../node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/@types/node/domain.d.ts","../../../../node_modules/@types/node/dom-events.d.ts","../../../../node_modules/@types/node/events.d.ts","../../../../node_modules/@types/node/fs.d.ts","../../../../node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/@types/node/http.d.ts","../../../../node_modules/@types/node/http2.d.ts","../../../../node_modules/@types/node/https.d.ts","../../../../node_modules/@types/node/inspector.d.ts","../../../../node_modules/@types/node/module.d.ts","../../../../node_modules/@types/node/net.d.ts","../../../../node_modules/@types/node/os.d.ts","../../../../node_modules/@types/node/path.d.ts","../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/@types/node/process.d.ts","../../../../node_modules/@types/node/punycode.d.ts","../../../../node_modules/@types/node/querystring.d.ts","../../../../node_modules/@types/node/readline.d.ts","../../../../node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/@types/node/repl.d.ts","../../../../node_modules/@types/node/sea.d.ts","../../../../node_modules/@types/node/sqlite.d.ts","../../../../node_modules/@types/node/stream.d.ts","../../../../node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/@types/node/stream/web.d.ts","../../../../node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/@types/node/test.d.ts","../../../../node_modules/@types/node/timers.d.ts","../../../../node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/@types/node/tls.d.ts","../../../../node_modules/@types/node/trace_events.d.ts","../../../../node_modules/@types/node/tty.d.ts","../../../../node_modules/@types/node/url.d.ts","../../../../node_modules/@types/node/util.d.ts","../../../../node_modules/@types/node/v8.d.ts","../../../../node_modules/@types/node/vm.d.ts","../../../../node_modules/@types/node/wasi.d.ts","../../../../node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/@types/node/zlib.d.ts","../../../../node_modules/@types/node/ts5.6/index.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/fetch.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/utils.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/filter-boolean.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/is-array.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/json-parse.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/array-includes.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/set-has.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/map-has.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/array-index-of.d.ts","../../../../node_modules/@total-typescript/ts-reset/dist/recommended.d.ts","../reset.d.ts"],"fileIdsList":[[118,161,213],[118,161],[118,161,212,214,215,216,217,218,219,220],[118,158,161],[118,160,161],[118,161,166,196],[118,161,162,167,173,174,181,193,204],[118,161,162,163,173,181],[113,114,115,118,161],[118,161,164,205],[118,161,165,166,174,182],[118,161,166,193,201],[118,161,167,169,173,181],[118,160,161,168],[118,161,169,170],[118,161,171,173],[118,160,161,173],[118,161,173,174,175,193,204],[118,161,173,174,175,188,193,196],[118,156,161],[118,156,161,169,173,176,181,193,204],[118,161,173,174,176,177,181,193,201,204],[118,161,176,178,193,201,204],[118,161,173,179],[118,161,180,204],[118,161,169,173,181,193],[118,161,182],[118,161,183],[118,160,161,184],[118,158,159,160,161,162,163,164,165,166,167,168,169,170,171,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210],[118,161,186],[118,161,187],[118,161,173,188,189],[118,161,188,190,205,207],[118,161,173,193,194,196],[118,161,195,196],[118,161,193,194],[118,161,196],[118,161,197],[118,158,161,193],[118,161,173,199,200],[118,161,199,200],[118,161,166,181,193,201],[118,161,202],[161],[116,117,118,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210],[118,161,181,203],[118,161,176,187,204],[118,161,166,205],[118,161,193,206],[118,161,180,207],[118,161,208],[118,161,173,175,184,193,196,204,207,209],[118,161,193,210],[63,64,118,161],[118,128,132,161,204],[118,128,161,193,204],[118,123,161],[118,125,128,161,201,204],[118,161,181,201],[118,161,211],[118,123,161,211],[118,125,128,161,181,204],[118,120,121,124,127,161,173,193,204],[118,128,135,161],[118,120,126,161],[118,128,149,150,161],[118,124,128,161,196,204,211],[118,149,161,211],[118,122,123,161,211],[118,128,161],[118,122,123,124,125,126,127,128,129,130,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,150,151,152,153,154,155,161],[118,128,143,161],[118,128,135,136,161],[118,126,128,136,137,161],[118,127,161],[118,120,123,128,161],[118,128,132,136,137,161],[118,132,161],[118,126,128,131,161,204],[118,120,125,128,135,161],[118,161,193],[118,123,128,149,161,209,211],[46,47,118,161],[46,118,161],[65,118,161],[65,68,118,161],[46,65,118,161],[59,66,67,69,70,71,72,73,74,75,76,77,78,79,118,161],[54,55,56,57,58,118,161],[81,118,161],[82,83,84,85,118,161],[82,83,84,85,87,118,161],[89,90,92,93,94,95,118,161],[65,71,81,88,118,161],[91,118,161],[47,118,161],[45,46,47,48,49,50,51,52,53,60,62,80,81,82,83,84,85,86,88,91,96,97,98,99,100,101,118,161],[47,59,118,161],[61,118,161],[107,118,161],[103,104,105,106,108,118,161],[110,118,161]],"fileInfos":[{"version":"44e584d4f6444f58791784f1d530875970993129442a847597db702a073ca68c","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"9a68c0c07ae2fa71b44384a839b7b8d81662a236d4b9ac30916718f7510b1b2d","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"6920e1448680767498a0b77c6a00a8e77d14d62c3da8967b171f1ddffa3c18e4","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"45d8ccb3dfd57355eb29749919142d4321a0aa4df6acdfc54e30433d7176600a","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"93495ff27b8746f55d19fcbcdbaccc99fd95f19d057aed1bd2c0cafe1335fbf0","affectsGlobalScope":true,"impliedFormat":1},{"version":"6fc23bb8c3965964be8c597310a2878b53a0306edb71d4b5a4dfe760186bcc01","affectsGlobalScope":true,"impliedFormat":1},{"version":"ea011c76963fb15ef1cdd7ce6a6808b46322c527de2077b6cfdf23ae6f5f9ec7","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"4738f2420687fd85629c9efb470793bb753709c2379e5f85bc1815d875ceadcd","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"9fc46429fbe091ac5ad2608c657201eb68b6f1b8341bd6d670047d32ed0a88fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1a94697425a99354df73d9c8291e2ecd4dddd370aed4023c2d6dee6cccb32666","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"bf14a426dbbf1022d11bd08d6b8e709a2e9d246f0c6c1032f3b2edb9a902adbe","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3f9fc0ec0b96a9e642f11eda09c0be83a61c7b336977f8b9fdb1e9788e925fe","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"479553e3779be7d4f68e9f40cdb82d038e5ef7592010100410723ceced22a0f7","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"33358442698bb565130f52ba79bfd3d4d484ac85fe33f3cb1759c54d18201393","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"7e5876a1bb053f86140569fbe10bd95b5820c9faa8db31f8ede544c9dbfd5a3c","signature":"de6c965ec27e4caca4b2d919a10d9ec7716bf075bd4612212f2fa6feb66a9bf7"},{"version":"952f7d096952e00db8a817eab245683af30af3528cb9250b92b4c70d750c5798","signature":"cd7487f16f4c3d33faeff4cb85aa3fffb67da15b90f5b67f60fa30fbbd7c4847"},{"version":"75ed310180837d6d62e4f3a38768e2a3795ad11f801466bead0c7b0e35263f57","signature":"21fad2f9f72334c157a67bbc076fd7644c1383db494b0d7d0c013545509578be"},{"version":"3541a75ac4ead3dc30453b9e9b6e4dee38d6d081f3d4f04eaedb2fdb93e790f7","signature":"303285a7c1f6a00375f877217e31ba49c1dff25310e9b94f39a2852345a92783"},{"version":"9d037362a2faabbec5f80b9ab255b9f36cdcae392c7849fef8365434f2835811","signature":"d4387da0ded03718ab643986472e2c8ba2f71db4f54e2292f4244d9f3887bd05"},{"version":"0a2daaa13872f1dd3f947bcf87859367a7606addbc4e1365b03daa76ca154279","signature":"e192ced8ee70a24de0867a7cffe6b082c3271f254bdf3b746a016429fb07c4da"},{"version":"312155dd86ff0cf411688fc85efb1ee8986eb3eb9d53adb48d9b011d744fcadc","signature":"54fc5a4512f46d92b633dfe7c1e6c688dc126f72e8ace95c52c05467f2935924"},{"version":"dec1b91e1bbe45b9fa46e0fbfd67da1152a480947e7553d1f43bc57a85e64ce6","signature":"bd1f55ebe2ccc7899f8c180de85728bb54f6bf9f9591a306b78314023e5192c7"},{"version":"190b441361da45ede16f3a1fa4b2c4f1d5aae06daa5f0bdf354c87d653741f4f","signature":"bd4cca1b51c0f9e33fc1d7086769109d270e7fa34ebb31006d0c4a0789d02fac"},{"version":"fb1eab958addf23b6d1437d4d50ea9a0d99f209207205f8191c9bf0bc795096f","signature":"4a81dad4b3ed54e4524e4a7145c62ba00895ef48e073a33efdaccb376fa66f53"},{"version":"b874c33749790ddaf700373d38ac55c7b3c8b31d577917c179249eff16595d09","signature":"0a8a6f37629b102c37698f7e09f5bdd65d68348459a92522e18a4597294a0415"},{"version":"601e9d8cc71778f1e65b2f48990ddd4583041378929c107c3da86f7ef8d8d06c","signature":"69e363ec7e50ff27f50a17f852c323ab312318a89b69e0e23115f3a1b994b0c3"},{"version":"7f9df4937068330fc9a1b50ab2a012a66d7fc49d110b83ffb156b01a54f1dbc8","signature":"15231d98864623165c596387920a44bddded00642ca5f40330492f87e14e2e7b"},{"version":"e6ade12f73d8c1360c385a8a921cc548587975ef396a18b001c88220e84ad978","signature":"ac00b0d73131f88f1ab84976b69d99d85637a62e78df38f26b2a00ab56b5d434"},{"version":"b03f9f0f76c80c2115f43a01bbc8ecb828b57cc822f00a58986a841cd57fccc1","signature":"8f30a01f42c3c6c62328670a5c7dbf1250324e45aa91580deea52c5a792669cc"},{"version":"b1bf3596d15786d9c7a43c7b25d5ca1b175569be19308cd71603e244d54828a2","signature":"9a30fa865d68528e542edf59c5e7e1cdb93c982461b507bece2d3a8ef17772e0"},{"version":"29eb0340e5273de693d2426e28151aac7021554fbae389bb5112c14e09094da4","signature":"d99fbd9cf451f9207ab0aad7b1abbd6973b7d6b1a8a915a076da47c74ae839d3"},{"version":"f2ad744f3f40e18d27b705033367b14f1ec36af89c6cb5d094ee1b7c6c0168c8","signature":"e3986fd5e4d2333bb79a5965ce4ba2ffa93e29c0af3dd10ba0422b22b5c54fd8"},{"version":"36a2e4c9a67439aca5f91bb304611d5ae6e20d420503e96c230cf8fcdc948d94","affectsGlobalScope":true,"impliedFormat":1},{"version":"ba7617784f6b9aeac5e20c5eea869bbc3ef31b905f59c796b0fd401dae17c111","impliedFormat":1},{"version":"d8595ef77dcd0be994752157543c6a2e990c1253f44c0c98b8a12568b722f97f","impliedFormat":1},{"version":"2196530485f4402ee4a6d24189c0e4882f871b7bdbaac3ba366655cfc47bbf24","signature":"12354772fc8ac4d7f8d2531e302db873b354f74d0aee4a05bb8e9acd13cb5eae"},{"version":"b4e9eaab6eb1d27d2d8e1f1dd7f3fcac8e0c65771c819fc61f53e5ab1b4d1857","signature":"81999292794865fb519c129d61078f35126c6981835c73544b3e154e333a97b4"},{"version":"5c5cbde656d28a0b16d4acb405326fdadd524e66c9450668e055a44fb404ea84","signature":"0eccb0db27cfa7cf19b64468ba9f5b8ec2efd139bed77ef094c3cdea56d0a6e8"},{"version":"88733fb601c4c9a15e0e6127d2f7e45a75bef8e48808e01df65f4cea78f4378f","signature":"a229771fbc62f26a9ded41c83e65cf5685d1566a2f0ee809a1cadc3fd9832252"},{"version":"2a2c058b6f2f25c8970e44b7f8aa122669d71111ac39e412a69f8a17d903fb8d","signature":"1884418e4289999e5d748a7868169aa7aebfa07ec72ff82251e7677907d79d70"},{"version":"cce766ff7ca2942a9fc59c7246df6a425cbc9b6541905a7f67b5cda882a981b0","signature":"d22361b37c7796eb46331fb8b05bc8c40844015eef0b92fa39ff6493b5c7260a"},{"version":"c701b494791d9c2f05327b4f22037eed4ae8b578265c9d81993adfa9a026cb9c","signature":"94dd1909e2b129d459af0b60e737407d361a156225973e5a6e1d9a8b1003d5a4"},{"version":"9e1f575bfdbca66f84956aa907fb4006d8d9a235d19729419e6e93927b169760","signature":"6580e076cb5b8f485d643aba7586dc01464e539e0498f4c1e26bbcf34e4feef4"},{"version":"128b31cf38040478b2df8d1cde8766c1c30dc67830cdd57184de27d8cb87515b","signature":"c06c3ab7b80ed97f30fbad31e11c34ef2c1fa4bd63d0f584dd2a0268c90fb2f8"},{"version":"0c6331a555a078c64c4464e21f9b634a3a6b85b730675a24cfa3188940d354a5","signature":"64b55e1076b6ac907f7e9c962344c8190244d0f541b30a86928bd5768e419cf7"},{"version":"42eba9ea3f8ec5aab2fef6dcc7ddb530d54924428476d94bac90218bd552d351","signature":"d37b2fb811d0314ca18223ad3ad2e735651f5a4eaed5faecc20c24aecbd00c51"},{"version":"02235c65b9a16a7386fa65ec4f3f20e382ee077b9137e5250a16501f46691686","signature":"6102fd5ec32ea812dbaa5022005379d45b865fadf5eab27b6e753e4a6e59f0f8"},{"version":"c7e239bbfda78e446a91b7e92bf69112d881e67b420391a01402027895a1d59f","signature":"1844e4798a89123bcf50d1cd6fe3d65e4c6dd4b826e0732884c7f66f898b1f87"},{"version":"e6848377f4c5d0ac21ace35ace064574bf58f0a1c8f6dff1bc9183aa9dcb4dc1","signature":"68ce37b60771eb3075a6f12b7b080fd5e5d2db5635c7282541f26c0f3fc9a7f0"},{"version":"66f66de17d20754246b07b784eeda4f1e7ea7cd83bc5026e8bc0196b04cf1f91","signature":"175a7ea8efacba3fe8c69bb71cd3b4a57d99c0dcc34c4ad5a51dd32f0f136fa6"},{"version":"4a16230ab62064856e30a8f5663c644ba73755e25cd63e1fcc58219942d1a1fc","signature":"39a79af99cf2aed34b5d723719137653837633851ee412da15dd039dac6a5f34"},{"version":"05d53bb06eab7a7ef40f5adf211da43a0c4159fc0f949eaff0015c6fd06a74c8","signature":"df49018ea32178e2a630fb608a3ee2ba6e581a7e3793bc33e3d96922f2dc93e8"},{"version":"c30463cd38b0d28b9a86475f3b8dc3af100d3ecd9b73dec9d0a1dee91560e157","signature":"0b02c97b359b157f812cc3b4a125ef40bfa987cb97aecdd7bb889255dc339e02"},{"version":"63383d6b0180be854413ff9c517016ae49cd72a4b0596db76683bcecd97afc98","signature":"780736f61737a47724f87240c2563fe140a51bc36f2e45119bb2b8030a6d368d"},{"version":"ecfc38d887ead886d10fbf7a4ee119c43e570886f218ed9de960c334fd0abdcf","signature":"7d4ef8e51141836a837df32ade5be2bdf347eae370e760a4d597920204e420a5"},{"version":"7551f5776de43e2de35106640bb489a3b3fda2aa87e12b1b39fb5d422d565051","signature":"3396739b1a9a097787e119a402ad97a8d996db9d40f66d575ee417849997a03a"},{"version":"f3d8b45c64db8e04d5c17a786e0bb3cedf28cf17e5e1cf64ca508dfb9be8b445","signature":"6160ae0bbe477143d1305f9dc83625cd982fb58cf7dfe4adaf8b9d1481a82435"},{"version":"66b19c6c7e293876ffae1ee4fa4e26996d07d3a4af3ea4302d6ad6204fae7e30","signature":"1f75f81a664d36b58d8649c1066e697412a0b5983c5e7f76b5f310b4f0ea4027"},{"version":"5e598d58705128f3fc737afb4bca664130e47da42edf16016c8b6b779496097c","signature":"8ef49329160b5cc2511044937ec57af12bebd598bf8730e92fe741e74bfe1e50"},{"version":"45221cfd2626f85a4c5ca0cc02552ffd4419301c7528c023d7d333a2690dc29d","signature":"3d8d1eed6a4d82db238507dd80f6daeb54fb5ed624631c94278bd997e156a7d9"},{"version":"c9110436c3c5ef03550074c5f89048707803804de8606d419fe01345ee54aeb2","signature":"c3f07f0027508b70e33755245bdc56d8c11b04b6145565b6d191bcc6d1db69bb"},{"version":"f441c3dacced7790789ddc92641d72aaa002e45e7123505c4507afe0959ed604","signature":"63d44cdbfb2b4c3ca3bf4bd05d7399453628e8a234c69cdd7335b7afde7d258c"},{"version":"3eecba57bb19cdd55834d7c761f17423f6a75cdc906a6bd508b92cff8a24a9b8","signature":"b6dcd95acdff28d9d09448e937f2698a2d9ced12b132d9eaae58ffae5fca6313"},{"version":"a1b11ecdeb71f22f4a952717c6c7ecc2d48a503c8b3a51a122841a5c30eeb9c0","signature":"479cf677253ec738cdc2949f414a64851bc84a8efba6bf641672a458f1a96924"},{"version":"8e4aaf032249c994e42e1d3267571aa58fac4ffd1b88f3ed1c7ddd8218d6e9ca","signature":"94752360d75977c47c492f42ad764fee4354fef64b068f56ee4e7af19c850a79"},{"version":"d98eb6ca65662adbaedcd8fb5ec9900a741de4ceed7de25c576c67a49ba57d40","signature":"2f60c98d12e66a2559e8fb0e6495c6e2e8648a6480b604e8c2dff5b785af0b48"},{"version":"8bd3cdbec99430fdd5c3b99d10b631d34bd2e8fd44525b8521cfea8a44bf423d","signature":"8567c2485ecebe3ea1eb5483206e12ff675af0a1bada874a7d44e9c5a617eba0"},{"version":"805d030cc8cd6f859c0f4857ffab9ffdf46bdbd2567aa0222a9c6172015ea7fe","signature":"ba849cfaf2d4c4ffdfe7306aba4fbcfeab605e1a73c92ca5fe338531b30140db"},{"version":"b1053c888fba79f22e185349982c03d31b3816e8561e86d47915c485db7c94d2","signature":"8d214f810c03ae68bc74062978133c34cd658559370ec6422b799ea8741e334a"},{"version":"05cbf4bd0e88cbedb96297113631de68cf0eeafece07913d292a08099127f376","signature":"bbfd42cffd7481a4db77f8b022a72cfc49e8275d63142d96d58139280418d63b"},{"version":"6825a0c76b2f9e5ca613b94cef471790dba18b7e7d0215b74a8bd9c7ef6ca049","signature":"dafce8c3cdb4ca924b5b4fcafd83b7d76168f4173d0d0fb1f135b71f18ee606e"},{"version":"b444fd3cc4cd187b81960b97d7cc8622f4a25118cd340b5549865c98167dd686","signature":"9ec234c8f351502bef4d9b4f078c833f97610ed1073073854353063602c1881a"},{"version":"bbf194e6bbe99c19615fd3ebf646a7fa5f3febd4794ce90938c38a00ddac499a","signature":"61c3cddc9407102a66708b5bc8d95548dc2f757f16cfa191c56d7187e2967e2a"},{"version":"13b32a22a86bc5ae75807ccacde7a03270bbab6d630b9dee2934b38e3836477f","signature":"e04a11c20a79c2949be0b1e1b36af1f8eaec6832f1ccd026dfeb2b8512d9a771"},{"version":"73d6d7e1ae65fb7b5c0f971a34f0ed823a0ed6adfd3bd29cb3a314db6c5fd753","signature":"cfe58d764a530a5002ed4d0522dab853f933241401c935623422e8e81ffb4455"},{"version":"1619889adb85f8d01f2c60700f118be73b46a33211be91a0223f7e644350166f","signature":"9e0687c4c92a4a40d2c9e2f8c8180f683a65ba25b845792b9b08d2229720e5dc"},{"version":"e6f3a9519838d8f32a76b08f62124a1e81ce1b1723923b873556b75d906f8134","signature":"a990bd09e1de2c3cd15d8b87170d204ce3e933269dd9ab82ddac00773a32aee5"},{"version":"9176d91e1a4eeacfe5cd57a81e8b89410881a61b61fdc8995df5161de86fb467","signature":"6d87349a8d6f9a35dacba5b4707bf29f00b92d65da9a4515b7b429fc9e18014a"},{"version":"0b0476fbc7016a4274555f1ab8f6eebe5bb61fe790bf60a54befa584a84fcf73","signature":"61f602e9bcf630eabdaefd58209b16313c051f3839787947e9270bbf66002d05"},{"version":"d91fa5351e668b9a08d704d4a05e8b3059294e79811b7aa7f003a023e9329b53","signature":"ed31f748c1ce9fa5631ec5c3869abc654f4f77efd10e77bfa5306c95148356ba"},{"version":"084dbf97c7193fced3acf778e4fe00d5f603d2713cb61909e314d81095326db1","signature":"6d96f2605e7591e854f9828570631fd8aea23729baac4a8bd4c56c30a1cd4c76"},{"version":"e0918784966cad929cb82e5d775a213a651269418b511d3c1ca65d740e226176","affectsGlobalScope":true},{"version":"6c7176368037af28cb72f2392010fa1cef295d6d6744bca8cfb54985f3a18c3e","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"437e20f2ba32abaeb7985e0afe0002de1917bc74e949ba585e49feba65da6ca1","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"613b21ccdf3be6329d56e6caa13b258c842edf8377be7bc9f014ed14cdcfc308","affectsGlobalScope":true,"impliedFormat":1},{"version":"109b9c280e8848c08bf4a78fff1fed0750a6ca1735671b5cf08b71bae5448c03","affectsGlobalScope":true,"impliedFormat":1},{"version":"ef18cbf1d8374576e3db03ff33c2c7499845972eb0c4adf87392949709c5e160","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"763fe0f42b3d79b440a9b6e51e9ba3f3f91352469c1e4b3b67bfa4ff6352f3f4","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"7f182617db458e98fc18dfb272d40aa2fff3a353c44a89b2c0ccb3937709bfb5","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"e61be3f894b41b7baa1fbd6a66893f2579bfad01d208b4ff61daef21493ef0a8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"615ba88d0128ed16bf83ef8ccbb6aff05c3ee2db1cc0f89ab50a4939bfc1943f","impliedFormat":1},{"version":"a4d551dbf8746780194d550c88f26cf937caf8d56f102969a110cfaed4b06656","impliedFormat":1},{"version":"8bd86b8e8f6a6aa6c49b71e14c4ffe1211a0e97c80f08d2c8cc98838006e4b88","impliedFormat":1},{"version":"317e63deeb21ac07f3992f5b50cdca8338f10acd4fbb7257ebf56735bf52ab00","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"a12d953aa755b14ac1d28ecdc1e184f3285b01d6d1e58abc11bf1826bc9d80e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"a38efe83ff77c34e0f418a806a01ca3910c02ee7d64212a59d59bca6c2c38fa1","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"3fe4022ba1e738034e38ad9afacbf0f1f16b458ed516326f5bf9e4a31e9be1dc","impliedFormat":1},{"version":"a957197054b074bcdf5555d26286e8461680c7c878040d0f4e2d5509a7524944","affectsGlobalScope":true,"impliedFormat":1},{"version":"4314c7a11517e221f7296b46547dbc4df047115b182f544d072bdccffa57fc72","impliedFormat":1},{"version":"e9b97d69510658d2f4199b7d384326b7c4053b9e6645f5c19e1c2a54ede427fc","impliedFormat":1},{"version":"c2510f124c0293ab80b1777c44d80f812b75612f297b9857406468c0f4dafe29","affectsGlobalScope":true,"impliedFormat":1},{"version":"5524481e56c48ff486f42926778c0a3cce1cc85dc46683b92b1271865bcf015a","impliedFormat":1},{"version":"f478f6f5902dc144c0d6d7bdc919c5177cac4d17a8ca8653c2daf6d7dc94317f","affectsGlobalScope":true,"impliedFormat":1},{"version":"19d5f8d3930e9f99aa2c36258bf95abbe5adf7e889e6181872d1cdba7c9a7dd5","impliedFormat":1},{"version":"9855e02d837744303391e5623a531734443a5f8e6e8755e018c41d63ad797db2","impliedFormat":1},{"version":"a6bf63d17324010ca1fbf0389cab83f93389bb0b9a01dc8a346d092f65b3605f","impliedFormat":1},{"version":"e009777bef4b023a999b2e5b9a136ff2cde37dc3f77c744a02840f05b18be8ff","impliedFormat":1},{"version":"1e0d1f8b0adfa0b0330e028c7941b5a98c08b600efe7f14d2d2a00854fb2f393","impliedFormat":1},{"version":"71450bbc2d82821d24ca05699a533e72758964e9852062c53b30f31c36978ab8","affectsGlobalScope":true,"impliedFormat":1},{"version":"88bc59b32d0d5b4e5d9632ac38edea23454057e643684c3c0b94511296f2998c","affectsGlobalScope":true,"impliedFormat":1},{"version":"a0a1dda070290b92da5a50113b73ecc4dd6bcbffad66e3c86503d483eafbadcf","impliedFormat":1},{"version":"59dcad36c4549175a25998f6a8b33c1df8e18df9c12ebad1dfb25af13fd4b1ce","impliedFormat":1},{"version":"206a70e72af3e24688397b81304358526ce70d020e4c2606c4acfd1fa1e81fb2","impliedFormat":1},{"version":"017caf5d2a8ef581cf94f678af6ce7415e06956317946315560f1487b9a56167","impliedFormat":1},{"version":"528b62e4272e3ddfb50e8eed9e359dedea0a4d171c3eb8f337f4892aac37b24b","impliedFormat":1},{"version":"d71535813e39c23baa113bc4a29a0e187b87d1105ccc8c5a6ebaca38d9a9bff2","impliedFormat":1},{"version":"4c3148420835de895b9218b2cea321a4607008ba5cefa57b2a57e1c1ef85d22f","affectsGlobalScope":true,"impliedFormat":1},{"version":"f72bc8fe16da67e4e3268599295797b202b95e54bd215a03f97e925dd1502a36","impliedFormat":1},{"version":"b1b6ee0d012aeebe11d776a155d8979730440082797695fc8e2a5c326285678f","impliedFormat":1},{"version":"45875bcae57270aeb3ebc73a5e3fb4c7b9d91d6b045f107c1d8513c28ece71c0","impliedFormat":1},{"version":"915e18c559321c0afaa8d34674d3eb77e1ded12c3e85bf2a9891ec48b07a1ca5","affectsGlobalScope":true,"impliedFormat":1},{"version":"636302a00dfd1f9fe6e8e91e4e9350c6518dcc8d51a474e4fc3a9ba07135100b","affectsGlobalScope":true,"impliedFormat":1},{"version":"3f16a7e4deafa527ed9995a772bb380eb7d3c2c0fd4ae178c5263ed18394db2c","impliedFormat":1},{"version":"933921f0bb0ec12ef45d1062a1fc0f27635318f4d294e4d99de9a5493e618ca2","impliedFormat":1},{"version":"71a0f3ad612c123b57239a7749770017ecfe6b66411488000aba83e4546fde25","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"e1120271ebbc9952fdc7b2dd3e145560e52e06956345e6fdf91d70ca4886464f","impliedFormat":1},{"version":"814118df420c4e38fe5ae1b9a3bafb6e9c2aa40838e528cde908381867be6466","impliedFormat":1},{"version":"e1ce1d622f1e561f6cdf246372ead3bbc07ce0342024d0e9c7caf3136f712698","impliedFormat":1},{"version":"199c8269497136f3a0f4da1d1d90ab033f899f070e0dd801946f2a241c8abba2","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"125d792ec6c0c0f657d758055c494301cc5fdb327d9d9d5960b3f129aff76093","impliedFormat":1},{"version":"27e4532aaaa1665d0dd19023321e4dc12a35a741d6b8e1ca3517fcc2544e0efe","affectsGlobalScope":true,"impliedFormat":1},{"version":"2754d8221d77c7b382096651925eb476f1066b3348da4b73fe71ced7801edada","impliedFormat":1},{"version":"6266d94fb9165d42716e45f3a537ca9f59c07b1dfa8394a659acf139134807db","affectsGlobalScope":true,"impliedFormat":1},{"version":"f0be1b8078cd549d91f37c30c222c2a187ac1cf981d994fb476a1adc61387b14","affectsGlobalScope":true,"impliedFormat":1},{"version":"0aaed1d72199b01234152f7a60046bc947f1f37d78d182e9ae09c4289e06a592","impliedFormat":1},{"version":"98ffdf93dfdd206516971d28e3e473f417a5cfd41172e46b4ce45008f640588e","impliedFormat":1},{"version":"66ba1b2c3e3a3644a1011cd530fb444a96b1b2dfe2f5e837a002d41a1a799e60","impliedFormat":1},{"version":"7e514f5b852fdbc166b539fdd1f4e9114f29911592a5eb10a94bb3a13ccac3c4","impliedFormat":1},{"version":"7d6ff413e198d25639f9f01f16673e7df4e4bd2875a42455afd4ecc02ef156da","affectsGlobalScope":true,"impliedFormat":1},{"version":"a7692a54334fd08960cd0c610ff509c2caa93998e0dcefa54021489bcc67c22d","affectsGlobalScope":true,"impliedFormat":1},{"version":"74736930d108365d7bbe740c7154706ccfb1b2a3855a897963ab3e5c07ecbf19","impliedFormat":1},{"version":"3a051941721a7f905544732b0eb819c8d88333a96576b13af08b82c4f17581e4","impliedFormat":1},{"version":"ac5ed35e649cdd8143131964336ab9076937fa91802ec760b3ea63b59175c10a","impliedFormat":1},{"version":"1e25f8d0a8573cafd5b5a16af22d26ab872068a693b9dbccd3f72846ab373655","affectsGlobalScope":true,"impliedFormat":1},{"version":"3797dd6f4ea3dc15f356f8cdd3128bfa18122213b38a80d6c1f05d8e13cbdad8","impliedFormat":1},{"version":"171fd8807643c46a9d17e843959abdf10480d57d60d38d061fb44a4c8d4a8cc4","impliedFormat":1},{"version":"98e4a7b236b99d95ba3b38f30392dc9370020002350dab42e78ae1a6353dcdd3","affectsGlobalScope":true,"impliedFormat":1},{"version":"dcf299a72c98d55f888980dffe2cd19020cdef6cbb32a0b28ef30b496ef7642d","affectsGlobalScope":true,"impliedFormat":1},{"version":"2e707bebde6153d06452cb3d03a9889a922853da46caf00f5fcc358c490bd6b1","affectsGlobalScope":true,"impliedFormat":1},{"version":"22f9c4223c59fd47ea5aadee362aec0b1adc9a6e58f58d9d848d71732f676abf","affectsGlobalScope":true,"impliedFormat":1},{"version":"8c5c8110577288007799018d817ecec25fe3eb3aefba99fc8720eb7c1bcd306e","affectsGlobalScope":true,"impliedFormat":1},{"version":"db41487da1c62b8a2e9aeaba4b79b9e2270452cfca0165bacb22ab50b2fb9bed","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb0d8eac52f68a5fd4f4e8119040c907ca182f45f883e29b5e61cb9eeecb068a","affectsGlobalScope":true,"impliedFormat":1},{"version":"1bc1de3b1f094ed8f0612239c11d3163c1b1d7e197ecc6c1606051a3be8bfb5d","affectsGlobalScope":true,"impliedFormat":1},{"version":"78eebaa895ec3bfc488e0f2a7a05d573604be33f692187381ba8108cfe31b8c4","affectsGlobalScope":true,"impliedFormat":1},{"version":"5fc07ceecfafaba4308ea6c954298a259294fe3736b1e3cecda45ef626653769","impliedFormat":1},"289235dc0bf9e32f655ebd3a49b7992a122c1ddc9ada0a71fd1337cbac17dfe7"],"root":[[45,62],[66,112]],"options":{"allowJs":false,"allowSyntheticDefaultImports":true,"allowUmdGlobalAccess":false,"allowUnreachableCode":false,"allowUnusedLabels":false,"alwaysStrict":true,"composite":true,"declaration":true,"declarationMap":false,"emitDeclarationOnly":true,"emitDecoratorMetadata":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":1,"module":1,"noFallthroughCasesInSwitch":true,"noImplicitAny":true,"noImplicitReturns":true,"noImplicitThis":true,"noUnusedLocals":true,"noUnusedParameters":false,"outDir":"./","removeComments":false,"sourceMap":false,"strict":true,"strictBindCallApply":true,"strictFunctionTypes":true,"strictNullChecks":true,"strictPropertyInitialization":true,"target":6},"referencedMap":[[217,1],[220,1],[212,2],[214,1],[215,2],[216,2],[219,1],[221,3],[218,1],[213,2],[158,4],[159,4],[160,5],[161,6],[162,7],[163,8],[113,2],[116,9],[114,2],[115,2],[164,10],[165,11],[166,12],[167,13],[168,14],[169,15],[170,15],[172,2],[171,16],[173,17],[174,18],[175,19],[157,20],[176,21],[177,22],[178,23],[179,24],[180,25],[181,26],[182,27],[183,28],[184,29],[185,30],[186,31],[187,32],[188,33],[189,33],[190,34],[191,2],[192,2],[193,35],[195,36],[194,37],[196,38],[197,39],[198,40],[199,41],[200,42],[201,43],[202,44],[118,45],[117,2],[211,46],[203,47],[204,48],[205,49],[206,50],[207,51],[208,52],[209,53],[210,54],[63,2],[65,55],[119,2],[64,2],[43,2],[44,2],[9,2],[8,2],[2,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[3,2],[18,2],[4,2],[19,2],[23,2],[20,2],[21,2],[22,2],[24,2],[25,2],[26,2],[5,2],[27,2],[28,2],[29,2],[30,2],[6,2],[34,2],[31,2],[32,2],[33,2],[35,2],[7,2],[36,2],[41,2],[42,2],[37,2],[38,2],[39,2],[40,2],[1,2],[135,56],[145,57],[134,56],[155,58],[126,59],[125,60],[154,61],[148,62],[153,63],[128,64],[142,65],[127,66],[151,67],[123,68],[122,61],[152,69],[124,70],[129,71],[130,2],[133,71],[120,2],[156,72],[146,73],[137,74],[138,75],[140,76],[136,77],[139,78],[149,61],[131,79],[132,80],[141,81],[121,82],[144,73],[143,71],[147,2],[150,83],[45,2],[48,84],[49,85],[50,85],[51,85],[66,86],[67,86],[69,87],[70,86],[71,85],[72,88],[73,86],[80,89],[74,86],[68,2],[75,86],[76,86],[77,86],[78,86],[79,86],[58,2],[56,2],[57,2],[55,2],[54,2],[59,90],[52,85],[82,91],[83,91],[86,92],[84,91],[88,93],[85,91],[81,2],[96,94],[89,2],[90,95],[92,96],[93,97],[94,97],[95,2],[46,2],[102,98],[47,2],[97,2],[53,84],[60,99],[91,2],[98,86],[99,2],[100,2],[87,2],[62,100],[101,100],[61,2],[112,2],[222,2],[103,2],[104,2],[105,2],[108,101],[107,2],[109,102],[106,2],[110,2],[111,103]],"latestChangedDtsFile":"./shared/index.d.ts","version":"5.6.3"}
@@ -18,8 +18,14 @@ export async function findSurfaceExports(rootDir) {
18
18
  recordAction: surfaceTypesSourceFile.getInterfaceOrThrow("RecordAction").getType(),
19
19
  bulkRecordAction: surfaceTypesSourceFile.getInterfaceOrThrow("BulkRecordAction").getType(),
20
20
  recordWidget: surfaceTypesSourceFile.getInterfaceOrThrow("RecordWidget").getType(),
21
- transcriptSelectionAction: surfaceTypesSourceFile
22
- .getInterfaceOrThrow("TranscriptSelectionAction")
21
+ callRecordingInsightTextSelectionAction: surfaceTypesSourceFile
22
+ .getInterfaceOrThrow("CallRecordingInsightTextSelectionAction")
23
+ .getType(),
24
+ callRecordingSummaryTextSelectionAction: surfaceTypesSourceFile
25
+ .getInterfaceOrThrow("CallRecordingSummaryTextSelectionAction")
26
+ .getType(),
27
+ callRecordingTranscriptTextSelectionAction: surfaceTypesSourceFile
28
+ .getInterfaceOrThrow("CallRecordingTranscriptTextSelectionAction")
23
29
  .getType(),
24
30
  workflowBlock: surfaceTypesSourceFile.getInterfaceOrThrow("WorkflowBlock").getType(),
25
31
  };
@@ -6,7 +6,7 @@ export interface ${getSurfaceTypeName("recordAction")} {
6
6
  id: string
7
7
  label: string
8
8
  icon: string
9
- onTrigger: (record: {recordId: string; object: string}) => void
9
+ onTrigger: (record: {recordId: string; object: string}) => void | Promise<void>
10
10
  objects?: ObjectSlug | Array<ObjectSlug> | ((attributes: Array<Attribute>) => boolean)
11
11
  }
12
12
  `;
@@ -15,7 +15,7 @@ export interface ${getSurfaceTypeName("bulkRecordAction")} {
15
15
  id: string
16
16
  label: string
17
17
  icon: string
18
- onTrigger: (record: {recordIds: Array<string>; object: string}) => void
18
+ onTrigger: (record: {recordIds: Array<string>; object: string}) => void | Promise<void>
19
19
  objects?: ObjectSlug | Array<ObjectSlug> | ((attributes: Array<Attribute>) => boolean)
20
20
  }
21
21
  `;
@@ -26,12 +26,28 @@ export interface ${getSurfaceTypeName("recordWidget")} {
26
26
  objects?: ObjectSlug | Array<ObjectSlug> | ((attributes: Array<Attribute>) => boolean)
27
27
  }
28
28
  `;
29
- const transcriptSelectionActionTypeDefinition = `
30
- export interface ${getSurfaceTypeName("transcriptSelectionAction")} {
29
+ const callRecordingInsightTextSelectionActionTypeDefinition = `
30
+ export interface ${getSurfaceTypeName("callRecordingInsightTextSelectionAction")} {
31
31
  id: string
32
32
  label: string
33
33
  icon: string
34
- onTrigger: (selection: {transcript: Array<{speaker: string; text: string}>; url: string}) => void
34
+ onTrigger: (selection: {text: string; markdown: string}) => void | Promise<void>
35
+ }
36
+ `;
37
+ const callRecordingSummaryTextSelectionActionTypeDefinition = `
38
+ export interface ${getSurfaceTypeName("callRecordingSummaryTextSelectionAction")} {
39
+ id: string
40
+ label: string
41
+ icon: string
42
+ onTrigger: (selection: {text: string; markdown: string}) => void | Promise<void>
43
+ }
44
+ `;
45
+ const callRecordingTranscriptTextSelectionActionTypeDefinition = `
46
+ export interface ${getSurfaceTypeName("callRecordingTranscriptTextSelectionAction")} {
47
+ id: string
48
+ label: string
49
+ icon: string
50
+ onTrigger: (selection: {transcript: Array<{speaker: string; text: string}>; url: string}) => void | Promise<void>
35
51
  }
36
52
  `;
37
53
  const workflowBlockTypeDefinition = `
@@ -48,7 +64,11 @@ ${bulkRecordActionTypeDefinition}
48
64
 
49
65
  ${recordWidgetTypeDefinition}
50
66
 
51
- ${transcriptSelectionActionTypeDefinition}
67
+ ${callRecordingInsightTextSelectionActionTypeDefinition}
68
+
69
+ ${callRecordingSummaryTextSelectionActionTypeDefinition}
70
+
71
+ ${callRecordingTranscriptTextSelectionActionTypeDefinition}
52
72
 
53
73
  ${workflowBlockTypeDefinition}
54
74
  `;
@@ -2,6 +2,8 @@ export const SURFACE_NAMES = [
2
2
  "recordAction",
3
3
  "bulkRecordAction",
4
4
  "recordWidget",
5
- "transcriptSelectionAction",
5
+ "callRecordingInsightTextSelectionAction",
6
+ "callRecordingSummaryTextSelectionAction",
7
+ "callRecordingTranscriptTextSelectionAction",
6
8
  "workflowBlock",
7
9
  ];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "attio",
3
- "version": "0.0.1-experimental.20250716.1",
3
+ "version": "0.0.1-experimental.20250718",
4
4
  "type": "module",
5
5
  "files": [
6
6
  "lib",