@wevion/cli 1.0.2632 → 1.0.2667
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/openapi.json +486 -3
- package/package.json +1 -1
package/openapi.json
CHANGED
|
@@ -30496,6 +30496,178 @@
|
|
|
30496
30496
|
}
|
|
30497
30497
|
}
|
|
30498
30498
|
},
|
|
30499
|
+
"/api/v1/billing/bank-transfer/pay-now": {
|
|
30500
|
+
"post": {
|
|
30501
|
+
"operationId": "billingBankTransferPayNow",
|
|
30502
|
+
"summary": "Pay the annual plan now by bank transfer",
|
|
30503
|
+
"tags": [
|
|
30504
|
+
"billing"
|
|
30505
|
+
],
|
|
30506
|
+
"description": "Pays the ANNUAL EUR plan by SEPA bank transfer: Stripe issues an open invoice with virtual-IBAN payment instructions and the subscription stays active while the funds are in transit (trust window of BANK_TRANSFER_DUE_DAYS days, then the account is blocked if unpaid). While trialing, the trial ends immediately and the existing subscription is converted (plan_id is ignored: the trial pays the current plan). With no live Stripe subscription (Free after trial, or canceled) a new send_invoice subscription is created for plan_id (defaults to the current plan) — re-subscribe by bank transfer cannot go through Checkout, which rejects customer_balance in subscription mode. Only available for EUR billing countries and when the bank-transfer feature flag is enabled — otherwise 409 BANK_TRANSFER_NOT_ELIGIBLE. Idempotent: re-calling inside an open trust window returns the existing open invoice URL.",
|
|
30507
|
+
"requestBody": {
|
|
30508
|
+
"required": true,
|
|
30509
|
+
"content": {
|
|
30510
|
+
"application/json": {
|
|
30511
|
+
"schema": {
|
|
30512
|
+
"additionalProperties": false,
|
|
30513
|
+
"type": "object",
|
|
30514
|
+
"properties": {
|
|
30515
|
+
"plan_id": {
|
|
30516
|
+
"format": "uuid",
|
|
30517
|
+
"description": "Plan to buy on the re-subscribe (create) branch; ignored while trialing. Defaults to the current plan.",
|
|
30518
|
+
"type": "string"
|
|
30519
|
+
}
|
|
30520
|
+
}
|
|
30521
|
+
}
|
|
30522
|
+
}
|
|
30523
|
+
}
|
|
30524
|
+
},
|
|
30525
|
+
"security": [
|
|
30526
|
+
{
|
|
30527
|
+
"bearerAuth": []
|
|
30528
|
+
}
|
|
30529
|
+
],
|
|
30530
|
+
"responses": {
|
|
30531
|
+
"200": {
|
|
30532
|
+
"description": "Successful response",
|
|
30533
|
+
"content": {
|
|
30534
|
+
"application/json": {
|
|
30535
|
+
"schema": {
|
|
30536
|
+
"additionalProperties": false,
|
|
30537
|
+
"type": "object",
|
|
30538
|
+
"required": [
|
|
30539
|
+
"invoice_url",
|
|
30540
|
+
"due_date"
|
|
30541
|
+
],
|
|
30542
|
+
"properties": {
|
|
30543
|
+
"invoice_url": {
|
|
30544
|
+
"description": "Stripe hosted invoice page carrying the bank-transfer payment instructions.",
|
|
30545
|
+
"type": "string"
|
|
30546
|
+
},
|
|
30547
|
+
"due_date": {
|
|
30548
|
+
"format": "date-time",
|
|
30549
|
+
"description": "When the invoice is due (end of the bank-transfer trust window).",
|
|
30550
|
+
"type": "string"
|
|
30551
|
+
}
|
|
30552
|
+
}
|
|
30553
|
+
}
|
|
30554
|
+
}
|
|
30555
|
+
}
|
|
30556
|
+
},
|
|
30557
|
+
"401": {
|
|
30558
|
+
"description": "Unauthorized - missing or invalid bearer token",
|
|
30559
|
+
"content": {
|
|
30560
|
+
"application/json": {
|
|
30561
|
+
"schema": {
|
|
30562
|
+
"type": "object",
|
|
30563
|
+
"required": [
|
|
30564
|
+
"statusCode",
|
|
30565
|
+
"error",
|
|
30566
|
+
"message"
|
|
30567
|
+
],
|
|
30568
|
+
"properties": {
|
|
30569
|
+
"statusCode": {
|
|
30570
|
+
"type": "number"
|
|
30571
|
+
},
|
|
30572
|
+
"error": {
|
|
30573
|
+
"type": "string"
|
|
30574
|
+
},
|
|
30575
|
+
"message": {
|
|
30576
|
+
"type": "string"
|
|
30577
|
+
}
|
|
30578
|
+
}
|
|
30579
|
+
}
|
|
30580
|
+
}
|
|
30581
|
+
}
|
|
30582
|
+
},
|
|
30583
|
+
"409": {
|
|
30584
|
+
"description": "Conflict - resource state prevents the operation",
|
|
30585
|
+
"content": {
|
|
30586
|
+
"application/json": {
|
|
30587
|
+
"schema": {
|
|
30588
|
+
"type": "object",
|
|
30589
|
+
"required": [
|
|
30590
|
+
"statusCode",
|
|
30591
|
+
"error",
|
|
30592
|
+
"message",
|
|
30593
|
+
"code"
|
|
30594
|
+
],
|
|
30595
|
+
"properties": {
|
|
30596
|
+
"statusCode": {
|
|
30597
|
+
"type": "number"
|
|
30598
|
+
},
|
|
30599
|
+
"error": {
|
|
30600
|
+
"type": "string"
|
|
30601
|
+
},
|
|
30602
|
+
"message": {
|
|
30603
|
+
"type": "string"
|
|
30604
|
+
},
|
|
30605
|
+
"code": {
|
|
30606
|
+
"type": "string",
|
|
30607
|
+
"enum": [
|
|
30608
|
+
"BANK_TRANSFER_NOT_ELIGIBLE"
|
|
30609
|
+
]
|
|
30610
|
+
}
|
|
30611
|
+
}
|
|
30612
|
+
}
|
|
30613
|
+
}
|
|
30614
|
+
}
|
|
30615
|
+
},
|
|
30616
|
+
"500": {
|
|
30617
|
+
"description": "Internal server error",
|
|
30618
|
+
"content": {
|
|
30619
|
+
"application/json": {
|
|
30620
|
+
"schema": {
|
|
30621
|
+
"type": "object",
|
|
30622
|
+
"required": [
|
|
30623
|
+
"statusCode",
|
|
30624
|
+
"error",
|
|
30625
|
+
"message"
|
|
30626
|
+
],
|
|
30627
|
+
"properties": {
|
|
30628
|
+
"statusCode": {
|
|
30629
|
+
"type": "number"
|
|
30630
|
+
},
|
|
30631
|
+
"error": {
|
|
30632
|
+
"type": "string"
|
|
30633
|
+
},
|
|
30634
|
+
"message": {
|
|
30635
|
+
"type": "string"
|
|
30636
|
+
}
|
|
30637
|
+
}
|
|
30638
|
+
}
|
|
30639
|
+
}
|
|
30640
|
+
}
|
|
30641
|
+
},
|
|
30642
|
+
"503": {
|
|
30643
|
+
"description": "Service unavailable",
|
|
30644
|
+
"content": {
|
|
30645
|
+
"application/json": {
|
|
30646
|
+
"schema": {
|
|
30647
|
+
"type": "object",
|
|
30648
|
+
"required": [
|
|
30649
|
+
"statusCode",
|
|
30650
|
+
"error",
|
|
30651
|
+
"message"
|
|
30652
|
+
],
|
|
30653
|
+
"properties": {
|
|
30654
|
+
"statusCode": {
|
|
30655
|
+
"type": "number"
|
|
30656
|
+
},
|
|
30657
|
+
"error": {
|
|
30658
|
+
"type": "string"
|
|
30659
|
+
},
|
|
30660
|
+
"message": {
|
|
30661
|
+
"type": "string"
|
|
30662
|
+
}
|
|
30663
|
+
}
|
|
30664
|
+
}
|
|
30665
|
+
}
|
|
30666
|
+
}
|
|
30667
|
+
}
|
|
30668
|
+
}
|
|
30669
|
+
}
|
|
30670
|
+
},
|
|
30499
30671
|
"/api/v1/billing/cancel": {
|
|
30500
30672
|
"post": {
|
|
30501
30673
|
"operationId": "billingCancelSubscription",
|
|
@@ -32688,6 +32860,7 @@
|
|
|
32688
32860
|
"billing_currency",
|
|
32689
32861
|
"scheduled_plan_id",
|
|
32690
32862
|
"scheduled_change_at",
|
|
32863
|
+
"bank_transfer",
|
|
32691
32864
|
"plan"
|
|
32692
32865
|
],
|
|
32693
32866
|
"properties": {
|
|
@@ -32836,6 +33009,12 @@
|
|
|
32836
33009
|
"admin_suspended"
|
|
32837
33010
|
]
|
|
32838
33011
|
},
|
|
33012
|
+
{
|
|
33013
|
+
"type": "string",
|
|
33014
|
+
"enum": [
|
|
33015
|
+
"bank_transfer_unpaid"
|
|
33016
|
+
]
|
|
33017
|
+
},
|
|
32839
33018
|
{
|
|
32840
33019
|
"maxLength": 50,
|
|
32841
33020
|
"type": "string"
|
|
@@ -32877,6 +33056,32 @@
|
|
|
32877
33056
|
}
|
|
32878
33057
|
]
|
|
32879
33058
|
},
|
|
33059
|
+
"bank_transfer": {
|
|
33060
|
+
"additionalProperties": false,
|
|
33061
|
+
"type": "object",
|
|
33062
|
+
"required": [
|
|
33063
|
+
"eligible",
|
|
33064
|
+
"pending_until"
|
|
33065
|
+
],
|
|
33066
|
+
"properties": {
|
|
33067
|
+
"eligible": {
|
|
33068
|
+
"description": "True when the annual plan can be paid now by SEPA bank transfer: feature flag ON, a payable state (status trialing, or no live Stripe subscription / canceled for a re-subscribe), and the billing country resolves to EUR.",
|
|
33069
|
+
"type": "boolean"
|
|
33070
|
+
},
|
|
33071
|
+
"pending_until": {
|
|
33072
|
+
"description": "End of the bank-transfer trust window (access granted while funds are in transit); null when no transfer is pending.",
|
|
33073
|
+
"anyOf": [
|
|
33074
|
+
{
|
|
33075
|
+
"format": "date-time",
|
|
33076
|
+
"type": "string"
|
|
33077
|
+
},
|
|
33078
|
+
{
|
|
33079
|
+
"type": "null"
|
|
33080
|
+
}
|
|
33081
|
+
]
|
|
33082
|
+
}
|
|
33083
|
+
}
|
|
33084
|
+
},
|
|
32880
33085
|
"plan": {
|
|
32881
33086
|
"type": "object",
|
|
32882
33087
|
"required": [
|
|
@@ -33866,6 +34071,7 @@
|
|
|
33866
34071
|
"properties": {
|
|
33867
34072
|
"quantity": {
|
|
33868
34073
|
"minimum": 1,
|
|
34074
|
+
"maximum": 25,
|
|
33869
34075
|
"type": "integer"
|
|
33870
34076
|
}
|
|
33871
34077
|
}
|
|
@@ -34059,6 +34265,7 @@
|
|
|
34059
34265
|
"properties": {
|
|
34060
34266
|
"quantity": {
|
|
34061
34267
|
"minimum": 1,
|
|
34268
|
+
"maximum": 25,
|
|
34062
34269
|
"type": "integer"
|
|
34063
34270
|
}
|
|
34064
34271
|
}
|
|
@@ -87301,7 +87508,7 @@
|
|
|
87301
87508
|
"tags": [
|
|
87302
87509
|
"ai-chat"
|
|
87303
87510
|
],
|
|
87304
|
-
"description": "Accepts a single file (max 10MB, enforced via the multipart limits registered on this route) and uploads to S3 or local filesystem. Supported MIME types: jpeg, png, webp, gif, pdf, csv, txt, docx, xlsx. HEIC/HEIF photos are rejected (415) with guidance to convert to JPEG.",
|
|
87511
|
+
"description": "Accepts a single file (max 10MB, enforced via the multipart limits registered on this route) and uploads to S3 or local filesystem. Supported MIME types: jpeg, png, webp, gif, pdf, csv, txt, markdown, ms-excel (Windows-exported CSV), docx, xlsx. HEIC/HEIF photos are rejected (415) with guidance to convert to JPEG.",
|
|
87305
87512
|
"security": [
|
|
87306
87513
|
{
|
|
87307
87514
|
"bearerAuth": []
|
|
@@ -107915,11 +108122,15 @@
|
|
|
107915
108122
|
"content": {
|
|
107916
108123
|
"application/json": {
|
|
107917
108124
|
"schema": {
|
|
108125
|
+
"additionalProperties": false,
|
|
107918
108126
|
"type": "object",
|
|
107919
108127
|
"required": [
|
|
107920
108128
|
"error"
|
|
107921
108129
|
],
|
|
107922
108130
|
"properties": {
|
|
108131
|
+
"code": {
|
|
108132
|
+
"type": "string"
|
|
108133
|
+
},
|
|
107923
108134
|
"error": {
|
|
107924
108135
|
"type": "string"
|
|
107925
108136
|
}
|
|
@@ -107933,11 +108144,15 @@
|
|
|
107933
108144
|
"content": {
|
|
107934
108145
|
"application/json": {
|
|
107935
108146
|
"schema": {
|
|
108147
|
+
"additionalProperties": false,
|
|
107936
108148
|
"type": "object",
|
|
107937
108149
|
"required": [
|
|
107938
108150
|
"error"
|
|
107939
108151
|
],
|
|
107940
108152
|
"properties": {
|
|
108153
|
+
"code": {
|
|
108154
|
+
"type": "string"
|
|
108155
|
+
},
|
|
107941
108156
|
"error": {
|
|
107942
108157
|
"type": "string"
|
|
107943
108158
|
}
|
|
@@ -107951,11 +108166,37 @@
|
|
|
107951
108166
|
"content": {
|
|
107952
108167
|
"application/json": {
|
|
107953
108168
|
"schema": {
|
|
108169
|
+
"additionalProperties": false,
|
|
107954
108170
|
"type": "object",
|
|
107955
108171
|
"required": [
|
|
107956
108172
|
"error"
|
|
107957
108173
|
],
|
|
107958
108174
|
"properties": {
|
|
108175
|
+
"code": {
|
|
108176
|
+
"type": "string"
|
|
108177
|
+
},
|
|
108178
|
+
"error": {
|
|
108179
|
+
"type": "string"
|
|
108180
|
+
}
|
|
108181
|
+
}
|
|
108182
|
+
}
|
|
108183
|
+
}
|
|
108184
|
+
}
|
|
108185
|
+
},
|
|
108186
|
+
"429": {
|
|
108187
|
+
"description": "Too many requests - rate limit exceeded",
|
|
108188
|
+
"content": {
|
|
108189
|
+
"application/json": {
|
|
108190
|
+
"schema": {
|
|
108191
|
+
"additionalProperties": false,
|
|
108192
|
+
"type": "object",
|
|
108193
|
+
"required": [
|
|
108194
|
+
"error"
|
|
108195
|
+
],
|
|
108196
|
+
"properties": {
|
|
108197
|
+
"code": {
|
|
108198
|
+
"type": "string"
|
|
108199
|
+
},
|
|
107959
108200
|
"error": {
|
|
107960
108201
|
"type": "string"
|
|
107961
108202
|
}
|
|
@@ -108092,11 +108333,15 @@
|
|
|
108092
108333
|
"content": {
|
|
108093
108334
|
"application/json": {
|
|
108094
108335
|
"schema": {
|
|
108336
|
+
"additionalProperties": false,
|
|
108095
108337
|
"type": "object",
|
|
108096
108338
|
"required": [
|
|
108097
108339
|
"error"
|
|
108098
108340
|
],
|
|
108099
108341
|
"properties": {
|
|
108342
|
+
"code": {
|
|
108343
|
+
"type": "string"
|
|
108344
|
+
},
|
|
108100
108345
|
"error": {
|
|
108101
108346
|
"type": "string"
|
|
108102
108347
|
}
|
|
@@ -108110,11 +108355,15 @@
|
|
|
108110
108355
|
"content": {
|
|
108111
108356
|
"application/json": {
|
|
108112
108357
|
"schema": {
|
|
108358
|
+
"additionalProperties": false,
|
|
108113
108359
|
"type": "object",
|
|
108114
108360
|
"required": [
|
|
108115
108361
|
"error"
|
|
108116
108362
|
],
|
|
108117
108363
|
"properties": {
|
|
108364
|
+
"code": {
|
|
108365
|
+
"type": "string"
|
|
108366
|
+
},
|
|
108118
108367
|
"error": {
|
|
108119
108368
|
"type": "string"
|
|
108120
108369
|
}
|
|
@@ -108128,11 +108377,37 @@
|
|
|
108128
108377
|
"content": {
|
|
108129
108378
|
"application/json": {
|
|
108130
108379
|
"schema": {
|
|
108380
|
+
"additionalProperties": false,
|
|
108131
108381
|
"type": "object",
|
|
108132
108382
|
"required": [
|
|
108133
108383
|
"error"
|
|
108134
108384
|
],
|
|
108135
108385
|
"properties": {
|
|
108386
|
+
"code": {
|
|
108387
|
+
"type": "string"
|
|
108388
|
+
},
|
|
108389
|
+
"error": {
|
|
108390
|
+
"type": "string"
|
|
108391
|
+
}
|
|
108392
|
+
}
|
|
108393
|
+
}
|
|
108394
|
+
}
|
|
108395
|
+
}
|
|
108396
|
+
},
|
|
108397
|
+
"429": {
|
|
108398
|
+
"description": "Too many requests - rate limit exceeded",
|
|
108399
|
+
"content": {
|
|
108400
|
+
"application/json": {
|
|
108401
|
+
"schema": {
|
|
108402
|
+
"additionalProperties": false,
|
|
108403
|
+
"type": "object",
|
|
108404
|
+
"required": [
|
|
108405
|
+
"error"
|
|
108406
|
+
],
|
|
108407
|
+
"properties": {
|
|
108408
|
+
"code": {
|
|
108409
|
+
"type": "string"
|
|
108410
|
+
},
|
|
108136
108411
|
"error": {
|
|
108137
108412
|
"type": "string"
|
|
108138
108413
|
}
|
|
@@ -108247,11 +108522,15 @@
|
|
|
108247
108522
|
"content": {
|
|
108248
108523
|
"application/json": {
|
|
108249
108524
|
"schema": {
|
|
108525
|
+
"additionalProperties": false,
|
|
108250
108526
|
"type": "object",
|
|
108251
108527
|
"required": [
|
|
108252
108528
|
"error"
|
|
108253
108529
|
],
|
|
108254
108530
|
"properties": {
|
|
108531
|
+
"code": {
|
|
108532
|
+
"type": "string"
|
|
108533
|
+
},
|
|
108255
108534
|
"error": {
|
|
108256
108535
|
"type": "string"
|
|
108257
108536
|
}
|
|
@@ -108265,11 +108544,15 @@
|
|
|
108265
108544
|
"content": {
|
|
108266
108545
|
"application/json": {
|
|
108267
108546
|
"schema": {
|
|
108547
|
+
"additionalProperties": false,
|
|
108268
108548
|
"type": "object",
|
|
108269
108549
|
"required": [
|
|
108270
108550
|
"error"
|
|
108271
108551
|
],
|
|
108272
108552
|
"properties": {
|
|
108553
|
+
"code": {
|
|
108554
|
+
"type": "string"
|
|
108555
|
+
},
|
|
108273
108556
|
"error": {
|
|
108274
108557
|
"type": "string"
|
|
108275
108558
|
}
|
|
@@ -108283,11 +108566,37 @@
|
|
|
108283
108566
|
"content": {
|
|
108284
108567
|
"application/json": {
|
|
108285
108568
|
"schema": {
|
|
108569
|
+
"additionalProperties": false,
|
|
108286
108570
|
"type": "object",
|
|
108287
108571
|
"required": [
|
|
108288
108572
|
"error"
|
|
108289
108573
|
],
|
|
108290
108574
|
"properties": {
|
|
108575
|
+
"code": {
|
|
108576
|
+
"type": "string"
|
|
108577
|
+
},
|
|
108578
|
+
"error": {
|
|
108579
|
+
"type": "string"
|
|
108580
|
+
}
|
|
108581
|
+
}
|
|
108582
|
+
}
|
|
108583
|
+
}
|
|
108584
|
+
}
|
|
108585
|
+
},
|
|
108586
|
+
"429": {
|
|
108587
|
+
"description": "Too many requests - rate limit exceeded",
|
|
108588
|
+
"content": {
|
|
108589
|
+
"application/json": {
|
|
108590
|
+
"schema": {
|
|
108591
|
+
"additionalProperties": false,
|
|
108592
|
+
"type": "object",
|
|
108593
|
+
"required": [
|
|
108594
|
+
"error"
|
|
108595
|
+
],
|
|
108596
|
+
"properties": {
|
|
108597
|
+
"code": {
|
|
108598
|
+
"type": "string"
|
|
108599
|
+
},
|
|
108291
108600
|
"error": {
|
|
108292
108601
|
"type": "string"
|
|
108293
108602
|
}
|
|
@@ -108415,11 +108724,15 @@
|
|
|
108415
108724
|
"content": {
|
|
108416
108725
|
"application/json": {
|
|
108417
108726
|
"schema": {
|
|
108727
|
+
"additionalProperties": false,
|
|
108418
108728
|
"type": "object",
|
|
108419
108729
|
"required": [
|
|
108420
108730
|
"error"
|
|
108421
108731
|
],
|
|
108422
108732
|
"properties": {
|
|
108733
|
+
"code": {
|
|
108734
|
+
"type": "string"
|
|
108735
|
+
},
|
|
108423
108736
|
"error": {
|
|
108424
108737
|
"type": "string"
|
|
108425
108738
|
}
|
|
@@ -108433,11 +108746,15 @@
|
|
|
108433
108746
|
"content": {
|
|
108434
108747
|
"application/json": {
|
|
108435
108748
|
"schema": {
|
|
108749
|
+
"additionalProperties": false,
|
|
108436
108750
|
"type": "object",
|
|
108437
108751
|
"required": [
|
|
108438
108752
|
"error"
|
|
108439
108753
|
],
|
|
108440
108754
|
"properties": {
|
|
108755
|
+
"code": {
|
|
108756
|
+
"type": "string"
|
|
108757
|
+
},
|
|
108441
108758
|
"error": {
|
|
108442
108759
|
"type": "string"
|
|
108443
108760
|
}
|
|
@@ -108451,11 +108768,37 @@
|
|
|
108451
108768
|
"content": {
|
|
108452
108769
|
"application/json": {
|
|
108453
108770
|
"schema": {
|
|
108771
|
+
"additionalProperties": false,
|
|
108454
108772
|
"type": "object",
|
|
108455
108773
|
"required": [
|
|
108456
108774
|
"error"
|
|
108457
108775
|
],
|
|
108458
108776
|
"properties": {
|
|
108777
|
+
"code": {
|
|
108778
|
+
"type": "string"
|
|
108779
|
+
},
|
|
108780
|
+
"error": {
|
|
108781
|
+
"type": "string"
|
|
108782
|
+
}
|
|
108783
|
+
}
|
|
108784
|
+
}
|
|
108785
|
+
}
|
|
108786
|
+
}
|
|
108787
|
+
},
|
|
108788
|
+
"429": {
|
|
108789
|
+
"description": "Too many requests - rate limit exceeded",
|
|
108790
|
+
"content": {
|
|
108791
|
+
"application/json": {
|
|
108792
|
+
"schema": {
|
|
108793
|
+
"additionalProperties": false,
|
|
108794
|
+
"type": "object",
|
|
108795
|
+
"required": [
|
|
108796
|
+
"error"
|
|
108797
|
+
],
|
|
108798
|
+
"properties": {
|
|
108799
|
+
"code": {
|
|
108800
|
+
"type": "string"
|
|
108801
|
+
},
|
|
108459
108802
|
"error": {
|
|
108460
108803
|
"type": "string"
|
|
108461
108804
|
}
|
|
@@ -108640,11 +108983,15 @@
|
|
|
108640
108983
|
"content": {
|
|
108641
108984
|
"application/json": {
|
|
108642
108985
|
"schema": {
|
|
108986
|
+
"additionalProperties": false,
|
|
108643
108987
|
"type": "object",
|
|
108644
108988
|
"required": [
|
|
108645
108989
|
"error"
|
|
108646
108990
|
],
|
|
108647
108991
|
"properties": {
|
|
108992
|
+
"code": {
|
|
108993
|
+
"type": "string"
|
|
108994
|
+
},
|
|
108648
108995
|
"error": {
|
|
108649
108996
|
"type": "string"
|
|
108650
108997
|
}
|
|
@@ -108658,11 +109005,15 @@
|
|
|
108658
109005
|
"content": {
|
|
108659
109006
|
"application/json": {
|
|
108660
109007
|
"schema": {
|
|
109008
|
+
"additionalProperties": false,
|
|
108661
109009
|
"type": "object",
|
|
108662
109010
|
"required": [
|
|
108663
109011
|
"error"
|
|
108664
109012
|
],
|
|
108665
109013
|
"properties": {
|
|
109014
|
+
"code": {
|
|
109015
|
+
"type": "string"
|
|
109016
|
+
},
|
|
108666
109017
|
"error": {
|
|
108667
109018
|
"type": "string"
|
|
108668
109019
|
}
|
|
@@ -108676,11 +109027,37 @@
|
|
|
108676
109027
|
"content": {
|
|
108677
109028
|
"application/json": {
|
|
108678
109029
|
"schema": {
|
|
109030
|
+
"additionalProperties": false,
|
|
108679
109031
|
"type": "object",
|
|
108680
109032
|
"required": [
|
|
108681
109033
|
"error"
|
|
108682
109034
|
],
|
|
108683
109035
|
"properties": {
|
|
109036
|
+
"code": {
|
|
109037
|
+
"type": "string"
|
|
109038
|
+
},
|
|
109039
|
+
"error": {
|
|
109040
|
+
"type": "string"
|
|
109041
|
+
}
|
|
109042
|
+
}
|
|
109043
|
+
}
|
|
109044
|
+
}
|
|
109045
|
+
}
|
|
109046
|
+
},
|
|
109047
|
+
"429": {
|
|
109048
|
+
"description": "Too many requests - rate limit exceeded",
|
|
109049
|
+
"content": {
|
|
109050
|
+
"application/json": {
|
|
109051
|
+
"schema": {
|
|
109052
|
+
"additionalProperties": false,
|
|
109053
|
+
"type": "object",
|
|
109054
|
+
"required": [
|
|
109055
|
+
"error"
|
|
109056
|
+
],
|
|
109057
|
+
"properties": {
|
|
109058
|
+
"code": {
|
|
109059
|
+
"type": "string"
|
|
109060
|
+
},
|
|
108684
109061
|
"error": {
|
|
108685
109062
|
"type": "string"
|
|
108686
109063
|
}
|
|
@@ -109062,11 +109439,15 @@
|
|
|
109062
109439
|
"content": {
|
|
109063
109440
|
"application/json": {
|
|
109064
109441
|
"schema": {
|
|
109442
|
+
"additionalProperties": false,
|
|
109065
109443
|
"type": "object",
|
|
109066
109444
|
"required": [
|
|
109067
109445
|
"error"
|
|
109068
109446
|
],
|
|
109069
109447
|
"properties": {
|
|
109448
|
+
"code": {
|
|
109449
|
+
"type": "string"
|
|
109450
|
+
},
|
|
109070
109451
|
"error": {
|
|
109071
109452
|
"type": "string"
|
|
109072
109453
|
}
|
|
@@ -109475,6 +109856,31 @@
|
|
|
109475
109856
|
}
|
|
109476
109857
|
}
|
|
109477
109858
|
}
|
|
109859
|
+
},
|
|
109860
|
+
"429": {
|
|
109861
|
+
"description": "Too many requests - rate limit exceeded",
|
|
109862
|
+
"content": {
|
|
109863
|
+
"application/json": {
|
|
109864
|
+
"schema": {
|
|
109865
|
+
"additionalProperties": false,
|
|
109866
|
+
"type": "object",
|
|
109867
|
+
"required": [
|
|
109868
|
+
"error"
|
|
109869
|
+
],
|
|
109870
|
+
"properties": {
|
|
109871
|
+
"code": {
|
|
109872
|
+
"type": "string"
|
|
109873
|
+
},
|
|
109874
|
+
"error": {
|
|
109875
|
+
"type": "string"
|
|
109876
|
+
},
|
|
109877
|
+
"message": {
|
|
109878
|
+
"type": "string"
|
|
109879
|
+
}
|
|
109880
|
+
}
|
|
109881
|
+
}
|
|
109882
|
+
}
|
|
109883
|
+
}
|
|
109478
109884
|
}
|
|
109479
109885
|
}
|
|
109480
109886
|
}
|
|
@@ -111065,6 +111471,31 @@
|
|
|
111065
111471
|
}
|
|
111066
111472
|
}
|
|
111067
111473
|
}
|
|
111474
|
+
},
|
|
111475
|
+
"429": {
|
|
111476
|
+
"description": "Too many requests - rate limit exceeded",
|
|
111477
|
+
"content": {
|
|
111478
|
+
"application/json": {
|
|
111479
|
+
"schema": {
|
|
111480
|
+
"additionalProperties": false,
|
|
111481
|
+
"type": "object",
|
|
111482
|
+
"required": [
|
|
111483
|
+
"error"
|
|
111484
|
+
],
|
|
111485
|
+
"properties": {
|
|
111486
|
+
"code": {
|
|
111487
|
+
"type": "string"
|
|
111488
|
+
},
|
|
111489
|
+
"error": {
|
|
111490
|
+
"type": "string"
|
|
111491
|
+
},
|
|
111492
|
+
"message": {
|
|
111493
|
+
"type": "string"
|
|
111494
|
+
}
|
|
111495
|
+
}
|
|
111496
|
+
}
|
|
111497
|
+
}
|
|
111498
|
+
}
|
|
111068
111499
|
}
|
|
111069
111500
|
}
|
|
111070
111501
|
}
|
|
@@ -117815,6 +118246,31 @@
|
|
|
117815
118246
|
}
|
|
117816
118247
|
}
|
|
117817
118248
|
}
|
|
118249
|
+
},
|
|
118250
|
+
"429": {
|
|
118251
|
+
"description": "Too many requests - rate limit exceeded",
|
|
118252
|
+
"content": {
|
|
118253
|
+
"application/json": {
|
|
118254
|
+
"schema": {
|
|
118255
|
+
"additionalProperties": false,
|
|
118256
|
+
"type": "object",
|
|
118257
|
+
"required": [
|
|
118258
|
+
"error"
|
|
118259
|
+
],
|
|
118260
|
+
"properties": {
|
|
118261
|
+
"code": {
|
|
118262
|
+
"type": "string"
|
|
118263
|
+
},
|
|
118264
|
+
"error": {
|
|
118265
|
+
"type": "string"
|
|
118266
|
+
},
|
|
118267
|
+
"message": {
|
|
118268
|
+
"type": "string"
|
|
118269
|
+
}
|
|
118270
|
+
}
|
|
118271
|
+
}
|
|
118272
|
+
}
|
|
118273
|
+
}
|
|
117818
118274
|
}
|
|
117819
118275
|
}
|
|
117820
118276
|
}
|
|
@@ -119247,6 +119703,31 @@
|
|
|
119247
119703
|
}
|
|
119248
119704
|
}
|
|
119249
119705
|
}
|
|
119706
|
+
},
|
|
119707
|
+
"429": {
|
|
119708
|
+
"description": "Too many requests - rate limit exceeded",
|
|
119709
|
+
"content": {
|
|
119710
|
+
"application/json": {
|
|
119711
|
+
"schema": {
|
|
119712
|
+
"additionalProperties": false,
|
|
119713
|
+
"type": "object",
|
|
119714
|
+
"required": [
|
|
119715
|
+
"error"
|
|
119716
|
+
],
|
|
119717
|
+
"properties": {
|
|
119718
|
+
"code": {
|
|
119719
|
+
"type": "string"
|
|
119720
|
+
},
|
|
119721
|
+
"error": {
|
|
119722
|
+
"type": "string"
|
|
119723
|
+
},
|
|
119724
|
+
"message": {
|
|
119725
|
+
"type": "string"
|
|
119726
|
+
}
|
|
119727
|
+
}
|
|
119728
|
+
}
|
|
119729
|
+
}
|
|
119730
|
+
}
|
|
119250
119731
|
}
|
|
119251
119732
|
}
|
|
119252
119733
|
}
|
|
@@ -142357,7 +142838,7 @@
|
|
|
142357
142838
|
"tags": [
|
|
142358
142839
|
"billing"
|
|
142359
142840
|
],
|
|
142360
|
-
"description": "Redeems an ambassador coupon for a new authenticated signup: comps 3 months of the
|
|
142841
|
+
"description": "Redeems an ambassador coupon for a new authenticated signup: comps the plan and window configured on the coupon (default 3 months of Pro; e.g. the Budapest voucher grants 1 month of Plus), with no Stripe involvement. Existing accounts and accounts that already have a subscription are refused.",
|
|
142361
142842
|
"requestBody": {
|
|
142362
142843
|
"required": true,
|
|
142363
142844
|
"content": {
|
|
@@ -239682,12 +240163,14 @@
|
|
|
239682
240163
|
},
|
|
239683
240164
|
{
|
|
239684
240165
|
"schema": {
|
|
240166
|
+
"minimum": 0,
|
|
240167
|
+
"maximum": 1000000,
|
|
239685
240168
|
"type": "number"
|
|
239686
240169
|
},
|
|
239687
240170
|
"in": "query",
|
|
239688
240171
|
"name": "payout",
|
|
239689
240172
|
"required": true,
|
|
239690
|
-
"description": "The payout amount for the conversion."
|
|
240173
|
+
"description": "The payout amount for the conversion (0 to 1,000,000)."
|
|
239691
240174
|
},
|
|
239692
240175
|
{
|
|
239693
240176
|
"schema": {
|