apiwatcher-cli 0.1.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 (109) hide show
  1. package/changesets/stripe/2025-09-30.clover__2026-08-26.dahlia.json +4576 -0
  2. package/changesets/stripe/index.json +16 -0
  3. package/data/stripe/events.json +271 -0
  4. package/data/stripe/method-map.json +5718 -0
  5. package/dist/changeset/index-file.d.ts +30 -0
  6. package/dist/changeset/index-file.d.ts.map +1 -0
  7. package/dist/changeset/index-file.js +34 -0
  8. package/dist/changeset/index-file.js.map +1 -0
  9. package/dist/changeset/load.d.ts +21 -0
  10. package/dist/changeset/load.d.ts.map +1 -0
  11. package/dist/changeset/load.js +113 -0
  12. package/dist/changeset/load.js.map +1 -0
  13. package/dist/changeset/types.d.ts +97 -0
  14. package/dist/changeset/types.d.ts.map +1 -0
  15. package/dist/changeset/types.js +18 -0
  16. package/dist/changeset/types.js.map +1 -0
  17. package/dist/changeset/version.d.ts +17 -0
  18. package/dist/changeset/version.d.ts.map +1 -0
  19. package/dist/changeset/version.js +33 -0
  20. package/dist/changeset/version.js.map +1 -0
  21. package/dist/cli/args.d.ts +15 -0
  22. package/dist/cli/args.d.ts.map +1 -0
  23. package/dist/cli/args.js +82 -0
  24. package/dist/cli/args.js.map +1 -0
  25. package/dist/cli/index.d.ts +5 -0
  26. package/dist/cli/index.d.ts.map +1 -0
  27. package/dist/cli/index.js +333 -0
  28. package/dist/cli/index.js.map +1 -0
  29. package/dist/config.d.ts +26 -0
  30. package/dist/config.d.ts.map +1 -0
  31. package/dist/config.js +92 -0
  32. package/dist/config.js.map +1 -0
  33. package/dist/index.d.ts +14 -0
  34. package/dist/index.d.ts.map +1 -0
  35. package/dist/index.js +14 -0
  36. package/dist/index.js.map +1 -0
  37. package/dist/report/impact.d.ts +40 -0
  38. package/dist/report/impact.d.ts.map +1 -0
  39. package/dist/report/impact.js +331 -0
  40. package/dist/report/impact.js.map +1 -0
  41. package/dist/report/impact.test.d.ts +2 -0
  42. package/dist/report/impact.test.d.ts.map +1 -0
  43. package/dist/report/impact.test.js +247 -0
  44. package/dist/report/impact.test.js.map +1 -0
  45. package/dist/report/render.d.ts +9 -0
  46. package/dist/report/render.d.ts.map +1 -0
  47. package/dist/report/render.js +211 -0
  48. package/dist/report/render.js.map +1 -0
  49. package/dist/scanner/ast.d.ts +74 -0
  50. package/dist/scanner/ast.d.ts.map +1 -0
  51. package/dist/scanner/ast.js +930 -0
  52. package/dist/scanner/ast.js.map +1 -0
  53. package/dist/scanner/paths.d.ts +42 -0
  54. package/dist/scanner/paths.d.ts.map +1 -0
  55. package/dist/scanner/paths.js +179 -0
  56. package/dist/scanner/paths.js.map +1 -0
  57. package/dist/scanner/scan.d.ts +11 -0
  58. package/dist/scanner/scan.d.ts.map +1 -0
  59. package/dist/scanner/scan.js +268 -0
  60. package/dist/scanner/scan.js.map +1 -0
  61. package/dist/scanner/scan.test.d.ts +2 -0
  62. package/dist/scanner/scan.test.d.ts.map +1 -0
  63. package/dist/scanner/scan.test.js +134 -0
  64. package/dist/scanner/scan.test.js.map +1 -0
  65. package/dist/scanner/types.d.ts +74 -0
  66. package/dist/scanner/types.d.ts.map +1 -0
  67. package/dist/scanner/types.js +7 -0
  68. package/dist/scanner/types.js.map +1 -0
  69. package/dist/scanner/version.d.ts +23 -0
  70. package/dist/scanner/version.d.ts.map +1 -0
  71. package/dist/scanner/version.js +155 -0
  72. package/dist/scanner/version.js.map +1 -0
  73. package/dist/scanner/walk.d.ts +26 -0
  74. package/dist/scanner/walk.d.ts.map +1 -0
  75. package/dist/scanner/walk.js +117 -0
  76. package/dist/scanner/walk.js.map +1 -0
  77. package/dist/scanner/wrapper.test.d.ts +2 -0
  78. package/dist/scanner/wrapper.test.d.ts.map +1 -0
  79. package/dist/scanner/wrapper.test.js +92 -0
  80. package/dist/scanner/wrapper.test.js.map +1 -0
  81. package/dist/specdiff/build-method-map.d.ts +6 -0
  82. package/dist/specdiff/build-method-map.d.ts.map +1 -0
  83. package/dist/specdiff/build-method-map.js +231 -0
  84. package/dist/specdiff/build-method-map.js.map +1 -0
  85. package/dist/specdiff/compat.d.ts +20 -0
  86. package/dist/specdiff/compat.d.ts.map +1 -0
  87. package/dist/specdiff/compat.js +58 -0
  88. package/dist/specdiff/compat.js.map +1 -0
  89. package/dist/specdiff/diff.d.ts +28 -0
  90. package/dist/specdiff/diff.d.ts.map +1 -0
  91. package/dist/specdiff/diff.js +529 -0
  92. package/dist/specdiff/diff.js.map +1 -0
  93. package/dist/specdiff/diff.test.d.ts +2 -0
  94. package/dist/specdiff/diff.test.d.ts.map +1 -0
  95. package/dist/specdiff/diff.test.js +260 -0
  96. package/dist/specdiff/diff.test.js.map +1 -0
  97. package/dist/specdiff/fetch.d.ts +28 -0
  98. package/dist/specdiff/fetch.d.ts.map +1 -0
  99. package/dist/specdiff/fetch.js +68 -0
  100. package/dist/specdiff/fetch.js.map +1 -0
  101. package/dist/specdiff/methodmap.d.ts +45 -0
  102. package/dist/specdiff/methodmap.d.ts.map +1 -0
  103. package/dist/specdiff/methodmap.js +109 -0
  104. package/dist/specdiff/methodmap.js.map +1 -0
  105. package/dist/specdiff/openapi.d.ts +166 -0
  106. package/dist/specdiff/openapi.d.ts.map +1 -0
  107. package/dist/specdiff/openapi.js +282 -0
  108. package/dist/specdiff/openapi.js.map +1 -0
  109. package/package.json +33 -0
