Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .last-synced-sha
Original file line number Diff line number Diff line change
@@ -1 +1 @@
a10d9ecb766d2dd996aecb19aa9c801d78bb7c26
13aaa9a125fc87d1ed23acd5ef740382510296be
34 changes: 17 additions & 17 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,14 @@
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.8.0",
"@workos/oagen": "^0.19.0",
"@workos/oagen-emitters": "^0.12.2",
"@types/node": "^25.9.0",
"@workos/oagen": "^0.19.1",
"@workos/oagen-emitters": "^0.12.3",
"diff2html": "^3.4.56",
"husky": "^9.1.7",
"js-yaml": "^4.1.1",
"openapi-to-postmanv2": "^6.0.1",
"tsx": "^4.22.0",
"tsx": "^4.22.2",
"typescript": "^6.0.3"
},
"dependencies": {
Expand Down
65 changes: 56 additions & 9 deletions spec/open-api-spec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1635,6 +1635,27 @@ paths:
`after` fetches newer records). Defaults to descending.
schema:
$ref: '#/components/schemas/PaginationOrder'
- name: resource_id
required: false
in: query
description: Filter assignments by the ID of the resource.
schema:
example: authz_resource_01HXYZ123456789ABCDEFGH
type: string
- name: resource_external_id
required: false
in: query
description: Filter assignments by the external ID of the resource.
schema:
example: project-ext-456
type: string
- name: resource_type_slug
required: false
in: query
description: Filter assignments by the slug of the resource type.
schema:
example: project
type: string
responses:
'200':
description: OK
Expand Down Expand Up @@ -3474,6 +3495,13 @@ paths:
`after` fetches newer records). Defaults to descending.
schema:
$ref: '#/components/schemas/PaginationOrder'
- name: role_slug
required: false
in: query
description: Filter assignments by the slug of the role.
schema:
example: editor
type: string
responses:
'200':
description: OK
Expand Down Expand Up @@ -3984,13 +4012,6 @@ paths:
schema:
type: string
example: ext-workspace-123
- name: search
required: false
in: query
description: Search resources by name.
schema:
type: string
example: Website Redesign
responses:
'200':
description: OK
Expand Down Expand Up @@ -4778,6 +4799,13 @@ paths:
`after` fetches newer records). Defaults to descending.
schema:
$ref: '#/components/schemas/PaginationOrder'
- name: role_slug
required: false
in: query
description: Filter assignments by the slug of the role.
schema:
example: editor
type: string
responses:
'200':
description: OK
Expand Down Expand Up @@ -8963,6 +8991,25 @@ paths:
application/json:
schema:
$ref: '#/components/schemas/Group'
'400':
description: Bad Request
content:
application/json:
schema:
type: object
properties:
code:
type: string
description: The error code identifying the type of error.
example: group_membership_limit_exceeded
const: group_membership_limit_exceeded
message:
type: string
description: A human-readable description of the error.
example: Request could not be processed.
required:
- code
- message
'403':
description: Forbidden
content:
Expand Down Expand Up @@ -9708,8 +9755,8 @@ paths:
description: >-
Can be used to pre-fill the username/email address field of the IdP
sign-in page for the user, if you know their username ahead of time.
Currently supported for OAuth, OpenID Connect, Okta, and Entra ID
connections.
Currently supported for OAuth, OpenID Connect, Okta, Entra ID, and
custom SAML connections.
- name: nonce
required: false
in: query
Expand Down
Loading