@firedrill-tools/quickbooks 0.1.2

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 (81) hide show
  1. package/LICENSE +201 -0
  2. package/README.md +240 -0
  3. package/firedrill/agent.target.json +17 -0
  4. package/firedrill/baseline.scenario.json +2338 -0
  5. package/firedrill/conformance.suite.json +22 -0
  6. package/firedrill/payment-response-lost.scenario.json +2344 -0
  7. package/firedrill/qbo-company-query.drill.json +143 -0
  8. package/firedrill/qbo-customers-items.drill.json +173 -0
  9. package/firedrill/qbo-default-identity.drill.json +53 -0
  10. package/firedrill/qbo-denied.drill.json +53 -0
  11. package/firedrill/qbo-escape-heavy-invoices.drill.json +160 -0
  12. package/firedrill/qbo-invalid-auth.drill.json +398 -0
  13. package/firedrill/qbo-invoice-lifecycle.drill.json +193 -0
  14. package/firedrill/qbo-large-invoice.drill.json +174 -0
  15. package/firedrill/qbo-mcp-shapes.drill.json +503 -0
  16. package/firedrill/qbo-payment-response-lost.drill.json +80 -0
  17. package/firedrill/qbo-payments.drill.json +110 -0
  18. package/firedrill/qbo-reports-only.drill.json +398 -0
  19. package/firedrill/qbo-roles.drill.json +143 -0
  20. package/firedrill/qbo-throttled.drill.json +398 -0
  21. package/firedrill/qbo-tight-limits.drill.json +368 -0
  22. package/firedrill/qbo-write-outage.drill.json +411 -0
  23. package/firedrill/throttled.scenario.json +2344 -0
  24. package/firedrill/tight-limits.scenario.json +2338 -0
  25. package/firedrill/tools/quickbooks/app/assets/ATTRIBUTION.md +33 -0
  26. package/firedrill/tools/quickbooks/app/assets/fonts/OFL.txt +93 -0
  27. package/firedrill/tools/quickbooks/app/assets/intuit-quickbooks.svg +1 -0
  28. package/firedrill/tools/quickbooks/app/assets/quickbooks.svg +1 -0
  29. package/firedrill/tools/quickbooks/app/site/app.js +157 -0
  30. package/firedrill/tools/quickbooks/app/site/assets/fonts/figtree-latin.woff2 +0 -0
  31. package/firedrill/tools/quickbooks/app/site/assets/intuit-quickbooks.svg +1 -0
  32. package/firedrill/tools/quickbooks/app/site/assets/quickbooks.svg +1 -0
  33. package/firedrill/tools/quickbooks/app/site/base.css +107 -0
  34. package/firedrill/tools/quickbooks/app/site/forms.css +85 -0
  35. package/firedrill/tools/quickbooks/app/site/icons.js +73 -0
  36. package/firedrill/tools/quickbooks/app/site/index.html +81 -0
  37. package/firedrill/tools/quickbooks/app/site/nav.css +99 -0
  38. package/firedrill/tools/quickbooks/app/site/store.js +85 -0
  39. package/firedrill/tools/quickbooks/app/site/tables.css +114 -0
  40. package/firedrill/tools/quickbooks/app/site/ui.js +189 -0
  41. package/firedrill/tools/quickbooks/app/site/views/accounts.js +59 -0
  42. package/firedrill/tools/quickbooks/app/site/views/batch-actions.js +116 -0
  43. package/firedrill/tools/quickbooks/app/site/views/batch.js +91 -0
  44. package/firedrill/tools/quickbooks/app/site/views/common.js +87 -0
  45. package/firedrill/tools/quickbooks/app/site/views/customer-detail.js +85 -0
  46. package/firedrill/tools/quickbooks/app/site/views/customer-drawer.js +71 -0
  47. package/firedrill/tools/quickbooks/app/site/views/customers.js +87 -0
  48. package/firedrill/tools/quickbooks/app/site/views/home.js +79 -0
  49. package/firedrill/tools/quickbooks/app/site/views/invoice-actions.js +109 -0
  50. package/firedrill/tools/quickbooks/app/site/views/invoice-editor.js +126 -0
  51. package/firedrill/tools/quickbooks/app/site/views/invoice-lines.js +92 -0
  52. package/firedrill/tools/quickbooks/app/site/views/invoices.js +118 -0
  53. package/firedrill/tools/quickbooks/app/site/views/items.js +105 -0
  54. package/firedrill/tools/quickbooks/app/site/views/payments.js +63 -0
  55. package/firedrill/tools/quickbooks/app/site/views/receive-payment.js +102 -0
  56. package/firedrill/tools/quickbooks/app/site/views/txn-frame.js +25 -0
  57. package/firedrill/tools/quickbooks/behavior.mjs +10 -0
  58. package/firedrill/tools/quickbooks/lib/access.mjs +167 -0
  59. package/firedrill/tools/quickbooks/lib/common.mjs +204 -0
  60. package/firedrill/tools/quickbooks/lib/criteria.mjs +107 -0
  61. package/firedrill/tools/quickbooks/lib/customers.mjs +140 -0
  62. package/firedrill/tools/quickbooks/lib/fields.mjs +157 -0
  63. package/firedrill/tools/quickbooks/lib/handlers-read.mjs +81 -0
  64. package/firedrill/tools/quickbooks/lib/handlers-write.mjs +95 -0
  65. package/firedrill/tools/quickbooks/lib/invoice-draft.mjs +165 -0
  66. package/firedrill/tools/quickbooks/lib/invoices.mjs +229 -0
  67. package/firedrill/tools/quickbooks/lib/items.mjs +117 -0
  68. package/firedrill/tools/quickbooks/lib/like.mjs +49 -0
  69. package/firedrill/tools/quickbooks/lib/payments.mjs +200 -0
  70. package/firedrill/tools/quickbooks/lib/pdf.mjs +96 -0
  71. package/firedrill/tools/quickbooks/lib/query-eval.mjs +178 -0
  72. package/firedrill/tools/quickbooks/lib/query-parse.mjs +229 -0
  73. package/firedrill/tools/quickbooks/lib/views.mjs +88 -0
  74. package/firedrill/tools/quickbooks/lib/wire.mjs +147 -0
  75. package/firedrill/tools/quickbooks/quickbooks.tool.json +11014 -0
  76. package/firedrill/world.json +559 -0
  77. package/firedrill/write-outage.scenario.json +2344 -0
  78. package/firedrill.json +5 -0
  79. package/package.json +52 -0
  80. package/starter.json +2337 -0
  81. package/test/conformance.mjs +674 -0
