@firedrill-tools/unified 0.1.1

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 (61) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +242 -0
  3. package/firedrill/agent.target.json +17 -0
  4. package/firedrill/baseline.scenario.json +5 -0
  5. package/firedrill/bounds.scenario.json +23 -0
  6. package/firedrill/conformance.suite.json +23 -0
  7. package/firedrill/large-channels.scenario.json +4251 -0
  8. package/firedrill/many-workspaces.scenario.json +1623 -0
  9. package/firedrill/rate-limited.scenario.json +11 -0
  10. package/firedrill/tools/unified/behavior.mjs +69 -0
  11. package/firedrill/tools/unified/lib/assoc.mjs +61 -0
  12. package/firedrill/tools/unified/lib/enums.mjs +14 -0
  13. package/firedrill/tools/unified/lib/errors.mjs +50 -0
  14. package/firedrill/tools/unified/lib/events.mjs +27 -0
  15. package/firedrill/tools/unified/lib/identity.mjs +59 -0
  16. package/firedrill/tools/unified/lib/query.mjs +154 -0
  17. package/firedrill/tools/unified/lib/shapes.mjs +176 -0
  18. package/firedrill/tools/unified/lib/store.mjs +75 -0
  19. package/firedrill/tools/unified/lib/time.mjs +59 -0
  20. package/firedrill/tools/unified/lib/util.mjs +92 -0
  21. package/firedrill/tools/unified/lib/validate.mjs +114 -0
  22. package/firedrill/tools/unified/lib/wire.mjs +120 -0
  23. package/firedrill/tools/unified/ops/channels.mjs +45 -0
  24. package/firedrill/tools/unified/ops/connections.mjs +151 -0
  25. package/firedrill/tools/unified/ops/crm.mjs +126 -0
  26. package/firedrill/tools/unified/ops/deals.mjs +123 -0
  27. package/firedrill/tools/unified/ops/messages.mjs +133 -0
  28. package/firedrill/tools/unified/ops/pipelines.mjs +20 -0
  29. package/firedrill/tools/unified/ops/resource.mjs +114 -0
  30. package/firedrill/tools/unified/unified.tool.json +14068 -0
  31. package/firedrill/unified-bounds.drill.json +148 -0
  32. package/firedrill/unified-connections-flow.drill.json +226 -0
  33. package/firedrill/unified-crm-flow.drill.json +576 -0
  34. package/firedrill/unified-denied.drill.json +83 -0
  35. package/firedrill/unified-error-coverage.drill.json +528 -0
  36. package/firedrill/unified-fresh-actor.drill.json +83 -0
  37. package/firedrill/unified-invalid-workspace.drill.json +933 -0
  38. package/firedrill/unified-large-channels.drill.json +68 -0
  39. package/firedrill/unified-many-workspaces.drill.json +943 -0
  40. package/firedrill/unified-mcp-core-aliases.drill.json +113 -0
  41. package/firedrill/unified-messaging-flow.drill.json +326 -0
  42. package/firedrill/unified-rate-limited.drill.json +933 -0
  43. package/firedrill/unified-scoped-token.drill.json +113 -0
  44. package/firedrill/unified-size-bounds.drill.json +263 -0
  45. package/firedrill/unified-write-committed-lost.drill.json +107 -0
  46. package/firedrill/unified-write-unavailable.drill.json +528 -0
  47. package/firedrill/world.json +2958 -0
  48. package/firedrill/write-committed-lost.scenario.json +11 -0
  49. package/firedrill/write-unavailable.scenario.json +11 -0
  50. package/firedrill.json +5 -0
  51. package/package.json +52 -0
  52. package/starter.json +2446 -0
  53. package/test/conformance.mjs +39 -0
  54. package/test/flows/connections.mjs +87 -0
  55. package/test/flows/coverage.mjs +64 -0
  56. package/test/flows/crm.mjs +124 -0
  57. package/test/flows/faults.mjs +82 -0
  58. package/test/flows/identity.mjs +84 -0
  59. package/test/flows/messaging.mjs +82 -0
  60. package/test/flows/size.mjs +71 -0
  61. package/test/lib.mjs +133 -0
