@weave-apps/sdk 0.9.0 → 0.11.0

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.
Files changed (37) hide show
  1. package/dist/WeaveAPIClient.d.ts +49 -0
  2. package/dist/WeaveAPIClient.d.ts.map +1 -1
  3. package/dist/WeaveDOMAPI.d.ts +66 -0
  4. package/dist/WeaveDOMAPI.d.ts.map +1 -1
  5. package/dist/WeaveDOMAPI.js +51 -0
  6. package/dist/apis/api-mono/services/interfaces/WorkflowsTriggersWorkflowCompanyIdPostPost.d.ts +224 -0
  7. package/dist/apis/api-mono/services/interfaces/WorkflowsTriggersWorkflowCompanyIdPostPost.d.ts.map +1 -0
  8. package/dist/apis/api-mono/services/interfaces/WorkflowsTriggersWorkflowCompanyIdPostPost.js +66 -0
  9. package/dist/app-sdk/src/WeaveAPIClient.d.ts +370 -0
  10. package/dist/app-sdk/src/WeaveAPIClient.d.ts.map +1 -0
  11. package/dist/app-sdk/src/WeaveAPIClient.js +361 -0
  12. package/dist/app-sdk/src/WeaveAppInstanceAPI.d.ts +237 -0
  13. package/dist/app-sdk/src/WeaveAppInstanceAPI.d.ts.map +1 -0
  14. package/dist/app-sdk/src/WeaveAppInstanceAPI.js +395 -0
  15. package/dist/app-sdk/src/WeaveBackgroundAPI.d.ts +81 -0
  16. package/dist/app-sdk/src/WeaveBackgroundAPI.d.ts.map +1 -0
  17. package/dist/app-sdk/src/WeaveBackgroundAPI.js +165 -0
  18. package/dist/app-sdk/src/WeaveBaseApp.d.ts +318 -0
  19. package/dist/app-sdk/src/WeaveBaseApp.d.ts.map +1 -0
  20. package/dist/app-sdk/src/WeaveBaseApp.js +434 -0
  21. package/dist/app-sdk/src/WeaveCronAPI.d.ts +68 -0
  22. package/dist/app-sdk/src/WeaveCronAPI.d.ts.map +1 -0
  23. package/dist/app-sdk/src/WeaveCronAPI.js +172 -0
  24. package/dist/app-sdk/src/WeaveDOMAPI.d.ts +593 -0
  25. package/dist/app-sdk/src/WeaveDOMAPI.d.ts.map +1 -0
  26. package/dist/app-sdk/src/WeaveDOMAPI.js +774 -0
  27. package/dist/app-sdk/src/global.d.ts +25 -0
  28. package/dist/app-sdk/src/global.d.ts.map +1 -0
  29. package/dist/app-sdk/src/global.js +23 -0
  30. package/dist/app-sdk/src/index.d.ts +14 -0
  31. package/dist/app-sdk/src/index.d.ts.map +1 -0
  32. package/dist/app-sdk/src/index.js +14 -0
  33. package/dist/index.d.ts +1 -1
  34. package/dist/index.d.ts.map +1 -1
  35. package/dist/index.js +1 -1
  36. package/package.json +3 -3
  37. package/templates/WEAVE_SPEC.md +417 -1