@@ -0,0 +1,16 @@
1
+ {
2
+ "api": "stripe",
3
+ "latest": "2026-08-26.dahlia",
4
+ "generatedAt": "2026-09-11T06:06:27.233Z",
5
+ "entries": [
6
+ {
7
+ "from": "2025-09-30.clover",
8
+ "to": "2026-08-26.dahlia",
9
+ "file": "2025-09-30.clover__2026-08-26.dahlia.json",
10
+ "breaking": 163,
11
+ "deprecating": 0,
12
+ "additive": 0,
13
+ "toRef": "30d3391cc09a0f67ad29bee002f570811b19e1da"
14
+ }
15
+ ]
16
+ }
@@ -0,0 +1,271 @@
1
+ {
2
+ "apiVersion": "2026-08-26.dahlia",
3
+ "generatedAt": "2026-09-11T06:06:22.891Z",
4
+ "events": [
5
+ "account.application.authorized",
6
+ "account.application.deauthorized",
7
+ "account.external_account.created",
8
+ "account.external_account.deleted",
9
+ "account.external_account.updated",
10
+ "account.updated",
11
+ "application_fee.created",
12
+ "application_fee.refund.updated",
13
+ "application_fee.refunded",
14
+ "balance.available",
15
+ "balance_settings.updated",
16
+ "billing.alert.triggered",
17
+ "billing.credit_balance_transaction.created",
18
+ "billing.credit_grant.created",
19
+ "billing.credit_grant.updated",
20
+ "billing.meter.created",
21
+ "billing.meter.deactivated",
22
+ "billing.meter.reactivated",
23
+ "billing.meter.updated",
24
+ "billing_portal.configuration.created",
25
+ "billing_portal.configuration.updated",
26
+ "billing_portal.session.created",
27
+ "capability.updated",
28
+ "cash_balance.funds_available",
29
+ "charge.captured",
30
+ "charge.dispute.closed",
31
+ "charge.dispute.created",
32
+ "charge.dispute.funds_reinstated",
33
+ "charge.dispute.funds_withdrawn",
34
+ "charge.dispute.updated",
35
+ "charge.expired",
36
+ "charge.failed",
37
+ "charge.pending",
38
+ "charge.refund.updated",
39
+ "charge.refunded",
40
+ "charge.succeeded",
41
+ "charge.updated",
42
+ "checkout.session.async_payment_failed",
43
+ "checkout.session.async_payment_succeeded",
44
+ "checkout.session.completed",
45
+ "checkout.session.expired",
46
+ "climate.order.canceled",
47
+ "climate.order.created",
48
+ "climate.order.delayed",
49
+ "climate.order.delivered",
50
+ "climate.order.product_substituted",
51
+ "climate.product.created",
52
+ "climate.product.pricing_updated",
53
+ "coupon.created",
54
+ "coupon.deleted",
55
+ "coupon.updated",
56
+ "credit_note.created",
57
+ "credit_note.updated",
58
+ "credit_note.voided",
59
+ "customer.created",
60
+ "customer.deleted",
61
+ "customer.discount.created",
62
+ "customer.discount.deleted",
63
+ "customer.discount.updated",
64
+ "customer.source.created",
65
+ "customer.source.deleted",
66
+ "customer.source.expiring",
67
+ "customer.source.updated",
68
+ "customer.subscription.created",
69
+ "customer.subscription.deleted",
70
+ "customer.subscription.paused",
71
+ "customer.subscription.pending_update_applied",
72
+ "customer.subscription.pending_update_expired",
73
+ "customer.subscription.resumed",
74
+ "customer.subscription.trial_will_end",
75
+ "customer.subscription.updated",
76
+ "customer.tax_id.created",
77
+ "customer.tax_id.deleted",
78
+ "customer.tax_id.updated",
79
+ "customer.updated",
80
+ "customer_cash_balance_transaction.created",
81
+ "entitlements.active_entitlement_summary.updated",
82
+ "file.created",
83
+ "financial_connections.account.account_numbers_updated",
84
+ "financial_connections.account.created",
85
+ "financial_connections.account.deactivated",
86
+ "financial_connections.account.disconnected",
87
+ "financial_connections.account.expected_deactivation_date_updated",
88
+ "financial_connections.account.reactivated",
89
+ "financial_connections.account.refreshed_balance",
90
+ "financial_connections.account.refreshed_ownership",
91
+ "financial_connections.account.refreshed_transactions",
92
+ "financial_connections.account.supported_payment_method_types_updated",
93
+ "financial_connections.account.upcoming_account_number_expiry",
94
+ "financial_connections.account.upcoming_deactivation",
95
+ "financial_connections.authorization.expected_deactivation_date_updated",
96
+ "financial_connections.authorization.upcoming_deactivation",
97
+ "identity.verification_session.canceled",
98
+ "identity.verification_session.created",
99
+ "identity.verification_session.processing",
100
+ "identity.verification_session.redacted",
101
+ "identity.verification_session.requires_input",
102
+ "identity.verification_session.verified",
103
+ "invoice.created",
104
+ "invoice.deleted",
105
+ "invoice.finalization_failed",
106
+ "invoice.finalized",
107
+ "invoice.marked_uncollectible",
108
+ "invoice.overdue",
109
+ "invoice.overpaid",
110
+ "invoice.paid",
111
+ "invoice.payment_action_required",
112
+ "invoice.payment_attempt_required",
113
+ "invoice.payment_failed",
114
+ "invoice.payment_succeeded",
115
+ "invoice.sent",
116
+ "invoice.upcoming",
117
+ "invoice.updated",
118
+ "invoice.voided",
119
+ "invoice.will_be_due",
120
+ "invoice_payment.paid",
121
+ "invoiceitem.created",
122
+ "invoiceitem.deleted",
123
+ "issuing_authorization.created",
124
+ "issuing_authorization.request",
125
+ "issuing_authorization.updated",
126
+ "issuing_card.created",
127
+ "issuing_card.updated",
128
+ "issuing_cardholder.created",
129
+ "issuing_cardholder.updated",
130
+ "issuing_dispute.closed",
131
+ "issuing_dispute.created",
132
+ "issuing_dispute.funds_reinstated",
133
+ "issuing_dispute.funds_rescinded",
134
+ "issuing_dispute.submitted",
135
+ "issuing_dispute.updated",
136
+ "issuing_personalization_design.activated",
137
+ "issuing_personalization_design.deactivated",
138
+ "issuing_personalization_design.rejected",
139
+ "issuing_personalization_design.updated",
140
+ "issuing_token.created",
141
+ "issuing_token.updated",
142
+ "issuing_transaction.created",
143
+ "issuing_transaction.purchase_details_receipt_updated",
144
+ "issuing_transaction.updated",
145
+ "mandate.updated",
146
+ "payment_intent.amount_capturable_updated",
147
+ "payment_intent.canceled",
148
+ "payment_intent.created",
149
+ "payment_intent.partially_funded",
150
+ "payment_intent.payment_failed",
151
+ "payment_intent.processing",
152
+ "payment_intent.requires_action",
153
+ "payment_intent.succeeded",
154
+ "payment_link.created",
155
+ "payment_link.updated",
156
+ "payment_method.attached",
157
+ "payment_method.automatically_updated",
158
+ "payment_method.detached",
159
+ "payment_method.updated",
160
+ "payout.canceled",
161
+ "payout.created",
162
+ "payout.failed",
163
+ "payout.paid",
164
+ "payout.reconciliation_completed",
165
+ "payout.updated",
166
+ "person.created",
167
+ "person.deleted",
168
+ "person.updated",
169
+ "plan.created",
170
+ "plan.deleted",
171
+ "plan.updated",
172
+ "price.created",
173
+ "price.deleted",
174
+ "price.updated",
175
+ "product.created",
176
+ "product.deleted",
177
+ "product.updated",
178
+ "promotion_code.created",
179
+ "promotion_code.updated",
180
+ "quote.accepted",
181
+ "quote.canceled",
182
+ "quote.created",
183
+ "quote.finalized",
184
+ "radar.early_fraud_warning.created",
185
+ "radar.early_fraud_warning.updated",
186
+ "refund.created",
187
+ "refund.failed",
188
+ "refund.updated",
189
+ "reporting.report_run.failed",
190
+ "reporting.report_run.succeeded",
191
+ "reporting.report_type.updated",
192
+ "reserve.hold.created",
193
+ "reserve.hold.updated",
194
+ "reserve.plan.created",
195
+ "reserve.plan.disabled",
196
+ "reserve.plan.expired",
197
+ "reserve.plan.updated",
198
+ "reserve.release.created",
199
+ "review.closed",
200
+ "review.opened",
201
+ "setup_intent.canceled",
202
+ "setup_intent.created",
203
+ "setup_intent.requires_action",
204
+ "setup_intent.setup_failed",
205
+ "setup_intent.succeeded",
206
+ "sigma.scheduled_query_run.created",
207
+ "source.canceled",
208
+ "source.chargeable",
209
+ "source.failed",
210
+ "source.mandate_notification",
211
+ "source.refund_attributes_required",
212
+ "source.transaction.created",
213
+ "source.transaction.updated",
214
+ "subscription_schedule.aborted",
215
+ "subscription_schedule.canceled",
216
+ "subscription_schedule.completed",
217
+ "subscription_schedule.created",
218
+ "subscription_schedule.expiring",
219
+ "subscription_schedule.released",
220
+ "subscription_schedule.updated",
221
+ "tax.settings.updated",
222
+ "tax_rate.created",
223
+ "tax_rate.updated",
224
+ "terminal.reader.action_failed",
225
+ "terminal.reader.action_succeeded",
226
+ "terminal.reader.action_updated",
227
+ "test_helpers.test_clock.advancing",
228
+ "test_helpers.test_clock.created",
229
+ "test_helpers.test_clock.deleted",
230
+ "test_helpers.test_clock.internal_failure",
231
+ "test_helpers.test_clock.ready",
232
+ "topup.canceled",
233
+ "topup.created",
234
+ "topup.failed",
235
+ "topup.reversed",
236
+ "topup.succeeded",
237
+ "transfer.created",
238
+ "transfer.reversed",
239
+ "transfer.updated",
240
+ "treasury.credit_reversal.created",
241
+ "treasury.credit_reversal.posted",
242
+ "treasury.debit_reversal.completed",
243
+ "treasury.debit_reversal.created",
244
+ "treasury.debit_reversal.initial_credit_granted",
245
+ "treasury.financial_account.closed",
246
+ "treasury.financial_account.created",
247
+ "treasury.financial_account.features_status_updated",
248
+ "treasury.inbound_transfer.canceled",
249
+ "treasury.inbound_transfer.created",
250
+ "treasury.inbound_transfer.failed",
251
+ "treasury.inbound_transfer.succeeded",
252
+ "treasury.outbound_payment.canceled",
253
+ "treasury.outbound_payment.created",
254
+ "treasury.outbound_payment.expected_arrival_date_updated",
255
+ "treasury.outbound_payment.failed",
256
+ "treasury.outbound_payment.posted",
257
+ "treasury.outbound_payment.returned",
258
+ "treasury.outbound_payment.tracking_details_updated",
259
+ "treasury.outbound_transfer.canceled",
260
+ "treasury.outbound_transfer.created",
261
+ "treasury.outbound_transfer.expected_arrival_date_updated",
262
+ "treasury.outbound_transfer.failed",
263
+ "treasury.outbound_transfer.posted",
264
+ "treasury.outbound_transfer.returned",
265
+ "treasury.outbound_transfer.tracking_details_updated",
266
+ "treasury.received_credit.created",
267
+ "treasury.received_credit.failed",
268
+ "treasury.received_credit.succeeded",
269
+ "treasury.received_debit.created"
270
+ ]
271
+ }