@@ -0,0 +1,933 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "id": "unified-invalid-workspace",
4
+ "title": "A key claiming an unknown workspace fails UNAUTHORIZED inside the Tool on every one of the 29 operations",
5
+ "targetId": "conformance-agent",
6
+ "scenarioId": "baseline",
7
+ "actorId": "ghost",
8
+ "task": {
9
+ "instruction": "Run the ghost flow against the synthetic Unified.to Tool and fail loudly on any unexpected status, header or body."
10
+ },
11
+ "assertions": [
12
+ {
13
+ "id": "connections-list-error-91",
14
+ "kind": "operation.count",
15
+ "operation": {
16
+ "packageId": "unified",
17
+ "operationId": "connections.list"
18
+ },
19
+ "outcomes": [
20
+ "tool_error"
21
+ ],
22
+ "comparison": {
23
+ "operator": "greater_than_or_equal",
24
+ "value": 1
25
+ }
26
+ },
27
+ {
28
+ "id": "connections-get-error-92",
29
+ "kind": "operation.count",
30
+ "operation": {
31
+ "packageId": "unified",
32
+ "operationId": "connections.get"
33
+ },
34
+ "outcomes": [
35
+ "tool_error"
36
+ ],
37
+ "comparison": {
38
+ "operator": "greater_than_or_equal",
39
+ "value": 1
40
+ }
41
+ },
42
+ {
43
+ "id": "connections-create-error-93",
44
+ "kind": "operation.count",
45
+ "operation": {
46
+ "packageId": "unified",
47
+ "operationId": "connections.create"
48
+ },
49
+ "outcomes": [
50
+ "tool_error"
51
+ ],
52
+ "comparison": {
53
+ "operator": "greater_than_or_equal",
54
+ "value": 1
55
+ }
56
+ },
57
+ {
58
+ "id": "connections-update-error-94",
59
+ "kind": "operation.count",
60
+ "operation": {
61
+ "packageId": "unified",
62
+ "operationId": "connections.update"
63
+ },
64
+ "outcomes": [
65
+ "tool_error"
66
+ ],
67
+ "comparison": {
68
+ "operator": "greater_than_or_equal",
69
+ "value": 1
70
+ }
71
+ },
72
+ {
73
+ "id": "connections-remove-error-95",
74
+ "kind": "operation.count",
75
+ "operation": {
76
+ "packageId": "unified",
77
+ "operationId": "connections.remove"
78
+ },
79
+ "outcomes": [
80
+ "tool_error"
81
+ ],
82
+ "comparison": {
83
+ "operator": "greater_than_or_equal",
84
+ "value": 1
85
+ }
86
+ },
87
+ {
88
+ "id": "contacts-list-error-96",
89
+ "kind": "operation.count",
90
+ "operation": {
91
+ "packageId": "unified",
92
+ "operationId": "contacts.list"
93
+ },
94
+ "outcomes": [
95
+ "tool_error"
96
+ ],
97
+ "comparison": {
98
+ "operator": "greater_than_or_equal",
99
+ "value": 1
100
+ }
101
+ },
102
+ {
103
+ "id": "contacts-get-error-97",
104
+ "kind": "operation.count",
105
+ "operation": {
106
+ "packageId": "unified",
107
+ "operationId": "contacts.get"
108
+ },
109
+ "outcomes": [
110
+ "tool_error"
111
+ ],
112
+ "comparison": {
113
+ "operator": "greater_than_or_equal",
114
+ "value": 1
115
+ }
116
+ },
117
+ {
118
+ "id": "contacts-create-error-98",
119
+ "kind": "operation.count",
120
+ "operation": {
121
+ "packageId": "unified",
122
+ "operationId": "contacts.create"
123
+ },
124
+ "outcomes": [
125
+ "tool_error"
126
+ ],
127
+ "comparison": {
128
+ "operator": "greater_than_or_equal",
129
+ "value": 1
130
+ }
131
+ },
132
+ {
133
+ "id": "contacts-update-error-99",
134
+ "kind": "operation.count",
135
+ "operation": {
136
+ "packageId": "unified",
137
+ "operationId": "contacts.update"
138
+ },
139
+ "outcomes": [
140
+ "tool_error"
141
+ ],
142
+ "comparison": {
143
+ "operator": "greater_than_or_equal",
144
+ "value": 1
145
+ }
146
+ },
147
+ {
148
+ "id": "contacts-remove-error-100",
149
+ "kind": "operation.count",
150
+ "operation": {
151
+ "packageId": "unified",
152
+ "operationId": "contacts.remove"
153
+ },
154
+ "outcomes": [
155
+ "tool_error"
156
+ ],
157
+ "comparison": {
158
+ "operator": "greater_than_or_equal",
159
+ "value": 1
160
+ }
161
+ },
162
+ {
163
+ "id": "companies-list-error-101",
164
+ "kind": "operation.count",
165
+ "operation": {
166
+ "packageId": "unified",
167
+ "operationId": "companies.list"
168
+ },
169
+ "outcomes": [
170
+ "tool_error"
171
+ ],
172
+ "comparison": {
173
+ "operator": "greater_than_or_equal",
174
+ "value": 1
175
+ }
176
+ },
177
+ {
178
+ "id": "companies-get-error-102",
179
+ "kind": "operation.count",
180
+ "operation": {
181
+ "packageId": "unified",
182
+ "operationId": "companies.get"
183
+ },
184
+ "outcomes": [
185
+ "tool_error"
186
+ ],
187
+ "comparison": {
188
+ "operator": "greater_than_or_equal",
189
+ "value": 1
190
+ }
191
+ },
192
+ {
193
+ "id": "companies-create-error-103",
194
+ "kind": "operation.count",
195
+ "operation": {
196
+ "packageId": "unified",
197
+ "operationId": "companies.create"
198
+ },
199
+ "outcomes": [
200
+ "tool_error"
201
+ ],
202
+ "comparison": {
203
+ "operator": "greater_than_or_equal",
204
+ "value": 1
205
+ }
206
+ },
207
+ {
208
+ "id": "companies-update-error-104",
209
+ "kind": "operation.count",
210
+ "operation": {
211
+ "packageId": "unified",
212
+ "operationId": "companies.update"
213
+ },
214
+ "outcomes": [
215
+ "tool_error"
216
+ ],
217
+ "comparison": {
218
+ "operator": "greater_than_or_equal",
219
+ "value": 1
220
+ }
221
+ },
222
+ {
223
+ "id": "companies-remove-error-105",
224
+ "kind": "operation.count",
225
+ "operation": {
226
+ "packageId": "unified",
227
+ "operationId": "companies.remove"
228
+ },
229
+ "outcomes": [
230
+ "tool_error"
231
+ ],
232
+ "comparison": {
233
+ "operator": "greater_than_or_equal",
234
+ "value": 1
235
+ }
236
+ },
237
+ {
238
+ "id": "deals-list-error-106",
239
+ "kind": "operation.count",
240
+ "operation": {
241
+ "packageId": "unified",
242
+ "operationId": "deals.list"
243
+ },
244
+ "outcomes": [
245
+ "tool_error"
246
+ ],
247
+ "comparison": {
248
+ "operator": "greater_than_or_equal",
249
+ "value": 1
250
+ }
251
+ },
252
+ {
253
+ "id": "deals-get-error-107",
254
+ "kind": "operation.count",
255
+ "operation": {
256
+ "packageId": "unified",
257
+ "operationId": "deals.get"
258
+ },
259
+ "outcomes": [
260
+ "tool_error"
261
+ ],
262
+ "comparison": {
263
+ "operator": "greater_than_or_equal",
264
+ "value": 1
265
+ }
266
+ },
267
+ {
268
+ "id": "deals-create-error-108",
269
+ "kind": "operation.count",
270
+ "operation": {
271
+ "packageId": "unified",
272
+ "operationId": "deals.create"
273
+ },
274
+ "outcomes": [
275
+ "tool_error"
276
+ ],
277
+ "comparison": {
278
+ "operator": "greater_than_or_equal",
279
+ "value": 1
280
+ }
281
+ },
282
+ {
283
+ "id": "deals-update-error-109",
284
+ "kind": "operation.count",
285
+ "operation": {
286
+ "packageId": "unified",
287
+ "operationId": "deals.update"
288
+ },
289
+ "outcomes": [
290
+ "tool_error"
291
+ ],
292
+ "comparison": {
293
+ "operator": "greater_than_or_equal",
294
+ "value": 1
295
+ }
296
+ },
297
+ {
298
+ "id": "deals-remove-error-110",
299
+ "kind": "operation.count",
300
+ "operation": {
301
+ "packageId": "unified",
302
+ "operationId": "deals.remove"
303
+ },
304
+ "outcomes": [
305
+ "tool_error"
306
+ ],
307
+ "comparison": {
308
+ "operator": "greater_than_or_equal",
309
+ "value": 1
310
+ }
311
+ },
312
+ {
313
+ "id": "pipelines-list-error-111",
314
+ "kind": "operation.count",
315
+ "operation": {
316
+ "packageId": "unified",
317
+ "operationId": "pipelines.list"
318
+ },
319
+ "outcomes": [
320
+ "tool_error"
321
+ ],
322
+ "comparison": {
323
+ "operator": "greater_than_or_equal",
324
+ "value": 1
325
+ }
326
+ },
327
+ {
328
+ "id": "pipelines-get-error-112",
329
+ "kind": "operation.count",
330
+ "operation": {
331
+ "packageId": "unified",
332
+ "operationId": "pipelines.get"
333
+ },
334
+ "outcomes": [
335
+ "tool_error"
336
+ ],
337
+ "comparison": {
338
+ "operator": "greater_than_or_equal",
339
+ "value": 1
340
+ }
341
+ },
342
+ {
343
+ "id": "channels-list-error-113",
344
+ "kind": "operation.count",
345
+ "operation": {
346
+ "packageId": "unified",
347
+ "operationId": "channels.list"
348
+ },
349
+ "outcomes": [
350
+ "tool_error"
351
+ ],
352
+ "comparison": {
353
+ "operator": "greater_than_or_equal",
354
+ "value": 1
355
+ }
356
+ },
357
+ {
358
+ "id": "channels-get-error-114",
359
+ "kind": "operation.count",
360
+ "operation": {
361
+ "packageId": "unified",
362
+ "operationId": "channels.get"
363
+ },
364
+ "outcomes": [
365
+ "tool_error"
366
+ ],
367
+ "comparison": {
368
+ "operator": "greater_than_or_equal",
369
+ "value": 1
370
+ }
371
+ },
372
+ {
373
+ "id": "messages-list-error-115",
374
+ "kind": "operation.count",
375
+ "operation": {
376
+ "packageId": "unified",
377
+ "operationId": "messages.list"
378
+ },
379
+ "outcomes": [
380
+ "tool_error"
381
+ ],
382
+ "comparison": {
383
+ "operator": "greater_than_or_equal",
384
+ "value": 1
385
+ }
386
+ },
387
+ {
388
+ "id": "messages-get-error-116",
389
+ "kind": "operation.count",
390
+ "operation": {
391
+ "packageId": "unified",
392
+ "operationId": "messages.get"
393
+ },
394
+ "outcomes": [
395
+ "tool_error"
396
+ ],
397
+ "comparison": {
398
+ "operator": "greater_than_or_equal",
399
+ "value": 1
400
+ }
401
+ },
402
+ {
403
+ "id": "messages-create-error-117",
404
+ "kind": "operation.count",
405
+ "operation": {
406
+ "packageId": "unified",
407
+ "operationId": "messages.create"
408
+ },
409
+ "outcomes": [
410
+ "tool_error"
411
+ ],
412
+ "comparison": {
413
+ "operator": "greater_than_or_equal",
414
+ "value": 1
415
+ }
416
+ },
417
+ {
418
+ "id": "messages-update-error-118",
419
+ "kind": "operation.count",
420
+ "operation": {
421
+ "packageId": "unified",
422
+ "operationId": "messages.update"
423
+ },
424
+ "outcomes": [
425
+ "tool_error"
426
+ ],
427
+ "comparison": {
428
+ "operator": "greater_than_or_equal",
429
+ "value": 1
430
+ }
431
+ },
432
+ {
433
+ "id": "messages-remove-error-119",
434
+ "kind": "operation.count",
435
+ "operation": {
436
+ "packageId": "unified",
437
+ "operationId": "messages.remove"
438
+ },
439
+ "outcomes": [
440
+ "tool_error"
441
+ ],
442
+ "comparison": {
443
+ "operator": "greater_than_or_equal",
444
+ "value": 1
445
+ }
446
+ },
447
+ {
448
+ "id": "connections-list-ok-120",
449
+ "kind": "operation.count",
450
+ "operation": {
451
+ "packageId": "unified",
452
+ "operationId": "connections.list"
453
+ },
454
+ "outcomes": [
455
+ "ok"
456
+ ],
457
+ "comparison": {
458
+ "operator": "equals",
459
+ "value": 0
460
+ }
461
+ },
462
+ {
463
+ "id": "connections-get-ok-121",
464
+ "kind": "operation.count",
465
+ "operation": {
466
+ "packageId": "unified",
467
+ "operationId": "connections.get"
468
+ },
469
+ "outcomes": [
470
+ "ok"
471
+ ],
472
+ "comparison": {
473
+ "operator": "equals",
474
+ "value": 0
475
+ }
476
+ },
477
+ {
478
+ "id": "connections-create-ok-122",
479
+ "kind": "operation.count",
480
+ "operation": {
481
+ "packageId": "unified",
482
+ "operationId": "connections.create"
483
+ },
484
+ "outcomes": [
485
+ "ok"
486
+ ],
487
+ "comparison": {
488
+ "operator": "equals",
489
+ "value": 0
490
+ }
491
+ },
492
+ {
493
+ "id": "connections-update-ok-123",
494
+ "kind": "operation.count",
495
+ "operation": {
496
+ "packageId": "unified",
497
+ "operationId": "connections.update"
498
+ },
499
+ "outcomes": [
500
+ "ok"
501
+ ],
502
+ "comparison": {
503
+ "operator": "equals",
504
+ "value": 0
505
+ }
506
+ },
507
+ {
508
+ "id": "connections-remove-ok-124",
509
+ "kind": "operation.count",
510
+ "operation": {
511
+ "packageId": "unified",
512
+ "operationId": "connections.remove"
513
+ },
514
+ "outcomes": [
515
+ "ok"
516
+ ],
517
+ "comparison": {
518
+ "operator": "equals",
519
+ "value": 0
520
+ }
521
+ },
522
+ {
523
+ "id": "contacts-list-ok-125",
524
+ "kind": "operation.count",
525
+ "operation": {
526
+ "packageId": "unified",
527
+ "operationId": "contacts.list"
528
+ },
529
+ "outcomes": [
530
+ "ok"
531
+ ],
532
+ "comparison": {
533
+ "operator": "equals",
534
+ "value": 0
535
+ }
536
+ },
537
+ {
538
+ "id": "contacts-get-ok-126",
539
+ "kind": "operation.count",
540
+ "operation": {
541
+ "packageId": "unified",
542
+ "operationId": "contacts.get"
543
+ },
544
+ "outcomes": [
545
+ "ok"
546
+ ],
547
+ "comparison": {
548
+ "operator": "equals",
549
+ "value": 0
550
+ }
551
+ },
552
+ {
553
+ "id": "contacts-create-ok-127",
554
+ "kind": "operation.count",
555
+ "operation": {
556
+ "packageId": "unified",
557
+ "operationId": "contacts.create"
558
+ },
559
+ "outcomes": [
560
+ "ok"
561
+ ],
562
+ "comparison": {
563
+ "operator": "equals",
564
+ "value": 0
565
+ }
566
+ },
567
+ {
568
+ "id": "contacts-update-ok-128",
569
+ "kind": "operation.count",
570
+ "operation": {
571
+ "packageId": "unified",
572
+ "operationId": "contacts.update"
573
+ },
574
+ "outcomes": [
575
+ "ok"
576
+ ],
577
+ "comparison": {
578
+ "operator": "equals",
579
+ "value": 0
580
+ }
581
+ },
582
+ {
583
+ "id": "contacts-remove-ok-129",
584
+ "kind": "operation.count",
585
+ "operation": {
586
+ "packageId": "unified",
587
+ "operationId": "contacts.remove"
588
+ },
589
+ "outcomes": [
590
+ "ok"
591
+ ],
592
+ "comparison": {
593
+ "operator": "equals",
594
+ "value": 0
595
+ }
596
+ },
597
+ {
598
+ "id": "companies-list-ok-130",
599
+ "kind": "operation.count",
600
+ "operation": {
601
+ "packageId": "unified",
602
+ "operationId": "companies.list"
603
+ },
604
+ "outcomes": [
605
+ "ok"
606
+ ],
607
+ "comparison": {
608
+ "operator": "equals",
609
+ "value": 0
610
+ }
611
+ },
612
+ {
613
+ "id": "companies-get-ok-131",
614
+ "kind": "operation.count",
615
+ "operation": {
616
+ "packageId": "unified",
617
+ "operationId": "companies.get"
618
+ },
619
+ "outcomes": [
620
+ "ok"
621
+ ],
622
+ "comparison": {
623
+ "operator": "equals",
624
+ "value": 0
625
+ }
626
+ },
627
+ {
628
+ "id": "companies-create-ok-132",
629
+ "kind": "operation.count",
630
+ "operation": {
631
+ "packageId": "unified",
632
+ "operationId": "companies.create"
633
+ },
634
+ "outcomes": [
635
+ "ok"
636
+ ],
637
+ "comparison": {
638
+ "operator": "equals",
639
+ "value": 0
640
+ }
641
+ },
642
+ {
643
+ "id": "companies-update-ok-133",
644
+ "kind": "operation.count",
645
+ "operation": {
646
+ "packageId": "unified",
647
+ "operationId": "companies.update"
648
+ },
649
+ "outcomes": [
650
+ "ok"
651
+ ],
652
+ "comparison": {
653
+ "operator": "equals",
654
+ "value": 0
655
+ }
656
+ },
657
+ {
658
+ "id": "companies-remove-ok-134",
659
+ "kind": "operation.count",
660
+ "operation": {
661
+ "packageId": "unified",
662
+ "operationId": "companies.remove"
663
+ },
664
+ "outcomes": [
665
+ "ok"
666
+ ],
667
+ "comparison": {
668
+ "operator": "equals",
669
+ "value": 0
670
+ }
671
+ },
672
+ {
673
+ "id": "deals-list-ok-135",
674
+ "kind": "operation.count",
675
+ "operation": {
676
+ "packageId": "unified",
677
+ "operationId": "deals.list"
678
+ },
679
+ "outcomes": [
680
+ "ok"
681
+ ],
682
+ "comparison": {
683
+ "operator": "equals",
684
+ "value": 0
685
+ }
686
+ },
687
+ {
688
+ "id": "deals-get-ok-136",
689
+ "kind": "operation.count",
690
+ "operation": {
691
+ "packageId": "unified",
692
+ "operationId": "deals.get"
693
+ },
694
+ "outcomes": [
695
+ "ok"
696
+ ],
697
+ "comparison": {
698
+ "operator": "equals",
699
+ "value": 0
700
+ }
701
+ },
702
+ {
703
+ "id": "deals-create-ok-137",
704
+ "kind": "operation.count",
705
+ "operation": {
706
+ "packageId": "unified",
707
+ "operationId": "deals.create"
708
+ },
709
+ "outcomes": [
710
+ "ok"
711
+ ],
712
+ "comparison": {
713
+ "operator": "equals",
714
+ "value": 0
715
+ }
716
+ },
717
+ {
718
+ "id": "deals-update-ok-138",
719
+ "kind": "operation.count",
720
+ "operation": {
721
+ "packageId": "unified",
722
+ "operationId": "deals.update"
723
+ },
724
+ "outcomes": [
725
+ "ok"
726
+ ],
727
+ "comparison": {
728
+ "operator": "equals",
729
+ "value": 0
730
+ }
731
+ },
732
+ {
733
+ "id": "deals-remove-ok-139",
734
+ "kind": "operation.count",
735
+ "operation": {
736
+ "packageId": "unified",
737
+ "operationId": "deals.remove"
738
+ },
739
+ "outcomes": [
740
+ "ok"
741
+ ],
742
+ "comparison": {
743
+ "operator": "equals",
744
+ "value": 0
745
+ }
746
+ },
747
+ {
748
+ "id": "pipelines-list-ok-140",
749
+ "kind": "operation.count",
750
+ "operation": {
751
+ "packageId": "unified",
752
+ "operationId": "pipelines.list"
753
+ },
754
+ "outcomes": [
755
+ "ok"
756
+ ],
757
+ "comparison": {
758
+ "operator": "equals",
759
+ "value": 0
760
+ }
761
+ },
762
+ {
763
+ "id": "pipelines-get-ok-141",
764
+ "kind": "operation.count",
765
+ "operation": {
766
+ "packageId": "unified",
767
+ "operationId": "pipelines.get"
768
+ },
769
+ "outcomes": [
770
+ "ok"
771
+ ],
772
+ "comparison": {
773
+ "operator": "equals",
774
+ "value": 0
775
+ }
776
+ },
777
+ {
778
+ "id": "channels-list-ok-142",
779
+ "kind": "operation.count",
780
+ "operation": {
781
+ "packageId": "unified",
782
+ "operationId": "channels.list"
783
+ },
784
+ "outcomes": [
785
+ "ok"
786
+ ],
787
+ "comparison": {
788
+ "operator": "equals",
789
+ "value": 0
790
+ }
791
+ },
792
+ {
793
+ "id": "channels-get-ok-143",
794
+ "kind": "operation.count",
795
+ "operation": {
796
+ "packageId": "unified",
797
+ "operationId": "channels.get"
798
+ },
799
+ "outcomes": [
800
+ "ok"
801
+ ],
802
+ "comparison": {
803
+ "operator": "equals",
804
+ "value": 0
805
+ }
806
+ },
807
+ {
808
+ "id": "messages-list-ok-144",
809
+ "kind": "operation.count",
810
+ "operation": {
811
+ "packageId": "unified",
812
+ "operationId": "messages.list"
813
+ },
814
+ "outcomes": [
815
+ "ok"
816
+ ],
817
+ "comparison": {
818
+ "operator": "equals",
819
+ "value": 0
820
+ }
821
+ },
822
+ {
823
+ "id": "messages-get-ok-145",
824
+ "kind": "operation.count",
825
+ "operation": {
826
+ "packageId": "unified",
827
+ "operationId": "messages.get"
828
+ },
829
+ "outcomes": [
830
+ "ok"
831
+ ],
832
+ "comparison": {
833
+ "operator": "equals",
834
+ "value": 0
835
+ }
836
+ },
837
+ {
838
+ "id": "messages-create-ok-146",
839
+ "kind": "operation.count",
840
+ "operation": {
841
+ "packageId": "unified",
842
+ "operationId": "messages.create"
843
+ },
844
+ "outcomes": [
845
+ "ok"
846
+ ],
847
+ "comparison": {
848
+ "operator": "equals",
849
+ "value": 0
850
+ }
851
+ },
852
+ {
853
+ "id": "messages-update-ok-147",
854
+ "kind": "operation.count",
855
+ "operation": {
856
+ "packageId": "unified",
857
+ "operationId": "messages.update"
858
+ },
859
+ "outcomes": [
860
+ "ok"
861
+ ],
862
+ "comparison": {
863
+ "operator": "equals",
864
+ "value": 0
865
+ }
866
+ },
867
+ {
868
+ "id": "messages-remove-ok-148",
869
+ "kind": "operation.count",
870
+ "operation": {
871
+ "packageId": "unified",
872
+ "operationId": "messages.remove"
873
+ },
874
+ "outcomes": [
875
+ "ok"
876
+ ],
877
+ "comparison": {
878
+ "operator": "equals",
879
+ "value": 0
880
+ }
881
+ },
882
+ {
883
+ "id": "connections-count-149",
884
+ "kind": "state.count",
885
+ "packageId": "unified",
886
+ "namespace": "connections",
887
+ "comparison": {
888
+ "operator": "equals",
889
+ "value": 9
890
+ }
891
+ },
892
+ {
893
+ "id": "contacts-count-150",
894
+ "kind": "state.count",
895
+ "packageId": "unified",
896
+ "namespace": "contacts",
897
+ "comparison": {
898
+ "operator": "equals",
899
+ "value": 10
900
+ }
901
+ },
902
+ {
903
+ "id": "companies-count-151",
904
+ "kind": "state.count",
905
+ "packageId": "unified",
906
+ "namespace": "companies",
907
+ "comparison": {
908
+ "operator": "equals",
909
+ "value": 5
910
+ }
911
+ },
912
+ {
913
+ "id": "deals-count-152",
914
+ "kind": "state.count",
915
+ "packageId": "unified",
916
+ "namespace": "deals",
917
+ "comparison": {
918
+ "operator": "equals",
919
+ "value": 6
920
+ }
921
+ },
922
+ {
923
+ "id": "messages-count-153",
924
+ "kind": "state.count",
925
+ "packageId": "unified",
926
+ "namespace": "messages",
927
+ "comparison": {
928
+ "operator": "equals",
929
+ "value": 20
930
+ }
931
+ }
932
+ ]
933
+ }