Skip to content

Commit 7688a01

Browse files
Update api spec (#321)
* YOYO NEW API SPEC! * Generated new lib * 2.0.31 --------- Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent 5324485 commit 7688a01

File tree

3 files changed

+8
-1
lines changed

3 files changed

+8
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@kittycad/lib",
3-
"version": "2.0.30",
3+
"version": "2.0.31",
44
"description": "Javascript library for KittyCAD API",
55
"type": "module",
66
"keywords": [

spec.json

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27693,6 +27693,11 @@
2769327693
"description": "Value used for [CSRF](https://tools.ietf.org/html/rfc6749#section-10.12) protection via the `state` parameter.",
2769427694
"type": "string"
2769527695
},
27696+
"oidc_nonce": {
27697+
"nullable": true,
27698+
"description": "Nonce required for OIDC flows.",
27699+
"type": "string"
27700+
},
2769627701
"pkce_code_verifier": {
2769727702
"nullable": true,
2769827703
"description": "Code Verifier used for [PKCE]((https://tools.ietf.org/html/rfc7636)) protection via the `code_verifier` parameter. The value must have a minimum length of 43 characters and a maximum length of 128 characters. Each character must be ASCII alphanumeric or one of the characters \"-\" / \".\" / \"_\" / \"~\".",

src/models.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3529,6 +3529,8 @@ export interface NewAnnotation_type {} /* Empty object */
35293529

35303530
export interface OAuth2ClientInfo_type {
35313531
csrf_token: string /* Value used for [CSRF](https://tools.ietf.org/html/rfc6749#section-10.12) protection via the `state` parameter. */;
3532+
/* nullable:true, description:Nonce required for OIDC flows. */
3533+
oidc_nonce?: string;
35323534
/*{
35333535
"nullable": true,
35343536
"description": "Code Verifier used for [PKCE]((https://tools.ietf.org/html/rfc7636)) protection via the `code_verifier` parameter. The value must have a minimum length of 43 characters and a maximum length of 128 characters. Each character must be ASCII alphanumeric or one of the characters \"-\" / \".\" / \"_\" / \"~\"."

0 commit comments

Comments
 (0)