@@ -0,0 +1,370 @@
1
+ /**
2
+ * Weave API Client
3
+ *
4
+ * Client-side API for iframe apps to interact with the Weave backend
5
+ * through a secure proxy in the sidebar.
6
+ *
7
+ * Apps can call AI services and manage their own app data.
8
+ */
9
+ /**
10
+ * AI Chat Request
11
+ */
12
+ export interface AIChatRequest {
13
+ /** User's input prompt */
14
+ prompt: string;
15
+ /** Optional context for the AI */
16
+ context?: string;
17
+ /** Optional flag to disable JSON extraction */
18
+ disableJsonExtraction?: boolean;
19
+ }
20
+ /**
21
+ * AI Chat Response
22
+ */
23
+ export interface AIChatResponse {
24
+ /** AI chat response content */
25
+ response: string;
26
+ }
27
+ /**
28
+ * App Data structure
29
+ */
30
+ export interface AppData {
31
+ _id: string;
32
+ /** Reference to the app component this data belongs to */
33
+ appId: string;
34
+ /** Company that owns this app data */
35
+ companyId: string;
36
+ /** User that owns this specific app data instance */
37
+ userId: string;
38
+ /** Key for organizing data within an app namespace */
39
+ dataKey: string;
40
+ /** Unstructured data - apps determine the content structure */
41
+ data: Record<string, any>;
42
+ createdAt: Date;
43
+ updatedAt: Date;
44
+ createdBy: string;
45
+ }
46
+ /**
47
+ * Create App Data Request
48
+ */
49
+ export interface CreateAppDataRequest {
50
+ /** Key for organizing data within an app namespace */
51
+ dataKey: string;
52
+ /** Unstructured data - apps determine the content structure */
53
+ data: Record<string, any>;
54
+ }
55
+ /**
56
+ * Update App Data Request
57
+ */
58
+ export interface UpdateAppDataRequest {
59
+ /** Key for organizing data within an app namespace */
60
+ dataKey: string;
61
+ /** Unstructured data - apps determine the content structure */
62
+ data: Record<string, any>;
63
+ }
64
+ /**
65
+ * Pagination metadata
66
+ */
67
+ export interface PaginationMeta {
68
+ /** Current offset */
69
+ offset: number;
70
+ /** Number of items per page */
71
+ limit: number;
72
+ /** Total number of items available */
73
+ totalResultCount: number;
74
+ }
75
+ /**
76
+ * Paginated response wrapper
77
+ */
78
+ export interface PaginatedResponse<T> {
79
+ /** Array of data items */
80
+ data: T[];
81
+ /** Pagination metadata */
82
+ meta: PaginationMeta;
83
+ }
84
+ export interface FormDataScopeOptions {
85
+ /**
86
+ * Number of levels to traverse up from the current location before scoping results.
87
+ * 0 = current location, 1 = parent, 2 = grandparent, etc.
88
+ */
89
+ locationLevelsUp?: number;
90
+ /**
91
+ * If true, ignores locationLevelsUp and scopes from the root location.
92
+ */
93
+ locationIncludeToRoot?: boolean;
94
+ }
95
+ export interface CompanyMembersQueryOptions extends FormDataScopeOptions {
96
+ /**
97
+ * Optional target type. Defaults to app context when omitted.
98
+ */
99
+ targetType?: 'app' | 'form' | 'workflow' | 'trigger' | 'startupUrlGroup';
100
+ /**
101
+ * Optional target identifier. Defaults to current app ID when omitted.
102
+ */
103
+ targetId?: string;
104
+ offset?: number;
105
+ limit?: number;
106
+ search?: string;
107
+ role?: string;
108
+ status?: 'active' | 'inactive';
109
+ }
110
+ export interface FormSubmissionFieldOption {
111
+ label: string;
112
+ value: string;
113
+ }
114
+ export interface FormSubmissionCondition {
115
+ fieldId: string;
116
+ operator: string;
117
+ value?: string;
118
+ }
119
+ export interface FormSubmissionResponseEntry {
120
+ label: string;
121
+ type: string;
122
+ value: string | boolean | null;
123
+ options?: FormSubmissionFieldOption[];
124
+ }
125
+ export interface FormSubmissionDefinitionSection {
126
+ sectionId: string;
127
+ title?: string;
128
+ description?: string;
129
+ order: number;
130
+ condition?: FormSubmissionCondition;
131
+ }
132
+ export interface FormSubmissionDefinitionField {
133
+ fieldId: string;
134
+ label: string;
135
+ type: string;
136
+ required: boolean;
137
+ placeholder?: string;
138
+ helpText?: string;
139
+ options?: FormSubmissionFieldOption[];
140
+ sectionId?: string;
141
+ sectionTitle?: string;
142
+ sectionDescription?: string;
143
+ condition?: FormSubmissionCondition;
144
+ }
145
+ export interface FormSubmissionDefinitionPayload {
146
+ formId: string;
147
+ description: string;
148
+ sections: FormSubmissionDefinitionSection[];
149
+ fields: FormSubmissionDefinitionField[];
150
+ }
151
+ export interface FormSubmissionDataPayload {
152
+ formName: string;
153
+ formDescription: string;
154
+ formCategory: string;
155
+ submittedAt: string;
156
+ responses: Record<string, FormSubmissionResponseEntry>;
157
+ formDefinition: FormSubmissionDefinitionPayload;
158
+ }
159
+ /**
160
+ * Weave API Client
161
+ * Provides methods for iframe apps to interact with Weave backend
162
+ */
163
+ export declare class WeaveAPIClient {
164
+ private pendingRequests;
165
+ private messageListener;
166
+ private requestCounter;
167
+ private timeout;
168
+ private appId;
169
+ constructor();
170
+ /**
171
+ * Set the app ID for this client
172
+ * Called automatically by WeaveBaseApp
173
+ */
174
+ setAppId(appId: string): void;
175
+ /**
176
+ * Initialize the API client and start listening for responses
177
+ */
178
+ private initialize;
179
+ /**
180
+ * Cleanup
181
+ */
182
+ destroy(): void;
183
+ /**
184
+ * Handle response from sidebar
185
+ */
186
+ private handleResponse;
187
+ /**
188
+ * Send request to sidebar
189
+ */
190
+ private sendRequest;
191
+ /**
192
+ * Send a chat message to the AI service
193
+ *
194
+ * Note: App ID is automatically injected by the APIBridge.
195
+ * You only need to provide the prompt and optional context.
196
+ *
197
+ * @example
198
+ * ```javascript
199
+ * const response = await weaveAPI.ai.chat({
200
+ * prompt: 'What is the capital of France?',
201
+ * context: 'User is learning geography'
202
+ * });
203
+ * ```
204
+ */
205
+ ai: {
206
+ chat: (request: AIChatRequest) => Promise<AIChatResponse>;
207
+ };
208
+ /**
209
+ * App Data operations - CRUD for app-specific data storage
210
+ */
211
+ appData: {
212
+ /**
213
+ * Get all app data for the current company (paginated)
214
+ *
215
+ * Returns a paginated response with data and metadata.
216
+ * Default limit is 25 items. For apps with large datasets (500-5000+ rows),
217
+ * use pagination to avoid performance issues.
218
+ *
219
+ * @example
220
+ * ```javascript
221
+ * // Get first page (default: 25 items)
222
+ * const response = await weaveAPI.appData.getAll();
223
+ *
224
+ * // Access the array of items
225
+ * const items = response.data;
226
+ * items.forEach(item => {
227
+ * });
228
+ * ```
229
+ */
230
+ getAll: () => Promise<PaginatedResponse<AppData>>;
231
+ /**
232
+ * Create new app data
233
+ *
234
+ * Note: App ID is automatically injected by the APIBridge.
235
+ *
236
+ * @example
237
+ * ```javascript
238
+ * const newData = await weaveAPI.appData.create({
239
+ * dataKey: 'user-preferences',
240
+ * data: { theme: 'dark', language: 'en' }
241
+ * });
242
+ * ```
243
+ */
244
+ create: (request: CreateAppDataRequest) => Promise<AppData>;
245
+ /**
246
+ * Get specific app data by ID
247
+ *
248
+ * @example
249
+ * ```javascript
250
+ * const data = await weaveAPI.appData.get('data-id-123');
251
+ * ```
252
+ */
253
+ get: (appDataId: string) => Promise<AppData>;
254
+ /**
255
+ * Update existing app data
256
+ *
257
+ * @example
258
+ * ```javascript
259
+ * const updated = await weaveAPI.appData.update('data-id-123', {
260
+ * data: { theme: 'light' }
261
+ * });
262
+ * ```
263
+ */
264
+ update: (appDataId: string, request: UpdateAppDataRequest) => Promise<AppData>;
265
+ /**
266
+ * Delete app data
267
+ *
268
+ * @example
269
+ * ```javascript
270
+ * await weaveAPI.appData.delete('data-id-123');
271
+ * ```
272
+ */
273
+ delete: (appDataId: string) => Promise<void>;
274
+ };
275
+ /**
276
+ * Company member operations for app/user discovery scenarios.
277
+ */
278
+ companyMembers: {
279
+ /**
280
+ * Get company members scoped by current user's location (supports ancestor traversal).
281
+ *
282
+ * Defaults to current app context (`targetType: 'app'`, `targetId` from app ID).
283
+ */
284
+ getAll: (options?: CompanyMembersQueryOptions) => Promise<PaginatedResponse<any>>;
285
+ };
286
+ /**
287
+ * Forms API
288
+ *
289
+ * Methods for fetching company forms and submitting form data.
290
+ */
291
+ forms: {
292
+ /**
293
+ * Get all forms for the company
294
+ *
295
+ * @example
296
+ * ```javascript
297
+ * const response = await weaveAPI.forms.getAll();
298
+ * console.log(response.data); // Array of forms
299
+ * ```
300
+ */
301
+ getAll: () => Promise<PaginatedResponse<any>>;
302
+ /**
303
+ * Get a specific form by ID
304
+ *
305
+ * @example
306
+ * ```javascript
307
+ * const form = await weaveAPI.forms.get('form-id-123');
308
+ * console.log(form.name, form.fields);
309
+ * ```
310
+ */
311
+ get: (formId: string) => Promise<any>;
312
+ /**
313
+ * Get all submissions (app data) for a specific form
314
+ *
315
+ * @example
316
+ * ```javascript
317
+ * const response = await weaveAPI.forms.getFormData('form-id-123');
318
+ * console.log(response.data); // Array of form submissions
319
+ * ```
320
+ */
321
+ getFormData: (formId: string, scopeOptions?: FormDataScopeOptions) => Promise<PaginatedResponse<AppData>>;
322
+ /**
323
+ * Submit form data
324
+ * Creates app data with targetType: 'form' and targetId: formId
325
+ *
326
+ * @example
327
+ * ```javascript
328
+ * await weaveAPI.forms.submitFormData('form-id-123', {
329
+ * dataKey: 'form_submission',
330
+ * data: {
331
+ * formName: 'User Signup',
332
+ * responses: { field1: 'value1', field2: 'value2' }
333
+ * }
334
+ * });
335
+ * ```
336
+ */
337
+ submitFormData: (formId: string, payload: CreateAppDataRequest) => Promise<AppData>;
338
+ };
339
+ /**
340
+ * Utility functions for common operations
341
+ *
342
+ * Note: These utilities are loaded from the sidebar-loader at runtime.
343
+ * They are available through the window object and don't need to be bundled with apps.
344
+ */
345
+ utils: {
346
+ /**
347
+ * Convert HTML to Markdown
348
+ *
349
+ * @example
350
+ * ```javascript
351
+ * const markdown = weaveAPI.utils.htmlToMarkdown('<h1>Hello</h1>');
352
+ * console.log(markdown); // # Hello
353
+ * ```
354
+ */
355
+ htmlToMarkdown: (html: string) => string;
356
+ /**
357
+ * Convert Markdown to HTML (sanitized)
358
+ *
359
+ * @example
360
+ * ```javascript
361
+ * const html = weaveAPI.utils.markdownToHtml('# Hello');
362
+ * console.log(html); // <h1>Hello</h1>
363
+ * ```
364
+ */
365
+ markdownToHtml: (markdown: string) => string;
366
+ };
367
+ }
368
+ declare const weaveAPI: WeaveAPIClient;
369
+ export default weaveAPI;
370
+ //# sourceMappingURL=WeaveAPIClient.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"WeaveAPIClient.d.ts","sourceRoot":"","sources":["../../../src/WeaveAPIClient.ts"],"names":[],"mappings":"AAAA;;;;;;;GAOG;AAEH;;GAEG;AACH,MAAM,WAAW,aAAa;IAC5B,0BAA0B;IAC1B,MAAM,EAAE,MAAM,CAAC;IACf,kCAAkC;IAClC,OAAO,CAAC,EAAE,MAAM,CAAC;IACjB,+CAA+C;IAC/C,qBAAqB,CAAC,EAAE,OAAO,CAAC;CACjC;AAED;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B,+BAA+B;IAC/B,QAAQ,EAAE,MAAM,CAAC;CAClB;AAED;;GAEG;AACH,MAAM,WAAW,OAAO;IACtB,GAAG,EAAE,MAAM,CAAC;IACZ,0DAA0D;IAC1D,KAAK,EAAE,MAAM,CAAC;IACd,sCAAsC;IACtC,SAAS,EAAE,MAAM,CAAC;IAClB,qDAAqD;IACrD,MAAM,EAAE,MAAM,CAAC;IACf,sDAAsD;IACtD,OAAO,EAAE,MAAM,CAAC;IAChB,+DAA+D;IAC/D,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;IAC1B,SAAS,EAAE,IAAI,CAAC;IAChB,SAAS,EAAE,IAAI,CAAC;IAChB,SAAS,EAAE,MAAM,CAAC;CACnB;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,sDAAsD;IACtD,OAAO,EAAE,MAAM,CAAC;IAChB,+DAA+D;IAC/D,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAC3B;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,sDAAsD;IACtD,OAAO,EAAE,MAAM,CAAC;IAChB,+DAA+D;IAC/D,IAAI,EAAE,MAAM,CAAC,MAAM,EAAE,GAAG,CAAC,CAAC;CAC3B;AAED;;GAEG;AACH,MAAM,WAAW,cAAc;IAC7B,qBAAqB;IACrB,MAAM,EAAE,MAAM,CAAC;IACf,+BAA+B;IAC/B,KAAK,EAAE,MAAM,CAAC;IACd,sCAAsC;IACtC,gBAAgB,EAAE,MAAM,CAAC;CAC1B;AAED;;GAEG;AACH,MAAM,WAAW,iBAAiB,CAAC,CAAC;IAClC,0BAA0B;IAC1B,IAAI,EAAE,CAAC,EAAE,CAAC;IACV,0BAA0B;IAC1B,IAAI,EAAE,cAAc,CAAC;CACtB;AAED,MAAM,WAAW,oBAAoB;IACnC;;;OAGG;IACH,gBAAgB,CAAC,EAAE,MAAM,CAAC;IAC1B;;OAEG;IACH,qBAAqB,CAAC,EAAE,OAAO,CAAC;CACjC;AAED,MAAM,WAAW,0BAA2B,SAAQ,oBAAoB;IACtE;;OAEG;IACH,UAAU,CAAC,EAAE,KAAK,GAAG,MAAM,GAAG,UAAU,GAAG,SAAS,GAAG,iBAAiB,CAAC;IACzE;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,MAAM,CAAC,EAAE,QAAQ,GAAG,UAAU,CAAC;CAChC;AAED,MAAM,WAAW,yBAAyB;IACxC,KAAK,EAAE,MAAM,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;CACf;AAED,MAAM,WAAW,uBAAuB;IACtC,OAAO,EAAE,MAAM,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,KAAK,CAAC,EAAE,MAAM,CAAC;CAChB;AAED,MAAM,WAAW,2BAA2B;IAC1C,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,KAAK,EAAE,MAAM,GAAG,OAAO,GAAG,IAAI,CAAC;IAC/B,OAAO,CAAC,EAAE,yBAAyB,EAAE,CAAC;CACvC;AAED,MAAM,WAAW,+BAA+B;IAC9C,SAAS,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,CAAC,EAAE,uBAAuB,CAAC;CACrC;AAED,MAAM,WAAW,6BAA6B;IAC5C,OAAO,EAAE,MAAM,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,MAAM,CAAC;IACb,QAAQ,EAAE,OAAO,CAAC;IAClB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,OAAO,CAAC,EAAE,yBAAyB,EAAE,CAAC;IACtC,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,YAAY,CAAC,EAAE,MAAM,CAAC;IACtB,kBAAkB,CAAC,EAAE,MAAM,CAAC;IAC5B,SAAS,CAAC,EAAE,uBAAuB,CAAC;CACrC;AAED,MAAM,WAAW,+BAA+B;IAC9C,MAAM,EAAE,MAAM,CAAC;IACf,WAAW,EAAE,MAAM,CAAC;IACpB,QAAQ,EAAE,+BAA+B,EAAE,CAAC;IAC5C,MAAM,EAAE,6BAA6B,EAAE,CAAC;CACzC;AAED,MAAM,WAAW,yBAAyB;IACxC,QAAQ,EAAE,MAAM,CAAC;IACjB,eAAe,EAAE,MAAM,CAAC;IACxB,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW,EAAE,MAAM,CAAC;IACpB,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,2BAA2B,CAAC,CAAC;IACvD,cAAc,EAAE,+BAA+B,CAAC;CACjD;AAgDD;;;GAGG;AACH,qBAAa,cAAc;IACzB,OAAO,CAAC,eAAe,CAGR;IAEf,OAAO,CAAC,eAAe,CAAgD;IACvE,OAAO,CAAC,cAAc,CAAK;IAC3B,OAAO,CAAC,OAAO,CAAU;IACzB,OAAO,CAAC,KAAK,CAAuB;;IAMpC;;;OAGG;IACI,QAAQ,CAAC,KAAK,EAAE,MAAM,GAAG,IAAI;IAIpC;;OAEG;IACH,OAAO,CAAC,UAAU;IAQlB;;OAEG;IACI,OAAO,IAAI,IAAI;IAQtB;;OAEG;IACH,OAAO,CAAC,cAAc;IAuBtB;;OAEG;IACH,OAAO,CAAC,WAAW;IA8CnB;;;;;;;;;;;;;OAaG;IACI,EAAE;wBACe,aAAa,KAAG,OAAO,CAAC,cAAc,CAAC;MAG7D;IAMF;;OAEG;IACI,OAAO;QACZ;;;;;;;;;;;;;;;;;WAiBG;sBACe,OAAO,CAAC,iBAAiB,CAAC,OAAO,CAAC,CAAC;QAIrD;;;;;;;;;;;;WAYG;0BACqB,oBAAoB,KAAG,OAAO,CAAC,OAAO,CAAC;QAI/D;;;;;;;WAOG;yBACoB,MAAM,KAAG,OAAO,CAAC,OAAO,CAAC;QAIhD;;;;;;;;;WASG;4BACuB,MAAM,WAAW,oBAAoB,KAAG,OAAO,CAAC,OAAO,CAAC;QAOlF;;;;;;;WAOG;4BACuB,MAAM,KAAG,OAAO,CAAC,IAAI,CAAC;MAGhD;IAMF;;OAEG;IACI,cAAc;QACnB;;;;WAIG;2BAEQ,0BAA0B,KAClC,OAAO,CAAC,iBAAiB,CAAC,GAAG,CAAC,CAAC;MAGlC;IAEF;;;;OAIG;IACH,KAAK;QACH;;;;;;;;WAQG;sBACe,OAAO,CAAC,iBAAiB,CAAC,GAAG,CAAC,CAAC;QAIjD;;;;;;;;WAQG;sBACiB,MAAM,KAAG,OAAO,CAAC,GAAG,CAAC;QAIzC;;;;;;;;WAQG;8BAEO,MAAM,iBACA,oBAAoB,KACjC,OAAO,CAAC,iBAAiB,CAAC,OAAO,CAAC,CAAC;QAOtC;;;;;;;;;;;;;;WAcG;iCAC4B,MAAM,WAAW,oBAAoB,KAAG,OAAO,CAAC,OAAO,CAAC;MAGvF;IAEF;;;;;OAKG;IACH,KAAK;QACH;;;;;;;;WAQG;+BACoB,MAAM,KAAG,MAAM;QAQtC;;;;;;;;WAQG;mCACwB,MAAM,KAAG,MAAM;MAO1C;CACH;AAGD,QAAA,MAAM,QAAQ,gBAAuB,CAAC;AAOtC,eAAe,QAAQ,CAAC"}