@@ -0,0 +1,143 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "id": "qbo-company-query",
4
+ "title": "Company info, the query language, pagination and query errors",
5
+ "targetId": "conformance-agent",
6
+ "scenarioId": "baseline",
7
+ "actorId": "admin",
8
+ "task": {
9
+ "instruction": "Run the company-query conformance flow against the synthetic QuickBooks Online Tool and fail loudly on any unexpected status or body."
10
+ },
11
+ "assertions": [
12
+ {
13
+ "id": "company-info-get-ok",
14
+ "kind": "operation.count",
15
+ "operation": {
16
+ "packageId": "quickbooks",
17
+ "operationId": "company-info.get"
18
+ },
19
+ "outcomes": [
20
+ "ok"
21
+ ],
22
+ "comparison": {
23
+ "operator": "greater_than_or_equal",
24
+ "value": 1
25
+ }
26
+ },
27
+ {
28
+ "id": "query-run-ok",
29
+ "kind": "operation.count",
30
+ "operation": {
31
+ "packageId": "quickbooks",
32
+ "operationId": "query.run"
33
+ },
34
+ "outcomes": [
35
+ "ok"
36
+ ],
37
+ "comparison": {
38
+ "operator": "greater_than_or_equal",
39
+ "value": 1
40
+ }
41
+ },
42
+ {
43
+ "id": "customers-get-ok",
44
+ "kind": "operation.count",
45
+ "operation": {
46
+ "packageId": "quickbooks",
47
+ "operationId": "customers.get"
48
+ },
49
+ "outcomes": [
50
+ "ok"
51
+ ],
52
+ "comparison": {
53
+ "operator": "greater_than_or_equal",
54
+ "value": 1
55
+ }
56
+ },
57
+ {
58
+ "id": "accounts-get-ok",
59
+ "kind": "operation.count",
60
+ "operation": {
61
+ "packageId": "quickbooks",
62
+ "operationId": "accounts.get"
63
+ },
64
+ "outcomes": [
65
+ "ok"
66
+ ],
67
+ "comparison": {
68
+ "operator": "greater_than_or_equal",
69
+ "value": 1
70
+ }
71
+ },
72
+ {
73
+ "id": "company-info-get-tool_error",
74
+ "kind": "operation.count",
75
+ "operation": {
76
+ "packageId": "quickbooks",
77
+ "operationId": "company-info.get"
78
+ },
79
+ "outcomes": [
80
+ "tool_error"
81
+ ],
82
+ "comparison": {
83
+ "operator": "greater_than_or_equal",
84
+ "value": 1
85
+ }
86
+ },
87
+ {
88
+ "id": "query-run-tool_error",
89
+ "kind": "operation.count",
90
+ "operation": {
91
+ "packageId": "quickbooks",
92
+ "operationId": "query.run"
93
+ },
94
+ "outcomes": [
95
+ "tool_error"
96
+ ],
97
+ "comparison": {
98
+ "operator": "greater_than_or_equal",
99
+ "value": 1
100
+ }
101
+ },
102
+ {
103
+ "id": "customers-get-tool_error",
104
+ "kind": "operation.count",
105
+ "operation": {
106
+ "packageId": "quickbooks",
107
+ "operationId": "customers.get"
108
+ },
109
+ "outcomes": [
110
+ "tool_error"
111
+ ],
112
+ "comparison": {
113
+ "operator": "greater_than_or_equal",
114
+ "value": 1
115
+ }
116
+ },
117
+ {
118
+ "id": "accounts-get-tool_error",
119
+ "kind": "operation.count",
120
+ "operation": {
121
+ "packageId": "quickbooks",
122
+ "operationId": "accounts.get"
123
+ },
124
+ "outcomes": [
125
+ "tool_error"
126
+ ],
127
+ "comparison": {
128
+ "operator": "greater_than_or_equal",
129
+ "value": 1
130
+ }
131
+ },
132
+ {
133
+ "id": "customers-count",
134
+ "kind": "state.count",
135
+ "packageId": "quickbooks",
136
+ "namespace": "customers",
137
+ "comparison": {
138
+ "operator": "equals",
139
+ "value": 14
140
+ }
141
+ }
142
+ ]
143
+ }
@@ -0,0 +1,173 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "id": "qbo-customers-items",
4
+ "title": "Customer and item create, full and sparse update, deactivation and validation",
5
+ "targetId": "conformance-agent",
6
+ "scenarioId": "baseline",
7
+ "actorId": "admin",
8
+ "task": {
9
+ "instruction": "Run the customers-items conformance flow against the synthetic QuickBooks Online Tool and fail loudly on any unexpected status or body."
10
+ },
11
+ "assertions": [
12
+ {
13
+ "id": "customers-post-ok",
14
+ "kind": "operation.count",
15
+ "operation": {
16
+ "packageId": "quickbooks",
17
+ "operationId": "customers.post"
18
+ },
19
+ "outcomes": [
20
+ "ok"
21
+ ],
22
+ "comparison": {
23
+ "operator": "greater_than_or_equal",
24
+ "value": 1
25
+ }
26
+ },
27
+ {
28
+ "id": "items-post-ok",
29
+ "kind": "operation.count",
30
+ "operation": {
31
+ "packageId": "quickbooks",
32
+ "operationId": "items.post"
33
+ },
34
+ "outcomes": [
35
+ "ok"
36
+ ],
37
+ "comparison": {
38
+ "operator": "greater_than_or_equal",
39
+ "value": 1
40
+ }
41
+ },
42
+ {
43
+ "id": "customers-get-ok",
44
+ "kind": "operation.count",
45
+ "operation": {
46
+ "packageId": "quickbooks",
47
+ "operationId": "customers.get"
48
+ },
49
+ "outcomes": [
50
+ "ok"
51
+ ],
52
+ "comparison": {
53
+ "operator": "greater_than_or_equal",
54
+ "value": 1
55
+ }
56
+ },
57
+ {
58
+ "id": "items-get-ok",
59
+ "kind": "operation.count",
60
+ "operation": {
61
+ "packageId": "quickbooks",
62
+ "operationId": "items.get"
63
+ },
64
+ "outcomes": [
65
+ "ok"
66
+ ],
67
+ "comparison": {
68
+ "operator": "greater_than_or_equal",
69
+ "value": 1
70
+ }
71
+ },
72
+ {
73
+ "id": "customers-post-tool_error",
74
+ "kind": "operation.count",
75
+ "operation": {
76
+ "packageId": "quickbooks",
77
+ "operationId": "customers.post"
78
+ },
79
+ "outcomes": [
80
+ "tool_error"
81
+ ],
82
+ "comparison": {
83
+ "operator": "greater_than_or_equal",
84
+ "value": 1
85
+ }
86
+ },
87
+ {
88
+ "id": "items-post-tool_error",
89
+ "kind": "operation.count",
90
+ "operation": {
91
+ "packageId": "quickbooks",
92
+ "operationId": "items.post"
93
+ },
94
+ "outcomes": [
95
+ "tool_error"
96
+ ],
97
+ "comparison": {
98
+ "operator": "greater_than_or_equal",
99
+ "value": 1
100
+ }
101
+ },
102
+ {
103
+ "id": "items-get-tool_error",
104
+ "kind": "operation.count",
105
+ "operation": {
106
+ "packageId": "quickbooks",
107
+ "operationId": "items.get"
108
+ },
109
+ "outcomes": [
110
+ "tool_error"
111
+ ],
112
+ "comparison": {
113
+ "operator": "greater_than_or_equal",
114
+ "value": 1
115
+ }
116
+ },
117
+ {
118
+ "id": "customers-count",
119
+ "kind": "state.count",
120
+ "packageId": "quickbooks",
121
+ "namespace": "customers",
122
+ "comparison": {
123
+ "operator": "equals",
124
+ "value": 15
125
+ }
126
+ },
127
+ {
128
+ "id": "items-count",
129
+ "kind": "state.count",
130
+ "packageId": "quickbooks",
131
+ "namespace": "items",
132
+ "comparison": {
133
+ "operator": "equals",
134
+ "value": 9
135
+ }
136
+ },
137
+ {
138
+ "id": "customer-changed-events",
139
+ "kind": "event.count",
140
+ "event": {
141
+ "packageId": "quickbooks",
142
+ "eventId": "customer.changed"
143
+ },
144
+ "phase": "emitted",
145
+ "comparison": {
146
+ "operator": "greater_than_or_equal",
147
+ "value": 5
148
+ }
149
+ },
150
+ {
151
+ "id": "customers-then-items",
152
+ "kind": "operation.order",
153
+ "sequence": [
154
+ {
155
+ "anyOf": [
156
+ {
157
+ "packageId": "quickbooks",
158
+ "operationId": "customers.post"
159
+ }
160
+ ]
161
+ },
162
+ {
163
+ "anyOf": [
164
+ {
165
+ "packageId": "quickbooks",
166
+ "operationId": "items.post"
167
+ }
168
+ ]
169
+ }
170
+ ]
171
+ }
172
+ ]
173
+ }
@@ -0,0 +1,53 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "id": "qbo-default-identity",
4
+ "title": "An actor without identity attributes acts as the admin of the seeded company",
5
+ "targetId": "conformance-agent",
6
+ "scenarioId": "baseline",
7
+ "actorId": "fresh",
8
+ "task": {
9
+ "instruction": "Run the default-identity conformance flow against the synthetic QuickBooks Online Tool and fail loudly on any unexpected status or body."
10
+ },
11
+ "assertions": [
12
+ {
13
+ "id": "company-info-get-ok",
14
+ "kind": "operation.count",
15
+ "operation": {
16
+ "packageId": "quickbooks",
17
+ "operationId": "company-info.get"
18
+ },
19
+ "outcomes": [
20
+ "ok"
21
+ ],
22
+ "comparison": {
23
+ "operator": "equals",
24
+ "value": 1
25
+ }
26
+ },
27
+ {
28
+ "id": "customers-post-ok",
29
+ "kind": "operation.count",
30
+ "operation": {
31
+ "packageId": "quickbooks",
32
+ "operationId": "customers.post"
33
+ },
34
+ "outcomes": [
35
+ "ok"
36
+ ],
37
+ "comparison": {
38
+ "operator": "equals",
39
+ "value": 1
40
+ }
41
+ },
42
+ {
43
+ "id": "customers-count",
44
+ "kind": "state.count",
45
+ "packageId": "quickbooks",
46
+ "namespace": "customers",
47
+ "comparison": {
48
+ "operator": "equals",
49
+ "value": 15
50
+ }
51
+ }
52
+ ]
53
+ }
@@ -0,0 +1,53 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "id": "qbo-denied",
4
+ "title": "An actor without grants is denied by the framework",
5
+ "targetId": "conformance-agent",
6
+ "scenarioId": "baseline",
7
+ "actorId": "auditor",
8
+ "task": {
9
+ "instruction": "Run the denied conformance flow against the synthetic QuickBooks Online Tool and fail loudly on any unexpected status or body."
10
+ },
11
+ "assertions": [
12
+ {
13
+ "id": "invoices-get-denied",
14
+ "kind": "operation.count",
15
+ "operation": {
16
+ "packageId": "quickbooks",
17
+ "operationId": "invoices.get"
18
+ },
19
+ "outcomes": [
20
+ "denied"
21
+ ],
22
+ "comparison": {
23
+ "operator": "greater_than_or_equal",
24
+ "value": 1
25
+ }
26
+ },
27
+ {
28
+ "id": "payments-post-denied",
29
+ "kind": "operation.count",
30
+ "operation": {
31
+ "packageId": "quickbooks",
32
+ "operationId": "payments.post"
33
+ },
34
+ "outcomes": [
35
+ "denied"
36
+ ],
37
+ "comparison": {
38
+ "operator": "greater_than_or_equal",
39
+ "value": 1
40
+ }
41
+ },
42
+ {
43
+ "id": "payments-count",
44
+ "kind": "state.count",
45
+ "packageId": "quickbooks",
46
+ "namespace": "payments",
47
+ "comparison": {
48
+ "operator": "equals",
49
+ "value": 6
50
+ }
51
+ }
52
+ ]
53
+ }
@@ -0,0 +1,160 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "id": "qbo-escape-heavy-invoices",
4
+ "title": "Escape-heavy descriptions are bounded as encoded; every committed row and list page stays readable",
5
+ "targetId": "conformance-agent",
6
+ "scenarioId": "baseline",
7
+ "actorId": "admin",
8
+ "task": {
9
+ "instruction": "Run the escape-heavy-invoices conformance flow against the synthetic QuickBooks Online Tool and fail loudly on any unexpected status or body."
10
+ },
11
+ "assertions": [
12
+ {
13
+ "id": "invoices-post-ok",
14
+ "kind": "operation.count",
15
+ "operation": {
16
+ "packageId": "quickbooks",
17
+ "operationId": "invoices.post"
18
+ },
19
+ "outcomes": [
20
+ "ok"
21
+ ],
22
+ "comparison": {
23
+ "operator": "greater_than_or_equal",
24
+ "value": 3
25
+ }
26
+ },
27
+ {
28
+ "id": "invoices-post-tool_error",
29
+ "kind": "operation.count",
30
+ "operation": {
31
+ "packageId": "quickbooks",
32
+ "operationId": "invoices.post"
33
+ },
34
+ "outcomes": [
35
+ "tool_error"
36
+ ],
37
+ "comparison": {
38
+ "operator": "greater_than_or_equal",
39
+ "value": 5
40
+ }
41
+ },
42
+ {
43
+ "id": "invoices-create-tool_error",
44
+ "kind": "operation.count",
45
+ "operation": {
46
+ "packageId": "quickbooks",
47
+ "operationId": "invoices.create"
48
+ },
49
+ "outcomes": [
50
+ "tool_error"
51
+ ],
52
+ "comparison": {
53
+ "operator": "greater_than_or_equal",
54
+ "value": 1
55
+ }
56
+ },
57
+ {
58
+ "id": "items-post-ok",
59
+ "kind": "operation.count",
60
+ "operation": {
61
+ "packageId": "quickbooks",
62
+ "operationId": "items.post"
63
+ },
64
+ "outcomes": [
65
+ "ok"
66
+ ],
67
+ "comparison": {
68
+ "operator": "greater_than_or_equal",
69
+ "value": 1
70
+ }
71
+ },
72
+ {
73
+ "id": "invoices-get-ok",
74
+ "kind": "operation.count",
75
+ "operation": {
76
+ "packageId": "quickbooks",
77
+ "operationId": "invoices.get"
78
+ },
79
+ "outcomes": [
80
+ "ok"
81
+ ],
82
+ "comparison": {
83
+ "operator": "greater_than_or_equal",
84
+ "value": 2
85
+ }
86
+ },
87
+ {
88
+ "id": "invoices-pdf-ok",
89
+ "kind": "operation.count",
90
+ "operation": {
91
+ "packageId": "quickbooks",
92
+ "operationId": "invoices.pdf"
93
+ },
94
+ "outcomes": [
95
+ "ok"
96
+ ],
97
+ "comparison": {
98
+ "operator": "greater_than_or_equal",
99
+ "value": 3
100
+ }
101
+ },
102
+ {
103
+ "id": "query-run-ok",
104
+ "kind": "operation.count",
105
+ "operation": {
106
+ "packageId": "quickbooks",
107
+ "operationId": "query.run"
108
+ },
109
+ "outcomes": [
110
+ "ok"
111
+ ],
112
+ "comparison": {
113
+ "operator": "greater_than_or_equal",
114
+ "value": 7
115
+ }
116
+ },
117
+ {
118
+ "id": "invoices-count",
119
+ "kind": "state.count",
120
+ "packageId": "quickbooks",
121
+ "namespace": "invoices",
122
+ "comparison": {
123
+ "operator": "equals",
124
+ "value": 17
125
+ }
126
+ },
127
+ {
128
+ "id": "invoice-1050-lines",
129
+ "kind": "state.value",
130
+ "packageId": "quickbooks",
131
+ "namespace": "invoices",
132
+ "rowId": "0000001050",
133
+ "path": [
134
+ "Line",
135
+ 249,
136
+ "LineNum"
137
+ ],
138
+ "comparison": {
139
+ "operator": "equals",
140
+ "value": 250
141
+ }
142
+ },
143
+ {
144
+ "id": "invoice-1052-lines",
145
+ "kind": "state.value",
146
+ "packageId": "quickbooks",
147
+ "namespace": "invoices",
148
+ "rowId": "0000001052",
149
+ "path": [
150
+ "Line",
151
+ 74,
152
+ "LineNum"
153
+ ],
154
+ "comparison": {
155
+ "operator": "equals",
156
+ "value": 75
157
+ }
158
+ }
159
+ ]
160
+ }