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,4576 @@
1
+ {
2
+ "schemaVersion": 1,
3
+ "api": "stripe",
4
+ "from": "2025-09-30.clover",
5
+ "to": "2026-08-26.dahlia",
6
+ "generatedAt": "2026-09-11T06:06:22.891Z",
7
+ "source": {
8
+ "repo": "stripe/openapi",
9
+ "fromRef": "053c4b35",
10
+ "toRef": "30d3391cc09a0f67ad29bee002f570811b19e1da"
11
+ },
12
+ "changes": [
13
+ {
14
+ "id": "stripe-2026-08-26.dahlia-0001",
15
+ "kind": "required",
16
+ "severity": "breaking",
17
+ "location": "requestBody",
18
+ "path": "/v1/account_sessions",
19
+ "method": "post",
20
+ "field": "components.balance_report.enabled",
21
+ "note": "Request parameter \"components.balance_report.enabled\" is new and required whenever \"components.balance_report\" is provided.",
22
+ "docsUrl": "https://docs.stripe.com/upgrades",
23
+ "sdkMethods": [
24
+ {
25
+ "namespace": "accountSessions",
26
+ "method": "create"
27
+ }
28
+ ]
29
+ },
30
+ {
31
+ "id": "stripe-2026-08-26.dahlia-0002",
32
+ "kind": "required",
33
+ "severity": "breaking",
34
+ "location": "requestBody",
35
+ "path": "/v1/account_sessions",
36
+ "method": "post",
37
+ "field": "components.payment_method_settings.enabled",
38
+ "note": "Request parameter \"components.payment_method_settings.enabled\" is new and required whenever \"components.payment_method_settings\" is provided.",
39
+ "docsUrl": "https://docs.stripe.com/upgrades",
40
+ "sdkMethods": [
41
+ {
42
+ "namespace": "accountSessions",
43
+ "method": "create"
44
+ }
45
+ ]
46
+ },
47
+ {
48
+ "id": "stripe-2026-08-26.dahlia-0003",
49
+ "kind": "required",
50
+ "severity": "breaking",
51
+ "location": "requestBody",
52
+ "path": "/v1/account_sessions",
53
+ "method": "post",
54
+ "field": "components.payout_reconciliation_report.enabled",
55
+ "note": "Request parameter \"components.payout_reconciliation_report.enabled\" is new and required whenever \"components.payout_reconciliation_report\" is provided.",
56
+ "docsUrl": "https://docs.stripe.com/upgrades",
57
+ "sdkMethods": [
58
+ {
59
+ "namespace": "accountSessions",
60
+ "method": "create"
61
+ }
62
+ ]
63
+ },
64
+ {
65
+ "id": "stripe-2026-08-26.dahlia-0004",
66
+ "kind": "removed",
67
+ "severity": "breaking",
68
+ "location": "requestBody",
69
+ "path": "/v1/accounts",
70
+ "method": "post",
71
+ "field": "documents.proof_of_registration",
72
+ "note": "Request parameter \"documents.proof_of_registration\" was removed.",
73
+ "docsUrl": "https://docs.stripe.com/upgrades",
74
+ "sdkMethods": [
75
+ {
76
+ "namespace": "accounts",
77
+ "method": "create"
78
+ }
79
+ ]
80
+ },
81
+ {
82
+ "id": "stripe-2026-08-26.dahlia-0008",
83
+ "kind": "typeChanged",
84
+ "severity": "breaking",
85
+ "location": "requestBody",
86
+ "path": "/v1/checkout/sessions",
87
+ "method": "post",
88
+ "field": "excluded_payment_method_types",
89
+ "fromType": "array<enum(acss_debit|affirm|afterpay_clearpay|alipay|alma|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|blik|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|kakao_pay|klarna|konbini|kr_card|mobilepay|multibanco|naver_pay|nz_bank_account|oxxo|p24|pay_by_bank|payco|paynow|paypal|pix|promptpay|revolut_pay|samsung_pay|satispay|sepa_debit|sofort|swish|twint|us_bank_account|wechat_pay|zip)>",
90
+ "toType": "array<enum(acss_debit|affirm|afterpay_clearpay|alipay|alma|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|bizum|blik|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|kakao_pay|klarna|konbini|kr_card|mb_way|mobilepay|multibanco|naver_pay|nz_bank_account|oxxo|p24|pay_by_bank|payco|paynow|paypal|payto|pix|promptpay|revolut_pay|samsung_pay|satispay|scalapay|sepa_debit|sofort|sunbit|swish|twint|upi|us_bank_account|wechat_pay|zip)>",
91
+ "note": "Request parameter \"excluded_payment_method_types\" changed from array<enum(acss_debit|affirm|afterpay_clearpay|alipay|alma|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|blik|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|kakao_pay|klarna|konbini|kr_card|mobilepay|multibanco|naver_pay|nz_bank_account|oxxo|p24|pay_by_bank|payco|paynow|paypal|pix|promptpay|revolut_pay|samsung_pay|satispay|sepa_debit|sofort|swish|twint|us_bank_account|wechat_pay|zip)> to array<enum(acss_debit|affirm|afterpay_clearpay|alipay|alma|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|bizum|blik|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|kakao_pay|klarna|konbini|kr_card|mb_way|mobilepay|multibanco|naver_pay|nz_bank_account|oxxo|p24|pay_by_bank|payco|paynow|paypal|payto|pix|promptpay|revolut_pay|samsung_pay|satispay|scalapay|sepa_debit|sofort|sunbit|swish|twint|upi|us_bank_account|wechat_pay|zip)>.",
92
+ "docsUrl": "https://docs.stripe.com/upgrades",
93
+ "sdkMethods": [
94
+ {
95
+ "namespace": "checkout.sessions",
96
+ "method": "create"
97
+ }
98
+ ]
99
+ },
100
+ {
101
+ "id": "stripe-2026-08-26.dahlia-0005",
102
+ "kind": "removed",
103
+ "severity": "breaking",
104
+ "location": "requestBody",
105
+ "path": "/v1/checkout/sessions",
106
+ "method": "post",
107
+ "field": "line_items[].dynamic_tax_rates",
108
+ "note": "Request parameter \"line_items[].dynamic_tax_rates\" was removed.",
109
+ "docsUrl": "https://docs.stripe.com/upgrades",
110
+ "sdkMethods": [
111
+ {
112
+ "namespace": "checkout.sessions",
113
+ "method": "create"
114
+ }
115
+ ]
116
+ },
117
+ {
118
+ "id": "stripe-2026-08-26.dahlia-0009",
119
+ "kind": "typeChanged",
120
+ "severity": "breaking",
121
+ "location": "requestBody",
122
+ "path": "/v1/checkout/sessions",
123
+ "method": "post",
124
+ "field": "payment_method_types",
125
+ "fromType": "array<enum(acss_debit|affirm|afterpay_clearpay|alipay|alma|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|blik|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|kakao_pay|klarna|konbini|kr_card|link|mobilepay|multibanco|naver_pay|nz_bank_account|oxxo|p24|pay_by_bank|payco|paynow|paypal|pix|promptpay|revolut_pay|samsung_pay|satispay|sepa_debit|sofort|swish|twint|us_bank_account|wechat_pay|zip)>",
126
+ "toType": "array<enum(acss_debit|affirm|afterpay_clearpay|alipay|alma|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|bizum|blik|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|kakao_pay|klarna|konbini|kr_card|link|mb_way|mobilepay|multibanco|naver_pay|nz_bank_account|oxxo|p24|pay_by_bank|payco|paynow|paypal|payto|pix|promptpay|revolut_pay|samsung_pay|satispay|scalapay|sepa_debit|sofort|sunbit|swish|twint|upi|us_bank_account|wechat_pay|zip)>",
127
+ "note": "Request parameter \"payment_method_types\" changed from array<enum(acss_debit|affirm|afterpay_clearpay|alipay|alma|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|blik|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|kakao_pay|klarna|konbini|kr_card|link|mobilepay|multibanco|naver_pay|nz_bank_account|oxxo|p24|pay_by_bank|payco|paynow|paypal|pix|promptpay|revolut_pay|samsung_pay|satispay|sepa_debit|sofort|swish|twint|us_bank_account|wechat_pay|zip)> to array<enum(acss_debit|affirm|afterpay_clearpay|alipay|alma|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|bizum|blik|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|kakao_pay|klarna|konbini|kr_card|link|mb_way|mobilepay|multibanco|naver_pay|nz_bank_account|oxxo|p24|pay_by_bank|payco|paynow|paypal|payto|pix|promptpay|revolut_pay|samsung_pay|satispay|scalapay|sepa_debit|sofort|sunbit|swish|twint|upi|us_bank_account|wechat_pay|zip)>.",
128
+ "docsUrl": "https://docs.stripe.com/upgrades",
129
+ "sdkMethods": [
130
+ {
131
+ "namespace": "checkout.sessions",
132
+ "method": "create"
133
+ }
134
+ ]
135
+ },
136
+ {
137
+ "id": "stripe-2026-08-26.dahlia-0006",
138
+ "kind": "required",
139
+ "severity": "breaking",
140
+ "location": "requestBody",
141
+ "path": "/v1/checkout/sessions",
142
+ "method": "post",
143
+ "field": "subscription_data.billing_cycle_anchor_config.day_of_month",
144
+ "note": "Request parameter \"subscription_data.billing_cycle_anchor_config.day_of_month\" is new and required whenever \"subscription_data.billing_cycle_anchor_config\" is provided.",
145
+ "docsUrl": "https://docs.stripe.com/upgrades",
146
+ "sdkMethods": [
147
+ {
148
+ "namespace": "checkout.sessions",
149
+ "method": "create"
150
+ }
151
+ ]
152
+ },
153
+ {
154
+ "id": "stripe-2026-08-26.dahlia-0007",
155
+ "kind": "required",
156
+ "severity": "breaking",
157
+ "location": "requestBody",
158
+ "path": "/v1/checkout/sessions",
159
+ "method": "post",
160
+ "field": "subscription_data.pending_invoice_item_interval.interval",
161
+ "note": "Request parameter \"subscription_data.pending_invoice_item_interval.interval\" is new and required whenever \"subscription_data.pending_invoice_item_interval\" is provided.",
162
+ "docsUrl": "https://docs.stripe.com/upgrades",
163
+ "sdkMethods": [
164
+ {
165
+ "namespace": "checkout.sessions",
166
+ "method": "create"
167
+ }
168
+ ]
169
+ },
170
+ {
171
+ "id": "stripe-2026-08-26.dahlia-0010",
172
+ "kind": "typeChanged",
173
+ "severity": "breaking",
174
+ "location": "requestBody",
175
+ "path": "/v1/checkout/sessions",
176
+ "method": "post",
177
+ "field": "ui_mode",
178
+ "fromType": "enum(custom|embedded|hosted)",
179
+ "toType": "enum(elements|embedded_page|form|hosted_page)",
180
+ "note": "Request parameter \"ui_mode\" no longer accepts custom, embedded, hosted (and now accepts elements, embedded_page, form, hosted_page).",
181
+ "docsUrl": "https://docs.stripe.com/upgrades",
182
+ "sdkMethods": [
183
+ {
184
+ "namespace": "checkout.sessions",
185
+ "method": "create"
186
+ }
187
+ ]
188
+ },
189
+ {
190
+ "id": "stripe-2026-08-26.dahlia-0011",
191
+ "kind": "required",
192
+ "severity": "breaking",
193
+ "location": "requestBody",
194
+ "path": "/v1/checkout/sessions/{session}",
195
+ "method": "post",
196
+ "field": "line_items[].adjustable_quantity.enabled",
197
+ "note": "Request parameter \"line_items[].adjustable_quantity.enabled\" is new and required whenever \"line_items[].adjustable_quantity\" is provided.",
198
+ "docsUrl": "https://docs.stripe.com/upgrades",
199
+ "sdkMethods": [
200
+ {
201
+ "namespace": "checkout.sessions",
202
+ "method": "update"
203
+ }
204
+ ]
205
+ },
206
+ {
207
+ "id": "stripe-2026-08-26.dahlia-0012",
208
+ "kind": "required",
209
+ "severity": "breaking",
210
+ "location": "requestBody",
211
+ "path": "/v1/checkout/sessions/{session}",
212
+ "method": "post",
213
+ "field": "line_items[].price_data.currency",
214
+ "note": "Request parameter \"line_items[].price_data.currency\" is new and required whenever \"line_items[].price_data\" is provided.",
215
+ "docsUrl": "https://docs.stripe.com/upgrades",
216
+ "sdkMethods": [
217
+ {
218
+ "namespace": "checkout.sessions",
219
+ "method": "update"
220
+ }
221
+ ]
222
+ },
223
+ {
224
+ "id": "stripe-2026-08-26.dahlia-0013",
225
+ "kind": "required",
226
+ "severity": "breaking",
227
+ "location": "requestBody",
228
+ "path": "/v1/checkout/sessions/{session}",
229
+ "method": "post",
230
+ "field": "line_items[].price_data.product_data.name",
231
+ "note": "Request parameter \"line_items[].price_data.product_data.name\" is new and required whenever \"line_items[].price_data.product_data\" is provided.",
232
+ "docsUrl": "https://docs.stripe.com/upgrades",
233
+ "sdkMethods": [
234
+ {
235
+ "namespace": "checkout.sessions",
236
+ "method": "update"
237
+ }
238
+ ]
239
+ },
240
+ {
241
+ "id": "stripe-2026-08-26.dahlia-0014",
242
+ "kind": "required",
243
+ "severity": "breaking",
244
+ "location": "requestBody",
245
+ "path": "/v1/checkout/sessions/{session}",
246
+ "method": "post",
247
+ "field": "line_items[].price_data.recurring.interval",
248
+ "note": "Request parameter \"line_items[].price_data.recurring.interval\" is new and required whenever \"line_items[].price_data.recurring\" is provided.",
249
+ "docsUrl": "https://docs.stripe.com/upgrades",
250
+ "sdkMethods": [
251
+ {
252
+ "namespace": "checkout.sessions",
253
+ "method": "update"
254
+ }
255
+ ]
256
+ },
257
+ {
258
+ "id": "stripe-2026-08-26.dahlia-0015",
259
+ "kind": "required",
260
+ "severity": "breaking",
261
+ "location": "requestBody",
262
+ "path": "/v1/credit_notes",
263
+ "method": "post",
264
+ "field": "refunds[].payment_record_refund.payment_record",
265
+ "note": "Request parameter \"refunds[].payment_record_refund.payment_record\" is new and required whenever \"refunds[].payment_record_refund\" is provided.",
266
+ "docsUrl": "https://docs.stripe.com/upgrades",
267
+ "sdkMethods": [
268
+ {
269
+ "namespace": "creditNotes",
270
+ "method": "create"
271
+ }
272
+ ]
273
+ },
274
+ {
275
+ "id": "stripe-2026-08-26.dahlia-0016",
276
+ "kind": "required",
277
+ "severity": "breaking",
278
+ "location": "requestBody",
279
+ "path": "/v1/credit_notes",
280
+ "method": "post",
281
+ "field": "refunds[].payment_record_refund.refund_group",
282
+ "note": "Request parameter \"refunds[].payment_record_refund.refund_group\" is new and required whenever \"refunds[].payment_record_refund\" is provided.",
283
+ "docsUrl": "https://docs.stripe.com/upgrades",
284
+ "sdkMethods": [
285
+ {
286
+ "namespace": "creditNotes",
287
+ "method": "create"
288
+ }
289
+ ]
290
+ },
291
+ {
292
+ "id": "stripe-2026-08-26.dahlia-0017",
293
+ "kind": "required",
294
+ "severity": "breaking",
295
+ "location": "requestBody",
296
+ "path": "/v1/customer_sessions",
297
+ "method": "post",
298
+ "field": "components.active_entitlements.enabled",
299
+ "note": "Request parameter \"components.active_entitlements.enabled\" is new and required whenever \"components.active_entitlements\" is provided.",
300
+ "docsUrl": "https://docs.stripe.com/upgrades",
301
+ "sdkMethods": [
302
+ {
303
+ "namespace": "customerSessions",
304
+ "method": "create"
305
+ }
306
+ ]
307
+ },
308
+ {
309
+ "id": "stripe-2026-08-26.dahlia-0018",
310
+ "kind": "required",
311
+ "severity": "breaking",
312
+ "location": "requestBody",
313
+ "path": "/v1/customer_sessions",
314
+ "method": "post",
315
+ "field": "components.customer_portal.enabled",
316
+ "note": "Request parameter \"components.customer_portal.enabled\" is new and required whenever \"components.customer_portal\" is provided.",
317
+ "docsUrl": "https://docs.stripe.com/upgrades",
318
+ "sdkMethods": [
319
+ {
320
+ "namespace": "customerSessions",
321
+ "method": "create"
322
+ }
323
+ ]
324
+ },
325
+ {
326
+ "id": "stripe-2026-08-26.dahlia-0019",
327
+ "kind": "required",
328
+ "severity": "breaking",
329
+ "location": "requestBody",
330
+ "path": "/v1/customer_sessions",
331
+ "method": "post",
332
+ "field": "components.customer_sheet.enabled",
333
+ "note": "Request parameter \"components.customer_sheet.enabled\" is new and required whenever \"components.customer_sheet\" is provided.",
334
+ "docsUrl": "https://docs.stripe.com/upgrades",
335
+ "sdkMethods": [
336
+ {
337
+ "namespace": "customerSessions",
338
+ "method": "create"
339
+ }
340
+ ]
341
+ },
342
+ {
343
+ "id": "stripe-2026-08-26.dahlia-0020",
344
+ "kind": "required",
345
+ "severity": "breaking",
346
+ "location": "requestBody",
347
+ "path": "/v1/customer_sessions",
348
+ "method": "post",
349
+ "field": "components.mobile_payment_element.enabled",
350
+ "note": "Request parameter \"components.mobile_payment_element.enabled\" is new and required whenever \"components.mobile_payment_element\" is provided.",
351
+ "docsUrl": "https://docs.stripe.com/upgrades",
352
+ "sdkMethods": [
353
+ {
354
+ "namespace": "customerSessions",
355
+ "method": "create"
356
+ }
357
+ ]
358
+ },
359
+ {
360
+ "id": "stripe-2026-08-26.dahlia-0021",
361
+ "kind": "required",
362
+ "severity": "breaking",
363
+ "location": "requestBody",
364
+ "path": "/v1/financial_connections/sessions",
365
+ "method": "post",
366
+ "field": "limits.accounts",
367
+ "note": "Request parameter \"limits.accounts\" is new and required whenever \"limits\" is provided.",
368
+ "docsUrl": "https://docs.stripe.com/upgrades",
369
+ "sdkMethods": [
370
+ {
371
+ "namespace": "financialConnections.sessions",
372
+ "method": "create"
373
+ }
374
+ ]
375
+ },
376
+ {
377
+ "id": "stripe-2026-08-26.dahlia-0022",
378
+ "kind": "typeChanged",
379
+ "severity": "breaking",
380
+ "location": "requestBody",
381
+ "path": "/v1/invoices",
382
+ "method": "post",
383
+ "field": "payment_settings.payment_method_types",
384
+ "fromType": "union(array<enum(ach_credit_transfer|ach_debit|acss_debit|affirm|amazon_pay|au_becs_debit|bacs_debit|bancontact|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|jp_credit_transfer|kakao_pay|klarna|konbini|kr_card|link|multibanco|naver_pay|nz_bank_account|p24|payco|paynow|paypal|promptpay|revolut_pay|sepa_credit_transfer|sepa_debit|sofort|swish|us_bank_account|wechat_pay)>|enum())",
385
+ "toType": "union(array<enum(ach_credit_transfer|ach_debit|acss_debit|affirm|alipay|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|boleto|card|cashapp|crypto|custom|customer_balance|eps|fpx|giropay|grabpay|ideal|jp_credit_transfer|kakao_pay|klarna|konbini|kr_card|link|mb_way|multibanco|naver_pay|nz_bank_account|p24|pay_by_bank|payco|paynow|paypal|payto|pix|promptpay|revolut_pay|satispay|sepa_credit_transfer|sepa_debit|sofort|swish|twint|upi|us_bank_account|wechat_pay)>|enum())",
386
+ "note": "Request parameter \"payment_settings.payment_method_types\" changed from union(array<enum(ach_credit_transfer|ach_debit|acss_debit|affirm|amazon_pay|au_becs_debit|bacs_debit|bancontact|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|jp_credit_transfer|kakao_pay|klarna|konbini|kr_card|link|multibanco|naver_pay|nz_bank_account|p24|payco|paynow|paypal|promptpay|revolut_pay|sepa_credit_transfer|sepa_debit|sofort|swish|us_bank_account|wechat_pay)>|enum()) to union(array<enum(ach_credit_transfer|ach_debit|acss_debit|affirm|alipay|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|boleto|card|cashapp|crypto|custom|customer_balance|eps|fpx|giropay|grabpay|ideal|jp_credit_transfer|kakao_pay|klarna|konbini|kr_card|link|mb_way|multibanco|naver_pay|nz_bank_account|p24|pay_by_bank|payco|paynow|paypal|payto|pix|promptpay|revolut_pay|satispay|sepa_credit_transfer|sepa_debit|sofort|swish|twint|upi|us_bank_account|wechat_pay)>|enum()).",
387
+ "docsUrl": "https://docs.stripe.com/upgrades",
388
+ "sdkMethods": [
389
+ {
390
+ "namespace": "invoices",
391
+ "method": "create"
392
+ }
393
+ ]
394
+ },
395
+ {
396
+ "id": "stripe-2026-08-26.dahlia-0026",
397
+ "kind": "typeChanged",
398
+ "severity": "breaking",
399
+ "location": "requestBody",
400
+ "path": "/v1/invoices/{invoice}",
401
+ "method": "post",
402
+ "field": "payment_settings.payment_method_types",
403
+ "fromType": "union(array<enum(ach_credit_transfer|ach_debit|acss_debit|affirm|amazon_pay|au_becs_debit|bacs_debit|bancontact|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|jp_credit_transfer|kakao_pay|klarna|konbini|kr_card|link|multibanco|naver_pay|nz_bank_account|p24|payco|paynow|paypal|promptpay|revolut_pay|sepa_credit_transfer|sepa_debit|sofort|swish|us_bank_account|wechat_pay)>|enum())",
404
+ "toType": "union(array<enum(ach_credit_transfer|ach_debit|acss_debit|affirm|alipay|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|boleto|card|cashapp|crypto|custom|customer_balance|eps|fpx|giropay|grabpay|ideal|jp_credit_transfer|kakao_pay|klarna|konbini|kr_card|link|mb_way|multibanco|naver_pay|nz_bank_account|p24|pay_by_bank|payco|paynow|paypal|payto|pix|promptpay|revolut_pay|satispay|sepa_credit_transfer|sepa_debit|sofort|swish|twint|upi|us_bank_account|wechat_pay)>|enum())",
405
+ "note": "Request parameter \"payment_settings.payment_method_types\" changed from union(array<enum(ach_credit_transfer|ach_debit|acss_debit|affirm|amazon_pay|au_becs_debit|bacs_debit|bancontact|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|jp_credit_transfer|kakao_pay|klarna|konbini|kr_card|link|multibanco|naver_pay|nz_bank_account|p24|payco|paynow|paypal|promptpay|revolut_pay|sepa_credit_transfer|sepa_debit|sofort|swish|us_bank_account|wechat_pay)>|enum()) to union(array<enum(ach_credit_transfer|ach_debit|acss_debit|affirm|alipay|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|boleto|card|cashapp|crypto|custom|customer_balance|eps|fpx|giropay|grabpay|ideal|jp_credit_transfer|kakao_pay|klarna|konbini|kr_card|link|mb_way|multibanco|naver_pay|nz_bank_account|p24|pay_by_bank|payco|paynow|paypal|payto|pix|promptpay|revolut_pay|satispay|sepa_credit_transfer|sepa_debit|sofort|swish|twint|upi|us_bank_account|wechat_pay)>|enum()).",
406
+ "docsUrl": "https://docs.stripe.com/upgrades",
407
+ "sdkMethods": [
408
+ {
409
+ "namespace": "invoices",
410
+ "method": "update"
411
+ }
412
+ ]
413
+ },
414
+ {
415
+ "id": "stripe-2026-08-26.dahlia-0023",
416
+ "kind": "required",
417
+ "severity": "breaking",
418
+ "location": "requestBody",
419
+ "path": "/v1/invoices/create_preview",
420
+ "method": "post",
421
+ "field": "subscription_details.billing_schedules[].applies_to[].type",
422
+ "note": "Request parameter \"subscription_details.billing_schedules[].applies_to[].type\" is new and required whenever \"subscription_details.billing_schedules[].applies_to\" is provided.",
423
+ "docsUrl": "https://docs.stripe.com/upgrades",
424
+ "sdkMethods": [
425
+ {
426
+ "namespace": "invoices",
427
+ "method": "createPreview"
428
+ }
429
+ ]
430
+ },
431
+ {
432
+ "id": "stripe-2026-08-26.dahlia-0024",
433
+ "kind": "required",
434
+ "severity": "breaking",
435
+ "location": "requestBody",
436
+ "path": "/v1/invoices/create_preview",
437
+ "method": "post",
438
+ "field": "subscription_details.billing_schedules[].bill_until.type",
439
+ "note": "Request parameter \"subscription_details.billing_schedules[].bill_until.type\" is new and required whenever \"subscription_details.billing_schedules[].bill_until\" is provided.",
440
+ "docsUrl": "https://docs.stripe.com/upgrades",
441
+ "sdkMethods": [
442
+ {
443
+ "namespace": "invoices",
444
+ "method": "createPreview"
445
+ }
446
+ ]
447
+ },
448
+ {
449
+ "id": "stripe-2026-08-26.dahlia-0025",
450
+ "kind": "typeChanged",
451
+ "severity": "breaking",
452
+ "location": "requestBody",
453
+ "path": "/v1/invoices/create_preview",
454
+ "method": "post",
455
+ "field": "subscription_details.cancel_at",
456
+ "fromType": "union(enum()|enum(max_period_end|min_period_end)|integer:unix-time)",
457
+ "toType": "union(enum()|enum(max_billed_until|max_period_end|min_period_end)|integer:unix-time)",
458
+ "note": "Request parameter \"subscription_details.cancel_at\" changed from union(enum()|enum(max_period_end|min_period_end)|integer:unix-time) to union(enum()|enum(max_billed_until|max_period_end|min_period_end)|integer:unix-time).",
459
+ "docsUrl": "https://docs.stripe.com/upgrades",
460
+ "sdkMethods": [
461
+ {
462
+ "namespace": "invoices",
463
+ "method": "createPreview"
464
+ }
465
+ ]
466
+ },
467
+ {
468
+ "id": "stripe-2026-08-26.dahlia-0027",
469
+ "kind": "required",
470
+ "severity": "breaking",
471
+ "location": "requestBody",
472
+ "path": "/v1/issuing/cards",
473
+ "method": "post",
474
+ "field": "lifecycle_controls.cancel_after",
475
+ "note": "Request parameter \"lifecycle_controls.cancel_after\" is new and required whenever \"lifecycle_controls\" is provided.",
476
+ "docsUrl": "https://docs.stripe.com/upgrades",
477
+ "sdkMethods": [
478
+ {
479
+ "namespace": "issuing.cards",
480
+ "method": "create"
481
+ }
482
+ ]
483
+ },
484
+ {
485
+ "id": "stripe-2026-08-26.dahlia-0028",
486
+ "kind": "required",
487
+ "severity": "breaking",
488
+ "location": "requestBody",
489
+ "path": "/v1/issuing/cards",
490
+ "method": "post",
491
+ "field": "lifecycle_controls.cancel_after.payment_count",
492
+ "note": "Request parameter \"lifecycle_controls.cancel_after.payment_count\" is new and required whenever \"lifecycle_controls.cancel_after\" is provided.",
493
+ "docsUrl": "https://docs.stripe.com/upgrades",
494
+ "sdkMethods": [
495
+ {
496
+ "namespace": "issuing.cards",
497
+ "method": "create"
498
+ }
499
+ ]
500
+ },
501
+ {
502
+ "id": "stripe-2026-08-26.dahlia-0030",
503
+ "kind": "required",
504
+ "severity": "breaking",
505
+ "location": "requestBody",
506
+ "path": "/v1/payment_intents",
507
+ "method": "post",
508
+ "field": "amount_details.line_items[].product_name",
509
+ "note": "Request parameter \"amount_details.line_items[].product_name\" is new and required whenever \"amount_details.line_items\" is provided.",
510
+ "docsUrl": "https://docs.stripe.com/upgrades",
511
+ "sdkMethods": [
512
+ {
513
+ "namespace": "paymentIntents",
514
+ "method": "create"
515
+ }
516
+ ]
517
+ },
518
+ {
519
+ "id": "stripe-2026-08-26.dahlia-0031",
520
+ "kind": "required",
521
+ "severity": "breaking",
522
+ "location": "requestBody",
523
+ "path": "/v1/payment_intents",
524
+ "method": "post",
525
+ "field": "amount_details.line_items[].quantity",
526
+ "note": "Request parameter \"amount_details.line_items[].quantity\" is new and required whenever \"amount_details.line_items\" is provided.",
527
+ "docsUrl": "https://docs.stripe.com/upgrades",
528
+ "sdkMethods": [
529
+ {
530
+ "namespace": "paymentIntents",
531
+ "method": "create"
532
+ }
533
+ ]
534
+ },
535
+ {
536
+ "id": "stripe-2026-08-26.dahlia-0032",
537
+ "kind": "required",
538
+ "severity": "breaking",
539
+ "location": "requestBody",
540
+ "path": "/v1/payment_intents",
541
+ "method": "post",
542
+ "field": "amount_details.line_items[].tax.total_tax_amount",
543
+ "note": "Request parameter \"amount_details.line_items[].tax.total_tax_amount\" is new and required whenever \"amount_details.line_items[].tax\" is provided.",
544
+ "docsUrl": "https://docs.stripe.com/upgrades",
545
+ "sdkMethods": [
546
+ {
547
+ "namespace": "paymentIntents",
548
+ "method": "create"
549
+ }
550
+ ]
551
+ },
552
+ {
553
+ "id": "stripe-2026-08-26.dahlia-0033",
554
+ "kind": "required",
555
+ "severity": "breaking",
556
+ "location": "requestBody",
557
+ "path": "/v1/payment_intents",
558
+ "method": "post",
559
+ "field": "amount_details.line_items[].unit_cost",
560
+ "note": "Request parameter \"amount_details.line_items[].unit_cost\" is new and required whenever \"amount_details.line_items\" is provided.",
561
+ "docsUrl": "https://docs.stripe.com/upgrades",
562
+ "sdkMethods": [
563
+ {
564
+ "namespace": "paymentIntents",
565
+ "method": "create"
566
+ }
567
+ ]
568
+ },
569
+ {
570
+ "id": "stripe-2026-08-26.dahlia-0034",
571
+ "kind": "required",
572
+ "severity": "breaking",
573
+ "location": "requestBody",
574
+ "path": "/v1/payment_intents",
575
+ "method": "post",
576
+ "field": "amount_details.tax.total_tax_amount",
577
+ "note": "Request parameter \"amount_details.tax.total_tax_amount\" is new and required whenever \"amount_details.tax\" is provided.",
578
+ "docsUrl": "https://docs.stripe.com/upgrades",
579
+ "sdkMethods": [
580
+ {
581
+ "namespace": "paymentIntents",
582
+ "method": "create"
583
+ }
584
+ ]
585
+ },
586
+ {
587
+ "id": "stripe-2026-08-26.dahlia-0036",
588
+ "kind": "typeChanged",
589
+ "severity": "breaking",
590
+ "location": "requestBody",
591
+ "path": "/v1/payment_intents",
592
+ "method": "post",
593
+ "field": "excluded_payment_method_types",
594
+ "fromType": "array<enum(acss_debit|affirm|afterpay_clearpay|alipay|alma|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|blik|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|kakao_pay|klarna|konbini|kr_card|mb_way|mobilepay|multibanco|naver_pay|nz_bank_account|oxxo|p24|pay_by_bank|payco|paynow|paypal|pix|promptpay|revolut_pay|samsung_pay|satispay|sepa_debit|sofort|swish|twint|us_bank_account|wechat_pay|zip)>",
595
+ "toType": "array<enum(acss_debit|affirm|afterpay_clearpay|alipay|alma|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|bizum|blik|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|kakao_pay|klarna|konbini|kr_card|mb_way|mobilepay|multibanco|naver_pay|nz_bank_account|oxxo|p24|pay_by_bank|payco|paynow|paypal|payto|pix|promptpay|revolut_pay|samsung_pay|satispay|scalapay|sepa_debit|sofort|sunbit|swish|twint|upi|us_bank_account|wechat_pay|zip)>",
596
+ "note": "Request parameter \"excluded_payment_method_types\" changed from array<enum(acss_debit|affirm|afterpay_clearpay|alipay|alma|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|blik|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|kakao_pay|klarna|konbini|kr_card|mb_way|mobilepay|multibanco|naver_pay|nz_bank_account|oxxo|p24|pay_by_bank|payco|paynow|paypal|pix|promptpay|revolut_pay|samsung_pay|satispay|sepa_debit|sofort|swish|twint|us_bank_account|wechat_pay|zip)> to array<enum(acss_debit|affirm|afterpay_clearpay|alipay|alma|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|bizum|blik|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|kakao_pay|klarna|konbini|kr_card|mb_way|mobilepay|multibanco|naver_pay|nz_bank_account|oxxo|p24|pay_by_bank|payco|paynow|paypal|payto|pix|promptpay|revolut_pay|samsung_pay|satispay|scalapay|sepa_debit|sofort|sunbit|swish|twint|upi|us_bank_account|wechat_pay|zip)>.",
597
+ "docsUrl": "https://docs.stripe.com/upgrades",
598
+ "sdkMethods": [
599
+ {
600
+ "namespace": "paymentIntents",
601
+ "method": "create"
602
+ }
603
+ ]
604
+ },
605
+ {
606
+ "id": "stripe-2026-08-26.dahlia-0035",
607
+ "kind": "required",
608
+ "severity": "breaking",
609
+ "location": "requestBody",
610
+ "path": "/v1/payment_intents",
611
+ "method": "post",
612
+ "field": "hooks.inputs.tax.calculation",
613
+ "note": "Request parameter \"hooks.inputs.tax.calculation\" is new and required whenever \"hooks.inputs.tax\" is provided.",
614
+ "docsUrl": "https://docs.stripe.com/upgrades",
615
+ "sdkMethods": [
616
+ {
617
+ "namespace": "paymentIntents",
618
+ "method": "create"
619
+ }
620
+ ]
621
+ },
622
+ {
623
+ "id": "stripe-2026-08-26.dahlia-0029",
624
+ "kind": "removed",
625
+ "severity": "breaking",
626
+ "location": "requestBody",
627
+ "path": "/v1/payment_intents",
628
+ "method": "post",
629
+ "field": "payment_method_options.us_bank_account.preferred_settlement_speed",
630
+ "note": "Request parameter \"payment_method_options.us_bank_account.preferred_settlement_speed\" was removed.",
631
+ "docsUrl": "https://docs.stripe.com/upgrades",
632
+ "sdkMethods": [
633
+ {
634
+ "namespace": "paymentIntents",
635
+ "method": "create"
636
+ }
637
+ ]
638
+ },
639
+ {
640
+ "id": "stripe-2026-08-26.dahlia-0038",
641
+ "kind": "required",
642
+ "severity": "breaking",
643
+ "location": "requestBody",
644
+ "path": "/v1/payment_intents/{intent}",
645
+ "method": "post",
646
+ "field": "amount_details.line_items[].product_name",
647
+ "note": "Request parameter \"amount_details.line_items[].product_name\" is new and required whenever \"amount_details.line_items\" is provided.",
648
+ "docsUrl": "https://docs.stripe.com/upgrades",
649
+ "sdkMethods": [
650
+ {
651
+ "namespace": "paymentIntents",
652
+ "method": "update"
653
+ }
654
+ ]
655
+ },
656
+ {
657
+ "id": "stripe-2026-08-26.dahlia-0039",
658
+ "kind": "required",
659
+ "severity": "breaking",
660
+ "location": "requestBody",
661
+ "path": "/v1/payment_intents/{intent}",
662
+ "method": "post",
663
+ "field": "amount_details.line_items[].quantity",
664
+ "note": "Request parameter \"amount_details.line_items[].quantity\" is new and required whenever \"amount_details.line_items\" is provided.",
665
+ "docsUrl": "https://docs.stripe.com/upgrades",
666
+ "sdkMethods": [
667
+ {
668
+ "namespace": "paymentIntents",
669
+ "method": "update"
670
+ }
671
+ ]
672
+ },
673
+ {
674
+ "id": "stripe-2026-08-26.dahlia-0040",
675
+ "kind": "required",
676
+ "severity": "breaking",
677
+ "location": "requestBody",
678
+ "path": "/v1/payment_intents/{intent}",
679
+ "method": "post",
680
+ "field": "amount_details.line_items[].tax.total_tax_amount",
681
+ "note": "Request parameter \"amount_details.line_items[].tax.total_tax_amount\" is new and required whenever \"amount_details.line_items[].tax\" is provided.",
682
+ "docsUrl": "https://docs.stripe.com/upgrades",
683
+ "sdkMethods": [
684
+ {
685
+ "namespace": "paymentIntents",
686
+ "method": "update"
687
+ }
688
+ ]
689
+ },
690
+ {
691
+ "id": "stripe-2026-08-26.dahlia-0041",
692
+ "kind": "required",
693
+ "severity": "breaking",
694
+ "location": "requestBody",
695
+ "path": "/v1/payment_intents/{intent}",
696
+ "method": "post",
697
+ "field": "amount_details.line_items[].unit_cost",
698
+ "note": "Request parameter \"amount_details.line_items[].unit_cost\" is new and required whenever \"amount_details.line_items\" is provided.",
699
+ "docsUrl": "https://docs.stripe.com/upgrades",
700
+ "sdkMethods": [
701
+ {
702
+ "namespace": "paymentIntents",
703
+ "method": "update"
704
+ }
705
+ ]
706
+ },
707
+ {
708
+ "id": "stripe-2026-08-26.dahlia-0042",
709
+ "kind": "required",
710
+ "severity": "breaking",
711
+ "location": "requestBody",
712
+ "path": "/v1/payment_intents/{intent}",
713
+ "method": "post",
714
+ "field": "amount_details.tax.total_tax_amount",
715
+ "note": "Request parameter \"amount_details.tax.total_tax_amount\" is new and required whenever \"amount_details.tax\" is provided.",
716
+ "docsUrl": "https://docs.stripe.com/upgrades",
717
+ "sdkMethods": [
718
+ {
719
+ "namespace": "paymentIntents",
720
+ "method": "update"
721
+ }
722
+ ]
723
+ },
724
+ {
725
+ "id": "stripe-2026-08-26.dahlia-0044",
726
+ "kind": "typeChanged",
727
+ "severity": "breaking",
728
+ "location": "requestBody",
729
+ "path": "/v1/payment_intents/{intent}",
730
+ "method": "post",
731
+ "field": "excluded_payment_method_types",
732
+ "fromType": "union(array<enum(acss_debit|affirm|afterpay_clearpay|alipay|alma|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|blik|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|kakao_pay|klarna|konbini|kr_card|mb_way|mobilepay|multibanco|naver_pay|nz_bank_account|oxxo|p24|pay_by_bank|payco|paynow|paypal|pix|promptpay|revolut_pay|samsung_pay|satispay|sepa_debit|sofort|swish|twint|us_bank_account|wechat_pay|zip)>|enum())",
733
+ "toType": "union(array<enum(acss_debit|affirm|afterpay_clearpay|alipay|alma|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|bizum|blik|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|kakao_pay|klarna|konbini|kr_card|mb_way|mobilepay|multibanco|naver_pay|nz_bank_account|oxxo|p24|pay_by_bank|payco|paynow|paypal|payto|pix|promptpay|revolut_pay|samsung_pay|satispay|scalapay|sepa_debit|sofort|sunbit|swish|twint|upi|us_bank_account|wechat_pay|zip)>|enum())",
734
+ "note": "Request parameter \"excluded_payment_method_types\" changed from union(array<enum(acss_debit|affirm|afterpay_clearpay|alipay|alma|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|blik|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|kakao_pay|klarna|konbini|kr_card|mb_way|mobilepay|multibanco|naver_pay|nz_bank_account|oxxo|p24|pay_by_bank|payco|paynow|paypal|pix|promptpay|revolut_pay|samsung_pay|satispay|sepa_debit|sofort|swish|twint|us_bank_account|wechat_pay|zip)>|enum()) to union(array<enum(acss_debit|affirm|afterpay_clearpay|alipay|alma|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|bizum|blik|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|kakao_pay|klarna|konbini|kr_card|mb_way|mobilepay|multibanco|naver_pay|nz_bank_account|oxxo|p24|pay_by_bank|payco|paynow|paypal|payto|pix|promptpay|revolut_pay|samsung_pay|satispay|scalapay|sepa_debit|sofort|sunbit|swish|twint|upi|us_bank_account|wechat_pay|zip)>|enum()).",
735
+ "docsUrl": "https://docs.stripe.com/upgrades",
736
+ "sdkMethods": [
737
+ {
738
+ "namespace": "paymentIntents",
739
+ "method": "update"
740
+ }
741
+ ]
742
+ },
743
+ {
744
+ "id": "stripe-2026-08-26.dahlia-0043",
745
+ "kind": "required",
746
+ "severity": "breaking",
747
+ "location": "requestBody",
748
+ "path": "/v1/payment_intents/{intent}",
749
+ "method": "post",
750
+ "field": "hooks.inputs.tax.calculation",
751
+ "note": "Request parameter \"hooks.inputs.tax.calculation\" is new and required whenever \"hooks.inputs.tax\" is provided.",
752
+ "docsUrl": "https://docs.stripe.com/upgrades",
753
+ "sdkMethods": [
754
+ {
755
+ "namespace": "paymentIntents",
756
+ "method": "update"
757
+ }
758
+ ]
759
+ },
760
+ {
761
+ "id": "stripe-2026-08-26.dahlia-0037",
762
+ "kind": "removed",
763
+ "severity": "breaking",
764
+ "location": "requestBody",
765
+ "path": "/v1/payment_intents/{intent}",
766
+ "method": "post",
767
+ "field": "payment_method_options.us_bank_account.preferred_settlement_speed",
768
+ "note": "Request parameter \"payment_method_options.us_bank_account.preferred_settlement_speed\" was removed.",
769
+ "docsUrl": "https://docs.stripe.com/upgrades",
770
+ "sdkMethods": [
771
+ {
772
+ "namespace": "paymentIntents",
773
+ "method": "update"
774
+ }
775
+ ]
776
+ },
777
+ {
778
+ "id": "stripe-2026-08-26.dahlia-0045",
779
+ "kind": "required",
780
+ "severity": "breaking",
781
+ "location": "requestBody",
782
+ "path": "/v1/payment_intents/{intent}/capture",
783
+ "method": "post",
784
+ "field": "amount_details.line_items[].product_name",
785
+ "note": "Request parameter \"amount_details.line_items[].product_name\" is new and required whenever \"amount_details.line_items\" is provided.",
786
+ "docsUrl": "https://docs.stripe.com/upgrades",
787
+ "sdkMethods": [
788
+ {
789
+ "namespace": "paymentIntents",
790
+ "method": "capture"
791
+ }
792
+ ]
793
+ },
794
+ {
795
+ "id": "stripe-2026-08-26.dahlia-0046",
796
+ "kind": "required",
797
+ "severity": "breaking",
798
+ "location": "requestBody",
799
+ "path": "/v1/payment_intents/{intent}/capture",
800
+ "method": "post",
801
+ "field": "amount_details.line_items[].quantity",
802
+ "note": "Request parameter \"amount_details.line_items[].quantity\" is new and required whenever \"amount_details.line_items\" is provided.",
803
+ "docsUrl": "https://docs.stripe.com/upgrades",
804
+ "sdkMethods": [
805
+ {
806
+ "namespace": "paymentIntents",
807
+ "method": "capture"
808
+ }
809
+ ]
810
+ },
811
+ {
812
+ "id": "stripe-2026-08-26.dahlia-0047",
813
+ "kind": "required",
814
+ "severity": "breaking",
815
+ "location": "requestBody",
816
+ "path": "/v1/payment_intents/{intent}/capture",
817
+ "method": "post",
818
+ "field": "amount_details.line_items[].tax.total_tax_amount",
819
+ "note": "Request parameter \"amount_details.line_items[].tax.total_tax_amount\" is new and required whenever \"amount_details.line_items[].tax\" is provided.",
820
+ "docsUrl": "https://docs.stripe.com/upgrades",
821
+ "sdkMethods": [
822
+ {
823
+ "namespace": "paymentIntents",
824
+ "method": "capture"
825
+ }
826
+ ]
827
+ },
828
+ {
829
+ "id": "stripe-2026-08-26.dahlia-0048",
830
+ "kind": "required",
831
+ "severity": "breaking",
832
+ "location": "requestBody",
833
+ "path": "/v1/payment_intents/{intent}/capture",
834
+ "method": "post",
835
+ "field": "amount_details.line_items[].unit_cost",
836
+ "note": "Request parameter \"amount_details.line_items[].unit_cost\" is new and required whenever \"amount_details.line_items\" is provided.",
837
+ "docsUrl": "https://docs.stripe.com/upgrades",
838
+ "sdkMethods": [
839
+ {
840
+ "namespace": "paymentIntents",
841
+ "method": "capture"
842
+ }
843
+ ]
844
+ },
845
+ {
846
+ "id": "stripe-2026-08-26.dahlia-0049",
847
+ "kind": "required",
848
+ "severity": "breaking",
849
+ "location": "requestBody",
850
+ "path": "/v1/payment_intents/{intent}/capture",
851
+ "method": "post",
852
+ "field": "amount_details.tax.total_tax_amount",
853
+ "note": "Request parameter \"amount_details.tax.total_tax_amount\" is new and required whenever \"amount_details.tax\" is provided.",
854
+ "docsUrl": "https://docs.stripe.com/upgrades",
855
+ "sdkMethods": [
856
+ {
857
+ "namespace": "paymentIntents",
858
+ "method": "capture"
859
+ }
860
+ ]
861
+ },
862
+ {
863
+ "id": "stripe-2026-08-26.dahlia-0050",
864
+ "kind": "required",
865
+ "severity": "breaking",
866
+ "location": "requestBody",
867
+ "path": "/v1/payment_intents/{intent}/capture",
868
+ "method": "post",
869
+ "field": "hooks.inputs.tax.calculation",
870
+ "note": "Request parameter \"hooks.inputs.tax.calculation\" is new and required whenever \"hooks.inputs.tax\" is provided.",
871
+ "docsUrl": "https://docs.stripe.com/upgrades",
872
+ "sdkMethods": [
873
+ {
874
+ "namespace": "paymentIntents",
875
+ "method": "capture"
876
+ }
877
+ ]
878
+ },
879
+ {
880
+ "id": "stripe-2026-08-26.dahlia-0052",
881
+ "kind": "required",
882
+ "severity": "breaking",
883
+ "location": "requestBody",
884
+ "path": "/v1/payment_intents/{intent}/confirm",
885
+ "method": "post",
886
+ "field": "amount_details.line_items[].product_name",
887
+ "note": "Request parameter \"amount_details.line_items[].product_name\" is new and required whenever \"amount_details.line_items\" is provided.",
888
+ "docsUrl": "https://docs.stripe.com/upgrades",
889
+ "sdkMethods": [
890
+ {
891
+ "namespace": "paymentIntents",
892
+ "method": "confirm"
893
+ }
894
+ ]
895
+ },
896
+ {
897
+ "id": "stripe-2026-08-26.dahlia-0053",
898
+ "kind": "required",
899
+ "severity": "breaking",
900
+ "location": "requestBody",
901
+ "path": "/v1/payment_intents/{intent}/confirm",
902
+ "method": "post",
903
+ "field": "amount_details.line_items[].quantity",
904
+ "note": "Request parameter \"amount_details.line_items[].quantity\" is new and required whenever \"amount_details.line_items\" is provided.",
905
+ "docsUrl": "https://docs.stripe.com/upgrades",
906
+ "sdkMethods": [
907
+ {
908
+ "namespace": "paymentIntents",
909
+ "method": "confirm"
910
+ }
911
+ ]
912
+ },
913
+ {
914
+ "id": "stripe-2026-08-26.dahlia-0054",
915
+ "kind": "required",
916
+ "severity": "breaking",
917
+ "location": "requestBody",
918
+ "path": "/v1/payment_intents/{intent}/confirm",
919
+ "method": "post",
920
+ "field": "amount_details.line_items[].tax.total_tax_amount",
921
+ "note": "Request parameter \"amount_details.line_items[].tax.total_tax_amount\" is new and required whenever \"amount_details.line_items[].tax\" is provided.",
922
+ "docsUrl": "https://docs.stripe.com/upgrades",
923
+ "sdkMethods": [
924
+ {
925
+ "namespace": "paymentIntents",
926
+ "method": "confirm"
927
+ }
928
+ ]
929
+ },
930
+ {
931
+ "id": "stripe-2026-08-26.dahlia-0055",
932
+ "kind": "required",
933
+ "severity": "breaking",
934
+ "location": "requestBody",
935
+ "path": "/v1/payment_intents/{intent}/confirm",
936
+ "method": "post",
937
+ "field": "amount_details.line_items[].unit_cost",
938
+ "note": "Request parameter \"amount_details.line_items[].unit_cost\" is new and required whenever \"amount_details.line_items\" is provided.",
939
+ "docsUrl": "https://docs.stripe.com/upgrades",
940
+ "sdkMethods": [
941
+ {
942
+ "namespace": "paymentIntents",
943
+ "method": "confirm"
944
+ }
945
+ ]
946
+ },
947
+ {
948
+ "id": "stripe-2026-08-26.dahlia-0056",
949
+ "kind": "required",
950
+ "severity": "breaking",
951
+ "location": "requestBody",
952
+ "path": "/v1/payment_intents/{intent}/confirm",
953
+ "method": "post",
954
+ "field": "amount_details.tax.total_tax_amount",
955
+ "note": "Request parameter \"amount_details.tax.total_tax_amount\" is new and required whenever \"amount_details.tax\" is provided.",
956
+ "docsUrl": "https://docs.stripe.com/upgrades",
957
+ "sdkMethods": [
958
+ {
959
+ "namespace": "paymentIntents",
960
+ "method": "confirm"
961
+ }
962
+ ]
963
+ },
964
+ {
965
+ "id": "stripe-2026-08-26.dahlia-0058",
966
+ "kind": "typeChanged",
967
+ "severity": "breaking",
968
+ "location": "requestBody",
969
+ "path": "/v1/payment_intents/{intent}/confirm",
970
+ "method": "post",
971
+ "field": "excluded_payment_method_types",
972
+ "fromType": "union(array<enum(acss_debit|affirm|afterpay_clearpay|alipay|alma|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|blik|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|kakao_pay|klarna|konbini|kr_card|mb_way|mobilepay|multibanco|naver_pay|nz_bank_account|oxxo|p24|pay_by_bank|payco|paynow|paypal|pix|promptpay|revolut_pay|samsung_pay|satispay|sepa_debit|sofort|swish|twint|us_bank_account|wechat_pay|zip)>|enum())",
973
+ "toType": "union(array<enum(acss_debit|affirm|afterpay_clearpay|alipay|alma|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|bizum|blik|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|kakao_pay|klarna|konbini|kr_card|mb_way|mobilepay|multibanco|naver_pay|nz_bank_account|oxxo|p24|pay_by_bank|payco|paynow|paypal|payto|pix|promptpay|revolut_pay|samsung_pay|satispay|scalapay|sepa_debit|sofort|sunbit|swish|twint|upi|us_bank_account|wechat_pay|zip)>|enum())",
974
+ "note": "Request parameter \"excluded_payment_method_types\" changed from union(array<enum(acss_debit|affirm|afterpay_clearpay|alipay|alma|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|blik|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|kakao_pay|klarna|konbini|kr_card|mb_way|mobilepay|multibanco|naver_pay|nz_bank_account|oxxo|p24|pay_by_bank|payco|paynow|paypal|pix|promptpay|revolut_pay|samsung_pay|satispay|sepa_debit|sofort|swish|twint|us_bank_account|wechat_pay|zip)>|enum()) to union(array<enum(acss_debit|affirm|afterpay_clearpay|alipay|alma|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|bizum|blik|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|kakao_pay|klarna|konbini|kr_card|mb_way|mobilepay|multibanco|naver_pay|nz_bank_account|oxxo|p24|pay_by_bank|payco|paynow|paypal|payto|pix|promptpay|revolut_pay|samsung_pay|satispay|scalapay|sepa_debit|sofort|sunbit|swish|twint|upi|us_bank_account|wechat_pay|zip)>|enum()).",
975
+ "docsUrl": "https://docs.stripe.com/upgrades",
976
+ "sdkMethods": [
977
+ {
978
+ "namespace": "paymentIntents",
979
+ "method": "confirm"
980
+ }
981
+ ]
982
+ },
983
+ {
984
+ "id": "stripe-2026-08-26.dahlia-0057",
985
+ "kind": "required",
986
+ "severity": "breaking",
987
+ "location": "requestBody",
988
+ "path": "/v1/payment_intents/{intent}/confirm",
989
+ "method": "post",
990
+ "field": "hooks.inputs.tax.calculation",
991
+ "note": "Request parameter \"hooks.inputs.tax.calculation\" is new and required whenever \"hooks.inputs.tax\" is provided.",
992
+ "docsUrl": "https://docs.stripe.com/upgrades",
993
+ "sdkMethods": [
994
+ {
995
+ "namespace": "paymentIntents",
996
+ "method": "confirm"
997
+ }
998
+ ]
999
+ },
1000
+ {
1001
+ "id": "stripe-2026-08-26.dahlia-0051",
1002
+ "kind": "removed",
1003
+ "severity": "breaking",
1004
+ "location": "requestBody",
1005
+ "path": "/v1/payment_intents/{intent}/confirm",
1006
+ "method": "post",
1007
+ "field": "payment_method_options.us_bank_account.preferred_settlement_speed",
1008
+ "note": "Request parameter \"payment_method_options.us_bank_account.preferred_settlement_speed\" was removed.",
1009
+ "docsUrl": "https://docs.stripe.com/upgrades",
1010
+ "sdkMethods": [
1011
+ {
1012
+ "namespace": "paymentIntents",
1013
+ "method": "confirm"
1014
+ }
1015
+ ]
1016
+ },
1017
+ {
1018
+ "id": "stripe-2026-08-26.dahlia-0059",
1019
+ "kind": "required",
1020
+ "severity": "breaking",
1021
+ "location": "requestBody",
1022
+ "path": "/v1/payment_intents/{intent}/increment_authorization",
1023
+ "method": "post",
1024
+ "field": "amount_details.line_items[].product_name",
1025
+ "note": "Request parameter \"amount_details.line_items[].product_name\" is new and required whenever \"amount_details.line_items\" is provided.",
1026
+ "docsUrl": "https://docs.stripe.com/upgrades",
1027
+ "sdkMethods": [
1028
+ {
1029
+ "namespace": "paymentIntents",
1030
+ "method": "incrementAuthorization"
1031
+ }
1032
+ ]
1033
+ },
1034
+ {
1035
+ "id": "stripe-2026-08-26.dahlia-0060",
1036
+ "kind": "required",
1037
+ "severity": "breaking",
1038
+ "location": "requestBody",
1039
+ "path": "/v1/payment_intents/{intent}/increment_authorization",
1040
+ "method": "post",
1041
+ "field": "amount_details.line_items[].quantity",
1042
+ "note": "Request parameter \"amount_details.line_items[].quantity\" is new and required whenever \"amount_details.line_items\" is provided.",
1043
+ "docsUrl": "https://docs.stripe.com/upgrades",
1044
+ "sdkMethods": [
1045
+ {
1046
+ "namespace": "paymentIntents",
1047
+ "method": "incrementAuthorization"
1048
+ }
1049
+ ]
1050
+ },
1051
+ {
1052
+ "id": "stripe-2026-08-26.dahlia-0061",
1053
+ "kind": "required",
1054
+ "severity": "breaking",
1055
+ "location": "requestBody",
1056
+ "path": "/v1/payment_intents/{intent}/increment_authorization",
1057
+ "method": "post",
1058
+ "field": "amount_details.line_items[].tax.total_tax_amount",
1059
+ "note": "Request parameter \"amount_details.line_items[].tax.total_tax_amount\" is new and required whenever \"amount_details.line_items[].tax\" is provided.",
1060
+ "docsUrl": "https://docs.stripe.com/upgrades",
1061
+ "sdkMethods": [
1062
+ {
1063
+ "namespace": "paymentIntents",
1064
+ "method": "incrementAuthorization"
1065
+ }
1066
+ ]
1067
+ },
1068
+ {
1069
+ "id": "stripe-2026-08-26.dahlia-0062",
1070
+ "kind": "required",
1071
+ "severity": "breaking",
1072
+ "location": "requestBody",
1073
+ "path": "/v1/payment_intents/{intent}/increment_authorization",
1074
+ "method": "post",
1075
+ "field": "amount_details.line_items[].unit_cost",
1076
+ "note": "Request parameter \"amount_details.line_items[].unit_cost\" is new and required whenever \"amount_details.line_items\" is provided.",
1077
+ "docsUrl": "https://docs.stripe.com/upgrades",
1078
+ "sdkMethods": [
1079
+ {
1080
+ "namespace": "paymentIntents",
1081
+ "method": "incrementAuthorization"
1082
+ }
1083
+ ]
1084
+ },
1085
+ {
1086
+ "id": "stripe-2026-08-26.dahlia-0063",
1087
+ "kind": "required",
1088
+ "severity": "breaking",
1089
+ "location": "requestBody",
1090
+ "path": "/v1/payment_intents/{intent}/increment_authorization",
1091
+ "method": "post",
1092
+ "field": "amount_details.tax.total_tax_amount",
1093
+ "note": "Request parameter \"amount_details.tax.total_tax_amount\" is new and required whenever \"amount_details.tax\" is provided.",
1094
+ "docsUrl": "https://docs.stripe.com/upgrades",
1095
+ "sdkMethods": [
1096
+ {
1097
+ "namespace": "paymentIntents",
1098
+ "method": "incrementAuthorization"
1099
+ }
1100
+ ]
1101
+ },
1102
+ {
1103
+ "id": "stripe-2026-08-26.dahlia-0064",
1104
+ "kind": "required",
1105
+ "severity": "breaking",
1106
+ "location": "requestBody",
1107
+ "path": "/v1/payment_intents/{intent}/increment_authorization",
1108
+ "method": "post",
1109
+ "field": "hooks.inputs.tax.calculation",
1110
+ "note": "Request parameter \"hooks.inputs.tax.calculation\" is new and required whenever \"hooks.inputs.tax\" is provided.",
1111
+ "docsUrl": "https://docs.stripe.com/upgrades",
1112
+ "sdkMethods": [
1113
+ {
1114
+ "namespace": "paymentIntents",
1115
+ "method": "incrementAuthorization"
1116
+ }
1117
+ ]
1118
+ },
1119
+ {
1120
+ "id": "stripe-2026-08-26.dahlia-0065",
1121
+ "kind": "required",
1122
+ "severity": "breaking",
1123
+ "location": "requestBody",
1124
+ "path": "/v1/payment_links",
1125
+ "method": "post",
1126
+ "field": "name_collection.business.enabled",
1127
+ "note": "Request parameter \"name_collection.business.enabled\" is new and required whenever \"name_collection.business\" is provided.",
1128
+ "docsUrl": "https://docs.stripe.com/upgrades",
1129
+ "sdkMethods": [
1130
+ {
1131
+ "namespace": "paymentLinks",
1132
+ "method": "create"
1133
+ }
1134
+ ]
1135
+ },
1136
+ {
1137
+ "id": "stripe-2026-08-26.dahlia-0066",
1138
+ "kind": "required",
1139
+ "severity": "breaking",
1140
+ "location": "requestBody",
1141
+ "path": "/v1/payment_links",
1142
+ "method": "post",
1143
+ "field": "name_collection.individual.enabled",
1144
+ "note": "Request parameter \"name_collection.individual.enabled\" is new and required whenever \"name_collection.individual\" is provided.",
1145
+ "docsUrl": "https://docs.stripe.com/upgrades",
1146
+ "sdkMethods": [
1147
+ {
1148
+ "namespace": "paymentLinks",
1149
+ "method": "create"
1150
+ }
1151
+ ]
1152
+ },
1153
+ {
1154
+ "id": "stripe-2026-08-26.dahlia-0067",
1155
+ "kind": "typeChanged",
1156
+ "severity": "breaking",
1157
+ "location": "requestBody",
1158
+ "path": "/v1/payment_links",
1159
+ "method": "post",
1160
+ "field": "payment_method_types",
1161
+ "fromType": "array<enum(affirm|afterpay_clearpay|alipay|alma|au_becs_debit|bacs_debit|bancontact|billie|blik|boleto|card|cashapp|eps|fpx|giropay|grabpay|ideal|klarna|konbini|link|mobilepay|multibanco|oxxo|p24|pay_by_bank|paynow|paypal|pix|promptpay|satispay|sepa_debit|sofort|swish|twint|us_bank_account|wechat_pay|zip)>",
1162
+ "toType": "array<enum(affirm|afterpay_clearpay|alipay|alma|au_becs_debit|bacs_debit|bancontact|billie|bizum|blik|boleto|card|cashapp|eps|fpx|giropay|grabpay|ideal|klarna|konbini|link|mb_way|mobilepay|multibanco|oxxo|p24|pay_by_bank|paynow|paypal|payto|pix|promptpay|satispay|sepa_debit|sofort|sunbit|swish|twint|upi|us_bank_account|wechat_pay|zip)>",
1163
+ "note": "Request parameter \"payment_method_types\" changed from array<enum(affirm|afterpay_clearpay|alipay|alma|au_becs_debit|bacs_debit|bancontact|billie|blik|boleto|card|cashapp|eps|fpx|giropay|grabpay|ideal|klarna|konbini|link|mobilepay|multibanco|oxxo|p24|pay_by_bank|paynow|paypal|pix|promptpay|satispay|sepa_debit|sofort|swish|twint|us_bank_account|wechat_pay|zip)> to array<enum(affirm|afterpay_clearpay|alipay|alma|au_becs_debit|bacs_debit|bancontact|billie|bizum|blik|boleto|card|cashapp|eps|fpx|giropay|grabpay|ideal|klarna|konbini|link|mb_way|mobilepay|multibanco|oxxo|p24|pay_by_bank|paynow|paypal|payto|pix|promptpay|satispay|sepa_debit|sofort|sunbit|swish|twint|upi|us_bank_account|wechat_pay|zip)>.",
1164
+ "docsUrl": "https://docs.stripe.com/upgrades",
1165
+ "sdkMethods": [
1166
+ {
1167
+ "namespace": "paymentLinks",
1168
+ "method": "create"
1169
+ }
1170
+ ]
1171
+ },
1172
+ {
1173
+ "id": "stripe-2026-08-26.dahlia-0068",
1174
+ "kind": "required",
1175
+ "severity": "breaking",
1176
+ "location": "requestBody",
1177
+ "path": "/v1/payment_links/{payment_link}",
1178
+ "method": "post",
1179
+ "field": "consent_collection.payment_method_reuse_agreement.position",
1180
+ "note": "Request parameter \"consent_collection.payment_method_reuse_agreement.position\" is new and required whenever \"consent_collection.payment_method_reuse_agreement\" is provided.",
1181
+ "docsUrl": "https://docs.stripe.com/upgrades",
1182
+ "sdkMethods": [
1183
+ {
1184
+ "namespace": "paymentLinks",
1185
+ "method": "update"
1186
+ }
1187
+ ]
1188
+ },
1189
+ {
1190
+ "id": "stripe-2026-08-26.dahlia-0069",
1191
+ "kind": "required",
1192
+ "severity": "breaking",
1193
+ "location": "requestBody",
1194
+ "path": "/v1/payment_links/{payment_link}",
1195
+ "method": "post",
1196
+ "field": "name_collection.business.enabled",
1197
+ "note": "Request parameter \"name_collection.business.enabled\" is new and required whenever \"name_collection.business\" is provided.",
1198
+ "docsUrl": "https://docs.stripe.com/upgrades",
1199
+ "sdkMethods": [
1200
+ {
1201
+ "namespace": "paymentLinks",
1202
+ "method": "update"
1203
+ }
1204
+ ]
1205
+ },
1206
+ {
1207
+ "id": "stripe-2026-08-26.dahlia-0070",
1208
+ "kind": "required",
1209
+ "severity": "breaking",
1210
+ "location": "requestBody",
1211
+ "path": "/v1/payment_links/{payment_link}",
1212
+ "method": "post",
1213
+ "field": "name_collection.individual.enabled",
1214
+ "note": "Request parameter \"name_collection.individual.enabled\" is new and required whenever \"name_collection.individual\" is provided.",
1215
+ "docsUrl": "https://docs.stripe.com/upgrades",
1216
+ "sdkMethods": [
1217
+ {
1218
+ "namespace": "paymentLinks",
1219
+ "method": "update"
1220
+ }
1221
+ ]
1222
+ },
1223
+ {
1224
+ "id": "stripe-2026-08-26.dahlia-0071",
1225
+ "kind": "required",
1226
+ "severity": "breaking",
1227
+ "location": "requestBody",
1228
+ "path": "/v1/payment_links/{payment_link}",
1229
+ "method": "post",
1230
+ "field": "optional_items[].adjustable_quantity.enabled",
1231
+ "note": "Request parameter \"optional_items[].adjustable_quantity.enabled\" is new and required whenever \"optional_items[].adjustable_quantity\" is provided.",
1232
+ "docsUrl": "https://docs.stripe.com/upgrades",
1233
+ "sdkMethods": [
1234
+ {
1235
+ "namespace": "paymentLinks",
1236
+ "method": "update"
1237
+ }
1238
+ ]
1239
+ },
1240
+ {
1241
+ "id": "stripe-2026-08-26.dahlia-0072",
1242
+ "kind": "required",
1243
+ "severity": "breaking",
1244
+ "location": "requestBody",
1245
+ "path": "/v1/payment_links/{payment_link}",
1246
+ "method": "post",
1247
+ "field": "optional_items[].price",
1248
+ "note": "Request parameter \"optional_items[].price\" is new and required whenever \"optional_items\" is provided.",
1249
+ "docsUrl": "https://docs.stripe.com/upgrades",
1250
+ "sdkMethods": [
1251
+ {
1252
+ "namespace": "paymentLinks",
1253
+ "method": "update"
1254
+ }
1255
+ ]
1256
+ },
1257
+ {
1258
+ "id": "stripe-2026-08-26.dahlia-0073",
1259
+ "kind": "required",
1260
+ "severity": "breaking",
1261
+ "location": "requestBody",
1262
+ "path": "/v1/payment_links/{payment_link}",
1263
+ "method": "post",
1264
+ "field": "optional_items[].quantity",
1265
+ "note": "Request parameter \"optional_items[].quantity\" is new and required whenever \"optional_items\" is provided.",
1266
+ "docsUrl": "https://docs.stripe.com/upgrades",
1267
+ "sdkMethods": [
1268
+ {
1269
+ "namespace": "paymentLinks",
1270
+ "method": "update"
1271
+ }
1272
+ ]
1273
+ },
1274
+ {
1275
+ "id": "stripe-2026-08-26.dahlia-0075",
1276
+ "kind": "typeChanged",
1277
+ "severity": "breaking",
1278
+ "location": "requestBody",
1279
+ "path": "/v1/payment_links/{payment_link}",
1280
+ "method": "post",
1281
+ "field": "payment_method_types",
1282
+ "fromType": "union(array<enum(affirm|afterpay_clearpay|alipay|alma|au_becs_debit|bacs_debit|bancontact|billie|blik|boleto|card|cashapp|eps|fpx|giropay|grabpay|ideal|klarna|konbini|link|mobilepay|multibanco|oxxo|p24|pay_by_bank|paynow|paypal|pix|promptpay|satispay|sepa_debit|sofort|swish|twint|us_bank_account|wechat_pay|zip)>|enum())",
1283
+ "toType": "union(array<enum(affirm|afterpay_clearpay|alipay|alma|au_becs_debit|bacs_debit|bancontact|billie|bizum|blik|boleto|card|cashapp|eps|fpx|giropay|grabpay|ideal|klarna|konbini|link|mb_way|mobilepay|multibanco|oxxo|p24|pay_by_bank|paynow|paypal|payto|pix|promptpay|satispay|sepa_debit|sofort|sunbit|swish|twint|upi|us_bank_account|wechat_pay|zip)>|enum())",
1284
+ "note": "Request parameter \"payment_method_types\" changed from union(array<enum(affirm|afterpay_clearpay|alipay|alma|au_becs_debit|bacs_debit|bancontact|billie|blik|boleto|card|cashapp|eps|fpx|giropay|grabpay|ideal|klarna|konbini|link|mobilepay|multibanco|oxxo|p24|pay_by_bank|paynow|paypal|pix|promptpay|satispay|sepa_debit|sofort|swish|twint|us_bank_account|wechat_pay|zip)>|enum()) to union(array<enum(affirm|afterpay_clearpay|alipay|alma|au_becs_debit|bacs_debit|bancontact|billie|bizum|blik|boleto|card|cashapp|eps|fpx|giropay|grabpay|ideal|klarna|konbini|link|mb_way|mobilepay|multibanco|oxxo|p24|pay_by_bank|paynow|paypal|payto|pix|promptpay|satispay|sepa_debit|sofort|sunbit|swish|twint|upi|us_bank_account|wechat_pay|zip)>|enum()).",
1285
+ "docsUrl": "https://docs.stripe.com/upgrades",
1286
+ "sdkMethods": [
1287
+ {
1288
+ "namespace": "paymentLinks",
1289
+ "method": "update"
1290
+ }
1291
+ ]
1292
+ },
1293
+ {
1294
+ "id": "stripe-2026-08-26.dahlia-0074",
1295
+ "kind": "required",
1296
+ "severity": "breaking",
1297
+ "location": "requestBody",
1298
+ "path": "/v1/payment_links/{payment_link}",
1299
+ "method": "post",
1300
+ "field": "transfer_data.destination",
1301
+ "note": "Request parameter \"transfer_data.destination\" is new and required whenever \"transfer_data\" is provided.",
1302
+ "docsUrl": "https://docs.stripe.com/upgrades",
1303
+ "sdkMethods": [
1304
+ {
1305
+ "namespace": "paymentLinks",
1306
+ "method": "update"
1307
+ }
1308
+ ]
1309
+ },
1310
+ {
1311
+ "id": "stripe-2026-08-26.dahlia-0076",
1312
+ "kind": "required",
1313
+ "severity": "breaking",
1314
+ "location": "requestBody",
1315
+ "path": "/v1/payment_methods",
1316
+ "method": "post",
1317
+ "field": "custom.type",
1318
+ "note": "Request parameter \"custom.type\" is new and required whenever \"custom\" is provided.",
1319
+ "docsUrl": "https://docs.stripe.com/upgrades",
1320
+ "sdkMethods": [
1321
+ {
1322
+ "namespace": "paymentMethods",
1323
+ "method": "create"
1324
+ }
1325
+ ]
1326
+ },
1327
+ {
1328
+ "id": "stripe-2026-08-26.dahlia-0077",
1329
+ "kind": "required",
1330
+ "severity": "breaking",
1331
+ "location": "requestBody",
1332
+ "path": "/v1/quotes",
1333
+ "method": "post",
1334
+ "field": "invoice_settings.custom_fields[].name",
1335
+ "note": "Request parameter \"invoice_settings.custom_fields[].name\" is new and required whenever \"invoice_settings.custom_fields\" is provided.",
1336
+ "docsUrl": "https://docs.stripe.com/upgrades",
1337
+ "sdkMethods": [
1338
+ {
1339
+ "namespace": "quotes",
1340
+ "method": "create"
1341
+ }
1342
+ ]
1343
+ },
1344
+ {
1345
+ "id": "stripe-2026-08-26.dahlia-0078",
1346
+ "kind": "required",
1347
+ "severity": "breaking",
1348
+ "location": "requestBody",
1349
+ "path": "/v1/quotes",
1350
+ "method": "post",
1351
+ "field": "invoice_settings.custom_fields[].value",
1352
+ "note": "Request parameter \"invoice_settings.custom_fields[].value\" is new and required whenever \"invoice_settings.custom_fields\" is provided.",
1353
+ "docsUrl": "https://docs.stripe.com/upgrades",
1354
+ "sdkMethods": [
1355
+ {
1356
+ "namespace": "quotes",
1357
+ "method": "create"
1358
+ }
1359
+ ]
1360
+ },
1361
+ {
1362
+ "id": "stripe-2026-08-26.dahlia-0079",
1363
+ "kind": "required",
1364
+ "severity": "breaking",
1365
+ "location": "requestBody",
1366
+ "path": "/v1/quotes/{quote}",
1367
+ "method": "post",
1368
+ "field": "invoice_settings.custom_fields[].name",
1369
+ "note": "Request parameter \"invoice_settings.custom_fields[].name\" is new and required whenever \"invoice_settings.custom_fields\" is provided.",
1370
+ "docsUrl": "https://docs.stripe.com/upgrades",
1371
+ "sdkMethods": [
1372
+ {
1373
+ "namespace": "quotes",
1374
+ "method": "update"
1375
+ }
1376
+ ]
1377
+ },
1378
+ {
1379
+ "id": "stripe-2026-08-26.dahlia-0080",
1380
+ "kind": "required",
1381
+ "severity": "breaking",
1382
+ "location": "requestBody",
1383
+ "path": "/v1/quotes/{quote}",
1384
+ "method": "post",
1385
+ "field": "invoice_settings.custom_fields[].value",
1386
+ "note": "Request parameter \"invoice_settings.custom_fields[].value\" is new and required whenever \"invoice_settings.custom_fields\" is provided.",
1387
+ "docsUrl": "https://docs.stripe.com/upgrades",
1388
+ "sdkMethods": [
1389
+ {
1390
+ "namespace": "quotes",
1391
+ "method": "update"
1392
+ }
1393
+ ]
1394
+ },
1395
+ {
1396
+ "id": "stripe-2026-08-26.dahlia-0081",
1397
+ "kind": "required",
1398
+ "severity": "breaking",
1399
+ "location": "requestBody",
1400
+ "path": "/v1/subscription_schedules",
1401
+ "method": "post",
1402
+ "field": "default_settings.invoice_settings.custom_fields[].name",
1403
+ "note": "Request parameter \"default_settings.invoice_settings.custom_fields[].name\" is new and required whenever \"default_settings.invoice_settings.custom_fields\" is provided.",
1404
+ "docsUrl": "https://docs.stripe.com/upgrades",
1405
+ "sdkMethods": [
1406
+ {
1407
+ "namespace": "subscriptionSchedules",
1408
+ "method": "create"
1409
+ }
1410
+ ]
1411
+ },
1412
+ {
1413
+ "id": "stripe-2026-08-26.dahlia-0082",
1414
+ "kind": "required",
1415
+ "severity": "breaking",
1416
+ "location": "requestBody",
1417
+ "path": "/v1/subscription_schedules",
1418
+ "method": "post",
1419
+ "field": "default_settings.invoice_settings.custom_fields[].value",
1420
+ "note": "Request parameter \"default_settings.invoice_settings.custom_fields[].value\" is new and required whenever \"default_settings.invoice_settings.custom_fields\" is provided.",
1421
+ "docsUrl": "https://docs.stripe.com/upgrades",
1422
+ "sdkMethods": [
1423
+ {
1424
+ "namespace": "subscriptionSchedules",
1425
+ "method": "create"
1426
+ }
1427
+ ]
1428
+ },
1429
+ {
1430
+ "id": "stripe-2026-08-26.dahlia-0083",
1431
+ "kind": "required",
1432
+ "severity": "breaking",
1433
+ "location": "requestBody",
1434
+ "path": "/v1/subscription_schedules",
1435
+ "method": "post",
1436
+ "field": "phases[].invoice_settings.custom_fields[].name",
1437
+ "note": "Request parameter \"phases[].invoice_settings.custom_fields[].name\" is new and required whenever \"phases[].invoice_settings.custom_fields\" is provided.",
1438
+ "docsUrl": "https://docs.stripe.com/upgrades",
1439
+ "sdkMethods": [
1440
+ {
1441
+ "namespace": "subscriptionSchedules",
1442
+ "method": "create"
1443
+ }
1444
+ ]
1445
+ },
1446
+ {
1447
+ "id": "stripe-2026-08-26.dahlia-0084",
1448
+ "kind": "required",
1449
+ "severity": "breaking",
1450
+ "location": "requestBody",
1451
+ "path": "/v1/subscription_schedules",
1452
+ "method": "post",
1453
+ "field": "phases[].invoice_settings.custom_fields[].value",
1454
+ "note": "Request parameter \"phases[].invoice_settings.custom_fields[].value\" is new and required whenever \"phases[].invoice_settings.custom_fields\" is provided.",
1455
+ "docsUrl": "https://docs.stripe.com/upgrades",
1456
+ "sdkMethods": [
1457
+ {
1458
+ "namespace": "subscriptionSchedules",
1459
+ "method": "create"
1460
+ }
1461
+ ]
1462
+ },
1463
+ {
1464
+ "id": "stripe-2026-08-26.dahlia-0085",
1465
+ "kind": "required",
1466
+ "severity": "breaking",
1467
+ "location": "requestBody",
1468
+ "path": "/v1/subscription_schedules/{schedule}",
1469
+ "method": "post",
1470
+ "field": "default_settings.invoice_settings.custom_fields[].name",
1471
+ "note": "Request parameter \"default_settings.invoice_settings.custom_fields[].name\" is new and required whenever \"default_settings.invoice_settings.custom_fields\" is provided.",
1472
+ "docsUrl": "https://docs.stripe.com/upgrades",
1473
+ "sdkMethods": [
1474
+ {
1475
+ "namespace": "subscriptionSchedules",
1476
+ "method": "update"
1477
+ }
1478
+ ]
1479
+ },
1480
+ {
1481
+ "id": "stripe-2026-08-26.dahlia-0086",
1482
+ "kind": "required",
1483
+ "severity": "breaking",
1484
+ "location": "requestBody",
1485
+ "path": "/v1/subscription_schedules/{schedule}",
1486
+ "method": "post",
1487
+ "field": "default_settings.invoice_settings.custom_fields[].value",
1488
+ "note": "Request parameter \"default_settings.invoice_settings.custom_fields[].value\" is new and required whenever \"default_settings.invoice_settings.custom_fields\" is provided.",
1489
+ "docsUrl": "https://docs.stripe.com/upgrades",
1490
+ "sdkMethods": [
1491
+ {
1492
+ "namespace": "subscriptionSchedules",
1493
+ "method": "update"
1494
+ }
1495
+ ]
1496
+ },
1497
+ {
1498
+ "id": "stripe-2026-08-26.dahlia-0087",
1499
+ "kind": "required",
1500
+ "severity": "breaking",
1501
+ "location": "requestBody",
1502
+ "path": "/v1/subscription_schedules/{schedule}",
1503
+ "method": "post",
1504
+ "field": "phases[].invoice_settings.custom_fields[].name",
1505
+ "note": "Request parameter \"phases[].invoice_settings.custom_fields[].name\" is new and required whenever \"phases[].invoice_settings.custom_fields\" is provided.",
1506
+ "docsUrl": "https://docs.stripe.com/upgrades",
1507
+ "sdkMethods": [
1508
+ {
1509
+ "namespace": "subscriptionSchedules",
1510
+ "method": "update"
1511
+ }
1512
+ ]
1513
+ },
1514
+ {
1515
+ "id": "stripe-2026-08-26.dahlia-0088",
1516
+ "kind": "required",
1517
+ "severity": "breaking",
1518
+ "location": "requestBody",
1519
+ "path": "/v1/subscription_schedules/{schedule}",
1520
+ "method": "post",
1521
+ "field": "phases[].invoice_settings.custom_fields[].value",
1522
+ "note": "Request parameter \"phases[].invoice_settings.custom_fields[].value\" is new and required whenever \"phases[].invoice_settings.custom_fields\" is provided.",
1523
+ "docsUrl": "https://docs.stripe.com/upgrades",
1524
+ "sdkMethods": [
1525
+ {
1526
+ "namespace": "subscriptionSchedules",
1527
+ "method": "update"
1528
+ }
1529
+ ]
1530
+ },
1531
+ {
1532
+ "id": "stripe-2026-08-26.dahlia-0089",
1533
+ "kind": "required",
1534
+ "severity": "breaking",
1535
+ "location": "requestBody",
1536
+ "path": "/v1/subscriptions",
1537
+ "method": "post",
1538
+ "field": "billing_schedules[].applies_to[].type",
1539
+ "note": "Request parameter \"billing_schedules[].applies_to[].type\" is new and required whenever \"billing_schedules[].applies_to\" is provided.",
1540
+ "docsUrl": "https://docs.stripe.com/upgrades",
1541
+ "sdkMethods": [
1542
+ {
1543
+ "namespace": "subscriptions",
1544
+ "method": "create"
1545
+ }
1546
+ ]
1547
+ },
1548
+ {
1549
+ "id": "stripe-2026-08-26.dahlia-0090",
1550
+ "kind": "required",
1551
+ "severity": "breaking",
1552
+ "location": "requestBody",
1553
+ "path": "/v1/subscriptions",
1554
+ "method": "post",
1555
+ "field": "billing_schedules[].bill_until",
1556
+ "note": "Request parameter \"billing_schedules[].bill_until\" is new and required whenever \"billing_schedules\" is provided.",
1557
+ "docsUrl": "https://docs.stripe.com/upgrades",
1558
+ "sdkMethods": [
1559
+ {
1560
+ "namespace": "subscriptions",
1561
+ "method": "create"
1562
+ }
1563
+ ]
1564
+ },
1565
+ {
1566
+ "id": "stripe-2026-08-26.dahlia-0091",
1567
+ "kind": "required",
1568
+ "severity": "breaking",
1569
+ "location": "requestBody",
1570
+ "path": "/v1/subscriptions",
1571
+ "method": "post",
1572
+ "field": "billing_schedules[].bill_until.duration.interval",
1573
+ "note": "Request parameter \"billing_schedules[].bill_until.duration.interval\" is new and required whenever \"billing_schedules[].bill_until.duration\" is provided.",
1574
+ "docsUrl": "https://docs.stripe.com/upgrades",
1575
+ "sdkMethods": [
1576
+ {
1577
+ "namespace": "subscriptions",
1578
+ "method": "create"
1579
+ }
1580
+ ]
1581
+ },
1582
+ {
1583
+ "id": "stripe-2026-08-26.dahlia-0092",
1584
+ "kind": "required",
1585
+ "severity": "breaking",
1586
+ "location": "requestBody",
1587
+ "path": "/v1/subscriptions",
1588
+ "method": "post",
1589
+ "field": "billing_schedules[].bill_until.type",
1590
+ "note": "Request parameter \"billing_schedules[].bill_until.type\" is new and required whenever \"billing_schedules[].bill_until\" is provided.",
1591
+ "docsUrl": "https://docs.stripe.com/upgrades",
1592
+ "sdkMethods": [
1593
+ {
1594
+ "namespace": "subscriptions",
1595
+ "method": "create"
1596
+ }
1597
+ ]
1598
+ },
1599
+ {
1600
+ "id": "stripe-2026-08-26.dahlia-0095",
1601
+ "kind": "typeChanged",
1602
+ "severity": "breaking",
1603
+ "location": "requestBody",
1604
+ "path": "/v1/subscriptions",
1605
+ "method": "post",
1606
+ "field": "cancel_at",
1607
+ "fromType": "union(enum(max_period_end|min_period_end)|integer:unix-time)",
1608
+ "toType": "union(enum(max_billed_until|max_period_end|min_period_end)|integer:unix-time)",
1609
+ "note": "Request parameter \"cancel_at\" changed from union(enum(max_period_end|min_period_end)|integer:unix-time) to union(enum(max_billed_until|max_period_end|min_period_end)|integer:unix-time).",
1610
+ "docsUrl": "https://docs.stripe.com/upgrades",
1611
+ "sdkMethods": [
1612
+ {
1613
+ "namespace": "subscriptions",
1614
+ "method": "create"
1615
+ }
1616
+ ]
1617
+ },
1618
+ {
1619
+ "id": "stripe-2026-08-26.dahlia-0093",
1620
+ "kind": "required",
1621
+ "severity": "breaking",
1622
+ "location": "requestBody",
1623
+ "path": "/v1/subscriptions",
1624
+ "method": "post",
1625
+ "field": "invoice_settings.custom_fields[].name",
1626
+ "note": "Request parameter \"invoice_settings.custom_fields[].name\" is new and required whenever \"invoice_settings.custom_fields\" is provided.",
1627
+ "docsUrl": "https://docs.stripe.com/upgrades",
1628
+ "sdkMethods": [
1629
+ {
1630
+ "namespace": "subscriptions",
1631
+ "method": "create"
1632
+ }
1633
+ ]
1634
+ },
1635
+ {
1636
+ "id": "stripe-2026-08-26.dahlia-0094",
1637
+ "kind": "required",
1638
+ "severity": "breaking",
1639
+ "location": "requestBody",
1640
+ "path": "/v1/subscriptions",
1641
+ "method": "post",
1642
+ "field": "invoice_settings.custom_fields[].value",
1643
+ "note": "Request parameter \"invoice_settings.custom_fields[].value\" is new and required whenever \"invoice_settings.custom_fields\" is provided.",
1644
+ "docsUrl": "https://docs.stripe.com/upgrades",
1645
+ "sdkMethods": [
1646
+ {
1647
+ "namespace": "subscriptions",
1648
+ "method": "create"
1649
+ }
1650
+ ]
1651
+ },
1652
+ {
1653
+ "id": "stripe-2026-08-26.dahlia-0096",
1654
+ "kind": "typeChanged",
1655
+ "severity": "breaking",
1656
+ "location": "requestBody",
1657
+ "path": "/v1/subscriptions",
1658
+ "method": "post",
1659
+ "field": "payment_settings.payment_method_types",
1660
+ "fromType": "union(array<enum(ach_credit_transfer|ach_debit|acss_debit|affirm|amazon_pay|au_becs_debit|bacs_debit|bancontact|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|jp_credit_transfer|kakao_pay|klarna|konbini|kr_card|link|multibanco|naver_pay|nz_bank_account|p24|payco|paynow|paypal|promptpay|revolut_pay|sepa_credit_transfer|sepa_debit|sofort|swish|us_bank_account|wechat_pay)>|enum())",
1661
+ "toType": "union(array<enum(ach_credit_transfer|ach_debit|acss_debit|affirm|alipay|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|boleto|card|cashapp|crypto|custom|customer_balance|eps|fpx|giropay|grabpay|ideal|jp_credit_transfer|kakao_pay|klarna|konbini|kr_card|link|mb_way|multibanco|naver_pay|nz_bank_account|p24|pay_by_bank|payco|paynow|paypal|payto|pix|promptpay|revolut_pay|satispay|sepa_credit_transfer|sepa_debit|sofort|swish|twint|upi|us_bank_account|wechat_pay)>|enum())",
1662
+ "note": "Request parameter \"payment_settings.payment_method_types\" changed from union(array<enum(ach_credit_transfer|ach_debit|acss_debit|affirm|amazon_pay|au_becs_debit|bacs_debit|bancontact|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|jp_credit_transfer|kakao_pay|klarna|konbini|kr_card|link|multibanco|naver_pay|nz_bank_account|p24|payco|paynow|paypal|promptpay|revolut_pay|sepa_credit_transfer|sepa_debit|sofort|swish|us_bank_account|wechat_pay)>|enum()) to union(array<enum(ach_credit_transfer|ach_debit|acss_debit|affirm|alipay|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|boleto|card|cashapp|crypto|custom|customer_balance|eps|fpx|giropay|grabpay|ideal|jp_credit_transfer|kakao_pay|klarna|konbini|kr_card|link|mb_way|multibanco|naver_pay|nz_bank_account|p24|pay_by_bank|payco|paynow|paypal|payto|pix|promptpay|revolut_pay|satispay|sepa_credit_transfer|sepa_debit|sofort|swish|twint|upi|us_bank_account|wechat_pay)>|enum()).",
1663
+ "docsUrl": "https://docs.stripe.com/upgrades",
1664
+ "sdkMethods": [
1665
+ {
1666
+ "namespace": "subscriptions",
1667
+ "method": "create"
1668
+ }
1669
+ ]
1670
+ },
1671
+ {
1672
+ "id": "stripe-2026-08-26.dahlia-0097",
1673
+ "kind": "required",
1674
+ "severity": "breaking",
1675
+ "location": "requestBody",
1676
+ "path": "/v1/subscriptions/{subscription_exposed_id}",
1677
+ "method": "post",
1678
+ "field": "billing_schedules[].applies_to[].type",
1679
+ "note": "Request parameter \"billing_schedules[].applies_to[].type\" is new and required whenever \"billing_schedules[].applies_to\" is provided.",
1680
+ "docsUrl": "https://docs.stripe.com/upgrades",
1681
+ "sdkMethods": [
1682
+ {
1683
+ "namespace": "subscriptions",
1684
+ "method": "update"
1685
+ }
1686
+ ]
1687
+ },
1688
+ {
1689
+ "id": "stripe-2026-08-26.dahlia-0098",
1690
+ "kind": "required",
1691
+ "severity": "breaking",
1692
+ "location": "requestBody",
1693
+ "path": "/v1/subscriptions/{subscription_exposed_id}",
1694
+ "method": "post",
1695
+ "field": "billing_schedules[].bill_until.duration.interval",
1696
+ "note": "Request parameter \"billing_schedules[].bill_until.duration.interval\" is new and required whenever \"billing_schedules[].bill_until.duration\" is provided.",
1697
+ "docsUrl": "https://docs.stripe.com/upgrades",
1698
+ "sdkMethods": [
1699
+ {
1700
+ "namespace": "subscriptions",
1701
+ "method": "update"
1702
+ }
1703
+ ]
1704
+ },
1705
+ {
1706
+ "id": "stripe-2026-08-26.dahlia-0099",
1707
+ "kind": "required",
1708
+ "severity": "breaking",
1709
+ "location": "requestBody",
1710
+ "path": "/v1/subscriptions/{subscription_exposed_id}",
1711
+ "method": "post",
1712
+ "field": "billing_schedules[].bill_until.type",
1713
+ "note": "Request parameter \"billing_schedules[].bill_until.type\" is new and required whenever \"billing_schedules[].bill_until\" is provided.",
1714
+ "docsUrl": "https://docs.stripe.com/upgrades",
1715
+ "sdkMethods": [
1716
+ {
1717
+ "namespace": "subscriptions",
1718
+ "method": "update"
1719
+ }
1720
+ ]
1721
+ },
1722
+ {
1723
+ "id": "stripe-2026-08-26.dahlia-0102",
1724
+ "kind": "typeChanged",
1725
+ "severity": "breaking",
1726
+ "location": "requestBody",
1727
+ "path": "/v1/subscriptions/{subscription_exposed_id}",
1728
+ "method": "post",
1729
+ "field": "cancel_at",
1730
+ "fromType": "union(enum()|enum(max_period_end|min_period_end)|integer:unix-time)",
1731
+ "toType": "union(enum()|enum(max_billed_until|max_period_end|min_period_end)|integer:unix-time)",
1732
+ "note": "Request parameter \"cancel_at\" changed from union(enum()|enum(max_period_end|min_period_end)|integer:unix-time) to union(enum()|enum(max_billed_until|max_period_end|min_period_end)|integer:unix-time).",
1733
+ "docsUrl": "https://docs.stripe.com/upgrades",
1734
+ "sdkMethods": [
1735
+ {
1736
+ "namespace": "subscriptions",
1737
+ "method": "update"
1738
+ }
1739
+ ]
1740
+ },
1741
+ {
1742
+ "id": "stripe-2026-08-26.dahlia-0100",
1743
+ "kind": "required",
1744
+ "severity": "breaking",
1745
+ "location": "requestBody",
1746
+ "path": "/v1/subscriptions/{subscription_exposed_id}",
1747
+ "method": "post",
1748
+ "field": "invoice_settings.custom_fields[].name",
1749
+ "note": "Request parameter \"invoice_settings.custom_fields[].name\" is new and required whenever \"invoice_settings.custom_fields\" is provided.",
1750
+ "docsUrl": "https://docs.stripe.com/upgrades",
1751
+ "sdkMethods": [
1752
+ {
1753
+ "namespace": "subscriptions",
1754
+ "method": "update"
1755
+ }
1756
+ ]
1757
+ },
1758
+ {
1759
+ "id": "stripe-2026-08-26.dahlia-0101",
1760
+ "kind": "required",
1761
+ "severity": "breaking",
1762
+ "location": "requestBody",
1763
+ "path": "/v1/subscriptions/{subscription_exposed_id}",
1764
+ "method": "post",
1765
+ "field": "invoice_settings.custom_fields[].value",
1766
+ "note": "Request parameter \"invoice_settings.custom_fields[].value\" is new and required whenever \"invoice_settings.custom_fields\" is provided.",
1767
+ "docsUrl": "https://docs.stripe.com/upgrades",
1768
+ "sdkMethods": [
1769
+ {
1770
+ "namespace": "subscriptions",
1771
+ "method": "update"
1772
+ }
1773
+ ]
1774
+ },
1775
+ {
1776
+ "id": "stripe-2026-08-26.dahlia-0103",
1777
+ "kind": "typeChanged",
1778
+ "severity": "breaking",
1779
+ "location": "requestBody",
1780
+ "path": "/v1/subscriptions/{subscription_exposed_id}",
1781
+ "method": "post",
1782
+ "field": "payment_settings.payment_method_types",
1783
+ "fromType": "union(array<enum(ach_credit_transfer|ach_debit|acss_debit|affirm|amazon_pay|au_becs_debit|bacs_debit|bancontact|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|jp_credit_transfer|kakao_pay|klarna|konbini|kr_card|link|multibanco|naver_pay|nz_bank_account|p24|payco|paynow|paypal|promptpay|revolut_pay|sepa_credit_transfer|sepa_debit|sofort|swish|us_bank_account|wechat_pay)>|enum())",
1784
+ "toType": "union(array<enum(ach_credit_transfer|ach_debit|acss_debit|affirm|alipay|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|boleto|card|cashapp|crypto|custom|customer_balance|eps|fpx|giropay|grabpay|ideal|jp_credit_transfer|kakao_pay|klarna|konbini|kr_card|link|mb_way|multibanco|naver_pay|nz_bank_account|p24|pay_by_bank|payco|paynow|paypal|payto|pix|promptpay|revolut_pay|satispay|sepa_credit_transfer|sepa_debit|sofort|swish|twint|upi|us_bank_account|wechat_pay)>|enum())",
1785
+ "note": "Request parameter \"payment_settings.payment_method_types\" changed from union(array<enum(ach_credit_transfer|ach_debit|acss_debit|affirm|amazon_pay|au_becs_debit|bacs_debit|bancontact|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|jp_credit_transfer|kakao_pay|klarna|konbini|kr_card|link|multibanco|naver_pay|nz_bank_account|p24|payco|paynow|paypal|promptpay|revolut_pay|sepa_credit_transfer|sepa_debit|sofort|swish|us_bank_account|wechat_pay)>|enum()) to union(array<enum(ach_credit_transfer|ach_debit|acss_debit|affirm|alipay|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|boleto|card|cashapp|crypto|custom|customer_balance|eps|fpx|giropay|grabpay|ideal|jp_credit_transfer|kakao_pay|klarna|konbini|kr_card|link|mb_way|multibanco|naver_pay|nz_bank_account|p24|pay_by_bank|payco|paynow|paypal|payto|pix|promptpay|revolut_pay|satispay|sepa_credit_transfer|sepa_debit|sofort|swish|twint|upi|us_bank_account|wechat_pay)>|enum()).",
1786
+ "docsUrl": "https://docs.stripe.com/upgrades",
1787
+ "sdkMethods": [
1788
+ {
1789
+ "namespace": "subscriptions",
1790
+ "method": "update"
1791
+ }
1792
+ ]
1793
+ },
1794
+ {
1795
+ "id": "stripe-2026-08-26.dahlia-0104",
1796
+ "kind": "required",
1797
+ "severity": "breaking",
1798
+ "location": "requestBody",
1799
+ "path": "/v1/tax/registrations",
1800
+ "method": "post",
1801
+ "field": "country_options.at.igic.place_of_supply_scheme",
1802
+ "note": "Request parameter \"country_options.at.igic.place_of_supply_scheme\" is new and required whenever \"country_options.at.igic\" is provided.",
1803
+ "docsUrl": "https://docs.stripe.com/upgrades",
1804
+ "sdkMethods": [
1805
+ {
1806
+ "namespace": "tax.registrations",
1807
+ "method": "create"
1808
+ }
1809
+ ]
1810
+ },
1811
+ {
1812
+ "id": "stripe-2026-08-26.dahlia-0105",
1813
+ "kind": "required",
1814
+ "severity": "breaking",
1815
+ "location": "requestBody",
1816
+ "path": "/v1/tax/registrations",
1817
+ "method": "post",
1818
+ "field": "country_options.be.igic.place_of_supply_scheme",
1819
+ "note": "Request parameter \"country_options.be.igic.place_of_supply_scheme\" is new and required whenever \"country_options.be.igic\" is provided.",
1820
+ "docsUrl": "https://docs.stripe.com/upgrades",
1821
+ "sdkMethods": [
1822
+ {
1823
+ "namespace": "tax.registrations",
1824
+ "method": "create"
1825
+ }
1826
+ ]
1827
+ },
1828
+ {
1829
+ "id": "stripe-2026-08-26.dahlia-0106",
1830
+ "kind": "required",
1831
+ "severity": "breaking",
1832
+ "location": "requestBody",
1833
+ "path": "/v1/tax/registrations",
1834
+ "method": "post",
1835
+ "field": "country_options.bg.igic.place_of_supply_scheme",
1836
+ "note": "Request parameter \"country_options.bg.igic.place_of_supply_scheme\" is new and required whenever \"country_options.bg.igic\" is provided.",
1837
+ "docsUrl": "https://docs.stripe.com/upgrades",
1838
+ "sdkMethods": [
1839
+ {
1840
+ "namespace": "tax.registrations",
1841
+ "method": "create"
1842
+ }
1843
+ ]
1844
+ },
1845
+ {
1846
+ "id": "stripe-2026-08-26.dahlia-0107",
1847
+ "kind": "required",
1848
+ "severity": "breaking",
1849
+ "location": "requestBody",
1850
+ "path": "/v1/tax/registrations",
1851
+ "method": "post",
1852
+ "field": "country_options.cy.igic.place_of_supply_scheme",
1853
+ "note": "Request parameter \"country_options.cy.igic.place_of_supply_scheme\" is new and required whenever \"country_options.cy.igic\" is provided.",
1854
+ "docsUrl": "https://docs.stripe.com/upgrades",
1855
+ "sdkMethods": [
1856
+ {
1857
+ "namespace": "tax.registrations",
1858
+ "method": "create"
1859
+ }
1860
+ ]
1861
+ },
1862
+ {
1863
+ "id": "stripe-2026-08-26.dahlia-0108",
1864
+ "kind": "required",
1865
+ "severity": "breaking",
1866
+ "location": "requestBody",
1867
+ "path": "/v1/tax/registrations",
1868
+ "method": "post",
1869
+ "field": "country_options.cz.igic.place_of_supply_scheme",
1870
+ "note": "Request parameter \"country_options.cz.igic.place_of_supply_scheme\" is new and required whenever \"country_options.cz.igic\" is provided.",
1871
+ "docsUrl": "https://docs.stripe.com/upgrades",
1872
+ "sdkMethods": [
1873
+ {
1874
+ "namespace": "tax.registrations",
1875
+ "method": "create"
1876
+ }
1877
+ ]
1878
+ },
1879
+ {
1880
+ "id": "stripe-2026-08-26.dahlia-0109",
1881
+ "kind": "required",
1882
+ "severity": "breaking",
1883
+ "location": "requestBody",
1884
+ "path": "/v1/tax/registrations",
1885
+ "method": "post",
1886
+ "field": "country_options.de.igic.place_of_supply_scheme",
1887
+ "note": "Request parameter \"country_options.de.igic.place_of_supply_scheme\" is new and required whenever \"country_options.de.igic\" is provided.",
1888
+ "docsUrl": "https://docs.stripe.com/upgrades",
1889
+ "sdkMethods": [
1890
+ {
1891
+ "namespace": "tax.registrations",
1892
+ "method": "create"
1893
+ }
1894
+ ]
1895
+ },
1896
+ {
1897
+ "id": "stripe-2026-08-26.dahlia-0110",
1898
+ "kind": "required",
1899
+ "severity": "breaking",
1900
+ "location": "requestBody",
1901
+ "path": "/v1/tax/registrations",
1902
+ "method": "post",
1903
+ "field": "country_options.dk.igic.place_of_supply_scheme",
1904
+ "note": "Request parameter \"country_options.dk.igic.place_of_supply_scheme\" is new and required whenever \"country_options.dk.igic\" is provided.",
1905
+ "docsUrl": "https://docs.stripe.com/upgrades",
1906
+ "sdkMethods": [
1907
+ {
1908
+ "namespace": "tax.registrations",
1909
+ "method": "create"
1910
+ }
1911
+ ]
1912
+ },
1913
+ {
1914
+ "id": "stripe-2026-08-26.dahlia-0111",
1915
+ "kind": "required",
1916
+ "severity": "breaking",
1917
+ "location": "requestBody",
1918
+ "path": "/v1/tax/registrations",
1919
+ "method": "post",
1920
+ "field": "country_options.ee.igic.place_of_supply_scheme",
1921
+ "note": "Request parameter \"country_options.ee.igic.place_of_supply_scheme\" is new and required whenever \"country_options.ee.igic\" is provided.",
1922
+ "docsUrl": "https://docs.stripe.com/upgrades",
1923
+ "sdkMethods": [
1924
+ {
1925
+ "namespace": "tax.registrations",
1926
+ "method": "create"
1927
+ }
1928
+ ]
1929
+ },
1930
+ {
1931
+ "id": "stripe-2026-08-26.dahlia-0112",
1932
+ "kind": "required",
1933
+ "severity": "breaking",
1934
+ "location": "requestBody",
1935
+ "path": "/v1/tax/registrations",
1936
+ "method": "post",
1937
+ "field": "country_options.es.igic.place_of_supply_scheme",
1938
+ "note": "Request parameter \"country_options.es.igic.place_of_supply_scheme\" is new and required whenever \"country_options.es.igic\" is provided.",
1939
+ "docsUrl": "https://docs.stripe.com/upgrades",
1940
+ "sdkMethods": [
1941
+ {
1942
+ "namespace": "tax.registrations",
1943
+ "method": "create"
1944
+ }
1945
+ ]
1946
+ },
1947
+ {
1948
+ "id": "stripe-2026-08-26.dahlia-0113",
1949
+ "kind": "required",
1950
+ "severity": "breaking",
1951
+ "location": "requestBody",
1952
+ "path": "/v1/tax/registrations",
1953
+ "method": "post",
1954
+ "field": "country_options.fi.igic.place_of_supply_scheme",
1955
+ "note": "Request parameter \"country_options.fi.igic.place_of_supply_scheme\" is new and required whenever \"country_options.fi.igic\" is provided.",
1956
+ "docsUrl": "https://docs.stripe.com/upgrades",
1957
+ "sdkMethods": [
1958
+ {
1959
+ "namespace": "tax.registrations",
1960
+ "method": "create"
1961
+ }
1962
+ ]
1963
+ },
1964
+ {
1965
+ "id": "stripe-2026-08-26.dahlia-0114",
1966
+ "kind": "required",
1967
+ "severity": "breaking",
1968
+ "location": "requestBody",
1969
+ "path": "/v1/tax/registrations",
1970
+ "method": "post",
1971
+ "field": "country_options.fr.igic.place_of_supply_scheme",
1972
+ "note": "Request parameter \"country_options.fr.igic.place_of_supply_scheme\" is new and required whenever \"country_options.fr.igic\" is provided.",
1973
+ "docsUrl": "https://docs.stripe.com/upgrades",
1974
+ "sdkMethods": [
1975
+ {
1976
+ "namespace": "tax.registrations",
1977
+ "method": "create"
1978
+ }
1979
+ ]
1980
+ },
1981
+ {
1982
+ "id": "stripe-2026-08-26.dahlia-0115",
1983
+ "kind": "required",
1984
+ "severity": "breaking",
1985
+ "location": "requestBody",
1986
+ "path": "/v1/tax/registrations",
1987
+ "method": "post",
1988
+ "field": "country_options.gr.igic.place_of_supply_scheme",
1989
+ "note": "Request parameter \"country_options.gr.igic.place_of_supply_scheme\" is new and required whenever \"country_options.gr.igic\" is provided.",
1990
+ "docsUrl": "https://docs.stripe.com/upgrades",
1991
+ "sdkMethods": [
1992
+ {
1993
+ "namespace": "tax.registrations",
1994
+ "method": "create"
1995
+ }
1996
+ ]
1997
+ },
1998
+ {
1999
+ "id": "stripe-2026-08-26.dahlia-0116",
2000
+ "kind": "required",
2001
+ "severity": "breaking",
2002
+ "location": "requestBody",
2003
+ "path": "/v1/tax/registrations",
2004
+ "method": "post",
2005
+ "field": "country_options.hr.igic.place_of_supply_scheme",
2006
+ "note": "Request parameter \"country_options.hr.igic.place_of_supply_scheme\" is new and required whenever \"country_options.hr.igic\" is provided.",
2007
+ "docsUrl": "https://docs.stripe.com/upgrades",
2008
+ "sdkMethods": [
2009
+ {
2010
+ "namespace": "tax.registrations",
2011
+ "method": "create"
2012
+ }
2013
+ ]
2014
+ },
2015
+ {
2016
+ "id": "stripe-2026-08-26.dahlia-0117",
2017
+ "kind": "required",
2018
+ "severity": "breaking",
2019
+ "location": "requestBody",
2020
+ "path": "/v1/tax/registrations",
2021
+ "method": "post",
2022
+ "field": "country_options.hu.igic.place_of_supply_scheme",
2023
+ "note": "Request parameter \"country_options.hu.igic.place_of_supply_scheme\" is new and required whenever \"country_options.hu.igic\" is provided.",
2024
+ "docsUrl": "https://docs.stripe.com/upgrades",
2025
+ "sdkMethods": [
2026
+ {
2027
+ "namespace": "tax.registrations",
2028
+ "method": "create"
2029
+ }
2030
+ ]
2031
+ },
2032
+ {
2033
+ "id": "stripe-2026-08-26.dahlia-0118",
2034
+ "kind": "required",
2035
+ "severity": "breaking",
2036
+ "location": "requestBody",
2037
+ "path": "/v1/tax/registrations",
2038
+ "method": "post",
2039
+ "field": "country_options.ie.igic.place_of_supply_scheme",
2040
+ "note": "Request parameter \"country_options.ie.igic.place_of_supply_scheme\" is new and required whenever \"country_options.ie.igic\" is provided.",
2041
+ "docsUrl": "https://docs.stripe.com/upgrades",
2042
+ "sdkMethods": [
2043
+ {
2044
+ "namespace": "tax.registrations",
2045
+ "method": "create"
2046
+ }
2047
+ ]
2048
+ },
2049
+ {
2050
+ "id": "stripe-2026-08-26.dahlia-0119",
2051
+ "kind": "required",
2052
+ "severity": "breaking",
2053
+ "location": "requestBody",
2054
+ "path": "/v1/tax/registrations",
2055
+ "method": "post",
2056
+ "field": "country_options.it.igic.place_of_supply_scheme",
2057
+ "note": "Request parameter \"country_options.it.igic.place_of_supply_scheme\" is new and required whenever \"country_options.it.igic\" is provided.",
2058
+ "docsUrl": "https://docs.stripe.com/upgrades",
2059
+ "sdkMethods": [
2060
+ {
2061
+ "namespace": "tax.registrations",
2062
+ "method": "create"
2063
+ }
2064
+ ]
2065
+ },
2066
+ {
2067
+ "id": "stripe-2026-08-26.dahlia-0120",
2068
+ "kind": "required",
2069
+ "severity": "breaking",
2070
+ "location": "requestBody",
2071
+ "path": "/v1/tax/registrations",
2072
+ "method": "post",
2073
+ "field": "country_options.lk.type",
2074
+ "note": "Request parameter \"country_options.lk.type\" is new and required whenever \"country_options.lk\" is provided.",
2075
+ "docsUrl": "https://docs.stripe.com/upgrades",
2076
+ "sdkMethods": [
2077
+ {
2078
+ "namespace": "tax.registrations",
2079
+ "method": "create"
2080
+ }
2081
+ ]
2082
+ },
2083
+ {
2084
+ "id": "stripe-2026-08-26.dahlia-0121",
2085
+ "kind": "required",
2086
+ "severity": "breaking",
2087
+ "location": "requestBody",
2088
+ "path": "/v1/tax/registrations",
2089
+ "method": "post",
2090
+ "field": "country_options.lt.igic.place_of_supply_scheme",
2091
+ "note": "Request parameter \"country_options.lt.igic.place_of_supply_scheme\" is new and required whenever \"country_options.lt.igic\" is provided.",
2092
+ "docsUrl": "https://docs.stripe.com/upgrades",
2093
+ "sdkMethods": [
2094
+ {
2095
+ "namespace": "tax.registrations",
2096
+ "method": "create"
2097
+ }
2098
+ ]
2099
+ },
2100
+ {
2101
+ "id": "stripe-2026-08-26.dahlia-0122",
2102
+ "kind": "required",
2103
+ "severity": "breaking",
2104
+ "location": "requestBody",
2105
+ "path": "/v1/tax/registrations",
2106
+ "method": "post",
2107
+ "field": "country_options.lu.igic.place_of_supply_scheme",
2108
+ "note": "Request parameter \"country_options.lu.igic.place_of_supply_scheme\" is new and required whenever \"country_options.lu.igic\" is provided.",
2109
+ "docsUrl": "https://docs.stripe.com/upgrades",
2110
+ "sdkMethods": [
2111
+ {
2112
+ "namespace": "tax.registrations",
2113
+ "method": "create"
2114
+ }
2115
+ ]
2116
+ },
2117
+ {
2118
+ "id": "stripe-2026-08-26.dahlia-0123",
2119
+ "kind": "required",
2120
+ "severity": "breaking",
2121
+ "location": "requestBody",
2122
+ "path": "/v1/tax/registrations",
2123
+ "method": "post",
2124
+ "field": "country_options.lv.igic.place_of_supply_scheme",
2125
+ "note": "Request parameter \"country_options.lv.igic.place_of_supply_scheme\" is new and required whenever \"country_options.lv.igic\" is provided.",
2126
+ "docsUrl": "https://docs.stripe.com/upgrades",
2127
+ "sdkMethods": [
2128
+ {
2129
+ "namespace": "tax.registrations",
2130
+ "method": "create"
2131
+ }
2132
+ ]
2133
+ },
2134
+ {
2135
+ "id": "stripe-2026-08-26.dahlia-0124",
2136
+ "kind": "required",
2137
+ "severity": "breaking",
2138
+ "location": "requestBody",
2139
+ "path": "/v1/tax/registrations",
2140
+ "method": "post",
2141
+ "field": "country_options.mt.igic.place_of_supply_scheme",
2142
+ "note": "Request parameter \"country_options.mt.igic.place_of_supply_scheme\" is new and required whenever \"country_options.mt.igic\" is provided.",
2143
+ "docsUrl": "https://docs.stripe.com/upgrades",
2144
+ "sdkMethods": [
2145
+ {
2146
+ "namespace": "tax.registrations",
2147
+ "method": "create"
2148
+ }
2149
+ ]
2150
+ },
2151
+ {
2152
+ "id": "stripe-2026-08-26.dahlia-0125",
2153
+ "kind": "required",
2154
+ "severity": "breaking",
2155
+ "location": "requestBody",
2156
+ "path": "/v1/tax/registrations",
2157
+ "method": "post",
2158
+ "field": "country_options.nl.igic.place_of_supply_scheme",
2159
+ "note": "Request parameter \"country_options.nl.igic.place_of_supply_scheme\" is new and required whenever \"country_options.nl.igic\" is provided.",
2160
+ "docsUrl": "https://docs.stripe.com/upgrades",
2161
+ "sdkMethods": [
2162
+ {
2163
+ "namespace": "tax.registrations",
2164
+ "method": "create"
2165
+ }
2166
+ ]
2167
+ },
2168
+ {
2169
+ "id": "stripe-2026-08-26.dahlia-0126",
2170
+ "kind": "required",
2171
+ "severity": "breaking",
2172
+ "location": "requestBody",
2173
+ "path": "/v1/tax/registrations",
2174
+ "method": "post",
2175
+ "field": "country_options.pl.igic.place_of_supply_scheme",
2176
+ "note": "Request parameter \"country_options.pl.igic.place_of_supply_scheme\" is new and required whenever \"country_options.pl.igic\" is provided.",
2177
+ "docsUrl": "https://docs.stripe.com/upgrades",
2178
+ "sdkMethods": [
2179
+ {
2180
+ "namespace": "tax.registrations",
2181
+ "method": "create"
2182
+ }
2183
+ ]
2184
+ },
2185
+ {
2186
+ "id": "stripe-2026-08-26.dahlia-0127",
2187
+ "kind": "required",
2188
+ "severity": "breaking",
2189
+ "location": "requestBody",
2190
+ "path": "/v1/tax/registrations",
2191
+ "method": "post",
2192
+ "field": "country_options.pt.igic.place_of_supply_scheme",
2193
+ "note": "Request parameter \"country_options.pt.igic.place_of_supply_scheme\" is new and required whenever \"country_options.pt.igic\" is provided.",
2194
+ "docsUrl": "https://docs.stripe.com/upgrades",
2195
+ "sdkMethods": [
2196
+ {
2197
+ "namespace": "tax.registrations",
2198
+ "method": "create"
2199
+ }
2200
+ ]
2201
+ },
2202
+ {
2203
+ "id": "stripe-2026-08-26.dahlia-0128",
2204
+ "kind": "required",
2205
+ "severity": "breaking",
2206
+ "location": "requestBody",
2207
+ "path": "/v1/tax/registrations",
2208
+ "method": "post",
2209
+ "field": "country_options.ro.igic.place_of_supply_scheme",
2210
+ "note": "Request parameter \"country_options.ro.igic.place_of_supply_scheme\" is new and required whenever \"country_options.ro.igic\" is provided.",
2211
+ "docsUrl": "https://docs.stripe.com/upgrades",
2212
+ "sdkMethods": [
2213
+ {
2214
+ "namespace": "tax.registrations",
2215
+ "method": "create"
2216
+ }
2217
+ ]
2218
+ },
2219
+ {
2220
+ "id": "stripe-2026-08-26.dahlia-0129",
2221
+ "kind": "required",
2222
+ "severity": "breaking",
2223
+ "location": "requestBody",
2224
+ "path": "/v1/tax/registrations",
2225
+ "method": "post",
2226
+ "field": "country_options.se.igic.place_of_supply_scheme",
2227
+ "note": "Request parameter \"country_options.se.igic.place_of_supply_scheme\" is new and required whenever \"country_options.se.igic\" is provided.",
2228
+ "docsUrl": "https://docs.stripe.com/upgrades",
2229
+ "sdkMethods": [
2230
+ {
2231
+ "namespace": "tax.registrations",
2232
+ "method": "create"
2233
+ }
2234
+ ]
2235
+ },
2236
+ {
2237
+ "id": "stripe-2026-08-26.dahlia-0130",
2238
+ "kind": "required",
2239
+ "severity": "breaking",
2240
+ "location": "requestBody",
2241
+ "path": "/v1/tax/registrations",
2242
+ "method": "post",
2243
+ "field": "country_options.si.igic.place_of_supply_scheme",
2244
+ "note": "Request parameter \"country_options.si.igic.place_of_supply_scheme\" is new and required whenever \"country_options.si.igic\" is provided.",
2245
+ "docsUrl": "https://docs.stripe.com/upgrades",
2246
+ "sdkMethods": [
2247
+ {
2248
+ "namespace": "tax.registrations",
2249
+ "method": "create"
2250
+ }
2251
+ ]
2252
+ },
2253
+ {
2254
+ "id": "stripe-2026-08-26.dahlia-0131",
2255
+ "kind": "required",
2256
+ "severity": "breaking",
2257
+ "location": "requestBody",
2258
+ "path": "/v1/tax/registrations",
2259
+ "method": "post",
2260
+ "field": "country_options.sk.igic.place_of_supply_scheme",
2261
+ "note": "Request parameter \"country_options.sk.igic.place_of_supply_scheme\" is new and required whenever \"country_options.sk.igic\" is provided.",
2262
+ "docsUrl": "https://docs.stripe.com/upgrades",
2263
+ "sdkMethods": [
2264
+ {
2265
+ "namespace": "tax.registrations",
2266
+ "method": "create"
2267
+ }
2268
+ ]
2269
+ },
2270
+ {
2271
+ "id": "stripe-2026-08-26.dahlia-0132",
2272
+ "kind": "required",
2273
+ "severity": "breaking",
2274
+ "location": "requestBody",
2275
+ "path": "/v1/tax/registrations",
2276
+ "method": "post",
2277
+ "field": "country_options.tw.type",
2278
+ "note": "Request parameter \"country_options.tw.type\" is new and required whenever \"country_options.tw\" is provided.",
2279
+ "docsUrl": "https://docs.stripe.com/upgrades",
2280
+ "sdkMethods": [
2281
+ {
2282
+ "namespace": "tax.registrations",
2283
+ "method": "create"
2284
+ }
2285
+ ]
2286
+ },
2287
+ {
2288
+ "id": "stripe-2026-08-26.dahlia-0133",
2289
+ "kind": "required",
2290
+ "severity": "breaking",
2291
+ "location": "requestBody",
2292
+ "path": "/v1/tax/registrations",
2293
+ "method": "post",
2294
+ "field": "country_options.us.mass_transit_parking_tax.jurisdiction",
2295
+ "note": "Request parameter \"country_options.us.mass_transit_parking_tax.jurisdiction\" is new and required whenever \"country_options.us.mass_transit_parking_tax\" is provided.",
2296
+ "docsUrl": "https://docs.stripe.com/upgrades",
2297
+ "sdkMethods": [
2298
+ {
2299
+ "namespace": "tax.registrations",
2300
+ "method": "create"
2301
+ }
2302
+ ]
2303
+ },
2304
+ {
2305
+ "id": "stripe-2026-08-26.dahlia-0134",
2306
+ "kind": "required",
2307
+ "severity": "breaking",
2308
+ "location": "requestBody",
2309
+ "path": "/v1/tax/registrations",
2310
+ "method": "post",
2311
+ "field": "country_options.us.parking_tax.jurisdiction",
2312
+ "note": "Request parameter \"country_options.us.parking_tax.jurisdiction\" is new and required whenever \"country_options.us.parking_tax\" is provided.",
2313
+ "docsUrl": "https://docs.stripe.com/upgrades",
2314
+ "sdkMethods": [
2315
+ {
2316
+ "namespace": "tax.registrations",
2317
+ "method": "create"
2318
+ }
2319
+ ]
2320
+ },
2321
+ {
2322
+ "id": "stripe-2026-08-26.dahlia-0136",
2323
+ "kind": "required",
2324
+ "severity": "breaking",
2325
+ "location": "requestBody",
2326
+ "path": "/v1/terminal/configurations",
2327
+ "method": "post",
2328
+ "field": "cellular.enabled",
2329
+ "note": "Request parameter \"cellular.enabled\" is new and required whenever \"cellular\" is provided.",
2330
+ "docsUrl": "https://docs.stripe.com/upgrades",
2331
+ "sdkMethods": [
2332
+ {
2333
+ "namespace": "terminal.configurations",
2334
+ "method": "create"
2335
+ }
2336
+ ]
2337
+ },
2338
+ {
2339
+ "id": "stripe-2026-08-26.dahlia-0135",
2340
+ "kind": "removed",
2341
+ "severity": "breaking",
2342
+ "location": "requestBody",
2343
+ "path": "/v1/terminal/configurations",
2344
+ "method": "post",
2345
+ "field": "tipping.bgn",
2346
+ "note": "Request parameter \"tipping.bgn\" was removed.",
2347
+ "docsUrl": "https://docs.stripe.com/upgrades",
2348
+ "sdkMethods": [
2349
+ {
2350
+ "namespace": "terminal.configurations",
2351
+ "method": "create"
2352
+ }
2353
+ ]
2354
+ },
2355
+ {
2356
+ "id": "stripe-2026-08-26.dahlia-0138",
2357
+ "kind": "required",
2358
+ "severity": "breaking",
2359
+ "location": "requestBody",
2360
+ "path": "/v1/terminal/configurations/{configuration}",
2361
+ "method": "post",
2362
+ "field": "cellular.enabled",
2363
+ "note": "Request parameter \"cellular.enabled\" is new and required whenever \"cellular\" is provided.",
2364
+ "docsUrl": "https://docs.stripe.com/upgrades",
2365
+ "sdkMethods": [
2366
+ {
2367
+ "namespace": "terminal.configurations",
2368
+ "method": "update"
2369
+ }
2370
+ ]
2371
+ },
2372
+ {
2373
+ "id": "stripe-2026-08-26.dahlia-0137",
2374
+ "kind": "removed",
2375
+ "severity": "breaking",
2376
+ "location": "requestBody",
2377
+ "path": "/v1/terminal/configurations/{configuration}",
2378
+ "method": "post",
2379
+ "field": "tipping.bgn",
2380
+ "note": "Request parameter \"tipping.bgn\" was removed.",
2381
+ "docsUrl": "https://docs.stripe.com/upgrades",
2382
+ "sdkMethods": [
2383
+ {
2384
+ "namespace": "terminal.configurations",
2385
+ "method": "update"
2386
+ }
2387
+ ]
2388
+ },
2389
+ {
2390
+ "id": "stripe-2026-08-26.dahlia-0139",
2391
+ "kind": "renamed",
2392
+ "severity": "breaking",
2393
+ "location": "requestBody",
2394
+ "path": "/v1/test_helpers/issuing/authorizations",
2395
+ "method": "post",
2396
+ "field": "risk_assessment.card_testing_risk.risk_level",
2397
+ "replacement": "risk_assessment.card_testing_risk.level",
2398
+ "note": "Request parameter \"risk_assessment.card_testing_risk.risk_level\" was renamed to \"risk_assessment.card_testing_risk.level\".",
2399
+ "docsUrl": "https://docs.stripe.com/upgrades",
2400
+ "sdkMethods": [
2401
+ {
2402
+ "namespace": "testHelpers.issuing.authorizations",
2403
+ "method": "create"
2404
+ }
2405
+ ]
2406
+ },
2407
+ {
2408
+ "id": "stripe-2026-08-26.dahlia-0141",
2409
+ "kind": "required",
2410
+ "severity": "breaking",
2411
+ "location": "requestBody",
2412
+ "path": "/v1/test_helpers/issuing/authorizations",
2413
+ "method": "post",
2414
+ "field": "risk_assessment.fraud_risk.level",
2415
+ "note": "Request parameter \"risk_assessment.fraud_risk.level\" is new and required whenever \"risk_assessment.fraud_risk\" is provided.",
2416
+ "docsUrl": "https://docs.stripe.com/upgrades",
2417
+ "sdkMethods": [
2418
+ {
2419
+ "namespace": "testHelpers.issuing.authorizations",
2420
+ "method": "create"
2421
+ }
2422
+ ]
2423
+ },
2424
+ {
2425
+ "id": "stripe-2026-08-26.dahlia-0140",
2426
+ "kind": "renamed",
2427
+ "severity": "breaking",
2428
+ "location": "requestBody",
2429
+ "path": "/v1/test_helpers/issuing/authorizations",
2430
+ "method": "post",
2431
+ "field": "risk_assessment.merchant_dispute_risk.risk_level",
2432
+ "replacement": "risk_assessment.merchant_dispute_risk.level",
2433
+ "note": "Request parameter \"risk_assessment.merchant_dispute_risk.risk_level\" was renamed to \"risk_assessment.merchant_dispute_risk.level\".",
2434
+ "docsUrl": "https://docs.stripe.com/upgrades",
2435
+ "sdkMethods": [
2436
+ {
2437
+ "namespace": "testHelpers.issuing.authorizations",
2438
+ "method": "create"
2439
+ }
2440
+ ]
2441
+ },
2442
+ {
2443
+ "id": "stripe-2026-08-26.dahlia-0142",
2444
+ "kind": "required",
2445
+ "severity": "breaking",
2446
+ "location": "requestBody",
2447
+ "path": "/v1/topups",
2448
+ "method": "post",
2449
+ "field": "payment_method_options.us_bank_account.network",
2450
+ "note": "Request parameter \"payment_method_options.us_bank_account.network\" is new and required whenever \"payment_method_options.us_bank_account\" is provided.",
2451
+ "docsUrl": "https://docs.stripe.com/upgrades",
2452
+ "sdkMethods": [
2453
+ {
2454
+ "namespace": "topups",
2455
+ "method": "create"
2456
+ }
2457
+ ]
2458
+ },
2459
+ {
2460
+ "id": "stripe-2026-08-26.dahlia-0143",
2461
+ "kind": "typeChanged",
2462
+ "severity": "breaking",
2463
+ "location": "requestBody",
2464
+ "path": "/v1/webhook_endpoints",
2465
+ "method": "post",
2466
+ "field": "enabled_events",
2467
+ "fromType": "array<enum(*|account.application.authorized|account.application.deauthorized|account.external_account.created|account.external_account.deleted|account.external_account.updated|account.updated|application_fee.created|application_fee.refund.updated|application_fee.refunded|balance.available|billing.alert.triggered|billing_portal.configuration.created|billing_portal.configuration.updated|billing_portal.session.created|capability.updated|cash_balance.funds_available|charge.captured|charge.dispute.closed|charge.dispute.created|charge.dispute.funds_reinstated|charge.dispute.funds_withdrawn|charge.dispute.updated|charge.expired|charge.failed|charge.pending|charge.refund.updated|charge.refunded|charge.succeeded|charge.updated|checkout.session.async_payment_failed|checkout.session.async_payment_succeeded|checkout.session.completed|checkout.session.expired|climate.order.canceled|climate.order.created|climate.order.delayed|climate.order.delivered|climate.order.product_substituted|climate.product.created|climate.product.pricing_updated|coupon.created|coupon.deleted|coupon.updated|credit_note.created|credit_note.updated|credit_note.voided|customer.created|customer.deleted|customer.discount.created|customer.discount.deleted|customer.discount.updated|customer.source.created|customer.source.deleted|customer.source.expiring|customer.source.updated|customer.subscription.created|customer.subscription.deleted|customer.subscription.paused|customer.subscription.pending_update_applied|customer.subscription.pending_update_expired|customer.subscription.resumed|customer.subscription.trial_will_end|customer.subscription.updated|customer.tax_id.created|customer.tax_id.deleted|customer.tax_id.updated|customer.updated|customer_cash_balance_transaction.created|entitlements.active_entitlement_summary.updated|file.created|financial_connections.account.created|financial_connections.account.deactivated|financial_connections.account.disconnected|financial_connections.account.reactivated|financial_connections.account.refreshed_balance|financial_connections.account.refreshed_ownership|financial_connections.account.refreshed_transactions|identity.verification_session.canceled|identity.verification_session.created|identity.verification_session.processing|identity.verification_session.redacted|identity.verification_session.requires_input|identity.verification_session.verified|invoice.created|invoice.deleted|invoice.finalization_failed|invoice.finalized|invoice.marked_uncollectible|invoice.overdue|invoice.overpaid|invoice.paid|invoice.payment_action_required|invoice.payment_failed|invoice.payment_succeeded|invoice.sent|invoice.upcoming|invoice.updated|invoice.voided|invoice.will_be_due|invoice_payment.paid|invoiceitem.created|invoiceitem.deleted|issuing_authorization.created|issuing_authorization.request|issuing_authorization.updated|issuing_card.created|issuing_card.updated|issuing_cardholder.created|issuing_cardholder.updated|issuing_dispute.closed|issuing_dispute.created|issuing_dispute.funds_reinstated|issuing_dispute.funds_rescinded|issuing_dispute.submitted|issuing_dispute.updated|issuing_personalization_design.activated|issuing_personalization_design.deactivated|issuing_personalization_design.rejected|issuing_personalization_design.updated|issuing_token.created|issuing_token.updated|issuing_transaction.created|issuing_transaction.purchase_details_receipt_updated|issuing_transaction.updated|mandate.updated|payment_intent.amount_capturable_updated|payment_intent.canceled|payment_intent.created|payment_intent.partially_funded|payment_intent.payment_failed|payment_intent.processing|payment_intent.requires_action|payment_intent.succeeded|payment_link.created|payment_link.updated|payment_method.attached|payment_method.automatically_updated|payment_method.detached|payment_method.updated|payout.canceled|payout.created|payout.failed|payout.paid|payout.reconciliation_completed|payout.updated|person.created|person.deleted|person.updated|plan.created|plan.deleted|plan.updated|price.created|price.deleted|price.updated|product.created|product.deleted|product.updated|promotion_code.created|promotion_code.updated|quote.accepted|quote.canceled|quote.created|quote.finalized|radar.early_fraud_warning.created|radar.early_fraud_warning.updated|refund.created|refund.failed|refund.updated|reporting.report_run.failed|reporting.report_run.succeeded|reporting.report_type.updated|review.closed|review.opened|setup_intent.canceled|setup_intent.created|setup_intent.requires_action|setup_intent.setup_failed|setup_intent.succeeded|sigma.scheduled_query_run.created|source.canceled|source.chargeable|source.failed|source.mandate_notification|source.refund_attributes_required|source.transaction.created|source.transaction.updated|subscription_schedule.aborted|subscription_schedule.canceled|subscription_schedule.completed|subscription_schedule.created|subscription_schedule.expiring|subscription_schedule.released|subscription_schedule.updated|tax.settings.updated|tax_rate.created|tax_rate.updated|terminal.reader.action_failed|terminal.reader.action_succeeded|terminal.reader.action_updated|test_helpers.test_clock.advancing|test_helpers.test_clock.created|test_helpers.test_clock.deleted|test_helpers.test_clock.internal_failure|test_helpers.test_clock.ready|topup.canceled|topup.created|topup.failed|topup.reversed|topup.succeeded|transfer.created|transfer.reversed|transfer.updated|treasury.credit_reversal.created|treasury.credit_reversal.posted|treasury.debit_reversal.completed|treasury.debit_reversal.created|treasury.debit_reversal.initial_credit_granted|treasury.financial_account.closed|treasury.financial_account.created|treasury.financial_account.features_status_updated|treasury.inbound_transfer.canceled|treasury.inbound_transfer.created|treasury.inbound_transfer.failed|treasury.inbound_transfer.succeeded|treasury.outbound_payment.canceled|treasury.outbound_payment.created|treasury.outbound_payment.expected_arrival_date_updated|treasury.outbound_payment.failed|treasury.outbound_payment.posted|treasury.outbound_payment.returned|treasury.outbound_payment.tracking_details_updated|treasury.outbound_transfer.canceled|treasury.outbound_transfer.created|treasury.outbound_transfer.expected_arrival_date_updated|treasury.outbound_transfer.failed|treasury.outbound_transfer.posted|treasury.outbound_transfer.returned|treasury.outbound_transfer.tracking_details_updated|treasury.received_credit.created|treasury.received_credit.failed|treasury.received_credit.succeeded|treasury.received_debit.created)>",
2468
+ "toType": "array<enum(*|account.application.authorized|account.application.deauthorized|account.external_account.created|account.external_account.deleted|account.external_account.updated|account.updated|application_fee.created|application_fee.refund.updated|application_fee.refunded|balance.available|balance_settings.updated|billing.alert.triggered|billing.credit_balance_transaction.created|billing.credit_grant.created|billing.credit_grant.updated|billing.meter.created|billing.meter.deactivated|billing.meter.reactivated|billing.meter.updated|billing_portal.configuration.created|billing_portal.configuration.updated|billing_portal.session.created|capability.updated|cash_balance.funds_available|charge.captured|charge.dispute.closed|charge.dispute.created|charge.dispute.funds_reinstated|charge.dispute.funds_withdrawn|charge.dispute.updated|charge.expired|charge.failed|charge.pending|charge.refund.updated|charge.refunded|charge.succeeded|charge.updated|checkout.session.async_payment_failed|checkout.session.async_payment_succeeded|checkout.session.completed|checkout.session.expired|climate.order.canceled|climate.order.created|climate.order.delayed|climate.order.delivered|climate.order.product_substituted|climate.product.created|climate.product.pricing_updated|coupon.created|coupon.deleted|coupon.updated|credit_note.created|credit_note.updated|credit_note.voided|customer.created|customer.deleted|customer.discount.created|customer.discount.deleted|customer.discount.updated|customer.source.created|customer.source.deleted|customer.source.expiring|customer.source.updated|customer.subscription.created|customer.subscription.deleted|customer.subscription.paused|customer.subscription.pending_update_applied|customer.subscription.pending_update_expired|customer.subscription.resumed|customer.subscription.trial_will_end|customer.subscription.updated|customer.tax_id.created|customer.tax_id.deleted|customer.tax_id.updated|customer.updated|customer_cash_balance_transaction.created|entitlements.active_entitlement_summary.updated|file.created|financial_connections.account.account_numbers_updated|financial_connections.account.created|financial_connections.account.deactivated|financial_connections.account.disconnected|financial_connections.account.expected_deactivation_date_updated|financial_connections.account.reactivated|financial_connections.account.refreshed_balance|financial_connections.account.refreshed_ownership|financial_connections.account.refreshed_transactions|financial_connections.account.supported_payment_method_types_updated|financial_connections.account.upcoming_account_number_expiry|financial_connections.account.upcoming_deactivation|financial_connections.authorization.expected_deactivation_date_updated|financial_connections.authorization.upcoming_deactivation|identity.verification_session.canceled|identity.verification_session.created|identity.verification_session.processing|identity.verification_session.redacted|identity.verification_session.requires_input|identity.verification_session.verified|invoice.created|invoice.deleted|invoice.finalization_failed|invoice.finalized|invoice.marked_uncollectible|invoice.overdue|invoice.overpaid|invoice.paid|invoice.payment_action_required|invoice.payment_attempt_required|invoice.payment_failed|invoice.payment_succeeded|invoice.sent|invoice.upcoming|invoice.updated|invoice.voided|invoice.will_be_due|invoice_payment.paid|invoiceitem.created|invoiceitem.deleted|issuing_authorization.created|issuing_authorization.request|issuing_authorization.updated|issuing_card.created|issuing_card.updated|issuing_cardholder.created|issuing_cardholder.updated|issuing_dispute.closed|issuing_dispute.created|issuing_dispute.funds_reinstated|issuing_dispute.funds_rescinded|issuing_dispute.submitted|issuing_dispute.updated|issuing_personalization_design.activated|issuing_personalization_design.deactivated|issuing_personalization_design.rejected|issuing_personalization_design.updated|issuing_token.created|issuing_token.updated|issuing_transaction.created|issuing_transaction.purchase_details_receipt_updated|issuing_transaction.updated|mandate.updated|payment_intent.amount_capturable_updated|payment_intent.canceled|payment_intent.created|payment_intent.partially_funded|payment_intent.payment_failed|payment_intent.processing|payment_intent.requires_action|payment_intent.succeeded|payment_link.created|payment_link.updated|payment_method.attached|payment_method.automatically_updated|payment_method.detached|payment_method.updated|payout.canceled|payout.created|payout.failed|payout.paid|payout.reconciliation_completed|payout.updated|person.created|person.deleted|person.updated|plan.created|plan.deleted|plan.updated|price.created|price.deleted|price.updated|product.created|product.deleted|product.updated|promotion_code.created|promotion_code.updated|quote.accepted|quote.canceled|quote.created|quote.finalized|radar.early_fraud_warning.created|radar.early_fraud_warning.updated|refund.created|refund.failed|refund.updated|reporting.report_run.failed|reporting.report_run.succeeded|reporting.report_type.updated|reserve.hold.created|reserve.hold.updated|reserve.plan.created|reserve.plan.disabled|reserve.plan.expired|reserve.plan.updated|reserve.release.created|review.closed|review.opened|setup_intent.canceled|setup_intent.created|setup_intent.requires_action|setup_intent.setup_failed|setup_intent.succeeded|sigma.scheduled_query_run.created|source.canceled|source.chargeable|source.failed|source.mandate_notification|source.refund_attributes_required|source.transaction.created|source.transaction.updated|subscription_schedule.aborted|subscription_schedule.canceled|subscription_schedule.completed|subscription_schedule.created|subscription_schedule.expiring|subscription_schedule.released|subscription_schedule.updated|tax.settings.updated|tax_rate.created|tax_rate.updated|terminal.reader.action_failed|terminal.reader.action_succeeded|terminal.reader.action_updated|test_helpers.test_clock.advancing|test_helpers.test_clock.created|test_helpers.test_clock.deleted|test_helpers.test_clock.internal_failure|test_helpers.test_clock.ready|topup.canceled|topup.created|topup.failed|topup.reversed|topup.succeeded|transfer.created|transfer.reversed|transfer.updated|treasury.credit_reversal.created|treasury.credit_reversal.posted|treasury.debit_reversal.completed|treasury.debit_reversal.created|treasury.debit_reversal.initial_credit_granted|treasury.financial_account.closed|treasury.financial_account.created|treasury.financial_account.features_status_updated|treasury.inbound_transfer.canceled|treasury.inbound_transfer.created|treasury.inbound_transfer.failed|treasury.inbound_transfer.succeeded|treasury.outbound_payment.canceled|treasury.outbound_payment.created|treasury.outbound_payment.expected_arrival_date_updated|treasury.outbound_payment.failed|treasury.outbound_payment.posted|treasury.outbound_payment.returned|treasury.outbound_payment.tracking_details_updated|treasury.outbound_transfer.canceled|treasury.outbound_transfer.created|treasury.outbound_transfer.expected_arrival_date_updated|treasury.outbound_transfer.failed|treasury.outbound_transfer.posted|treasury.outbound_transfer.returned|treasury.outbound_transfer.tracking_details_updated|treasury.received_credit.created|treasury.received_credit.failed|treasury.received_credit.succeeded|treasury.received_debit.created)>",
2469
+ "note": "Request parameter \"enabled_events\" changed from array<enum(*|account.application.authorized|account.application.deauthorized|account.external_account.created|account.external_account.deleted|account.external_account.updated|account.updated|application_fee.created|application_fee.refund.updated|application_fee.refunded|balance.available|billing.alert.triggered|billing_portal.configuration.created|billing_portal.configuration.updated|billing_portal.session.created|capability.updated|cash_balance.funds_available|charge.captured|charge.dispute.closed|charge.dispute.created|charge.dispute.funds_reinstated|charge.dispute.funds_withdrawn|charge.dispute.updated|charge.expired|charge.failed|charge.pending|charge.refund.updated|charge.refunded|charge.succeeded|charge.updated|checkout.session.async_payment_failed|checkout.session.async_payment_succeeded|checkout.session.completed|checkout.session.expired|climate.order.canceled|climate.order.created|climate.order.delayed|climate.order.delivered|climate.order.product_substituted|climate.product.created|climate.product.pricing_updated|coupon.created|coupon.deleted|coupon.updated|credit_note.created|credit_note.updated|credit_note.voided|customer.created|customer.deleted|customer.discount.created|customer.discount.deleted|customer.discount.updated|customer.source.created|customer.source.deleted|customer.source.expiring|customer.source.updated|customer.subscription.created|customer.subscription.deleted|customer.subscription.paused|customer.subscription.pending_update_applied|customer.subscription.pending_update_expired|customer.subscription.resumed|customer.subscription.trial_will_end|customer.subscription.updated|customer.tax_id.created|customer.tax_id.deleted|customer.tax_id.updated|customer.updated|customer_cash_balance_transaction.created|entitlements.active_entitlement_summary.updated|file.created|financial_connections.account.created|financial_connections.account.deactivated|financial_connections.account.disconnected|financial_connections.account.reactivated|financial_connections.account.refreshed_balance|financial_connections.account.refreshed_ownership|financial_connections.account.refreshed_transactions|identity.verification_session.canceled|identity.verification_session.created|identity.verification_session.processing|identity.verification_session.redacted|identity.verification_session.requires_input|identity.verification_session.verified|invoice.created|invoice.deleted|invoice.finalization_failed|invoice.finalized|invoice.marked_uncollectible|invoice.overdue|invoice.overpaid|invoice.paid|invoice.payment_action_required|invoice.payment_failed|invoice.payment_succeeded|invoice.sent|invoice.upcoming|invoice.updated|invoice.voided|invoice.will_be_due|invoice_payment.paid|invoiceitem.created|invoiceitem.deleted|issuing_authorization.created|issuing_authorization.request|issuing_authorization.updated|issuing_card.created|issuing_card.updated|issuing_cardholder.created|issuing_cardholder.updated|issuing_dispute.closed|issuing_dispute.created|issuing_dispute.funds_reinstated|issuing_dispute.funds_rescinded|issuing_dispute.submitted|issuing_dispute.updated|issuing_personalization_design.activated|issuing_personalization_design.deactivated|issuing_personalization_design.rejected|issuing_personalization_design.updated|issuing_token.created|issuing_token.updated|issuing_transaction.created|issuing_transaction.purchase_details_receipt_updated|issuing_transaction.updated|mandate.updated|payment_intent.amount_capturable_updated|payment_intent.canceled|payment_intent.created|payment_intent.partially_funded|payment_intent.payment_failed|payment_intent.processing|payment_intent.requires_action|payment_intent.succeeded|payment_link.created|payment_link.updated|payment_method.attached|payment_method.automatically_updated|payment_method.detached|payment_method.updated|payout.canceled|payout.created|payout.failed|payout.paid|payout.reconciliation_completed|payout.updated|person.created|person.deleted|person.updated|plan.created|plan.deleted|plan.updated|price.created|price.deleted|price.updated|product.created|product.deleted|product.updated|promotion_code.created|promotion_code.updated|quote.accepted|quote.canceled|quote.created|quote.finalized|radar.early_fraud_warning.created|radar.early_fraud_warning.updated|refund.created|refund.failed|refund.updated|reporting.report_run.failed|reporting.report_run.succeeded|reporting.report_type.updated|review.closed|review.opened|setup_intent.canceled|setup_intent.created|setup_intent.requires_action|setup_intent.setup_failed|setup_intent.succeeded|sigma.scheduled_query_run.created|source.canceled|source.chargeable|source.failed|source.mandate_notification|source.refund_attributes_required|source.transaction.created|source.transaction.updated|subscription_schedule.aborted|subscription_schedule.canceled|subscription_schedule.completed|subscription_schedule.created|subscription_schedule.expiring|subscription_schedule.released|subscription_schedule.updated|tax.settings.updated|tax_rate.created|tax_rate.updated|terminal.reader.action_failed|terminal.reader.action_succeeded|terminal.reader.action_updated|test_helpers.test_clock.advancing|test_helpers.test_clock.created|test_helpers.test_clock.deleted|test_helpers.test_clock.internal_failure|test_helpers.test_clock.ready|topup.canceled|topup.created|topup.failed|topup.reversed|topup.succeeded|transfer.created|transfer.reversed|transfer.updated|treasury.credit_reversal.created|treasury.credit_reversal.posted|treasury.debit_reversal.completed|treasury.debit_reversal.created|treasury.debit_reversal.initial_credit_granted|treasury.financial_account.closed|treasury.financial_account.created|treasury.financial_account.features_status_updated|treasury.inbound_transfer.canceled|treasury.inbound_transfer.created|treasury.inbound_transfer.failed|treasury.inbound_transfer.succeeded|treasury.outbound_payment.canceled|treasury.outbound_payment.created|treasury.outbound_payment.expected_arrival_date_updated|treasury.outbound_payment.failed|treasury.outbound_payment.posted|treasury.outbound_payment.returned|treasury.outbound_payment.tracking_details_updated|treasury.outbound_transfer.canceled|treasury.outbound_transfer.created|treasury.outbound_transfer.expected_arrival_date_updated|treasury.outbound_transfer.failed|treasury.outbound_transfer.posted|treasury.outbound_transfer.returned|treasury.outbound_transfer.tracking_details_updated|treasury.received_credit.created|treasury.received_credit.failed|treasury.received_credit.succeeded|treasury.received_debit.created)> to array<enum(*|account.application.authorized|account.application.deauthorized|account.external_account.created|account.external_account.deleted|account.external_account.updated|account.updated|application_fee.created|application_fee.refund.updated|application_fee.refunded|balance.available|balance_settings.updated|billing.alert.triggered|billing.credit_balance_transaction.created|billing.credit_grant.created|billing.credit_grant.updated|billing.meter.created|billing.meter.deactivated|billing.meter.reactivated|billing.meter.updated|billing_portal.configuration.created|billing_portal.configuration.updated|billing_portal.session.created|capability.updated|cash_balance.funds_available|charge.captured|charge.dispute.closed|charge.dispute.created|charge.dispute.funds_reinstated|charge.dispute.funds_withdrawn|charge.dispute.updated|charge.expired|charge.failed|charge.pending|charge.refund.updated|charge.refunded|charge.succeeded|charge.updated|checkout.session.async_payment_failed|checkout.session.async_payment_succeeded|checkout.session.completed|checkout.session.expired|climate.order.canceled|climate.order.created|climate.order.delayed|climate.order.delivered|climate.order.product_substituted|climate.product.created|climate.product.pricing_updated|coupon.created|coupon.deleted|coupon.updated|credit_note.created|credit_note.updated|credit_note.voided|customer.created|customer.deleted|customer.discount.created|customer.discount.deleted|customer.discount.updated|customer.source.created|customer.source.deleted|customer.source.expiring|customer.source.updated|customer.subscription.created|customer.subscription.deleted|customer.subscription.paused|customer.subscription.pending_update_applied|customer.subscription.pending_update_expired|customer.subscription.resumed|customer.subscription.trial_will_end|customer.subscription.updated|customer.tax_id.created|customer.tax_id.deleted|customer.tax_id.updated|customer.updated|customer_cash_balance_transaction.created|entitlements.active_entitlement_summary.updated|file.created|financial_connections.account.account_numbers_updated|financial_connections.account.created|financial_connections.account.deactivated|financial_connections.account.disconnected|financial_connections.account.expected_deactivation_date_updated|financial_connections.account.reactivated|financial_connections.account.refreshed_balance|financial_connections.account.refreshed_ownership|financial_connections.account.refreshed_transactions|financial_connections.account.supported_payment_method_types_updated|financial_connections.account.upcoming_account_number_expiry|financial_connections.account.upcoming_deactivation|financial_connections.authorization.expected_deactivation_date_updated|financial_connections.authorization.upcoming_deactivation|identity.verification_session.canceled|identity.verification_session.created|identity.verification_session.processing|identity.verification_session.redacted|identity.verification_session.requires_input|identity.verification_session.verified|invoice.created|invoice.deleted|invoice.finalization_failed|invoice.finalized|invoice.marked_uncollectible|invoice.overdue|invoice.overpaid|invoice.paid|invoice.payment_action_required|invoice.payment_attempt_required|invoice.payment_failed|invoice.payment_succeeded|invoice.sent|invoice.upcoming|invoice.updated|invoice.voided|invoice.will_be_due|invoice_payment.paid|invoiceitem.created|invoiceitem.deleted|issuing_authorization.created|issuing_authorization.request|issuing_authorization.updated|issuing_card.created|issuing_card.updated|issuing_cardholder.created|issuing_cardholder.updated|issuing_dispute.closed|issuing_dispute.created|issuing_dispute.funds_reinstated|issuing_dispute.funds_rescinded|issuing_dispute.submitted|issuing_dispute.updated|issuing_personalization_design.activated|issuing_personalization_design.deactivated|issuing_personalization_design.rejected|issuing_personalization_design.updated|issuing_token.created|issuing_token.updated|issuing_transaction.created|issuing_transaction.purchase_details_receipt_updated|issuing_transaction.updated|mandate.updated|payment_intent.amount_capturable_updated|payment_intent.canceled|payment_intent.created|payment_intent.partially_funded|payment_intent.payment_failed|payment_intent.processing|payment_intent.requires_action|payment_intent.succeeded|payment_link.created|payment_link.updated|payment_method.attached|payment_method.automatically_updated|payment_method.detached|payment_method.updated|payout.canceled|payout.created|payout.failed|payout.paid|payout.reconciliation_completed|payout.updated|person.created|person.deleted|person.updated|plan.created|plan.deleted|plan.updated|price.created|price.deleted|price.updated|product.created|product.deleted|product.updated|promotion_code.created|promotion_code.updated|quote.accepted|quote.canceled|quote.created|quote.finalized|radar.early_fraud_warning.created|radar.early_fraud_warning.updated|refund.created|refund.failed|refund.updated|reporting.report_run.failed|reporting.report_run.succeeded|reporting.report_type.updated|reserve.hold.created|reserve.hold.updated|reserve.plan.created|reserve.plan.disabled|reserve.plan.expired|reserve.plan.updated|reserve.release.created|review.closed|review.opened|setup_intent.canceled|setup_intent.created|setup_intent.requires_action|setup_intent.setup_failed|setup_intent.succeeded|sigma.scheduled_query_run.created|source.canceled|source.chargeable|source.failed|source.mandate_notification|source.refund_attributes_required|source.transaction.created|source.transaction.updated|subscription_schedule.aborted|subscription_schedule.canceled|subscription_schedule.completed|subscription_schedule.created|subscription_schedule.expiring|subscription_schedule.released|subscription_schedule.updated|tax.settings.updated|tax_rate.created|tax_rate.updated|terminal.reader.action_failed|terminal.reader.action_succeeded|terminal.reader.action_updated|test_helpers.test_clock.advancing|test_helpers.test_clock.created|test_helpers.test_clock.deleted|test_helpers.test_clock.internal_failure|test_helpers.test_clock.ready|topup.canceled|topup.created|topup.failed|topup.reversed|topup.succeeded|transfer.created|transfer.reversed|transfer.updated|treasury.credit_reversal.created|treasury.credit_reversal.posted|treasury.debit_reversal.completed|treasury.debit_reversal.created|treasury.debit_reversal.initial_credit_granted|treasury.financial_account.closed|treasury.financial_account.created|treasury.financial_account.features_status_updated|treasury.inbound_transfer.canceled|treasury.inbound_transfer.created|treasury.inbound_transfer.failed|treasury.inbound_transfer.succeeded|treasury.outbound_payment.canceled|treasury.outbound_payment.created|treasury.outbound_payment.expected_arrival_date_updated|treasury.outbound_payment.failed|treasury.outbound_payment.posted|treasury.outbound_payment.returned|treasury.outbound_payment.tracking_details_updated|treasury.outbound_transfer.canceled|treasury.outbound_transfer.created|treasury.outbound_transfer.expected_arrival_date_updated|treasury.outbound_transfer.failed|treasury.outbound_transfer.posted|treasury.outbound_transfer.returned|treasury.outbound_transfer.tracking_details_updated|treasury.received_credit.created|treasury.received_credit.failed|treasury.received_credit.succeeded|treasury.received_debit.created)>.",
2470
+ "docsUrl": "https://docs.stripe.com/upgrades",
2471
+ "sdkMethods": [
2472
+ {
2473
+ "namespace": "webhookEndpoints",
2474
+ "method": "create"
2475
+ }
2476
+ ]
2477
+ },
2478
+ {
2479
+ "id": "stripe-2026-08-26.dahlia-0144",
2480
+ "kind": "typeChanged",
2481
+ "severity": "breaking",
2482
+ "location": "requestBody",
2483
+ "path": "/v1/webhook_endpoints/{webhook_endpoint}",
2484
+ "method": "post",
2485
+ "field": "enabled_events",
2486
+ "fromType": "array<enum(*|account.application.authorized|account.application.deauthorized|account.external_account.created|account.external_account.deleted|account.external_account.updated|account.updated|application_fee.created|application_fee.refund.updated|application_fee.refunded|balance.available|billing.alert.triggered|billing_portal.configuration.created|billing_portal.configuration.updated|billing_portal.session.created|capability.updated|cash_balance.funds_available|charge.captured|charge.dispute.closed|charge.dispute.created|charge.dispute.funds_reinstated|charge.dispute.funds_withdrawn|charge.dispute.updated|charge.expired|charge.failed|charge.pending|charge.refund.updated|charge.refunded|charge.succeeded|charge.updated|checkout.session.async_payment_failed|checkout.session.async_payment_succeeded|checkout.session.completed|checkout.session.expired|climate.order.canceled|climate.order.created|climate.order.delayed|climate.order.delivered|climate.order.product_substituted|climate.product.created|climate.product.pricing_updated|coupon.created|coupon.deleted|coupon.updated|credit_note.created|credit_note.updated|credit_note.voided|customer.created|customer.deleted|customer.discount.created|customer.discount.deleted|customer.discount.updated|customer.source.created|customer.source.deleted|customer.source.expiring|customer.source.updated|customer.subscription.created|customer.subscription.deleted|customer.subscription.paused|customer.subscription.pending_update_applied|customer.subscription.pending_update_expired|customer.subscription.resumed|customer.subscription.trial_will_end|customer.subscription.updated|customer.tax_id.created|customer.tax_id.deleted|customer.tax_id.updated|customer.updated|customer_cash_balance_transaction.created|entitlements.active_entitlement_summary.updated|file.created|financial_connections.account.created|financial_connections.account.deactivated|financial_connections.account.disconnected|financial_connections.account.reactivated|financial_connections.account.refreshed_balance|financial_connections.account.refreshed_ownership|financial_connections.account.refreshed_transactions|identity.verification_session.canceled|identity.verification_session.created|identity.verification_session.processing|identity.verification_session.redacted|identity.verification_session.requires_input|identity.verification_session.verified|invoice.created|invoice.deleted|invoice.finalization_failed|invoice.finalized|invoice.marked_uncollectible|invoice.overdue|invoice.overpaid|invoice.paid|invoice.payment_action_required|invoice.payment_failed|invoice.payment_succeeded|invoice.sent|invoice.upcoming|invoice.updated|invoice.voided|invoice.will_be_due|invoice_payment.paid|invoiceitem.created|invoiceitem.deleted|issuing_authorization.created|issuing_authorization.request|issuing_authorization.updated|issuing_card.created|issuing_card.updated|issuing_cardholder.created|issuing_cardholder.updated|issuing_dispute.closed|issuing_dispute.created|issuing_dispute.funds_reinstated|issuing_dispute.funds_rescinded|issuing_dispute.submitted|issuing_dispute.updated|issuing_personalization_design.activated|issuing_personalization_design.deactivated|issuing_personalization_design.rejected|issuing_personalization_design.updated|issuing_token.created|issuing_token.updated|issuing_transaction.created|issuing_transaction.purchase_details_receipt_updated|issuing_transaction.updated|mandate.updated|payment_intent.amount_capturable_updated|payment_intent.canceled|payment_intent.created|payment_intent.partially_funded|payment_intent.payment_failed|payment_intent.processing|payment_intent.requires_action|payment_intent.succeeded|payment_link.created|payment_link.updated|payment_method.attached|payment_method.automatically_updated|payment_method.detached|payment_method.updated|payout.canceled|payout.created|payout.failed|payout.paid|payout.reconciliation_completed|payout.updated|person.created|person.deleted|person.updated|plan.created|plan.deleted|plan.updated|price.created|price.deleted|price.updated|product.created|product.deleted|product.updated|promotion_code.created|promotion_code.updated|quote.accepted|quote.canceled|quote.created|quote.finalized|radar.early_fraud_warning.created|radar.early_fraud_warning.updated|refund.created|refund.failed|refund.updated|reporting.report_run.failed|reporting.report_run.succeeded|reporting.report_type.updated|review.closed|review.opened|setup_intent.canceled|setup_intent.created|setup_intent.requires_action|setup_intent.setup_failed|setup_intent.succeeded|sigma.scheduled_query_run.created|source.canceled|source.chargeable|source.failed|source.mandate_notification|source.refund_attributes_required|source.transaction.created|source.transaction.updated|subscription_schedule.aborted|subscription_schedule.canceled|subscription_schedule.completed|subscription_schedule.created|subscription_schedule.expiring|subscription_schedule.released|subscription_schedule.updated|tax.settings.updated|tax_rate.created|tax_rate.updated|terminal.reader.action_failed|terminal.reader.action_succeeded|terminal.reader.action_updated|test_helpers.test_clock.advancing|test_helpers.test_clock.created|test_helpers.test_clock.deleted|test_helpers.test_clock.internal_failure|test_helpers.test_clock.ready|topup.canceled|topup.created|topup.failed|topup.reversed|topup.succeeded|transfer.created|transfer.reversed|transfer.updated|treasury.credit_reversal.created|treasury.credit_reversal.posted|treasury.debit_reversal.completed|treasury.debit_reversal.created|treasury.debit_reversal.initial_credit_granted|treasury.financial_account.closed|treasury.financial_account.created|treasury.financial_account.features_status_updated|treasury.inbound_transfer.canceled|treasury.inbound_transfer.created|treasury.inbound_transfer.failed|treasury.inbound_transfer.succeeded|treasury.outbound_payment.canceled|treasury.outbound_payment.created|treasury.outbound_payment.expected_arrival_date_updated|treasury.outbound_payment.failed|treasury.outbound_payment.posted|treasury.outbound_payment.returned|treasury.outbound_payment.tracking_details_updated|treasury.outbound_transfer.canceled|treasury.outbound_transfer.created|treasury.outbound_transfer.expected_arrival_date_updated|treasury.outbound_transfer.failed|treasury.outbound_transfer.posted|treasury.outbound_transfer.returned|treasury.outbound_transfer.tracking_details_updated|treasury.received_credit.created|treasury.received_credit.failed|treasury.received_credit.succeeded|treasury.received_debit.created)>",
2487
+ "toType": "array<enum(*|account.application.authorized|account.application.deauthorized|account.external_account.created|account.external_account.deleted|account.external_account.updated|account.updated|application_fee.created|application_fee.refund.updated|application_fee.refunded|balance.available|balance_settings.updated|billing.alert.triggered|billing.credit_balance_transaction.created|billing.credit_grant.created|billing.credit_grant.updated|billing.meter.created|billing.meter.deactivated|billing.meter.reactivated|billing.meter.updated|billing_portal.configuration.created|billing_portal.configuration.updated|billing_portal.session.created|capability.updated|cash_balance.funds_available|charge.captured|charge.dispute.closed|charge.dispute.created|charge.dispute.funds_reinstated|charge.dispute.funds_withdrawn|charge.dispute.updated|charge.expired|charge.failed|charge.pending|charge.refund.updated|charge.refunded|charge.succeeded|charge.updated|checkout.session.async_payment_failed|checkout.session.async_payment_succeeded|checkout.session.completed|checkout.session.expired|climate.order.canceled|climate.order.created|climate.order.delayed|climate.order.delivered|climate.order.product_substituted|climate.product.created|climate.product.pricing_updated|coupon.created|coupon.deleted|coupon.updated|credit_note.created|credit_note.updated|credit_note.voided|customer.created|customer.deleted|customer.discount.created|customer.discount.deleted|customer.discount.updated|customer.source.created|customer.source.deleted|customer.source.expiring|customer.source.updated|customer.subscription.created|customer.subscription.deleted|customer.subscription.paused|customer.subscription.pending_update_applied|customer.subscription.pending_update_expired|customer.subscription.resumed|customer.subscription.trial_will_end|customer.subscription.updated|customer.tax_id.created|customer.tax_id.deleted|customer.tax_id.updated|customer.updated|customer_cash_balance_transaction.created|entitlements.active_entitlement_summary.updated|file.created|financial_connections.account.account_numbers_updated|financial_connections.account.created|financial_connections.account.deactivated|financial_connections.account.disconnected|financial_connections.account.expected_deactivation_date_updated|financial_connections.account.reactivated|financial_connections.account.refreshed_balance|financial_connections.account.refreshed_ownership|financial_connections.account.refreshed_transactions|financial_connections.account.supported_payment_method_types_updated|financial_connections.account.upcoming_account_number_expiry|financial_connections.account.upcoming_deactivation|financial_connections.authorization.expected_deactivation_date_updated|financial_connections.authorization.upcoming_deactivation|identity.verification_session.canceled|identity.verification_session.created|identity.verification_session.processing|identity.verification_session.redacted|identity.verification_session.requires_input|identity.verification_session.verified|invoice.created|invoice.deleted|invoice.finalization_failed|invoice.finalized|invoice.marked_uncollectible|invoice.overdue|invoice.overpaid|invoice.paid|invoice.payment_action_required|invoice.payment_attempt_required|invoice.payment_failed|invoice.payment_succeeded|invoice.sent|invoice.upcoming|invoice.updated|invoice.voided|invoice.will_be_due|invoice_payment.paid|invoiceitem.created|invoiceitem.deleted|issuing_authorization.created|issuing_authorization.request|issuing_authorization.updated|issuing_card.created|issuing_card.updated|issuing_cardholder.created|issuing_cardholder.updated|issuing_dispute.closed|issuing_dispute.created|issuing_dispute.funds_reinstated|issuing_dispute.funds_rescinded|issuing_dispute.submitted|issuing_dispute.updated|issuing_personalization_design.activated|issuing_personalization_design.deactivated|issuing_personalization_design.rejected|issuing_personalization_design.updated|issuing_token.created|issuing_token.updated|issuing_transaction.created|issuing_transaction.purchase_details_receipt_updated|issuing_transaction.updated|mandate.updated|payment_intent.amount_capturable_updated|payment_intent.canceled|payment_intent.created|payment_intent.partially_funded|payment_intent.payment_failed|payment_intent.processing|payment_intent.requires_action|payment_intent.succeeded|payment_link.created|payment_link.updated|payment_method.attached|payment_method.automatically_updated|payment_method.detached|payment_method.updated|payout.canceled|payout.created|payout.failed|payout.paid|payout.reconciliation_completed|payout.updated|person.created|person.deleted|person.updated|plan.created|plan.deleted|plan.updated|price.created|price.deleted|price.updated|product.created|product.deleted|product.updated|promotion_code.created|promotion_code.updated|quote.accepted|quote.canceled|quote.created|quote.finalized|radar.early_fraud_warning.created|radar.early_fraud_warning.updated|refund.created|refund.failed|refund.updated|reporting.report_run.failed|reporting.report_run.succeeded|reporting.report_type.updated|reserve.hold.created|reserve.hold.updated|reserve.plan.created|reserve.plan.disabled|reserve.plan.expired|reserve.plan.updated|reserve.release.created|review.closed|review.opened|setup_intent.canceled|setup_intent.created|setup_intent.requires_action|setup_intent.setup_failed|setup_intent.succeeded|sigma.scheduled_query_run.created|source.canceled|source.chargeable|source.failed|source.mandate_notification|source.refund_attributes_required|source.transaction.created|source.transaction.updated|subscription_schedule.aborted|subscription_schedule.canceled|subscription_schedule.completed|subscription_schedule.created|subscription_schedule.expiring|subscription_schedule.released|subscription_schedule.updated|tax.settings.updated|tax_rate.created|tax_rate.updated|terminal.reader.action_failed|terminal.reader.action_succeeded|terminal.reader.action_updated|test_helpers.test_clock.advancing|test_helpers.test_clock.created|test_helpers.test_clock.deleted|test_helpers.test_clock.internal_failure|test_helpers.test_clock.ready|topup.canceled|topup.created|topup.failed|topup.reversed|topup.succeeded|transfer.created|transfer.reversed|transfer.updated|treasury.credit_reversal.created|treasury.credit_reversal.posted|treasury.debit_reversal.completed|treasury.debit_reversal.created|treasury.debit_reversal.initial_credit_granted|treasury.financial_account.closed|treasury.financial_account.created|treasury.financial_account.features_status_updated|treasury.inbound_transfer.canceled|treasury.inbound_transfer.created|treasury.inbound_transfer.failed|treasury.inbound_transfer.succeeded|treasury.outbound_payment.canceled|treasury.outbound_payment.created|treasury.outbound_payment.expected_arrival_date_updated|treasury.outbound_payment.failed|treasury.outbound_payment.posted|treasury.outbound_payment.returned|treasury.outbound_payment.tracking_details_updated|treasury.outbound_transfer.canceled|treasury.outbound_transfer.created|treasury.outbound_transfer.expected_arrival_date_updated|treasury.outbound_transfer.failed|treasury.outbound_transfer.posted|treasury.outbound_transfer.returned|treasury.outbound_transfer.tracking_details_updated|treasury.received_credit.created|treasury.received_credit.failed|treasury.received_credit.succeeded|treasury.received_debit.created)>",
2488
+ "note": "Request parameter \"enabled_events\" changed from array<enum(*|account.application.authorized|account.application.deauthorized|account.external_account.created|account.external_account.deleted|account.external_account.updated|account.updated|application_fee.created|application_fee.refund.updated|application_fee.refunded|balance.available|billing.alert.triggered|billing_portal.configuration.created|billing_portal.configuration.updated|billing_portal.session.created|capability.updated|cash_balance.funds_available|charge.captured|charge.dispute.closed|charge.dispute.created|charge.dispute.funds_reinstated|charge.dispute.funds_withdrawn|charge.dispute.updated|charge.expired|charge.failed|charge.pending|charge.refund.updated|charge.refunded|charge.succeeded|charge.updated|checkout.session.async_payment_failed|checkout.session.async_payment_succeeded|checkout.session.completed|checkout.session.expired|climate.order.canceled|climate.order.created|climate.order.delayed|climate.order.delivered|climate.order.product_substituted|climate.product.created|climate.product.pricing_updated|coupon.created|coupon.deleted|coupon.updated|credit_note.created|credit_note.updated|credit_note.voided|customer.created|customer.deleted|customer.discount.created|customer.discount.deleted|customer.discount.updated|customer.source.created|customer.source.deleted|customer.source.expiring|customer.source.updated|customer.subscription.created|customer.subscription.deleted|customer.subscription.paused|customer.subscription.pending_update_applied|customer.subscription.pending_update_expired|customer.subscription.resumed|customer.subscription.trial_will_end|customer.subscription.updated|customer.tax_id.created|customer.tax_id.deleted|customer.tax_id.updated|customer.updated|customer_cash_balance_transaction.created|entitlements.active_entitlement_summary.updated|file.created|financial_connections.account.created|financial_connections.account.deactivated|financial_connections.account.disconnected|financial_connections.account.reactivated|financial_connections.account.refreshed_balance|financial_connections.account.refreshed_ownership|financial_connections.account.refreshed_transactions|identity.verification_session.canceled|identity.verification_session.created|identity.verification_session.processing|identity.verification_session.redacted|identity.verification_session.requires_input|identity.verification_session.verified|invoice.created|invoice.deleted|invoice.finalization_failed|invoice.finalized|invoice.marked_uncollectible|invoice.overdue|invoice.overpaid|invoice.paid|invoice.payment_action_required|invoice.payment_failed|invoice.payment_succeeded|invoice.sent|invoice.upcoming|invoice.updated|invoice.voided|invoice.will_be_due|invoice_payment.paid|invoiceitem.created|invoiceitem.deleted|issuing_authorization.created|issuing_authorization.request|issuing_authorization.updated|issuing_card.created|issuing_card.updated|issuing_cardholder.created|issuing_cardholder.updated|issuing_dispute.closed|issuing_dispute.created|issuing_dispute.funds_reinstated|issuing_dispute.funds_rescinded|issuing_dispute.submitted|issuing_dispute.updated|issuing_personalization_design.activated|issuing_personalization_design.deactivated|issuing_personalization_design.rejected|issuing_personalization_design.updated|issuing_token.created|issuing_token.updated|issuing_transaction.created|issuing_transaction.purchase_details_receipt_updated|issuing_transaction.updated|mandate.updated|payment_intent.amount_capturable_updated|payment_intent.canceled|payment_intent.created|payment_intent.partially_funded|payment_intent.payment_failed|payment_intent.processing|payment_intent.requires_action|payment_intent.succeeded|payment_link.created|payment_link.updated|payment_method.attached|payment_method.automatically_updated|payment_method.detached|payment_method.updated|payout.canceled|payout.created|payout.failed|payout.paid|payout.reconciliation_completed|payout.updated|person.created|person.deleted|person.updated|plan.created|plan.deleted|plan.updated|price.created|price.deleted|price.updated|product.created|product.deleted|product.updated|promotion_code.created|promotion_code.updated|quote.accepted|quote.canceled|quote.created|quote.finalized|radar.early_fraud_warning.created|radar.early_fraud_warning.updated|refund.created|refund.failed|refund.updated|reporting.report_run.failed|reporting.report_run.succeeded|reporting.report_type.updated|review.closed|review.opened|setup_intent.canceled|setup_intent.created|setup_intent.requires_action|setup_intent.setup_failed|setup_intent.succeeded|sigma.scheduled_query_run.created|source.canceled|source.chargeable|source.failed|source.mandate_notification|source.refund_attributes_required|source.transaction.created|source.transaction.updated|subscription_schedule.aborted|subscription_schedule.canceled|subscription_schedule.completed|subscription_schedule.created|subscription_schedule.expiring|subscription_schedule.released|subscription_schedule.updated|tax.settings.updated|tax_rate.created|tax_rate.updated|terminal.reader.action_failed|terminal.reader.action_succeeded|terminal.reader.action_updated|test_helpers.test_clock.advancing|test_helpers.test_clock.created|test_helpers.test_clock.deleted|test_helpers.test_clock.internal_failure|test_helpers.test_clock.ready|topup.canceled|topup.created|topup.failed|topup.reversed|topup.succeeded|transfer.created|transfer.reversed|transfer.updated|treasury.credit_reversal.created|treasury.credit_reversal.posted|treasury.debit_reversal.completed|treasury.debit_reversal.created|treasury.debit_reversal.initial_credit_granted|treasury.financial_account.closed|treasury.financial_account.created|treasury.financial_account.features_status_updated|treasury.inbound_transfer.canceled|treasury.inbound_transfer.created|treasury.inbound_transfer.failed|treasury.inbound_transfer.succeeded|treasury.outbound_payment.canceled|treasury.outbound_payment.created|treasury.outbound_payment.expected_arrival_date_updated|treasury.outbound_payment.failed|treasury.outbound_payment.posted|treasury.outbound_payment.returned|treasury.outbound_payment.tracking_details_updated|treasury.outbound_transfer.canceled|treasury.outbound_transfer.created|treasury.outbound_transfer.expected_arrival_date_updated|treasury.outbound_transfer.failed|treasury.outbound_transfer.posted|treasury.outbound_transfer.returned|treasury.outbound_transfer.tracking_details_updated|treasury.received_credit.created|treasury.received_credit.failed|treasury.received_credit.succeeded|treasury.received_debit.created)> to array<enum(*|account.application.authorized|account.application.deauthorized|account.external_account.created|account.external_account.deleted|account.external_account.updated|account.updated|application_fee.created|application_fee.refund.updated|application_fee.refunded|balance.available|balance_settings.updated|billing.alert.triggered|billing.credit_balance_transaction.created|billing.credit_grant.created|billing.credit_grant.updated|billing.meter.created|billing.meter.deactivated|billing.meter.reactivated|billing.meter.updated|billing_portal.configuration.created|billing_portal.configuration.updated|billing_portal.session.created|capability.updated|cash_balance.funds_available|charge.captured|charge.dispute.closed|charge.dispute.created|charge.dispute.funds_reinstated|charge.dispute.funds_withdrawn|charge.dispute.updated|charge.expired|charge.failed|charge.pending|charge.refund.updated|charge.refunded|charge.succeeded|charge.updated|checkout.session.async_payment_failed|checkout.session.async_payment_succeeded|checkout.session.completed|checkout.session.expired|climate.order.canceled|climate.order.created|climate.order.delayed|climate.order.delivered|climate.order.product_substituted|climate.product.created|climate.product.pricing_updated|coupon.created|coupon.deleted|coupon.updated|credit_note.created|credit_note.updated|credit_note.voided|customer.created|customer.deleted|customer.discount.created|customer.discount.deleted|customer.discount.updated|customer.source.created|customer.source.deleted|customer.source.expiring|customer.source.updated|customer.subscription.created|customer.subscription.deleted|customer.subscription.paused|customer.subscription.pending_update_applied|customer.subscription.pending_update_expired|customer.subscription.resumed|customer.subscription.trial_will_end|customer.subscription.updated|customer.tax_id.created|customer.tax_id.deleted|customer.tax_id.updated|customer.updated|customer_cash_balance_transaction.created|entitlements.active_entitlement_summary.updated|file.created|financial_connections.account.account_numbers_updated|financial_connections.account.created|financial_connections.account.deactivated|financial_connections.account.disconnected|financial_connections.account.expected_deactivation_date_updated|financial_connections.account.reactivated|financial_connections.account.refreshed_balance|financial_connections.account.refreshed_ownership|financial_connections.account.refreshed_transactions|financial_connections.account.supported_payment_method_types_updated|financial_connections.account.upcoming_account_number_expiry|financial_connections.account.upcoming_deactivation|financial_connections.authorization.expected_deactivation_date_updated|financial_connections.authorization.upcoming_deactivation|identity.verification_session.canceled|identity.verification_session.created|identity.verification_session.processing|identity.verification_session.redacted|identity.verification_session.requires_input|identity.verification_session.verified|invoice.created|invoice.deleted|invoice.finalization_failed|invoice.finalized|invoice.marked_uncollectible|invoice.overdue|invoice.overpaid|invoice.paid|invoice.payment_action_required|invoice.payment_attempt_required|invoice.payment_failed|invoice.payment_succeeded|invoice.sent|invoice.upcoming|invoice.updated|invoice.voided|invoice.will_be_due|invoice_payment.paid|invoiceitem.created|invoiceitem.deleted|issuing_authorization.created|issuing_authorization.request|issuing_authorization.updated|issuing_card.created|issuing_card.updated|issuing_cardholder.created|issuing_cardholder.updated|issuing_dispute.closed|issuing_dispute.created|issuing_dispute.funds_reinstated|issuing_dispute.funds_rescinded|issuing_dispute.submitted|issuing_dispute.updated|issuing_personalization_design.activated|issuing_personalization_design.deactivated|issuing_personalization_design.rejected|issuing_personalization_design.updated|issuing_token.created|issuing_token.updated|issuing_transaction.created|issuing_transaction.purchase_details_receipt_updated|issuing_transaction.updated|mandate.updated|payment_intent.amount_capturable_updated|payment_intent.canceled|payment_intent.created|payment_intent.partially_funded|payment_intent.payment_failed|payment_intent.processing|payment_intent.requires_action|payment_intent.succeeded|payment_link.created|payment_link.updated|payment_method.attached|payment_method.automatically_updated|payment_method.detached|payment_method.updated|payout.canceled|payout.created|payout.failed|payout.paid|payout.reconciliation_completed|payout.updated|person.created|person.deleted|person.updated|plan.created|plan.deleted|plan.updated|price.created|price.deleted|price.updated|product.created|product.deleted|product.updated|promotion_code.created|promotion_code.updated|quote.accepted|quote.canceled|quote.created|quote.finalized|radar.early_fraud_warning.created|radar.early_fraud_warning.updated|refund.created|refund.failed|refund.updated|reporting.report_run.failed|reporting.report_run.succeeded|reporting.report_type.updated|reserve.hold.created|reserve.hold.updated|reserve.plan.created|reserve.plan.disabled|reserve.plan.expired|reserve.plan.updated|reserve.release.created|review.closed|review.opened|setup_intent.canceled|setup_intent.created|setup_intent.requires_action|setup_intent.setup_failed|setup_intent.succeeded|sigma.scheduled_query_run.created|source.canceled|source.chargeable|source.failed|source.mandate_notification|source.refund_attributes_required|source.transaction.created|source.transaction.updated|subscription_schedule.aborted|subscription_schedule.canceled|subscription_schedule.completed|subscription_schedule.created|subscription_schedule.expiring|subscription_schedule.released|subscription_schedule.updated|tax.settings.updated|tax_rate.created|tax_rate.updated|terminal.reader.action_failed|terminal.reader.action_succeeded|terminal.reader.action_updated|test_helpers.test_clock.advancing|test_helpers.test_clock.created|test_helpers.test_clock.deleted|test_helpers.test_clock.internal_failure|test_helpers.test_clock.ready|topup.canceled|topup.created|topup.failed|topup.reversed|topup.succeeded|transfer.created|transfer.reversed|transfer.updated|treasury.credit_reversal.created|treasury.credit_reversal.posted|treasury.debit_reversal.completed|treasury.debit_reversal.created|treasury.debit_reversal.initial_credit_granted|treasury.financial_account.closed|treasury.financial_account.created|treasury.financial_account.features_status_updated|treasury.inbound_transfer.canceled|treasury.inbound_transfer.created|treasury.inbound_transfer.failed|treasury.inbound_transfer.succeeded|treasury.outbound_payment.canceled|treasury.outbound_payment.created|treasury.outbound_payment.expected_arrival_date_updated|treasury.outbound_payment.failed|treasury.outbound_payment.posted|treasury.outbound_payment.returned|treasury.outbound_payment.tracking_details_updated|treasury.outbound_transfer.canceled|treasury.outbound_transfer.created|treasury.outbound_transfer.expected_arrival_date_updated|treasury.outbound_transfer.failed|treasury.outbound_transfer.posted|treasury.outbound_transfer.returned|treasury.outbound_transfer.tracking_details_updated|treasury.received_credit.created|treasury.received_credit.failed|treasury.received_credit.succeeded|treasury.received_debit.created)>.",
2489
+ "docsUrl": "https://docs.stripe.com/upgrades",
2490
+ "sdkMethods": [
2491
+ {
2492
+ "namespace": "webhookEndpoints",
2493
+ "method": "update"
2494
+ }
2495
+ ]
2496
+ },
2497
+ {
2498
+ "id": "stripe-2026-08-26.dahlia-0145",
2499
+ "kind": "typeChanged",
2500
+ "severity": "breaking",
2501
+ "location": "response",
2502
+ "resource": "billing_bill_resource_invoicing_pricing_pricing_price_details",
2503
+ "field": "price",
2504
+ "fromType": "string",
2505
+ "toType": "union(object(price)|string)",
2506
+ "note": "Response field \"billing_bill_resource_invoicing_pricing_pricing_price_details.price\" changed from string to union(object(price)|string).",
2507
+ "docsUrl": "https://docs.stripe.com/upgrades",
2508
+ "fieldPaths": [
2509
+ "data[].pricing.price_details.price",
2510
+ "pricing.price_details.price"
2511
+ ],
2512
+ "endpoints": [
2513
+ {
2514
+ "method": "get",
2515
+ "path": "/v1/invoiceitems"
2516
+ },
2517
+ {
2518
+ "method": "post",
2519
+ "path": "/v1/invoiceitems"
2520
+ },
2521
+ {
2522
+ "method": "get",
2523
+ "path": "/v1/invoiceitems/{invoiceitem}"
2524
+ },
2525
+ {
2526
+ "method": "post",
2527
+ "path": "/v1/invoiceitems/{invoiceitem}"
2528
+ },
2529
+ {
2530
+ "method": "get",
2531
+ "path": "/v1/invoices/{invoice}/lines"
2532
+ },
2533
+ {
2534
+ "method": "post",
2535
+ "path": "/v1/invoices/{invoice}/lines/{line_item_id}"
2536
+ }
2537
+ ],
2538
+ "sdkMethods": [
2539
+ {
2540
+ "namespace": "invoiceItems",
2541
+ "method": "list"
2542
+ },
2543
+ {
2544
+ "namespace": "invoiceItems",
2545
+ "method": "create"
2546
+ },
2547
+ {
2548
+ "namespace": "invoiceItems",
2549
+ "method": "retrieve"
2550
+ },
2551
+ {
2552
+ "namespace": "invoiceItems",
2553
+ "method": "update"
2554
+ },
2555
+ {
2556
+ "namespace": "invoices",
2557
+ "method": "listLineItems"
2558
+ },
2559
+ {
2560
+ "namespace": "invoices",
2561
+ "method": "updateLineItem"
2562
+ }
2563
+ ]
2564
+ },
2565
+ {
2566
+ "id": "stripe-2026-08-26.dahlia-0146",
2567
+ "kind": "typeChanged",
2568
+ "severity": "breaking",
2569
+ "location": "response",
2570
+ "resource": "billing_bill_resource_invoicing_taxes_tax_rate_details",
2571
+ "field": "tax_rate",
2572
+ "fromType": "string",
2573
+ "toType": "union(object(tax_rate)|string)",
2574
+ "note": "Response field \"billing_bill_resource_invoicing_taxes_tax_rate_details.tax_rate\" changed from string to union(object(tax_rate)|string).",
2575
+ "docsUrl": "https://docs.stripe.com/upgrades",
2576
+ "fieldPaths": [
2577
+ "invoice.total_taxes[].tax_rate_details.tax_rate",
2578
+ "data[].total_taxes[].tax_rate_details.tax_rate",
2579
+ "total_taxes[].tax_rate_details.tax_rate",
2580
+ "data[].taxes[].tax_rate_details.tax_rate",
2581
+ "credit_note.total_taxes[].tax_rate_details.tax_rate",
2582
+ "taxes[].tax_rate_details.tax_rate"
2583
+ ],
2584
+ "endpoints": [
2585
+ {
2586
+ "method": "post",
2587
+ "path": "/v1/checkout/sessions"
2588
+ },
2589
+ {
2590
+ "method": "get",
2591
+ "path": "/v1/checkout/sessions/{session}"
2592
+ },
2593
+ {
2594
+ "method": "post",
2595
+ "path": "/v1/checkout/sessions/{session}"
2596
+ },
2597
+ {
2598
+ "method": "post",
2599
+ "path": "/v1/checkout/sessions/{session}/expire"
2600
+ },
2601
+ {
2602
+ "method": "get",
2603
+ "path": "/v1/credit_notes"
2604
+ },
2605
+ {
2606
+ "method": "post",
2607
+ "path": "/v1/credit_notes"
2608
+ },
2609
+ {
2610
+ "method": "get",
2611
+ "path": "/v1/credit_notes/preview"
2612
+ },
2613
+ {
2614
+ "method": "get",
2615
+ "path": "/v1/credit_notes/preview/lines"
2616
+ },
2617
+ {
2618
+ "method": "get",
2619
+ "path": "/v1/credit_notes/{credit_note}/lines"
2620
+ },
2621
+ {
2622
+ "method": "get",
2623
+ "path": "/v1/credit_notes/{id}"
2624
+ },
2625
+ {
2626
+ "method": "post",
2627
+ "path": "/v1/credit_notes/{id}"
2628
+ },
2629
+ {
2630
+ "method": "post",
2631
+ "path": "/v1/credit_notes/{id}/void"
2632
+ }
2633
+ ],
2634
+ "sdkMethods": [
2635
+ {
2636
+ "namespace": "checkout.sessions",
2637
+ "method": "create"
2638
+ },
2639
+ {
2640
+ "namespace": "checkout.sessions",
2641
+ "method": "retrieve"
2642
+ },
2643
+ {
2644
+ "namespace": "checkout.sessions",
2645
+ "method": "update"
2646
+ },
2647
+ {
2648
+ "namespace": "checkout.sessions",
2649
+ "method": "expire"
2650
+ },
2651
+ {
2652
+ "namespace": "creditNotes",
2653
+ "method": "list"
2654
+ },
2655
+ {
2656
+ "namespace": "creditNotes",
2657
+ "method": "create"
2658
+ },
2659
+ {
2660
+ "namespace": "creditNotes",
2661
+ "method": "preview"
2662
+ },
2663
+ {
2664
+ "namespace": "creditNotes",
2665
+ "method": "listPreviewLineItems"
2666
+ },
2667
+ {
2668
+ "namespace": "creditNotes",
2669
+ "method": "listLineItems"
2670
+ },
2671
+ {
2672
+ "namespace": "creditNotes",
2673
+ "method": "retrieve"
2674
+ },
2675
+ {
2676
+ "namespace": "creditNotes",
2677
+ "method": "update"
2678
+ },
2679
+ {
2680
+ "namespace": "creditNotes",
2681
+ "method": "voidCreditNote"
2682
+ }
2683
+ ]
2684
+ },
2685
+ {
2686
+ "id": "stripe-2026-08-26.dahlia-0147",
2687
+ "kind": "typeChanged",
2688
+ "severity": "breaking",
2689
+ "location": "response",
2690
+ "resource": "checkout_us_bank_account_payment_method_options",
2691
+ "field": "financial_connections",
2692
+ "fromType": "object(linked_account_options_common)",
2693
+ "toType": "object(checkout_financial_connections_payment_method_options)",
2694
+ "note": "Response field \"checkout_us_bank_account_payment_method_options.financial_connections\" changed from object(linked_account_options_common) to object(checkout_financial_connections_payment_method_options).",
2695
+ "docsUrl": "https://docs.stripe.com/upgrades",
2696
+ "fieldPaths": [
2697
+ "data[].payment_method_options.us_bank_account.financial_connections",
2698
+ "payment_method_options.us_bank_account.financial_connections",
2699
+ "checkout_session.payment_method_options.us_bank_account.financial_connections"
2700
+ ],
2701
+ "endpoints": [
2702
+ {
2703
+ "method": "get",
2704
+ "path": "/v1/checkout/sessions"
2705
+ },
2706
+ {
2707
+ "method": "post",
2708
+ "path": "/v1/checkout/sessions"
2709
+ },
2710
+ {
2711
+ "method": "get",
2712
+ "path": "/v1/checkout/sessions/{session}"
2713
+ },
2714
+ {
2715
+ "method": "post",
2716
+ "path": "/v1/checkout/sessions/{session}"
2717
+ },
2718
+ {
2719
+ "method": "post",
2720
+ "path": "/v1/checkout/sessions/{session}/expire"
2721
+ },
2722
+ {
2723
+ "method": "post",
2724
+ "path": "/v1/customers/{customer}/balance_transactions"
2725
+ },
2726
+ {
2727
+ "method": "get",
2728
+ "path": "/v1/customers/{customer}/balance_transactions/{transaction}"
2729
+ },
2730
+ {
2731
+ "method": "post",
2732
+ "path": "/v1/customers/{customer}/balance_transactions/{transaction}"
2733
+ }
2734
+ ],
2735
+ "sdkMethods": [
2736
+ {
2737
+ "namespace": "checkout.sessions",
2738
+ "method": "list"
2739
+ },
2740
+ {
2741
+ "namespace": "checkout.sessions",
2742
+ "method": "create"
2743
+ },
2744
+ {
2745
+ "namespace": "checkout.sessions",
2746
+ "method": "retrieve"
2747
+ },
2748
+ {
2749
+ "namespace": "checkout.sessions",
2750
+ "method": "update"
2751
+ },
2752
+ {
2753
+ "namespace": "checkout.sessions",
2754
+ "method": "expire"
2755
+ },
2756
+ {
2757
+ "namespace": "customers",
2758
+ "method": "createBalanceTransaction"
2759
+ },
2760
+ {
2761
+ "namespace": "customers",
2762
+ "method": "retrieveBalanceTransaction"
2763
+ },
2764
+ {
2765
+ "namespace": "customers",
2766
+ "method": "updateBalanceTransaction"
2767
+ }
2768
+ ]
2769
+ },
2770
+ {
2771
+ "id": "stripe-2026-08-26.dahlia-0148",
2772
+ "kind": "typeChanged",
2773
+ "severity": "breaking",
2774
+ "location": "response",
2775
+ "resource": "dispute",
2776
+ "field": "enhanced_eligibility_types",
2777
+ "fromType": "array<enum(visa_compelling_evidence_3|visa_compliance)>",
2778
+ "toType": "array<enum(mastercard_compliance|visa_compelling_evidence_3|visa_compliance)>",
2779
+ "note": "Response field \"dispute.enhanced_eligibility_types\" changed from array<enum(visa_compelling_evidence_3|visa_compliance)> to array<enum(mastercard_compliance|visa_compelling_evidence_3|visa_compliance)>.",
2780
+ "docsUrl": "https://docs.stripe.com/upgrades",
2781
+ "fieldPaths": [
2782
+ "data[].balance_transaction.source.enhanced_eligibility_types",
2783
+ "balance_transaction.source.enhanced_eligibility_types",
2784
+ "fee.balance_transaction.source.enhanced_eligibility_types",
2785
+ "charge.balance_transaction.source.enhanced_eligibility_types",
2786
+ "charge.failure_balance_transaction.source.enhanced_eligibility_types",
2787
+ "originating_transaction.balance_transaction.source.enhanced_eligibility_types",
2788
+ "originating_transaction.failure_balance_transaction.source.enhanced_eligibility_types",
2789
+ "data[].source.enhanced_eligibility_types",
2790
+ "source.enhanced_eligibility_types",
2791
+ "data[].failure_balance_transaction.source.enhanced_eligibility_types",
2792
+ "application_fee.balance_transaction.source.enhanced_eligibility_types",
2793
+ "failure_balance_transaction.source.enhanced_eligibility_types"
2794
+ ],
2795
+ "endpoints": [
2796
+ {
2797
+ "method": "get",
2798
+ "path": "/v1/application_fees"
2799
+ },
2800
+ {
2801
+ "method": "get",
2802
+ "path": "/v1/application_fees/{fee}/refunds/{id}"
2803
+ },
2804
+ {
2805
+ "method": "post",
2806
+ "path": "/v1/application_fees/{fee}/refunds/{id}"
2807
+ },
2808
+ {
2809
+ "method": "get",
2810
+ "path": "/v1/application_fees/{id}"
2811
+ },
2812
+ {
2813
+ "method": "get",
2814
+ "path": "/v1/application_fees/{id}/refunds"
2815
+ },
2816
+ {
2817
+ "method": "post",
2818
+ "path": "/v1/application_fees/{id}/refunds"
2819
+ },
2820
+ {
2821
+ "method": "get",
2822
+ "path": "/v1/balance_transactions"
2823
+ },
2824
+ {
2825
+ "method": "get",
2826
+ "path": "/v1/balance_transactions/{id}"
2827
+ },
2828
+ {
2829
+ "method": "get",
2830
+ "path": "/v1/charges"
2831
+ },
2832
+ {
2833
+ "method": "post",
2834
+ "path": "/v1/charges"
2835
+ },
2836
+ {
2837
+ "method": "get",
2838
+ "path": "/v1/charges/search"
2839
+ },
2840
+ {
2841
+ "method": "get",
2842
+ "path": "/v1/charges/{charge}"
2843
+ }
2844
+ ],
2845
+ "sdkMethods": [
2846
+ {
2847
+ "namespace": "applicationFees",
2848
+ "method": "list"
2849
+ },
2850
+ {
2851
+ "namespace": "applicationFees",
2852
+ "method": "retrieveRefund"
2853
+ },
2854
+ {
2855
+ "namespace": "applicationFees",
2856
+ "method": "updateRefund"
2857
+ },
2858
+ {
2859
+ "namespace": "applicationFees",
2860
+ "method": "retrieve"
2861
+ },
2862
+ {
2863
+ "namespace": "applicationFees",
2864
+ "method": "listRefunds"
2865
+ },
2866
+ {
2867
+ "namespace": "applicationFees",
2868
+ "method": "createRefund"
2869
+ },
2870
+ {
2871
+ "namespace": "balanceTransactions",
2872
+ "method": "list"
2873
+ },
2874
+ {
2875
+ "namespace": "balanceTransactions",
2876
+ "method": "retrieve"
2877
+ },
2878
+ {
2879
+ "namespace": "charges",
2880
+ "method": "list"
2881
+ },
2882
+ {
2883
+ "namespace": "charges",
2884
+ "method": "create"
2885
+ },
2886
+ {
2887
+ "namespace": "charges",
2888
+ "method": "search"
2889
+ },
2890
+ {
2891
+ "namespace": "charges",
2892
+ "method": "retrieve"
2893
+ }
2894
+ ]
2895
+ },
2896
+ {
2897
+ "id": "stripe-2026-08-26.dahlia-0149",
2898
+ "kind": "typeChanged",
2899
+ "severity": "breaking",
2900
+ "location": "response",
2901
+ "resource": "funding_instructions_bank_transfer_financial_address",
2902
+ "field": "supported_networks",
2903
+ "fromType": "array<enum(ach|bacs|domestic_wire_us|fps|sepa|spei|swift|zengin)>",
2904
+ "toType": "array<enum(ach|bacs|chaps|domestic_wire_us|fps|sepa|spei|swift|zengin)>",
2905
+ "note": "Response field \"funding_instructions_bank_transfer_financial_address.supported_networks\" changed from array<enum(ach|bacs|domestic_wire_us|fps|sepa|spei|swift|zengin)> to array<enum(ach|bacs|chaps|domestic_wire_us|fps|sepa|spei|swift|zengin)>.",
2906
+ "docsUrl": "https://docs.stripe.com/upgrades",
2907
+ "fieldPaths": [
2908
+ "bank_transfer.financial_addresses[].supported_networks",
2909
+ "next_action.display_bank_transfer_instructions.financial_addresses[].supported_networks"
2910
+ ],
2911
+ "endpoints": [
2912
+ {
2913
+ "method": "post",
2914
+ "path": "/v1/customers/{customer}/funding_instructions"
2915
+ },
2916
+ {
2917
+ "method": "post",
2918
+ "path": "/v1/payment_intents"
2919
+ },
2920
+ {
2921
+ "method": "get",
2922
+ "path": "/v1/payment_intents/{intent}"
2923
+ },
2924
+ {
2925
+ "method": "post",
2926
+ "path": "/v1/payment_intents/{intent}"
2927
+ },
2928
+ {
2929
+ "method": "post",
2930
+ "path": "/v1/payment_intents/{intent}/apply_customer_balance"
2931
+ },
2932
+ {
2933
+ "method": "post",
2934
+ "path": "/v1/payment_intents/{intent}/cancel"
2935
+ },
2936
+ {
2937
+ "method": "post",
2938
+ "path": "/v1/payment_intents/{intent}/capture"
2939
+ },
2940
+ {
2941
+ "method": "post",
2942
+ "path": "/v1/payment_intents/{intent}/confirm"
2943
+ },
2944
+ {
2945
+ "method": "post",
2946
+ "path": "/v1/payment_intents/{intent}/increment_authorization"
2947
+ },
2948
+ {
2949
+ "method": "post",
2950
+ "path": "/v1/payment_intents/{intent}/verify_microdeposits"
2951
+ }
2952
+ ],
2953
+ "sdkMethods": [
2954
+ {
2955
+ "namespace": "customers",
2956
+ "method": "createFundingInstructions"
2957
+ },
2958
+ {
2959
+ "namespace": "paymentIntents",
2960
+ "method": "create"
2961
+ },
2962
+ {
2963
+ "namespace": "paymentIntents",
2964
+ "method": "retrieve"
2965
+ },
2966
+ {
2967
+ "namespace": "paymentIntents",
2968
+ "method": "update"
2969
+ },
2970
+ {
2971
+ "namespace": "paymentIntents",
2972
+ "method": "applyCustomerBalance"
2973
+ },
2974
+ {
2975
+ "namespace": "paymentIntents",
2976
+ "method": "cancel"
2977
+ },
2978
+ {
2979
+ "namespace": "paymentIntents",
2980
+ "method": "capture"
2981
+ },
2982
+ {
2983
+ "namespace": "paymentIntents",
2984
+ "method": "confirm"
2985
+ },
2986
+ {
2987
+ "namespace": "paymentIntents",
2988
+ "method": "incrementAuthorization"
2989
+ },
2990
+ {
2991
+ "namespace": "paymentIntents",
2992
+ "method": "verifyMicrodeposits"
2993
+ }
2994
+ ]
2995
+ },
2996
+ {
2997
+ "id": "stripe-2026-08-26.dahlia-0150",
2998
+ "kind": "typeChanged",
2999
+ "severity": "breaking",
3000
+ "location": "response",
3001
+ "resource": "invoices_payment_settings",
3002
+ "field": "payment_method_types",
3003
+ "fromType": "array<enum(ach_credit_transfer|ach_debit|acss_debit|affirm|amazon_pay|au_becs_debit|bacs_debit|bancontact|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|jp_credit_transfer|kakao_pay|klarna|konbini|kr_card|link|multibanco|naver_pay|nz_bank_account|p24|payco|paynow|paypal|promptpay|revolut_pay|sepa_credit_transfer|sepa_debit|sofort|swish|us_bank_account|wechat_pay)>",
3004
+ "toType": "array<enum(ach_credit_transfer|ach_debit|acss_debit|affirm|alipay|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|boleto|card|cashapp|crypto|custom|customer_balance|eps|fpx|giropay|grabpay|ideal|jp_credit_transfer|kakao_pay|klarna|konbini|kr_card|link|mb_way|multibanco|naver_pay|nz_bank_account|p24|pay_by_bank|payco|paynow|paypal|payto|pix|promptpay|revolut_pay|satispay|sepa_credit_transfer|sepa_debit|sofort|swish|twint|upi|us_bank_account|wechat_pay)>",
3005
+ "note": "Response field \"invoices_payment_settings.payment_method_types\" changed from array<enum(ach_credit_transfer|ach_debit|acss_debit|affirm|amazon_pay|au_becs_debit|bacs_debit|bancontact|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|jp_credit_transfer|kakao_pay|klarna|konbini|kr_card|link|multibanco|naver_pay|nz_bank_account|p24|payco|paynow|paypal|promptpay|revolut_pay|sepa_credit_transfer|sepa_debit|sofort|swish|us_bank_account|wechat_pay)> to array<enum(ach_credit_transfer|ach_debit|acss_debit|affirm|alipay|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|boleto|card|cashapp|crypto|custom|customer_balance|eps|fpx|giropay|grabpay|ideal|jp_credit_transfer|kakao_pay|klarna|konbini|kr_card|link|mb_way|multibanco|naver_pay|nz_bank_account|p24|pay_by_bank|payco|paynow|paypal|payto|pix|promptpay|revolut_pay|satispay|sepa_credit_transfer|sepa_debit|sofort|swish|twint|upi|us_bank_account|wechat_pay)>.",
3006
+ "docsUrl": "https://docs.stripe.com/upgrades",
3007
+ "fieldPaths": [
3008
+ "data[].invoice.payment_settings.payment_method_types",
3009
+ "invoice.payment_settings.payment_method_types",
3010
+ "subscription.latest_invoice.payment_settings.payment_method_types",
3011
+ "customer_balance_transaction.invoice.payment_settings.payment_method_types",
3012
+ "checkout_session.invoice.payment_settings.payment_method_types",
3013
+ "credit_note.invoice.payment_settings.payment_method_types",
3014
+ "data[].payment_settings.payment_method_types",
3015
+ "payment_settings.payment_method_types"
3016
+ ],
3017
+ "endpoints": [
3018
+ {
3019
+ "method": "get",
3020
+ "path": "/v1/checkout/sessions"
3021
+ },
3022
+ {
3023
+ "method": "post",
3024
+ "path": "/v1/checkout/sessions"
3025
+ },
3026
+ {
3027
+ "method": "get",
3028
+ "path": "/v1/checkout/sessions/{session}"
3029
+ },
3030
+ {
3031
+ "method": "post",
3032
+ "path": "/v1/checkout/sessions/{session}"
3033
+ },
3034
+ {
3035
+ "method": "post",
3036
+ "path": "/v1/checkout/sessions/{session}/expire"
3037
+ },
3038
+ {
3039
+ "method": "get",
3040
+ "path": "/v1/credit_notes"
3041
+ },
3042
+ {
3043
+ "method": "post",
3044
+ "path": "/v1/credit_notes"
3045
+ },
3046
+ {
3047
+ "method": "get",
3048
+ "path": "/v1/credit_notes/preview"
3049
+ },
3050
+ {
3051
+ "method": "get",
3052
+ "path": "/v1/credit_notes/{id}"
3053
+ },
3054
+ {
3055
+ "method": "post",
3056
+ "path": "/v1/credit_notes/{id}"
3057
+ },
3058
+ {
3059
+ "method": "post",
3060
+ "path": "/v1/credit_notes/{id}/void"
3061
+ },
3062
+ {
3063
+ "method": "get",
3064
+ "path": "/v1/customers/{customer}/balance_transactions"
3065
+ }
3066
+ ],
3067
+ "sdkMethods": [
3068
+ {
3069
+ "namespace": "checkout.sessions",
3070
+ "method": "list"
3071
+ },
3072
+ {
3073
+ "namespace": "checkout.sessions",
3074
+ "method": "create"
3075
+ },
3076
+ {
3077
+ "namespace": "checkout.sessions",
3078
+ "method": "retrieve"
3079
+ },
3080
+ {
3081
+ "namespace": "checkout.sessions",
3082
+ "method": "update"
3083
+ },
3084
+ {
3085
+ "namespace": "checkout.sessions",
3086
+ "method": "expire"
3087
+ },
3088
+ {
3089
+ "namespace": "creditNotes",
3090
+ "method": "list"
3091
+ },
3092
+ {
3093
+ "namespace": "creditNotes",
3094
+ "method": "create"
3095
+ },
3096
+ {
3097
+ "namespace": "creditNotes",
3098
+ "method": "preview"
3099
+ },
3100
+ {
3101
+ "namespace": "creditNotes",
3102
+ "method": "retrieve"
3103
+ },
3104
+ {
3105
+ "namespace": "creditNotes",
3106
+ "method": "update"
3107
+ },
3108
+ {
3109
+ "namespace": "creditNotes",
3110
+ "method": "voidCreditNote"
3111
+ },
3112
+ {
3113
+ "namespace": "customers",
3114
+ "method": "listBalanceTransactions"
3115
+ }
3116
+ ]
3117
+ },
3118
+ {
3119
+ "id": "stripe-2026-08-26.dahlia-0151",
3120
+ "kind": "typeChanged",
3121
+ "severity": "breaking",
3122
+ "location": "response",
3123
+ "resource": "payment_intent",
3124
+ "field": "excluded_payment_method_types",
3125
+ "fromType": "array<enum(acss_debit|affirm|afterpay_clearpay|alipay|alma|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|blik|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|kakao_pay|klarna|konbini|kr_card|mb_way|mobilepay|multibanco|naver_pay|nz_bank_account|oxxo|p24|pay_by_bank|payco|paynow|paypal|pix|promptpay|revolut_pay|samsung_pay|satispay|sepa_debit|sofort|swish|twint|us_bank_account|wechat_pay|zip)>",
3126
+ "toType": "array<enum(acss_debit|affirm|afterpay_clearpay|alipay|alma|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|bizum|blik|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|kakao_pay|klarna|konbini|kr_card|mb_way|mobilepay|multibanco|naver_pay|nz_bank_account|oxxo|p24|pay_by_bank|payco|paynow|paypal|payto|pix|promptpay|revolut_pay|samsung_pay|satispay|scalapay|sepa_debit|sofort|sunbit|swish|twint|upi|us_bank_account|wechat_pay|zip)>",
3127
+ "note": "Response field \"payment_intent.excluded_payment_method_types\" changed from array<enum(acss_debit|affirm|afterpay_clearpay|alipay|alma|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|blik|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|kakao_pay|klarna|konbini|kr_card|mb_way|mobilepay|multibanco|naver_pay|nz_bank_account|oxxo|p24|pay_by_bank|payco|paynow|paypal|pix|promptpay|revolut_pay|samsung_pay|satispay|sepa_debit|sofort|swish|twint|us_bank_account|wechat_pay|zip)> to array<enum(acss_debit|affirm|afterpay_clearpay|alipay|alma|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|bizum|blik|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|kakao_pay|klarna|konbini|kr_card|mb_way|mobilepay|multibanco|naver_pay|nz_bank_account|oxxo|p24|pay_by_bank|payco|paynow|paypal|payto|pix|promptpay|revolut_pay|samsung_pay|satispay|scalapay|sepa_debit|sofort|sunbit|swish|twint|upi|us_bank_account|wechat_pay|zip)>.",
3128
+ "docsUrl": "https://docs.stripe.com/upgrades",
3129
+ "fieldPaths": [
3130
+ "data[].charge.payment_intent.excluded_payment_method_types",
3131
+ "data[].originating_transaction.payment_intent.excluded_payment_method_types",
3132
+ "balance_transaction.source.payment_intent.excluded_payment_method_types",
3133
+ "fee.charge.payment_intent.excluded_payment_method_types",
3134
+ "fee.originating_transaction.payment_intent.excluded_payment_method_types",
3135
+ "charge.payment_intent.excluded_payment_method_types",
3136
+ "charge.review.payment_intent.excluded_payment_method_types",
3137
+ "originating_transaction.payment_intent.excluded_payment_method_types",
3138
+ "originating_transaction.review.payment_intent.excluded_payment_method_types",
3139
+ "data[].source.payment_intent.excluded_payment_method_types",
3140
+ "source.charge.payment_intent.excluded_payment_method_types",
3141
+ "source.originating_transaction.payment_intent.excluded_payment_method_types"
3142
+ ],
3143
+ "endpoints": [
3144
+ {
3145
+ "method": "get",
3146
+ "path": "/v1/application_fees"
3147
+ },
3148
+ {
3149
+ "method": "get",
3150
+ "path": "/v1/application_fees/{fee}/refunds/{id}"
3151
+ },
3152
+ {
3153
+ "method": "post",
3154
+ "path": "/v1/application_fees/{fee}/refunds/{id}"
3155
+ },
3156
+ {
3157
+ "method": "get",
3158
+ "path": "/v1/application_fees/{id}"
3159
+ },
3160
+ {
3161
+ "method": "post",
3162
+ "path": "/v1/application_fees/{id}/refunds"
3163
+ },
3164
+ {
3165
+ "method": "get",
3166
+ "path": "/v1/balance_transactions"
3167
+ },
3168
+ {
3169
+ "method": "get",
3170
+ "path": "/v1/balance_transactions/{id}"
3171
+ }
3172
+ ],
3173
+ "sdkMethods": [
3174
+ {
3175
+ "namespace": "applicationFees",
3176
+ "method": "list"
3177
+ },
3178
+ {
3179
+ "namespace": "applicationFees",
3180
+ "method": "retrieveRefund"
3181
+ },
3182
+ {
3183
+ "namespace": "applicationFees",
3184
+ "method": "updateRefund"
3185
+ },
3186
+ {
3187
+ "namespace": "applicationFees",
3188
+ "method": "retrieve"
3189
+ },
3190
+ {
3191
+ "namespace": "applicationFees",
3192
+ "method": "createRefund"
3193
+ },
3194
+ {
3195
+ "namespace": "balanceTransactions",
3196
+ "method": "list"
3197
+ },
3198
+ {
3199
+ "namespace": "balanceTransactions",
3200
+ "method": "retrieve"
3201
+ }
3202
+ ]
3203
+ },
3204
+ {
3205
+ "id": "stripe-2026-08-26.dahlia-0152",
3206
+ "kind": "removed",
3207
+ "severity": "breaking",
3208
+ "location": "response",
3209
+ "resource": "payment_intent_payment_method_options_us_bank_account",
3210
+ "field": "preferred_settlement_speed",
3211
+ "note": "Response field \"payment_intent_payment_method_options_us_bank_account.preferred_settlement_speed\" was removed.",
3212
+ "docsUrl": "https://docs.stripe.com/upgrades",
3213
+ "fieldPaths": [
3214
+ "payment_intent.payment_method_options.us_bank_account.preferred_settlement_speed",
3215
+ "data[].payment_method_options.us_bank_account.preferred_settlement_speed",
3216
+ "payment_method_options.us_bank_account.preferred_settlement_speed"
3217
+ ],
3218
+ "endpoints": [
3219
+ {
3220
+ "method": "post",
3221
+ "path": "/v1/charges"
3222
+ },
3223
+ {
3224
+ "method": "get",
3225
+ "path": "/v1/charges/{charge}"
3226
+ },
3227
+ {
3228
+ "method": "post",
3229
+ "path": "/v1/charges/{charge}"
3230
+ },
3231
+ {
3232
+ "method": "post",
3233
+ "path": "/v1/charges/{charge}/capture"
3234
+ },
3235
+ {
3236
+ "method": "get",
3237
+ "path": "/v1/charges/{charge}/refunds/{refund}"
3238
+ },
3239
+ {
3240
+ "method": "post",
3241
+ "path": "/v1/checkout/sessions"
3242
+ },
3243
+ {
3244
+ "method": "get",
3245
+ "path": "/v1/checkout/sessions/{session}"
3246
+ },
3247
+ {
3248
+ "method": "post",
3249
+ "path": "/v1/checkout/sessions/{session}"
3250
+ },
3251
+ {
3252
+ "method": "post",
3253
+ "path": "/v1/checkout/sessions/{session}/expire"
3254
+ },
3255
+ {
3256
+ "method": "get",
3257
+ "path": "/v1/disputes/{dispute}"
3258
+ },
3259
+ {
3260
+ "method": "post",
3261
+ "path": "/v1/disputes/{dispute}"
3262
+ },
3263
+ {
3264
+ "method": "post",
3265
+ "path": "/v1/disputes/{dispute}/close"
3266
+ }
3267
+ ],
3268
+ "sdkMethods": [
3269
+ {
3270
+ "namespace": "charges",
3271
+ "method": "create"
3272
+ },
3273
+ {
3274
+ "namespace": "charges",
3275
+ "method": "retrieve"
3276
+ },
3277
+ {
3278
+ "namespace": "charges",
3279
+ "method": "update"
3280
+ },
3281
+ {
3282
+ "namespace": "charges",
3283
+ "method": "capture"
3284
+ },
3285
+ {
3286
+ "namespace": "checkout.sessions",
3287
+ "method": "create"
3288
+ },
3289
+ {
3290
+ "namespace": "checkout.sessions",
3291
+ "method": "retrieve"
3292
+ },
3293
+ {
3294
+ "namespace": "checkout.sessions",
3295
+ "method": "update"
3296
+ },
3297
+ {
3298
+ "namespace": "checkout.sessions",
3299
+ "method": "expire"
3300
+ },
3301
+ {
3302
+ "namespace": "disputes",
3303
+ "method": "retrieve"
3304
+ },
3305
+ {
3306
+ "namespace": "disputes",
3307
+ "method": "update"
3308
+ },
3309
+ {
3310
+ "namespace": "disputes",
3311
+ "method": "close"
3312
+ },
3313
+ {
3314
+ "namespace": "paymentIntents",
3315
+ "method": "list"
3316
+ }
3317
+ ]
3318
+ },
3319
+ {
3320
+ "id": "stripe-2026-08-26.dahlia-0153",
3321
+ "kind": "typeChanged",
3322
+ "severity": "breaking",
3323
+ "location": "response",
3324
+ "resource": "payment_link",
3325
+ "field": "payment_method_types",
3326
+ "fromType": "array<enum(affirm|afterpay_clearpay|alipay|alma|au_becs_debit|bacs_debit|bancontact|billie|blik|boleto|card|cashapp|eps|fpx|giropay|grabpay|ideal|klarna|konbini|link|mobilepay|multibanco|oxxo|p24|pay_by_bank|paynow|paypal|pix|promptpay|satispay|sepa_debit|sofort|swish|twint|us_bank_account|wechat_pay|zip)>",
3327
+ "toType": "array<enum(affirm|afterpay_clearpay|alipay|alma|au_becs_debit|bacs_debit|bancontact|billie|bizum|blik|boleto|card|cashapp|eps|fpx|giropay|grabpay|ideal|klarna|konbini|link|mb_way|mobilepay|multibanco|oxxo|p24|pay_by_bank|paynow|paypal|payto|pix|promptpay|satispay|sepa_debit|sofort|sunbit|swish|twint|upi|us_bank_account|wechat_pay|zip)>",
3328
+ "note": "Response field \"payment_link.payment_method_types\" changed from array<enum(affirm|afterpay_clearpay|alipay|alma|au_becs_debit|bacs_debit|bancontact|billie|blik|boleto|card|cashapp|eps|fpx|giropay|grabpay|ideal|klarna|konbini|link|mobilepay|multibanco|oxxo|p24|pay_by_bank|paynow|paypal|pix|promptpay|satispay|sepa_debit|sofort|swish|twint|us_bank_account|wechat_pay|zip)> to array<enum(affirm|afterpay_clearpay|alipay|alma|au_becs_debit|bacs_debit|bancontact|billie|bizum|blik|boleto|card|cashapp|eps|fpx|giropay|grabpay|ideal|klarna|konbini|link|mb_way|mobilepay|multibanco|oxxo|p24|pay_by_bank|paynow|paypal|payto|pix|promptpay|satispay|sepa_debit|sofort|sunbit|swish|twint|upi|us_bank_account|wechat_pay|zip)>.",
3329
+ "docsUrl": "https://docs.stripe.com/upgrades",
3330
+ "fieldPaths": [
3331
+ "data[].payment_link.payment_method_types",
3332
+ "payment_link.payment_method_types",
3333
+ "customer_balance_transaction.checkout_session.payment_link.payment_method_types",
3334
+ "data[].checkout_session.payment_link.payment_method_types",
3335
+ "checkout_session.payment_link.payment_method_types",
3336
+ "data[].payment_method_types",
3337
+ "payment_method_types"
3338
+ ],
3339
+ "endpoints": [
3340
+ {
3341
+ "method": "get",
3342
+ "path": "/v1/checkout/sessions"
3343
+ },
3344
+ {
3345
+ "method": "post",
3346
+ "path": "/v1/checkout/sessions"
3347
+ },
3348
+ {
3349
+ "method": "get",
3350
+ "path": "/v1/checkout/sessions/{session}"
3351
+ },
3352
+ {
3353
+ "method": "post",
3354
+ "path": "/v1/checkout/sessions/{session}"
3355
+ },
3356
+ {
3357
+ "method": "post",
3358
+ "path": "/v1/checkout/sessions/{session}/expire"
3359
+ },
3360
+ {
3361
+ "method": "post",
3362
+ "path": "/v1/credit_notes"
3363
+ },
3364
+ {
3365
+ "method": "get",
3366
+ "path": "/v1/credit_notes/preview"
3367
+ },
3368
+ {
3369
+ "method": "get",
3370
+ "path": "/v1/credit_notes/{id}"
3371
+ },
3372
+ {
3373
+ "method": "post",
3374
+ "path": "/v1/credit_notes/{id}"
3375
+ },
3376
+ {
3377
+ "method": "post",
3378
+ "path": "/v1/credit_notes/{id}/void"
3379
+ },
3380
+ {
3381
+ "method": "get",
3382
+ "path": "/v1/customers/{customer}/balance_transactions"
3383
+ },
3384
+ {
3385
+ "method": "post",
3386
+ "path": "/v1/customers/{customer}/balance_transactions"
3387
+ }
3388
+ ],
3389
+ "sdkMethods": [
3390
+ {
3391
+ "namespace": "checkout.sessions",
3392
+ "method": "list"
3393
+ },
3394
+ {
3395
+ "namespace": "checkout.sessions",
3396
+ "method": "create"
3397
+ },
3398
+ {
3399
+ "namespace": "checkout.sessions",
3400
+ "method": "retrieve"
3401
+ },
3402
+ {
3403
+ "namespace": "checkout.sessions",
3404
+ "method": "update"
3405
+ },
3406
+ {
3407
+ "namespace": "checkout.sessions",
3408
+ "method": "expire"
3409
+ },
3410
+ {
3411
+ "namespace": "creditNotes",
3412
+ "method": "create"
3413
+ },
3414
+ {
3415
+ "namespace": "creditNotes",
3416
+ "method": "preview"
3417
+ },
3418
+ {
3419
+ "namespace": "creditNotes",
3420
+ "method": "retrieve"
3421
+ },
3422
+ {
3423
+ "namespace": "creditNotes",
3424
+ "method": "update"
3425
+ },
3426
+ {
3427
+ "namespace": "creditNotes",
3428
+ "method": "voidCreditNote"
3429
+ },
3430
+ {
3431
+ "namespace": "customers",
3432
+ "method": "listBalanceTransactions"
3433
+ },
3434
+ {
3435
+ "namespace": "customers",
3436
+ "method": "createBalanceTransaction"
3437
+ }
3438
+ ]
3439
+ },
3440
+ {
3441
+ "id": "stripe-2026-08-26.dahlia-0154",
3442
+ "kind": "typeChanged",
3443
+ "severity": "breaking",
3444
+ "location": "response",
3445
+ "resource": "payment_method_details",
3446
+ "field": "alipay",
3447
+ "fromType": "object(payment_flows_private_payment_methods_alipay_details)",
3448
+ "toType": "object(payment_method_details_alipay)",
3449
+ "note": "Response field \"payment_method_details.alipay\" changed from object(payment_flows_private_payment_methods_alipay_details) to object(payment_method_details_alipay).",
3450
+ "docsUrl": "https://docs.stripe.com/upgrades",
3451
+ "fieldPaths": [
3452
+ "data[].charge.payment_method_details.alipay",
3453
+ "data[].originating_transaction.payment_method_details.alipay",
3454
+ "balance_transaction.source.payment_method_details.alipay",
3455
+ "fee.charge.payment_method_details.alipay",
3456
+ "fee.originating_transaction.payment_method_details.alipay",
3457
+ "charge.payment_method_details.alipay",
3458
+ "originating_transaction.payment_method_details.alipay",
3459
+ "data[].source.payment_method_details.alipay",
3460
+ "source.charge.payment_method_details.alipay",
3461
+ "source.originating_transaction.payment_method_details.alipay",
3462
+ "source.payment_method_details.alipay",
3463
+ "source.destination_payment.payment_method_details.alipay"
3464
+ ],
3465
+ "endpoints": [
3466
+ {
3467
+ "method": "get",
3468
+ "path": "/v1/application_fees"
3469
+ },
3470
+ {
3471
+ "method": "get",
3472
+ "path": "/v1/application_fees/{fee}/refunds/{id}"
3473
+ },
3474
+ {
3475
+ "method": "post",
3476
+ "path": "/v1/application_fees/{fee}/refunds/{id}"
3477
+ },
3478
+ {
3479
+ "method": "get",
3480
+ "path": "/v1/application_fees/{id}"
3481
+ },
3482
+ {
3483
+ "method": "post",
3484
+ "path": "/v1/application_fees/{id}/refunds"
3485
+ },
3486
+ {
3487
+ "method": "get",
3488
+ "path": "/v1/balance_transactions"
3489
+ },
3490
+ {
3491
+ "method": "get",
3492
+ "path": "/v1/balance_transactions/{id}"
3493
+ },
3494
+ {
3495
+ "method": "get",
3496
+ "path": "/v1/charges"
3497
+ },
3498
+ {
3499
+ "method": "post",
3500
+ "path": "/v1/charges"
3501
+ },
3502
+ {
3503
+ "method": "get",
3504
+ "path": "/v1/charges/search"
3505
+ },
3506
+ {
3507
+ "method": "get",
3508
+ "path": "/v1/charges/{charge}"
3509
+ },
3510
+ {
3511
+ "method": "post",
3512
+ "path": "/v1/charges/{charge}"
3513
+ }
3514
+ ],
3515
+ "sdkMethods": [
3516
+ {
3517
+ "namespace": "applicationFees",
3518
+ "method": "list"
3519
+ },
3520
+ {
3521
+ "namespace": "applicationFees",
3522
+ "method": "retrieveRefund"
3523
+ },
3524
+ {
3525
+ "namespace": "applicationFees",
3526
+ "method": "updateRefund"
3527
+ },
3528
+ {
3529
+ "namespace": "applicationFees",
3530
+ "method": "retrieve"
3531
+ },
3532
+ {
3533
+ "namespace": "applicationFees",
3534
+ "method": "createRefund"
3535
+ },
3536
+ {
3537
+ "namespace": "balanceTransactions",
3538
+ "method": "list"
3539
+ },
3540
+ {
3541
+ "namespace": "balanceTransactions",
3542
+ "method": "retrieve"
3543
+ },
3544
+ {
3545
+ "namespace": "charges",
3546
+ "method": "list"
3547
+ },
3548
+ {
3549
+ "namespace": "charges",
3550
+ "method": "create"
3551
+ },
3552
+ {
3553
+ "namespace": "charges",
3554
+ "method": "search"
3555
+ },
3556
+ {
3557
+ "namespace": "charges",
3558
+ "method": "retrieve"
3559
+ },
3560
+ {
3561
+ "namespace": "charges",
3562
+ "method": "update"
3563
+ }
3564
+ ]
3565
+ },
3566
+ {
3567
+ "id": "stripe-2026-08-26.dahlia-0155",
3568
+ "kind": "typeChanged",
3569
+ "severity": "breaking",
3570
+ "location": "response",
3571
+ "resource": "payment_method_details_alma",
3572
+ "field": "installments",
3573
+ "fromType": "object(alma_installments)",
3574
+ "toType": "object(payment_flows_private_payment_methods_alma_details_resource_installments)",
3575
+ "note": "Response field \"payment_method_details_alma.installments\" changed from object(alma_installments) to object(payment_flows_private_payment_methods_alma_details_resource_installments).",
3576
+ "docsUrl": "https://docs.stripe.com/upgrades",
3577
+ "fieldPaths": [
3578
+ "charge.payment_method_details.alma.installments",
3579
+ "originating_transaction.payment_method_details.alma.installments",
3580
+ "source.payment_method_details.alma.installments",
3581
+ "data[].payment_method_details.alma.installments",
3582
+ "payment_method_details.alma.installments",
3583
+ "latest_charge.payment_method_details.alma.installments",
3584
+ "destination_payment.payment_method_details.alma.installments",
3585
+ "source_transaction.payment_method_details.alma.installments"
3586
+ ],
3587
+ "endpoints": [
3588
+ {
3589
+ "method": "get",
3590
+ "path": "/v1/application_fees/{id}"
3591
+ },
3592
+ {
3593
+ "method": "get",
3594
+ "path": "/v1/balance_transactions/{id}"
3595
+ },
3596
+ {
3597
+ "method": "get",
3598
+ "path": "/v1/charges"
3599
+ },
3600
+ {
3601
+ "method": "post",
3602
+ "path": "/v1/charges"
3603
+ },
3604
+ {
3605
+ "method": "get",
3606
+ "path": "/v1/charges/search"
3607
+ },
3608
+ {
3609
+ "method": "get",
3610
+ "path": "/v1/charges/{charge}"
3611
+ },
3612
+ {
3613
+ "method": "post",
3614
+ "path": "/v1/charges/{charge}"
3615
+ },
3616
+ {
3617
+ "method": "post",
3618
+ "path": "/v1/charges/{charge}/capture"
3619
+ },
3620
+ {
3621
+ "method": "get",
3622
+ "path": "/v1/charges/{charge}/refunds/{refund}"
3623
+ },
3624
+ {
3625
+ "method": "get",
3626
+ "path": "/v1/disputes/{dispute}"
3627
+ },
3628
+ {
3629
+ "method": "post",
3630
+ "path": "/v1/disputes/{dispute}"
3631
+ },
3632
+ {
3633
+ "method": "post",
3634
+ "path": "/v1/disputes/{dispute}/close"
3635
+ }
3636
+ ],
3637
+ "sdkMethods": [
3638
+ {
3639
+ "namespace": "applicationFees",
3640
+ "method": "retrieve"
3641
+ },
3642
+ {
3643
+ "namespace": "balanceTransactions",
3644
+ "method": "retrieve"
3645
+ },
3646
+ {
3647
+ "namespace": "charges",
3648
+ "method": "list"
3649
+ },
3650
+ {
3651
+ "namespace": "charges",
3652
+ "method": "create"
3653
+ },
3654
+ {
3655
+ "namespace": "charges",
3656
+ "method": "search"
3657
+ },
3658
+ {
3659
+ "namespace": "charges",
3660
+ "method": "retrieve"
3661
+ },
3662
+ {
3663
+ "namespace": "charges",
3664
+ "method": "update"
3665
+ },
3666
+ {
3667
+ "namespace": "charges",
3668
+ "method": "capture"
3669
+ },
3670
+ {
3671
+ "namespace": "disputes",
3672
+ "method": "retrieve"
3673
+ },
3674
+ {
3675
+ "namespace": "disputes",
3676
+ "method": "update"
3677
+ },
3678
+ {
3679
+ "namespace": "disputes",
3680
+ "method": "close"
3681
+ },
3682
+ {
3683
+ "namespace": "paymentIntents",
3684
+ "method": "create"
3685
+ }
3686
+ ]
3687
+ },
3688
+ {
3689
+ "id": "stripe-2026-08-26.dahlia-0156",
3690
+ "kind": "typeChanged",
3691
+ "severity": "breaking",
3692
+ "location": "response",
3693
+ "resource": "payment_method_details_konbini",
3694
+ "field": "store",
3695
+ "fromType": "object(payment_method_details_konbini_store)",
3696
+ "toType": "object(payment_flows_private_payment_methods_konbini_details_resource_store)",
3697
+ "note": "Response field \"payment_method_details_konbini.store\" changed from object(payment_method_details_konbini_store) to object(payment_flows_private_payment_methods_konbini_details_resource_store).",
3698
+ "docsUrl": "https://docs.stripe.com/upgrades",
3699
+ "fieldPaths": [
3700
+ "charge.payment_method_details.konbini.store",
3701
+ "originating_transaction.payment_method_details.konbini.store",
3702
+ "source.payment_method_details.konbini.store",
3703
+ "data[].payment_method_details.konbini.store",
3704
+ "payment_method_details.konbini.store",
3705
+ "latest_charge.payment_method_details.konbini.store",
3706
+ "destination_payment.payment_method_details.konbini.store",
3707
+ "source_transaction.payment_method_details.konbini.store"
3708
+ ],
3709
+ "endpoints": [
3710
+ {
3711
+ "method": "get",
3712
+ "path": "/v1/application_fees/{id}"
3713
+ },
3714
+ {
3715
+ "method": "get",
3716
+ "path": "/v1/balance_transactions/{id}"
3717
+ },
3718
+ {
3719
+ "method": "get",
3720
+ "path": "/v1/charges"
3721
+ },
3722
+ {
3723
+ "method": "post",
3724
+ "path": "/v1/charges"
3725
+ },
3726
+ {
3727
+ "method": "get",
3728
+ "path": "/v1/charges/search"
3729
+ },
3730
+ {
3731
+ "method": "get",
3732
+ "path": "/v1/charges/{charge}"
3733
+ },
3734
+ {
3735
+ "method": "post",
3736
+ "path": "/v1/charges/{charge}"
3737
+ },
3738
+ {
3739
+ "method": "post",
3740
+ "path": "/v1/charges/{charge}/capture"
3741
+ },
3742
+ {
3743
+ "method": "get",
3744
+ "path": "/v1/charges/{charge}/refunds/{refund}"
3745
+ },
3746
+ {
3747
+ "method": "get",
3748
+ "path": "/v1/disputes/{dispute}"
3749
+ },
3750
+ {
3751
+ "method": "post",
3752
+ "path": "/v1/disputes/{dispute}"
3753
+ },
3754
+ {
3755
+ "method": "post",
3756
+ "path": "/v1/disputes/{dispute}/close"
3757
+ }
3758
+ ],
3759
+ "sdkMethods": [
3760
+ {
3761
+ "namespace": "applicationFees",
3762
+ "method": "retrieve"
3763
+ },
3764
+ {
3765
+ "namespace": "balanceTransactions",
3766
+ "method": "retrieve"
3767
+ },
3768
+ {
3769
+ "namespace": "charges",
3770
+ "method": "list"
3771
+ },
3772
+ {
3773
+ "namespace": "charges",
3774
+ "method": "create"
3775
+ },
3776
+ {
3777
+ "namespace": "charges",
3778
+ "method": "search"
3779
+ },
3780
+ {
3781
+ "namespace": "charges",
3782
+ "method": "retrieve"
3783
+ },
3784
+ {
3785
+ "namespace": "charges",
3786
+ "method": "update"
3787
+ },
3788
+ {
3789
+ "namespace": "charges",
3790
+ "method": "capture"
3791
+ },
3792
+ {
3793
+ "namespace": "disputes",
3794
+ "method": "retrieve"
3795
+ },
3796
+ {
3797
+ "namespace": "disputes",
3798
+ "method": "update"
3799
+ },
3800
+ {
3801
+ "namespace": "disputes",
3802
+ "method": "close"
3803
+ },
3804
+ {
3805
+ "namespace": "paymentIntents",
3806
+ "method": "create"
3807
+ }
3808
+ ]
3809
+ },
3810
+ {
3811
+ "id": "stripe-2026-08-26.dahlia-0157",
3812
+ "kind": "typeChanged",
3813
+ "severity": "breaking",
3814
+ "location": "response",
3815
+ "resource": "subscription",
3816
+ "field": "trial_settings",
3817
+ "fromType": "object(subscriptions_trials_resource_trial_settings)",
3818
+ "toType": "object(subscriptions_resource_trial_settings_trial_settings)",
3819
+ "note": "Response field \"subscription.trial_settings\" changed from object(subscriptions_trials_resource_trial_settings) to object(subscriptions_resource_trial_settings_trial_settings).",
3820
+ "docsUrl": "https://docs.stripe.com/upgrades",
3821
+ "fieldPaths": [
3822
+ "customer.subscriptions.data[].trial_settings",
3823
+ "data[].invoice.subscription.trial_settings",
3824
+ "data[].subscription.trial_settings",
3825
+ "invoice.subscription.trial_settings",
3826
+ "subscription.trial_settings",
3827
+ "customer_balance_transaction.checkout_session.subscription.trial_settings",
3828
+ "customer_balance_transaction.invoice.subscription.trial_settings"
3829
+ ],
3830
+ "endpoints": [
3831
+ {
3832
+ "method": "post",
3833
+ "path": "/v1/accounts/{account}/external_accounts"
3834
+ },
3835
+ {
3836
+ "method": "get",
3837
+ "path": "/v1/accounts/{account}/external_accounts/{id}"
3838
+ },
3839
+ {
3840
+ "method": "post",
3841
+ "path": "/v1/accounts/{account}/external_accounts/{id}"
3842
+ },
3843
+ {
3844
+ "method": "get",
3845
+ "path": "/v1/billing/credit_balance_summary"
3846
+ },
3847
+ {
3848
+ "method": "post",
3849
+ "path": "/v1/billing/credit_grants"
3850
+ },
3851
+ {
3852
+ "method": "get",
3853
+ "path": "/v1/billing/credit_grants/{id}"
3854
+ },
3855
+ {
3856
+ "method": "post",
3857
+ "path": "/v1/billing/credit_grants/{id}"
3858
+ },
3859
+ {
3860
+ "method": "post",
3861
+ "path": "/v1/billing/credit_grants/{id}/expire"
3862
+ },
3863
+ {
3864
+ "method": "post",
3865
+ "path": "/v1/billing/credit_grants/{id}/void"
3866
+ },
3867
+ {
3868
+ "method": "post",
3869
+ "path": "/v1/charges"
3870
+ },
3871
+ {
3872
+ "method": "get",
3873
+ "path": "/v1/charges/{charge}"
3874
+ },
3875
+ {
3876
+ "method": "post",
3877
+ "path": "/v1/charges/{charge}"
3878
+ }
3879
+ ],
3880
+ "sdkMethods": [
3881
+ {
3882
+ "namespace": "accounts",
3883
+ "method": "createExternalAccount"
3884
+ },
3885
+ {
3886
+ "namespace": "accounts",
3887
+ "method": "retrieveExternalAccount"
3888
+ },
3889
+ {
3890
+ "namespace": "accounts",
3891
+ "method": "updateExternalAccount"
3892
+ },
3893
+ {
3894
+ "namespace": "billing.creditBalanceSummaries",
3895
+ "method": "retrieve"
3896
+ },
3897
+ {
3898
+ "namespace": "billing.creditGrants",
3899
+ "method": "create"
3900
+ },
3901
+ {
3902
+ "namespace": "billing.creditGrants",
3903
+ "method": "retrieve"
3904
+ },
3905
+ {
3906
+ "namespace": "billing.creditGrants",
3907
+ "method": "update"
3908
+ },
3909
+ {
3910
+ "namespace": "billing.creditGrants",
3911
+ "method": "expire"
3912
+ },
3913
+ {
3914
+ "namespace": "billing.creditGrants",
3915
+ "method": "voidGrant"
3916
+ },
3917
+ {
3918
+ "namespace": "charges",
3919
+ "method": "create"
3920
+ },
3921
+ {
3922
+ "namespace": "charges",
3923
+ "method": "retrieve"
3924
+ },
3925
+ {
3926
+ "namespace": "charges",
3927
+ "method": "update"
3928
+ }
3929
+ ]
3930
+ },
3931
+ {
3932
+ "id": "stripe-2026-08-26.dahlia-0158",
3933
+ "kind": "typeChanged",
3934
+ "severity": "breaking",
3935
+ "location": "response",
3936
+ "resource": "subscription_schedule_add_invoice_item",
3937
+ "field": "discounts",
3938
+ "fromType": "array<object(discounts_resource_stackable_discount)>",
3939
+ "toType": "array<object(discounts_resource_stackable_discount_with_discount_end)>",
3940
+ "note": "Response field \"subscription_schedule_add_invoice_item.discounts\" changed from array<object(discounts_resource_stackable_discount)> to array<object(discounts_resource_stackable_discount_with_discount_end)>.",
3941
+ "docsUrl": "https://docs.stripe.com/upgrades",
3942
+ "fieldPaths": [
3943
+ "subscription_schedule.phases[].add_invoice_items[].discounts",
3944
+ "data[].phases[].add_invoice_items[].discounts",
3945
+ "phases[].add_invoice_items[].discounts",
3946
+ "schedule.phases[].add_invoice_items[].discounts"
3947
+ ],
3948
+ "endpoints": [
3949
+ {
3950
+ "method": "post",
3951
+ "path": "/v1/quotes"
3952
+ },
3953
+ {
3954
+ "method": "get",
3955
+ "path": "/v1/quotes/{quote}"
3956
+ },
3957
+ {
3958
+ "method": "post",
3959
+ "path": "/v1/quotes/{quote}"
3960
+ },
3961
+ {
3962
+ "method": "post",
3963
+ "path": "/v1/quotes/{quote}/accept"
3964
+ },
3965
+ {
3966
+ "method": "post",
3967
+ "path": "/v1/quotes/{quote}/cancel"
3968
+ },
3969
+ {
3970
+ "method": "post",
3971
+ "path": "/v1/quotes/{quote}/finalize"
3972
+ },
3973
+ {
3974
+ "method": "get",
3975
+ "path": "/v1/subscription_schedules"
3976
+ },
3977
+ {
3978
+ "method": "post",
3979
+ "path": "/v1/subscription_schedules"
3980
+ },
3981
+ {
3982
+ "method": "get",
3983
+ "path": "/v1/subscription_schedules/{schedule}"
3984
+ },
3985
+ {
3986
+ "method": "post",
3987
+ "path": "/v1/subscription_schedules/{schedule}"
3988
+ },
3989
+ {
3990
+ "method": "post",
3991
+ "path": "/v1/subscription_schedules/{schedule}/cancel"
3992
+ },
3993
+ {
3994
+ "method": "post",
3995
+ "path": "/v1/subscription_schedules/{schedule}/release"
3996
+ }
3997
+ ],
3998
+ "sdkMethods": [
3999
+ {
4000
+ "namespace": "quotes",
4001
+ "method": "create"
4002
+ },
4003
+ {
4004
+ "namespace": "quotes",
4005
+ "method": "retrieve"
4006
+ },
4007
+ {
4008
+ "namespace": "quotes",
4009
+ "method": "update"
4010
+ },
4011
+ {
4012
+ "namespace": "quotes",
4013
+ "method": "accept"
4014
+ },
4015
+ {
4016
+ "namespace": "quotes",
4017
+ "method": "cancel"
4018
+ },
4019
+ {
4020
+ "namespace": "quotes",
4021
+ "method": "finalizeQuote"
4022
+ },
4023
+ {
4024
+ "namespace": "subscriptionSchedules",
4025
+ "method": "list"
4026
+ },
4027
+ {
4028
+ "namespace": "subscriptionSchedules",
4029
+ "method": "create"
4030
+ },
4031
+ {
4032
+ "namespace": "subscriptionSchedules",
4033
+ "method": "retrieve"
4034
+ },
4035
+ {
4036
+ "namespace": "subscriptionSchedules",
4037
+ "method": "update"
4038
+ },
4039
+ {
4040
+ "namespace": "subscriptionSchedules",
4041
+ "method": "cancel"
4042
+ },
4043
+ {
4044
+ "namespace": "subscriptionSchedules",
4045
+ "method": "release"
4046
+ }
4047
+ ]
4048
+ },
4049
+ {
4050
+ "id": "stripe-2026-08-26.dahlia-0159",
4051
+ "kind": "typeChanged",
4052
+ "severity": "breaking",
4053
+ "location": "response",
4054
+ "resource": "subscription_schedule_configuration_item",
4055
+ "field": "discounts",
4056
+ "fromType": "array<object(discounts_resource_stackable_discount)>",
4057
+ "toType": "array<object(stackable_discount_with_discount_settings)>",
4058
+ "note": "Response field \"subscription_schedule_configuration_item.discounts\" changed from array<object(discounts_resource_stackable_discount)> to array<object(stackable_discount_with_discount_settings)>.",
4059
+ "docsUrl": "https://docs.stripe.com/upgrades",
4060
+ "fieldPaths": [
4061
+ "subscription_schedule.phases[].items[].discounts",
4062
+ "data[].phases[].items[].discounts",
4063
+ "phases[].items[].discounts",
4064
+ "schedule.phases[].items[].discounts"
4065
+ ],
4066
+ "endpoints": [
4067
+ {
4068
+ "method": "post",
4069
+ "path": "/v1/quotes"
4070
+ },
4071
+ {
4072
+ "method": "get",
4073
+ "path": "/v1/quotes/{quote}"
4074
+ },
4075
+ {
4076
+ "method": "post",
4077
+ "path": "/v1/quotes/{quote}"
4078
+ },
4079
+ {
4080
+ "method": "post",
4081
+ "path": "/v1/quotes/{quote}/accept"
4082
+ },
4083
+ {
4084
+ "method": "post",
4085
+ "path": "/v1/quotes/{quote}/cancel"
4086
+ },
4087
+ {
4088
+ "method": "post",
4089
+ "path": "/v1/quotes/{quote}/finalize"
4090
+ },
4091
+ {
4092
+ "method": "get",
4093
+ "path": "/v1/subscription_schedules"
4094
+ },
4095
+ {
4096
+ "method": "post",
4097
+ "path": "/v1/subscription_schedules"
4098
+ },
4099
+ {
4100
+ "method": "get",
4101
+ "path": "/v1/subscription_schedules/{schedule}"
4102
+ },
4103
+ {
4104
+ "method": "post",
4105
+ "path": "/v1/subscription_schedules/{schedule}"
4106
+ },
4107
+ {
4108
+ "method": "post",
4109
+ "path": "/v1/subscription_schedules/{schedule}/cancel"
4110
+ },
4111
+ {
4112
+ "method": "post",
4113
+ "path": "/v1/subscription_schedules/{schedule}/release"
4114
+ }
4115
+ ],
4116
+ "sdkMethods": [
4117
+ {
4118
+ "namespace": "quotes",
4119
+ "method": "create"
4120
+ },
4121
+ {
4122
+ "namespace": "quotes",
4123
+ "method": "retrieve"
4124
+ },
4125
+ {
4126
+ "namespace": "quotes",
4127
+ "method": "update"
4128
+ },
4129
+ {
4130
+ "namespace": "quotes",
4131
+ "method": "accept"
4132
+ },
4133
+ {
4134
+ "namespace": "quotes",
4135
+ "method": "cancel"
4136
+ },
4137
+ {
4138
+ "namespace": "quotes",
4139
+ "method": "finalizeQuote"
4140
+ },
4141
+ {
4142
+ "namespace": "subscriptionSchedules",
4143
+ "method": "list"
4144
+ },
4145
+ {
4146
+ "namespace": "subscriptionSchedules",
4147
+ "method": "create"
4148
+ },
4149
+ {
4150
+ "namespace": "subscriptionSchedules",
4151
+ "method": "retrieve"
4152
+ },
4153
+ {
4154
+ "namespace": "subscriptionSchedules",
4155
+ "method": "update"
4156
+ },
4157
+ {
4158
+ "namespace": "subscriptionSchedules",
4159
+ "method": "cancel"
4160
+ },
4161
+ {
4162
+ "namespace": "subscriptionSchedules",
4163
+ "method": "release"
4164
+ }
4165
+ ]
4166
+ },
4167
+ {
4168
+ "id": "stripe-2026-08-26.dahlia-0160",
4169
+ "kind": "typeChanged",
4170
+ "severity": "breaking",
4171
+ "location": "response",
4172
+ "resource": "subscription_schedule_phase_configuration",
4173
+ "field": "discounts",
4174
+ "fromType": "array<object(discounts_resource_stackable_discount)>",
4175
+ "toType": "array<object(stackable_discount_with_discount_settings_and_discount_end)>",
4176
+ "note": "Response field \"subscription_schedule_phase_configuration.discounts\" changed from array<object(discounts_resource_stackable_discount)> to array<object(stackable_discount_with_discount_settings_and_discount_end)>.",
4177
+ "docsUrl": "https://docs.stripe.com/upgrades",
4178
+ "fieldPaths": [
4179
+ "subscription.schedule.phases[].discounts",
4180
+ "data[].subscription_schedule.phases[].discounts",
4181
+ "subscription_schedule.phases[].discounts",
4182
+ "data[].phases[].discounts",
4183
+ "phases[].discounts",
4184
+ "data[].schedule.phases[].discounts",
4185
+ "schedule.phases[].discounts"
4186
+ ],
4187
+ "endpoints": [
4188
+ {
4189
+ "method": "post",
4190
+ "path": "/v1/checkout/sessions"
4191
+ },
4192
+ {
4193
+ "method": "get",
4194
+ "path": "/v1/checkout/sessions/{session}"
4195
+ },
4196
+ {
4197
+ "method": "post",
4198
+ "path": "/v1/checkout/sessions/{session}"
4199
+ },
4200
+ {
4201
+ "method": "post",
4202
+ "path": "/v1/checkout/sessions/{session}/expire"
4203
+ },
4204
+ {
4205
+ "method": "post",
4206
+ "path": "/v1/invoices"
4207
+ },
4208
+ {
4209
+ "method": "post",
4210
+ "path": "/v1/invoices/create_preview"
4211
+ },
4212
+ {
4213
+ "method": "get",
4214
+ "path": "/v1/invoices/{invoice}"
4215
+ },
4216
+ {
4217
+ "method": "post",
4218
+ "path": "/v1/invoices/{invoice}"
4219
+ },
4220
+ {
4221
+ "method": "post",
4222
+ "path": "/v1/invoices/{invoice}/add_lines"
4223
+ },
4224
+ {
4225
+ "method": "post",
4226
+ "path": "/v1/invoices/{invoice}/attach_payment"
4227
+ },
4228
+ {
4229
+ "method": "post",
4230
+ "path": "/v1/invoices/{invoice}/finalize"
4231
+ },
4232
+ {
4233
+ "method": "post",
4234
+ "path": "/v1/invoices/{invoice}/lines/{line_item_id}"
4235
+ }
4236
+ ],
4237
+ "sdkMethods": [
4238
+ {
4239
+ "namespace": "checkout.sessions",
4240
+ "method": "create"
4241
+ },
4242
+ {
4243
+ "namespace": "checkout.sessions",
4244
+ "method": "retrieve"
4245
+ },
4246
+ {
4247
+ "namespace": "checkout.sessions",
4248
+ "method": "update"
4249
+ },
4250
+ {
4251
+ "namespace": "checkout.sessions",
4252
+ "method": "expire"
4253
+ },
4254
+ {
4255
+ "namespace": "invoices",
4256
+ "method": "create"
4257
+ },
4258
+ {
4259
+ "namespace": "invoices",
4260
+ "method": "createPreview"
4261
+ },
4262
+ {
4263
+ "namespace": "invoices",
4264
+ "method": "retrieve"
4265
+ },
4266
+ {
4267
+ "namespace": "invoices",
4268
+ "method": "update"
4269
+ },
4270
+ {
4271
+ "namespace": "invoices",
4272
+ "method": "addLines"
4273
+ },
4274
+ {
4275
+ "namespace": "invoices",
4276
+ "method": "attachPayment"
4277
+ },
4278
+ {
4279
+ "namespace": "invoices",
4280
+ "method": "finalizeInvoice"
4281
+ },
4282
+ {
4283
+ "namespace": "invoices",
4284
+ "method": "updateLineItem"
4285
+ }
4286
+ ]
4287
+ },
4288
+ {
4289
+ "id": "stripe-2026-08-26.dahlia-0161",
4290
+ "kind": "typeChanged",
4291
+ "severity": "breaking",
4292
+ "location": "response",
4293
+ "resource": "subscriptions_resource_payment_settings",
4294
+ "field": "payment_method_types",
4295
+ "fromType": "array<enum(ach_credit_transfer|ach_debit|acss_debit|affirm|amazon_pay|au_becs_debit|bacs_debit|bancontact|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|jp_credit_transfer|kakao_pay|klarna|konbini|kr_card|link|multibanco|naver_pay|nz_bank_account|p24|payco|paynow|paypal|promptpay|revolut_pay|sepa_credit_transfer|sepa_debit|sofort|swish|us_bank_account|wechat_pay)>",
4296
+ "toType": "array<enum(ach_credit_transfer|ach_debit|acss_debit|affirm|alipay|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|boleto|card|cashapp|crypto|custom|customer_balance|eps|fpx|giropay|grabpay|ideal|jp_credit_transfer|kakao_pay|klarna|konbini|kr_card|link|mb_way|multibanco|naver_pay|nz_bank_account|p24|pay_by_bank|payco|paynow|paypal|payto|pix|promptpay|revolut_pay|satispay|sepa_credit_transfer|sepa_debit|sofort|swish|twint|upi|us_bank_account|wechat_pay)>",
4297
+ "note": "Response field \"subscriptions_resource_payment_settings.payment_method_types\" changed from array<enum(ach_credit_transfer|ach_debit|acss_debit|affirm|amazon_pay|au_becs_debit|bacs_debit|bancontact|boleto|card|cashapp|crypto|customer_balance|eps|fpx|giropay|grabpay|ideal|jp_credit_transfer|kakao_pay|klarna|konbini|kr_card|link|multibanco|naver_pay|nz_bank_account|p24|payco|paynow|paypal|promptpay|revolut_pay|sepa_credit_transfer|sepa_debit|sofort|swish|us_bank_account|wechat_pay)> to array<enum(ach_credit_transfer|ach_debit|acss_debit|affirm|alipay|amazon_pay|au_becs_debit|bacs_debit|bancontact|billie|boleto|card|cashapp|crypto|custom|customer_balance|eps|fpx|giropay|grabpay|ideal|jp_credit_transfer|kakao_pay|klarna|konbini|kr_card|link|mb_way|multibanco|naver_pay|nz_bank_account|p24|pay_by_bank|payco|paynow|paypal|payto|pix|promptpay|revolut_pay|satispay|sepa_credit_transfer|sepa_debit|sofort|swish|twint|upi|us_bank_account|wechat_pay)>.",
4298
+ "docsUrl": "https://docs.stripe.com/upgrades",
4299
+ "fieldPaths": [
4300
+ "data[].subscription.payment_settings.payment_method_types",
4301
+ "invoice.subscription.payment_settings.payment_method_types",
4302
+ "subscription.payment_settings.payment_method_types",
4303
+ "subscriptions.data[].payment_settings.payment_method_types",
4304
+ "checkout_session.subscription.payment_settings.payment_method_types"
4305
+ ],
4306
+ "endpoints": [
4307
+ {
4308
+ "method": "get",
4309
+ "path": "/v1/checkout/sessions"
4310
+ },
4311
+ {
4312
+ "method": "post",
4313
+ "path": "/v1/checkout/sessions"
4314
+ },
4315
+ {
4316
+ "method": "get",
4317
+ "path": "/v1/checkout/sessions/{session}"
4318
+ },
4319
+ {
4320
+ "method": "post",
4321
+ "path": "/v1/checkout/sessions/{session}"
4322
+ },
4323
+ {
4324
+ "method": "post",
4325
+ "path": "/v1/checkout/sessions/{session}/expire"
4326
+ },
4327
+ {
4328
+ "method": "post",
4329
+ "path": "/v1/credit_notes"
4330
+ },
4331
+ {
4332
+ "method": "get",
4333
+ "path": "/v1/credit_notes/preview"
4334
+ },
4335
+ {
4336
+ "method": "get",
4337
+ "path": "/v1/credit_notes/{id}"
4338
+ },
4339
+ {
4340
+ "method": "post",
4341
+ "path": "/v1/credit_notes/{id}"
4342
+ },
4343
+ {
4344
+ "method": "post",
4345
+ "path": "/v1/credit_notes/{id}/void"
4346
+ },
4347
+ {
4348
+ "method": "post",
4349
+ "path": "/v1/customers"
4350
+ },
4351
+ {
4352
+ "method": "get",
4353
+ "path": "/v1/customers/{customer}"
4354
+ }
4355
+ ],
4356
+ "sdkMethods": [
4357
+ {
4358
+ "namespace": "checkout.sessions",
4359
+ "method": "list"
4360
+ },
4361
+ {
4362
+ "namespace": "checkout.sessions",
4363
+ "method": "create"
4364
+ },
4365
+ {
4366
+ "namespace": "checkout.sessions",
4367
+ "method": "retrieve"
4368
+ },
4369
+ {
4370
+ "namespace": "checkout.sessions",
4371
+ "method": "update"
4372
+ },
4373
+ {
4374
+ "namespace": "checkout.sessions",
4375
+ "method": "expire"
4376
+ },
4377
+ {
4378
+ "namespace": "creditNotes",
4379
+ "method": "create"
4380
+ },
4381
+ {
4382
+ "namespace": "creditNotes",
4383
+ "method": "preview"
4384
+ },
4385
+ {
4386
+ "namespace": "creditNotes",
4387
+ "method": "retrieve"
4388
+ },
4389
+ {
4390
+ "namespace": "creditNotes",
4391
+ "method": "update"
4392
+ },
4393
+ {
4394
+ "namespace": "creditNotes",
4395
+ "method": "voidCreditNote"
4396
+ },
4397
+ {
4398
+ "namespace": "customers",
4399
+ "method": "create"
4400
+ },
4401
+ {
4402
+ "namespace": "customers",
4403
+ "method": "retrieve"
4404
+ }
4405
+ ]
4406
+ },
4407
+ {
4408
+ "id": "stripe-2026-08-26.dahlia-0163",
4409
+ "kind": "removed",
4410
+ "severity": "breaking",
4411
+ "location": "response",
4412
+ "resource": "terminal_configuration_configuration_resource_tipping",
4413
+ "field": "bgn",
4414
+ "note": "Response field \"terminal_configuration_configuration_resource_tipping.bgn\" was removed.",
4415
+ "docsUrl": "https://docs.stripe.com/upgrades",
4416
+ "fieldPaths": [
4417
+ "data[].tipping.bgn",
4418
+ "tipping.bgn"
4419
+ ],
4420
+ "endpoints": [
4421
+ {
4422
+ "method": "get",
4423
+ "path": "/v1/terminal/configurations"
4424
+ },
4425
+ {
4426
+ "method": "post",
4427
+ "path": "/v1/terminal/configurations"
4428
+ },
4429
+ {
4430
+ "method": "get",
4431
+ "path": "/v1/terminal/configurations/{configuration}"
4432
+ },
4433
+ {
4434
+ "method": "post",
4435
+ "path": "/v1/terminal/configurations/{configuration}"
4436
+ }
4437
+ ],
4438
+ "sdkMethods": [
4439
+ {
4440
+ "namespace": "terminal.configurations",
4441
+ "method": "list"
4442
+ },
4443
+ {
4444
+ "namespace": "terminal.configurations",
4445
+ "method": "create"
4446
+ },
4447
+ {
4448
+ "namespace": "terminal.configurations",
4449
+ "method": "retrieve"
4450
+ },
4451
+ {
4452
+ "namespace": "terminal.configurations",
4453
+ "method": "update"
4454
+ }
4455
+ ]
4456
+ },
4457
+ {
4458
+ "id": "stripe-2026-08-26.dahlia-0162",
4459
+ "kind": "typeChanged",
4460
+ "severity": "breaking",
4461
+ "location": "response",
4462
+ "resource": "terminal.location",
4463
+ "field": "address",
4464
+ "fromType": "object(address)",
4465
+ "toType": "object(address_api_resource_terminal)",
4466
+ "note": "Response field \"terminal.location.address\" changed from object(address) to object(address_api_resource_terminal).",
4467
+ "docsUrl": "https://docs.stripe.com/upgrades",
4468
+ "fieldPaths": [
4469
+ "data[].address",
4470
+ "address",
4471
+ "data[].location.address",
4472
+ "location.address"
4473
+ ],
4474
+ "endpoints": [
4475
+ {
4476
+ "method": "get",
4477
+ "path": "/v1/terminal/locations"
4478
+ },
4479
+ {
4480
+ "method": "post",
4481
+ "path": "/v1/terminal/locations"
4482
+ },
4483
+ {
4484
+ "method": "get",
4485
+ "path": "/v1/terminal/locations/{location}"
4486
+ },
4487
+ {
4488
+ "method": "post",
4489
+ "path": "/v1/terminal/locations/{location}"
4490
+ },
4491
+ {
4492
+ "method": "get",
4493
+ "path": "/v1/terminal/readers"
4494
+ },
4495
+ {
4496
+ "method": "post",
4497
+ "path": "/v1/terminal/readers"
4498
+ },
4499
+ {
4500
+ "method": "get",
4501
+ "path": "/v1/terminal/readers/{reader}"
4502
+ },
4503
+ {
4504
+ "method": "post",
4505
+ "path": "/v1/terminal/readers/{reader}"
4506
+ },
4507
+ {
4508
+ "method": "post",
4509
+ "path": "/v1/terminal/readers/{reader}/cancel_action"
4510
+ },
4511
+ {
4512
+ "method": "post",
4513
+ "path": "/v1/terminal/readers/{reader}/collect_inputs"
4514
+ },
4515
+ {
4516
+ "method": "post",
4517
+ "path": "/v1/terminal/readers/{reader}/collect_payment_method"
4518
+ },
4519
+ {
4520
+ "method": "post",
4521
+ "path": "/v1/terminal/readers/{reader}/confirm_payment_intent"
4522
+ }
4523
+ ],
4524
+ "sdkMethods": [
4525
+ {
4526
+ "namespace": "terminal.locations",
4527
+ "method": "list"
4528
+ },
4529
+ {
4530
+ "namespace": "terminal.locations",
4531
+ "method": "create"
4532
+ },
4533
+ {
4534
+ "namespace": "terminal.locations",
4535
+ "method": "retrieve"
4536
+ },
4537
+ {
4538
+ "namespace": "terminal.locations",
4539
+ "method": "update"
4540
+ },
4541
+ {
4542
+ "namespace": "terminal.readers",
4543
+ "method": "list"
4544
+ },
4545
+ {
4546
+ "namespace": "terminal.readers",
4547
+ "method": "create"
4548
+ },
4549
+ {
4550
+ "namespace": "terminal.readers",
4551
+ "method": "retrieve"
4552
+ },
4553
+ {
4554
+ "namespace": "terminal.readers",
4555
+ "method": "update"
4556
+ },
4557
+ {
4558
+ "namespace": "terminal.readers",
4559
+ "method": "cancelAction"
4560
+ },
4561
+ {
4562
+ "namespace": "terminal.readers",
4563
+ "method": "collectInputs"
4564
+ },
4565
+ {
4566
+ "namespace": "terminal.readers",
4567
+ "method": "collectPaymentMethod"
4568
+ },
4569
+ {
4570
+ "namespace": "terminal.readers",
4571
+ "method": "confirmPaymentIntent"
4572
+ }
4573
+ ]
4574
+ }
4575
+ ]
4576
+ }