Skip to content
Closed
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
74 changes: 68 additions & 6 deletions docs/reference/sdks/node.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -1822,16 +1822,19 @@ const { data } = await nango.createConnectSession({
<ResponseField name="display_name" type="string">
The display name of the end user.
</ResponseField>
<ResponseField name="tags" type="object">
Tags associated with the end user. Only accepts string values, up to 64 keys.
</ResponseField>
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[Documentation]

Grammar: Replace the fragment "Only accepts string values, up to 64 keys." with "Accepts only string values, up to 64 keys."

Context for Agents
[**Documentation**]

Grammar: Replace the fragment "Only accepts string values, up to 64 keys." with "Accepts only string values, up to 64 keys."

File: docs/reference/sdks/node.mdx
Line: 1827

</Expandable>
</ResponseField>

<ResponseField name="organization" type="object">
<Expandable title="organization" defaultOpen>
<ResponseField name="id" type="string" required>
The unique identifier for the organization.
The unique identifier for the organization. (Deprecated)
</ResponseField>
<ResponseField name="display_name" type="string">
The display name of the organization.
The display name of the organization. (Deprecated)
</ResponseField>
</Expandable>
</ResponseField>
Expand All @@ -1841,7 +1844,35 @@ const { data } = await nango.createConnectSession({
</ResponseField>

<ResponseField name="integrations_config_defaults" type="object">
Default configuration for specific integrations.
<Expandable title="integrations_config_defaults" defaultOpen>
Default configuration for specific integrations. Keyed by integration ID.

<ResponseField name="user_scopes" type="string">
For Slack only.
</ResponseField>

<ResponseField name="authorization_params" type="object">
Query params passed to the OAuth flow (for OAuth2 only).
</ResponseField>

<ResponseField name="connection_config" type="object">
<Expandable title="connection_config">
<ResponseField name="oauth_scopes_override" type="string[]">
Override OAuth scopes for this integration.
</ResponseField>
</Expandable>
</ResponseField>
</Expandable>
</ResponseField>

<ResponseField name="overrides" type="object">
<Expandable title="overrides" defaultOpen>
Override configuration for specific integrations. Keyed by integration ID.

<ResponseField name="docs_connect" type="string">
Override the URL of the docs we point to in the connect flow.
</ResponseField>
</Expandable>
</ResponseField>
</Expandable>

Expand Down Expand Up @@ -1912,22 +1943,53 @@ const { data } = await nango.createReconnectSession({
<ResponseField name="display_name" type="string">
The display name of the end user.
</ResponseField>
<ResponseField name="tags" type="object">
Tags associated with the end user. Only accepts string values, up to 64 keys.
</ResponseField>
</Expandable>
</ResponseField>

<ResponseField name="organization" type="object">
<Expandable title="organization">
<ResponseField name="id" type="string" required>
The unique identifier for the organization.
The unique identifier for the organization. (Deprecated)
</ResponseField>
<ResponseField name="display_name" type="string">
The display name of the organization.
The display name of the organization. (Deprecated)
</ResponseField>
</Expandable>
</ResponseField>

<ResponseField name="integrations_config_defaults" type="object">
Default configuration for specific integrations.
<Expandable title="integrations_config_defaults" defaultOpen>
Default configuration for specific integrations. Keyed by integration ID.

<ResponseField name="user_scopes" type="string">
For Slack only.
</ResponseField>

<ResponseField name="authorization_params" type="object">
Query params passed to the OAuth flow (for OAuth2 only).
</ResponseField>

<ResponseField name="connection_config" type="object">
<Expandable title="connection_config">
<ResponseField name="oauth_scopes_override" type="string[]">
Override OAuth scopes for this integration.
</ResponseField>
</Expandable>
</ResponseField>
</Expandable>
</ResponseField>

<ResponseField name="overrides" type="object">
<Expandable title="overrides" defaultOpen>
Override configuration for specific integrations. Keyed by integration ID.

<ResponseField name="docs_connect" type="string">
Override the URL of the docs we point to in the connect flow.
</ResponseField>
</Expandable>
</ResponseField>
</Expandable>

Expand Down
Loading