@flowconsole/sdk 0.0.0-beta-20260127184843

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/.jsii ADDED
@@ -0,0 +1,1164 @@
1
+ {
2
+ "author": {
3
+ "email": "v@flowconsole.tech",
4
+ "name": "Vladimir Golubev",
5
+ "roles": [
6
+ "author"
7
+ ]
8
+ },
9
+ "description": "FlowConsole SDK",
10
+ "docs": {
11
+ "stability": "stable"
12
+ },
13
+ "homepage": "https://github.com/slackmaster9999/flowconsole.git",
14
+ "jsiiVersion": "5.9.23 (build 29252a0)",
15
+ "keywords": [],
16
+ "license": "MIT",
17
+ "metadata": {
18
+ "jsii": {
19
+ "pacmak": {
20
+ "hasDefaultInterfaces": true
21
+ }
22
+ },
23
+ "tscRootDir": "/home/runner/work/flowconsole/flowconsole/src/sdk"
24
+ },
25
+ "name": "@flowconsole/sdk",
26
+ "readme": {
27
+ "markdown": "# FlowConsole SDK\n\nFlowConsole SDK contains the typed DSL for describing systems, components, and flows that the FlowConsole engine renders. It is built with `jsii`, so the same definitions are published to npm, PyPI, Maven, NuGet, and Go modules.\n\n## Install\n- Node.js: `npm install @flowconsole/sdk`\n- Python (PyPI): `pip install flowconsole-sdk`\n- .NET: `dotnet add package FlowConsole.Sdk`\n- Maven:\n ```xml\n <dependency>\n <groupId>flowconsole</groupId>\n <artifactId>sdk</artifactId>\n <version>0.0.1</version>\n </dependency>\n ```\n- Go: `go get github.com/slackmaster9999/flowconsole`\n\n## Quick start (TypeScript)\nWhen executed inside the FlowConsole runtime (as used by the playground/app), the SDK attaches flow helpers to your entities so you can describe interactions fluently:\n\n```ts\nimport { User, ReactApp, RestApi, Postgres } from '@flowconsole/sdk';\n\nconst user: User = { name: 'Customer', description: 'end user' };\nconst frontApp: ReactApp = { name: 'Customer Dashboard', description: 'React app' };\nconst restApi: RestApi = { name: 'Backend', description: 'Java REST API' };\nconst db: Postgres = { name: 'main_db', description: 'Database' };\n\nuser\n .sendsRequestTo(frontApp, 'opens in browser')\n .then(frontApp)\n .sendsRequestTo(restApi, 'GET /api/v1/dashboard/:id')\n .then(restApi)\n .sendsRequestTo(db, 'fetch dashboard data');\n```\n\n## Python package\n- Package name: `flowconsole-sdk`, import module: `flowconsole`.\n- Generated via `jsii-pacmak`; property names mirror the TypeScript definitions.\n- The package ships the DSL types; use it alongside the FlowConsole engine that evaluates the objects you build.\n\n## Building multi-language packages\n1. Install dependencies from the repo root: `pnpm install`.\n2. Build the TypeScript sources: `pnpm --filter @flowconsole/sdk build`.\n3. Generate language-specific artifacts (including PyPI): `pnpm --filter @flowconsole/sdk package`. Artifacts are written to `src/sdk/dist/` (for JavaScript) and language subfolders such as `dist/python` (PyPI wheel/sdist). This README is used as the long description on PyPI.\n\n## License\nMIT — see `src/sdk/LICENSE`.\n"
28
+ },
29
+ "repository": {
30
+ "directory": "src/sdk",
31
+ "type": "git",
32
+ "url": "https://github.com/slackmaster9999/flowconsole.git"
33
+ },
34
+ "schema": "jsii/0.10.0",
35
+ "targets": {
36
+ "dotnet": {
37
+ "iconUrl": "https://raw.githubusercontent.com/slackmaster9999/flowconsole/main/src/docs/public/_static/favicons/android-chrome-512x512.png",
38
+ "namespace": "FlowConsole",
39
+ "packageId": "FlowConsole.Sdk"
40
+ },
41
+ "go": {
42
+ "moduleName": "github.com/slackmaster9999/flowconsole",
43
+ "packageName": "flowconsole"
44
+ },
45
+ "java": {
46
+ "maven": {
47
+ "artifactId": "sdk",
48
+ "groupId": "flowconsole"
49
+ },
50
+ "package": "flowconsole.sdk"
51
+ },
52
+ "js": {
53
+ "npm": "@flowconsole/sdk"
54
+ },
55
+ "python": {
56
+ "distName": "flowconsole-sdk",
57
+ "module": "flowconsole"
58
+ }
59
+ },
60
+ "types": {
61
+ "@flowconsole/sdk.BackgroundJob": {
62
+ "assembly": "@flowconsole/sdk",
63
+ "base": "@flowconsole/sdk.Component",
64
+ "docs": {
65
+ "stability": "stable"
66
+ },
67
+ "fqn": "@flowconsole/sdk.BackgroundJob",
68
+ "initializer": {
69
+ "docs": {
70
+ "stability": "stable"
71
+ },
72
+ "locationInModule": {
73
+ "filename": "flowconsole-sdk.ts",
74
+ "line": 38
75
+ },
76
+ "parameters": [
77
+ {
78
+ "name": "args",
79
+ "type": {
80
+ "fqn": "@flowconsole/sdk.ComponentArgs"
81
+ }
82
+ }
83
+ ]
84
+ },
85
+ "kind": "class",
86
+ "locationInModule": {
87
+ "filename": "flowconsole-sdk.ts",
88
+ "line": 115
89
+ },
90
+ "name": "BackgroundJob",
91
+ "properties": [
92
+ {
93
+ "docs": {
94
+ "stability": "stable"
95
+ },
96
+ "locationInModule": {
97
+ "filename": "flowconsole-sdk.ts",
98
+ "line": 116
99
+ },
100
+ "name": "schedule",
101
+ "optional": true,
102
+ "type": {
103
+ "primitive": "string"
104
+ }
105
+ }
106
+ ],
107
+ "symbolId": "flowconsole-sdk:BackgroundJob"
108
+ },
109
+ "@flowconsole/sdk.Component": {
110
+ "assembly": "@flowconsole/sdk",
111
+ "docs": {
112
+ "stability": "stable"
113
+ },
114
+ "fqn": "@flowconsole/sdk.Component",
115
+ "initializer": {
116
+ "docs": {
117
+ "stability": "stable"
118
+ },
119
+ "locationInModule": {
120
+ "filename": "flowconsole-sdk.ts",
121
+ "line": 38
122
+ },
123
+ "parameters": [
124
+ {
125
+ "name": "args",
126
+ "type": {
127
+ "fqn": "@flowconsole/sdk.ComponentArgs"
128
+ }
129
+ }
130
+ ]
131
+ },
132
+ "kind": "class",
133
+ "locationInModule": {
134
+ "filename": "flowconsole-sdk.ts",
135
+ "line": 27
136
+ },
137
+ "methods": [
138
+ {
139
+ "docs": {
140
+ "stability": "stable"
141
+ },
142
+ "locationInModule": {
143
+ "filename": "flowconsole-sdk.ts",
144
+ "line": 62
145
+ },
146
+ "name": "executesRequest",
147
+ "parameters": [
148
+ {
149
+ "name": "action",
150
+ "type": {
151
+ "primitive": "string"
152
+ }
153
+ }
154
+ ],
155
+ "returns": {
156
+ "type": {
157
+ "fqn": "@flowconsole/sdk.Component"
158
+ }
159
+ }
160
+ },
161
+ {
162
+ "docs": {
163
+ "stability": "stable"
164
+ },
165
+ "locationInModule": {
166
+ "filename": "flowconsole-sdk.ts",
167
+ "line": 57
168
+ },
169
+ "name": "getDataFrom",
170
+ "parameters": [
171
+ {
172
+ "name": "target",
173
+ "type": {
174
+ "fqn": "@flowconsole/sdk.Component"
175
+ }
176
+ },
177
+ {
178
+ "name": "label",
179
+ "type": {
180
+ "primitive": "string"
181
+ }
182
+ },
183
+ {
184
+ "name": "options",
185
+ "optional": true,
186
+ "type": {
187
+ "fqn": "@flowconsole/sdk.ConnectionOptions"
188
+ }
189
+ }
190
+ ],
191
+ "returns": {
192
+ "type": {
193
+ "fqn": "@flowconsole/sdk.Component"
194
+ }
195
+ }
196
+ },
197
+ {
198
+ "docs": {
199
+ "stability": "stable"
200
+ },
201
+ "locationInModule": {
202
+ "filename": "flowconsole-sdk.ts",
203
+ "line": 48
204
+ },
205
+ "name": "sendsRequest",
206
+ "parameters": [
207
+ {
208
+ "name": "target",
209
+ "type": {
210
+ "fqn": "@flowconsole/sdk.Component"
211
+ }
212
+ },
213
+ {
214
+ "name": "label",
215
+ "type": {
216
+ "primitive": "string"
217
+ }
218
+ },
219
+ {
220
+ "name": "options",
221
+ "optional": true,
222
+ "type": {
223
+ "fqn": "@flowconsole/sdk.ConnectionOptions"
224
+ }
225
+ }
226
+ ],
227
+ "returns": {
228
+ "type": {
229
+ "fqn": "@flowconsole/sdk.Component"
230
+ }
231
+ }
232
+ },
233
+ {
234
+ "docs": {
235
+ "stability": "stable"
236
+ },
237
+ "locationInModule": {
238
+ "filename": "flowconsole-sdk.ts",
239
+ "line": 52
240
+ },
241
+ "name": "then",
242
+ "parameters": [
243
+ {
244
+ "name": "target",
245
+ "type": {
246
+ "fqn": "@flowconsole/sdk.Component"
247
+ }
248
+ }
249
+ ],
250
+ "returns": {
251
+ "type": {
252
+ "fqn": "@flowconsole/sdk.Component"
253
+ }
254
+ }
255
+ }
256
+ ],
257
+ "name": "Component",
258
+ "properties": [
259
+ {
260
+ "docs": {
261
+ "stability": "stable"
262
+ },
263
+ "locationInModule": {
264
+ "filename": "flowconsole-sdk.ts",
265
+ "line": 35
266
+ },
267
+ "name": "badge",
268
+ "optional": true,
269
+ "type": {
270
+ "primitive": "string"
271
+ }
272
+ },
273
+ {
274
+ "docs": {
275
+ "stability": "stable"
276
+ },
277
+ "locationInModule": {
278
+ "filename": "flowconsole-sdk.ts",
279
+ "line": 32
280
+ },
281
+ "name": "belongsTo",
282
+ "optional": true,
283
+ "type": {
284
+ "union": {
285
+ "types": [
286
+ {
287
+ "fqn": "@flowconsole/sdk.Container"
288
+ },
289
+ {
290
+ "fqn": "@flowconsole/sdk.ComputerSystem"
291
+ }
292
+ ]
293
+ }
294
+ }
295
+ },
296
+ {
297
+ "docs": {
298
+ "stability": "stable"
299
+ },
300
+ "locationInModule": {
301
+ "filename": "flowconsole-sdk.ts",
302
+ "line": 31
303
+ },
304
+ "name": "description",
305
+ "optional": true,
306
+ "type": {
307
+ "primitive": "string"
308
+ }
309
+ },
310
+ {
311
+ "docs": {
312
+ "stability": "stable"
313
+ },
314
+ "locationInModule": {
315
+ "filename": "flowconsole-sdk.ts",
316
+ "line": 29
317
+ },
318
+ "name": "id",
319
+ "optional": true,
320
+ "type": {
321
+ "primitive": "string"
322
+ }
323
+ },
324
+ {
325
+ "docs": {
326
+ "stability": "stable"
327
+ },
328
+ "locationInModule": {
329
+ "filename": "flowconsole-sdk.ts",
330
+ "line": 30
331
+ },
332
+ "name": "name",
333
+ "optional": true,
334
+ "type": {
335
+ "primitive": "string"
336
+ }
337
+ },
338
+ {
339
+ "docs": {
340
+ "stability": "stable"
341
+ },
342
+ "locationInModule": {
343
+ "filename": "flowconsole-sdk.ts",
344
+ "line": 33
345
+ },
346
+ "name": "root",
347
+ "optional": true,
348
+ "type": {
349
+ "union": {
350
+ "types": [
351
+ {
352
+ "fqn": "@flowconsole/sdk.Container"
353
+ },
354
+ {
355
+ "fqn": "@flowconsole/sdk.ComputerSystem"
356
+ }
357
+ ]
358
+ }
359
+ }
360
+ },
361
+ {
362
+ "docs": {
363
+ "stability": "stable"
364
+ },
365
+ "locationInModule": {
366
+ "filename": "flowconsole-sdk.ts",
367
+ "line": 34
368
+ },
369
+ "name": "tags",
370
+ "optional": true,
371
+ "type": {
372
+ "collection": {
373
+ "elementtype": {
374
+ "primitive": "string"
375
+ },
376
+ "kind": "array"
377
+ }
378
+ }
379
+ },
380
+ {
381
+ "docs": {
382
+ "stability": "stable"
383
+ },
384
+ "locationInModule": {
385
+ "filename": "flowconsole-sdk.ts",
386
+ "line": 36
387
+ },
388
+ "name": "tone",
389
+ "optional": true,
390
+ "type": {
391
+ "primitive": "string"
392
+ }
393
+ }
394
+ ],
395
+ "symbolId": "flowconsole-sdk:Component"
396
+ },
397
+ "@flowconsole/sdk.ComponentArgs": {
398
+ "assembly": "@flowconsole/sdk",
399
+ "datatype": true,
400
+ "docs": {
401
+ "stability": "stable"
402
+ },
403
+ "fqn": "@flowconsole/sdk.ComponentArgs",
404
+ "kind": "interface",
405
+ "locationInModule": {
406
+ "filename": "flowconsole-sdk.ts",
407
+ "line": 13
408
+ },
409
+ "name": "ComponentArgs",
410
+ "properties": [
411
+ {
412
+ "abstract": true,
413
+ "docs": {
414
+ "stability": "stable"
415
+ },
416
+ "immutable": true,
417
+ "locationInModule": {
418
+ "filename": "flowconsole-sdk.ts",
419
+ "line": 19
420
+ },
421
+ "name": "badge",
422
+ "optional": true,
423
+ "type": {
424
+ "primitive": "string"
425
+ }
426
+ },
427
+ {
428
+ "abstract": true,
429
+ "docs": {
430
+ "stability": "stable"
431
+ },
432
+ "immutable": true,
433
+ "locationInModule": {
434
+ "filename": "flowconsole-sdk.ts",
435
+ "line": 17
436
+ },
437
+ "name": "belongsTo",
438
+ "optional": true,
439
+ "type": {
440
+ "union": {
441
+ "types": [
442
+ {
443
+ "fqn": "@flowconsole/sdk.Container"
444
+ },
445
+ {
446
+ "fqn": "@flowconsole/sdk.ComputerSystem"
447
+ }
448
+ ]
449
+ }
450
+ }
451
+ },
452
+ {
453
+ "abstract": true,
454
+ "docs": {
455
+ "stability": "stable"
456
+ },
457
+ "immutable": true,
458
+ "locationInModule": {
459
+ "filename": "flowconsole-sdk.ts",
460
+ "line": 16
461
+ },
462
+ "name": "description",
463
+ "optional": true,
464
+ "type": {
465
+ "primitive": "string"
466
+ }
467
+ },
468
+ {
469
+ "abstract": true,
470
+ "docs": {
471
+ "stability": "stable"
472
+ },
473
+ "immutable": true,
474
+ "locationInModule": {
475
+ "filename": "flowconsole-sdk.ts",
476
+ "line": 14
477
+ },
478
+ "name": "id",
479
+ "optional": true,
480
+ "type": {
481
+ "primitive": "string"
482
+ }
483
+ },
484
+ {
485
+ "abstract": true,
486
+ "docs": {
487
+ "stability": "stable"
488
+ },
489
+ "immutable": true,
490
+ "locationInModule": {
491
+ "filename": "flowconsole-sdk.ts",
492
+ "line": 15
493
+ },
494
+ "name": "name",
495
+ "optional": true,
496
+ "type": {
497
+ "primitive": "string"
498
+ }
499
+ },
500
+ {
501
+ "abstract": true,
502
+ "docs": {
503
+ "stability": "stable"
504
+ },
505
+ "immutable": true,
506
+ "locationInModule": {
507
+ "filename": "flowconsole-sdk.ts",
508
+ "line": 18
509
+ },
510
+ "name": "tags",
511
+ "optional": true,
512
+ "type": {
513
+ "collection": {
514
+ "elementtype": {
515
+ "primitive": "string"
516
+ },
517
+ "kind": "array"
518
+ }
519
+ }
520
+ },
521
+ {
522
+ "abstract": true,
523
+ "docs": {
524
+ "stability": "stable"
525
+ },
526
+ "immutable": true,
527
+ "locationInModule": {
528
+ "filename": "flowconsole-sdk.ts",
529
+ "line": 20
530
+ },
531
+ "name": "tone",
532
+ "optional": true,
533
+ "type": {
534
+ "primitive": "string"
535
+ }
536
+ }
537
+ ],
538
+ "symbolId": "flowconsole-sdk:ComponentArgs"
539
+ },
540
+ "@flowconsole/sdk.ComputerSystem": {
541
+ "assembly": "@flowconsole/sdk",
542
+ "base": "@flowconsole/sdk.Component",
543
+ "docs": {
544
+ "stability": "stable"
545
+ },
546
+ "fqn": "@flowconsole/sdk.ComputerSystem",
547
+ "initializer": {
548
+ "docs": {
549
+ "stability": "stable"
550
+ },
551
+ "locationInModule": {
552
+ "filename": "flowconsole-sdk.ts",
553
+ "line": 38
554
+ },
555
+ "parameters": [
556
+ {
557
+ "name": "args",
558
+ "type": {
559
+ "fqn": "@flowconsole/sdk.ComponentArgs"
560
+ }
561
+ }
562
+ ]
563
+ },
564
+ "kind": "class",
565
+ "locationInModule": {
566
+ "filename": "flowconsole-sdk.ts",
567
+ "line": 77
568
+ },
569
+ "name": "ComputerSystem",
570
+ "properties": [
571
+ {
572
+ "docs": {
573
+ "stability": "stable"
574
+ },
575
+ "locationInModule": {
576
+ "filename": "flowconsole-sdk.ts",
577
+ "line": 78
578
+ },
579
+ "name": "domain",
580
+ "optional": true,
581
+ "type": {
582
+ "primitive": "string"
583
+ }
584
+ }
585
+ ],
586
+ "symbolId": "flowconsole-sdk:ComputerSystem"
587
+ },
588
+ "@flowconsole/sdk.ConnectionOptions": {
589
+ "assembly": "@flowconsole/sdk",
590
+ "docs": {
591
+ "stability": "stable"
592
+ },
593
+ "fqn": "@flowconsole/sdk.ConnectionOptions",
594
+ "initializer": {
595
+ "docs": {
596
+ "stability": "stable"
597
+ }
598
+ },
599
+ "kind": "class",
600
+ "locationInModule": {
601
+ "filename": "flowconsole-sdk.ts",
602
+ "line": 4
603
+ },
604
+ "name": "ConnectionOptions",
605
+ "properties": [
606
+ {
607
+ "docs": {
608
+ "stability": "stable"
609
+ },
610
+ "locationInModule": {
611
+ "filename": "flowconsole-sdk.ts",
612
+ "line": 5
613
+ },
614
+ "name": "detail",
615
+ "optional": true,
616
+ "type": {
617
+ "primitive": "string"
618
+ }
619
+ },
620
+ {
621
+ "docs": {
622
+ "stability": "stable"
623
+ },
624
+ "locationInModule": {
625
+ "filename": "flowconsole-sdk.ts",
626
+ "line": 7
627
+ },
628
+ "name": "icon",
629
+ "optional": true,
630
+ "type": {
631
+ "primitive": "string"
632
+ }
633
+ },
634
+ {
635
+ "docs": {
636
+ "stability": "stable"
637
+ },
638
+ "locationInModule": {
639
+ "filename": "flowconsole-sdk.ts",
640
+ "line": 6
641
+ },
642
+ "name": "kind",
643
+ "optional": true,
644
+ "type": {
645
+ "primitive": "string"
646
+ }
647
+ },
648
+ {
649
+ "docs": {
650
+ "stability": "stable"
651
+ },
652
+ "locationInModule": {
653
+ "filename": "flowconsole-sdk.ts",
654
+ "line": 8
655
+ },
656
+ "name": "muted",
657
+ "optional": true,
658
+ "type": {
659
+ "primitive": "boolean"
660
+ }
661
+ }
662
+ ],
663
+ "symbolId": "flowconsole-sdk:ConnectionOptions"
664
+ },
665
+ "@flowconsole/sdk.Container": {
666
+ "assembly": "@flowconsole/sdk",
667
+ "base": "@flowconsole/sdk.Component",
668
+ "docs": {
669
+ "stability": "stable"
670
+ },
671
+ "fqn": "@flowconsole/sdk.Container",
672
+ "initializer": {
673
+ "docs": {
674
+ "stability": "stable"
675
+ },
676
+ "locationInModule": {
677
+ "filename": "flowconsole-sdk.ts",
678
+ "line": 38
679
+ },
680
+ "parameters": [
681
+ {
682
+ "name": "args",
683
+ "type": {
684
+ "fqn": "@flowconsole/sdk.ComponentArgs"
685
+ }
686
+ }
687
+ ]
688
+ },
689
+ "kind": "class",
690
+ "locationInModule": {
691
+ "filename": "flowconsole-sdk.ts",
692
+ "line": 81
693
+ },
694
+ "name": "Container",
695
+ "properties": [
696
+ {
697
+ "docs": {
698
+ "stability": "stable"
699
+ },
700
+ "locationInModule": {
701
+ "filename": "flowconsole-sdk.ts",
702
+ "line": 82
703
+ },
704
+ "name": "technology",
705
+ "optional": true,
706
+ "type": {
707
+ "primitive": "string"
708
+ }
709
+ }
710
+ ],
711
+ "symbolId": "flowconsole-sdk:Container"
712
+ },
713
+ "@flowconsole/sdk.ExternalService": {
714
+ "assembly": "@flowconsole/sdk",
715
+ "base": "@flowconsole/sdk.Component",
716
+ "docs": {
717
+ "stability": "stable"
718
+ },
719
+ "fqn": "@flowconsole/sdk.ExternalService",
720
+ "initializer": {
721
+ "docs": {
722
+ "stability": "stable"
723
+ },
724
+ "locationInModule": {
725
+ "filename": "flowconsole-sdk.ts",
726
+ "line": 38
727
+ },
728
+ "parameters": [
729
+ {
730
+ "name": "args",
731
+ "type": {
732
+ "fqn": "@flowconsole/sdk.ComponentArgs"
733
+ }
734
+ }
735
+ ]
736
+ },
737
+ "kind": "class",
738
+ "locationInModule": {
739
+ "filename": "flowconsole-sdk.ts",
740
+ "line": 111
741
+ },
742
+ "name": "ExternalService",
743
+ "properties": [
744
+ {
745
+ "docs": {
746
+ "stability": "stable"
747
+ },
748
+ "locationInModule": {
749
+ "filename": "flowconsole-sdk.ts",
750
+ "line": 112
751
+ },
752
+ "name": "vendor",
753
+ "optional": true,
754
+ "type": {
755
+ "primitive": "string"
756
+ }
757
+ }
758
+ ],
759
+ "symbolId": "flowconsole-sdk:ExternalService"
760
+ },
761
+ "@flowconsole/sdk.KafkaTopic": {
762
+ "assembly": "@flowconsole/sdk",
763
+ "base": "@flowconsole/sdk.Component",
764
+ "docs": {
765
+ "stability": "stable"
766
+ },
767
+ "fqn": "@flowconsole/sdk.KafkaTopic",
768
+ "initializer": {
769
+ "docs": {
770
+ "stability": "stable"
771
+ },
772
+ "locationInModule": {
773
+ "filename": "flowconsole-sdk.ts",
774
+ "line": 38
775
+ },
776
+ "parameters": [
777
+ {
778
+ "name": "args",
779
+ "type": {
780
+ "fqn": "@flowconsole/sdk.ComponentArgs"
781
+ }
782
+ }
783
+ ]
784
+ },
785
+ "kind": "class",
786
+ "locationInModule": {
787
+ "filename": "flowconsole-sdk.ts",
788
+ "line": 103
789
+ },
790
+ "name": "KafkaTopic",
791
+ "properties": [
792
+ {
793
+ "docs": {
794
+ "stability": "stable"
795
+ },
796
+ "locationInModule": {
797
+ "filename": "flowconsole-sdk.ts",
798
+ "line": 104
799
+ },
800
+ "name": "partitionCount",
801
+ "optional": true,
802
+ "type": {
803
+ "primitive": "number"
804
+ }
805
+ }
806
+ ],
807
+ "symbolId": "flowconsole-sdk:KafkaTopic"
808
+ },
809
+ "@flowconsole/sdk.MessageQueue": {
810
+ "assembly": "@flowconsole/sdk",
811
+ "base": "@flowconsole/sdk.Component",
812
+ "docs": {
813
+ "stability": "stable"
814
+ },
815
+ "fqn": "@flowconsole/sdk.MessageQueue",
816
+ "initializer": {
817
+ "docs": {
818
+ "stability": "stable"
819
+ },
820
+ "locationInModule": {
821
+ "filename": "flowconsole-sdk.ts",
822
+ "line": 38
823
+ },
824
+ "parameters": [
825
+ {
826
+ "name": "args",
827
+ "type": {
828
+ "fqn": "@flowconsole/sdk.ComponentArgs"
829
+ }
830
+ }
831
+ ]
832
+ },
833
+ "kind": "class",
834
+ "locationInModule": {
835
+ "filename": "flowconsole-sdk.ts",
836
+ "line": 107
837
+ },
838
+ "name": "MessageQueue",
839
+ "properties": [
840
+ {
841
+ "docs": {
842
+ "stability": "stable"
843
+ },
844
+ "locationInModule": {
845
+ "filename": "flowconsole-sdk.ts",
846
+ "line": 108
847
+ },
848
+ "name": "throughput",
849
+ "optional": true,
850
+ "type": {
851
+ "primitive": "string"
852
+ }
853
+ }
854
+ ],
855
+ "symbolId": "flowconsole-sdk:MessageQueue"
856
+ },
857
+ "@flowconsole/sdk.Postgres": {
858
+ "assembly": "@flowconsole/sdk",
859
+ "base": "@flowconsole/sdk.Component",
860
+ "docs": {
861
+ "stability": "stable"
862
+ },
863
+ "fqn": "@flowconsole/sdk.Postgres",
864
+ "initializer": {
865
+ "docs": {
866
+ "stability": "stable"
867
+ },
868
+ "locationInModule": {
869
+ "filename": "flowconsole-sdk.ts",
870
+ "line": 38
871
+ },
872
+ "parameters": [
873
+ {
874
+ "name": "args",
875
+ "type": {
876
+ "fqn": "@flowconsole/sdk.ComponentArgs"
877
+ }
878
+ }
879
+ ]
880
+ },
881
+ "kind": "class",
882
+ "locationInModule": {
883
+ "filename": "flowconsole-sdk.ts",
884
+ "line": 99
885
+ },
886
+ "name": "Postgres",
887
+ "properties": [
888
+ {
889
+ "docs": {
890
+ "stability": "stable"
891
+ },
892
+ "locationInModule": {
893
+ "filename": "flowconsole-sdk.ts",
894
+ "line": 100
895
+ },
896
+ "name": "schema",
897
+ "optional": true,
898
+ "type": {
899
+ "primitive": "string"
900
+ }
901
+ }
902
+ ],
903
+ "symbolId": "flowconsole-sdk:Postgres"
904
+ },
905
+ "@flowconsole/sdk.ReactApp": {
906
+ "assembly": "@flowconsole/sdk",
907
+ "base": "@flowconsole/sdk.Component",
908
+ "docs": {
909
+ "stability": "stable"
910
+ },
911
+ "fqn": "@flowconsole/sdk.ReactApp",
912
+ "initializer": {
913
+ "docs": {
914
+ "stability": "stable"
915
+ },
916
+ "locationInModule": {
917
+ "filename": "flowconsole-sdk.ts",
918
+ "line": 38
919
+ },
920
+ "parameters": [
921
+ {
922
+ "name": "args",
923
+ "type": {
924
+ "fqn": "@flowconsole/sdk.ComponentArgs"
925
+ }
926
+ }
927
+ ]
928
+ },
929
+ "kind": "class",
930
+ "locationInModule": {
931
+ "filename": "flowconsole-sdk.ts",
932
+ "line": 85
933
+ },
934
+ "name": "ReactApp",
935
+ "properties": [
936
+ {
937
+ "docs": {
938
+ "stability": "stable"
939
+ },
940
+ "locationInModule": {
941
+ "filename": "flowconsole-sdk.ts",
942
+ "line": 86
943
+ },
944
+ "name": "framework",
945
+ "optional": true,
946
+ "type": {
947
+ "primitive": "string"
948
+ }
949
+ },
950
+ {
951
+ "docs": {
952
+ "stability": "stable"
953
+ },
954
+ "locationInModule": {
955
+ "filename": "flowconsole-sdk.ts",
956
+ "line": 87
957
+ },
958
+ "name": "url",
959
+ "optional": true,
960
+ "type": {
961
+ "primitive": "string"
962
+ }
963
+ }
964
+ ],
965
+ "symbolId": "flowconsole-sdk:ReactApp"
966
+ },
967
+ "@flowconsole/sdk.Redis": {
968
+ "assembly": "@flowconsole/sdk",
969
+ "base": "@flowconsole/sdk.Component",
970
+ "docs": {
971
+ "stability": "stable"
972
+ },
973
+ "fqn": "@flowconsole/sdk.Redis",
974
+ "initializer": {
975
+ "docs": {
976
+ "stability": "stable"
977
+ },
978
+ "locationInModule": {
979
+ "filename": "flowconsole-sdk.ts",
980
+ "line": 38
981
+ },
982
+ "parameters": [
983
+ {
984
+ "name": "args",
985
+ "type": {
986
+ "fqn": "@flowconsole/sdk.ComponentArgs"
987
+ }
988
+ }
989
+ ]
990
+ },
991
+ "kind": "class",
992
+ "locationInModule": {
993
+ "filename": "flowconsole-sdk.ts",
994
+ "line": 95
995
+ },
996
+ "name": "Redis",
997
+ "properties": [
998
+ {
999
+ "docs": {
1000
+ "stability": "stable"
1001
+ },
1002
+ "locationInModule": {
1003
+ "filename": "flowconsole-sdk.ts",
1004
+ "line": 96
1005
+ },
1006
+ "name": "cluster",
1007
+ "optional": true,
1008
+ "type": {
1009
+ "primitive": "string"
1010
+ }
1011
+ }
1012
+ ],
1013
+ "symbolId": "flowconsole-sdk:Redis"
1014
+ },
1015
+ "@flowconsole/sdk.RestApi": {
1016
+ "assembly": "@flowconsole/sdk",
1017
+ "base": "@flowconsole/sdk.Component",
1018
+ "docs": {
1019
+ "stability": "stable"
1020
+ },
1021
+ "fqn": "@flowconsole/sdk.RestApi",
1022
+ "initializer": {
1023
+ "docs": {
1024
+ "stability": "stable"
1025
+ },
1026
+ "locationInModule": {
1027
+ "filename": "flowconsole-sdk.ts",
1028
+ "line": 38
1029
+ },
1030
+ "parameters": [
1031
+ {
1032
+ "name": "args",
1033
+ "type": {
1034
+ "fqn": "@flowconsole/sdk.ComponentArgs"
1035
+ }
1036
+ }
1037
+ ]
1038
+ },
1039
+ "kind": "class",
1040
+ "locationInModule": {
1041
+ "filename": "flowconsole-sdk.ts",
1042
+ "line": 90
1043
+ },
1044
+ "name": "RestApi",
1045
+ "properties": [
1046
+ {
1047
+ "docs": {
1048
+ "stability": "stable"
1049
+ },
1050
+ "locationInModule": {
1051
+ "filename": "flowconsole-sdk.ts",
1052
+ "line": 92
1053
+ },
1054
+ "name": "endpoint",
1055
+ "optional": true,
1056
+ "type": {
1057
+ "primitive": "string"
1058
+ }
1059
+ },
1060
+ {
1061
+ "docs": {
1062
+ "stability": "stable"
1063
+ },
1064
+ "locationInModule": {
1065
+ "filename": "flowconsole-sdk.ts",
1066
+ "line": 91
1067
+ },
1068
+ "name": "method",
1069
+ "optional": true,
1070
+ "type": {
1071
+ "primitive": "string"
1072
+ }
1073
+ }
1074
+ ],
1075
+ "symbolId": "flowconsole-sdk:RestApi"
1076
+ },
1077
+ "@flowconsole/sdk.User": {
1078
+ "assembly": "@flowconsole/sdk",
1079
+ "base": "@flowconsole/sdk.Component",
1080
+ "docs": {
1081
+ "stability": "stable"
1082
+ },
1083
+ "fqn": "@flowconsole/sdk.User",
1084
+ "initializer": {
1085
+ "docs": {
1086
+ "stability": "stable"
1087
+ },
1088
+ "locationInModule": {
1089
+ "filename": "flowconsole-sdk.ts",
1090
+ "line": 71
1091
+ },
1092
+ "parameters": [
1093
+ {
1094
+ "name": "args",
1095
+ "type": {
1096
+ "fqn": "@flowconsole/sdk.UserArgs"
1097
+ }
1098
+ }
1099
+ ]
1100
+ },
1101
+ "kind": "class",
1102
+ "locationInModule": {
1103
+ "filename": "flowconsole-sdk.ts",
1104
+ "line": 68
1105
+ },
1106
+ "name": "User",
1107
+ "properties": [
1108
+ {
1109
+ "docs": {
1110
+ "stability": "stable"
1111
+ },
1112
+ "locationInModule": {
1113
+ "filename": "flowconsole-sdk.ts",
1114
+ "line": 69
1115
+ },
1116
+ "name": "role",
1117
+ "optional": true,
1118
+ "type": {
1119
+ "primitive": "string"
1120
+ }
1121
+ }
1122
+ ],
1123
+ "symbolId": "flowconsole-sdk:User"
1124
+ },
1125
+ "@flowconsole/sdk.UserArgs": {
1126
+ "assembly": "@flowconsole/sdk",
1127
+ "datatype": true,
1128
+ "docs": {
1129
+ "stability": "stable"
1130
+ },
1131
+ "fqn": "@flowconsole/sdk.UserArgs",
1132
+ "interfaces": [
1133
+ "@flowconsole/sdk.ComponentArgs"
1134
+ ],
1135
+ "kind": "interface",
1136
+ "locationInModule": {
1137
+ "filename": "flowconsole-sdk.ts",
1138
+ "line": 23
1139
+ },
1140
+ "name": "UserArgs",
1141
+ "properties": [
1142
+ {
1143
+ "abstract": true,
1144
+ "docs": {
1145
+ "stability": "stable"
1146
+ },
1147
+ "immutable": true,
1148
+ "locationInModule": {
1149
+ "filename": "flowconsole-sdk.ts",
1150
+ "line": 24
1151
+ },
1152
+ "name": "role",
1153
+ "optional": true,
1154
+ "type": {
1155
+ "primitive": "string"
1156
+ }
1157
+ }
1158
+ ],
1159
+ "symbolId": "flowconsole-sdk:UserArgs"
1160
+ }
1161
+ },
1162
+ "version": "0.0.1",
1163
+ "fingerprint": "St+m3iVI8aUbqUNppeAljgj8YXYQpdXMIlVTB7sqlnQ="
1164
+ }