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 .fern/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,5 @@
"testFramework": "jest",
"enableForwardCompatibleEnums": true
},
"sdkVersion": "4.0.0"
"sdkVersion": "4.0.1"
}
4 changes: 2 additions & 2 deletions src/BaseClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@ export function normalizeClientOptions<T extends BaseClientOptions = BaseClientO
{
"X-Fern-Language": "JavaScript",
"X-Fern-SDK-Name": "@mergeapi/merge-node-client",
"X-Fern-SDK-Version": "4.0.0",
"User-Agent": "@mergeapi/merge-node-client/4.0.0",
"X-Fern-SDK-Version": "4.0.1",
"User-Agent": "@mergeapi/merge-node-client/4.0.1",
"X-Fern-Runtime": core.RUNTIME.type,
"X-Fern-Runtime-Version": core.RUNTIME.version,
"X-Account-Token": options?.accountToken,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,6 @@ export interface EndUserDetailsRequest {
areSyncsDisabled?: boolean;
/** A JSON object containing integration-specific configuration options. */
integrationSpecificConfig?: Record<string, unknown>;
/** The UUID of the linked destination that you want this Linked Account to be tied to. */
linkedDestinationId?: string;
}
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ export const EndUserDetailsRequest: core.serialization.Schema<
"integration_specific_config",
core.serialization.record(core.serialization.string(), core.serialization.unknown()).optional(),
),
linkedDestinationId: core.serialization.property("linked_destination_id", core.serialization.string().optional()),
});

export declare namespace EndUserDetailsRequest {
Expand All @@ -62,5 +63,6 @@ export declare namespace EndUserDetailsRequest {
language?: EndUserDetailsRequestLanguage.Raw | null;
are_syncs_disabled?: boolean | null;
integration_specific_config?: Record<string, unknown> | null;
linked_destination_id?: string | null;
}
}
2 changes: 1 addition & 1 deletion src/version.ts
Original file line number Diff line number Diff line change
@@ -1 +1 @@
export const SDK_VERSION = "4.0.0";
export const SDK_VERSION = "4.0.1";