Feat: Added support for Actions Modules API, Connection OTP Authentication and Custom Domain Passkey rpId #1292
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Changes
Added support for the following new and modified endpoints:
Actions Modules API
client.actions.modules.list()client.actions.modules.get()client.actions.modules.create()client.actions.modules.update()client.actions.modules.delete()client.actions.modules.rollback()client.actions.modules.listActions()client.actions.modules.versions.list()client.actions.modules.versions.create()client.actions.modules.versions.get()modulesresponse propertymodulesresponse propertymodulesrequest/response propertymodulesrequest/response propertymodulesresponse propertymodulesresponse propertymodulesresponse propertymodulesresponse propertyConnection OTP Authentication Methods
email_otp,phone_otpauthentication methods anddefault_methodidentifieremail_otp,phone_otpauthentication methods anddefault_methodidentifieremail_otp,phone_otpauthentication methods anddefault_methodidentifieremail_otp,phone_otpauthentication methods anddefault_methodidentifierDirectory Provisioning API
client.connections.directoryProvisioning.list()client.connections.directoryProvisioning.get()client.connections.directoryProvisioning.create()client.connections.directoryProvisioning.update()client.connections.directoryProvisioning.delete()client.connections.directoryProvisioning.getDefaultMapping()Self-Service Google Workspace Sync
provisioning_config.google_workspace.sync_userspropertyNew Properties
Actions Modules API Response Properties
•
id- Unique module identifier•
name- Module name•
code- Draft version source code•
dependencies- NPM dependencies array•
secrets- Secret names (values never returned)•
bound_actions_total/actions_using_module_total- Count of deployed actions using this module•
all_changes_published- Whether draft matches latest published version•
latest_version_number- Most recent version number•
created_at- Module creation timestamp•
updated_at- Last modification timestampAction Module Reference Properties (on actions)
•
module_id(string) - Unique ID of the module•
module_name(string) - Name of the module•
module_version_id(string) - Unique ID of the module version•
module_version_number(number) - Version number of the moduleConnection OTP Authentication Properties
•
options.authentication_methods.email_otp.enabled(boolean) - Enable email OTP authentication•
options.authentication_methods.phone_otp.enabled(boolean) - Enable phone OTP authentication•
options.attributes.email.identifier.default_method(enum:password|email_otp) - Default auth method for email•
options.attributes.phone_number.identifier.default_method(enum:password|phone_otp) - Default auth method for phone•
options.attributes.username.identifier.default_method(enum:password) - Default auth method for usernameSelf-Service Google Workspace Sync Properties
•
provisioning_config.google_workspace.sync_users(boolean) - Toggles syncing users from Google Workspace Directory to Auth0Required Scopes
•
read:actions- For Actions Modules read endpoints•
create:actions- For Actions Modules create endpoints•
update:actions- For Actions Modules update/rollback/version endpoints•
delete:actions- For Actions Modules delete endpoint•
read:directory_provisionings- For Directory Provisioning read endpoints•
create:directory_provisionings- For Directory Provisioning create endpoint•
update:directory_provisionings- For Directory Provisioning update endpoint•
delete:directory_provisionings- For Directory Provisioning delete endpointManual Testing Snippet