@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.
- package/LICENSE +201 -0
- package/README.md +242 -0
- package/firedrill/agent.target.json +17 -0
- package/firedrill/baseline.scenario.json +5 -0
- package/firedrill/bounds.scenario.json +23 -0
- package/firedrill/conformance.suite.json +23 -0
- package/firedrill/large-channels.scenario.json +4251 -0
- package/firedrill/many-workspaces.scenario.json +1623 -0
- package/firedrill/rate-limited.scenario.json +11 -0
- package/firedrill/tools/unified/behavior.mjs +69 -0
- package/firedrill/tools/unified/lib/assoc.mjs +61 -0
- package/firedrill/tools/unified/lib/enums.mjs +14 -0
- package/firedrill/tools/unified/lib/errors.mjs +50 -0
- package/firedrill/tools/unified/lib/events.mjs +27 -0
- package/firedrill/tools/unified/lib/identity.mjs +59 -0
- package/firedrill/tools/unified/lib/query.mjs +154 -0
- package/firedrill/tools/unified/lib/shapes.mjs +176 -0
- package/firedrill/tools/unified/lib/store.mjs +75 -0
- package/firedrill/tools/unified/lib/time.mjs +59 -0
- package/firedrill/tools/unified/lib/util.mjs +92 -0
- package/firedrill/tools/unified/lib/validate.mjs +114 -0
- package/firedrill/tools/unified/lib/wire.mjs +120 -0
- package/firedrill/tools/unified/ops/channels.mjs +45 -0
- package/firedrill/tools/unified/ops/connections.mjs +151 -0
- package/firedrill/tools/unified/ops/crm.mjs +126 -0
- package/firedrill/tools/unified/ops/deals.mjs +123 -0
- package/firedrill/tools/unified/ops/messages.mjs +133 -0
- package/firedrill/tools/unified/ops/pipelines.mjs +20 -0
- package/firedrill/tools/unified/ops/resource.mjs +114 -0
- package/firedrill/tools/unified/unified.tool.json +14068 -0
- package/firedrill/unified-bounds.drill.json +148 -0
- package/firedrill/unified-connections-flow.drill.json +226 -0
- package/firedrill/unified-crm-flow.drill.json +576 -0
- package/firedrill/unified-denied.drill.json +83 -0
- package/firedrill/unified-error-coverage.drill.json +528 -0
- package/firedrill/unified-fresh-actor.drill.json +83 -0
- package/firedrill/unified-invalid-workspace.drill.json +933 -0
- package/firedrill/unified-large-channels.drill.json +68 -0
- package/firedrill/unified-many-workspaces.drill.json +943 -0
- package/firedrill/unified-mcp-core-aliases.drill.json +113 -0
- package/firedrill/unified-messaging-flow.drill.json +326 -0
- package/firedrill/unified-rate-limited.drill.json +933 -0
- package/firedrill/unified-scoped-token.drill.json +113 -0
- package/firedrill/unified-size-bounds.drill.json +263 -0
- package/firedrill/unified-write-committed-lost.drill.json +107 -0
- package/firedrill/unified-write-unavailable.drill.json +528 -0
- package/firedrill/world.json +2958 -0
- package/firedrill/write-committed-lost.scenario.json +11 -0
- package/firedrill/write-unavailable.scenario.json +11 -0
- package/firedrill.json +5 -0
- package/package.json +52 -0
- package/starter.json +2446 -0
- package/test/conformance.mjs +39 -0
- package/test/flows/connections.mjs +87 -0
- package/test/flows/coverage.mjs +64 -0
- package/test/flows/crm.mjs +124 -0
- package/test/flows/faults.mjs +82 -0
- package/test/flows/identity.mjs +84 -0
- package/test/flows/messaging.mjs +82 -0
- package/test/flows/size.mjs +71 -0
- package/test/lib.mjs +133 -0
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
{
|
|
2
|
+
"schemaVersion": 1,
|
|
3
|
+
"id": "write-committed-lost",
|
|
4
|
+
"title": "messages.create commits the message and both events, then answers 500: a blind retry posts a duplicate",
|
|
5
|
+
"faults": [
|
|
6
|
+
{
|
|
7
|
+
"packageId": "unified",
|
|
8
|
+
"faultId": "write-committed-lost"
|
|
9
|
+
}
|
|
10
|
+
]
|
|
11
|
+
}
|
package/firedrill.json
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@firedrill-tools/unified",
|
|
3
|
+
"version": "0.1.1",
|
|
4
|
+
"description": "Synthetic Unified.to workspace (connections, unified CRM and Messaging REST API) as a Firedrill Tool",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "Apache-2.0",
|
|
7
|
+
"engines": {
|
|
8
|
+
"node": ">=20.19"
|
|
9
|
+
},
|
|
10
|
+
"exports": {
|
|
11
|
+
"./package.json": "./package.json"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"firedrill",
|
|
15
|
+
"test",
|
|
16
|
+
"firedrill.json",
|
|
17
|
+
"starter.json",
|
|
18
|
+
"README.md",
|
|
19
|
+
"LICENSE"
|
|
20
|
+
],
|
|
21
|
+
"firedrill": {
|
|
22
|
+
"layer": "tool-pack",
|
|
23
|
+
"tool": "firedrill/tools/unified/unified.tool.json",
|
|
24
|
+
"starter": "starter.json",
|
|
25
|
+
"lifecycle": "active",
|
|
26
|
+
"conformance": {
|
|
27
|
+
"schemaVersion": 1,
|
|
28
|
+
"project": "firedrill.json",
|
|
29
|
+
"suite": "conformance"
|
|
30
|
+
}
|
|
31
|
+
},
|
|
32
|
+
"scripts": {
|
|
33
|
+
"validate": "firedrill validate",
|
|
34
|
+
"test": "firedrill tool test unified"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@firedrill-run/cli": "0.1.0-rc.1",
|
|
38
|
+
"@firedrill-run/tool-sdk": "0.1.0-rc.1"
|
|
39
|
+
},
|
|
40
|
+
"repository": {
|
|
41
|
+
"type": "git",
|
|
42
|
+
"url": "git+https://github.com/firedrill-tools/firedrill-tools.git",
|
|
43
|
+
"directory": "packages/unified"
|
|
44
|
+
},
|
|
45
|
+
"bugs": {
|
|
46
|
+
"url": "https://github.com/firedrill-tools/firedrill-tools/issues"
|
|
47
|
+
},
|
|
48
|
+
"homepage": "https://github.com/firedrill-tools/firedrill-tools/tree/main/packages/unified#readme",
|
|
49
|
+
"publishConfig": {
|
|
50
|
+
"access": "public"
|
|
51
|
+
}
|
|
52
|
+
}
|