@postpeer/node 0.4.0 → 0.6.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 (76) hide show
  1. package/CHANGELOG.md +35 -0
  2. package/client.d.mts +3 -3
  3. package/client.d.mts.map +1 -1
  4. package/client.d.ts +3 -3
  5. package/client.d.ts.map +1 -1
  6. package/client.js +14 -3
  7. package/client.js.map +1 -1
  8. package/client.mjs +14 -3
  9. package/client.mjs.map +1 -1
  10. package/internal/types.d.mts +6 -6
  11. package/internal/types.d.mts.map +1 -1
  12. package/internal/types.d.ts +6 -6
  13. package/internal/types.d.ts.map +1 -1
  14. package/package.json +1 -1
  15. package/resources/connect/connect.d.mts +3 -3
  16. package/resources/connect/connect.d.mts.map +1 -1
  17. package/resources/connect/connect.d.ts +3 -3
  18. package/resources/connect/connect.d.ts.map +1 -1
  19. package/resources/connect/connect.js.map +1 -1
  20. package/resources/connect/connect.mjs +1 -1
  21. package/resources/connect/connect.mjs.map +1 -1
  22. package/resources/connect/index.d.mts +1 -1
  23. package/resources/connect/index.d.mts.map +1 -1
  24. package/resources/connect/index.d.ts +1 -1
  25. package/resources/connect/index.d.ts.map +1 -1
  26. package/resources/connect/index.js.map +1 -1
  27. package/resources/connect/index.mjs.map +1 -1
  28. package/resources/connect/integrations.d.mts +21 -4
  29. package/resources/connect/integrations.d.mts.map +1 -1
  30. package/resources/connect/integrations.d.ts +21 -4
  31. package/resources/connect/integrations.d.ts.map +1 -1
  32. package/resources/connect/integrations.js +3 -3
  33. package/resources/connect/integrations.js.map +1 -1
  34. package/resources/connect/integrations.mjs +3 -3
  35. package/resources/connect/integrations.mjs.map +1 -1
  36. package/resources/index.d.mts +1 -1
  37. package/resources/index.d.mts.map +1 -1
  38. package/resources/index.d.ts +1 -1
  39. package/resources/index.d.ts.map +1 -1
  40. package/resources/index.js.map +1 -1
  41. package/resources/index.mjs.map +1 -1
  42. package/resources/platforms.d.mts +1 -1
  43. package/resources/platforms.d.mts.map +1 -1
  44. package/resources/platforms.d.ts +1 -1
  45. package/resources/platforms.d.ts.map +1 -1
  46. package/resources/posts/index.d.mts +1 -1
  47. package/resources/posts/index.d.mts.map +1 -1
  48. package/resources/posts/index.d.ts +1 -1
  49. package/resources/posts/index.d.ts.map +1 -1
  50. package/resources/posts/index.js.map +1 -1
  51. package/resources/posts/index.mjs.map +1 -1
  52. package/resources/posts/posts.d.mts +106 -264
  53. package/resources/posts/posts.d.mts.map +1 -1
  54. package/resources/posts/posts.d.ts +106 -264
  55. package/resources/posts/posts.d.ts.map +1 -1
  56. package/resources/posts/posts.js.map +1 -1
  57. package/resources/posts/posts.mjs.map +1 -1
  58. package/resources/posts/scheduled.d.mts +2 -8
  59. package/resources/posts/scheduled.d.mts.map +1 -1
  60. package/resources/posts/scheduled.d.ts +2 -8
  61. package/resources/posts/scheduled.d.ts.map +1 -1
  62. package/src/client.ts +15 -5
  63. package/src/internal/types.ts +6 -8
  64. package/src/resources/connect/connect.ts +8 -2
  65. package/src/resources/connect/index.ts +1 -0
  66. package/src/resources/connect/integrations.ts +31 -4
  67. package/src/resources/index.ts +0 -1
  68. package/src/resources/platforms.ts +1 -1
  69. package/src/resources/posts/index.ts +0 -1
  70. package/src/resources/posts/posts.ts +146 -329
  71. package/src/resources/posts/scheduled.ts +2 -8
  72. package/src/version.ts +1 -1
  73. package/version.d.mts +1 -1
  74. package/version.d.ts +1 -1
  75. package/version.js +1 -1
  76. package/version.mjs +1 -1
