You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The algorithms we support at the moment are [`bcrypt`](https://en.wikipedia.org/wiki/Bcrypt), [`bcrypt_sha256_django`](https://docs.djangoproject.com/en/4.0/topics/auth/passwords/), [`md5`](https://en.wikipedia.org/wiki/MD5), `pbkdf2_sha1`, `pbkdf2_sha256`, [`pbkdf2_sha256_django`](https://docs.djangoproject.com/en/4.0/topics/auth/passwords/),
[`ldap_ssha`](https://www.openldap.org/faq/data/cache/347.html) and the [`argon2`](https://argon2.online/) variants: `argon2i` and `argon2id`.
11382
+
[`ldap_ssha`](https://www.openldap.org/faq/data/cache/347.html), the [`argon2`](https://argon2.online/) variants: `argon2i` and `argon2id`, and `sha512_symfony`, the SHA-512 variant of the [Symfony](https://symfony.com/doc/current/security/passwords.html) legacy hasher.
11341
11383
11342
11384
Each of the supported hashers expects the incoming digest to be in a particular format. See the [Clerk docs](https://clerk.com/docs/references/backend/user/create-user) for more information.
11343
11385
TotalCount:
@@ -13431,6 +13473,141 @@ components:
13431
13473
RFC3339 timestamp to extend the free trial to.
13432
13474
Must be in the future and not more than 365 days from now.
13433
13475
example: '2026-01-08T00:00:00Z'
13476
+
PriceTransitionRequest:
13477
+
type: object
13478
+
additionalProperties: false
13479
+
required:
13480
+
- from_price_id
13481
+
- to_price_id
13482
+
properties:
13483
+
from_price_id:
13484
+
type: string
13485
+
description: The current price ID of the subscription item.
13486
+
to_price_id:
13487
+
type: string
13488
+
description: The target price ID to transition to.
13489
+
CommercePriceResponse:
13490
+
type: object
13491
+
additionalProperties: false
13492
+
required:
13493
+
- object
13494
+
- id
13495
+
- plan_id
13496
+
- instance_id
13497
+
- currency
13498
+
- currency_symbol
13499
+
- amount
13500
+
- annual_monthly_amount
13501
+
- fee
13502
+
- annual_monthly_fee
13503
+
- created_at
13504
+
properties:
13505
+
object:
13506
+
type: string
13507
+
description: String representing the object's type. Objects of the same type share the same value.
13508
+
enum:
13509
+
- commerce_price
13510
+
id:
13511
+
type: string
13512
+
description: Unique identifier for the price.
13513
+
plan_id:
13514
+
type: string
13515
+
description: Unique identifier for the associated plan.
13516
+
instance_id:
13517
+
type: string
13518
+
description: Unique identifier for the instance.
13519
+
currency:
13520
+
type: string
13521
+
description: The currency code (e.g., "USD").
13522
+
currency_symbol:
13523
+
type: string
13524
+
description: The currency symbol (e.g., "$").
13525
+
amount:
13526
+
type: integer
13527
+
format: int64
13528
+
description: The amount in cents for the price.
13529
+
annual_monthly_amount:
13530
+
type: integer
13531
+
format: int64
13532
+
description: The monthly amount in cents when billed annually.
0 commit comments