We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Expected types (as an example):
interface InlineHook { channel: InlineHookChannelObject; created: Date; id: string; lastUpdated: Date; name: string; status: InlineHookStatus; type: InlineHookType; version: string; _links?: Record<string, any>; ... } interface InlineHookChannelObject { type: 'HTTP' | 'OAUTH'; version: string; config: InlineHookHTTPConfig | InlineHookOAuthConfig; } interface InlineHookHTTPConfig { uri: string; headers?: Record<string, string>; authScheme: InlineHookAuthScheme } interface InlineHookOAuthConfig { uri: string; headers?: Record<string, string>; method: 'POST'; authType: 'client_secret_post' | 'private_key_jwt'; } interface InlineHookAuthScheme { type: string; key: string; value: string; }
Actual types:
export declare class InlineHook { 'channel'?: InlineHookChannel; 'created'?: Date; 'id'?: string; 'lastUpdated'?: Date; 'name'?: string; 'status'?: InlineHookStatus; 'type'?: InlineHookType; 'version'?: string; '_links'?: { [key: string]: any; }; ... }; export declare class InlineHookChannel { 'type'?: InlineHookChannelType; 'version'?: string; ... }
use the client.inlineHookApi.xxxInlineHook() method(s).
client.inlineHookApi.xxxInlineHook()
7.0.1
No response
The text was updated successfully, but these errors were encountered:
Also...
Expected:
export declare type InlineHookType = 'com.okta.import.transform' | 'com.okta.oauth2.tokens.transform' | 'com.okta.saml.tokens.transform' | 'com.okta.user.credential.password.import' | 'com.okta.user.pre-registration' |'com.okta.telephony.provider';
Actual:
export declare type InlineHookType = 'com.okta.import.transform' | 'com.okta.oauth2.tokens.transform' | 'com.okta.saml.tokens.transform' | 'com.okta.user.credential.password.import' | 'com.okta.user.pre-registration';
Sorry, something went wrong.
No branches or pull requests
Describe the bug
Expected types (as an example):
Actual types:
Reproduction Steps?
use the
client.inlineHookApi.xxxInlineHook()
method(s).SDK Versions
7.0.1
Additional Information
No response
The text was updated successfully, but these errors were encountered: