@happyvertical/smrt-social 0.30.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 (47) hide show
  1. package/AGENTS.md +18 -0
  2. package/CLAUDE.md +1 -0
  3. package/LICENSE +7 -0
  4. package/README.md +94 -0
  5. package/dist/__smrt-register__.d.ts +2 -0
  6. package/dist/__smrt-register__.d.ts.map +1 -0
  7. package/dist/collections/index.d.ts +5 -0
  8. package/dist/collections/index.d.ts.map +1 -0
  9. package/dist/collections/oauth-state-collection.d.ts +9 -0
  10. package/dist/collections/oauth-state-collection.d.ts.map +1 -0
  11. package/dist/collections/social-account-collection.d.ts +9 -0
  12. package/dist/collections/social-account-collection.d.ts.map +1 -0
  13. package/dist/collections/social-post-analytics-snapshot-collection.d.ts +18 -0
  14. package/dist/collections/social-post-analytics-snapshot-collection.d.ts.map +1 -0
  15. package/dist/collections/social-post-collection.d.ts +32 -0
  16. package/dist/collections/social-post-collection.d.ts.map +1 -0
  17. package/dist/index.d.ts +6 -0
  18. package/dist/index.d.ts.map +1 -0
  19. package/dist/index.js +824 -0
  20. package/dist/index.js.map +1 -0
  21. package/dist/manifest.json +3363 -0
  22. package/dist/oauth-state.d.ts +127 -0
  23. package/dist/oauth-state.d.ts.map +1 -0
  24. package/dist/server.d.ts +18 -0
  25. package/dist/server.d.ts.map +1 -0
  26. package/dist/server.js +106 -0
  27. package/dist/server.js.map +1 -0
  28. package/dist/smrt-knowledge.json +1398 -0
  29. package/dist/social-account.d.ts +270 -0
  30. package/dist/social-account.d.ts.map +1 -0
  31. package/dist/social-post-analytics-snapshot.d.ts +40 -0
  32. package/dist/social-post-analytics-snapshot.d.ts.map +1 -0
  33. package/dist/social-post.d.ts +258 -0
  34. package/dist/social-post.d.ts.map +1 -0
  35. package/dist/svelte/components/SocialAccountSettings.svelte +243 -0
  36. package/dist/svelte/components/SocialAccountSettings.svelte.d.ts +15 -0
  37. package/dist/svelte/components/SocialAccountSettings.svelte.d.ts.map +1 -0
  38. package/dist/svelte/i18n.d.ts +9 -0
  39. package/dist/svelte/i18n.d.ts.map +1 -0
  40. package/dist/svelte/i18n.js +15 -0
  41. package/dist/svelte/index.d.ts +6 -0
  42. package/dist/svelte/index.d.ts.map +1 -0
  43. package/dist/svelte/index.js +2 -0
  44. package/dist/svelte/types.d.ts +16 -0
  45. package/dist/svelte/types.d.ts.map +1 -0
  46. package/dist/svelte/types.js +1 -0
  47. package/package.json +88 -0
