@osdk/cli 0.27.0-beta.3 → 0.27.0-beta.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (30) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/build/esm/{chunk-3JO4TM76.js → chunk-O4NKVWHA.js} +6 -6
  3. package/build/esm/chunk-O4NKVWHA.js.map +1 -0
  4. package/build/esm/{handleGenerate-SPZSWK2W.js → handleGenerate-FEKNI2WO.js} +144 -112
  5. package/build/esm/handleGenerate-FEKNI2WO.js.map +1 -0
  6. package/build/esm/index.js +12 -12
  7. package/build/esm/index.js.map +1 -1
  8. package/build/esm/{siteDeployCommand-JDIQFK6Z.js → siteDeployCommand-EY2O6E5N.js} +3 -3
  9. package/build/esm/{siteDeployCommand-JDIQFK6Z.js.map → siteDeployCommand-EY2O6E5N.js.map} +1 -1
  10. package/build/esm/{versionDeleteCommand-24PJRACS.js → versionDeleteCommand-H2FEYWNP.js} +3 -3
  11. package/build/esm/{versionDeleteCommand-24PJRACS.js.map → versionDeleteCommand-H2FEYWNP.js.map} +1 -1
  12. package/build/esm/{versionDeleteCommand-PANTAN6Y.js → versionDeleteCommand-O3XOMSVV.js} +3 -3
  13. package/build/esm/{versionDeleteCommand-PANTAN6Y.js.map → versionDeleteCommand-O3XOMSVV.js.map} +1 -1
  14. package/build/esm/{versionGetCommand-MU7JYGDB.js → versionGetCommand-QNWCBIET.js} +3 -3
  15. package/build/esm/{versionGetCommand-MU7JYGDB.js.map → versionGetCommand-QNWCBIET.js.map} +1 -1
  16. package/build/esm/{versionInfoCommand-F4NRSB2O.js → versionInfoCommand-ATIMLRPE.js} +3 -3
  17. package/build/esm/{versionInfoCommand-F4NRSB2O.js.map → versionInfoCommand-ATIMLRPE.js.map} +1 -1
  18. package/build/esm/{versionListCommand-VO2J7KE6.js → versionListCommand-FUG6YNXX.js} +3 -3
  19. package/build/esm/{versionListCommand-VO2J7KE6.js.map → versionListCommand-FUG6YNXX.js.map} +1 -1
  20. package/build/esm/{versionListCommand-SBJ6ALJR.js → versionListCommand-N7L3WPDQ.js} +3 -3
  21. package/build/esm/{versionListCommand-SBJ6ALJR.js.map → versionListCommand-N7L3WPDQ.js.map} +1 -1
  22. package/build/esm/{versionSetCommand-UK4K7V52.js → versionSetCommand-WMJVRDCG.js} +3 -3
  23. package/build/esm/{versionSetCommand-UK4K7V52.js.map → versionSetCommand-WMJVRDCG.js.map} +1 -1
  24. package/build/esm/{versionUnsetCommand-PSHTNPSO.js → versionUnsetCommand-FIGN727Q.js} +3 -3
  25. package/build/esm/{versionUnsetCommand-PSHTNPSO.js.map → versionUnsetCommand-FIGN727Q.js.map} +1 -1
  26. package/build/esm/{widgetSetDeployCommand-GHVZIQZU.js → widgetSetDeployCommand-5I72DQN6.js} +3 -3
  27. package/build/esm/{widgetSetDeployCommand-GHVZIQZU.js.map → widgetSetDeployCommand-5I72DQN6.js.map} +1 -1
  28. package/package.json +6 -6
  29. package/build/esm/chunk-3JO4TM76.js.map +0 -1
  30. package/build/esm/handleGenerate-SPZSWK2W.js.map +0 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @osdk/cli
2
2
 
3
+ ## 0.27.0-beta.4
4
+
5
+ ### Minor Changes
6
+
7
+ - cc844f6: Fix URI components encoding
8
+
3
9
  ## 0.27.0-beta.3
4
10
 
5
11
  ## 0.27.0-beta.2
@@ -37,7 +37,7 @@ init_esm_shims();
37
37
 
38
38
  // src/net/UserAgent.ts
39
39
  init_esm_shims();
40
- var USER_AGENT = `osdk-cli/${"0.27.0-beta.3"}`;
40
+ var USER_AGENT = `osdk-cli/${"0.27.0-beta.4"}`;
41
41
 
42
42
  // src/net/createFetch.mts
