@osdk/foundry.thirdpartyapplications 2.3.0 → 2.5.0
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 +25 -0
- package/build/browser/public/Version.d.ts +6 -14
- package/build/browser/public/Version.d.ts.map +1 -1
- package/build/browser/public/Version.js +6 -6
- package/build/browser/public/Version.js.map +1 -1
- package/build/browser/public/Website.d.ts +6 -16
- package/build/browser/public/Website.d.ts.map +1 -1
- package/build/browser/public/Website.js +6 -6
- package/build/browser/public/Website.js.map +1 -1
- package/build/esm/public/Version.d.ts +6 -14
- package/build/esm/public/Version.d.ts.map +1 -1
- package/build/esm/public/Version.js +6 -6
- package/build/esm/public/Version.js.map +1 -1
- package/build/esm/public/Website.d.ts +6 -16
- package/build/esm/public/Website.d.ts.map +1 -1
- package/build/esm/public/Website.js +6 -6
- package/build/esm/public/Website.js.map +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @osdk/foundry.thirdpartyapplications
|
|
2
2
|
|
|
3
|
+
## 2.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 92ceb52: Using new version of shared platform API. Also releasing 1.0 of that package.
|
|
8
|
+
- c5eab42: Updating apis to include new timeseries types.
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies [92ceb52]
|
|
13
|
+
- Updated dependencies [c5eab42]
|
|
14
|
+
- @osdk/shared.net.platformapi@1.1.0
|
|
15
|
+
- @osdk/foundry.core@2.5.0
|
|
16
|
+
|
|
17
|
+
## 2.4.0
|
|
18
|
+
|
|
19
|
+
### Minor Changes
|
|
20
|
+
|
|
21
|
+
- 4720b1d: Update platform APIs with new APIs, including Runtime Derived Property API's
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- Updated dependencies [4720b1d]
|
|
26
|
+
- @osdk/foundry.core@2.4.0
|
|
27
|
+
|
|
3
28
|
## 2.3.0
|
|
4
29
|
|
|
5
30
|
### Minor Changes
|
|
@@ -5,24 +5,21 @@ import type * as _ThirdPartyApplications from "../_components.js";
|
|
|
5
5
|
/**
|
|
6
6
|
* Delete the Version with the specified version.
|
|
7
7
|
*
|
|
8
|
-
* @
|
|
8
|
+
* @public
|
|
9
9
|
*
|
|
10
10
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
11
11
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions/{versionVersion}
|
|
12
12
|
*/
|
|
13
13
|
export declare function deleteVersion($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
14
14
|
thirdPartyApplicationRid: _ThirdPartyApplications.ThirdPartyApplicationRid,
|
|
15
|
-
versionVersion: _ThirdPartyApplications.VersionVersion
|
|
16
|
-
$queryParams?: {
|
|
17
|
-
preview?: _Core.PreviewMode | undefined;
|
|
18
|
-
}
|
|
15
|
+
versionVersion: _ThirdPartyApplications.VersionVersion
|
|
19
16
|
]): Promise<void>;
|
|
20
17
|
/**
|
|
21
18
|
* Lists all Versions.
|
|
22
19
|
*
|
|
23
20
|
* 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.
|
|
24
21
|
*
|
|
25
|
-
* @
|
|
22
|
+
* @public
|
|
26
23
|
*
|
|
27
24
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
28
25
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions
|
|
@@ -32,28 +29,24 @@ export declare function list($ctx: $Client | $ClientContext | $OldClient | $OldC
|
|
|
32
29
|
$queryParams?: {
|
|
33
30
|
pageSize?: _Core.PageSize | undefined;
|
|
34
31
|
pageToken?: _Core.PageToken | undefined;
|
|
35
|
-
preview?: _Core.PreviewMode | undefined;
|
|
36
32
|
}
|
|
37
33
|
]): Promise<_ThirdPartyApplications.ListVersionsResponse>;
|
|
38
34
|
/**
|
|
39
35
|
* Get the Version with the specified version.
|
|
40
36
|
*
|
|
41
|
-
* @
|
|
37
|
+
* @public
|
|
42
38
|
*
|
|
43
39
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
44
40
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions/{versionVersion}
|
|
45
41
|
*/
|
|
46
42
|
export declare function get($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
47
43
|
thirdPartyApplicationRid: _ThirdPartyApplications.ThirdPartyApplicationRid,
|
|
48
|
-
versionVersion: _ThirdPartyApplications.VersionVersion
|
|
49
|
-
$queryParams?: {
|
|
50
|
-
preview?: _Core.PreviewMode | undefined;
|
|
51
|
-
}
|
|
44
|
+
versionVersion: _ThirdPartyApplications.VersionVersion
|
|
52
45
|
]): Promise<_ThirdPartyApplications.Version>;
|
|
53
46
|
/**
|
|
54
47
|
* Upload a new version of the Website.
|
|
55
48
|
*
|
|
56
|
-
* @
|
|
49
|
+
* @public
|
|
57
50
|
*
|
|
58
51
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
59
52
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions/upload
|
|
@@ -63,7 +56,6 @@ export declare function upload($ctx: $Client | $ClientContext | $OldClient | $Ol
|
|
|
63
56
|
$body: Blob,
|
|
64
57
|
$queryParams: {
|
|
65
58
|
version: _ThirdPartyApplications.VersionVersion;
|
|
66
|
-
preview?: _Core.PreviewMode | undefined;
|
|
67
59
|
}
|
|
68
60
|
]): Promise<_ThirdPartyApplications.Version>;
|
|
69
61
|
//# 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,KAAK,KAAK,MAAM,oBAAoB,CAAC;AACjD,OAAO,KAAK,EACV,YAAY,IAAI,UAAU,EAC1B,mBAAmB,IAAI,iBAAiB,EACzC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,sBAAsB,CAAC;AAG9B,OAAO,KAAK,KAAK,uBAAuB,MAAM,mBAAmB,CAAC;
|
|
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,UAAU,EAC1B,mBAAmB,IAAI,iBAAiB,EACzC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,sBAAsB,CAAC;AAG9B,OAAO,KAAK,KAAK,uBAAuB,MAAM,mBAAmB,CAAC;AAWlE;;;;;;;GAOG;AACH,wBAAgB,aAAa,CAC3B,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,wBAAwB,EAAE,uBAAuB,CAAC,wBAAwB;IAC1E,cAAc,EAAE,uBAAuB,CAAC,cAAc;CACvD,GACA,OAAO,CAAC,IAAI,CAAC,CAEf;AAYD;;;;;;;;;GASG;AACH,wBAAgB,IAAI,CAClB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,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;KACzC;CACF,GACA,OAAO,CAAC,uBAAuB,CAAC,oBAAoB,CAAC,CAEvD;AASD;;;;;;;GAOG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,wBAAwB,EAAE,uBAAuB,CAAC,wBAAwB;IAC1E,cAAc,EAAE,uBAAuB,CAAC,cAAc;CACvD,GACA,OAAO,CAAC,uBAAuB,CAAC,OAAO,CAAC,CAE1C;AAeD;;;;;;;GAOG;AACH,wBAAgB,MAAM,CACpB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,wBAAwB,EAAE,uBAAuB,CAAC,wBAAwB;IAC1E,KAAK,EAAE,IAAI;IACX,YAAY,EAAE;QAAE,OAAO,EAAE,uBAAuB,CAAC,cAAc,CAAA;KAAE;CAClE,GACA,OAAO,CAAC,uBAAuB,CAAC,OAAO,CAAC,CAE1C"}
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
*/
|
|
16
16
|
import { foundryPlatformFetch as $foundryPlatformFetch } from "@osdk/shared.net.platformapi";
|
|
17
17
|
//
|
|
18
|
-
const _deleteVersion = [3, "/v2/thirdPartyApplications/{0}/website/versions/{1}"
|
|
18
|
+
const _deleteVersion = [3, "/v2/thirdPartyApplications/{0}/website/versions/{1}"];
|
|
19
19
|
/**
|
|
20
20
|
* Delete the Version with the specified version.
|
|
21
21
|
*
|
|
22
|
-
* @
|
|
22
|
+
* @public
|
|
23
23
|
*
|
|
24
24
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
25
25
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions/{versionVersion}
|
|
@@ -33,7 +33,7 @@ const _list = [0, "/v2/thirdPartyApplications/{0}/website/versions", 2];
|
|
|
33
33
|
*
|
|
34
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
35
|
*
|
|
36
|
-
* @
|
|
36
|
+
* @public
|
|
37
37
|
*
|
|
38
38
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
39
39
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions
|
|
@@ -41,11 +41,11 @@ const _list = [0, "/v2/thirdPartyApplications/{0}/website/versions", 2];
|
|
|
41
41
|
export function list($ctx, ...args) {
|
|
42
42
|
return $foundryPlatformFetch($ctx, _list, ...args);
|
|
43
43
|
}
|
|
44
|
-
const _get = [0, "/v2/thirdPartyApplications/{0}/website/versions/{1}"
|
|
44
|
+
const _get = [0, "/v2/thirdPartyApplications/{0}/website/versions/{1}"];
|
|
45
45
|
/**
|
|
46
46
|
* Get the Version with the specified version.
|
|
47
47
|
*
|
|
48
|
-
* @
|
|
48
|
+
* @public
|
|
49
49
|
*
|
|
50
50
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
51
51
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions/{versionVersion}
|
|
@@ -57,7 +57,7 @@ const _upload = [1, "/v2/thirdPartyApplications/{0}/website/versions/upload", 3,
|
|
|
57
57
|
/**
|
|
58
58
|
* Upload a new version of the Website.
|
|
59
59
|
*
|
|
60
|
-
* @
|
|
60
|
+
* @public
|
|
61
61
|
*
|
|
62
62
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
63
63
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions/upload
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Version.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_deleteVersion","deleteVersion","$ctx","args","_list","list","_get","get","_upload","upload"],"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}\"
|
|
1
|
+
{"version":3,"file":"Version.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_deleteVersion","deleteVersion","$ctx","args","_list","list","_get","get","_upload","upload"],"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}\"];\n/**\n * Delete the Version with the specified version.\n *\n * @public\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 _list = [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 * @public\n *\n * Required Scopes: [third-party-application:deploy-application-website]\n * URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions\n */\nexport function list($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _list, ...args);\n}\nconst _get = [0, \"/v2/thirdPartyApplications/{0}/website/versions/{1}\"];\n/**\n * Get the Version with the specified version.\n *\n * @public\n *\n * Required Scopes: [third-party-application:deploy-application-website]\n * URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions/{versionVersion}\n */\nexport function get($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _get, ...args);\n}\nconst _upload = [\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 * @public\n *\n * Required Scopes: [third-party-application:deploy-application-website]\n * URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions/upload\n */\nexport function upload($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _upload, ...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,CAAC;AACjF;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,KAAK,GAAG,CAAC,CAAC,EAAE,iDAAiD,EAAE,CAAC,CAAC;AACvE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,IAAIA,CAACH,IAAI,EAAE,GAAGC,IAAI,EAAE;EAChC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEE,KAAK,EAAE,GAAGD,IAAI,CAAC;AACtD;AACA,MAAMG,IAAI,GAAG,CAAC,CAAC,EAAE,qDAAqD,CAAC;AACvE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,GAAGA,CAACL,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC/B,OAAOJ,qBAAqB,CAACG,IAAI,EAAEI,IAAI,EAAE,GAAGH,IAAI,CAAC;AACrD;AACA,MAAMK,OAAO,GAAG,CACZ,CAAC,EACD,wDAAwD,EACxD,CAAC,EACD,0BAA0B,CAC7B;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,MAAMA,CAACP,IAAI,EAAE,GAAGC,IAAI,EAAE;EAClC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEM,OAAO,EAAE,GAAGL,IAAI,CAAC;AACxD","ignoreList":[]}
|
|
@@ -1,48 +1,38 @@
|
|
|
1
|
-
import type * as _Core from "@osdk/foundry.core";
|
|
2
1
|
import type { SharedClient as $OldClient, SharedClientContext as $OldClientContext } from "@osdk/shared.client";
|
|
3
2
|
import type { SharedClient as $Client, SharedClientContext as $ClientContext } from "@osdk/shared.client2";
|
|
4
3
|
import type * as _ThirdPartyApplications from "../_components.js";
|
|
5
4
|
/**
|
|
6
5
|
* Get the Website.
|
|
7
6
|
*
|
|
8
|
-
* @
|
|
7
|
+
* @public
|
|
9
8
|
*
|
|
10
9
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
11
10
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website
|
|
12
11
|
*/
|
|
13
12
|
export declare function get($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
14
|
-
thirdPartyApplicationRid: _ThirdPartyApplications.ThirdPartyApplicationRid
|
|
15
|
-
$queryParams?: {
|
|
16
|
-
preview?: _Core.PreviewMode | undefined;
|
|
17
|
-
}
|
|
13
|
+
thirdPartyApplicationRid: _ThirdPartyApplications.ThirdPartyApplicationRid
|
|
18
14
|
]): Promise<_ThirdPartyApplications.Website>;
|
|
19
15
|
/**
|
|
20
16
|
* Deploy a version of the Website.
|
|
21
17
|
*
|
|
22
|
-
* @
|
|
18
|
+
* @public
|
|
23
19
|
*
|
|
24
20
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
25
21
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/deploy
|
|
26
22
|
*/
|
|
27
23
|
export declare function deploy($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
28
24
|
thirdPartyApplicationRid: _ThirdPartyApplications.ThirdPartyApplicationRid,
|
|
29
|
-
$body: _ThirdPartyApplications.DeployWebsiteRequest
|
|
30
|
-
$queryParams?: {
|
|
31
|
-
preview?: _Core.PreviewMode | undefined;
|
|
32
|
-
}
|
|
25
|
+
$body: _ThirdPartyApplications.DeployWebsiteRequest
|
|
33
26
|
]): Promise<_ThirdPartyApplications.Website>;
|
|
34
27
|
/**
|
|
35
28
|
* Remove the currently deployed version of the Website.
|
|
36
29
|
*
|
|
37
|
-
* @
|
|
30
|
+
* @public
|
|
38
31
|
*
|
|
39
32
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
40
33
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/undeploy
|
|
41
34
|
*/
|
|
42
35
|
export declare function undeploy($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
43
|
-
thirdPartyApplicationRid: _ThirdPartyApplications.ThirdPartyApplicationRid
|
|
44
|
-
$queryParams?: {
|
|
45
|
-
preview?: _Core.PreviewMode | undefined;
|
|
46
|
-
}
|
|
36
|
+
thirdPartyApplicationRid: _ThirdPartyApplications.ThirdPartyApplicationRid
|
|
47
37
|
]): Promise<_ThirdPartyApplications.Website>;
|
|
48
38
|
//# 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,EACV,YAAY,IAAI,UAAU,EAC1B,mBAAmB,IAAI,iBAAiB,EACzC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,sBAAsB,CAAC;AAG9B,OAAO,KAAK,KAAK,uBAAuB,MAAM,mBAAmB,CAAC;AAUlE;;;;;;;GAOG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,wBAAwB,EAAE,uBAAuB,CAAC,wBAAwB;CAC3E,GACA,OAAO,CAAC,uBAAuB,CAAC,OAAO,CAAC,CAE1C;AASD;;;;;;;GAOG;AACH,wBAAgB,MAAM,CACpB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,wBAAwB,EAAE,uBAAuB,CAAC,wBAAwB;IAC1E,KAAK,EAAE,uBAAuB,CAAC,oBAAoB;CACpD,GACA,OAAO,CAAC,uBAAuB,CAAC,OAAO,CAAC,CAE1C;AAQD;;;;;;;GAOG;AACH,wBAAgB,QAAQ,CACtB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,wBAAwB,EAAE,uBAAuB,CAAC,wBAAwB;CAC3E,GACA,OAAO,CAAC,uBAAuB,CAAC,OAAO,CAAC,CAE1C"}
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
*/
|
|
16
16
|
import { foundryPlatformFetch as $foundryPlatformFetch } from "@osdk/shared.net.platformapi";
|
|
17
17
|
//
|
|
18
|
-
const _get = [0, "/v2/thirdPartyApplications/{0}/website"
|
|
18
|
+
const _get = [0, "/v2/thirdPartyApplications/{0}/website"];
|
|
19
19
|
/**
|
|
20
20
|
* Get the Website.
|
|
21
21
|
*
|
|
22
|
-
* @
|
|
22
|
+
* @public
|
|
23
23
|
*
|
|
24
24
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
25
25
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website
|
|
@@ -27,11 +27,11 @@ const _get = [0, "/v2/thirdPartyApplications/{0}/website", 2];
|
|
|
27
27
|
export function get($ctx, ...args) {
|
|
28
28
|
return $foundryPlatformFetch($ctx, _get, ...args);
|
|
29
29
|
}
|
|
30
|
-
const _deploy = [1, "/v2/thirdPartyApplications/{0}/website/deploy",
|
|
30
|
+
const _deploy = [1, "/v2/thirdPartyApplications/{0}/website/deploy", 1];
|
|
31
31
|
/**
|
|
32
32
|
* Deploy a version of the Website.
|
|
33
33
|
*
|
|
34
|
-
* @
|
|
34
|
+
* @public
|
|
35
35
|
*
|
|
36
36
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
37
37
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/deploy
|
|
@@ -39,11 +39,11 @@ const _deploy = [1, "/v2/thirdPartyApplications/{0}/website/deploy", 3];
|
|
|
39
39
|
export function deploy($ctx, ...args) {
|
|
40
40
|
return $foundryPlatformFetch($ctx, _deploy, ...args);
|
|
41
41
|
}
|
|
42
|
-
const _undeploy = [1, "/v2/thirdPartyApplications/{0}/website/undeploy"
|
|
42
|
+
const _undeploy = [1, "/v2/thirdPartyApplications/{0}/website/undeploy"];
|
|
43
43
|
/**
|
|
44
44
|
* Remove the currently deployed version of the Website.
|
|
45
45
|
*
|
|
46
|
-
* @
|
|
46
|
+
* @public
|
|
47
47
|
*
|
|
48
48
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
49
49
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/undeploy
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Website.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_get","get","$ctx","args","_deploy","deploy","_undeploy","undeploy"],"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 _get = [0, \"/v2/thirdPartyApplications/{0}/website\"
|
|
1
|
+
{"version":3,"file":"Website.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_get","get","$ctx","args","_deploy","deploy","_undeploy","undeploy"],"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 _get = [0, \"/v2/thirdPartyApplications/{0}/website\"];\n/**\n * Get the Website.\n *\n * @public\n *\n * Required Scopes: [third-party-application:deploy-application-website]\n * URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website\n */\nexport function get($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _get, ...args);\n}\nconst _deploy = [1, \"/v2/thirdPartyApplications/{0}/website/deploy\", 1];\n/**\n * Deploy a version of the Website.\n *\n * @public\n *\n * Required Scopes: [third-party-application:deploy-application-website]\n * URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/deploy\n */\nexport function deploy($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _deploy, ...args);\n}\nconst _undeploy = [1, \"/v2/thirdPartyApplications/{0}/website/undeploy\"];\n/**\n * Remove the currently deployed version of the Website.\n *\n * @public\n *\n * Required Scopes: [third-party-application:deploy-application-website]\n * URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/undeploy\n */\nexport function undeploy($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _undeploy, ...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,IAAI,GAAG,CAAC,CAAC,EAAE,wCAAwC,CAAC;AAC1D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,GAAGA,CAACC,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC/B,OAAOJ,qBAAqB,CAACG,IAAI,EAAEF,IAAI,EAAE,GAAGG,IAAI,CAAC;AACrD;AACA,MAAMC,OAAO,GAAG,CAAC,CAAC,EAAE,+CAA+C,EAAE,CAAC,CAAC;AACvE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,MAAMA,CAACH,IAAI,EAAE,GAAGC,IAAI,EAAE;EAClC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEE,OAAO,EAAE,GAAGD,IAAI,CAAC;AACxD;AACA,MAAMG,SAAS,GAAG,CAAC,CAAC,EAAE,iDAAiD,CAAC;AACxE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,QAAQA,CAACL,IAAI,EAAE,GAAGC,IAAI,EAAE;EACpC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEI,SAAS,EAAE,GAAGH,IAAI,CAAC;AAC1D","ignoreList":[]}
|
|
@@ -5,24 +5,21 @@ import type * as _ThirdPartyApplications from "../_components.js";
|
|
|
5
5
|
/**
|
|
6
6
|
* Delete the Version with the specified version.
|
|
7
7
|
*
|
|
8
|
-
* @
|
|
8
|
+
* @public
|
|
9
9
|
*
|
|
10
10
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
11
11
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions/{versionVersion}
|
|
12
12
|
*/
|
|
13
13
|
export declare function deleteVersion($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
14
14
|
thirdPartyApplicationRid: _ThirdPartyApplications.ThirdPartyApplicationRid,
|
|
15
|
-
versionVersion: _ThirdPartyApplications.VersionVersion
|
|
16
|
-
$queryParams?: {
|
|
17
|
-
preview?: _Core.PreviewMode | undefined;
|
|
18
|
-
}
|
|
15
|
+
versionVersion: _ThirdPartyApplications.VersionVersion
|
|
19
16
|
]): Promise<void>;
|
|
20
17
|
/**
|
|
21
18
|
* Lists all Versions.
|
|
22
19
|
*
|
|
23
20
|
* 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.
|
|
24
21
|
*
|
|
25
|
-
* @
|
|
22
|
+
* @public
|
|
26
23
|
*
|
|
27
24
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
28
25
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions
|
|
@@ -32,28 +29,24 @@ export declare function list($ctx: $Client | $ClientContext | $OldClient | $OldC
|
|
|
32
29
|
$queryParams?: {
|
|
33
30
|
pageSize?: _Core.PageSize | undefined;
|
|
34
31
|
pageToken?: _Core.PageToken | undefined;
|
|
35
|
-
preview?: _Core.PreviewMode | undefined;
|
|
36
32
|
}
|
|
37
33
|
]): Promise<_ThirdPartyApplications.ListVersionsResponse>;
|
|
38
34
|
/**
|
|
39
35
|
* Get the Version with the specified version.
|
|
40
36
|
*
|
|
41
|
-
* @
|
|
37
|
+
* @public
|
|
42
38
|
*
|
|
43
39
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
44
40
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions/{versionVersion}
|
|
45
41
|
*/
|
|
46
42
|
export declare function get($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
47
43
|
thirdPartyApplicationRid: _ThirdPartyApplications.ThirdPartyApplicationRid,
|
|
48
|
-
versionVersion: _ThirdPartyApplications.VersionVersion
|
|
49
|
-
$queryParams?: {
|
|
50
|
-
preview?: _Core.PreviewMode | undefined;
|
|
51
|
-
}
|
|
44
|
+
versionVersion: _ThirdPartyApplications.VersionVersion
|
|
52
45
|
]): Promise<_ThirdPartyApplications.Version>;
|
|
53
46
|
/**
|
|
54
47
|
* Upload a new version of the Website.
|
|
55
48
|
*
|
|
56
|
-
* @
|
|
49
|
+
* @public
|
|
57
50
|
*
|
|
58
51
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
59
52
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions/upload
|
|
@@ -63,7 +56,6 @@ export declare function upload($ctx: $Client | $ClientContext | $OldClient | $Ol
|
|
|
63
56
|
$body: Blob,
|
|
64
57
|
$queryParams: {
|
|
65
58
|
version: _ThirdPartyApplications.VersionVersion;
|
|
66
|
-
preview?: _Core.PreviewMode | undefined;
|
|
67
59
|
}
|
|
68
60
|
]): Promise<_ThirdPartyApplications.Version>;
|
|
69
61
|
//# 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,KAAK,KAAK,MAAM,oBAAoB,CAAC;AACjD,OAAO,KAAK,EACV,YAAY,IAAI,UAAU,EAC1B,mBAAmB,IAAI,iBAAiB,EACzC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,sBAAsB,CAAC;AAG9B,OAAO,KAAK,KAAK,uBAAuB,MAAM,mBAAmB,CAAC;
|
|
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,UAAU,EAC1B,mBAAmB,IAAI,iBAAiB,EACzC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,sBAAsB,CAAC;AAG9B,OAAO,KAAK,KAAK,uBAAuB,MAAM,mBAAmB,CAAC;AAWlE;;;;;;;GAOG;AACH,wBAAgB,aAAa,CAC3B,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,wBAAwB,EAAE,uBAAuB,CAAC,wBAAwB;IAC1E,cAAc,EAAE,uBAAuB,CAAC,cAAc;CACvD,GACA,OAAO,CAAC,IAAI,CAAC,CAEf;AAYD;;;;;;;;;GASG;AACH,wBAAgB,IAAI,CAClB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,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;KACzC;CACF,GACA,OAAO,CAAC,uBAAuB,CAAC,oBAAoB,CAAC,CAEvD;AASD;;;;;;;GAOG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,wBAAwB,EAAE,uBAAuB,CAAC,wBAAwB;IAC1E,cAAc,EAAE,uBAAuB,CAAC,cAAc;CACvD,GACA,OAAO,CAAC,uBAAuB,CAAC,OAAO,CAAC,CAE1C;AAeD;;;;;;;GAOG;AACH,wBAAgB,MAAM,CACpB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,wBAAwB,EAAE,uBAAuB,CAAC,wBAAwB;IAC1E,KAAK,EAAE,IAAI;IACX,YAAY,EAAE;QAAE,OAAO,EAAE,uBAAuB,CAAC,cAAc,CAAA;KAAE;CAClE,GACA,OAAO,CAAC,uBAAuB,CAAC,OAAO,CAAC,CAE1C"}
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
*/
|
|
16
16
|
import { foundryPlatformFetch as $foundryPlatformFetch } from "@osdk/shared.net.platformapi";
|
|
17
17
|
//
|
|
18
|
-
const _deleteVersion = [3, "/v2/thirdPartyApplications/{0}/website/versions/{1}"
|
|
18
|
+
const _deleteVersion = [3, "/v2/thirdPartyApplications/{0}/website/versions/{1}"];
|
|
19
19
|
/**
|
|
20
20
|
* Delete the Version with the specified version.
|
|
21
21
|
*
|
|
22
|
-
* @
|
|
22
|
+
* @public
|
|
23
23
|
*
|
|
24
24
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
25
25
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions/{versionVersion}
|
|
@@ -33,7 +33,7 @@ const _list = [0, "/v2/thirdPartyApplications/{0}/website/versions", 2];
|
|
|
33
33
|
*
|
|
34
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
35
|
*
|
|
36
|
-
* @
|
|
36
|
+
* @public
|
|
37
37
|
*
|
|
38
38
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
39
39
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions
|
|
@@ -41,11 +41,11 @@ const _list = [0, "/v2/thirdPartyApplications/{0}/website/versions", 2];
|
|
|
41
41
|
export function list($ctx, ...args) {
|
|
42
42
|
return $foundryPlatformFetch($ctx, _list, ...args);
|
|
43
43
|
}
|
|
44
|
-
const _get = [0, "/v2/thirdPartyApplications/{0}/website/versions/{1}"
|
|
44
|
+
const _get = [0, "/v2/thirdPartyApplications/{0}/website/versions/{1}"];
|
|
45
45
|
/**
|
|
46
46
|
* Get the Version with the specified version.
|
|
47
47
|
*
|
|
48
|
-
* @
|
|
48
|
+
* @public
|
|
49
49
|
*
|
|
50
50
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
51
51
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions/{versionVersion}
|
|
@@ -57,7 +57,7 @@ const _upload = [1, "/v2/thirdPartyApplications/{0}/website/versions/upload", 3,
|
|
|
57
57
|
/**
|
|
58
58
|
* Upload a new version of the Website.
|
|
59
59
|
*
|
|
60
|
-
* @
|
|
60
|
+
* @public
|
|
61
61
|
*
|
|
62
62
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
63
63
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions/upload
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Version.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_deleteVersion","deleteVersion","$ctx","args","_list","list","_get","get","_upload","upload"],"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}\"
|
|
1
|
+
{"version":3,"file":"Version.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_deleteVersion","deleteVersion","$ctx","args","_list","list","_get","get","_upload","upload"],"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}\"];\n/**\n * Delete the Version with the specified version.\n *\n * @public\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 _list = [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 * @public\n *\n * Required Scopes: [third-party-application:deploy-application-website]\n * URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions\n */\nexport function list($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _list, ...args);\n}\nconst _get = [0, \"/v2/thirdPartyApplications/{0}/website/versions/{1}\"];\n/**\n * Get the Version with the specified version.\n *\n * @public\n *\n * Required Scopes: [third-party-application:deploy-application-website]\n * URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions/{versionVersion}\n */\nexport function get($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _get, ...args);\n}\nconst _upload = [\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 * @public\n *\n * Required Scopes: [third-party-application:deploy-application-website]\n * URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/versions/upload\n */\nexport function upload($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _upload, ...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,CAAC;AACjF;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,KAAK,GAAG,CAAC,CAAC,EAAE,iDAAiD,EAAE,CAAC,CAAC;AACvE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,IAAIA,CAACH,IAAI,EAAE,GAAGC,IAAI,EAAE;EAChC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEE,KAAK,EAAE,GAAGD,IAAI,CAAC;AACtD;AACA,MAAMG,IAAI,GAAG,CAAC,CAAC,EAAE,qDAAqD,CAAC;AACvE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,GAAGA,CAACL,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC/B,OAAOJ,qBAAqB,CAACG,IAAI,EAAEI,IAAI,EAAE,GAAGH,IAAI,CAAC;AACrD;AACA,MAAMK,OAAO,GAAG,CACZ,CAAC,EACD,wDAAwD,EACxD,CAAC,EACD,0BAA0B,CAC7B;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,MAAMA,CAACP,IAAI,EAAE,GAAGC,IAAI,EAAE;EAClC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEM,OAAO,EAAE,GAAGL,IAAI,CAAC;AACxD","ignoreList":[]}
|
|
@@ -1,48 +1,38 @@
|
|
|
1
|
-
import type * as _Core from "@osdk/foundry.core";
|
|
2
1
|
import type { SharedClient as $OldClient, SharedClientContext as $OldClientContext } from "@osdk/shared.client";
|
|
3
2
|
import type { SharedClient as $Client, SharedClientContext as $ClientContext } from "@osdk/shared.client2";
|
|
4
3
|
import type * as _ThirdPartyApplications from "../_components.js";
|
|
5
4
|
/**
|
|
6
5
|
* Get the Website.
|
|
7
6
|
*
|
|
8
|
-
* @
|
|
7
|
+
* @public
|
|
9
8
|
*
|
|
10
9
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
11
10
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website
|
|
12
11
|
*/
|
|
13
12
|
export declare function get($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
14
|
-
thirdPartyApplicationRid: _ThirdPartyApplications.ThirdPartyApplicationRid
|
|
15
|
-
$queryParams?: {
|
|
16
|
-
preview?: _Core.PreviewMode | undefined;
|
|
17
|
-
}
|
|
13
|
+
thirdPartyApplicationRid: _ThirdPartyApplications.ThirdPartyApplicationRid
|
|
18
14
|
]): Promise<_ThirdPartyApplications.Website>;
|
|
19
15
|
/**
|
|
20
16
|
* Deploy a version of the Website.
|
|
21
17
|
*
|
|
22
|
-
* @
|
|
18
|
+
* @public
|
|
23
19
|
*
|
|
24
20
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
25
21
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/deploy
|
|
26
22
|
*/
|
|
27
23
|
export declare function deploy($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
28
24
|
thirdPartyApplicationRid: _ThirdPartyApplications.ThirdPartyApplicationRid,
|
|
29
|
-
$body: _ThirdPartyApplications.DeployWebsiteRequest
|
|
30
|
-
$queryParams?: {
|
|
31
|
-
preview?: _Core.PreviewMode | undefined;
|
|
32
|
-
}
|
|
25
|
+
$body: _ThirdPartyApplications.DeployWebsiteRequest
|
|
33
26
|
]): Promise<_ThirdPartyApplications.Website>;
|
|
34
27
|
/**
|
|
35
28
|
* Remove the currently deployed version of the Website.
|
|
36
29
|
*
|
|
37
|
-
* @
|
|
30
|
+
* @public
|
|
38
31
|
*
|
|
39
32
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
40
33
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/undeploy
|
|
41
34
|
*/
|
|
42
35
|
export declare function undeploy($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
43
|
-
thirdPartyApplicationRid: _ThirdPartyApplications.ThirdPartyApplicationRid
|
|
44
|
-
$queryParams?: {
|
|
45
|
-
preview?: _Core.PreviewMode | undefined;
|
|
46
|
-
}
|
|
36
|
+
thirdPartyApplicationRid: _ThirdPartyApplications.ThirdPartyApplicationRid
|
|
47
37
|
]): Promise<_ThirdPartyApplications.Website>;
|
|
48
38
|
//# 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,EACV,YAAY,IAAI,UAAU,EAC1B,mBAAmB,IAAI,iBAAiB,EACzC,MAAM,qBAAqB,CAAC;AAC7B,OAAO,KAAK,EACV,YAAY,IAAI,OAAO,EACvB,mBAAmB,IAAI,cAAc,EACtC,MAAM,sBAAsB,CAAC;AAG9B,OAAO,KAAK,KAAK,uBAAuB,MAAM,mBAAmB,CAAC;AAUlE;;;;;;;GAOG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,wBAAwB,EAAE,uBAAuB,CAAC,wBAAwB;CAC3E,GACA,OAAO,CAAC,uBAAuB,CAAC,OAAO,CAAC,CAE1C;AASD;;;;;;;GAOG;AACH,wBAAgB,MAAM,CACpB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,wBAAwB,EAAE,uBAAuB,CAAC,wBAAwB;IAC1E,KAAK,EAAE,uBAAuB,CAAC,oBAAoB;CACpD,GACA,OAAO,CAAC,uBAAuB,CAAC,OAAO,CAAC,CAE1C;AAQD;;;;;;;GAOG;AACH,wBAAgB,QAAQ,CACtB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,wBAAwB,EAAE,uBAAuB,CAAC,wBAAwB;CAC3E,GACA,OAAO,CAAC,uBAAuB,CAAC,OAAO,CAAC,CAE1C"}
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
*/
|
|
16
16
|
import { foundryPlatformFetch as $foundryPlatformFetch } from "@osdk/shared.net.platformapi";
|
|
17
17
|
//
|
|
18
|
-
const _get = [0, "/v2/thirdPartyApplications/{0}/website"
|
|
18
|
+
const _get = [0, "/v2/thirdPartyApplications/{0}/website"];
|
|
19
19
|
/**
|
|
20
20
|
* Get the Website.
|
|
21
21
|
*
|
|
22
|
-
* @
|
|
22
|
+
* @public
|
|
23
23
|
*
|
|
24
24
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
25
25
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website
|
|
@@ -27,11 +27,11 @@ const _get = [0, "/v2/thirdPartyApplications/{0}/website", 2];
|
|
|
27
27
|
export function get($ctx, ...args) {
|
|
28
28
|
return $foundryPlatformFetch($ctx, _get, ...args);
|
|
29
29
|
}
|
|
30
|
-
const _deploy = [1, "/v2/thirdPartyApplications/{0}/website/deploy",
|
|
30
|
+
const _deploy = [1, "/v2/thirdPartyApplications/{0}/website/deploy", 1];
|
|
31
31
|
/**
|
|
32
32
|
* Deploy a version of the Website.
|
|
33
33
|
*
|
|
34
|
-
* @
|
|
34
|
+
* @public
|
|
35
35
|
*
|
|
36
36
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
37
37
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/deploy
|
|
@@ -39,11 +39,11 @@ const _deploy = [1, "/v2/thirdPartyApplications/{0}/website/deploy", 3];
|
|
|
39
39
|
export function deploy($ctx, ...args) {
|
|
40
40
|
return $foundryPlatformFetch($ctx, _deploy, ...args);
|
|
41
41
|
}
|
|
42
|
-
const _undeploy = [1, "/v2/thirdPartyApplications/{0}/website/undeploy"
|
|
42
|
+
const _undeploy = [1, "/v2/thirdPartyApplications/{0}/website/undeploy"];
|
|
43
43
|
/**
|
|
44
44
|
* Remove the currently deployed version of the Website.
|
|
45
45
|
*
|
|
46
|
-
* @
|
|
46
|
+
* @public
|
|
47
47
|
*
|
|
48
48
|
* Required Scopes: [third-party-application:deploy-application-website]
|
|
49
49
|
* URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/undeploy
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Website.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_get","get","$ctx","args","_deploy","deploy","_undeploy","undeploy"],"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 _get = [0, \"/v2/thirdPartyApplications/{0}/website\"
|
|
1
|
+
{"version":3,"file":"Website.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_get","get","$ctx","args","_deploy","deploy","_undeploy","undeploy"],"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 _get = [0, \"/v2/thirdPartyApplications/{0}/website\"];\n/**\n * Get the Website.\n *\n * @public\n *\n * Required Scopes: [third-party-application:deploy-application-website]\n * URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website\n */\nexport function get($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _get, ...args);\n}\nconst _deploy = [1, \"/v2/thirdPartyApplications/{0}/website/deploy\", 1];\n/**\n * Deploy a version of the Website.\n *\n * @public\n *\n * Required Scopes: [third-party-application:deploy-application-website]\n * URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/deploy\n */\nexport function deploy($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _deploy, ...args);\n}\nconst _undeploy = [1, \"/v2/thirdPartyApplications/{0}/website/undeploy\"];\n/**\n * Remove the currently deployed version of the Website.\n *\n * @public\n *\n * Required Scopes: [third-party-application:deploy-application-website]\n * URL: /v2/thirdPartyApplications/{thirdPartyApplicationRid}/website/undeploy\n */\nexport function undeploy($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _undeploy, ...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,IAAI,GAAG,CAAC,CAAC,EAAE,wCAAwC,CAAC;AAC1D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,GAAGA,CAACC,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC/B,OAAOJ,qBAAqB,CAACG,IAAI,EAAEF,IAAI,EAAE,GAAGG,IAAI,CAAC;AACrD;AACA,MAAMC,OAAO,GAAG,CAAC,CAAC,EAAE,+CAA+C,EAAE,CAAC,CAAC;AACvE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,MAAMA,CAACH,IAAI,EAAE,GAAGC,IAAI,EAAE;EAClC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEE,OAAO,EAAE,GAAGD,IAAI,CAAC;AACxD;AACA,MAAMG,SAAS,GAAG,CAAC,CAAC,EAAE,iDAAiD,CAAC;AACxE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,QAAQA,CAACL,IAAI,EAAE,GAAGC,IAAI,EAAE;EACpC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEI,SAAS,EAAE,GAAGH,IAAI,CAAC;AAC1D","ignoreList":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osdk/foundry.thirdpartyapplications",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.5.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -19,8 +19,8 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@osdk/shared.client": "^1.0.1",
|
|
21
21
|
"@osdk/shared.client2": "^1.0.0",
|
|
22
|
-
"@osdk/
|
|
23
|
-
"@osdk/
|
|
22
|
+
"@osdk/foundry.core": "2.5.0",
|
|
23
|
+
"@osdk/shared.net.platformapi": "~1.1.0"
|
|
24
24
|
},
|
|
25
25
|
"devDependencies": {
|
|
26
26
|
"typescript": "^5.5.4",
|
|
@@ -43,7 +43,7 @@
|
|
|
43
43
|
"sls": {
|
|
44
44
|
"dependencies": {
|
|
45
45
|
"com.palantir.foundry.api:api-gateway": {
|
|
46
|
-
"minVersion": "1.
|
|
46
|
+
"minVersion": "1.986.0",
|
|
47
47
|
"maxVersion": "1.x.x",
|
|
48
48
|
"optional": true
|
|
49
49
|
}
|