@osdk/foundry.thirdpartyapplications 2.1.0-beta.4 → 2.1.0-beta.5
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 +16 -0
- package/build/browser/_components.d.ts +55 -0
- package/build/browser/_components.d.ts.map +1 -0
- package/build/browser/_components.js +17 -0
- package/build/browser/_components.js.map +1 -0
- package/build/browser/_errors.d.ts +136 -0
- package/build/browser/_errors.d.ts.map +1 -0
- package/build/browser/_errors.js +17 -0
- package/build/browser/_errors.js.map +1 -0
- package/build/browser/index.d.ts +6 -0
- package/build/browser/index.d.ts.map +1 -0
- package/build/browser/index.js +18 -5
- package/build/browser/index.js.map +1 -1
- package/build/browser/public/ThirdPartyApplication.d.ts +18 -0
- package/build/browser/public/ThirdPartyApplication.d.ts.map +1 -0
- package/build/browser/public/ThirdPartyApplication.js +29 -3
- package/build/browser/public/ThirdPartyApplication.js.map +1 -1
- package/build/browser/public/Version.d.ts +68 -0
- package/build/browser/public/Version.d.ts.map +1 -0
- package/build/browser/public/Version.js +67 -3
- package/build/browser/public/Version.js.map +1 -1
- package/build/browser/public/Website.d.ts +47 -0
- package/build/browser/public/Website.d.ts.map +1 -0
- package/build/browser/public/Website.js +53 -3
- package/build/browser/public/Website.js.map +1 -1
- package/build/esm/_components.d.ts +2 -2
- package/build/esm/_components.d.ts.map +1 -1
- package/build/esm/_components.js +17 -0
- package/build/esm/_components.js.map +1 -0
- package/build/esm/_errors.js +17 -0
- package/build/esm/_errors.js.map +1 -0
- package/build/esm/index.js +18 -5
- package/build/esm/index.js.map +1 -1
- package/build/esm/public/ThirdPartyApplication.d.ts +5 -5
- package/build/esm/public/ThirdPartyApplication.d.ts.map +1 -1
- package/build/esm/public/ThirdPartyApplication.js +29 -3
- package/build/esm/public/ThirdPartyApplication.js.map +1 -1
- package/build/esm/public/Version.d.ts +18 -18
- package/build/esm/public/Version.d.ts.map +1 -1
- package/build/esm/public/Version.js +67 -3
- package/build/esm/public/Version.js.map +1 -1
- package/build/esm/public/Website.d.ts +12 -12
- package/build/esm/public/Website.d.ts.map +1 -1
- package/build/esm/public/Website.js +53 -3
- package/build/esm/public/Website.js.map +1 -1
- package/package.json +8 -9
- package/build/browser/chunk-7CHYGF2Q.js +0 -16
- package/build/browser/chunk-7CHYGF2Q.js.map +0 -1
- package/build/browser/chunk-HRDB4MW6.js +0 -26
- package/build/browser/chunk-HRDB4MW6.js.map +0 -1
- package/build/browser/chunk-PZ5AY32C.js +0 -9
- package/build/browser/chunk-PZ5AY32C.js.map +0 -1
- package/build/browser/chunk-TCRBFE2A.js +0 -31
- package/build/browser/chunk-TCRBFE2A.js.map +0 -1
- package/build/esm/chunk-7CHYGF2Q.js +0 -16
- package/build/esm/chunk-7CHYGF2Q.js.map +0 -1
- package/build/esm/chunk-HRDB4MW6.js +0 -26
- package/build/esm/chunk-HRDB4MW6.js.map +0 -1
- package/build/esm/chunk-PZ5AY32C.js +0 -9
- package/build/esm/chunk-PZ5AY32C.js.map +0 -1
- package/build/esm/chunk-TCRBFE2A.js +0 -31
- package/build/esm/chunk-TCRBFE2A.js.map +0 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"Website.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_getWebsite","getWebsite","$ctx","args","_deployWebsite","deployWebsite","_undeployWebsite","undeployWebsite"],"sources":["Website.js"],"sourcesContent":["/*\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 */\nimport { foundryPlatformFetch as $foundryPlatformFetch } from \"@osdk/shared.net.platformapi\";\n//\nconst _getWebsite = [0, \"/v2/thirdPartyApplications/{0}/website\", 2];\n/**\n * Get the Website.\n *\n * @beta\n *\n * Required Scopes: [third-party-application:deploy-application-website]\n * URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website\n */\nexport function getWebsite($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _getWebsite, ...args);\n}\nconst _deployWebsite = [1, \"/v2/thirdPartyApplications/{0}/website/deploy\", 3];\n/**\n * Deploy a version of the Website.\n *\n * @beta\n *\n * Required Scopes: [third-party-application:deploy-application-website]\n * URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/deploy\n */\nexport function deployWebsite($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _deployWebsite, ...args);\n}\nconst _undeployWebsite = [1, \"/v2/thirdPartyApplications/{0}/website/undeploy\", 2];\n/**\n * Remove the currently deployed version of the Website.\n *\n * @beta\n *\n * Required Scopes: [third-party-application:deploy-application-website]\n * URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/undeploy\n */\nexport function undeployWebsite($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _undeployWebsite, ...args);\n}\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAASA,oBAAoB,IAAIC,qBAAqB,QAAQ,8BAA8B;AAC5F;AACA,MAAMC,WAAW,GAAG,CAAC,CAAC,EAAE,wCAAwC,EAAE,CAAC,CAAC;AACpE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,UAAUA,CAACC,IAAI,EAAE,GAAGC,IAAI,EAAE;EACtC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEF,WAAW,EAAE,GAAGG,IAAI,CAAC;AAC5D;AACA,MAAMC,cAAc,GAAG,CAAC,CAAC,EAAE,+CAA+C,EAAE,CAAC,CAAC;AAC9E;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,aAAaA,CAACH,IAAI,EAAE,GAAGC,IAAI,EAAE;EACzC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEE,cAAc,EAAE,GAAGD,IAAI,CAAC;AAC/D;AACA,MAAMG,gBAAgB,GAAG,CAAC,CAAC,EAAE,iDAAiD,EAAE,CAAC,CAAC;AAClF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,eAAeA,CAACL,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC3C,OAAOJ,qBAAqB,CAACG,IAAI,EAAEI,gBAAgB,EAAE,GAAGH,IAAI,CAAC;AACjE","ignoreList":[]}
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import type * as _Core from "@osdk/foundry.core";
|
|
2
2
|
export type LooselyBrandedString<T extends string> = string & {
|
|
3
3
|
__LOOSE_BRAND?: T;
|
|
4
4
|
};
|
|
@@ -13,7 +13,7 @@ export interface DeployWebsiteRequest {
|
|
|
13
13
|
*/
|
|
14
14
|
export interface ListVersionsResponse {
|
|
15
15
|
data: Array<Version>;
|
|
16
|
-
nextPageToken?: PageToken;
|
|
16
|
+
nextPageToken?: _Core.PageToken;
|
|
17
17
|
}
|
|
18
18
|
/**
|
|
19
19
|
* A subdomain from which a website is served.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_components.d.ts","sourceRoot":"","sources":["../../src/_components.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"_components.d.ts","sourceRoot":"","sources":["../../src/_components.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,oBAAoB,CAAC;AAEjD,MAAM,MAAM,oBAAoB,CAAC,CAAC,SAAS,MAAM,IAAI,MAAM,GAAG;IAC5D,aAAa,CAAC,EAAE,CAAC,CAAC;CACnB,CAAC;AAEF;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,OAAO,EAAE,cAAc,CAAC;CACzB;AAED;;GAEG;AACH,MAAM,WAAW,oBAAoB;IACnC,IAAI,EAAE,KAAK,CAAC,OAAO,CAAC,CAAC;IACrB,aAAa,CAAC,EAAE,KAAK,CAAC,SAAS,CAAC;CACjC;AAED;;;;GAIG;AACH,MAAM,MAAM,SAAS,GAAG,oBAAoB,CAAC,WAAW,CAAC,CAAC;AAE1D;;GAEG;AACH,MAAM,WAAW,qBAAqB;IACpC,GAAG,EAAE,wBAAwB,CAAC;CAC/B;AAED;;;;GAIG;AACH,MAAM,MAAM,wBAAwB,GAAG,oBAAoB,CACzD,0BAA0B,CAC3B,CAAC;AAEF;;GAEG;AACH,MAAM,WAAW,OAAO;IACtB,OAAO,EAAE,cAAc,CAAC;CACzB;AAED;;;;GAIG;AACH,MAAM,MAAM,cAAc,GAAG,oBAAoB,CAAC,gBAAgB,CAAC,CAAC;AAEpE;;GAEG;AACH,MAAM,WAAW,OAAO;IACtB,eAAe,CAAC,EAAE,cAAc,CAAC;IACjC,UAAU,EAAE,KAAK,CAAC,SAAS,CAAC,CAAC;CAC9B"}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2024 Palantir Technologies, Inc. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export {};
|
|
17
|
+
//# sourceMappingURL=_components.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"_components.js","names":[],"sources":["_components.js"],"sourcesContent":["/*\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 */\nexport {};\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","ignoreList":[]}
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2024 Palantir Technologies, Inc. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export {};
|
|
17
|
+
//# sourceMappingURL=_errors.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"_errors.js","names":[],"sources":["_errors.js"],"sourcesContent":["/*\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 */\nexport {};\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA","ignoreList":[]}
|
package/build/esm/index.js
CHANGED
|
@@ -1,6 +1,19 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2024 Palantir Technologies, Inc. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
export * as ThirdPartyApplications from "./public/ThirdPartyApplication.js";
|
|
17
|
+
export * as Versions from "./public/Version.js";
|
|
18
|
+
export * as Websites from "./public/Website.js";
|
|
6
19
|
//# sourceMappingURL=index.js.map
|
package/build/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"index.js","names":["ThirdPartyApplications","Versions","Websites"],"sources":["index.js"],"sourcesContent":["/*\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 */\nexport * as ThirdPartyApplications from \"./public/ThirdPartyApplication.js\";\nexport * as Versions from \"./public/Version.js\";\nexport * as Websites from \"./public/Website.js\";\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,KAAKA,sBAAsB,MAAM,mCAAmC;AAC3E,OAAO,KAAKC,QAAQ,MAAM,qBAAqB;AAC/C,OAAO,KAAKC,QAAQ,MAAM,qBAAqB","ignoreList":[]}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import type * as _Core from "@osdk/foundry.core";
|
|
2
2
|
import type { SharedClient as $Client, SharedClientContext as $ClientContext } from "@osdk/shared.client";
|
|
3
|
-
import type
|
|
3
|
+
import type * as _ThirdPartyApplications from "../_components.js";
|
|
4
4
|
/**
|
|
5
5
|
* Get the ThirdPartyApplication with the specified rid.
|
|
6
6
|
*
|
|
@@ -10,9 +10,9 @@ import type { ThirdPartyApplication, ThirdPartyApplicationRid } from "../_compon
|
|
|
10
10
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}
|
|
11
11
|
*/
|
|
12
12
|
export declare function getThirdPartyApplication($ctx: $Client | $ClientContext, ...args: [
|
|
13
|
-
thirdPartyApplicationRid: ThirdPartyApplicationRid,
|
|
13
|
+
thirdPartyApplicationRid: _ThirdPartyApplications.ThirdPartyApplicationRid,
|
|
14
14
|
$queryParams?: {
|
|
15
|
-
preview?: PreviewMode | undefined;
|
|
15
|
+
preview?: _Core.PreviewMode | undefined;
|
|
16
16
|
}
|
|
17
|
-
]): Promise<ThirdPartyApplication>;
|
|
17
|
+
]): Promise<_ThirdPartyApplications.ThirdPartyApplication>;
|
|
18
18
|
//# sourceMappingURL=ThirdPartyApplication.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"ThirdPartyApplication.d.ts","sourceRoot":"","sources":["../../../src/public/ThirdPartyApplication.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"ThirdPartyApplication.d.ts","sourceRoot":"","sources":["../../../src/public/ThirdPartyApplication.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,oBAAoB,CAAC;AACjD,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,qBAAqB,CAAC;AAG7B,OAAO,KAAK,KAAK,uBAAuB,MAAM,mBAAmB,CAAC;AAWlE;;;;;;;GAOG;AACH,wBAAgB,wBAAwB,CACtC,IAAI,EAAE,OAAO,GAAG,cAAc,EAC9B,GAAG,IAAI,EAAE;IACP,wBAAwB,EAAE,uBAAuB,CAAC,wBAAwB;IAE1E,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,uBAAuB,CAAC,qBAAqB,CAAC,CAExD"}
|
|
@@ -1,4 +1,30 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2024 Palantir Technologies, Inc. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { foundryPlatformFetch as $foundryPlatformFetch } from "@osdk/shared.net.platformapi";
|
|
17
|
+
//
|
|
18
|
+
const _getThirdPartyApplication = [0, "/v2/thirdPartyApplications/{0}", 2];
|
|
19
|
+
/**
|
|
20
|
+
* Get the ThirdPartyApplication with the specified rid.
|
|
21
|
+
*
|
|
22
|
+
* @alpha
|
|
23
|
+
*
|
|
24
|
+
* Required Scopes: [third-party-application:deploy-application-website]
|
|
25
|
+
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}
|
|
26
|
+
*/
|
|
27
|
+
export function getThirdPartyApplication($ctx, ...args) {
|
|
28
|
+
return $foundryPlatformFetch($ctx, _getThirdPartyApplication, ...args);
|
|
29
|
+
}
|
|
4
30
|
//# sourceMappingURL=ThirdPartyApplication.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"ThirdPartyApplication.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_getThirdPartyApplication","getThirdPartyApplication","$ctx","args"],"sources":["ThirdPartyApplication.js"],"sourcesContent":["/*\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 */\nimport { foundryPlatformFetch as $foundryPlatformFetch } from \"@osdk/shared.net.platformapi\";\n//\nconst _getThirdPartyApplication = [0, \"/v2/thirdPartyApplications/{0}\", 2];\n/**\n * Get the ThirdPartyApplication with the specified rid.\n *\n * @alpha\n *\n * Required Scopes: [third-party-application:deploy-application-website]\n * URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}\n */\nexport function getThirdPartyApplication($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _getThirdPartyApplication, ...args);\n}\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAASA,oBAAoB,IAAIC,qBAAqB,QAAQ,8BAA8B;AAC5F;AACA,MAAMC,yBAAyB,GAAG,CAAC,CAAC,EAAE,gCAAgC,EAAE,CAAC,CAAC;AAC1E;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,wBAAwBA,CAACC,IAAI,EAAE,GAAGC,IAAI,EAAE;EACpD,OAAOJ,qBAAqB,CAACG,IAAI,EAAEF,yBAAyB,EAAE,GAAGG,IAAI,CAAC;AAC1E","ignoreList":[]}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import type * as _Core from "@osdk/foundry.core";
|
|
2
2
|
import type { SharedClient as $Client, SharedClientContext as $ClientContext } from "@osdk/shared.client";
|
|
3
|
-
import type
|
|
3
|
+
import type * as _ThirdPartyApplications from "../_components.js";
|
|
4
4
|
/**
|
|
5
5
|
* Delete the Version with the specified version.
|
|
6
6
|
*
|
|
@@ -10,10 +10,10 @@ import type { ListVersionsResponse, ThirdPartyApplicationRid, Version, VersionVe
|
|
|
10
10
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions/{versionVersion}
|
|
11
11
|
*/
|
|
12
12
|
export declare function deleteVersion($ctx: $Client | $ClientContext, ...args: [
|
|
13
|
-
thirdPartyApplicationRid: ThirdPartyApplicationRid,
|
|
14
|
-
versionVersion: VersionVersion,
|
|
13
|
+
thirdPartyApplicationRid: _ThirdPartyApplications.ThirdPartyApplicationRid,
|
|
14
|
+
versionVersion: _ThirdPartyApplications.VersionVersion,
|
|
15
15
|
$queryParams?: {
|
|
16
|
-
preview?: PreviewMode | undefined;
|
|
16
|
+
preview?: _Core.PreviewMode | undefined;
|
|
17
17
|
}
|
|
18
18
|
]): Promise<void>;
|
|
19
19
|
/**
|
|
@@ -27,13 +27,13 @@ export declare function deleteVersion($ctx: $Client | $ClientContext, ...args: [
|
|
|
27
27
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions
|
|
28
28
|
*/
|
|
29
29
|
export declare function listVersions($ctx: $Client | $ClientContext, ...args: [
|
|
30
|
-
thirdPartyApplicationRid: ThirdPartyApplicationRid,
|
|
30
|
+
thirdPartyApplicationRid: _ThirdPartyApplications.ThirdPartyApplicationRid,
|
|
31
31
|
$queryParams?: {
|
|
32
|
-
pageSize?: PageSize | undefined;
|
|
33
|
-
pageToken?: PageToken | undefined;
|
|
34
|
-
preview?: PreviewMode | undefined;
|
|
32
|
+
pageSize?: _Core.PageSize | undefined;
|
|
33
|
+
pageToken?: _Core.PageToken | undefined;
|
|
34
|
+
preview?: _Core.PreviewMode | undefined;
|
|
35
35
|
}
|
|
36
|
-
]): Promise<ListVersionsResponse>;
|
|
36
|
+
]): Promise<_ThirdPartyApplications.ListVersionsResponse>;
|
|
37
37
|
/**
|
|
38
38
|
* Get the Version with the specified version.
|
|
39
39
|
*
|
|
@@ -43,12 +43,12 @@ export declare function listVersions($ctx: $Client | $ClientContext, ...args: [
|
|
|
43
43
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions/{versionVersion}
|
|
44
44
|
*/
|
|
45
45
|
export declare function getVersion($ctx: $Client | $ClientContext, ...args: [
|
|
46
|
-
thirdPartyApplicationRid: ThirdPartyApplicationRid,
|
|
47
|
-
versionVersion: VersionVersion,
|
|
46
|
+
thirdPartyApplicationRid: _ThirdPartyApplications.ThirdPartyApplicationRid,
|
|
47
|
+
versionVersion: _ThirdPartyApplications.VersionVersion,
|
|
48
48
|
$queryParams?: {
|
|
49
|
-
preview?: PreviewMode | undefined;
|
|
49
|
+
preview?: _Core.PreviewMode | undefined;
|
|
50
50
|
}
|
|
51
|
-
]): Promise<Version>;
|
|
51
|
+
]): Promise<_ThirdPartyApplications.Version>;
|
|
52
52
|
/**
|
|
53
53
|
* Upload a new version of the Website.
|
|
54
54
|
*
|
|
@@ -58,11 +58,11 @@ export declare function getVersion($ctx: $Client | $ClientContext, ...args: [
|
|
|
58
58
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions/upload
|
|
59
59
|
*/
|
|
60
60
|
export declare function uploadVersion($ctx: $Client | $ClientContext, ...args: [
|
|
61
|
-
thirdPartyApplicationRid: ThirdPartyApplicationRid,
|
|
61
|
+
thirdPartyApplicationRid: _ThirdPartyApplications.ThirdPartyApplicationRid,
|
|
62
62
|
$body: Blob,
|
|
63
63
|
$queryParams: {
|
|
64
|
-
version: VersionVersion;
|
|
65
|
-
preview?: PreviewMode | undefined;
|
|
64
|
+
version: _ThirdPartyApplications.VersionVersion;
|
|
65
|
+
preview?: _Core.PreviewMode | undefined;
|
|
66
66
|
}
|
|
67
|
-
]): Promise<Version>;
|
|
67
|
+
]): Promise<_ThirdPartyApplications.Version>;
|
|
68
68
|
//# sourceMappingURL=Version.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Version.d.ts","sourceRoot":"","sources":["../../../src/public/Version.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"Version.d.ts","sourceRoot":"","sources":["../../../src/public/Version.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,oBAAoB,CAAC;AACjD,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,qBAAqB,CAAC;AAG7B,OAAO,KAAK,KAAK,uBAAuB,MAAM,mBAAmB,CAAC;AAYlE;;;;;;;GAOG;AACH,wBAAgB,aAAa,CAC3B,IAAI,EAAE,OAAO,GAAG,cAAc,EAC9B,GAAG,IAAI,EAAE;IACP,wBAAwB,EAAE,uBAAuB,CAAC,wBAAwB;IAC1E,cAAc,EAAE,uBAAuB,CAAC,cAAc;IAEtD,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,IAAI,CAAC,CAEf;AAaD;;;;;;;;;GASG;AACH,wBAAgB,YAAY,CAC1B,IAAI,EAAE,OAAO,GAAG,cAAc,EAC9B,GAAG,IAAI,EAAE;IACP,wBAAwB,EAAE,uBAAuB,CAAC,wBAAwB;IAE1E,YAAY,CAAC,EAAE;QACb,QAAQ,CAAC,EAAE,KAAK,CAAC,QAAQ,GAAG,SAAS,CAAC;QACtC,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,SAAS,CAAC;QACxC,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAC;KACzC;CACF,GACA,OAAO,CAAC,uBAAuB,CAAC,oBAAoB,CAAC,CAEvD;AAUD;;;;;;;GAOG;AACH,wBAAgB,UAAU,CACxB,IAAI,EAAE,OAAO,GAAG,cAAc,EAC9B,GAAG,IAAI,EAAE;IACP,wBAAwB,EAAE,uBAAuB,CAAC,wBAAwB;IAC1E,cAAc,EAAE,uBAAuB,CAAC,cAAc;IAEtD,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,uBAAuB,CAAC,OAAO,CAAC,CAE1C;AAkBD;;;;;;;GAOG;AACH,wBAAgB,aAAa,CAC3B,IAAI,EAAE,OAAO,GAAG,cAAc,EAC9B,GAAG,IAAI,EAAE;IACP,wBAAwB,EAAE,uBAAuB,CAAC,wBAAwB;IAC1E,KAAK,EAAE,IAAI;IACX,YAAY,EAAE;QACZ,OAAO,EAAE,uBAAuB,CAAC,cAAc,CAAC;QAChD,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAC;KACzC;CACF,GACA,OAAO,CAAC,uBAAuB,CAAC,OAAO,CAAC,CAE1C"}
|
|
@@ -1,4 +1,68 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2024 Palantir Technologies, Inc. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { foundryPlatformFetch as $foundryPlatformFetch } from "@osdk/shared.net.platformapi";
|
|
17
|
+
//
|
|
18
|
+
const _deleteVersion = [3, "/v2/thirdPartyApplications/{0}/website/versions/{1}", 2];
|
|
19
|
+
/**
|
|
20
|
+
* Delete the Version with the specified version.
|
|
21
|
+
*
|
|
22
|
+
* @beta
|
|
23
|
+
*
|
|
24
|
+
* Required Scopes: [third-party-application:deploy-application-website]
|
|
25
|
+
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions/{versionVersion}
|
|
26
|
+
*/
|
|
27
|
+
export function deleteVersion($ctx, ...args) {
|
|
28
|
+
return $foundryPlatformFetch($ctx, _deleteVersion, ...args);
|
|
29
|
+
}
|
|
30
|
+
const _listVersions = [0, "/v2/thirdPartyApplications/{0}/website/versions", 2];
|
|
31
|
+
/**
|
|
32
|
+
* Lists all Versions.
|
|
33
|
+
*
|
|
34
|
+
* This is a paged endpoint. Each page may be smaller or larger than the requested page size. However, it is guaranteed that if there are more results available, the `nextPageToken` field will be populated. To get the next page, make the same request again, but set the value of the `pageToken` query parameter to be value of the `nextPageToken` value of the previous response. If there is no `nextPageToken` field in the response, you are on the last page.
|
|
35
|
+
*
|
|
36
|
+
* @beta
|
|
37
|
+
*
|
|
38
|
+
* Required Scopes: [third-party-application:deploy-application-website]
|
|
39
|
+
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions
|
|
40
|
+
*/
|
|
41
|
+
export function listVersions($ctx, ...args) {
|
|
42
|
+
return $foundryPlatformFetch($ctx, _listVersions, ...args);
|
|
43
|
+
}
|
|
44
|
+
const _getVersion = [0, "/v2/thirdPartyApplications/{0}/website/versions/{1}", 2];
|
|
45
|
+
/**
|
|
46
|
+
* Get the Version with the specified version.
|
|
47
|
+
*
|
|
48
|
+
* @beta
|
|
49
|
+
*
|
|
50
|
+
* Required Scopes: [third-party-application:deploy-application-website]
|
|
51
|
+
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions/{versionVersion}
|
|
52
|
+
*/
|
|
53
|
+
export function getVersion($ctx, ...args) {
|
|
54
|
+
return $foundryPlatformFetch($ctx, _getVersion, ...args);
|
|
55
|
+
}
|
|
56
|
+
const _uploadVersion = [1, "/v2/thirdPartyApplications/{0}/website/versions/upload", 3, "application/octet-stream"];
|
|
57
|
+
/**
|
|
58
|
+
* Upload a new version of the Website.
|
|
59
|
+
*
|
|
60
|
+
* @beta
|
|
61
|
+
*
|
|
62
|
+
* Required Scopes: [third-party-application:deploy-application-website]
|
|
63
|
+
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions/upload
|
|
64
|
+
*/
|
|
65
|
+
export function uploadVersion($ctx, ...args) {
|
|
66
|
+
return $foundryPlatformFetch($ctx, _uploadVersion, ...args);
|
|
67
|
+
}
|
|
4
68
|
//# sourceMappingURL=Version.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"Version.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_deleteVersion","deleteVersion","$ctx","args","_listVersions","listVersions","_getVersion","getVersion","_uploadVersion","uploadVersion"],"sources":["Version.js"],"sourcesContent":["/*\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 */\nimport { foundryPlatformFetch as $foundryPlatformFetch } from \"@osdk/shared.net.platformapi\";\n//\nconst _deleteVersion = [3, \"/v2/thirdPartyApplications/{0}/website/versions/{1}\", 2];\n/**\n * Delete the Version with the specified version.\n *\n * @beta\n *\n * Required Scopes: [third-party-application:deploy-application-website]\n * URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions/{versionVersion}\n */\nexport function deleteVersion($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _deleteVersion, ...args);\n}\nconst _listVersions = [0, \"/v2/thirdPartyApplications/{0}/website/versions\", 2];\n/**\n * Lists all Versions.\n *\n * This is a paged endpoint. Each page may be smaller or larger than the requested page size. However, it is guaranteed that if there are more results available, the `nextPageToken` field will be populated. To get the next page, make the same request again, but set the value of the `pageToken` query parameter to be value of the `nextPageToken` value of the previous response. If there is no `nextPageToken` field in the response, you are on the last page.\n *\n * @beta\n *\n * Required Scopes: [third-party-application:deploy-application-website]\n * URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions\n */\nexport function listVersions($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _listVersions, ...args);\n}\nconst _getVersion = [0, \"/v2/thirdPartyApplications/{0}/website/versions/{1}\", 2];\n/**\n * Get the Version with the specified version.\n *\n * @beta\n *\n * Required Scopes: [third-party-application:deploy-application-website]\n * URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions/{versionVersion}\n */\nexport function getVersion($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _getVersion, ...args);\n}\nconst _uploadVersion = [\n 1,\n \"/v2/thirdPartyApplications/{0}/website/versions/upload\",\n 3,\n \"application/octet-stream\",\n];\n/**\n * Upload a new version of the Website.\n *\n * @beta\n *\n * Required Scopes: [third-party-application:deploy-application-website]\n * URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions/upload\n */\nexport function uploadVersion($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _uploadVersion, ...args);\n}\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAASA,oBAAoB,IAAIC,qBAAqB,QAAQ,8BAA8B;AAC5F;AACA,MAAMC,cAAc,GAAG,CAAC,CAAC,EAAE,qDAAqD,EAAE,CAAC,CAAC;AACpF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,aAAaA,CAACC,IAAI,EAAE,GAAGC,IAAI,EAAE;EACzC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEF,cAAc,EAAE,GAAGG,IAAI,CAAC;AAC/D;AACA,MAAMC,aAAa,GAAG,CAAC,CAAC,EAAE,iDAAiD,EAAE,CAAC,CAAC;AAC/E;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,YAAYA,CAACH,IAAI,EAAE,GAAGC,IAAI,EAAE;EACxC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEE,aAAa,EAAE,GAAGD,IAAI,CAAC;AAC9D;AACA,MAAMG,WAAW,GAAG,CAAC,CAAC,EAAE,qDAAqD,EAAE,CAAC,CAAC;AACjF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,UAAUA,CAACL,IAAI,EAAE,GAAGC,IAAI,EAAE;EACtC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEI,WAAW,EAAE,GAAGH,IAAI,CAAC;AAC5D;AACA,MAAMK,cAAc,GAAG,CACnB,CAAC,EACD,wDAAwD,EACxD,CAAC,EACD,0BAA0B,CAC7B;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,aAAaA,CAACP,IAAI,EAAE,GAAGC,IAAI,EAAE;EACzC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEM,cAAc,EAAE,GAAGL,IAAI,CAAC;AAC/D","ignoreList":[]}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import type
|
|
1
|
+
import type * as _Core from "@osdk/foundry.core";
|
|
2
2
|
import type { SharedClient as $Client, SharedClientContext as $ClientContext } from "@osdk/shared.client";
|
|
3
|
-
import type
|
|
3
|
+
import type * as _ThirdPartyApplications from "../_components.js";
|
|
4
4
|
/**
|
|
5
5
|
* Get the Website.
|
|
6
6
|
*
|
|
@@ -10,11 +10,11 @@ import type { DeployWebsiteRequest, ThirdPartyApplicationRid, Website } from "..
|
|
|
10
10
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website
|
|
11
11
|
*/
|
|
12
12
|
export declare function getWebsite($ctx: $Client | $ClientContext, ...args: [
|
|
13
|
-
thirdPartyApplicationRid: ThirdPartyApplicationRid,
|
|
13
|
+
thirdPartyApplicationRid: _ThirdPartyApplications.ThirdPartyApplicationRid,
|
|
14
14
|
$queryParams?: {
|
|
15
|
-
preview?: PreviewMode | undefined;
|
|
15
|
+
preview?: _Core.PreviewMode | undefined;
|
|
16
16
|
}
|
|
17
|
-
]): Promise<Website>;
|
|
17
|
+
]): Promise<_ThirdPartyApplications.Website>;
|
|
18
18
|
/**
|
|
19
19
|
* Deploy a version of the Website.
|
|
20
20
|
*
|
|
@@ -24,12 +24,12 @@ export declare function getWebsite($ctx: $Client | $ClientContext, ...args: [
|
|
|
24
24
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/deploy
|
|
25
25
|
*/
|
|
26
26
|
export declare function deployWebsite($ctx: $Client | $ClientContext, ...args: [
|
|
27
|
-
thirdPartyApplicationRid: ThirdPartyApplicationRid,
|
|
28
|
-
$body: DeployWebsiteRequest,
|
|
27
|
+
thirdPartyApplicationRid: _ThirdPartyApplications.ThirdPartyApplicationRid,
|
|
28
|
+
$body: _ThirdPartyApplications.DeployWebsiteRequest,
|
|
29
29
|
$queryParams?: {
|
|
30
|
-
preview?: PreviewMode | undefined;
|
|
30
|
+
preview?: _Core.PreviewMode | undefined;
|
|
31
31
|
}
|
|
32
|
-
]): Promise<Website>;
|
|
32
|
+
]): Promise<_ThirdPartyApplications.Website>;
|
|
33
33
|
/**
|
|
34
34
|
* Remove the currently deployed version of the Website.
|
|
35
35
|
*
|
|
@@ -39,9 +39,9 @@ export declare function deployWebsite($ctx: $Client | $ClientContext, ...args: [
|
|
|
39
39
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/undeploy
|
|
40
40
|
*/
|
|
41
41
|
export declare function undeployWebsite($ctx: $Client | $ClientContext, ...args: [
|
|
42
|
-
thirdPartyApplicationRid: ThirdPartyApplicationRid,
|
|
42
|
+
thirdPartyApplicationRid: _ThirdPartyApplications.ThirdPartyApplicationRid,
|
|
43
43
|
$queryParams?: {
|
|
44
|
-
preview?: PreviewMode | undefined;
|
|
44
|
+
preview?: _Core.PreviewMode | undefined;
|
|
45
45
|
}
|
|
46
|
-
]): Promise<Website>;
|
|
46
|
+
]): Promise<_ThirdPartyApplications.Website>;
|
|
47
47
|
//# sourceMappingURL=Website.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Website.d.ts","sourceRoot":"","sources":["../../../src/public/Website.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"Website.d.ts","sourceRoot":"","sources":["../../../src/public/Website.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,oBAAoB,CAAC;AACjD,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,qBAAqB,CAAC;AAG7B,OAAO,KAAK,KAAK,uBAAuB,MAAM,mBAAmB,CAAC;AAWlE;;;;;;;GAOG;AACH,wBAAgB,UAAU,CACxB,IAAI,EAAE,OAAO,GAAG,cAAc,EAC9B,GAAG,IAAI,EAAE;IACP,wBAAwB,EAAE,uBAAuB,CAAC,wBAAwB;IAE1E,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,uBAAuB,CAAC,OAAO,CAAC,CAE1C;AAUD;;;;;;;GAOG;AACH,wBAAgB,aAAa,CAC3B,IAAI,EAAE,OAAO,GAAG,cAAc,EAC9B,GAAG,IAAI,EAAE;IACP,wBAAwB,EAAE,uBAAuB,CAAC,wBAAwB;IAC1E,KAAK,EAAE,uBAAuB,CAAC,oBAAoB;IACnD,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,uBAAuB,CAAC,OAAO,CAAC,CAE1C;AASD;;;;;;;GAOG;AACH,wBAAgB,eAAe,CAC7B,IAAI,EAAE,OAAO,GAAG,cAAc,EAC9B,GAAG,IAAI,EAAE;IACP,wBAAwB,EAAE,uBAAuB,CAAC,wBAAwB;IAE1E,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,uBAAuB,CAAC,OAAO,CAAC,CAE1C"}
|
|
@@ -1,4 +1,54 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2024 Palantir Technologies, Inc. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { foundryPlatformFetch as $foundryPlatformFetch } from "@osdk/shared.net.platformapi";
|
|
17
|
+
//
|
|
18
|
+
const _getWebsite = [0, "/v2/thirdPartyApplications/{0}/website", 2];
|
|
19
|
+
/**
|
|
20
|
+
* Get the Website.
|
|
21
|
+
*
|
|
22
|
+
* @beta
|
|
23
|
+
*
|
|
24
|
+
* Required Scopes: [third-party-application:deploy-application-website]
|
|
25
|
+
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website
|
|
26
|
+
*/
|
|
27
|
+
export function getWebsite($ctx, ...args) {
|
|
28
|
+
return $foundryPlatformFetch($ctx, _getWebsite, ...args);
|
|
29
|
+
}
|
|
30
|
+
const _deployWebsite = [1, "/v2/thirdPartyApplications/{0}/website/deploy", 3];
|
|
31
|
+
/**
|
|
32
|
+
* Deploy a version of the Website.
|
|
33
|
+
*
|
|
34
|
+
* @beta
|
|
35
|
+
*
|
|
36
|
+
* Required Scopes: [third-party-application:deploy-application-website]
|
|
37
|
+
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/deploy
|
|
38
|
+
*/
|
|
39
|
+
export function deployWebsite($ctx, ...args) {
|
|
40
|
+
return $foundryPlatformFetch($ctx, _deployWebsite, ...args);
|
|
41
|
+
}
|
|
42
|
+
const _undeployWebsite = [1, "/v2/thirdPartyApplications/{0}/website/undeploy", 2];
|
|
43
|
+
/**
|
|
44
|
+
* Remove the currently deployed version of the Website.
|
|
45
|
+
*
|
|
46
|
+
* @beta
|
|
47
|
+
*
|
|
48
|
+
* Required Scopes: [third-party-application:deploy-application-website]
|
|
49
|
+
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/undeploy
|
|
50
|
+
*/
|
|
51
|
+
export function undeployWebsite($ctx, ...args) {
|
|
52
|
+
return $foundryPlatformFetch($ctx, _undeployWebsite, ...args);
|
|
53
|
+
}
|
|
4
54
|
//# sourceMappingURL=Website.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"
|
|
1
|
+
{"version":3,"file":"Website.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_getWebsite","getWebsite","$ctx","args","_deployWebsite","deployWebsite","_undeployWebsite","undeployWebsite"],"sources":["Website.js"],"sourcesContent":["/*\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 */\nimport { foundryPlatformFetch as $foundryPlatformFetch } from \"@osdk/shared.net.platformapi\";\n//\nconst _getWebsite = [0, \"/v2/thirdPartyApplications/{0}/website\", 2];\n/**\n * Get the Website.\n *\n * @beta\n *\n * Required Scopes: [third-party-application:deploy-application-website]\n * URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website\n */\nexport function getWebsite($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _getWebsite, ...args);\n}\nconst _deployWebsite = [1, \"/v2/thirdPartyApplications/{0}/website/deploy\", 3];\n/**\n * Deploy a version of the Website.\n *\n * @beta\n *\n * Required Scopes: [third-party-application:deploy-application-website]\n * URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/deploy\n */\nexport function deployWebsite($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _deployWebsite, ...args);\n}\nconst _undeployWebsite = [1, \"/v2/thirdPartyApplications/{0}/website/undeploy\", 2];\n/**\n * Remove the currently deployed version of the Website.\n *\n * @beta\n *\n * Required Scopes: [third-party-application:deploy-application-website]\n * URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/undeploy\n */\nexport function undeployWebsite($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _undeployWebsite, ...args);\n}\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,SAASA,oBAAoB,IAAIC,qBAAqB,QAAQ,8BAA8B;AAC5F;AACA,MAAMC,WAAW,GAAG,CAAC,CAAC,EAAE,wCAAwC,EAAE,CAAC,CAAC;AACpE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,UAAUA,CAACC,IAAI,EAAE,GAAGC,IAAI,EAAE;EACtC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEF,WAAW,EAAE,GAAGG,IAAI,CAAC;AAC5D;AACA,MAAMC,cAAc,GAAG,CAAC,CAAC,EAAE,+CAA+C,EAAE,CAAC,CAAC;AAC9E;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,aAAaA,CAACH,IAAI,EAAE,GAAGC,IAAI,EAAE;EACzC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEE,cAAc,EAAE,GAAGD,IAAI,CAAC;AAC/D;AACA,MAAMG,gBAAgB,GAAG,CAAC,CAAC,EAAE,iDAAiD,EAAE,CAAC,CAAC;AAClF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,eAAeA,CAACL,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC3C,OAAOJ,qBAAqB,CAACG,IAAI,EAAEI,gBAAgB,EAAE,GAAGH,IAAI,CAAC;AACjE","ignoreList":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osdk/foundry.thirdpartyapplications",
|
|
3
|
-
"version": "2.1.0-beta.
|
|
3
|
+
"version": "2.1.0-beta.5",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -17,15 +17,15 @@
|
|
|
17
17
|
}
|
|
18
18
|
},
|
|
19
19
|
"dependencies": {
|
|
20
|
-
"@osdk/foundry.core": "2.1.0-beta.
|
|
21
|
-
"@osdk/shared.net.platformapi": "~0.3.0-beta.
|
|
22
|
-
"@osdk/shared.client": "
|
|
20
|
+
"@osdk/foundry.core": "2.1.0-beta.5",
|
|
21
|
+
"@osdk/shared.net.platformapi": "~0.3.0-beta.2",
|
|
22
|
+
"@osdk/shared.client": "^1.0.0-beta.2"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
25
|
"typescript": "^5.5.4",
|
|
26
|
-
"@osdk/monorepo.tsup": "~0.0.0",
|
|
27
26
|
"@osdk/monorepo.tsconfig": "~0.0.0",
|
|
28
|
-
"@osdk/monorepo.api-extractor": "~0.0.0"
|
|
27
|
+
"@osdk/monorepo.api-extractor": "~0.0.0",
|
|
28
|
+
"@osdk/monorepo.tsup": "~0.0.0"
|
|
29
29
|
},
|
|
30
30
|
"publishConfig": {
|
|
31
31
|
"access": "public"
|
|
@@ -44,7 +44,7 @@
|
|
|
44
44
|
"sls": {
|
|
45
45
|
"dependencies": {
|
|
46
46
|
"com.palantir.foundry.api:api-gateway": {
|
|
47
|
-
"minVersion": "1.
|
|
47
|
+
"minVersion": "1.934.0",
|
|
48
48
|
"maxVersion": "1.x.x",
|
|
49
49
|
"optional": true
|
|
50
50
|
}
|
|
@@ -57,7 +57,6 @@
|
|
|
57
57
|
"clean": "rm -rf lib dist types build tsconfig.tsbuildinfo",
|
|
58
58
|
"fix-lint": "eslint . --fix && dprint fmt --config $(find-up dprint.json)",
|
|
59
59
|
"lint": "eslint . && dprint check --config $(find-up dprint.json)",
|
|
60
|
-
"transpile": "monorepo.tool.transpile"
|
|
61
|
-
"typecheck": "monorepo.tool.typecheck esm"
|
|
60
|
+
"transpile": "monorepo.tool.transpile"
|
|
62
61
|
}
|
|
63
62
|
}
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { __export } from './chunk-PZ5AY32C.js';
|
|
2
|
-
import { foundryPlatformFetch } from '@osdk/shared.net.platformapi';
|
|
3
|
-
|
|
4
|
-
// src/public/ThirdPartyApplication.ts
|
|
5
|
-
var ThirdPartyApplication_exports = {};
|
|
6
|
-
__export(ThirdPartyApplication_exports, {
|
|
7
|
-
getThirdPartyApplication: () => getThirdPartyApplication
|
|
8
|
-
});
|
|
9
|
-
var _getThirdPartyApplication = [0, "/v2/thirdPartyApplications/{0}", 2];
|
|
10
|
-
function getThirdPartyApplication($ctx, ...args) {
|
|
11
|
-
return foundryPlatformFetch($ctx, _getThirdPartyApplication, ...args);
|
|
12
|
-
}
|
|
13
|
-
|
|
14
|
-
export { ThirdPartyApplication_exports, getThirdPartyApplication };
|
|
15
|
-
//# sourceMappingURL=chunk-7CHYGF2Q.js.map
|
|
16
|
-
//# sourceMappingURL=chunk-7CHYGF2Q.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/public/ThirdPartyApplication.ts"],"names":["$foundryPlatformFetch"],"mappings":";;;;AAAA,IAAA,6BAAA,GAAA,GAAA;AAAA,QAAA,CAAA,6BAAA,EAAA;AAAA,EAAA,wBAAA,EAAA,MAAA,wBAAA;AAAA,CAAA,CAAA,CAAA;AAmBA,IAAM,yBAA4B,GAAA,CAAC,CAAG,EAAA,gCAAA,EAAkC,CAAC,CAAA,CAAA;AAUlE,SAAS,wBAAA,CAAyB,SAAS,IAAM,EAAA;AACtD,EAAA,OAAOA,oBAAsB,CAAA,IAAA,EAAM,yBAA2B,EAAA,GAAG,IAAI,CAAA,CAAA;AACvE","file":"chunk-7CHYGF2Q.js","sourcesContent":["/*\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 { foundryPlatformFetch as $foundryPlatformFetch } from \"@osdk/shared.net.platformapi\";\n//\n\nconst _getThirdPartyApplication = [0, \"/v2/thirdPartyApplications/{0}\", 2];\n\n/**\n * Get the ThirdPartyApplication with the specified rid.\n *\n * @alpha\n *\n * Required Scopes: [third-party-application:deploy-application-website]\n * URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}\n */\nexport function getThirdPartyApplication($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _getThirdPartyApplication, ...args);\n}"]}
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { __export } from './chunk-PZ5AY32C.js';
|
|
2
|
-
import { foundryPlatformFetch } from '@osdk/shared.net.platformapi';
|
|
3
|
-
|
|
4
|
-
// src/public/Website.ts
|
|
5
|
-
var Website_exports = {};
|
|
6
|
-
__export(Website_exports, {
|
|
7
|
-
deployWebsite: () => deployWebsite,
|
|
8
|
-
getWebsite: () => getWebsite,
|
|
9
|
-
undeployWebsite: () => undeployWebsite
|
|
10
|
-
});
|
|
11
|
-
var _getWebsite = [0, "/v2/thirdPartyApplications/{0}/website", 2];
|
|
12
|
-
function getWebsite($ctx, ...args) {
|
|
13
|
-
return foundryPlatformFetch($ctx, _getWebsite, ...args);
|
|
14
|
-
}
|
|
15
|
-
var _deployWebsite = [1, "/v2/thirdPartyApplications/{0}/website/deploy", 3];
|
|
16
|
-
function deployWebsite($ctx, ...args) {
|
|
17
|
-
return foundryPlatformFetch($ctx, _deployWebsite, ...args);
|
|
18
|
-
}
|
|
19
|
-
var _undeployWebsite = [1, "/v2/thirdPartyApplications/{0}/website/undeploy", 2];
|
|
20
|
-
function undeployWebsite($ctx, ...args) {
|
|
21
|
-
return foundryPlatformFetch($ctx, _undeployWebsite, ...args);
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
export { Website_exports, deployWebsite, getWebsite, undeployWebsite };
|
|
25
|
-
//# sourceMappingURL=chunk-HRDB4MW6.js.map
|
|
26
|
-
//# sourceMappingURL=chunk-HRDB4MW6.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":["../../src/public/Website.ts"],"names":["$foundryPlatformFetch"],"mappings":";;;;AAAA,IAAA,eAAA,GAAA,GAAA;AAAA,QAAA,CAAA,eAAA,EAAA;AAAA,EAAA,aAAA,EAAA,MAAA,aAAA;AAAA,EAAA,UAAA,EAAA,MAAA,UAAA;AAAA,EAAA,eAAA,EAAA,MAAA,eAAA;AAAA,CAAA,CAAA,CAAA;AAmBA,IAAM,WAAc,GAAA,CAAC,CAAG,EAAA,wCAAA,EAA0C,CAAC,CAAA,CAAA;AAU5D,SAAS,UAAA,CAAW,SAAS,IAAM,EAAA;AACxC,EAAA,OAAOA,oBAAsB,CAAA,IAAA,EAAM,WAAa,EAAA,GAAG,IAAI,CAAA,CAAA;AACzD,CAAA;AACA,IAAM,cAAiB,GAAA,CAAC,CAAG,EAAA,+CAAA,EAAiD,CAAC,CAAA,CAAA;AAUtE,SAAS,aAAA,CAAc,SAAS,IAAM,EAAA;AAC3C,EAAA,OAAOA,oBAAsB,CAAA,IAAA,EAAM,cAAgB,EAAA,GAAG,IAAI,CAAA,CAAA;AAC5D,CAAA;AACA,IAAM,gBAAmB,GAAA,CAAC,CAAG,EAAA,iDAAA,EAAmD,CAAC,CAAA,CAAA;AAU1E,SAAS,eAAA,CAAgB,SAAS,IAAM,EAAA;AAC7C,EAAA,OAAOA,oBAAsB,CAAA,IAAA,EAAM,gBAAkB,EAAA,GAAG,IAAI,CAAA,CAAA;AAC9D","file":"chunk-HRDB4MW6.js","sourcesContent":["/*\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 { foundryPlatformFetch as $foundryPlatformFetch } from \"@osdk/shared.net.platformapi\";\n//\n\nconst _getWebsite = [0, \"/v2/thirdPartyApplications/{0}/website\", 2];\n\n/**\n * Get the Website.\n *\n * @beta\n *\n * Required Scopes: [third-party-application:deploy-application-website]\n * URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website\n */\nexport function getWebsite($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _getWebsite, ...args);\n}\nconst _deployWebsite = [1, \"/v2/thirdPartyApplications/{0}/website/deploy\", 3];\n\n/**\n * Deploy a version of the Website.\n *\n * @beta\n *\n * Required Scopes: [third-party-application:deploy-application-website]\n * URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/deploy\n */\nexport function deployWebsite($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _deployWebsite, ...args);\n}\nconst _undeployWebsite = [1, \"/v2/thirdPartyApplications/{0}/website/undeploy\", 2];\n\n/**\n * Remove the currently deployed version of the Website.\n *\n * @beta\n *\n * Required Scopes: [third-party-application:deploy-application-website]\n * URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/undeploy\n */\nexport function undeployWebsite($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _undeployWebsite, ...args);\n}"]}
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
var __defProp = Object.defineProperty;
|
|
2
|
-
var __export = (target, all) => {
|
|
3
|
-
for (var name in all)
|
|
4
|
-
__defProp(target, name, { get: all[name], enumerable: true });
|
|
5
|
-
};
|
|
6
|
-
|
|
7
|
-
export { __export };
|
|
8
|
-
//# sourceMappingURL=chunk-PZ5AY32C.js.map
|
|
9
|
-
//# sourceMappingURL=chunk-PZ5AY32C.js.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"sources":[],"names":[],"mappings":"","file":"chunk-PZ5AY32C.js"}
|