This guide explains how to add an OSDK to a repository that was originally bootstrapped without one. It assumes that you bootstrapped your repository from Developer Console in Foundry or locally using the @osdk/create-app CLI. If you have a custom setup, some steps may need to be adjusted.
Follow the steps below to add an OSDK to your application.
index.htmlAdd the following meta tag inside the <head> section of your index.html file:
Copied!1 2 3 4 5 6 7 8 9 10 11<!DOCTYPE html> <html> <head> <!-- Other head content --> <meta name="osdk-ontologyRid" content="%VITE_FOUNDRY_ONTOLOGY_RID%" /> <!-- Other head content --> </head> <body> <!-- Body content --> </body> </html>
Add the following environment variable to all environment variable files present in your project. For example: .env.development, .env.production, and .env.code-workspaces:
VITE_FOUNDRY_ONTOLOGY_RID=<ri.ontology.main.ontology.your-ontology-rid>
Replace <ri.ontology.main.ontology.your-ontology-rid> with your OSDK's Ontology RID.
You can find the Ontology RID in Ontology Manager.
client.tsRead the Ontology RID and initialize the client object:
Copied!1 2 3 4 5 6 7- import { createPlatformClient, type PlatformClient } from "@osdk/client"; + import { type Client, createClient } from "@osdk/client"; + const ontologyRid = getMetaTagContent("osdk-ontologyRid"); - export const client: PlatformClient = createPlatformClient(foundryUrl, auth); + export const client: Client = createClient(foundryUrl, ontologyRid, auth);
package.jsonAdd your OSDK package as a dependency:
Copied!1 2 3 4 5 6{ "dependencies": { + "<osdk-package-name>/sdk": "latest" // Other dependencies } }
Replace <osdk-package-name> with your OSDK package name.
You can find the OSDK package name under Developer Console > Overview > Generated SDKs.
.npmrcYou only need to perform this step if you bootstrapped the repository in a local development environment.
If you bootstrapped the repository in Foundry, skip this step.
Add the registry URL of your OSDK package.
+ <osdk-package-name>:registry=<registry-url>
Replace <osdk-package-name> and <registry-url> with your OSDK package name and registry URL.
/sdk in the OSDK package name.The following is an example .npmrc file:
//hostname.palantirfoundry.com/artifacts/api/:\_authToken=${FOUNDRY_TOKEN}
@osdk-package:registry=https://hostname.palantirfoundry.com/artifacts/api/repositories/ri.artifacts.main.repository.45660bd6-de33-442e-9f48-a0c02372b906/contents/release/npm