package/AGENTS.md ADDED
@@ -0,0 +1,18 @@
1
+ # @happyvertical/smrt-social
2
+
3
+ Social media account management with OAuth and post scheduling. Supports YouTube, Threads, X (Twitter), Bluesky.
4
+
5
+ ## Models
6
+
7
+ - **SocialAccount** (STI): `platform`, `accessToken`/`refreshToken`, `tokenExpiresAt`, `status` (connected/expired/error), `linkBehavior` (description/reply/none). `isTokenExpired` checks with 5-min buffer. `isReady` gate checks active + connected + token present + not expired.
8
+ - **SocialPost**: `scheduledAt`, `publishedAt`, `status` (draft/scheduled/publishing/published/failed), `analytics` JSON (views/likes/comments/shares/clicks).
9
+ - **OAuthState** (STI): CSRF token + PKCE `codeVerifier` with 10-min TTL.
10
+
11
+ ## Gotchas
12
+
13
+ - **Tokens not encrypted**: OAuth tokens stored as plaintext — TODO for smrt-secrets integration
14
+ - **No auto-publishing**: `scheduledAt` is metadata only — app must implement job runner to trigger publishing
15
+ - **Analytics manual**: `analytics` field must be updated by platform sync, not auto-populated
16
+ - **Platform enum hardcoded**: youtube/threads/x/bluesky — extending requires code changes
17
+ - **OAuthState TTL**: 10 minutes, app must clean up expired states
18
+ - **Optional tenancy** on all models
package/CLAUDE.md ADDED
@@ -0,0 +1 @@
1
+ @AGENTS.md
package/LICENSE ADDED
@@ -0,0 +1,7 @@
1
+ Copyright <2025> <Happy Vertical Corporation>
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
package/README.md ADDED
@@ -0,0 +1,94 @@
1
+ # @happyvertical/smrt-social
2
+
3
+ Social media account management for multi-platform publishing in the SMRT ecosystem. Manages OAuth connections, post scheduling, and analytics tracking across YouTube, Threads, X (Twitter), and Bluesky.
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ pnpm add @happyvertical/smrt-social
9
+ ```
10
+
11
+ ## Usage
12
+
13
+ ```typescript
14
+ import { SocialAccount, SocialPost, OAuthState } from '@happyvertical/smrt-social';
15
+
16
+ // Connect a social account
17
+ const account = new SocialAccount({
18
+ name: 'Bentley News YouTube',
19
+ platform: 'youtube',
20
+ platformUsername: 'Bentley News',
21
+ accessToken: 'encrypted-token',
22
+ refreshToken: 'encrypted-refresh',
23
+ tokenExpiresAt: new Date('2026-06-01'),
24
+ defaultHashtags: ['news', 'local'],
25
+ linkBehavior: 'description',
26
+ });
27
+ await account.save();
28
+
29
+ // Check readiness before publishing (active + connected + token present + not expired)
30
+ if (account.isReady) {
31
+ const post = new SocialPost({
32
+ socialAccountId: account.id,
33
+ title: 'Breaking News from Bentley',
34
+ description: 'Latest updates from the town council meeting.',
35
+ hashtags: ['news', 'local', 'bentley'],
36
+ linkUrl: 'https://example.com/article',
37
+ scheduledAt: new Date('2026-03-05T18:00:00Z'),
38
+ status: 'scheduled',
39
+ });
40
+ await post.save();
41
+ }
42
+
43
+ // OAuth flow: create state, redirect user, verify callback
44
+ const state = new OAuthState({
45
+ platform: 'youtube',
46
+ state: OAuthState.generateState(),
47
+ codeVerifier: OAuthState.generateCodeVerifier(),
48
+ redirectUri: 'https://app.example.com/oauth/callback',
49
+ scopes: ['youtube.upload', 'youtube.readonly'],
50
+ });
51
+ await state.save();
52
+ // On callback: state.verifyState(callbackState), then exchange code for tokens
53
+ ```
54
+
55
+ ## API
56
+
57
+ ### Models
58
+
59
+ | Export | Description |
60
+ |--------|------------|
61
+ | `SocialAccount` | Connected platform account with OAuth credentials and publishing settings |
62
+ | `SocialPost` | Scheduled or published post with analytics tracking |
63
+ | `OAuthState` | Temporary OAuth flow state with CSRF protection and PKCE support |
64
+
65
+ ### Types
66
+
67
+ | Export | Description |
68
+ |--------|------------|
69
+ | `SocialPlatformType` | Platform identifier: `youtube`, `threads`, `x`, `bluesky` |
70
+ | `AccountStatus` | Connection status: `connected`, `expired`, `error` |
71
+ | `PostStatus` | Lifecycle status: `draft`, `scheduled`, `publishing`, `published`, `failed` |
72
+ | `LinkBehavior` | Link handling strategy: `description`, `reply`, `none` |
73
+ | `PostAnalytics` | Engagement metrics: views, likes, comments, shares, clicks |
74
+ | `SocialAccountOptions` | Account creation options |
75
+ | `SocialPostOptions` | Post creation options |
76
+ | `OAuthStateOptions` | OAuth state creation options |
77
+
78
+ ### Key Computed Properties
79
+
80
+ - `SocialAccount.isReady` -- gate check: active + connected + token present + not expired
81
+ - `SocialAccount.isTokenExpired` -- checks with 5-minute buffer before actual expiry
82
+ - `SocialPost.isEditable` -- true when draft or failed
83
+ - `SocialPost.fullText` -- description + formatted hashtags
84
+ - `OAuthState.isValid` -- not expired and state token present
85
+ - `OAuthState.verifyState(callback)` -- CSRF verification for OAuth callbacks
86
+ - `OAuthState.generateCodeChallenge(verifier)` -- PKCE S256 challenge generation
87
+
88
+ ## Dependencies
89
+
90
+ - `@happyvertical/smrt-core` -- ORM and code generation
91
+ - `@happyvertical/smrt-config` -- configuration loading
92
+ - `@happyvertical/smrt-content` -- content models
93
+ - `@happyvertical/smrt-tenancy` -- multi-tenant scoping
94
+ - `@happyvertical/smrt-video` -- video content references
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=__smrt-register__.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"__smrt-register__.d.ts","sourceRoot":"","sources":["../src/__smrt-register__.ts"],"names":[],"mappings":""}
@@ -0,0 +1,5 @@
1
+ export { OAuthStateCollection } from './oauth-state-collection.js';
2
+ export { SocialAccountCollection } from './social-account-collection.js';
3
+ export { SocialPostAnalyticsSnapshotCollection } from './social-post-analytics-snapshot-collection.js';
4
+ export { type CreateSocialPostDraftOptions, type PublishSuccessData, SocialPostCollection, } from './social-post-collection.js';
5
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/collections/index.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,oBAAoB,EAAE,MAAM,6BAA6B,CAAC;AACnE,OAAO,EAAE,uBAAuB,EAAE,MAAM,gCAAgC,CAAC;AACzE,OAAO,EAAE,qCAAqC,EAAE,MAAM,gDAAgD,CAAC;AACvG,OAAO,EACL,KAAK,4BAA4B,EACjC,KAAK,kBAAkB,EACvB,oBAAoB,GACrB,MAAM,6BAA6B,CAAC"}
@@ -0,0 +1,9 @@
1
+ import { SmrtCollection } from '@happyvertical/smrt-core';
2
+ import { OAuthState } from '../oauth-state.js';
3
+ export declare class OAuthStateCollection extends SmrtCollection<OAuthState> {
4
+ static readonly _itemClass: typeof OAuthState;
5
+ findByState(state: string): Promise<OAuthState | null>;
6
+ findExpired(now?: Date): Promise<OAuthState[]>;
7
+ deleteExpired(now?: Date): Promise<number>;
8
+ }
9
+ //# sourceMappingURL=oauth-state-collection.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"oauth-state-collection.d.ts","sourceRoot":"","sources":["../../src/collections/oauth-state-collection.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAC1D,OAAO,EAAE,UAAU,EAAE,MAAM,mBAAmB,CAAC;AAE/C,qBAAa,oBAAqB,SAAQ,cAAc,CAAC,UAAU,CAAC;IAClE,MAAM,CAAC,QAAQ,CAAC,UAAU,oBAAc;IAElC,WAAW,CAAC,KAAK,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,GAAG,IAAI,CAAC;IAItD,WAAW,CAAC,GAAG,GAAE,IAAiB,GAAG,OAAO,CAAC,UAAU,EAAE,CAAC;IAO1D,aAAa,CAAC,GAAG,GAAE,IAAiB,GAAG,OAAO,CAAC,MAAM,CAAC;CAK7D"}
@@ -0,0 +1,9 @@
1
+ import { SmrtCollection } from '@happyvertical/smrt-core';
2
+ import { SocialAccount, SocialPlatformType } from '../social-account.js';
3
+ export declare class SocialAccountCollection extends SmrtCollection<SocialAccount> {
4
+ static readonly _itemClass: typeof SocialAccount;
5
+ findActive(platform?: SocialPlatformType): Promise<SocialAccount[]>;
6
+ findReady(platform?: SocialPlatformType): Promise<SocialAccount[]>;
7
+ findNeedsAttention(): Promise<SocialAccount[]>;
8
+ }
9
+ //# sourceMappingURL=social-account-collection.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"social-account-collection.d.ts","sourceRoot":"","sources":["../../src/collections/social-account-collection.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAC1D,OAAO,EAAE,aAAa,EAAE,KAAK,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAE9E,qBAAa,uBAAwB,SAAQ,cAAc,CAAC,aAAa,CAAC;IACxE,MAAM,CAAC,QAAQ,CAAC,UAAU,uBAAiB;IAErC,UAAU,CAAC,QAAQ,CAAC,EAAE,kBAAkB,GAAG,OAAO,CAAC,aAAa,EAAE,CAAC;IAYnE,SAAS,CAAC,QAAQ,CAAC,EAAE,kBAAkB,GAAG,OAAO,CAAC,aAAa,EAAE,CAAC;IAKlE,kBAAkB,IAAI,OAAO,CAAC,aAAa,EAAE,CAAC;CAOrD"}
@@ -0,0 +1,18 @@
1
+ import { SmrtCollection } from '@happyvertical/smrt-core';
2
+ import { SocialPlatformType } from '../social-account.js';
3
+ import { PostAnalytics } from '../social-post.js';
4
+ import { RawAnalyticsPayload, SocialPostAnalyticsSnapshot } from '../social-post-analytics-snapshot.js';
5
+ export declare class SocialPostAnalyticsSnapshotCollection extends SmrtCollection<SocialPostAnalyticsSnapshot> {
6
+ static readonly _itemClass: typeof SocialPostAnalyticsSnapshot;
7
+ recordSnapshot(options: {
8
+ socialPostId: string;
9
+ platform: SocialPlatformType;
10
+ metrics: PostAnalytics;
11
+ raw?: RawAnalyticsPayload;
12
+ capturedAt?: Date;
13
+ tenantId?: string | null;
14
+ }): Promise<SocialPostAnalyticsSnapshot>;
15
+ findForPost(socialPostId: string): Promise<SocialPostAnalyticsSnapshot[]>;
16
+ findLatestForPost(socialPostId: string): Promise<SocialPostAnalyticsSnapshot | null>;
17
+ }
18
+ //# sourceMappingURL=social-post-analytics-snapshot-collection.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"social-post-analytics-snapshot-collection.d.ts","sourceRoot":"","sources":["../../src/collections/social-post-analytics-snapshot-collection.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAC1D,OAAO,KAAK,EAAE,kBAAkB,EAAE,MAAM,sBAAsB,CAAC;AAC/D,OAAO,KAAK,EAAE,aAAa,EAAE,MAAM,mBAAmB,CAAC;AACvD,OAAO,EACL,KAAK,mBAAmB,EACxB,2BAA2B,EAC5B,MAAM,sCAAsC,CAAC;AAU9C,qBAAa,qCAAsC,SAAQ,cAAc,CAAC,2BAA2B,CAAC;IACpG,MAAM,CAAC,QAAQ,CAAC,UAAU,qCAA+B;IAEnD,cAAc,CAAC,OAAO,EAAE;QAC5B,YAAY,EAAE,MAAM,CAAC;QACrB,QAAQ,EAAE,kBAAkB,CAAC;QAC7B,OAAO,EAAE,aAAa,CAAC;QACvB,GAAG,CAAC,EAAE,mBAAmB,CAAC;QAC1B,UAAU,CAAC,EAAE,IAAI,CAAC;QAClB,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;KAC1B,GAAG,OAAO,CAAC,2BAA2B,CAAC;IAgBlC,WAAW,CACf,YAAY,EAAE,MAAM,GACnB,OAAO,CAAC,2BAA2B,EAAE,CAAC;IAOnC,iBAAiB,CACrB,YAAY,EAAE,MAAM,GACnB,OAAO,CAAC,2BAA2B,GAAG,IAAI,CAAC;CAI/C"}
@@ -0,0 +1,32 @@
1
+ import { SmrtCollection } from '@happyvertical/smrt-core';
2
+ import { PostAnalytics, PostStatus, SocialPost, SocialPostType } from '../social-post.js';
3
+ export interface CreateSocialPostDraftOptions {
4
+ socialAccountId: string;
5
+ contentId?: string | null;
6
+ videoContentId?: string | null;
7
+ postType?: SocialPostType;
8
+ title?: string | null;
9
+ description?: string;
10
+ hashtags?: string[];
11
+ linkUrl?: string | null;
12
+ mediaUrl?: string | null;
13
+ scheduledAt?: Date | null;
14
+ tenantId?: string | null;
15
+ }
16
+ export interface PublishSuccessData {
17
+ platformPostId: string;
18
+ platformUrl: string;
19
+ publishedAt?: Date;
20
+ status?: PostStatus;
21
+ }
22
+ export declare class SocialPostCollection extends SmrtCollection<SocialPost> {
23
+ static readonly _itemClass: typeof SocialPost;
24
+ createDraft(options: CreateSocialPostDraftOptions): Promise<SocialPost>;
25
+ findByStatus(status: PostStatus): Promise<SocialPost[]>;
26
+ findForAccount(socialAccountId: string): Promise<SocialPost[]>;
27
+ findDueForPublish(now?: Date): Promise<SocialPost[]>;
28
+ recordPublishSuccess(post: SocialPost, data: PublishSuccessData): Promise<SocialPost>;
29
+ recordPublishFailure(post: SocialPost, error: Error | string): Promise<SocialPost>;
30
+ updateLatestAnalytics(post: SocialPost, analytics: PostAnalytics, syncedAt?: Date): Promise<SocialPost>;
31
+ }
32
+ //# sourceMappingURL=social-post-collection.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"social-post-collection.d.ts","sourceRoot":"","sources":["../../src/collections/social-post-collection.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,0BAA0B,CAAC;AAC1D,OAAO,EACL,KAAK,aAAa,EAClB,KAAK,UAAU,EACf,UAAU,EACV,KAAK,cAAc,EACpB,MAAM,mBAAmB,CAAC;AAE3B,MAAM,WAAW,4BAA4B;IAC3C,eAAe,EAAE,MAAM,CAAC;IACxB,SAAS,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC1B,cAAc,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IAC/B,QAAQ,CAAC,EAAE,cAAc,CAAC;IAC1B,KAAK,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACtB,WAAW,CAAC,EAAE,MAAM,CAAC;IACrB,QAAQ,CAAC,EAAE,MAAM,EAAE,CAAC;IACpB,OAAO,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACxB,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;IACzB,WAAW,CAAC,EAAE,IAAI,GAAG,IAAI,CAAC;IAC1B,QAAQ,CAAC,EAAE,MAAM,GAAG,IAAI,CAAC;CAC1B;AAED,MAAM,WAAW,kBAAkB;IACjC,cAAc,EAAE,MAAM,CAAC;IACvB,WAAW,EAAE,MAAM,CAAC;IACpB,WAAW,CAAC,EAAE,IAAI,CAAC;IACnB,MAAM,CAAC,EAAE,UAAU,CAAC;CACrB;AAED,qBAAa,oBAAqB,SAAQ,cAAc,CAAC,UAAU,CAAC;IAClE,MAAM,CAAC,QAAQ,CAAC,UAAU,oBAAc;IAElC,WAAW,CACf,OAAO,EAAE,4BAA4B,GACpC,OAAO,CAAC,UAAU,CAAC;IAchB,YAAY,CAAC,MAAM,EAAE,UAAU,GAAG,OAAO,CAAC,UAAU,EAAE,CAAC;IAIvD,cAAc,CAAC,eAAe,EAAE,MAAM,GAAG,OAAO,CAAC,UAAU,EAAE,CAAC;IAO9D,iBAAiB,CAAC,GAAG,GAAE,IAAiB,GAAG,OAAO,CAAC,UAAU,EAAE,CAAC;IAqBhE,oBAAoB,CACxB,IAAI,EAAE,UAAU,EAChB,IAAI,EAAE,kBAAkB,GACvB,OAAO,CAAC,UAAU,CAAC;IAahB,oBAAoB,CACxB,IAAI,EAAE,UAAU,EAChB,KAAK,EAAE,KAAK,GAAG,MAAM,GACpB,OAAO,CAAC,UAAU,CAAC;IAOhB,qBAAqB,CACzB,IAAI,EAAE,UAAU,EAChB,SAAS,EAAE,aAAa,EACxB,QAAQ,GAAE,IAAiB,GAC1B,OAAO,CAAC,UAAU,CAAC;CASvB"}
@@ -0,0 +1,6 @@
1
+ export * from './collections/index.js';
2
+ export { OAuthState, type OAuthStateOptions, } from './oauth-state.js';
3
+ export { type AccountStatus, type LinkBehavior, type PublishMode, SocialAccount, type SocialAccountOptions, type SocialPlatformType, } from './social-account.js';
4
+ export { type PostAnalytics, type PostStatus, SocialPost, type SocialPostOptions, type SocialPostType, } from './social-post.js';
5
+ export { type RawAnalyticsPayload, SocialPostAnalyticsSnapshot, type SocialPostAnalyticsSnapshotOptions, } from './social-post-analytics-snapshot.js';
6
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgCG;AAKH,OAAO,wBAAwB,CAAC;AAEhC,cAAc,wBAAwB,CAAC;AACvC,OAAO,EACL,UAAU,EACV,KAAK,iBAAiB,GACvB,MAAM,kBAAkB,CAAC;AAE1B,OAAO,EACL,KAAK,aAAa,EAClB,KAAK,YAAY,EACjB,KAAK,WAAW,EAChB,aAAa,EACb,KAAK,oBAAoB,EACzB,KAAK,kBAAkB,GACxB,MAAM,qBAAqB,CAAC;AAC7B,OAAO,EACL,KAAK,aAAa,EAClB,KAAK,UAAU,EACf,UAAU,EACV,KAAK,iBAAiB,EACtB,KAAK,cAAc,GACpB,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EACL,KAAK,mBAAmB,EACxB,2BAA2B,EAC3B,KAAK,kCAAkC,GACxC,MAAM,qCAAqC,CAAC"}