@wevion/cli 1.0.2629 → 1.0.2663
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 +634 -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
|
}
|
|
@@ -46430,6 +46637,26 @@
|
|
|
46430
46637
|
"additionalProperties": false,
|
|
46431
46638
|
"type": "object",
|
|
46432
46639
|
"properties": {
|
|
46640
|
+
"cardDescription": {
|
|
46641
|
+
"anyOf": [
|
|
46642
|
+
{
|
|
46643
|
+
"type": "string"
|
|
46644
|
+
},
|
|
46645
|
+
{
|
|
46646
|
+
"type": "null"
|
|
46647
|
+
}
|
|
46648
|
+
]
|
|
46649
|
+
},
|
|
46650
|
+
"cardHeadline": {
|
|
46651
|
+
"anyOf": [
|
|
46652
|
+
{
|
|
46653
|
+
"type": "string"
|
|
46654
|
+
},
|
|
46655
|
+
{
|
|
46656
|
+
"type": "null"
|
|
46657
|
+
}
|
|
46658
|
+
]
|
|
46659
|
+
},
|
|
46433
46660
|
"crops": {
|
|
46434
46661
|
"anyOf": [
|
|
46435
46662
|
{
|
|
@@ -46694,6 +46921,26 @@
|
|
|
46694
46921
|
"additionalProperties": false,
|
|
46695
46922
|
"type": "object",
|
|
46696
46923
|
"properties": {
|
|
46924
|
+
"cardDescription": {
|
|
46925
|
+
"anyOf": [
|
|
46926
|
+
{
|
|
46927
|
+
"type": "string"
|
|
46928
|
+
},
|
|
46929
|
+
{
|
|
46930
|
+
"type": "null"
|
|
46931
|
+
}
|
|
46932
|
+
]
|
|
46933
|
+
},
|
|
46934
|
+
"cardHeadline": {
|
|
46935
|
+
"anyOf": [
|
|
46936
|
+
{
|
|
46937
|
+
"type": "string"
|
|
46938
|
+
},
|
|
46939
|
+
{
|
|
46940
|
+
"type": "null"
|
|
46941
|
+
}
|
|
46942
|
+
]
|
|
46943
|
+
},
|
|
46697
46944
|
"crops": {
|
|
46698
46945
|
"anyOf": [
|
|
46699
46946
|
{
|
|
@@ -46960,6 +47207,26 @@
|
|
|
46960
47207
|
"additionalProperties": false,
|
|
46961
47208
|
"type": "object",
|
|
46962
47209
|
"properties": {
|
|
47210
|
+
"cardDescription": {
|
|
47211
|
+
"anyOf": [
|
|
47212
|
+
{
|
|
47213
|
+
"type": "string"
|
|
47214
|
+
},
|
|
47215
|
+
{
|
|
47216
|
+
"type": "null"
|
|
47217
|
+
}
|
|
47218
|
+
]
|
|
47219
|
+
},
|
|
47220
|
+
"cardHeadline": {
|
|
47221
|
+
"anyOf": [
|
|
47222
|
+
{
|
|
47223
|
+
"type": "string"
|
|
47224
|
+
},
|
|
47225
|
+
{
|
|
47226
|
+
"type": "null"
|
|
47227
|
+
}
|
|
47228
|
+
]
|
|
47229
|
+
},
|
|
46963
47230
|
"crops": {
|
|
46964
47231
|
"anyOf": [
|
|
46965
47232
|
{
|
|
@@ -47179,6 +47446,26 @@
|
|
|
47179
47446
|
"additionalProperties": false,
|
|
47180
47447
|
"type": "object",
|
|
47181
47448
|
"properties": {
|
|
47449
|
+
"cardDescription": {
|
|
47450
|
+
"anyOf": [
|
|
47451
|
+
{
|
|
47452
|
+
"type": "string"
|
|
47453
|
+
},
|
|
47454
|
+
{
|
|
47455
|
+
"type": "null"
|
|
47456
|
+
}
|
|
47457
|
+
]
|
|
47458
|
+
},
|
|
47459
|
+
"cardHeadline": {
|
|
47460
|
+
"anyOf": [
|
|
47461
|
+
{
|
|
47462
|
+
"type": "string"
|
|
47463
|
+
},
|
|
47464
|
+
{
|
|
47465
|
+
"type": "null"
|
|
47466
|
+
}
|
|
47467
|
+
]
|
|
47468
|
+
},
|
|
47182
47469
|
"crops": {
|
|
47183
47470
|
"anyOf": [
|
|
47184
47471
|
{
|
|
@@ -47483,6 +47770,26 @@
|
|
|
47483
47770
|
"additionalProperties": false,
|
|
47484
47771
|
"type": "object",
|
|
47485
47772
|
"properties": {
|
|
47773
|
+
"cardDescription": {
|
|
47774
|
+
"anyOf": [
|
|
47775
|
+
{
|
|
47776
|
+
"type": "string"
|
|
47777
|
+
},
|
|
47778
|
+
{
|
|
47779
|
+
"type": "null"
|
|
47780
|
+
}
|
|
47781
|
+
]
|
|
47782
|
+
},
|
|
47783
|
+
"cardHeadline": {
|
|
47784
|
+
"anyOf": [
|
|
47785
|
+
{
|
|
47786
|
+
"type": "string"
|
|
47787
|
+
},
|
|
47788
|
+
{
|
|
47789
|
+
"type": "null"
|
|
47790
|
+
}
|
|
47791
|
+
]
|
|
47792
|
+
},
|
|
47486
47793
|
"crops": {
|
|
47487
47794
|
"anyOf": [
|
|
47488
47795
|
{
|
|
@@ -51028,6 +51335,26 @@
|
|
|
51028
51335
|
"additionalProperties": false,
|
|
51029
51336
|
"type": "object",
|
|
51030
51337
|
"properties": {
|
|
51338
|
+
"cardDescription": {
|
|
51339
|
+
"anyOf": [
|
|
51340
|
+
{
|
|
51341
|
+
"type": "string"
|
|
51342
|
+
},
|
|
51343
|
+
{
|
|
51344
|
+
"type": "null"
|
|
51345
|
+
}
|
|
51346
|
+
]
|
|
51347
|
+
},
|
|
51348
|
+
"cardHeadline": {
|
|
51349
|
+
"anyOf": [
|
|
51350
|
+
{
|
|
51351
|
+
"type": "string"
|
|
51352
|
+
},
|
|
51353
|
+
{
|
|
51354
|
+
"type": "null"
|
|
51355
|
+
}
|
|
51356
|
+
]
|
|
51357
|
+
},
|
|
51031
51358
|
"crops": {
|
|
51032
51359
|
"anyOf": [
|
|
51033
51360
|
{
|
|
@@ -51292,6 +51619,26 @@
|
|
|
51292
51619
|
"additionalProperties": false,
|
|
51293
51620
|
"type": "object",
|
|
51294
51621
|
"properties": {
|
|
51622
|
+
"cardDescription": {
|
|
51623
|
+
"anyOf": [
|
|
51624
|
+
{
|
|
51625
|
+
"type": "string"
|
|
51626
|
+
},
|
|
51627
|
+
{
|
|
51628
|
+
"type": "null"
|
|
51629
|
+
}
|
|
51630
|
+
]
|
|
51631
|
+
},
|
|
51632
|
+
"cardHeadline": {
|
|
51633
|
+
"anyOf": [
|
|
51634
|
+
{
|
|
51635
|
+
"type": "string"
|
|
51636
|
+
},
|
|
51637
|
+
{
|
|
51638
|
+
"type": "null"
|
|
51639
|
+
}
|
|
51640
|
+
]
|
|
51641
|
+
},
|
|
51295
51642
|
"crops": {
|
|
51296
51643
|
"anyOf": [
|
|
51297
51644
|
{
|
|
@@ -51558,6 +51905,26 @@
|
|
|
51558
51905
|
"additionalProperties": false,
|
|
51559
51906
|
"type": "object",
|
|
51560
51907
|
"properties": {
|
|
51908
|
+
"cardDescription": {
|
|
51909
|
+
"anyOf": [
|
|
51910
|
+
{
|
|
51911
|
+
"type": "string"
|
|
51912
|
+
},
|
|
51913
|
+
{
|
|
51914
|
+
"type": "null"
|
|
51915
|
+
}
|
|
51916
|
+
]
|
|
51917
|
+
},
|
|
51918
|
+
"cardHeadline": {
|
|
51919
|
+
"anyOf": [
|
|
51920
|
+
{
|
|
51921
|
+
"type": "string"
|
|
51922
|
+
},
|
|
51923
|
+
{
|
|
51924
|
+
"type": "null"
|
|
51925
|
+
}
|
|
51926
|
+
]
|
|
51927
|
+
},
|
|
51561
51928
|
"crops": {
|
|
51562
51929
|
"anyOf": [
|
|
51563
51930
|
{
|
|
@@ -51777,6 +52144,26 @@
|
|
|
51777
52144
|
"additionalProperties": false,
|
|
51778
52145
|
"type": "object",
|
|
51779
52146
|
"properties": {
|
|
52147
|
+
"cardDescription": {
|
|
52148
|
+
"anyOf": [
|
|
52149
|
+
{
|
|
52150
|
+
"type": "string"
|
|
52151
|
+
},
|
|
52152
|
+
{
|
|
52153
|
+
"type": "null"
|
|
52154
|
+
}
|
|
52155
|
+
]
|
|
52156
|
+
},
|
|
52157
|
+
"cardHeadline": {
|
|
52158
|
+
"anyOf": [
|
|
52159
|
+
{
|
|
52160
|
+
"type": "string"
|
|
52161
|
+
},
|
|
52162
|
+
{
|
|
52163
|
+
"type": "null"
|
|
52164
|
+
}
|
|
52165
|
+
]
|
|
52166
|
+
},
|
|
51780
52167
|
"crops": {
|
|
51781
52168
|
"anyOf": [
|
|
51782
52169
|
{
|
|
@@ -52081,6 +52468,26 @@
|
|
|
52081
52468
|
"additionalProperties": false,
|
|
52082
52469
|
"type": "object",
|
|
52083
52470
|
"properties": {
|
|
52471
|
+
"cardDescription": {
|
|
52472
|
+
"anyOf": [
|
|
52473
|
+
{
|
|
52474
|
+
"type": "string"
|
|
52475
|
+
},
|
|
52476
|
+
{
|
|
52477
|
+
"type": "null"
|
|
52478
|
+
}
|
|
52479
|
+
]
|
|
52480
|
+
},
|
|
52481
|
+
"cardHeadline": {
|
|
52482
|
+
"anyOf": [
|
|
52483
|
+
{
|
|
52484
|
+
"type": "string"
|
|
52485
|
+
},
|
|
52486
|
+
{
|
|
52487
|
+
"type": "null"
|
|
52488
|
+
}
|
|
52489
|
+
]
|
|
52490
|
+
},
|
|
52084
52491
|
"crops": {
|
|
52085
52492
|
"anyOf": [
|
|
52086
52493
|
{
|
|
@@ -55527,6 +55934,26 @@
|
|
|
55527
55934
|
"additionalProperties": false,
|
|
55528
55935
|
"type": "object",
|
|
55529
55936
|
"properties": {
|
|
55937
|
+
"cardDescription": {
|
|
55938
|
+
"anyOf": [
|
|
55939
|
+
{
|
|
55940
|
+
"type": "string"
|
|
55941
|
+
},
|
|
55942
|
+
{
|
|
55943
|
+
"type": "null"
|
|
55944
|
+
}
|
|
55945
|
+
]
|
|
55946
|
+
},
|
|
55947
|
+
"cardHeadline": {
|
|
55948
|
+
"anyOf": [
|
|
55949
|
+
{
|
|
55950
|
+
"type": "string"
|
|
55951
|
+
},
|
|
55952
|
+
{
|
|
55953
|
+
"type": "null"
|
|
55954
|
+
}
|
|
55955
|
+
]
|
|
55956
|
+
},
|
|
55530
55957
|
"crops": {
|
|
55531
55958
|
"anyOf": [
|
|
55532
55959
|
{
|
|
@@ -55791,6 +56218,26 @@
|
|
|
55791
56218
|
"additionalProperties": false,
|
|
55792
56219
|
"type": "object",
|
|
55793
56220
|
"properties": {
|
|
56221
|
+
"cardDescription": {
|
|
56222
|
+
"anyOf": [
|
|
56223
|
+
{
|
|
56224
|
+
"type": "string"
|
|
56225
|
+
},
|
|
56226
|
+
{
|
|
56227
|
+
"type": "null"
|
|
56228
|
+
}
|
|
56229
|
+
]
|
|
56230
|
+
},
|
|
56231
|
+
"cardHeadline": {
|
|
56232
|
+
"anyOf": [
|
|
56233
|
+
{
|
|
56234
|
+
"type": "string"
|
|
56235
|
+
},
|
|
56236
|
+
{
|
|
56237
|
+
"type": "null"
|
|
56238
|
+
}
|
|
56239
|
+
]
|
|
56240
|
+
},
|
|
55794
56241
|
"crops": {
|
|
55795
56242
|
"anyOf": [
|
|
55796
56243
|
{
|
|
@@ -56057,6 +56504,26 @@
|
|
|
56057
56504
|
"additionalProperties": false,
|
|
56058
56505
|
"type": "object",
|
|
56059
56506
|
"properties": {
|
|
56507
|
+
"cardDescription": {
|
|
56508
|
+
"anyOf": [
|
|
56509
|
+
{
|
|
56510
|
+
"type": "string"
|
|
56511
|
+
},
|
|
56512
|
+
{
|
|
56513
|
+
"type": "null"
|
|
56514
|
+
}
|
|
56515
|
+
]
|
|
56516
|
+
},
|
|
56517
|
+
"cardHeadline": {
|
|
56518
|
+
"anyOf": [
|
|
56519
|
+
{
|
|
56520
|
+
"type": "string"
|
|
56521
|
+
},
|
|
56522
|
+
{
|
|
56523
|
+
"type": "null"
|
|
56524
|
+
}
|
|
56525
|
+
]
|
|
56526
|
+
},
|
|
56060
56527
|
"crops": {
|
|
56061
56528
|
"anyOf": [
|
|
56062
56529
|
{
|
|
@@ -56276,6 +56743,26 @@
|
|
|
56276
56743
|
"additionalProperties": false,
|
|
56277
56744
|
"type": "object",
|
|
56278
56745
|
"properties": {
|
|
56746
|
+
"cardDescription": {
|
|
56747
|
+
"anyOf": [
|
|
56748
|
+
{
|
|
56749
|
+
"type": "string"
|
|
56750
|
+
},
|
|
56751
|
+
{
|
|
56752
|
+
"type": "null"
|
|
56753
|
+
}
|
|
56754
|
+
]
|
|
56755
|
+
},
|
|
56756
|
+
"cardHeadline": {
|
|
56757
|
+
"anyOf": [
|
|
56758
|
+
{
|
|
56759
|
+
"type": "string"
|
|
56760
|
+
},
|
|
56761
|
+
{
|
|
56762
|
+
"type": "null"
|
|
56763
|
+
}
|
|
56764
|
+
]
|
|
56765
|
+
},
|
|
56279
56766
|
"crops": {
|
|
56280
56767
|
"anyOf": [
|
|
56281
56768
|
{
|
|
@@ -56580,6 +57067,26 @@
|
|
|
56580
57067
|
"additionalProperties": false,
|
|
56581
57068
|
"type": "object",
|
|
56582
57069
|
"properties": {
|
|
57070
|
+
"cardDescription": {
|
|
57071
|
+
"anyOf": [
|
|
57072
|
+
{
|
|
57073
|
+
"type": "string"
|
|
57074
|
+
},
|
|
57075
|
+
{
|
|
57076
|
+
"type": "null"
|
|
57077
|
+
}
|
|
57078
|
+
]
|
|
57079
|
+
},
|
|
57080
|
+
"cardHeadline": {
|
|
57081
|
+
"anyOf": [
|
|
57082
|
+
{
|
|
57083
|
+
"type": "string"
|
|
57084
|
+
},
|
|
57085
|
+
{
|
|
57086
|
+
"type": "null"
|
|
57087
|
+
}
|
|
57088
|
+
]
|
|
57089
|
+
},
|
|
56583
57090
|
"crops": {
|
|
56584
57091
|
"anyOf": [
|
|
56585
57092
|
{
|
|
@@ -63711,6 +64218,26 @@
|
|
|
63711
64218
|
"additionalProperties": false,
|
|
63712
64219
|
"type": "object",
|
|
63713
64220
|
"properties": {
|
|
64221
|
+
"cardDescription": {
|
|
64222
|
+
"anyOf": [
|
|
64223
|
+
{
|
|
64224
|
+
"type": "string"
|
|
64225
|
+
},
|
|
64226
|
+
{
|
|
64227
|
+
"type": "null"
|
|
64228
|
+
}
|
|
64229
|
+
]
|
|
64230
|
+
},
|
|
64231
|
+
"cardHeadline": {
|
|
64232
|
+
"anyOf": [
|
|
64233
|
+
{
|
|
64234
|
+
"type": "string"
|
|
64235
|
+
},
|
|
64236
|
+
{
|
|
64237
|
+
"type": "null"
|
|
64238
|
+
}
|
|
64239
|
+
]
|
|
64240
|
+
},
|
|
63714
64241
|
"crops": {
|
|
63715
64242
|
"anyOf": [
|
|
63716
64243
|
{
|
|
@@ -63975,6 +64502,26 @@
|
|
|
63975
64502
|
"additionalProperties": false,
|
|
63976
64503
|
"type": "object",
|
|
63977
64504
|
"properties": {
|
|
64505
|
+
"cardDescription": {
|
|
64506
|
+
"anyOf": [
|
|
64507
|
+
{
|
|
64508
|
+
"type": "string"
|
|
64509
|
+
},
|
|
64510
|
+
{
|
|
64511
|
+
"type": "null"
|
|
64512
|
+
}
|
|
64513
|
+
]
|
|
64514
|
+
},
|
|
64515
|
+
"cardHeadline": {
|
|
64516
|
+
"anyOf": [
|
|
64517
|
+
{
|
|
64518
|
+
"type": "string"
|
|
64519
|
+
},
|
|
64520
|
+
{
|
|
64521
|
+
"type": "null"
|
|
64522
|
+
}
|
|
64523
|
+
]
|
|
64524
|
+
},
|
|
63978
64525
|
"crops": {
|
|
63979
64526
|
"anyOf": [
|
|
63980
64527
|
{
|
|
@@ -64241,6 +64788,26 @@
|
|
|
64241
64788
|
"additionalProperties": false,
|
|
64242
64789
|
"type": "object",
|
|
64243
64790
|
"properties": {
|
|
64791
|
+
"cardDescription": {
|
|
64792
|
+
"anyOf": [
|
|
64793
|
+
{
|
|
64794
|
+
"type": "string"
|
|
64795
|
+
},
|
|
64796
|
+
{
|
|
64797
|
+
"type": "null"
|
|
64798
|
+
}
|
|
64799
|
+
]
|
|
64800
|
+
},
|
|
64801
|
+
"cardHeadline": {
|
|
64802
|
+
"anyOf": [
|
|
64803
|
+
{
|
|
64804
|
+
"type": "string"
|
|
64805
|
+
},
|
|
64806
|
+
{
|
|
64807
|
+
"type": "null"
|
|
64808
|
+
}
|
|
64809
|
+
]
|
|
64810
|
+
},
|
|
64244
64811
|
"crops": {
|
|
64245
64812
|
"anyOf": [
|
|
64246
64813
|
{
|
|
@@ -64460,6 +65027,26 @@
|
|
|
64460
65027
|
"additionalProperties": false,
|
|
64461
65028
|
"type": "object",
|
|
64462
65029
|
"properties": {
|
|
65030
|
+
"cardDescription": {
|
|
65031
|
+
"anyOf": [
|
|
65032
|
+
{
|
|
65033
|
+
"type": "string"
|
|
65034
|
+
},
|
|
65035
|
+
{
|
|
65036
|
+
"type": "null"
|
|
65037
|
+
}
|
|
65038
|
+
]
|
|
65039
|
+
},
|
|
65040
|
+
"cardHeadline": {
|
|
65041
|
+
"anyOf": [
|
|
65042
|
+
{
|
|
65043
|
+
"type": "string"
|
|
65044
|
+
},
|
|
65045
|
+
{
|
|
65046
|
+
"type": "null"
|
|
65047
|
+
}
|
|
65048
|
+
]
|
|
65049
|
+
},
|
|
64463
65050
|
"crops": {
|
|
64464
65051
|
"anyOf": [
|
|
64465
65052
|
{
|
|
@@ -64764,6 +65351,26 @@
|
|
|
64764
65351
|
"additionalProperties": false,
|
|
64765
65352
|
"type": "object",
|
|
64766
65353
|
"properties": {
|
|
65354
|
+
"cardDescription": {
|
|
65355
|
+
"anyOf": [
|
|
65356
|
+
{
|
|
65357
|
+
"type": "string"
|
|
65358
|
+
},
|
|
65359
|
+
{
|
|
65360
|
+
"type": "null"
|
|
65361
|
+
}
|
|
65362
|
+
]
|
|
65363
|
+
},
|
|
65364
|
+
"cardHeadline": {
|
|
65365
|
+
"anyOf": [
|
|
65366
|
+
{
|
|
65367
|
+
"type": "string"
|
|
65368
|
+
},
|
|
65369
|
+
{
|
|
65370
|
+
"type": "null"
|
|
65371
|
+
}
|
|
65372
|
+
]
|
|
65373
|
+
},
|
|
64767
65374
|
"crops": {
|
|
64768
65375
|
"anyOf": [
|
|
64769
65376
|
{
|
|
@@ -86901,7 +87508,7 @@
|
|
|
86901
87508
|
"tags": [
|
|
86902
87509
|
"ai-chat"
|
|
86903
87510
|
],
|
|
86904
|
-
"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.",
|
|
86905
87512
|
"security": [
|
|
86906
87513
|
{
|
|
86907
87514
|
"bearerAuth": []
|
|
@@ -102791,6 +103398,28 @@
|
|
|
102791
103398
|
}
|
|
102792
103399
|
}
|
|
102793
103400
|
},
|
|
103401
|
+
"400": {
|
|
103402
|
+
"description": "Invalid request - schema validation failed",
|
|
103403
|
+
"content": {
|
|
103404
|
+
"application/json": {
|
|
103405
|
+
"schema": {
|
|
103406
|
+
"additionalProperties": false,
|
|
103407
|
+
"type": "object",
|
|
103408
|
+
"required": [
|
|
103409
|
+
"error"
|
|
103410
|
+
],
|
|
103411
|
+
"properties": {
|
|
103412
|
+
"error": {
|
|
103413
|
+
"type": "string"
|
|
103414
|
+
},
|
|
103415
|
+
"message": {
|
|
103416
|
+
"type": "string"
|
|
103417
|
+
}
|
|
103418
|
+
}
|
|
103419
|
+
}
|
|
103420
|
+
}
|
|
103421
|
+
}
|
|
103422
|
+
},
|
|
102794
103423
|
"401": {
|
|
102795
103424
|
"description": "Unauthorized - missing or invalid bearer token",
|
|
102796
103425
|
"content": {
|
|
@@ -141935,7 +142564,7 @@
|
|
|
141935
142564
|
"tags": [
|
|
141936
142565
|
"billing"
|
|
141937
142566
|
],
|
|
141938
|
-
"description": "Redeems an ambassador coupon for a new authenticated signup: comps 3 months of the
|
|
142567
|
+
"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.",
|
|
141939
142568
|
"requestBody": {
|
|
141940
142569
|
"required": true,
|
|
141941
142570
|
"content": {
|
|
@@ -239260,12 +239889,14 @@
|
|
|
239260
239889
|
},
|
|
239261
239890
|
{
|
|
239262
239891
|
"schema": {
|
|
239892
|
+
"minimum": 0,
|
|
239893
|
+
"maximum": 1000000,
|
|
239263
239894
|
"type": "number"
|
|
239264
239895
|
},
|
|
239265
239896
|
"in": "query",
|
|
239266
239897
|
"name": "payout",
|
|
239267
239898
|
"required": true,
|
|
239268
|
-
"description": "The payout amount for the conversion."
|
|
239899
|
+
"description": "The payout amount for the conversion (0 to 1,000,000)."
|
|
239269
239900
|
},
|
|
239270
239901
|
{
|
|
239271
239902
|
"schema": {
|