43
43
  function createFetch(tokenProvider, fetchFn = fetch) {
@@ -145,7 +145,7 @@ function createRequestLoggingFetch(fetchFn = fetch) {
145
145
  // src/net/third-party-applications/deleteVersion.mts
146
146
  async function deleteVersion(ctx, thirdPartyAppRid, version) {
147
147
  const fetch2 = createFetch(ctx.tokenProvider);
148
- const url = `${ctx.foundryUrl}/api/v2/thirdPartyApplications/${thirdPartyAppRid}/website/versions/${version}?preview=true`;
148
+ const url = `${ctx.foundryUrl}/api/v2/thirdPartyApplications/${thirdPartyAppRid}/website/versions/${encodeURIComponent(version)}?preview=true`;
149
149
  await fetch2(url, {
150
150
  method: "DELETE"
151
151
  });
@@ -205,7 +205,7 @@ async function undeployWebsite(ctx, thirdPartyAppRid) {
205
205
  init_esm_shims();
206
206
  async function uploadSnapshotVersion(ctx, thirdPartyAppRid, version, snapshotId, zipFile) {
207
207
  const fetch2 = createFetch(ctx.tokenProvider);
208
- const url = `${ctx.foundryUrl}/api/v2/thirdPartyApplications/${thirdPartyAppRid}/website/versions/uploadSnapshot?version=${version}&preview=true${snapshotId !== "" ? `&snapshotIdentifier=${snapshotId}` : ""}`;
208
+ const url = `${ctx.foundryUrl}/api/v2/thirdPartyApplications/${thirdPartyAppRid}/website/versions/uploadSnapshot?version=${encodeURIComponent(version)}&preview=true${snapshotId !== "" ? `&snapshotIdentifier=${encodeURIComponent(snapshotId)}` : ""}`;
209
209
  const result = await fetch2(url, {
210
210
  method: "POST",
211
211
  body: zipFile,
@@ -222,7 +222,7 @@ async function uploadSnapshotVersion(ctx, thirdPartyAppRid, version, snapshotId,
222
222
  init_esm_shims();
223
223
  async function uploadVersion(ctx, thirdPartyAppRid, version, zipFile) {
224
224
  const fetch2 = createFetch(ctx.tokenProvider);
225
- const url = `${ctx.foundryUrl}/api/v2/thirdPartyApplications/${thirdPartyAppRid}/website/versions/upload?version=${version}&preview=true`;
225
+ const url = `${ctx.foundryUrl}/api/v2/thirdPartyApplications/${thirdPartyAppRid}/website/versions/upload?version=${encodeURIComponent(version)}&preview=true`;
226
226
  const result = await fetch2(url, {
227
227
  method: "POST",
228
228
  body: zipFile,
@@ -346,5 +346,5 @@ function isJWT(token) {
346
346
  }
347
347
 
348
348
  export { createInternalClientContext, loadToken, third_party_applications_exports, widget_registry_exports };
349
- //# sourceMappingURL=chunk-3JO4TM76.js.map
350
- //# sourceMappingURL=chunk-3JO4TM76.js.map
349
+ //# sourceMappingURL=chunk-O4NKVWHA.js.map
350
+ //# sourceMappingURL=chunk-O4NKVWHA.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"sources":["../../src/net/createInternalClientContext.mts","../../src/net/third-party-applications/index.mts","../../src/net/third-party-applications/deleteVersion.mts","../../src/net/createFetch.mts","../../src/net/UserAgent.ts","../../src/net/third-party-applications/deployWebsite.mts","../../src/net/third-party-applications/getWebsite.mts","../../src/net/third-party-applications/listVersions.mts","../../src/net/third-party-applications/undeployWebsite.mts","../../src/net/third-party-applications/uploadSnapshotVersion.mts","../../src/net/third-party-applications/uploadVersion.mts","../../src/net/widget-registry/index.mts","../../src/net/widget-registry/deleteRelease.mts","../../src/net/widget-registry/getRelease.mts","../../src/net/widget-registry/listReleases.mts","../../src/net/widget-registry/publishRelease.mts","../../src/net/index.mts","../../src/util/token.ts"],"names":["fetch","consola","fsPromises"],"mappings":"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","file":"chunk-O4NKVWHA.js","sourcesContent":["/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport function createInternalClientContext(foundryUrl, tokenProvider) {\n return {\n tokenProvider,\n foundryUrl\n };\n}","/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport { deleteVersion } from \"./deleteVersion.mjs\";\nexport { deployWebsite } from \"./deployWebsite.mjs\";\nexport { getWebsite } from \"./getWebsite.mjs\";\nexport { listVersions } from \"./listVersions.mjs\";\nexport { undeployWebsite } from \"./undeployWebsite.mjs\";\nexport { uploadSnapshotVersion } from \"./uploadSnapshotVersion.mjs\";\nexport { uploadVersion } from \"./uploadVersion.mjs\";","/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createFetch } from \"../createFetch.mjs\";\nexport async function deleteVersion(ctx, thirdPartyAppRid, version) {\n const fetch = createFetch(ctx.tokenProvider);\n const url = `${ctx.foundryUrl}/api/v2/thirdPartyApplications/${thirdPartyAppRid}/website/versions/${encodeURIComponent(version)}?preview=true`;\n await fetch(url, {\n method: \"DELETE\"\n });\n}","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ExitProcessError } from \"@osdk/cli.common\";\nimport { PalantirApiError, UnknownError } from \"@osdk/shared.net.errors\";\nimport { createFetchHeaderMutator, createFetchOrThrow } from \"@osdk/shared.net.fetch\";\nimport { consola } from \"consola\";\nimport { inspect } from \"node:util\";\nimport prettyBytes from \"pretty-bytes\";\nimport { USER_AGENT } from \"./UserAgent.js\";\nexport function createFetch(tokenProvider, fetchFn = fetch) {\n return createFetchHeaderMutator(createRequestLoggingFetch(createErrorExitingFetch(createFetchOrThrow(fetchFn))), async headers => {\n const token = await tokenProvider();\n headers.set(\"Authorization\", `Bearer ${token}`);\n headers.set(\"Fetch-User-Agent\", USER_AGENT);\n return headers;\n });\n}\nfunction createErrorExitingFetch(fetchFn = fetch) {\n return function errorExitingFetch(input, init) {\n return fetchFn(input, init).catch(handleFetchError);\n };\n}\nfunction handleFetchError(e) {\n if (!(e instanceof PalantirApiError)) {\n throw new ExitProcessError(1, \"Unexpected fetch error\");\n }\n let tip;\n if (e.statusCode === 401) {\n tip = \"Check your token is valid and has not expired or been disabled\";\n } else if (e.statusCode === 403) {\n tip = \"Check your token has the required scopes for this operation\";\n } else if (e.statusCode === 404) {\n tip = \"The resource may not exist or your token may not have the required scopes to load it\";\n }\n let message;\n if (e.errorName === \"CannotDeleteDeployedVersion\") {\n message = \"The site version to delete is live and cannot be deleted\";\n tip = \"Run the `site version set` command to change the live site version\";\n } else if (e.errorName === \"InvalidVersion\") {\n message = \"The site version is invalid and must be a valid SemVer string\";\n } else if (e.errorName === \"VersionAlreadyExists\") {\n message = \"The site version already exists\";\n } else if (e.errorName === \"VersionNotFound\") {\n message = \"The site version could not be found\";\n } else if (e.errorName === \"VersionLimitExceeded\") {\n const {\n versionLimit\n } = e.parameters ?? {};\n const versionLimitPart = versionLimit != null ? ` (Limit: ${versionLimit} versions)` : \"\";\n message = `The site contains too many versions${versionLimitPart}`;\n tip = \"Run the `site version delete` command to delete an old version and try again\";\n } else if (e.errorName === \"FileCountLimitExceeded\") {\n const {\n fileCountLimit\n } = e.parameters ?? {};\n const fileCountLimitPart = fileCountLimit != null ? ` (Limit: ${fileCountLimit} files)` : \"\";\n message = `The .zip file contains too many files${fileCountLimitPart}`;\n tip = \"Reduce the number of files in the production build to below the limit\";\n } else if (e.errorName === \"FileSizeLimitExceeded\") {\n const {\n currentFilePath,\n currentFileSizeBytes,\n fileSizeBytesLimit\n } = e.parameters ?? {};\n const currentFilePathPart = currentFilePath != null ? ` \"${currentFilePath}\"` : \"\";\n const currentFileSizePart = currentFileSizeBytes != null ? ` (${prettyBytes(parseInt(currentFileSizeBytes), {\n binary: true\n })})` : \"\";\n const fileSizeLimitPart = fileSizeBytesLimit != null ? ` (Limit: ${prettyBytes(parseInt(fileSizeBytesLimit), {\n binary: true\n })})` : \"\";\n message = `The .zip file contains a file${currentFilePathPart}${currentFileSizePart} that is too large${fileSizeLimitPart}`;\n tip = \"Ensure all files in the production build are below the size limit\";\n } else {\n if (e instanceof UnknownError) {\n // Include deep inspect of original error\n message = `${e.message}\\n\\n${inspect(e, {\n depth: 10,\n colors: true\n })}`;\n } else {\n // Include extra info about the original API error\n // https://www.palantir.com/docs/foundry/api/general/overview/errors/\n const {\n errorCode,\n errorName,\n errorInstanceId,\n parameters\n } = e;\n message = `${e.message}\\n\\n${JSON.stringify({\n errorCode,\n errorName,\n errorInstanceId,\n parameters\n }, null, 2)}`;\n }\n }\n throw new ExitProcessError(1, message, tip, e);\n}\nfunction createRequestLoggingFetch(fetchFn = fetch) {\n return function requestLoggingFetch(input, init) {\n const requestLog = typeof input === \"string\" || input instanceof URL ? `${init?.method ?? \"GET\"}: ${input.toString().trim()}` : `${input.method ?? \"GET\"}: ${input.url.toString().trim()}`;\n consola.trace(requestLog);\n return fetchFn(input, init).then(a => {\n consola.trace(`FINISH ${requestLog}`);\n return a;\n });\n };\n}","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport const USER_AGENT = `osdk-cli/${process.env.PACKAGE_VERSION}`;","/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createFetch } from \"../createFetch.mjs\";\nexport async function deployWebsite(ctx, thirdPartyAppRid, request) {\n const fetch = createFetch(ctx.tokenProvider);\n const url = `${ctx.foundryUrl}/api/v2/thirdPartyApplications/${thirdPartyAppRid}/website/deploy?preview=true`;\n const result = await fetch(url, {\n method: \"POST\",\n body: JSON.stringify(request),\n headers: {\n \"Content-Type\": \"application/json\"\n }\n });\n return result.json();\n}","/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ExitProcessError } from \"@osdk/cli.common\";\nimport { PalantirApiError } from \"@osdk/shared.net.errors\";\nimport { createFetch } from \"../createFetch.mjs\";\nexport async function getWebsite(ctx, thirdPartyAppRid) {\n const fetch = createFetch(ctx.tokenProvider);\n const url = `${ctx.foundryUrl}/api/v2/thirdPartyApplications/${thirdPartyAppRid}/website?preview=true`;\n try {\n const result = await fetch(url);\n return await result.json();\n } catch (e) {\n // Revisit this error handling in the API\n if (e instanceof ExitProcessError && e.originalError != null && e.originalError instanceof PalantirApiError && e.originalError.errorName === \"WebsiteNotFound\") {\n return undefined;\n }\n throw e;\n }\n}","/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createFetch } from \"../createFetch.mjs\";\nexport async function listVersions(ctx, thirdPartyAppRid) {\n const fetch = createFetch(ctx.tokenProvider);\n const url = `${ctx.foundryUrl}/api/v2/thirdPartyApplications/${thirdPartyAppRid}/website/versions?preview=true`;\n const result = await fetch(url);\n return result.json();\n}","/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createFetch } from \"../createFetch.mjs\";\nexport async function undeployWebsite(ctx, thirdPartyAppRid) {\n const fetch = createFetch(ctx.tokenProvider);\n const url = `${ctx.foundryUrl}/api/v2/thirdPartyApplications/${thirdPartyAppRid}/website/undeploy?preview=true`;\n await fetch(url, {\n method: \"POST\"\n });\n}","/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createFetch } from \"../createFetch.mjs\";\nexport async function uploadSnapshotVersion(ctx, thirdPartyAppRid, version, snapshotId, zipFile) {\n const fetch = createFetch(ctx.tokenProvider);\n const url = `${ctx.foundryUrl}/api/v2/thirdPartyApplications/${thirdPartyAppRid}/website/versions/uploadSnapshot?version=${encodeURIComponent(version)}&preview=true${snapshotId !== \"\" ? `&snapshotIdentifier=${encodeURIComponent(snapshotId)}` : \"\"}`;\n const result = await fetch(url, {\n method: \"POST\",\n body: zipFile,\n headers: {\n \"Content-Type\": \"application/octet-stream\"\n },\n duplex: \"half\" // Node hates me\n });\n return result.json();\n}","/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createFetch } from \"../createFetch.mjs\";\nexport async function uploadVersion(ctx, thirdPartyAppRid, version, zipFile) {\n const fetch = createFetch(ctx.tokenProvider);\n const url = `${ctx.foundryUrl}/api/v2/thirdPartyApplications/${thirdPartyAppRid}/website/versions/upload?version=${encodeURIComponent(version)}&preview=true`;\n const result = await fetch(url, {\n method: \"POST\",\n body: zipFile,\n headers: {\n \"Content-Type\": \"application/octet-stream\"\n },\n duplex: \"half\" // Node hates me\n });\n return result.json();\n}","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport { deleteRelease } from \"./deleteRelease.mjs\";\nexport { getRelease } from \"./getRelease.mjs\";\nexport { listReleases } from \"./listReleases.mjs\";\nexport { publishRelease } from \"./publishRelease.mjs\";","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createFetch } from \"../createFetch.mjs\";\nexport async function deleteRelease(ctx, widgetSetRid, releaseVersion) {\n const fetch = createFetch(ctx.tokenProvider);\n const url = `${ctx.foundryUrl}/api/v2/widgets/widgetSets/${widgetSetRid}/releases/${releaseVersion}?preview=true`;\n await fetch(url, {\n method: \"DELETE\"\n });\n}","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createFetch } from \"../createFetch.mjs\";\nexport async function getRelease(ctx, widgetSetRid, releaseVersion) {\n const fetch = createFetch(ctx.tokenProvider);\n const url = `${ctx.foundryUrl}/api/v2/widgets/widgetSets/${widgetSetRid}/releases/${releaseVersion}?preview=true`;\n const response = await fetch(url);\n return response.json();\n}","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createFetch } from \"../createFetch.mjs\";\nexport async function listReleases(ctx, widgetSetRid) {\n const fetch = createFetch(ctx.tokenProvider);\n const url = `${ctx.foundryUrl}/api/v2/widgets/widgetSets/${widgetSetRid}/releases?preview=true`;\n const response = await fetch(url);\n return response.json();\n}","/*\n * Copyright 2025 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { createFetch } from \"../createFetch.mjs\";\nexport async function publishRelease(ctx, repositoryRid, repositoryVersion, zipFile) {\n const fetch = createFetch(ctx.tokenProvider);\n const url = `${ctx.foundryUrl}/api/v2/widgets/repositories/${repositoryRid}/publish?preview=true&repositoryVersion=${repositoryVersion}`;\n await fetch(url, {\n method: \"POST\",\n body: zipFile,\n headers: {\n \"Content-Type\": \"application/octet-stream\"\n },\n duplex: \"half\" // Node hates me\n });\n}","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nexport { createInternalClientContext } from \"./createInternalClientContext.mjs\";\nexport * as thirdPartyApplications from \"./third-party-applications/index.mjs\";\nexport * as widgetRegistry from \"./widget-registry/index.mjs\";","/*\n * Copyright 2023 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\n\nimport { ExitProcessError } from \"@osdk/cli.common\";\nimport { consola } from \"consola\";\nimport { promises as fsPromises } from \"node:fs\";\nimport path from \"node:path\";\nconst TOKEN_ENV_VARS = [\"FOUNDRY_TOKEN\", \"FOUNDRY_SDK_AUTH_TOKEN\"];\n\n/**\n * Loads a JWT Auth Token from an argument, a file, or environment variable returning the first found.\n * @param token The token as a string.\n * @param tokenFile The path to the token file.\n * @returns The token as a string.\n * @throws An error if no token is found.\n */\nexport async function loadToken(token, tokenFile) {\n if (token) {\n consola.debug(`Using token from --token option`);\n validate(token);\n return token;\n }\n if (tokenFile) {\n const loadedToken = await loadTokenFile(tokenFile);\n consola.debug(`Using token from --tokenFile=${loadedToken.filePath} option`);\n validate(loadedToken.token);\n return loadedToken.token;\n }\n for (const envVar of TOKEN_ENV_VARS) {\n const environmentToken = process.env[envVar];\n if (environmentToken) {\n consola.debug(`Using token from ${envVar} environment variable`);\n validate(environmentToken);\n if (envVar === \"FOUNDRY_SDK_AUTH_TOKEN\") {\n consola.warn(`Using FOUNDRY_SDK_AUTH_TOKEN environment variable is deprecated. Please use FOUNDRY_TOKEN instead.`);\n }\n return environmentToken;\n }\n }\n throw new ExitProcessError(2, `No token found.`, `You can supply a --token or --token-file option, or set the ${TOKEN_ENV_VARS[0]} environment variable`);\n}\n/**\n * Reads a JWT Auth Token from a file.\n * @param filePath The path to the token file.\n * @returns The token as a string.\n * @throws An error if the file cannot be read.\n */\nexport async function loadTokenFile(filePath) {\n let token;\n let resolvedPath;\n try {\n resolvedPath = path.resolve(filePath);\n token = await fsPromises.readFile(resolvedPath, \"utf8\");\n token = token.trim();\n } catch (error) {\n throw new ExitProcessError(2, `Unable to read token file \"${filePath}\": ${error}`);\n }\n return {\n filePath: resolvedPath,\n token\n };\n}\nexport function validate(token) {\n if (!isJWT(token)) {\n throw new ExitProcessError(2, `Token does not appear to be a JWT`);\n }\n}\nfunction isJWT(token) {\n // https://stackoverflow.com/a/65755789\n const jwtPattern = /^[A-Za-z0-9-_]+\\.[A-Za-z0-9-_]+\\.[A-Za-z0-9-_]*$/;\n return jwtPattern.test(token);\n}"]}
@@ -476,6 +476,90 @@ function getModifiedEntityTypes(action) {
476
476
  };
477
477
  }
478
478
 
479
+ // ../generator-converters/build/esm/wireObjectTypeFullMetadataToSdkObjectMetadata.js
480
+ init_esm_shims();
481
+
482
+ // ../generator-converters/build/esm/wirePropertyV2ToSdkPrimaryKeyTypeDefinition.js
483
+ init_esm_shims();
484
+ function wirePropertyV2ToSdkPrimaryKeyTypeDefinition(input) {
485
+ switch (input.dataType.type) {
486
+ case "integer":
487
+ case "double":
488
+ case "string":
489
+ case "byte":
490
+ case "long":
491
+ case "short":
492
+ case "timestamp": {
493
+ return input.dataType.type;
494
+ }
495
+ case "date": {
496
+ return "datetime";
497
+ }
498
+ case "boolean":
499
+ case "geopoint":
500
+ case "geoshape":
501
+ case "decimal":
502
+ case "attachment":
503
+ case "timeseries":
504
+ case "array":
505
+ case "marking":
506
+ case "float":
507
+ case "geotimeSeriesReference":
508
+ case "mediaReference":
509
+ case "struct":
510
+ case "cipherText":
511
+ case "vector":
512
+ throw new Error(`Primary key of type ${input.dataType.type} is not supported`);
513
+ default:
514
+ input.dataType;
515
+ throw new Error(`Unknown type encountered for primaryKey: ${input.dataType}`);
516
+ }
517
+ }
518
+
519
+ // ../generator-converters/build/esm/wireObjectTypeFullMetadataToSdkObjectMetadata.js
520
+ function wireObjectTypeFullMetadataToSdkObjectMetadata(objectTypeWithLink, v2, log) {
521
+ if (objectTypeWithLink.objectType.properties[objectTypeWithLink.objectType.primaryKey] === void 0) {
522
+ throw new Error(`Primary key ${objectTypeWithLink.objectType.primaryKey} not found in ${objectTypeWithLink.objectType.apiName}`);
523
+ }
524
+ if (objectTypeWithLink.implementsInterfaces2 == null && objectTypeWithLink.implementsInterfaces != null) {
525
+ throw new Error("Your ontology.json file is missing the implementsInterfaces2 field. Please regenerate it.");
526
+ }
527
+ const interfaceMap = objectTypeWithLink.implementsInterfaces2 ? Object.fromEntries(Object.entries(objectTypeWithLink.implementsInterfaces2).map(([interfaceApiName, impl]) => [interfaceApiName, impl.properties])) : {};
528
+ return {
529
+ type: "object",
530
+ apiName: objectTypeWithLink.objectType.apiName,
531
+ description: objectTypeWithLink.objectType.description,
532
+ primaryKeyApiName: objectTypeWithLink.objectType.primaryKey,
533
+ primaryKeyType: wirePropertyV2ToSdkPrimaryKeyTypeDefinition(objectTypeWithLink.objectType.properties[objectTypeWithLink.objectType.primaryKey]),
534
+ links: Object.fromEntries(objectTypeWithLink.linkTypes.map((linkType) => {
535
+ return [linkType.apiName, {
536
+ multiplicity: linkType.cardinality === "MANY",
537
+ targetType: linkType.objectTypeApiName
538
+ }];
539
+ })),
540
+ properties: Object.fromEntries(Object.entries(objectTypeWithLink.objectType.properties).map(([key2, value]) => [key2, wirePropertyV2ToSdkPropertyDefinition(value, !(v2 && objectTypeWithLink.objectType.primaryKey === key2), log)]).filter(([key2, value]) => value != null)),
541
+ implements: objectTypeWithLink.implementsInterfaces,
542
+ interfaceMap,
543
+ inverseInterfaceMap: Object.fromEntries(Object.entries(interfaceMap).map(([interfaceApiName, props]) => [interfaceApiName, invertProps(props)])),
544
+ icon: supportedIconTypes.includes(objectTypeWithLink.objectType.icon.type) ? objectTypeWithLink.objectType.icon : void 0,
545
+ titleProperty: objectTypeWithLink.objectType.titleProperty,
546
+ displayName: objectTypeWithLink.objectType.displayName,
547
+ pluralDisplayName: objectTypeWithLink.objectType.pluralDisplayName,
548
+ status: ensureStringEnumSupportedOrUndefined(objectTypeWithLink.objectType.status, supportedReleaseStatus),
549
+ rid: objectTypeWithLink.objectType.rid,
550
+ visibility: ensureStringEnumSupportedOrUndefined(objectTypeWithLink.objectType.visibility, supportedObjectTypeVisibility)
551
+ };
552
+ }
553
+ function invertProps(a) {
554
+ return a ? Object.fromEntries(Object.entries(a).map(([k, v]) => [v, k])) : void 0;
555
+ }
556
+ var supportedIconTypes = ["blueprint"];
557
+ var supportedReleaseStatus = ["ACTIVE", "EXPERIMENTAL", "DEPRECATED", "ENDORSED"];
558
+ var supportedObjectTypeVisibility = ["NORMAL", "PROMINENT", "HIDDEN"];
559
+ function ensureStringEnumSupportedOrUndefined(value, supportedValues) {
560
+ return value && supportedValues.includes(value) ? value : void 0;
561
+ }
562
+
479
563
  // ../generator-converters/build/esm/wireActionTypeV2ToSdkActionMetadata.js
480
564
  function wireActionTypeV2ToSdkActionMetadata(input) {
481
565
  const modifiedEntityTypes = getModifiedEntityTypes(input);
@@ -487,7 +571,7 @@ function wireActionTypeV2ToSdkActionMetadata(input) {
487
571
  description: input.description,
488
572
  modifiedEntities: createModifiedEntities(modifiedEntityTypes.addedObjects, modifiedEntityTypes.modifiedObjects),
489
573
  rid: input.rid,
490
- status: input.status
574
+ status: ensureStringEnumSupportedOrUndefined(input.status, supportedReleaseStatus)
491
575
  };
492
576
  }
493
577
  function wireActionParameterV2ToSdkParameterDefinition(value) {
@@ -565,85 +649,6 @@ function createModifiedEntities(addedObjects, modifiedObjects) {
565
649
  return entities;
566
650
  }
567
651
 
568
- // ../generator-converters/build/esm/wireObjectTypeFullMetadataToSdkObjectMetadata.js
569
- init_esm_shims();
570
-
571
- // ../generator-converters/build/esm/wirePropertyV2ToSdkPrimaryKeyTypeDefinition.js
572
- init_esm_shims();
573
- function wirePropertyV2ToSdkPrimaryKeyTypeDefinition(input) {
574
- switch (input.dataType.type) {
575
- case "integer":
576
- case "double":
577
- case "string":
578
- case "byte":
579
- case "long":
580
- case "short":
581
- case "timestamp": {
582
- return input.dataType.type;
583
- }
584
- case "date": {
585
- return "datetime";
586
- }
587
- case "boolean":
588
- case "geopoint":
589
- case "geoshape":
590
- case "decimal":
591
- case "attachment":
592
- case "timeseries":
593
- case "array":
594
- case "marking":
595
- case "float":
596
- case "geotimeSeriesReference":
597
- case "mediaReference":
598
- case "struct":
599
- case "cipherText":
600
- case "vector":
601
- throw new Error(`Primary key of type ${input.dataType.type} is not supported`);
602
- default:
603
- input.dataType;
604
- throw new Error(`Unknown type encountered for primaryKey: ${input.dataType}`);
605
- }
606
- }
607
-
608
- // ../generator-converters/build/esm/wireObjectTypeFullMetadataToSdkObjectMetadata.js
609
- function wireObjectTypeFullMetadataToSdkObjectMetadata(objectTypeWithLink, v2, log) {
610
- if (objectTypeWithLink.objectType.properties[objectTypeWithLink.objectType.primaryKey] === void 0) {
611
- throw new Error(`Primary key ${objectTypeWithLink.objectType.primaryKey} not found in ${objectTypeWithLink.objectType.apiName}`);
612
- }
613
- if (objectTypeWithLink.implementsInterfaces2 == null && objectTypeWithLink.implementsInterfaces != null) {
614
- throw new Error("Your ontology.json file is missing the implementsInterfaces2 field. Please regenerate it.");
615
- }
616
- const interfaceMap = objectTypeWithLink.implementsInterfaces2 ? Object.fromEntries(Object.entries(objectTypeWithLink.implementsInterfaces2).map(([interfaceApiName, impl]) => [interfaceApiName, impl.properties])) : {};
617
- return {
618
- type: "object",
619
- apiName: objectTypeWithLink.objectType.apiName,
620
- description: objectTypeWithLink.objectType.description,
621
- primaryKeyApiName: objectTypeWithLink.objectType.primaryKey,
622
- primaryKeyType: wirePropertyV2ToSdkPrimaryKeyTypeDefinition(objectTypeWithLink.objectType.properties[objectTypeWithLink.objectType.primaryKey]),
623
- links: Object.fromEntries(objectTypeWithLink.linkTypes.map((linkType) => {
624
- return [linkType.apiName, {
625
- multiplicity: linkType.cardinality === "MANY",
626
- targetType: linkType.objectTypeApiName
627
- }];
628
- })),
629
- properties: Object.fromEntries(Object.entries(objectTypeWithLink.objectType.properties).map(([key2, value]) => [key2, wirePropertyV2ToSdkPropertyDefinition(value, !(v2 && objectTypeWithLink.objectType.primaryKey === key2), log)]).filter(([key2, value]) => value != null)),
630
- implements: objectTypeWithLink.implementsInterfaces,
631
- interfaceMap,
632
- inverseInterfaceMap: Object.fromEntries(Object.entries(interfaceMap).map(([interfaceApiName, props]) => [interfaceApiName, invertProps(props)])),
633
- icon: supportedIconTypes.includes(objectTypeWithLink.objectType.icon.type) ? objectTypeWithLink.objectType.icon : void 0,
634
- titleProperty: objectTypeWithLink.objectType.titleProperty,
635
- displayName: objectTypeWithLink.objectType.displayName,
636
- pluralDisplayName: objectTypeWithLink.objectType.pluralDisplayName,
637
- status: objectTypeWithLink.objectType.status,
638
- rid: objectTypeWithLink.objectType.rid,
639
- visibility: objectTypeWithLink.objectType.visibility
640
- };
641
- }
642
- function invertProps(a) {
643
- return a ? Object.fromEntries(Object.entries(a).map(([k, v]) => [v, k])) : void 0;
644
- }
645
- var supportedIconTypes = ["blueprint"];
646
-
647
652
  // ../generator-converters/build/esm/wireQueryDataTypeToQueryDataTypeDefinition.js
648
653
  init_esm_shims();
649
654
 
@@ -817,12 +822,6 @@ function wireQueryParameterV2ToQueryParameterDefinition(parameter) {
817
822
  };
818
823
  }
819
824
 
820
- // ../generator/build/esm/util/deleteUndefineds.js
821
- init_esm_shims();
822
- function deleteUndefineds(obj) {
823
- return Object.fromEntries(Object.entries(obj).filter(([, value]) => value !== void 0));
824
- }
825
-
826
825
  // ../generator/build/esm/GenerateContext/EnhancedInterfaceType.js
827
826
  var EnhancedInterfaceType = class extends EnhancedBase {
828
827
  constructor(common2, raw) {
@@ -839,7 +838,7 @@ var EnhancedInterfaceType = class extends EnhancedBase {
839
838
  return this.raw.properties;
840
839
  }
841
840
  getCleanedUpDefinition(v2) {
842
- return deleteUndefineds(__UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition(this.raw));
841
+ return __UNSTABLE_wireInterfaceTypeV2ToSdkObjectDefinition(this.raw);
843
842
  }
844
843
  };
845
844
 
@@ -857,7 +856,7 @@ var EnhancedObjectType = class extends EnhancedBase {
857
856
  return this.getDefinitionIdentifier(v2);
858
857
  }
859
858
  getCleanedUpDefinition(v2) {
860
- return deleteUndefineds(wireObjectTypeFullMetadataToSdkObjectMetadata(this.raw, v2));
859
+ return wireObjectTypeFullMetadataToSdkObjectMetadata(this.raw, v2);
861
860
  }
862
861
  };
863
862
 
@@ -21367,13 +21366,19 @@ function getObjectImports(objects, curApiName, currentFilePath, v2) {
21367
21366
  }).join("\n");
21368
21367
  }
21369
21368
 
21369
+ // ../generator/build/esm/util/deleteUndefineds.js
21370
+ init_esm_shims();
21371
+ function deleteUndefineds(obj) {
21372
+ return Object.fromEntries(Object.entries(obj).filter(([, value]) => value !== void 0));
21373
+ }
21374
+
21370
21375
  // ../generator/build/esm/util/stringify.js
21371
21376
  init_esm_shims();
21372
21377
  var defaultCustomizer = (value, defaultValueFormatter, key2, defaultKeyFormatter) => {
21373
21378
  return [defaultKeyFormatter(key2), defaultValueFormatter(value)];
21374
21379
  };
21375
21380
  function stringify(obj, customizer = {}, separator = ",\n") {
21376
- const defaultKeyFormatter = (key2) => `${JSON.stringify(key2)}`;
21381
+ const defaultKeyFormatter = (key2) => JSON.stringify(key2);
21377
21382
  const entries = [];
21378
21383
  const sortedKeys = Object.keys(obj).sort((a, b) => a.localeCompare(b));
21379
21384
  for (const key2 of sortedKeys) {
@@ -21385,6 +21390,8 @@ function stringify(obj, customizer = {}, separator = ",\n") {
21385
21390
  } else {
21386
21391
  entries.push(`${res[0]}: ${res[1]}`);
21387
21392
  }
21393
+ } else if (value === void 0) {
21394
+ entries.push(`${defaultKeyFormatter(key2)}: undefined`);
21388
21395
  }
21389
21396
  }
21390
21397
  return entries.join(separator);
@@ -21674,33 +21681,56 @@ init_esm_shims();
21674
21681
 
21675
21682
  // ../generator/build/esm/shared/propertyJsdoc.js
21676
21683
  init_esm_shims();
21677
- function propertyJsdoc(property, {
21684
+ function propertyJsdoc(property, rawPropertyMetadata, {
21678
21685
  isInherited,
21679
21686
  apiName
21680
21687
  }) {
21681
- let ret = `/**
21682
- `;
21688
+ const ret = [];
21683
21689
  const renderDisplayName = property.displayName && property.displayName !== apiName;
21684
- if (isInherited || renderDisplayName || property.description) {
21685
- if (isInherited) {
21686
- ret += ` * (inherited from parent)
21690
+ const status = rawPropertyMetadata?.status;
21691
+ if (isInherited || renderDisplayName || property.description || status) {
21692
+ if (status) {
21693
+ let deprecationStatus = "";
21694
+ if (status.type === "deprecated") {
21695
+ deprecationStatus += ` * @deprecated
21687
21696
  `;
21697
+ deprecationStatus += ` * - ${status.message}
21698
+ `;
21699
+ if (status.deadline) {
21700
+ deprecationStatus += ` * - deadline: ${status.deadline}
21701
+ `;
21702
+ }
21703
+ if (status.replacedBy) {
21704
+ deprecationStatus += ` * - replaced by: ${status.replacedBy}
21705
+ `;
21706
+ }
21707
+ ret.push(deprecationStatus);
21708
+ } else if (status.type === "experimental") {
21709
+ ret.push(` * @${status.type}
21710
+ `);
21711
+ }
21712
+ ret.push(` * property status: ${status.type}
21713
+ `);
21714
+ }
21715
+ if (isInherited) {
21716
+ ret.push(` * (inherited from parent)
21717
+ `);
21688
21718
  }
21689
21719
  if (renderDisplayName) {
21690
- ret += ` * display name: '${property.displayName}'${property.description ? "," : ""}
21691
- `;
21720
+ ret.push(` * display name: '${property.displayName}'${property.description ? "," : ""}
21721
+ `);
21692
21722
  }
21693
21723
  if (property.description) {
21694
- ret += ` * description: ${property.description}
21695
- `;
21724
+ ret.push(` * description: ${property.description}
21725
+ `);
21696
21726
  }
21697
21727
  } else {
21698
- ret += ` * (no ontology metadata)
21699
- `;
21728
+ ret.push(` * (no ontology metadata)
21729
+ `);
21700
21730
  }
21701
- ret += ` */
21731
+ return `/**
21732
+ ` + ret.join("*\n") + ` */
21702
21733
  `;
21703
- return ret;
21704
21734
  }
21705
21735
 
21706
21736
  // ../generator/build/esm/v2.0/wireObjectTypeV2ToSdkObjectConstV2.js
@@ -21713,7 +21743,7 @@ function wireObjectTypeV2ToSdkObjectConstV2(wireObject, {
21713
21743
  throw new Error("Should not be generating types for an external type");
21714
21744
  }
21715
21745
  const uniqueLinkTargetTypes = new Set(wireObject.linkTypes.map((a) => ontology.requireObjectType(a.objectTypeApiName, false)));
21716
- const definition = deleteUndefineds(wireObjectTypeFullMetadataToSdkObjectMetadata(object.raw, true, consola$1));
21746
+ const definition = wireObjectTypeFullMetadataToSdkObjectMetadata(object.raw, true, consola$1);
21717
21747
  const objectDefIdentifier = object.getDefinitionIdentifier(true);
21718
21748
  const objectSetIdentifier = `${object.shortApiName}.ObjectSet`;
21719
21749
  const propertyKeysIdentifier = `${object.shortApiName}.PropertyKeys`;
@@ -21830,10 +21860,11 @@ function createProps(type2, identifier, strict) {
21830
21860
  return `export type StrictProps = Props`;
21831
21861
  }
21832
21862
  const definition = type2.getCleanedUpDefinition(true);
21863
+ const propertyMetadata = type2 instanceof EnhancedObjectType ? type2.raw.objectType.properties : void 0;
21833
21864
  return `export interface ${identifier} {
21834
21865
  ${stringify(definition.properties, {
21835
21866
  "*": (propertyDefinition, _, apiName) => {
21836
- return [`${propertyJsdoc(propertyDefinition, {
21867
+ return [`${propertyJsdoc(propertyDefinition, propertyMetadata?.[apiName], {
21837
21868
  apiName
21838
21869
  })}readonly "${maybeStripNamespace(type2, apiName)}"`, (typeof propertyDefinition.type === "object" ? remapStructType(propertyDefinition.type) : `$PropType[${JSON.stringify(propertyDefinition.type)}]`) + `${propertyDefinition.multiplicity ? "[]" : ""}${propertyDefinition.nullable || !strict && !(definition.type === "object" && definition.primaryKeyApiName === apiName) ? `| undefined` : ""}`];
21839
21870
  }
@@ -21848,6 +21879,7 @@ function createDefinition(object, ontology, identifier, {
21848
21879
  osdkObjectLinksIdentifier
21849
21880
  }) {
21850
21881
  const definition = object.getCleanedUpDefinition(true);
21882
+ const propertyMetadata = object instanceof EnhancedObjectType ? object.raw.objectType.properties : void 0;
21851
21883
  return `
21852
21884
  export interface ${identifier} extends ${object instanceof EnhancedObjectType ? `$ObjectTypeDefinition` : `$InterfaceDefinition`} {
21853
21885
  osdkMetadata: typeof $osdkMetadata;
@@ -21866,7 +21898,7 @@ function createDefinition(object, ontology, identifier, {
21866
21898
  }`,
21867
21899
  properties: () => `{
21868
21900
  ${stringify(definition.properties, {
21869
- "*": (propertyDefinition, _, apiName) => [`${propertyJsdoc(propertyDefinition, {
21901
+ "*": (propertyDefinition, _, apiName) => [`${propertyJsdoc(propertyDefinition, propertyMetadata?.[apiName], {
21870
21902
  apiName
21871
21903
  })}"${maybeStripNamespace(object, apiName)}"`, `$PropertyDef<${JSON.stringify(propertyDefinition.type)}, "${propertyDefinition.nullable ? "nullable" : "non-nullable"}", "${propertyDefinition.multiplicity ? "array" : "single"}">`]
21872
21904
  })}
@@ -22512,7 +22544,7 @@ function createSharedClientContext(baseUrl, tokenProvider, userAgent, fetchFn =
22512
22544
 
22513
22545
  // ../cli.cmd.typescript/build/esm/generate/handleGenerate.mjs
22514
22546
  var import_fast_deep_equal2 = __toESM(require_fast_deep_equal(), 1);
22515
- var USER_AGENT = `osdk-cli.cmd.typescript/${"0.27.0-beta.3"}`;
22547
+ var USER_AGENT = `osdk-cli.cmd.typescript/${"0.27.0-beta.4"}`;
22516
22548
  async function handleGenerate(args) {
22517
22549
  let success = false;
22518
22550
  if (args.ontologyPath) {
@@ -22648,7 +22680,7 @@ async function generateClientSdk(ontology, args) {
22648
22680
  }
22649
22681
  return true;
22650
22682
  }
22651
- await generateClientSdkPackage(args.packageName, args.version, args.beta ? "2.0" : "1.1", args.outDir, ontology, minimalFs, await getDependencyVersions(), "0.27.0-beta.3", args.externalObjects, args.externalInterfaces);
22683
+ await generateClientSdkPackage(args.packageName, args.version, args.beta ? "2.0" : "1.1", args.outDir, ontology, minimalFs, await getDependencyVersions(), "0.27.0-beta.4", args.externalObjects, args.externalInterfaces);
22652
22684
  return true;
22653
22685
  } catch (e) {
22654
22686
  consola.error("OSDK generation failed", e.message, e.stack);
@@ -22675,8 +22707,8 @@ async function getDependencyVersions() {
22675
22707
  typescriptVersion,
22676
22708
  tslibVersion,
22677
22709
  areTheTypesWrongVersion,
22678
- osdkApiVersion: `^${"2.3.0-beta.3"}`,
22679
- osdkClientVersion: `^${"2.3.0-beta.3"}`,
22710
+ osdkApiVersion: `^${"2.3.0-beta.4"}`,
22711
+ osdkClientVersion: `^${"2.3.0-beta.4"}`,
22680
22712
  osdkLegacyClientVersion
22681
22713
  };
22682
22714
  }
@@ -22715,5 +22747,5 @@ function createNormalFs() {
22715
22747
  }
22716
22748
 
22717
22749
  export { getDependencyVersions, handleGenerate, updateVersionsIfTheyExist };
22718
- //# sourceMappingURL=handleGenerate-SPZSWK2W.js.map
22719
- //# sourceMappingURL=handleGenerate-SPZSWK2W.js.map
22750
+ //# sourceMappingURL=handleGenerate-FEKNI2WO.js.map
22751
+ //# sourceMappingURL=handleGenerate-FEKNI2WO.js.map