@hiver/connector-agent 4.9.0-oneClickGen-beta.1 → 4.9.0-oneClickGen-beta.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/app/connector-cards.d.ts.map +1 -1
- package/constants/storage-keys.d.ts +2 -0
- package/constants/storage-keys.d.ts.map +1 -0
- package/features/write-form/api/getFormDefaultValues.d.ts +180 -0
- package/features/write-form/api/getFormDefaultValues.d.ts.map +1 -0
- package/features/write-form/api/putFormDefaults.d.ts +2 -1
- package/features/write-form/api/putFormDefaults.d.ts.map +1 -1
- package/features/write-form/components/auto-fill/button.d.ts +9 -0
- package/features/write-form/components/auto-fill/button.d.ts.map +1 -0
- package/features/write-form/components/auto-fill/prompt.d.ts.map +1 -1
- package/features/write-form/components/write-form/index.d.ts +2 -1
- package/features/write-form/components/write-form/index.d.ts.map +1 -1
- package/features/write-form/constants/api.d.ts +1 -0
- package/features/write-form/constants/api.d.ts.map +1 -1
- package/index.es.js +6990 -6897
- package/index.umd.js +273 -273
- package/package.json +1 -1
- package/testing/mocks/handlers/write-capability.d.ts.map +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"connector-cards.d.ts","sourceRoot":"","sources":["../../src/app/connector-cards.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAkF,MAAM,OAAO,CAAC;
|
|
1
|
+
{"version":3,"file":"connector-cards.d.ts","sourceRoot":"","sources":["../../src/app/connector-cards.tsx"],"names":[],"mappings":"AAAA,OAAO,EAAE,EAAE,EAAkF,MAAM,OAAO,CAAC;AAiG3G,UAAU,SAAS;IACjB,OAAO,CAAC,EAAE,OAAO,CAAC;CACnB;AAED,eAAO,MAAM,cAAc,EAAE,EAAE,CAAC,SAAS,CAukBxC,CAAC"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"storage-keys.d.ts","sourceRoot":"","sources":["../../src/constants/storage-keys.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,2BAA2B,oCAAoC,CAAC"}
|
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
export interface GetFormDefaultProps {
|
|
2
|
+
formId: string | number;
|
|
3
|
+
conversationId?: number;
|
|
4
|
+
}
|
|
5
|
+
export interface GetFormDefaultQueryProps extends GetFormDefaultProps {
|
|
6
|
+
enabled: boolean;
|
|
7
|
+
fetchOnMount?: boolean;
|
|
8
|
+
}
|
|
9
|
+
export declare const fetchFormDefaultValues: ({ formId, conversationId }: GetFormDefaultProps) => Promise<Record<string, unknown>>;
|
|
10
|
+
export declare const getFormDefaultValuesQuery: ({ formId, conversationId }: GetFormDefaultProps) => (string | number | undefined)[];
|
|
11
|
+
export declare const useGetFormDefaultValuesQuery: ({ formId, conversationId, enabled, fetchOnMount }: GetFormDefaultQueryProps) => {
|
|
12
|
+
data: Record<string, unknown>;
|
|
13
|
+
error: Error;
|
|
14
|
+
isError: true;
|
|
15
|
+
isPending: false;
|
|
16
|
+
isLoading: false;
|
|
17
|
+
isLoadingError: false;
|
|
18
|
+
isRefetchError: true;
|
|
19
|
+
isSuccess: false;
|
|
20
|
+
isPlaceholderData: false;
|
|
21
|
+
status: "error";
|
|
22
|
+
dataUpdatedAt: number;
|
|
23
|
+
errorUpdatedAt: number;
|
|
24
|
+
failureCount: number;
|
|
25
|
+
failureReason: Error | null;
|
|
26
|
+
errorUpdateCount: number;
|
|
27
|
+
isFetched: boolean;
|
|
28
|
+
isFetchedAfterMount: boolean;
|
|
29
|
+
isFetching: boolean;
|
|
30
|
+
isInitialLoading: boolean;
|
|
31
|
+
isPaused: boolean;
|
|
32
|
+
isRefetching: boolean;
|
|
33
|
+
isStale: boolean;
|
|
34
|
+
refetch: (options?: import('@tanstack/query-core').RefetchOptions) => Promise<import('@tanstack/query-core').QueryObserverResult<Record<string, unknown>, Error>>;
|
|
35
|
+
fetchStatus: import('@tanstack/query-core').FetchStatus;
|
|
36
|
+
promise: Promise<Record<string, unknown>>;
|
|
37
|
+
enabledRef: import('react').MutableRefObject<boolean>;
|
|
38
|
+
isNudgeRequired: boolean | undefined;
|
|
39
|
+
} | {
|
|
40
|
+
data: Record<string, unknown>;
|
|
41
|
+
error: null;
|
|
42
|
+
isError: false;
|
|
43
|
+
isPending: false;
|
|
44
|
+
isLoading: false;
|
|
45
|
+
isLoadingError: false;
|
|
46
|
+
isRefetchError: false;
|
|
47
|
+
isSuccess: true;
|
|
48
|
+
isPlaceholderData: false;
|
|
49
|
+
status: "success";
|
|
50
|
+
dataUpdatedAt: number;
|
|
51
|
+
errorUpdatedAt: number;
|
|
52
|
+
failureCount: number;
|
|
53
|
+
failureReason: Error | null;
|
|
54
|
+
errorUpdateCount: number;
|
|
55
|
+
isFetched: boolean;
|
|
56
|
+
isFetchedAfterMount: boolean;
|
|
57
|
+
isFetching: boolean;
|
|
58
|
+
isInitialLoading: boolean;
|
|
59
|
+
isPaused: boolean;
|
|
60
|
+
isRefetching: boolean;
|
|
61
|
+
isStale: boolean;
|
|
62
|
+
refetch: (options?: import('@tanstack/query-core').RefetchOptions) => Promise<import('@tanstack/query-core').QueryObserverResult<Record<string, unknown>, Error>>;
|
|
63
|
+
fetchStatus: import('@tanstack/query-core').FetchStatus;
|
|
64
|
+
promise: Promise<Record<string, unknown>>;
|
|
65
|
+
enabledRef: import('react').MutableRefObject<boolean>;
|
|
66
|
+
isNudgeRequired: boolean | undefined;
|
|
67
|
+
} | {
|
|
68
|
+
data: undefined;
|
|
69
|
+
error: Error;
|
|
70
|
+
isError: true;
|
|
71
|
+
isPending: false;
|
|
72
|
+
isLoading: false;
|
|
73
|
+
isLoadingError: true;
|
|
74
|
+
isRefetchError: false;
|
|
75
|
+
isSuccess: false;
|
|
76
|
+
isPlaceholderData: false;
|
|
77
|
+
status: "error";
|
|
78
|
+
dataUpdatedAt: number;
|
|
79
|
+
errorUpdatedAt: number;
|
|
80
|
+
failureCount: number;
|
|
81
|
+
failureReason: Error | null;
|
|
82
|
+
errorUpdateCount: number;
|
|
83
|
+
isFetched: boolean;
|
|
84
|
+
isFetchedAfterMount: boolean;
|
|
85
|
+
isFetching: boolean;
|
|
86
|
+
isInitialLoading: boolean;
|
|
87
|
+
isPaused: boolean;
|
|
88
|
+
isRefetching: boolean;
|
|
89
|
+
isStale: boolean;
|
|
90
|
+
refetch: (options?: import('@tanstack/query-core').RefetchOptions) => Promise<import('@tanstack/query-core').QueryObserverResult<Record<string, unknown>, Error>>;
|
|
91
|
+
fetchStatus: import('@tanstack/query-core').FetchStatus;
|
|
92
|
+
promise: Promise<Record<string, unknown>>;
|
|
93
|
+
enabledRef: import('react').MutableRefObject<boolean>;
|
|
94
|
+
isNudgeRequired: boolean | undefined;
|
|
95
|
+
} | {
|
|
96
|
+
data: undefined;
|
|
97
|
+
error: null;
|
|
98
|
+
isError: false;
|
|
99
|
+
isPending: true;
|
|
100
|
+
isLoading: true;
|
|
101
|
+
isLoadingError: false;
|
|
102
|
+
isRefetchError: false;
|
|
103
|
+
isSuccess: false;
|
|
104
|
+
isPlaceholderData: false;
|
|
105
|
+
status: "pending";
|
|
106
|
+
dataUpdatedAt: number;
|
|
107
|
+
errorUpdatedAt: number;
|
|
108
|
+
failureCount: number;
|
|
109
|
+
failureReason: Error | null;
|
|
110
|
+
errorUpdateCount: number;
|
|
111
|
+
isFetched: boolean;
|
|
112
|
+
isFetchedAfterMount: boolean;
|
|
113
|
+
isFetching: boolean;
|
|
114
|
+
isInitialLoading: boolean;
|
|
115
|
+
isPaused: boolean;
|
|
116
|
+
isRefetching: boolean;
|
|
117
|
+
isStale: boolean;
|
|
118
|
+
refetch: (options?: import('@tanstack/query-core').RefetchOptions) => Promise<import('@tanstack/query-core').QueryObserverResult<Record<string, unknown>, Error>>;
|
|
119
|
+
fetchStatus: import('@tanstack/query-core').FetchStatus;
|
|
120
|
+
promise: Promise<Record<string, unknown>>;
|
|
121
|
+
enabledRef: import('react').MutableRefObject<boolean>;
|
|
122
|
+
isNudgeRequired: boolean | undefined;
|
|
123
|
+
} | {
|
|
124
|
+
data: undefined;
|
|
125
|
+
error: null;
|
|
126
|
+
isError: false;
|
|
127
|
+
isPending: true;
|
|
128
|
+
isLoadingError: false;
|
|
129
|
+
isRefetchError: false;
|
|
130
|
+
isSuccess: false;
|
|
131
|
+
isPlaceholderData: false;
|
|
132
|
+
status: "pending";
|
|
133
|
+
dataUpdatedAt: number;
|
|
134
|
+
errorUpdatedAt: number;
|
|
135
|
+
failureCount: number;
|
|
136
|
+
failureReason: Error | null;
|
|
137
|
+
errorUpdateCount: number;
|
|
138
|
+
isFetched: boolean;
|
|
139
|
+
isFetchedAfterMount: boolean;
|
|
140
|
+
isFetching: boolean;
|
|
141
|
+
isLoading: boolean;
|
|
142
|
+
isInitialLoading: boolean;
|
|
143
|
+
isPaused: boolean;
|
|
144
|
+
isRefetching: boolean;
|
|
145
|
+
isStale: boolean;
|
|
146
|
+
refetch: (options?: import('@tanstack/query-core').RefetchOptions) => Promise<import('@tanstack/query-core').QueryObserverResult<Record<string, unknown>, Error>>;
|
|
147
|
+
fetchStatus: import('@tanstack/query-core').FetchStatus;
|
|
148
|
+
promise: Promise<Record<string, unknown>>;
|
|
149
|
+
enabledRef: import('react').MutableRefObject<boolean>;
|
|
150
|
+
isNudgeRequired: boolean | undefined;
|
|
151
|
+
} | {
|
|
152
|
+
data: Record<string, unknown>;
|
|
153
|
+
isError: false;
|
|
154
|
+
error: null;
|
|
155
|
+
isPending: false;
|
|
156
|
+
isLoading: false;
|
|
157
|
+
isLoadingError: false;
|
|
158
|
+
isRefetchError: false;
|
|
159
|
+
isSuccess: true;
|
|
160
|
+
isPlaceholderData: true;
|
|
161
|
+
status: "success";
|
|
162
|
+
dataUpdatedAt: number;
|
|
163
|
+
errorUpdatedAt: number;
|
|
164
|
+
failureCount: number;
|
|
165
|
+
failureReason: Error | null;
|
|
166
|
+
errorUpdateCount: number;
|
|
167
|
+
isFetched: boolean;
|
|
168
|
+
isFetchedAfterMount: boolean;
|
|
169
|
+
isFetching: boolean;
|
|
170
|
+
isInitialLoading: boolean;
|
|
171
|
+
isPaused: boolean;
|
|
172
|
+
isRefetching: boolean;
|
|
173
|
+
isStale: boolean;
|
|
174
|
+
refetch: (options?: import('@tanstack/query-core').RefetchOptions) => Promise<import('@tanstack/query-core').QueryObserverResult<Record<string, unknown>, Error>>;
|
|
175
|
+
fetchStatus: import('@tanstack/query-core').FetchStatus;
|
|
176
|
+
promise: Promise<Record<string, unknown>>;
|
|
177
|
+
enabledRef: import('react').MutableRefObject<boolean>;
|
|
178
|
+
isNudgeRequired: boolean | undefined;
|
|
179
|
+
};
|
|
180
|
+
//# sourceMappingURL=getFormDefaultValues.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getFormDefaultValues.d.ts","sourceRoot":"","sources":["../../../../src/features/write-form/api/getFormDefaultValues.ts"],"names":[],"mappings":"AAUA,MAAM,WAAW,mBAAmB;IAClC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;IACxB,cAAc,CAAC,EAAE,MAAM,CAAC;CACzB;AAED,MAAM,WAAW,wBAAyB,SAAQ,mBAAmB;IACnE,OAAO,EAAE,OAAO,CAAC;IACjB,YAAY,CAAC,EAAE,OAAO,CAAC;CACxB;AAOD,eAAO,MAAM,sBAAsB,+BAGhC,mBAAmB,KAAG,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAiBvD,CAAC;AAEF,eAAO,MAAM,yBAAyB,+BAAgC,mBAAmB,oCAMxF,CAAC;AAEF,eAAO,MAAM,4BAA4B,sDAKtC,wBAAwB;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;CAwB1B,CAAC"}
|
|
@@ -3,9 +3,10 @@ export interface PutFormDefaultProps {
|
|
|
3
3
|
data: Record<string, unknown>;
|
|
4
4
|
}
|
|
5
5
|
export type PutFormDefaultMutationProps = Omit<PutFormDefaultProps, 'data'> & {
|
|
6
|
+
conversationId?: number;
|
|
6
7
|
onSuccess?: () => void;
|
|
7
8
|
onError?: () => void;
|
|
8
9
|
};
|
|
9
10
|
export declare const putFormDefaults: ({ formId, data }: PutFormDefaultProps) => Promise<Record<string, unknown>>;
|
|
10
|
-
export declare const usePutFormDefaultsMutation: ({ formId, onSuccess, onError }: PutFormDefaultMutationProps) => import('@tanstack/react-query').UseMutationResult<Record<string, unknown>, Error, Record<string, unknown>, unknown>;
|
|
11
|
+
export declare const usePutFormDefaultsMutation: ({ formId, conversationId, onSuccess, onError }: PutFormDefaultMutationProps) => import('@tanstack/react-query').UseMutationResult<Record<string, unknown>, Error, Record<string, unknown>, unknown>;
|
|
11
12
|
//# sourceMappingURL=putFormDefaults.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"putFormDefaults.d.ts","sourceRoot":"","sources":["../../../../src/features/write-form/api/putFormDefaults.ts"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"putFormDefaults.d.ts","sourceRoot":"","sources":["../../../../src/features/write-form/api/putFormDefaults.ts"],"names":[],"mappings":"AAUA,MAAM,WAAW,mBAAmB;IAClC,MAAM,EAAE,MAAM,GAAG,MAAM,CAAC;IACxB,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CAC/B;AAED,MAAM,MAAM,2BAA2B,GAAG,IAAI,CAAC,mBAAmB,EAAE,MAAM,CAAC,GAAG;IAC5E,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,SAAS,CAAC,EAAE,MAAM,IAAI,CAAC;IACvB,OAAO,CAAC,EAAE,MAAM,IAAI,CAAC;CACtB,CAAC;AAOF,eAAO,MAAM,eAAe,qBAA4B,mBAAmB,KAAG,OAAO,CAAC,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAkB5G,CAAC;AAEF,eAAO,MAAM,0BAA0B,mDAKpC,2BAA2B,wHAW7B,CAAC"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
type AutoFillButtonProps = {
|
|
2
|
+
enabled: boolean;
|
|
3
|
+
formId?: string;
|
|
4
|
+
conversationId?: number;
|
|
5
|
+
setMapFormOpen: (open: boolean) => void;
|
|
6
|
+
};
|
|
7
|
+
export declare const AutoFillButton: ({ formId, enabled, conversationId, setMapFormOpen }: AutoFillButtonProps) => import("react/jsx-runtime").JSX.Element | null;
|
|
8
|
+
export {};
|
|
9
|
+
//# sourceMappingURL=button.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"button.d.ts","sourceRoot":"","sources":["../../../../../src/features/write-form/components/auto-fill/button.tsx"],"names":[],"mappings":"AAKA,KAAK,mBAAmB,GAAG;IACzB,OAAO,EAAE,OAAO,CAAC;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,cAAc,EAAE,CAAC,IAAI,EAAE,OAAO,KAAK,IAAI,CAAC;CACzC,CAAC;AAEF,eAAO,MAAM,cAAc,wDAAyD,mBAAmB,mDAsBtG,CAAC"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"prompt.d.ts","sourceRoot":"","sources":["../../../../../src/features/write-form/components/auto-fill/prompt.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"prompt.d.ts","sourceRoot":"","sources":["../../../../../src/features/write-form/components/auto-fill/prompt.tsx"],"names":[],"mappings":"AAUA,MAAM,MAAM,mBAAmB,GAAG;IAChC,cAAc,EAAE,MAAM,IAAI,CAAC;CAC5B,CAAC;AAEF,eAAO,MAAM,cAAc,uBAAwB,mBAAmB,mDAgDrE,CAAC"}
|
|
@@ -11,7 +11,8 @@ interface WriteFormProps {
|
|
|
11
11
|
onCreateSuccess: () => void;
|
|
12
12
|
setMetaData: React.Dispatch<React.SetStateAction<CreateObjectMetaData>>;
|
|
13
13
|
setMapFormOpen?: React.Dispatch<React.SetStateAction<boolean>>;
|
|
14
|
+
setCreateFormId?: React.Dispatch<React.SetStateAction<string | undefined>>;
|
|
14
15
|
}
|
|
15
|
-
declare const WriteForm: ({ metaData, isEdit, defaultOption, connectors, mapFormOpen, onClose, onCreateSuccess, setMetaData, setMapFormOpen }: WriteFormProps) => import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
declare const WriteForm: ({ metaData, isEdit, defaultOption, connectors, mapFormOpen, onClose, onCreateSuccess, setMetaData, setMapFormOpen, setCreateFormId }: WriteFormProps) => import("react/jsx-runtime").JSX.Element;
|
|
16
17
|
export default WriteForm;
|
|
17
18
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/features/write-form/components/write-form/index.tsx"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../src/features/write-form/components/write-form/index.tsx"],"names":[],"mappings":"AAkDA,OAAO,KAAK,EAA+B,UAAU,EAAE,MAAM,eAAe,CAAC;AAwB7E,OAAO,KAAK,EAAE,oBAAoB,EAAE,MAAM,eAAe,CAAC;AAM1D,eAAO,MAAM,iBAAiB,wCAAwC,CAAC;AAEvE,UAAU,cAAc;IACtB,QAAQ,EAAE,oBAAoB,CAAC;IAC/B,MAAM,CAAC,EAAE,OAAO,CAAC;IACjB,aAAa,CAAC,EAAE,UAAU,GAAG,IAAI,CAAC;IAClC,UAAU,EAAE,MAAM,EAAE,CAAC;IACrB,WAAW,CAAC,EAAE,OAAO,CAAC;IACtB,OAAO,EAAE,MAAM,IAAI,CAAC;IACpB,eAAe,EAAE,MAAM,IAAI,CAAC;IAC5B,WAAW,EAAE,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,cAAc,CAAC,oBAAoB,CAAC,CAAC,CAAC;IACxE,cAAc,CAAC,EAAE,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC,CAAC;IAC/D,eAAe,CAAC,EAAE,KAAK,CAAC,QAAQ,CAAC,KAAK,CAAC,cAAc,CAAC,MAAM,GAAG,SAAS,CAAC,CAAC,CAAC;CAC5E;AACD,QAAA,MAAM,SAAS,yIAWZ,cAAc,4CA4jBhB,CAAC;AAEF,eAAe,SAAS,CAAC"}
|
|
@@ -7,4 +7,5 @@ export declare const CREATE_FORM: string;
|
|
|
7
7
|
export declare const FETCH_CURRENT_RESOURCE_DETAILS_API: string;
|
|
8
8
|
export declare const CUSTOM_FIELDS_API_PATH: string;
|
|
9
9
|
export declare const FORM_DEFAULTS_API = "/v1/api/connectors/forms/:formId/defaults";
|
|
10
|
+
export declare const FORM_DEFAULT_VALUES_API = "/v1/api/connectors/forms/:formId/default-values";
|
|
10
11
|
//# sourceMappingURL=api.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../../../src/features/write-form/constants/api.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,QAAQ,YAAY,CAAC;AAClC,eAAO,MAAM,qBAAqB,EAAE,MAA4C,CAAC;AACjF,eAAO,MAAM,eAAe,EAAE,MAAkD,CAAC;AACjF,eAAO,MAAM,aAAa,EAAE,MAAgD,CAAC;AAC7E,eAAO,MAAM,gBAAgB,EAAE,MAAmD,CAAC;AACnF,eAAO,MAAM,WAAW,EAAE,MAA8C,CAAC;AACzE,eAAO,MAAM,kCAAkC,EAAE,MAAoD,CAAC;AACtG,eAAO,MAAM,sBAAsB,EAAE,MAAuE,CAAC;AAC7G,eAAO,MAAM,iBAAiB,8CAAkD,CAAC"}
|
|
1
|
+
{"version":3,"file":"api.d.ts","sourceRoot":"","sources":["../../../../src/features/write-form/constants/api.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,QAAQ,YAAY,CAAC;AAClC,eAAO,MAAM,qBAAqB,EAAE,MAA4C,CAAC;AACjF,eAAO,MAAM,eAAe,EAAE,MAAkD,CAAC;AACjF,eAAO,MAAM,aAAa,EAAE,MAAgD,CAAC;AAC7E,eAAO,MAAM,gBAAgB,EAAE,MAAmD,CAAC;AACnF,eAAO,MAAM,WAAW,EAAE,MAA8C,CAAC;AACzE,eAAO,MAAM,kCAAkC,EAAE,MAAoD,CAAC;AACtG,eAAO,MAAM,sBAAsB,EAAE,MAAuE,CAAC;AAC7G,eAAO,MAAM,iBAAiB,8CAAkD,CAAC;AACjF,eAAO,MAAM,uBAAuB,oDAAwD,CAAC"}
|