@osdk/cli 0.26.0-beta.7 → 0.26.0-beta.9
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.
- package/CHANGELOG.md +8 -0
- package/build/esm/{chunk-ZI5AB4DP.js → chunk-L4N2UI42.js} +26 -16
- package/build/esm/chunk-L4N2UI42.js.map +1 -0
- package/build/esm/{chunk-Y3AS6B5K.js → chunk-P5HXJTVE.js} +17 -10
- package/build/esm/chunk-P5HXJTVE.js.map +1 -0
- package/build/esm/{handleGenerate-YLHDBKBX.js → handleGenerate-R3MLMAEG.js} +49 -25
- package/build/esm/handleGenerate-R3MLMAEG.js.map +1 -0
- package/build/esm/index.js +12 -12
- package/build/esm/index.js.map +1 -1
- package/build/esm/{siteDeployCommand-FW3TPYIM.js → siteDeployCommand-MQM2IA4G.js} +4 -4
- package/build/esm/{siteDeployCommand-FW3TPYIM.js.map → siteDeployCommand-MQM2IA4G.js.map} +1 -1
- package/build/esm/{versionDeleteCommand-6N7ILT5Q.js → versionDeleteCommand-JDE6I3BF.js} +4 -4
- package/build/esm/{versionDeleteCommand-6N7ILT5Q.js.map → versionDeleteCommand-JDE6I3BF.js.map} +1 -1
- package/build/esm/{versionDeleteCommand-ZJNBSPUN.js → versionDeleteCommand-MADNXF4Z.js} +4 -4
- package/build/esm/{versionDeleteCommand-ZJNBSPUN.js.map → versionDeleteCommand-MADNXF4Z.js.map} +1 -1
- package/build/esm/{versionGetCommand-C7BL25D4.js → versionGetCommand-PITWHVJK.js} +4 -4
- package/build/esm/{versionGetCommand-C7BL25D4.js.map → versionGetCommand-PITWHVJK.js.map} +1 -1
- package/build/esm/{versionInfoCommand-EDWVUCEP.js → versionInfoCommand-XQDM27QS.js} +4 -4
- package/build/esm/{versionInfoCommand-EDWVUCEP.js.map → versionInfoCommand-XQDM27QS.js.map} +1 -1
- package/build/esm/{versionListCommand-IVUMHTEV.js → versionListCommand-2KDPD4TP.js} +4 -4
- package/build/esm/{versionListCommand-IVUMHTEV.js.map → versionListCommand-2KDPD4TP.js.map} +1 -1
- package/build/esm/{versionListCommand-OXSBNCUO.js → versionListCommand-SWHK5FFD.js} +4 -4
- package/build/esm/{versionListCommand-OXSBNCUO.js.map → versionListCommand-SWHK5FFD.js.map} +1 -1
- package/build/esm/{versionSetCommand-FWL456LO.js → versionSetCommand-DQGQDUGI.js} +4 -4
- package/build/esm/{versionSetCommand-FWL456LO.js.map → versionSetCommand-DQGQDUGI.js.map} +1 -1
- package/build/esm/{versionUnsetCommand-4VLL3XWY.js → versionUnsetCommand-7RARRL4E.js} +4 -4
- package/build/esm/{versionUnsetCommand-4VLL3XWY.js.map → versionUnsetCommand-7RARRL4E.js.map} +1 -1
- package/build/esm/{widgetSetDeployCommand-2ADVNOMA.js → widgetSetDeployCommand-ATVIMBFT.js} +4 -4
- package/build/esm/{widgetSetDeployCommand-2ADVNOMA.js.map → widgetSetDeployCommand-ATVIMBFT.js.map} +1 -1
- package/build/types/net/createFetch.d.mts.map +1 -1
- package/package.json +6 -6
- package/build/esm/chunk-Y3AS6B5K.js.map +0 -1
- package/build/esm/chunk-ZI5AB4DP.js.map +0 -1
- package/build/esm/handleGenerate-YLHDBKBX.js.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,8 @@
|
|
|
1
|
-
import { PalantirApiError, createFetchHeaderMutator, createFetchOrThrow } from './chunk-
|
|
1
|
+
import { PalantirApiError, createFetchHeaderMutator, createFetchOrThrow, UnknownError } from './chunk-P5HXJTVE.js';
|
|
2
2
|
import { ExitProcessError } from './chunk-2U36M44D.js';
|
|
3
3
|
import { init_esm_shims, __export } from './chunk-VHOQB2JW.js';
|
|
4
4
|
import { consola } from 'consola';
|
|
5
|
+
import { inspect } from 'node:util';
|
|
5
6
|
import prettyBytes from 'pretty-bytes';
|
|
6
7
|
import { promises } from 'node:fs';
|
|
7
8
|
import path from 'node:path';
|
|
@@ -36,7 +37,7 @@ init_esm_shims();
|
|
|
36
37
|
|
|
37
38
|
// src/net/UserAgent.ts
|
|
38
39
|
init_esm_shims();
|
|
39
|
-
var USER_AGENT = `osdk-cli/${"0.26.0-beta.
|
|
40
|
+
var USER_AGENT = `osdk-cli/${"0.26.0-beta.9"}`;
|
|
40
41
|
|
|
41
42
|
// src/net/createFetch.mts
|
|
42
43
|
function createFetch(tokenProvider, fetchFn = fetch) {
|
|
@@ -104,20 +105,29 @@ function handleFetchError(e) {
|
|
|
104
105
|
message = `The .zip file contains a file${currentFilePathPart}${currentFileSizePart} that is too large${fileSizeLimitPart}`;
|
|
105
106
|
tip = "Ensure all files in the production build are below the size limit";
|
|
106
107
|
} else {
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
108
|
+
if (e instanceof UnknownError) {
|
|
109
|
+
message = `${e.message}
|
|
110
|
+
|
|
111
|
+
${inspect(e, {
|
|
112
|
+
depth: 10,
|
|
113
|
+
colors: true
|
|
114
|
+
})}`;
|
|
115
|
+
} else {
|
|
116
|
+
const {
|
|
117
|
+
errorCode,
|
|
118
|
+
errorName,
|
|
119
|
+
errorInstanceId,
|
|
120
|
+
parameters
|
|
121
|
+
} = e;
|
|
122
|
+
message = `${e.message}
|
|
114
123
|
|
|
115
124
|
${JSON.stringify({
|
|
116
|
-
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
125
|
+
errorCode,
|
|
126
|
+
errorName,
|
|
127
|
+
errorInstanceId,
|
|
128
|
+
parameters
|
|
129
|
+
}, null, 2)}`;
|
|
130
|
+
}
|
|
121
131
|
}
|
|
122
132
|
throw new ExitProcessError(1, message, tip, e);
|
|
123
133
|
}
|
|
@@ -364,5 +374,5 @@ function isJWT(token) {
|
|
|
364
374
|
}
|
|
365
375
|
|
|
366
376
|
export { createInternalClientContext, loadToken, third_party_applications_exports, widget_registry_exports };
|
|
367
|
-
//# sourceMappingURL=chunk-
|
|
368
|
-
//# sourceMappingURL=chunk-
|
|
377
|
+
//# sourceMappingURL=chunk-L4N2UI42.js.map
|
|
378
|
+
//# sourceMappingURL=chunk-L4N2UI42.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/deleteSiteVersion.mts","../../src/net/widget-registry/deleteWidgetSetRelease.mts","../../src/net/widget-registry/getWidgetSetRelease.mts","../../src/net/widget-registry/listWidgetSetReleases.mts","../../src/net/widget-registry/publishManifest.mts","../../src/net/widget-registry/uploadSiteVersion.mts","../../src/net/index.mts","../../src/util/token.ts"],"names":["fetch","consola","fsPromises"],"mappings":"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","file":"chunk-L4N2UI42.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/${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=${version}&preview=true${snapshotId !== \"\" ? `&snapshotIdentifier=${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=${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 { deleteSiteVersion } from \"./deleteSiteVersion.mjs\";\nexport { deleteWidgetSetRelease } from \"./deleteWidgetSetRelease.mjs\";\nexport { getWidgetSetRelease } from \"./getWidgetSetRelease.mjs\";\nexport { listWidgetSetReleases } from \"./listWidgetSetReleases.mjs\";\nexport { publishManifest } from \"./publishManifest.mjs\";\nexport { uploadSiteVersion } from \"./uploadSiteVersion.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 deleteSiteVersion(ctx, repositoryRid, version) {\n const fetch = createFetch(ctx.tokenProvider);\n const url = `${ctx.foundryUrl}/artifacts/api/repositories/${repositoryRid}/contents/release/siteasset/versions/${version}`;\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 deleteWidgetSetRelease(ctx, widgetSetRid, version) {\n const fetch = createFetch(ctx.tokenProvider);\n const url = `${ctx.foundryUrl}/widget-registry/api/widget-sets/${widgetSetRid}/releases/${version}`;\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 getWidgetSetRelease(ctx, widgetSetRid, version) {\n const fetch = createFetch(ctx.tokenProvider);\n const url = `${ctx.foundryUrl}/widget-registry/api/widget-sets/${widgetSetRid}/releases/${version}`;\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 listWidgetSetReleases(ctx, widgetSetRid) {\n const fetch = createFetch(ctx.tokenProvider);\n const url = `${ctx.foundryUrl}/widget-registry/api/widget-sets/${widgetSetRid}/releases`;\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 publishManifest(ctx, repositoryRid, version) {\n const fetch = createFetch(ctx.tokenProvider);\n const url = `${ctx.foundryUrl}/widget-registry/api/repositories/${repositoryRid}/publish-manifest`;\n await fetch(url, {\n method: \"POST\",\n body: JSON.stringify({\n version\n }),\n headers: {\n \"Content-Type\": \"application/json\"\n }\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 uploadSiteVersion(ctx, repositoryRid, version, zipFile) {\n const fetch = createFetch(ctx.tokenProvider);\n const url = `${ctx.foundryUrl}/artifacts/api/repositories/${repositoryRid}/contents/release/siteasset/versions/zip/${version}`;\n await fetch(url, {\n method: \"PUT\",\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}"]}
|
|
@@ -139,8 +139,8 @@ init_esm_shims();
|
|
|
139
139
|
// ../shared.net.errors/build/esm/UnknownError.js
|
|
140
140
|
init_esm_shims();
|
|
141
141
|
var UnknownError = class extends PalantirApiError {
|
|
142
|
-
constructor(message,
|
|
143
|
-
super(message,
|
|
142
|
+
constructor(message, errorName, originalError, statusCode) {
|
|
143
|
+
super(message, errorName, undefined, statusCode);
|
|
144
144
|
this.originalError = originalError;
|
|
145
145
|
}
|
|
146
146
|
};
|
|
@@ -172,25 +172,32 @@ function createFetchOrThrow(fetchFn = fetch) {
|
|
|
172
172
|
throw convertError(e, "A network error occurred");
|
|
173
173
|
}
|
|
174
174
|
if (!response.ok) {
|
|
175
|
+
const fallbackMessage = `Failed to fetch ${response.status} ${response.statusText}`;
|
|
175
176
|
if (response.headers.get("Content-Type") === "text/plain") {
|
|
176
|
-
throw
|
|
177
|
+
throw unknownError(await response.text(), response.status);
|
|
178
|
+
}
|
|
179
|
+
if (response.headers.get("Content-Type") === "text/html") {
|
|
180
|
+
throw unknownError(fallbackMessage, response.status, new Error("Received HTML error page: " + await response.text()));
|
|
177
181
|
}
|
|
178
182
|
let body;
|
|
179
183
|
try {
|
|
180
184
|
body = await response.json();
|
|
181
185
|
} catch (e) {
|
|
182
|
-
throw
|
|
186
|
+
throw unknownError(fallbackMessage, response.status, e instanceof Error ? e : undefined);
|
|
183
187
|
}
|
|
184
|
-
throw new PalantirApiError(body?.message ??
|
|
188
|
+
throw new PalantirApiError(body?.message ?? fallbackMessage, body?.errorName, body?.errorCode, response.status, body?.errorInstanceId, body?.parameters);
|
|
185
189
|
}
|
|
186
190
|
return response;
|
|
187
191
|
};
|
|
188
192
|
}
|
|
189
193
|
function convertError(e, msgIfNotError = "An unknown error occurred") {
|
|
190
194
|
if (e instanceof Error) {
|
|
191
|
-
return
|
|
195
|
+
return unknownError(e.message, undefined, e);
|
|
192
196
|
}
|
|
193
|
-
return
|
|
197
|
+
return unknownError(msgIfNotError, undefined);
|
|
198
|
+
}
|
|
199
|
+
function unknownError(message, statusCode, originalError) {
|
|
200
|
+
return new UnknownError(message, undefined, originalError, statusCode);
|
|
194
201
|
}
|
|
195
202
|
|
|
196
203
|
// ../shared.net.fetch/build/esm/createRetryingFetch.js
|
|
@@ -226,6 +233,6 @@ var TOO_MANY_REQUESTS = 429;
|
|
|
226
233
|
// ../shared.net.fetch/build/esm/index.js
|
|
227
234
|
init_esm_shims();
|
|
228
235
|
|
|
229
|
-
export { PalantirApiError, createFetchHeaderMutator, createFetchOrThrow, createRetryingFetch };
|
|
230
|
-
//# sourceMappingURL=chunk-
|
|
231
|
-
//# sourceMappingURL=chunk-
|
|
236
|
+
export { PalantirApiError, UnknownError, createFetchHeaderMutator, createFetchOrThrow, createRetryingFetch };
|
|
237
|
+
//# sourceMappingURL=chunk-P5HXJTVE.js.map
|
|
238
|
+
//# sourceMappingURL=chunk-P5HXJTVE.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"sources":["../../../../node_modules/.pnpm/fetch-retry@6.0.0/node_modules/fetch-retry/index.js","../../../shared.net.errors/build/esm/PalantirApiError.js","../../../shared.net.errors/build/esm/index.js","../../../shared.net.errors/build/esm/UnknownError.js","../../../shared.net.fetch/build/esm/createFetchHeaderMutator.js","../../../shared.net.fetch/build/esm/createFetchOrThrow.js","../../../shared.net.fetch/build/esm/createRetryingFetch.js","../../../shared.net.fetch/build/esm/index.js"],"names":["fetch","fetchRetry","error"],"mappings":";;;AAAA,IAAA,mBAAA,GAAA,UAAA,CAAA;AAAA,EAAA,8EAAA,CAAA,OAAA,EAAA,MAAA,EAAA;AAAA,IAAA,cAAA,EAAA;AAEA,IAAO,MAAA,CAAA,OAAA,GAAU,SAAUA,MAAAA,EAAO,QAAU,EAAA;AAC1C,MAAA,QAAA,GAAW,YAAY,EAAC;AACxB,MAAI,IAAA,OAAOA,WAAU,UAAY,EAAA;AAC/B,QAAM,MAAA,IAAI,cAAc,0BAA0B,CAAA;AAAA;AAEpD,MAAI,IAAA,OAAO,aAAa,QAAU,EAAA;AAChC,QAAM,MAAA,IAAI,cAAc,4BAA4B,CAAA;AAAA;AAEtD,MAAA,IAAI,SAAS,OAAY,KAAA,SAAA,IAAa,CAAC,iBAAkB,CAAA,QAAA,CAAS,OAAO,CAAG,EAAA;AAC1E,QAAM,MAAA,IAAI,cAAc,oCAAoC,CAAA;AAAA;AAE9D,MAAI,IAAA,QAAA,CAAS,UAAe,KAAA,SAAA,IAAa,CAAC,iBAAA,CAAkB,QAAS,CAAA,UAAU,CAAK,IAAA,OAAO,QAAS,CAAA,UAAA,KAAe,UAAY,EAAA;AAC7H,QAAM,MAAA,IAAI,cAAc,kFAAkF,CAAA;AAAA;AAE5G,MAAA,IAAI,QAAS,CAAA,OAAA,KAAY,SAAa,IAAA,CAAC,KAAM,CAAA,OAAA,CAAQ,QAAS,CAAA,OAAO,CAAK,IAAA,OAAO,QAAS,CAAA,OAAA,KAAY,UAAY,EAAA;AAChH,QAAM,MAAA,IAAI,cAAc,+CAA+C,CAAA;AAAA;AAEzE,MAAA,IAAI,YAAe,GAAA;AAAA,QACjB,OAAS,EAAA,CAAA;AAAA,QACT,UAAY,EAAA,GAAA;AAAA,QACZ,SAAS;AAAC,OACZ;AACA,MAAW,QAAA,GAAA,MAAA,CAAO,MAAO,CAAA,YAAA,EAAc,QAAQ,CAAA;AAC/C,MAAO,OAAA,SAASC,WAAW,CAAA,KAAA,EAAO,IAAM,EAAA;AACtC,QAAA,IAAI,UAAU,QAAS,CAAA,OAAA;AACvB,QAAA,IAAI,aAAa,QAAS,CAAA,UAAA;AAC1B,QAAA,IAAI,UAAU,QAAS,CAAA,OAAA;AACvB,QAAI,IAAA,IAAA,IAAQ,IAAK,CAAA,OAAA,KAAY,SAAW,EAAA;AACtC,UAAI,IAAA,iBAAA,CAAkB,IAAK,CAAA,OAAO,CAAG,EAAA;AACnC,YAAA,OAAA,GAAU,IAAK,CAAA,OAAA;AAAA,WACV,MAAA;AACL,YAAM,MAAA,IAAI,cAAc,oCAAoC,CAAA;AAAA;AAC9D;AAEF,QAAI,IAAA,IAAA,IAAQ,IAAK,CAAA,UAAA,KAAe,SAAW,EAAA;AACzC,UAAA,IAAI,kBAAkB,IAAK,CAAA,UAAU,KAAK,OAAO,IAAA,CAAK,eAAe,UAAY,EAAA;AAC/E,YAAA,UAAA,GAAa,IAAK,CAAA,UAAA;AAAA,WACb,MAAA;AACL,YAAM,MAAA,IAAI,cAAc,kFAAkF,CAAA;AAAA;AAC5G;AAEF,QAAI,IAAA,IAAA,IAAQ,KAAK,OAAS,EAAA;AACxB,UAAI,IAAA,KAAA,CAAM,QAAQ,IAAK,CAAA,OAAO,KAAK,OAAO,IAAA,CAAK,YAAY,UAAY,EAAA;AACrE,YAAA,OAAA,GAAU,IAAK,CAAA,OAAA;AAAA,WACV,MAAA;AACL,YAAM,MAAA,IAAI,cAAc,+CAA+C,CAAA;AAAA;AACzE;AAIF,QAAA,OAAO,IAAI,OAAA,CAAQ,SAAU,OAAA,EAAS,MAAQ,EAAA;AAC5C,UAAI,IAAA,YAAA,GAAe,SAAU,OAAS,EAAA;AAGpC,YAAI,IAAA,MAAA,GAAS,OAAO,OAAY,KAAA,WAAA,IAAe,iBAAiB,OAAU,GAAA,KAAA,CAAM,OAAU,GAAA,KAAA;AAC1F,YAAAD,OAAM,MAAQ,EAAA,IAAI,CAAE,CAAA,IAAA,CAAK,SAAU,QAAU,EAAA;AAC3C,cAAI,IAAA,KAAA,CAAM,QAAQ,OAAO,CAAA,IAAK,QAAQ,OAAQ,CAAA,QAAA,CAAS,MAAM,CAAA,KAAM,EAAI,EAAA;AACrE,gBAAA,OAAA,CAAQ,QAAQ,CAAA;AAAA,eAClB,MAAA,IAAW,OAAO,OAAA,KAAY,UAAY,EAAA;AACxC,gBAAI,IAAA;AAEF,kBAAO,OAAA,OAAA,CAAQ,OAAQ,CAAA,OAAA,CAAQ,OAAS,EAAA,IAAA,EAAM,QAAQ,CAAC,CAAA,CAAE,IAAK,CAAA,SAAU,eAAiB,EAAA;AACvF,oBAAA,IAAI,eAAiB,EAAA;AACnB,sBAAM,KAAA,CAAA,OAAA,EAAS,MAAM,QAAQ,CAAA;AAAA,qBACxB,MAAA;AACL,sBAAA,OAAA,CAAQ,QAAQ,CAAA;AAAA;AAClB,mBACD,CAAE,CAAA,KAAA,CAAM,MAAM,CAAA;AAAA,yBACR,KAAO,EAAA;AACd,kBAAA,MAAA,CAAO,KAAK,CAAA;AAAA;AACd,eACK,MAAA;AACL,gBAAA,IAAI,UAAU,OAAS,EAAA;AACrB,kBAAM,KAAA,CAAA,OAAA,EAAS,MAAM,QAAQ,CAAA;AAAA,iBACxB,MAAA;AACL,kBAAA,OAAA,CAAQ,QAAQ,CAAA;AAAA;AAClB;AACF,aACD,CAAA,CAAE,KAAM,CAAA,SAAU,KAAO,EAAA;AACxB,cAAI,IAAA,OAAO,YAAY,UAAY,EAAA;AACjC,gBAAI,IAAA;AAEF,kBAAQ,OAAA,CAAA,OAAA,CAAQ,QAAQ,OAAS,EAAA,KAAA,EAAO,IAAI,CAAC,CAAA,CAAE,IAAK,CAAA,SAAU,eAAiB,EAAA;AAC7E,oBAAA,IAAI,eAAiB,EAAA;AACnB,sBAAM,KAAA,CAAA,OAAA,EAAS,OAAO,IAAI,CAAA;AAAA,qBACrB,MAAA;AACL,sBAAA,MAAA,CAAO,KAAK,CAAA;AAAA;AACd,mBACD,CAAA,CAAE,KAAM,CAAA,SAAUE,MAAO,EAAA;AACxB,oBAAA,MAAA,CAAOA,MAAK,CAAA;AAAA,mBACb,CAAA;AAAA,yBACMA,MAAO,EAAA;AACd,kBAAA,MAAA,CAAOA,MAAK,CAAA;AAAA;AACd,eACF,MAAA,IAAW,UAAU,OAAS,EAAA;AAC5B,gBAAM,KAAA,CAAA,OAAA,EAAS,OAAO,IAAI,CAAA;AAAA,eACrB,MAAA;AACL,gBAAA,MAAA,CAAO,KAAK,CAAA;AAAA;AACd,aACD,CAAA;AAAA,WACH;AACA,UAAS,SAAA,KAAA,CAAM,OAAS,EAAA,KAAA,EAAO,QAAU,EAAA;AACvC,YAAI,IAAA,KAAA,GAAQ,OAAO,UAAe,KAAA,UAAA,GAAa,WAAW,OAAS,EAAA,KAAA,EAAO,QAAQ,CAAI,GAAA,UAAA;AACtF,YAAA,UAAA,CAAW,WAAY;AACrB,cAAA,YAAA,CAAa,EAAE,OAAO,CAAA;AAAA,eACrB,KAAK,CAAA;AAAA;AAEV,UAAA,YAAA,CAAa,CAAC,CAAA;AAAA,SACf,CAAA;AAAA,OACH;AAAA,KACF;AACA,IAAA,SAAS,kBAAkB,KAAO,EAAA;AAChC,MAAA,OAAO,MAAO,CAAA,SAAA,CAAU,KAAK,CAAA,IAAK,KAAS,IAAA,CAAA;AAAA;AAE7C,IAAA,SAAS,cAAc,OAAS,EAAA;AAC9B,MAAA,IAAA,CAAK,IAAO,GAAA,eAAA;AACZ,MAAA,IAAA,CAAK,OAAU,GAAA,OAAA;AAAA;AACjB;AAAA,CAAA,CAAA;;;ACvHA,cAAA,EAAA;AAgBa,IAAA,gBAAA,GAAN,cAA+B,KAAM,CAAA;AAAA,EAC1C,YAAY,OAAS,EAAA,SAAA,EAAW,SAAW,EAAA,UAAA,EAAY,iBAAiB,UAAY,EAAA;AAClF,IAAA,KAAA,CAAM,OAAO,CAAA;AACb,IAAA,IAAA,CAAK,OAAU,GAAA,OAAA;AACf,IAAA,IAAA,CAAK,SAAY,GAAA,SAAA;AACjB,IAAA,IAAA,CAAK,SAAY,GAAA,SAAA;AACjB,IAAA,IAAA,CAAK,UAAa,GAAA,UAAA;AAClB,IAAA,IAAA,CAAK,eAAkB,GAAA,eAAA;AACvB,IAAA,IAAA,CAAK,UAAa,GAAA,UAAA;AAAA;AAEtB;;;AC1BA,cAAA,EAAA;;;ACAA,cAAA,EAAA;AAiBa,IAAA,YAAA,GAAN,cAA2B,gBAAiB,CAAA;AAAA,EACjD,WAAY,CAAA,OAAA,EAAS,SAAW,EAAA,aAAA,EAAe,UAAY,EAAA;AACzD,IAAM,KAAA,CAAA,OAAA,EAAS,SAAW,EAAA,SAAA,EAAW,UAAU,CAAA;AAC/C,IAAA,IAAA,CAAK,aAAgB,GAAA,aAAA;AAAA;AAEzB;;;ACtBA,cAAA,EAAA;AAgBO,SAAS,wBAAA,CAAyB,OAAU,GAAA,KAAA,EAAO,OAAS,EAAA;AACjE,EAAO,OAAA,eAAgB,KAAK,WAAa,EAAA;AACvC,IAAA,IAAI,CAAC,WAAa,EAAA;AAChB,MAAA,OAAO,QAAQ,GAAK,EAAA;AAAA,QAClB,OAAS,EAAA,MAAM,OAAQ,CAAA,IAAI,SAAS;AAAA,OACrC,CAAA;AAAA;AAEH,IAAA,OAAO,QAAQ,GAAK,EAAA;AAAA,MAClB,GAAG,WAAA;AAAA,MACH,SAAS,MAAM,OAAA,CAAQ,IAAI,OAAQ,CAAA,WAAA,CAAY,OAAO,CAAC;AAAA,KACxD,CAAA;AAAA,GACH;AACF;;;AC5BA,cAAA,EAAA;AA0BO,SAAS,kBAAA,CAAmB,UAAU,KAAO,EAAA;AAClD,EAAO,OAAA,eAAgB,KAAK,WAAa,EAAA;AACvC,IAAI,IAAA,QAAA;AACJ,IAAI,IAAA;AACF,MAAW,QAAA,GAAA,MAAM,OAAQ,CAAA,GAAA,EAAK,WAAW,CAAA;AAAA,aAClC,CAAG,EAAA;AACV,MAAM,MAAA,YAAA,CAAa,GAAG,0BAA0B,CAAA;AAAA;AAElD,IAAI,IAAA,CAAC,SAAS,EAAI,EAAA;AAChB,MAAA,MAAM,kBAAkB,CAAmB,gBAAA,EAAA,QAAA,CAAS,MAAM,CAAA,CAAA,EAAI,SAAS,UAAU,CAAA,CAAA;AACjF,MAAA,IAAI,QAAS,CAAA,OAAA,CAAQ,GAAI,CAAA,cAAc,MAAM,YAAc,EAAA;AACzD,QAAA,MAAM,aAAa,MAAM,QAAA,CAAS,IAAK,EAAA,EAAG,SAAS,MAAM,CAAA;AAAA;AAE3D,MAAA,IAAI,QAAS,CAAA,OAAA,CAAQ,GAAI,CAAA,cAAc,MAAM,WAAa,EAAA;AACxD,QAAM,MAAA,YAAA,CAAa,eAAiB,EAAA,QAAA,CAAS,MAAQ,EAAA,IAAI,KAAM,CAAA,4BAAA,GAAgC,MAAM,QAAA,CAAS,IAAK,EAAE,CAAC,CAAA;AAAA;AAExH,MAAI,IAAA,IAAA;AACJ,MAAI,IAAA;AACF,QAAO,IAAA,GAAA,MAAM,SAAS,IAAK,EAAA;AAAA,eACpB,CAAG,EAAA;AACV,QAAA,MAAM,aAAa,eAAiB,EAAA,QAAA,CAAS,QAAQ,CAAa,YAAA,KAAA,GAAQ,IAAI,SAAS,CAAA;AAAA;AAEzF,MAAA,MAAM,IAAI,gBAAA,CAAiB,IAAM,EAAA,OAAA,IAAW,iBAAiB,IAAM,EAAA,SAAA,EAAW,IAAM,EAAA,SAAA,EAAW,QAAS,CAAA,MAAA,EAAQ,IAAM,EAAA,eAAA,EAAiB,MAAM,UAAU,CAAA;AAAA;AAEzJ,IAAO,OAAA,QAAA;AAAA,GACT;AACF;AACA,SAAS,YAAA,CAAa,CAAG,EAAA,aAAA,GAAgB,2BAA6B,EAAA;AACpE,EAAA,IAAI,aAAa,KAAO,EAAA;AACtB,IAAA,OAAO,YAAa,CAAA,CAAA,CAAE,OAAS,EAAA,SAAA,EAAW,CAAC,CAAA;AAAA;AAE7C,EAAO,OAAA,YAAA,CAAa,eAAe,SAAS,CAAA;AAC9C;AACA,SAAS,YAAA,CAAa,OAAS,EAAA,UAAA,EAAY,aAAe,EAAA;AACxD,EAAA,OAAO,IAAI,YAAA,CAAa,OAAS,EAAA,SAAA,EAAW,eAAe,UAAU,CAAA;AACvE;;;AC7DA,cAAA,EAAA;AAiBA,IAAuB,kBAAA,GAAA,OAAA,CAAA,mBAAA,EAAA,EAAA,CAAA,CAAA;AACvB,IAAM,aAAgB,GAAA,GAAA;AACtB,IAAM,aAAgB,GAAA,GAAA;AACtB,IAAM,WAAc,GAAA,CAAA;AACb,SAAS,oBAAoBF,MAAO,EAAA;AACzC,EAAO,OAAA,IAAA,kBAAA,CAAAC,SAAWD,MAAO,EAAA;AAAA,IACvB,WAAW,OAAS,EAAA;AAClB,MAAM,MAAA,KAAA,GAAQ,gBAAgB,CAAK,IAAA,OAAA;AACnC,MAAA,MAAM,SAAS,KAAQ,GAAA,aAAA,IAAiB,IAAK,CAAA,MAAA,KAAW,CAAI,GAAA,CAAA,CAAA;AAC5D,MAAA,OAAO,KAAQ,GAAA,MAAA;AAAA,KACjB;AAAA,IACA,OAAA,CAAQ,OAAS,EAAA,KAAA,EAAO,QAAU,EAAA;AAChC,MAAM,MAAA,MAAA,GAAS,UAAU,MAAU,IAAA,CAAA;AACnC,MAAO,OAAA,EAAE,UAAU,GAAO,IAAA,MAAA,GAAS,QAAQ,WAAY,CAAA,KAAK,KAAK,OAAU,GAAA,WAAA;AAAA;AAC7E,GACD,CAAA;AACH;AACA,SAAS,YAAY,CAAG,EAAA;AACtB,EAAA,IAAI,aAAa,gBAAkB,EAAA;AACjC,IAAA,IAAI,CAAE,CAAA,UAAA,KAAe,mBAAuB,IAAA,CAAA,CAAE,eAAe,iBAAmB,EAAA;AAC9E,MAAO,OAAA,KAAA;AAAA;AACT;AAEF,EAAO,OAAA,IAAA;AACT;AACA,IAAM,mBAAsB,GAAA,GAAA;AAC5B,IAAM,iBAAoB,GAAA,GAAA;;;AC3C1B,cAAA,EAAA","file":"chunk-P5HXJTVE.js","sourcesContent":["'use strict';\n\nmodule.exports = function (fetch, defaults) {\n defaults = defaults || {};\n if (typeof fetch !== 'function') {\n throw new ArgumentError('fetch must be a function');\n }\n if (typeof defaults !== 'object') {\n throw new ArgumentError('defaults must be an object');\n }\n if (defaults.retries !== undefined && !isPositiveInteger(defaults.retries)) {\n throw new ArgumentError('retries must be a positive integer');\n }\n if (defaults.retryDelay !== undefined && !isPositiveInteger(defaults.retryDelay) && typeof defaults.retryDelay !== 'function') {\n throw new ArgumentError('retryDelay must be a positive integer or a function returning a positive integer');\n }\n if (defaults.retryOn !== undefined && !Array.isArray(defaults.retryOn) && typeof defaults.retryOn !== 'function') {\n throw new ArgumentError('retryOn property expects an array or function');\n }\n var baseDefaults = {\n retries: 3,\n retryDelay: 1000,\n retryOn: []\n };\n defaults = Object.assign(baseDefaults, defaults);\n return function fetchRetry(input, init) {\n var retries = defaults.retries;\n var retryDelay = defaults.retryDelay;\n var retryOn = defaults.retryOn;\n if (init && init.retries !== undefined) {\n if (isPositiveInteger(init.retries)) {\n retries = init.retries;\n } else {\n throw new ArgumentError('retries must be a positive integer');\n }\n }\n if (init && init.retryDelay !== undefined) {\n if (isPositiveInteger(init.retryDelay) || typeof init.retryDelay === 'function') {\n retryDelay = init.retryDelay;\n } else {\n throw new ArgumentError('retryDelay must be a positive integer or a function returning a positive integer');\n }\n }\n if (init && init.retryOn) {\n if (Array.isArray(init.retryOn) || typeof init.retryOn === 'function') {\n retryOn = init.retryOn;\n } else {\n throw new ArgumentError('retryOn property expects an array or function');\n }\n }\n\n // eslint-disable-next-line no-undef\n return new Promise(function (resolve, reject) {\n var wrappedFetch = function (attempt) {\n // As of node 18, this is no longer needed since node comes with native support for fetch:\n /* istanbul ignore next */\n var _input = typeof Request !== 'undefined' && input instanceof Request ? input.clone() : input;\n fetch(_input, init).then(function (response) {\n if (Array.isArray(retryOn) && retryOn.indexOf(response.status) === -1) {\n resolve(response);\n } else if (typeof retryOn === 'function') {\n try {\n // eslint-disable-next-line no-undef\n return Promise.resolve(retryOn(attempt, null, response)).then(function (retryOnResponse) {\n if (retryOnResponse) {\n retry(attempt, null, response);\n } else {\n resolve(response);\n }\n }).catch(reject);\n } catch (error) {\n reject(error);\n }\n } else {\n if (attempt < retries) {\n retry(attempt, null, response);\n } else {\n resolve(response);\n }\n }\n }).catch(function (error) {\n if (typeof retryOn === 'function') {\n try {\n // eslint-disable-next-line no-undef\n Promise.resolve(retryOn(attempt, error, null)).then(function (retryOnResponse) {\n if (retryOnResponse) {\n retry(attempt, error, null);\n } else {\n reject(error);\n }\n }).catch(function (error) {\n reject(error);\n });\n } catch (error) {\n reject(error);\n }\n } else if (attempt < retries) {\n retry(attempt, error, null);\n } else {\n reject(error);\n }\n });\n };\n function retry(attempt, error, response) {\n var delay = typeof retryDelay === 'function' ? retryDelay(attempt, error, response) : retryDelay;\n setTimeout(function () {\n wrappedFetch(++attempt);\n }, delay);\n }\n wrappedFetch(0);\n });\n };\n};\nfunction isPositiveInteger(value) {\n return Number.isInteger(value) && value >= 0;\n}\nfunction ArgumentError(message) {\n this.name = 'ArgumentError';\n this.message = message;\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 class PalantirApiError extends Error {\n constructor(message, errorName, errorCode, statusCode, errorInstanceId, parameters) {\n super(message);\n this.message = message;\n this.errorName = errorName;\n this.errorCode = errorCode;\n this.statusCode = statusCode;\n this.errorInstanceId = errorInstanceId;\n this.parameters = parameters;\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 { PalantirApiError } from \"./PalantirApiError.js\";\nexport { UnknownError } from \"./UnknownError.js\";","/*\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 { PalantirApiError } from \"./PalantirApiError.js\";\nexport class UnknownError extends PalantirApiError {\n constructor(message, errorName, originalError, statusCode) {\n super(message, errorName, undefined, statusCode);\n this.originalError = originalError;\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 function createFetchHeaderMutator(fetchFn = fetch, mutator) {\n return async function (url, requestInit) {\n if (!requestInit) {\n return fetchFn(url, {\n headers: await mutator(new Headers())\n });\n }\n return fetchFn(url, {\n ...requestInit,\n headers: await mutator(new Headers(requestInit.headers))\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\nimport { PalantirApiError, UnknownError } from \"@osdk/shared.net.errors\";\n\n/**\n * Wraps a fetch plugin so that all errors (including when statusCode is not in the 200s) are converted to either PalantirApiError or UnknownError.\n *\n * If the returned promise does not have an error state, you are free to immediately call `.json()` or equivalent.\n *\n * @param fetchFn\n * @returns\n */\nexport function createFetchOrThrow(fetchFn = fetch) {\n return async function (url, requestInit) {\n let response;\n try {\n response = await fetchFn(url, requestInit);\n } catch (e) {\n throw convertError(e, \"A network error occurred\");\n }\n if (!response.ok) {\n const fallbackMessage = `Failed to fetch ${response.status} ${response.statusText}`;\n if (response.headers.get(\"Content-Type\") === \"text/plain\") {\n throw unknownError(await response.text(), response.status);\n }\n if (response.headers.get(\"Content-Type\") === \"text/html\") {\n throw unknownError(fallbackMessage, response.status, new Error(\"Received HTML error page: \" + (await response.text())));\n }\n let body;\n try {\n body = await response.json();\n } catch (e) {\n throw unknownError(fallbackMessage, response.status, e instanceof Error ? e : undefined);\n }\n throw new PalantirApiError(body?.message ?? fallbackMessage, body?.errorName, body?.errorCode, response.status, body?.errorInstanceId, body?.parameters);\n }\n return response;\n };\n}\nfunction convertError(e, msgIfNotError = \"An unknown error occurred\") {\n if (e instanceof Error) {\n return unknownError(e.message, undefined, e);\n }\n return unknownError(msgIfNotError, undefined);\n}\nfunction unknownError(message, statusCode, originalError) {\n return new UnknownError(message, undefined, originalError, statusCode);\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 { PalantirApiError } from \"@osdk/shared.net.errors\";\nimport fetchRetry from \"fetch-retry\";\nconst INITIAL_DELAY = 1_000;\nconst JITTER_FACTOR = 0.5;\nconst MAX_RETRIES = 3;\nexport function createRetryingFetch(fetch) {\n return fetchRetry(fetch, {\n retryDelay(attempt) {\n const delay = INITIAL_DELAY * 2 ** attempt;\n const jitter = delay * JITTER_FACTOR * (Math.random() * 2 - 1);\n return delay + jitter;\n },\n retryOn(attempt, error, response) {\n const status = response?.status ?? 0;\n return !(status >= 200 && status < 300) && isRetryable(error) && attempt < MAX_RETRIES;\n }\n });\n}\nfunction isRetryable(e) {\n if (e instanceof PalantirApiError) {\n if (e.statusCode !== SERVICE_UNAVAILABLE && e.statusCode !== TOO_MANY_REQUESTS) {\n return false;\n }\n }\n return true; // I think this logic is flawed?\n}\nconst SERVICE_UNAVAILABLE = 503;\nconst TOO_MANY_REQUESTS = 429;","/*\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 { createFetchHeaderMutator } from \"./createFetchHeaderMutator.js\";\nexport { createFetchOrThrow } from \"./createFetchOrThrow.js\";\nexport { createRetryingFetch } from \"./createRetryingFetch.js\";"]}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { createFetchHeaderMutator, createRetryingFetch, createFetchOrThrow, PalantirApiError } from './chunk-
|
|
1
|
+
import { createFetchHeaderMutator, createRetryingFetch, createFetchOrThrow, PalantirApiError } from './chunk-P5HXJTVE.js';
|
|
2
2
|
import { YargsCheckError, ExitProcessError } from './chunk-2U36M44D.js';
|
|
3
3
|
import { findUp } from './chunk-KJFA7LBI.js';
|
|
4
4
|
import { invokeLoginFlow } from './chunk-M2BWWO6L.js';
|
|
@@ -57,10 +57,10 @@ var require_fast_deep_equal = __commonJS({
|
|
|
57
57
|
// ../cli.cmd.typescript/build/esm/generate/handleGenerate.mjs
|
|
58
58
|
init_esm_shims();
|
|
59
59
|
|
|
60
|
-
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.
|
|
60
|
+
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.16.0/node_modules/@osdk/foundry.ontologies/build/esm/index.js
|
|
61
61
|
init_esm_shims();
|
|
62
62
|
|
|
63
|
-
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.
|
|
63
|
+
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.16.0/node_modules/@osdk/foundry.ontologies/build/esm/public/Action.js
|
|
64
64
|
init_esm_shims();
|
|
65
65
|
|
|
66
66
|
// ../../node_modules/.pnpm/@osdk+shared.net.platformapi@1.3.0/node_modules/@osdk/shared.net.platformapi/build/esm/index.js
|
|
@@ -171,34 +171,34 @@ function parseUrl(baseUrl, endpointPath) {
|
|
|
171
171
|
return new URL(`api${endpointPath}`, baseUrl);
|
|
172
172
|
}
|
|
173
173
|
|
|
174
|
-
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.
|
|
174
|
+
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.16.0/node_modules/@osdk/foundry.ontologies/build/esm/public/ActionTypeV2.js
|
|
175
175
|
init_esm_shims();
|
|
176
176
|
|
|
177
|
-
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.
|
|
177
|
+
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.16.0/node_modules/@osdk/foundry.ontologies/build/esm/public/Attachment.js
|
|
178
178
|
init_esm_shims();
|
|
179
179
|
|
|
180
|
-
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.
|
|
180
|
+
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.16.0/node_modules/@osdk/foundry.ontologies/build/esm/public/AttachmentPropertyV2.js
|
|
181
181
|
init_esm_shims();
|
|
182
182
|
|
|
183
|
-
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.
|
|
183
|
+
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.16.0/node_modules/@osdk/foundry.ontologies/build/esm/public/LinkedObjectV2.js
|
|
184
184
|
init_esm_shims();
|
|
185
185
|
|
|
186
|
-
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.
|
|
186
|
+
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.16.0/node_modules/@osdk/foundry.ontologies/build/esm/public/MediaReferenceProperty.js
|
|
187
187
|
init_esm_shims();
|
|
188
188
|
|
|
189
|
-
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.
|
|
189
|
+
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.16.0/node_modules/@osdk/foundry.ontologies/build/esm/public/ObjectTypeV2.js
|
|
190
190
|
init_esm_shims();
|
|
191
191
|
|
|
192
|
-
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.
|
|
192
|
+
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.16.0/node_modules/@osdk/foundry.ontologies/build/esm/public/OntologyInterface.js
|
|
193
193
|
init_esm_shims();
|
|
194
194
|
|
|
195
|
-
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.
|
|
195
|
+
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.16.0/node_modules/@osdk/foundry.ontologies/build/esm/public/OntologyObjectSet.js
|
|
196
196
|
init_esm_shims();
|
|
197
197
|
|
|
198
|
-
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.
|
|
198
|
+
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.16.0/node_modules/@osdk/foundry.ontologies/build/esm/public/OntologyObjectV2.js
|
|
199
199
|
init_esm_shims();
|
|
200
200
|
|
|
201
|
-
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.
|
|
201
|
+
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.16.0/node_modules/@osdk/foundry.ontologies/build/esm/public/OntologyV2.js
|
|
202
202
|
var OntologyV2_exports = {};
|
|
203
203
|
__export(OntologyV2_exports, {
|
|
204
204
|
get: () => get,
|
|
@@ -219,16 +219,16 @@ function getFullMetadata($ctx, ...args) {
|
|
|
219
219
|
return foundryPlatformFetch($ctx, _getFullMetadata, ...args);
|
|
220
220
|
}
|
|
221
221
|
|
|
222
|
-
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.
|
|
222
|
+
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.16.0/node_modules/@osdk/foundry.ontologies/build/esm/public/Query.js
|
|
223
223
|
init_esm_shims();
|
|
224
224
|
|
|
225
|
-
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.
|
|
225
|
+
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.16.0/node_modules/@osdk/foundry.ontologies/build/esm/public/QueryType.js
|
|
226
226
|
init_esm_shims();
|
|
227
227
|
|
|
228
|
-
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.
|
|
228
|
+
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.16.0/node_modules/@osdk/foundry.ontologies/build/esm/public/TimeSeriesPropertyV2.js
|
|
229
229
|
init_esm_shims();
|
|
230
230
|
|
|
231
|
-
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.
|
|
231
|
+
// ../../node_modules/.pnpm/@osdk+foundry.ontologies@2.16.0/node_modules/@osdk/foundry.ontologies/build/esm/public/TimeSeriesValueBankProperty.js
|
|
232
232
|
init_esm_shims();
|
|
233
233
|
|
|
234
234
|
// ../generator/build/esm/index.js
|
|
@@ -731,6 +731,19 @@ function wireQueryDataTypeToQueryDataTypeDefinition(input) {
|
|
|
731
731
|
nullable: false
|
|
732
732
|
};
|
|
733
733
|
case "entrySet":
|
|
734
|
+
const keyType = wireQueryDataTypeToQueryDataTypeDefinition(input.keyType);
|
|
735
|
+
if (!validMapKeyTypes.includes(keyType.type)) {
|
|
736
|
+
throw new Error("Map types with a key type of " + keyType.type + " are not supported" + validMapKeyTypes.toString());
|
|
737
|
+
}
|
|
738
|
+
if (keyType.multiplicity === true) {
|
|
739
|
+
throw new Error("Map types cannot have keys as arrays");
|
|
740
|
+
}
|
|
741
|
+
return {
|
|
742
|
+
type: "map",
|
|
743
|
+
nullable: false,
|
|
744
|
+
keyType,
|
|
745
|
+
valueType: wireQueryDataTypeToQueryDataTypeDefinition(input.valueType)
|
|
746
|
+
};
|
|
734
747
|
case "null":
|
|
735
748
|
case "unsupported":
|
|
736
749
|
throw new Error(`Unable to process query because the server indicated an unsupported QueryDataType.type: ${input.type}. Please check that your query is using supported types.`);
|
|
@@ -775,6 +788,7 @@ function get3DQueryAggregationProps(input) {
|
|
|
775
788
|
function guardInvalidKeyTypes(key2) {
|
|
776
789
|
return key2.type === "string" || key2.type === "boolean";
|
|
777
790
|
}
|
|
791
|
+
var validMapKeyTypes = ["string", "object", "double", "float", "integer", "long", "date", "timestamp", "byte", "datetime", "decimal", "marking", "short", "objectType"];
|
|
778
792
|
|
|
779
793
|
// ../generator-converters/build/esm/wireQueryTypeV2ToSdkQueryMetadata.js
|
|
780
794
|
init_esm_shims();
|
|
@@ -22076,6 +22090,10 @@ function getObjectTypesFromQueryDataType(dataType, types) {
|
|
|
22076
22090
|
getObjectTypesFromQueryDataType(type2, types);
|
|
22077
22091
|
}
|
|
22078
22092
|
return;
|
|
22093
|
+
case "entrySet":
|
|
22094
|
+
getObjectTypesFromQueryDataType(dataType.keyType, types);
|
|
22095
|
+
getObjectTypesFromQueryDataType(dataType.valueType, types);
|
|
22096
|
+
return;
|
|
22079
22097
|
case "attachment":
|
|
22080
22098
|
case "boolean":
|
|
22081
22099
|
case "date":
|
|
@@ -22138,7 +22156,7 @@ async function generateV2QueryFile(fs9, outDir, relOutDir, query, importExt, ont
|
|
|
22138
22156
|
const outputBase = deleteUndefineds(wireQueryDataTypeToQueryDataTypeDefinition(query.output));
|
|
22139
22157
|
objectTypes.length > 0 ? objectTypes.map((apiNameObj) => `"${apiNameObj}"`).join("|") : "never";
|
|
22140
22158
|
await fs9.writeFile(path19__default.join(outDir, `${query.shortApiName}.ts`), await formatTs(`
|
|
22141
|
-
import type { QueryDefinition
|
|
22159
|
+
import type { ObjectSpecifier, QueryDefinition, QueryParam, QueryResult, VersionBound} from "${forInternalUse ? "@osdk/api" : "@osdk/client"}";
|
|
22142
22160
|
import type { $ExpectedClientVersion } from "../../OntologyMetadata${importExt}";
|
|
22143
22161
|
import { $osdkMetadata} from "../../OntologyMetadata${importExt}";
|
|
22144
22162
|
${importObjects}
|
|
@@ -22242,7 +22260,7 @@ function queryParamJsDoc(param, {
|
|
|
22242
22260
|
`;
|
|
22243
22261
|
return ret;
|
|
22244
22262
|
}
|
|
22245
|
-
function getQueryParamType(enhancedOntology, input, type2) {
|
|
22263
|
+
function getQueryParamType(enhancedOntology, input, type2, isMapKey = false) {
|
|
22246
22264
|
let inner = `unknown /* ${input.type} */`;
|
|
22247
22265
|
switch (input.type) {
|
|
22248
22266
|
case "date":
|
|
@@ -22276,6 +22294,10 @@ function getQueryParamType(enhancedOntology, input, type2) {
|
|
|
22276
22294
|
"${input.threeDimensionalAggregation.valueType.valueType}">`;
|
|
22277
22295
|
break;
|
|
22278
22296
|
case "object":
|
|
22297
|
+
if (isMapKey) {
|
|
22298
|
+
inner = `ObjectSpecifier<${enhancedOntology.requireObjectType(input.object).getImportedDefinitionIdentifier(true)}>`;
|
|
22299
|
+
break;
|
|
22300
|
+
}
|
|
22279
22301
|
inner = `Query${type2}.ObjectType<${enhancedOntology.requireObjectType(input.object).getImportedDefinitionIdentifier(true)}>`;
|
|
22280
22302
|
break;
|
|
22281
22303
|
case "objectSet":
|
|
@@ -22287,6 +22309,8 @@ function getQueryParamType(enhancedOntology, input, type2) {
|
|
|
22287
22309
|
case "union":
|
|
22288
22310
|
inner = input.union.map((u) => getQueryParamType(enhancedOntology, u, type2)).join(" | ");
|
|
22289
22311
|
break;
|
|
22312
|
+
case "map":
|
|
22313
|
+
inner = `Record<${getQueryParamType(enhancedOntology, input.keyType, type2, true)}, ${getQueryParamType(enhancedOntology, input.valueType, type2)}>`;
|
|
22290
22314
|
}
|
|
22291
22315
|
if (input.multiplicity && type2 === "Param") {
|
|
22292
22316
|
return `ReadonlyArray<${inner}>`;
|
|
@@ -22490,7 +22514,7 @@ function createSharedClientContext(baseUrl, tokenProvider, userAgent, fetchFn =
|
|
|
22490
22514
|
|
|
22491
22515
|
// ../cli.cmd.typescript/build/esm/generate/handleGenerate.mjs
|
|
22492
22516
|
var import_fast_deep_equal2 = __toESM(require_fast_deep_equal(), 1);
|
|
22493
|
-
var USER_AGENT = `osdk-cli.cmd.typescript/${"0.26.0-beta.
|
|
22517
|
+
var USER_AGENT = `osdk-cli.cmd.typescript/${"0.26.0-beta.9"}`;
|
|
22494
22518
|
async function handleGenerate(args) {
|
|
22495
22519
|
let success = false;
|
|
22496
22520
|
if (args.ontologyPath) {
|
|
@@ -22626,7 +22650,7 @@ async function generateClientSdk(ontology, args) {
|
|
|
22626
22650
|
}
|
|
22627
22651
|
return true;
|
|
22628
22652
|
}
|
|
22629
|
-
await generateClientSdkPackage(args.packageName, args.version, args.beta ? "2.0" : "1.1", args.outDir, ontology, minimalFs, await getDependencyVersions(), "0.26.0-beta.
|
|
22653
|
+
await generateClientSdkPackage(args.packageName, args.version, args.beta ? "2.0" : "1.1", args.outDir, ontology, minimalFs, await getDependencyVersions(), "0.26.0-beta.9", args.externalObjects, args.externalInterfaces);
|
|
22630
22654
|
return true;
|
|
22631
22655
|
} catch (e) {
|
|
22632
22656
|
consola.error("OSDK generation failed", e.message, e.stack);
|
|
@@ -22653,8 +22677,8 @@ async function getDependencyVersions() {
|
|
|
22653
22677
|
typescriptVersion,
|
|
22654
22678
|
tslibVersion,
|
|
22655
22679
|
areTheTypesWrongVersion,
|
|
22656
|
-
osdkApiVersion: `^${"2.2.0-beta.
|
|
22657
|
-
osdkClientVersion: `^${"2.2.0-beta.
|
|
22680
|
+
osdkApiVersion: `^${"2.2.0-beta.9"}`,
|
|
22681
|
+
osdkClientVersion: `^${"2.2.0-beta.9"}`,
|
|
22658
22682
|
osdkLegacyClientVersion
|
|
22659
22683
|
};
|
|
22660
22684
|
}
|
|
@@ -22693,5 +22717,5 @@ function createNormalFs() {
|
|
|
22693
22717
|
}
|
|
22694
22718
|
|
|
22695
22719
|
export { getDependencyVersions, handleGenerate, updateVersionsIfTheyExist };
|
|
22696
|
-
//# sourceMappingURL=handleGenerate-
|
|
22697
|
-
//# sourceMappingURL=handleGenerate-
|
|
22720
|
+
//# sourceMappingURL=handleGenerate-R3MLMAEG.js.map
|
|
22721
|
+
//# sourceMappingURL=handleGenerate-R3MLMAEG.js.map
|