@@ -1,5 +1,4 @@
1
1
  import { APIResource } from "../../core/resource.mjs";
2
- import * as PostsAPI from "./posts.mjs";
3
2
  import * as ScheduledAPI from "./scheduled.mjs";
4
3
  import { Scheduled, ScheduledCancelResponse, ScheduledListResponse, ScheduledRescheduleParams, ScheduledRescheduleResponse } from "./scheduled.mjs";
5
4
  import { APIPromise } from "../../core/api-promise.mjs";
@@ -50,47 +49,6 @@ export declare class Posts extends APIResource {
50
49
  */
51
50
  delete(postID: string, options?: RequestOptions): APIPromise<PostDeleteResponse>;
52
51
  }
53
- export interface PostSummary {
54
- content: string;
55
- createdAt: string;
56
- crosspostingEnabled: boolean;
57
- mediaItems: Array<PostSummary.MediaItem>;
58
- platforms: Array<PostSummary.Platform>;
59
- /**
60
- * MongoDB ObjectId of the Post document
61
- */
62
- postId: string;
63
- rawRequestBody: {
64
- [key: string]: unknown;
65
- };
66
- /**
67
- * ISO 8601 scheduled datetime
68
- */
69
- scheduledFor: string | null;
70
- status: Status;
71
- timezone: string;
72
- updatedAt: string;
73
- }
74
- export declare namespace PostSummary {
75
- interface MediaItem {
76
- filename: string;
77
- mimeType: string;
78
- size: number;
79
- type: 'image' | 'video' | 'gif';
80
- url: string;
81
- }
82
- interface Platform {
83
- errorMessage: string | null;
84
- platform: 'twitter' | 'instagram' | 'youtube' | 'tiktok' | 'pinterest' | 'linkedin';
85
- platformPostId: string | null;
86
- /**
87
- * Direct URL to the published post
88
- */
89
- platformPostUrl: string | null;
90
- publishedAt: string | null;
91
- status: PostsAPI.Status;
92
- }
93
- }
94
52
  export type Status = 'draft' | 'pending' | 'scheduled' | 'publishing' | 'published' | 'failed' | 'partial';
95
53
  export interface PostCreateResponse {
96
54
  platforms: Array<PostCreateResponse.Platform>;
@@ -98,7 +56,7 @@ export interface PostCreateResponse {
98
56
  * id of the saved Post document
99
57
  */
100
58
  postId: string;
101
- status: Status;
59
+ status: 'draft' | 'pending' | 'scheduled' | 'publishing' | 'published' | 'failed' | 'partial';
102
60
  /**
103
61
  * false only when every platform failed
104
62
  */
@@ -110,7 +68,7 @@ export interface PostCreateResponse {
110
68
  }
111
69
  export declare namespace PostCreateResponse {
112
70
  interface Platform {
113
- platform: 'twitter' | 'instagram' | 'youtube' | 'tiktok' | 'pinterest' | 'linkedin';
71
+ platform: 'twitter' | 'instagram' | 'youtube' | 'tiktok' | 'pinterest' | 'linkedin' | 'bluesky';
114
72
  success: boolean;
115
73
  /**
116
74
  * Error message when success is false
@@ -120,20 +78,113 @@ export declare namespace PostCreateResponse {
120
78
  * Direct URL to the published post
121
79
  */
122
80
  platformPostUrl?: string;
81
+ /**
82
+ * Warning message when the post published but a non-critical follow-up action
83
+ * failed
84
+ */
85
+ warningMessage?: string;
123
86
  }
124
87
  }
125
88
  export interface PostRetrieveResponse {
126
- post: PostSummary;
89
+ post: PostRetrieveResponse.Post;
127
90
  success: boolean;
128
91
  }
92
+ export declare namespace PostRetrieveResponse {
93
+ interface Post {
94
+ content: string;
95
+ createdAt: string;
96
+ crosspostingEnabled: boolean;
97
+ mediaItems: Array<Post.MediaItem>;
98
+ platforms: Array<Post.Platform>;
99
+ /**
100
+ * MongoDB ObjectId of the Post document
101
+ */
102
+ postId: string;
103
+ rawRequestBody: {
104
+ [key: string]: unknown;
105
+ };
106
+ /**
107
+ * ISO 8601 scheduled datetime
108
+ */
109
+ scheduledFor: string | null;
110
+ status: 'draft' | 'pending' | 'scheduled' | 'publishing' | 'published' | 'failed' | 'partial';
111
+ timezone: string;
112
+ updatedAt: string;
113
+ }
114
+ namespace Post {
115
+ interface MediaItem {
116
+ filename: string;
117
+ mimeType: string;
118
+ size: number;
119
+ type: 'image' | 'video' | 'gif';
120
+ url: string;
121
+ }
122
+ interface Platform {
123
+ errorMessage: string | null;
124
+ platform: 'twitter' | 'instagram' | 'youtube' | 'tiktok' | 'pinterest' | 'linkedin' | 'bluesky';
125
+ platformPostId: string | null;
126
+ /**
127
+ * Direct URL to the published post
128
+ */
129
+ platformPostUrl: string | null;
130
+ publishedAt: string | null;
131
+ status: 'draft' | 'pending' | 'scheduled' | 'publishing' | 'published' | 'failed' | 'partial';
132
+ warningMessage: string | null;
133
+ }
134
+ }
135
+ }
129
136
  export interface PostListResponse {
130
- posts: Array<PostSummary>;
137
+ posts: Array<PostListResponse.Post>;
131
138
  success: boolean;
132
139
  /**
133
140
  * Total matched posts across all pages
134
141
  */
135
142
  total: number;
136
143
  }
144
+ export declare namespace PostListResponse {
145
+ interface Post {
146
+ content: string;
147
+ createdAt: string;
148
+ crosspostingEnabled: boolean;
149
+ mediaItems: Array<Post.MediaItem>;
150
+ platforms: Array<Post.Platform>;
151
+ /**
152
+ * MongoDB ObjectId of the Post document
153
+ */
154
+ postId: string;
155
+ rawRequestBody: {
156
+ [key: string]: unknown;
157
+ };
158
+ /**
159
+ * ISO 8601 scheduled datetime
160
+ */
161
+ scheduledFor: string | null;
162
+ status: 'draft' | 'pending' | 'scheduled' | 'publishing' | 'published' | 'failed' | 'partial';
163
+ timezone: string;
164
+ updatedAt: string;
165
+ }
166
+ namespace Post {
167
+ interface MediaItem {
168
+ filename: string;
169
+ mimeType: string;
170
+ size: number;
171
+ type: 'image' | 'video' | 'gif';
172
+ url: string;
173
+ }
174
+ interface Platform {
175
+ errorMessage: string | null;
176
+ platform: 'twitter' | 'instagram' | 'youtube' | 'tiktok' | 'pinterest' | 'linkedin' | 'bluesky';
177
+ platformPostId: string | null;
178
+ /**
179
+ * Direct URL to the published post
180
+ */
181
+ platformPostUrl: string | null;
182
+ publishedAt: string | null;
183
+ status: 'draft' | 'pending' | 'scheduled' | 'publishing' | 'published' | 'failed' | 'partial';
184
+ warningMessage: string | null;
185
+ }
186
+ }
187
+ }
137
188
  export interface PostDeleteResponse {
138
189
  success: boolean;
139
190
  }
@@ -169,221 +220,15 @@ export declare namespace PostCreateParams {
169
220
  * Integration.\_id — find yours via GET /connect/integrations
170
221
  */
171
222
  accountId: string;
172
- platform: 'twitter' | 'instagram' | 'youtube' | 'tiktok' | 'pinterest' | 'linkedin';
223
+ platform: 'twitter' | 'instagram' | 'youtube' | 'tiktok' | 'pinterest' | 'linkedin' | 'bluesky';
173
224
  /**
174
225
  * Platform-specific options. See TwitterConfigurations, YouTubeConfigurations,
175
- * TikTokConfigurations, PinterestConfigurations, or LinkedInConfigurations
176
- * depending on the target platform.
177
- */
178
- platformSpecificData?: Platform.TwitterConfigurations | Platform.YouTubeConfigurations | Platform.TikTokConfigurations | Platform.PinterestConfigurations | Platform.LinkedInConfigurations;
179
- }
180
- namespace Platform {
181
- /**
182
- * Pass this object in platformSpecificData when posting to Twitter/X, including
183
- * Community post options.
184
- */
185
- interface TwitterConfigurations {
186
- /**
187
- * Community ID to publish this post into.
188
- */
189
- communityId?: string;
190
- /**
191
- * Cannot be combined with media or threadItems.
192
- */
193
- poll?: TwitterConfigurations.Poll;
194
- /**
195
- * Who can reply to this tweet.
196
- */
197
- replySettings?: 'following' | 'mentionedUsers' | 'subscribers' | 'verified';
198
- /**
199
- * Tweet ID to reply to.
200
- */
201
- replyToTweetId?: string;
202
- /**
203
- * When posting to a Community, also share the post with followers.
204
- */
205
- shareWithFollowers?: boolean;
206
- /**
207
- * Additional tweets to chain as a thread. The root tweet uses post.content.
208
- */
209
- threadItems?: Array<TwitterConfigurations.ThreadItem>;
210
- }
211
- namespace TwitterConfigurations {
212
- /**
213
- * Cannot be combined with media or threadItems.
214
- */
215
- interface Poll {
216
- /**
217
- * Poll duration in minutes (5 min – 7 days).
218
- */
219
- duration_minutes: number;
220
- /**
221
- * 2–4 poll options.
222
- */
223
- options: Array<string>;
224
- }
225
- interface ThreadItem {
226
- /**
227
- * Text of this thread tweet (max 280 chars)
228
- */
229
- content: string;
230
- mediaItems?: Array<ThreadItem.MediaItem>;
231
- }
232
- namespace ThreadItem {
233
- interface MediaItem {
234
- type: 'image' | 'video' | 'gif';
235
- url: string;
236
- }
237
- }
238
- }
239
- /**
240
- * Pass this object in platformSpecificData when posting to YouTube.
241
- */
242
- interface YouTubeConfigurations {
243
- /**
244
- * YouTube category ID. Defaults to "22" (People & Blogs). Common values: "1" Film
245
- * & Animation, "10" Music, "20" Gaming, "22" People & Blogs, "27" Education, "28"
246
- * Science & Technology.
247
- */
248
- categoryId?: string;
249
- /**
250
- * AI-generated content disclosure. YouTube is increasingly enforcing this
251
- * requirement. Defaults to false.
252
- */
253
- containsSyntheticMedia?: boolean;
254
- /**
255
- * Auto-posted comment after the video goes live. Max 10,000 characters. For
256
- * publishNow posts: posted immediately after upload. For scheduled posts: posted
257
- * when the video becomes public.
258
- */
259
- firstComment?: string;
260
- /**
261
- * COPPA compliance flag. Setting to true permanently disables comments,
262
- * notification bell, personalized ads, end screens, and cards on the video.
263
- * Defaults to false.
264
- */
265
- madeForKids?: boolean;
266
- /**
267
- * Video tags. Total characters across all tags must be ≤500.
268
- */
269
- tags?: Array<string>;
270
- /**
271
- * Video title (max 100 chars, no < or >). Defaults to first 100 chars of content,
272
- * or "Untitled Video".
273
- */
274
- title?: string;
275
- /**
276
- * Who can see the video. Defaults to "public". Scheduled posts upload as private
277
- * and flip to this value at publish time.
278
- */
279
- visibility?: 'public' | 'private' | 'unlisted';
280
- }
281
- /**
282
- * Pass this object in platformSpecificData when posting to TikTok.
226
+ * TikTokConfigurations, PinterestConfigurations, or LinkedInConfigurations in the
227
+ * schema reference for available fields per platform.
283
228
  */
284
- interface TikTokConfigurations {
285
- /**
286
- * Automatically add background music to photo carousels. Photo posts only.
287
- * Defaults to true.
288
- */
289
- auto_add_music?: boolean;
290
- /**
291
- * Mark as branded content (paid partnership). Defaults to false.
292
- */
293
- brand_content_toggle?: boolean;
294
- /**
295
- * Mark as organic brand promotion. Defaults to false.
296
- */
297
- brand_organic_toggle?: boolean;
298
- /**
299
- * Disable comments on this post. Defaults to false.
300
- */
301
- disable_comment?: boolean;
302
- /**
303
- * Disable duet for this video. Videos only. Defaults to false.
304
- */
305
- disable_duet?: boolean;
306
- /**
307
- * Disable stitch for this video. Videos only. Defaults to false.
308
- */
309
- disable_stitch?: boolean;
310
- /**
311
- * When true (default), sends content to the creator's TikTok inbox as a draft. Set
312
- * to false to publish immediately (requires an audited app).
313
- */
314
- draft?: boolean;
315
- /**
316
- * AI-generated content disclosure. Defaults to false.
317
- */
318
- is_aigc?: boolean;
319
- /**
320
- * 0-indexed position of the cover image in a photo carousel. Photo posts only.
321
- * Defaults to 0.
322
- */
323
- photo_cover_index?: number;
324
- /**
325
- * Who can see this post. Defaults to "SELF_ONLY" (required for unreviewed apps).
326
- * Upgrade to PUBLIC_TO_EVERYONE after TikTok app review.
327
- */
328
- privacy_level?: 'PUBLIC_TO_EVERYONE' | 'MUTUAL_FOLLOW_FRIENDS' | 'FOLLOWER_OF_CREATOR' | 'SELF_ONLY';
329
- /**
330
- * Timestamp in milliseconds to use as the video cover frame. Videos only. Defaults
331
- * to 1000ms.
332
- */
333
- video_cover_timestamp_ms?: number;
334
- }
335
- /**
336
- * Pass this object in platformSpecificData when posting to Pinterest.
337
- */
338
- interface PinterestConfigurations {
339
- /**
340
- * Target board ID. Retrieve available boards via GET /connect/pinterest/boards.
341
- */
342
- boardId: string;
343
- /**
344
- * Accessible image description. Max 500 characters.
345
- */
346
- altText?: string;
347
- /**
348
- * Custom cover image URL for video pins.
349
- */
350
- coverImageUrl?: string;
351
- /**
352
- * Hex color for the loading placeholder (e.g. "#6E7874").
353
- */
354
- dominantColor?: string;
355
- /**
356
- * HTTPS destination URL when the pin is clicked. Important for driving traffic.
357
- */
358
- link?: string;
359
- /**
360
- * Pin title. Max 100 characters. Defaults to first line of content.
361
- */
362
- title?: string;
363
- }
364
- /**
365
- * Pass this object in platformSpecificData when posting to LinkedIn.
366
- */
367
- interface LinkedInConfigurations {
368
- /**
369
- * Description for the article preview card. Max 400 characters.
370
- */
371
- article_description?: string;
372
- /**
373
- * Title for the article preview card. Max 400 characters.
374
- */
375
- article_title?: string;
376
- /**
377
- * URL for an article/link post. When provided, the post becomes a link share with
378
- * a preview card.
379
- */
380
- article_url?: string;
381
- /**
382
- * Post visibility. "PUBLIC" = visible to everyone, "CONNECTIONS" = visible to
383
- * connections only. Defaults to "PUBLIC".
384
- */
385
- visibility?: 'PUBLIC' | 'CONNECTIONS';
386
- }
229
+ platformSpecificData?: {
230
+ [key: string]: unknown;
231
+ };
387
232
  }
388
233
  interface MediaItem {
389
234
  type: 'image' | 'video' | 'gif';
@@ -415,7 +260,7 @@ export interface PostListParams {
415
260
  /**
416
261
  * Filter by platform (repeatable — OR logic)
417
262
  */
418
- platform?: Array<'twitter' | 'instagram' | 'youtube' | 'tiktok' | 'pinterest' | 'linkedin'>;
263
+ platform?: Array<'twitter' | 'instagram' | 'youtube' | 'tiktok' | 'pinterest' | 'linkedin' | 'bluesky'>;
419
264
  /**
420
265
  * ISO 8601 lower bound on scheduledFor
421
266
  */
@@ -424,14 +269,11 @@ export interface PostListParams {
424
269
  * ISO 8601 upper bound on scheduledFor
425
270
  */
426
271
  scheduledBefore?: string;
427
- /**
428
- * Sort direction by createdAt
429
- */
430
272
  sort?: 'asc' | 'desc';
431
- status?: Status;
273
+ status?: 'draft' | 'pending' | 'scheduled' | 'publishing' | 'published' | 'failed' | 'partial';
432
274
  }
433
275
  export declare namespace Posts {
434
- export { type PostSummary as PostSummary, type Status as Status, type PostCreateResponse as PostCreateResponse, type PostRetrieveResponse as PostRetrieveResponse, type PostListResponse as PostListResponse, type PostDeleteResponse as PostDeleteResponse, type PostCreateParams as PostCreateParams, type PostListParams as PostListParams, };
276
+ export { type Status as Status, type PostCreateResponse as PostCreateResponse, type PostRetrieveResponse as PostRetrieveResponse, type PostListResponse as PostListResponse, type PostDeleteResponse as PostDeleteResponse, type PostCreateParams as PostCreateParams, type PostListParams as PostListParams, };
435
277
  export { Scheduled as Scheduled, type ScheduledListResponse as ScheduledListResponse, type ScheduledCancelResponse as ScheduledCancelResponse, type ScheduledRescheduleResponse as ScheduledRescheduleResponse, type ScheduledRescheduleParams as ScheduledRescheduleParams, };
436
278
  }
437
279
  //# sourceMappingURL=posts.d.mts.map
@@ -1 +1 @@
1
- {"version":3,"file":"posts.d.mts","sourceRoot":"","sources":["../../src/resources/posts/posts.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"posts.d.mts","sourceRoot":"","sources":["../../src/resources/posts/posts.ts"],"names":[],"mappings":"OAEO,EAAE,WAAW,EAAE;OACf,KAAK,YAAY;OACjB,EACL,SAAS,EACT,uBAAuB,EACvB,qBAAqB,EACrB,yBAAyB,EACzB,2BAA2B,EAC5B;OACM,EAAE,UAAU,EAAE;OACd,EAAE,cAAc,EAAE;AAGzB,qBAAa,KAAM,SAAQ,WAAW;IACpC,SAAS,EAAE,YAAY,CAAC,SAAS,CAA4C;IAE7E;;;;;;;;;;;;;OAaG;IACH,MAAM,CAAC,IAAI,EAAE,gBAAgB,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,kBAAkB,CAAC;IAIxF;;;;;;;OAOG;IACH,QAAQ,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,oBAAoB,CAAC;IAIpF;;;;;;;;OAQG;IACH,IAAI,CACF,KAAK,GAAE,cAAc,GAAG,IAAI,GAAG,SAAc,EAC7C,OAAO,CAAC,EAAE,cAAc,GACvB,UAAU,CAAC,gBAAgB,CAAC;IAI/B;;;;;;;OAOG;IACH,MAAM,CAAC,MAAM,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,cAAc,GAAG,UAAU,CAAC,kBAAkB,CAAC;CAGjF;AAED,MAAM,MAAM,MAAM,GAAG,OAAO,GAAG,SAAS,GAAG,WAAW,GAAG,YAAY,GAAG,WAAW,GAAG,QAAQ,GAAG,SAAS,CAAC;AAE3G,MAAM,WAAW,kBAAkB;IACjC,SAAS,EAAE,KAAK,CAAC,kBAAkB,CAAC,QAAQ,CAAC,CAAC;IAE9C;;OAEG;IACH,MAAM,EAAE,MAAM,CAAC;IAEf,MAAM,EAAE,OAAO,GAAG,SAAS,GAAG,WAAW,GAAG,YAAY,GAAG,WAAW,GAAG,QAAQ,GAAG,SAAS,CAAC;IAE9F;;OAEG;IACH,OAAO,EAAE,OAAO,CAAC;IAEjB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;CACvB;AAED,yBAAiB,kBAAkB,CAAC;IAClC,UAAiB,QAAQ;QACvB,QAAQ,EAAE,SAAS,GAAG,WAAW,GAAG,SAAS,GAAG,QAAQ,GAAG,WAAW,GAAG,UAAU,GAAG,SAAS,CAAC;QAEhG,OAAO,EAAE,OAAO,CAAC;QAEjB;;WAEG;QACH,KAAK,CAAC,EAAE,MAAM,CAAC;QAEf;;WAEG;QACH,eAAe,CAAC,EAAE,MAAM,CAAC;QAEzB;;;WAGG;QACH,cAAc,CAAC,EAAE,MAAM,CAAC;KACzB;CACF;AAED,MAAM,WAAW,oBAAoB;IACnC,IAAI,EAAE,oBAAoB,CAAC,IAAI,CAAC;IAEhC,OAAO,EAAE,OAAO,CAAC;CAClB;AAED,yBAAiB,oBAAoB,CAAC;IACpC,UAAiB,IAAI;QACnB,OAAO,EAAE,MAAM,CAAC;QAEhB,SAAS,EAAE,MAAM,CAAC;QAElB,mBAAmB,EAAE,OAAO,CAAC;QAE7B,UAAU,EAAE,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QAElC,SAAS,EAAE,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;QAEhC;;WAEG;QACH,MAAM,EAAE,MAAM,CAAC;QAEf,cAAc,EAAE;YAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;SAAE,CAAC;QAE3C;;WAEG;QACH,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;QAE5B,MAAM,EAAE,OAAO,GAAG,SAAS,GAAG,WAAW,GAAG,YAAY,GAAG,WAAW,GAAG,QAAQ,GAAG,SAAS,CAAC;QAE9F,QAAQ,EAAE,MAAM,CAAC;QAEjB,SAAS,EAAE,MAAM,CAAC;KACnB;IAED,UAAiB,IAAI,CAAC;QACpB,UAAiB,SAAS;YACxB,QAAQ,EAAE,MAAM,CAAC;YAEjB,QAAQ,EAAE,MAAM,CAAC;YAEjB,IAAI,EAAE,MAAM,CAAC;YAEb,IAAI,EAAE,OAAO,GAAG,OAAO,GAAG,KAAK,CAAC;YAEhC,GAAG,EAAE,MAAM,CAAC;SACb;QAED,UAAiB,QAAQ;YACvB,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;YAE5B,QAAQ,EAAE,SAAS,GAAG,WAAW,GAAG,SAAS,GAAG,QAAQ,GAAG,WAAW,GAAG,UAAU,GAAG,SAAS,CAAC;YAEhG,cAAc,EAAE,MAAM,GAAG,IAAI,CAAC;YAE9B;;eAEG;YACH,eAAe,EAAE,MAAM,GAAG,IAAI,CAAC;YAE/B,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;YAE3B,MAAM,EAAE,OAAO,GAAG,SAAS,GAAG,WAAW,GAAG,YAAY,GAAG,WAAW,GAAG,QAAQ,GAAG,SAAS,CAAC;YAE9F,cAAc,EAAE,MAAM,GAAG,IAAI,CAAC;SAC/B;KACF;CACF;AAED,MAAM,WAAW,gBAAgB;IAC/B,KAAK,EAAE,KAAK,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC;IAEpC,OAAO,EAAE,OAAO,CAAC;IAEjB;;OAEG;IACH,KAAK,EAAE,MAAM,CAAC;CACf;AAED,yBAAiB,gBAAgB,CAAC;IAChC,UAAiB,IAAI;QACnB,OAAO,EAAE,MAAM,CAAC;QAEhB,SAAS,EAAE,MAAM,CAAC;QAElB,mBAAmB,EAAE,OAAO,CAAC;QAE7B,UAAU,EAAE,KAAK,CAAC,IAAI,CAAC,SAAS,CAAC,CAAC;QAElC,SAAS,EAAE,KAAK,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC;QAEhC;;WAEG;QACH,MAAM,EAAE,MAAM,CAAC;QAEf,cAAc,EAAE;YAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;SAAE,CAAC;QAE3C;;WAEG;QACH,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;QAE5B,MAAM,EAAE,OAAO,GAAG,SAAS,GAAG,WAAW,GAAG,YAAY,GAAG,WAAW,GAAG,QAAQ,GAAG,SAAS,CAAC;QAE9F,QAAQ,EAAE,MAAM,CAAC;QAEjB,SAAS,EAAE,MAAM,CAAC;KACnB;IAED,UAAiB,IAAI,CAAC;QACpB,UAAiB,SAAS;YACxB,QAAQ,EAAE,MAAM,CAAC;YAEjB,QAAQ,EAAE,MAAM,CAAC;YAEjB,IAAI,EAAE,MAAM,CAAC;YAEb,IAAI,EAAE,OAAO,GAAG,OAAO,GAAG,KAAK,CAAC;YAEhC,GAAG,EAAE,MAAM,CAAC;SACb;QAED,UAAiB,QAAQ;YACvB,YAAY,EAAE,MAAM,GAAG,IAAI,CAAC;YAE5B,QAAQ,EAAE,SAAS,GAAG,WAAW,GAAG,SAAS,GAAG,QAAQ,GAAG,WAAW,GAAG,UAAU,GAAG,SAAS,CAAC;YAEhG,cAAc,EAAE,MAAM,GAAG,IAAI,CAAC;YAE9B;;eAEG;YACH,eAAe,EAAE,MAAM,GAAG,IAAI,CAAC;YAE/B,WAAW,EAAE,MAAM,GAAG,IAAI,CAAC;YAE3B,MAAM,EAAE,OAAO,GAAG,SAAS,GAAG,WAAW,GAAG,YAAY,GAAG,WAAW,GAAG,QAAQ,GAAG,SAAS,CAAC;YAE9F,cAAc,EAAE,MAAM,GAAG,IAAI,CAAC;SAC/B;KACF;CACF;AAED,MAAM,WAAW,kBAAkB;IACjC,OAAO,EAAE,OAAO,CAAC;CAClB;AAED,MAAM,WAAW,gBAAgB;IAC/B;;OAEG;IACH,OAAO,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,SAAS,EAAE,KAAK,CAAC,gBAAgB,CAAC,QAAQ,CAAC,CAAC;IAE5C;;OAEG;IACH,UAAU,CAAC,EAAE,KAAK,CAAC,gBAAgB,CAAC,SAAS,CAAC,CAAC;IAE/C;;OAEG;IACH,UAAU,CAAC,EAAE,OAAO,CAAC;IAErB;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;OAEG;IACH,QAAQ,CAAC,EAAE,MAAM,CAAC;CACnB;AAED,yBAAiB,gBAAgB,CAAC;IAChC,UAAiB,QAAQ;QACvB;;WAEG;QACH,SAAS,EAAE,MAAM,CAAC;QAElB,QAAQ,EAAE,SAAS,GAAG,WAAW,GAAG,SAAS,GAAG,QAAQ,GAAG,WAAW,GAAG,UAAU,GAAG,SAAS,CAAC;QAEhG;;;;WAIG;QACH,oBAAoB,CAAC,EAAE;YAAE,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAAA;SAAE,CAAC;KACnD;IAED,UAAiB,SAAS;QACxB,IAAI,EAAE,OAAO,GAAG,OAAO,GAAG,KAAK,CAAC;QAEhC,GAAG,EAAE,MAAM,CAAC;QAEZ;;;WAGG;QACH,SAAS,CAAC,EAAE,MAAM,CAAC;KACpB;CACF;AAED,MAAM,WAAW,cAAc;IAC7B;;OAEG;IACH,YAAY,CAAC,EAAE,MAAM,CAAC;IAEtB;;OAEG;IACH,aAAa,CAAC,EAAE,MAAM,CAAC;IAEvB;;OAEG;IACH,KAAK,CAAC,EAAE,MAAM,CAAC;IAEf;;OAEG;IACH,MAAM,CAAC,EAAE,MAAM,CAAC;IAEhB;;OAEG;IACH,QAAQ,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,WAAW,GAAG,SAAS,GAAG,QAAQ,GAAG,WAAW,GAAG,UAAU,GAAG,SAAS,CAAC,CAAC;IAExG;;OAEG;IACH,cAAc,CAAC,EAAE,MAAM,CAAC;IAExB;;OAEG;IACH,eAAe,CAAC,EAAE,MAAM,CAAC;IAEzB,IAAI,CAAC,EAAE,KAAK,GAAG,MAAM,CAAC;IAEtB,MAAM,CAAC,EAAE,OAAO,GAAG,SAAS,GAAG,WAAW,GAAG,YAAY,GAAG,WAAW,GAAG,QAAQ,GAAG,SAAS,CAAC;CAChG;AAID,MAAM,CAAC,OAAO,WAAW,KAAK,CAAC;IAC7B,OAAO,EACL,KAAK,MAAM,IAAI,MAAM,EACrB,KAAK,kBAAkB,IAAI,kBAAkB,EAC7C,KAAK,oBAAoB,IAAI,oBAAoB,EACjD,KAAK,gBAAgB,IAAI,gBAAgB,EACzC,KAAK,kBAAkB,IAAI,kBAAkB,EAC7C,KAAK,gBAAgB,IAAI,gBAAgB,EACzC,KAAK,cAAc,IAAI,cAAc,GACtC,CAAC;IAEF,OAAO,EACL,SAAS,IAAI,SAAS,EACtB,KAAK,qBAAqB,IAAI,qBAAqB,EACnD,KAAK,uBAAuB,IAAI,uBAAuB,EACvD,KAAK,2BAA2B,IAAI,2BAA2B,EAC/D,KAAK,yBAAyB,IAAI,yBAAyB,GAC5D,CAAC;CACH"}