@osdk/foundry.connectivity 2.50.0 → 2.52.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 +24 -0
- package/build/browser/_components.d.ts +2 -8
- package/build/browser/_components.d.ts.map +1 -1
- package/build/browser/index.d.ts +1 -1
- package/build/browser/index.d.ts.map +1 -1
- package/build/browser/public/Connection.d.ts +11 -34
- package/build/browser/public/Connection.d.ts.map +1 -1
- package/build/browser/public/Connection.js +11 -11
- package/build/browser/public/Connection.js.map +1 -1
- package/build/browser/public/FileImport.d.ts +11 -27
- package/build/browser/public/FileImport.d.ts.map +1 -1
- package/build/browser/public/FileImport.js +11 -11
- package/build/browser/public/FileImport.js.map +1 -1
- package/build/browser/public/TableImport.d.ts +11 -27
- package/build/browser/public/TableImport.d.ts.map +1 -1
- package/build/browser/public/TableImport.js +11 -11
- package/build/browser/public/TableImport.js.map +1 -1
- package/build/browser/public/VirtualTable.d.ts +2 -6
- package/build/browser/public/VirtualTable.d.ts.map +1 -1
- package/build/browser/public/VirtualTable.js +2 -2
- package/build/browser/public/VirtualTable.js.map +1 -1
- package/build/esm/_components.d.ts +2 -8
- package/build/esm/_components.d.ts.map +1 -1
- package/build/esm/index.d.ts +1 -1
- package/build/esm/index.d.ts.map +1 -1
- package/build/esm/public/Connection.d.ts +11 -34
- package/build/esm/public/Connection.d.ts.map +1 -1
- package/build/esm/public/Connection.js +11 -11
- package/build/esm/public/Connection.js.map +1 -1
- package/build/esm/public/FileImport.d.ts +11 -27
- package/build/esm/public/FileImport.d.ts.map +1 -1
- package/build/esm/public/FileImport.js +11 -11
- package/build/esm/public/FileImport.js.map +1 -1
- package/build/esm/public/TableImport.d.ts +11 -27
- package/build/esm/public/TableImport.d.ts.map +1 -1
- package/build/esm/public/TableImport.js +11 -11
- package/build/esm/public/TableImport.js.map +1 -1
- package/build/esm/public/VirtualTable.d.ts +2 -6
- package/build/esm/public/VirtualTable.d.ts.map +1 -1
- package/build/esm/public/VirtualTable.js +2 -2
- package/build/esm/public/VirtualTable.js.map +1 -1
- package/package.json +4 -4
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
*/
|
|
16
16
|
import { foundryPlatformFetch as $foundryPlatformFetch } from "@osdk/shared.net.platformapi";
|
|
17
17
|
//
|
|
18
|
-
const _create = [1, "/v2/connectivity/connections/{0}/tableImports",
|
|
18
|
+
const _create = [1, "/v2/connectivity/connections/{0}/tableImports", 1];
|
|
19
19
|
/**
|
|
20
20
|
* Creates a new TableImport.
|
|
21
21
|
*
|
|
22
|
-
* @
|
|
22
|
+
* @public
|
|
23
23
|
*
|
|
24
24
|
* Required Scopes: [api:connectivity-table-import-write]
|
|
25
25
|
* URL: /v2/connectivity/connections/{connectionRid}/tableImports
|
|
@@ -27,13 +27,13 @@ const _create = [1, "/v2/connectivity/connections/{0}/tableImports", 3];
|
|
|
27
27
|
export function create($ctx, ...args) {
|
|
28
28
|
return $foundryPlatformFetch($ctx, _create, ...args);
|
|
29
29
|
}
|
|
30
|
-
const _deleteTableImport = [3, "/v2/connectivity/connections/{0}/tableImports/{1}"
|
|
30
|
+
const _deleteTableImport = [3, "/v2/connectivity/connections/{0}/tableImports/{1}"];
|
|
31
31
|
/**
|
|
32
32
|
* Delete the TableImport with the specified RID.
|
|
33
33
|
* Deleting the table import does not delete the destination dataset but the dataset will no longer
|
|
34
34
|
* be updated by this import.
|
|
35
35
|
*
|
|
36
|
-
* @
|
|
36
|
+
* @public
|
|
37
37
|
*
|
|
38
38
|
* Required Scopes: [api:connectivity-table-import-write]
|
|
39
39
|
* URL: /v2/connectivity/connections/{connectionRid}/tableImports/{tableImportRid}
|
|
@@ -46,7 +46,7 @@ const _list = [0, "/v2/connectivity/connections/{0}/tableImports", 2];
|
|
|
46
46
|
* Lists all table imports defined for this connection.
|
|
47
47
|
* Only table imports that the user has permissions to view will be returned.
|
|
48
48
|
*
|
|
49
|
-
* @
|
|
49
|
+
* @public
|
|
50
50
|
*
|
|
51
51
|
* Required Scopes: [api:connectivity-table-import-read]
|
|
52
52
|
* URL: /v2/connectivity/connections/{connectionRid}/tableImports
|
|
@@ -54,11 +54,11 @@ const _list = [0, "/v2/connectivity/connections/{0}/tableImports", 2];
|
|
|
54
54
|
export function list($ctx, ...args) {
|
|
55
55
|
return $foundryPlatformFetch($ctx, _list, ...args);
|
|
56
56
|
}
|
|
57
|
-
const _get = [0, "/v2/connectivity/connections/{0}/tableImports/{1}"
|
|
57
|
+
const _get = [0, "/v2/connectivity/connections/{0}/tableImports/{1}"];
|
|
58
58
|
/**
|
|
59
59
|
* Get the TableImport with the specified rid.
|
|
60
60
|
*
|
|
61
|
-
* @
|
|
61
|
+
* @public
|
|
62
62
|
*
|
|
63
63
|
* Required Scopes: [api:connectivity-table-import-read]
|
|
64
64
|
* URL: /v2/connectivity/connections/{connectionRid}/tableImports/{tableImportRid}
|
|
@@ -66,11 +66,11 @@ const _get = [0, "/v2/connectivity/connections/{0}/tableImports/{1}", 2];
|
|
|
66
66
|
export function get($ctx, ...args) {
|
|
67
67
|
return $foundryPlatformFetch($ctx, _get, ...args);
|
|
68
68
|
}
|
|
69
|
-
const _replace = [2, "/v2/connectivity/connections/{0}/tableImports/{1}",
|
|
69
|
+
const _replace = [2, "/v2/connectivity/connections/{0}/tableImports/{1}", 1];
|
|
70
70
|
/**
|
|
71
71
|
* Replace the TableImport with the specified rid.
|
|
72
72
|
*
|
|
73
|
-
* @
|
|
73
|
+
* @public
|
|
74
74
|
*
|
|
75
75
|
* Required Scopes: [api:connectivity-table-import-write]
|
|
76
76
|
* URL: /v2/connectivity/connections/{connectionRid}/tableImports/{tableImportRid}
|
|
@@ -78,12 +78,12 @@ const _replace = [2, "/v2/connectivity/connections/{0}/tableImports/{1}", 3];
|
|
|
78
78
|
export function replace($ctx, ...args) {
|
|
79
79
|
return $foundryPlatformFetch($ctx, _replace, ...args);
|
|
80
80
|
}
|
|
81
|
-
const _execute = [1, "/v2/connectivity/connections/{0}/tableImports/{1}/execute"
|
|
81
|
+
const _execute = [1, "/v2/connectivity/connections/{0}/tableImports/{1}/execute"];
|
|
82
82
|
/**
|
|
83
83
|
* Executes the TableImport, which runs asynchronously as a [Foundry Build](https://www.palantir.com/docs/foundry/data-integration/builds/).
|
|
84
84
|
* The returned BuildRid can be used to check the status via the Orchestration API.
|
|
85
85
|
*
|
|
86
|
-
* @
|
|
86
|
+
* @public
|
|
87
87
|
*
|
|
88
88
|
* Required Scopes: [api:connectivity-table-import-execute]
|
|
89
89
|
* URL: /v2/connectivity/connections/{connectionRid}/tableImports/{tableImportRid}/execute
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"TableImport.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_create","create","$ctx","args","_deleteTableImport","deleteTableImport","_list","list","_get","get","_replace","replace","_execute","execute"],"sources":["TableImport.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 _create = [1, \"/v2/connectivity/connections/{0}/tableImports\",
|
|
1
|
+
{"version":3,"file":"TableImport.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_create","create","$ctx","args","_deleteTableImport","deleteTableImport","_list","list","_get","get","_replace","replace","_execute","execute"],"sources":["TableImport.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 _create = [1, \"/v2/connectivity/connections/{0}/tableImports\", 1];\n/**\n * Creates a new TableImport.\n *\n * @public\n *\n * Required Scopes: [api:connectivity-table-import-write]\n * URL: /v2/connectivity/connections/{connectionRid}/tableImports\n */\nexport function create($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _create, ...args);\n}\nconst _deleteTableImport = [3, \"/v2/connectivity/connections/{0}/tableImports/{1}\"];\n/**\n * Delete the TableImport with the specified RID.\n * Deleting the table import does not delete the destination dataset but the dataset will no longer\n * be updated by this import.\n *\n * @public\n *\n * Required Scopes: [api:connectivity-table-import-write]\n * URL: /v2/connectivity/connections/{connectionRid}/tableImports/{tableImportRid}\n */\nexport function deleteTableImport($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _deleteTableImport, ...args);\n}\nconst _list = [0, \"/v2/connectivity/connections/{0}/tableImports\", 2];\n/**\n * Lists all table imports defined for this connection.\n * Only table imports that the user has permissions to view will be returned.\n *\n * @public\n *\n * Required Scopes: [api:connectivity-table-import-read]\n * URL: /v2/connectivity/connections/{connectionRid}/tableImports\n */\nexport function list($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _list, ...args);\n}\nconst _get = [0, \"/v2/connectivity/connections/{0}/tableImports/{1}\"];\n/**\n * Get the TableImport with the specified rid.\n *\n * @public\n *\n * Required Scopes: [api:connectivity-table-import-read]\n * URL: /v2/connectivity/connections/{connectionRid}/tableImports/{tableImportRid}\n */\nexport function get($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _get, ...args);\n}\nconst _replace = [2, \"/v2/connectivity/connections/{0}/tableImports/{1}\", 1];\n/**\n * Replace the TableImport with the specified rid.\n *\n * @public\n *\n * Required Scopes: [api:connectivity-table-import-write]\n * URL: /v2/connectivity/connections/{connectionRid}/tableImports/{tableImportRid}\n */\nexport function replace($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _replace, ...args);\n}\nconst _execute = [1, \"/v2/connectivity/connections/{0}/tableImports/{1}/execute\"];\n/**\n * Executes the TableImport, which runs asynchronously as a [Foundry Build](https://www.palantir.com/docs/foundry/data-integration/builds/).\n * The returned BuildRid can be used to check the status via the Orchestration API.\n *\n * @public\n *\n * Required Scopes: [api:connectivity-table-import-execute]\n * URL: /v2/connectivity/connections/{connectionRid}/tableImports/{tableImportRid}/execute\n */\nexport function execute($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _execute, ...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,OAAO,GAAG,CAAC,CAAC,EAAE,+CAA+C,EAAE,CAAC,CAAC;AACvE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,MAAMA,CAACC,IAAI,EAAE,GAAGC,IAAI,EAAE;EAClC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEF,OAAO,EAAE,GAAGG,IAAI,CAAC;AACxD;AACA,MAAMC,kBAAkB,GAAG,CAAC,CAAC,EAAE,mDAAmD,CAAC;AACnF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,iBAAiBA,CAACH,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC7C,OAAOJ,qBAAqB,CAACG,IAAI,EAAEE,kBAAkB,EAAE,GAAGD,IAAI,CAAC;AACnE;AACA,MAAMG,KAAK,GAAG,CAAC,CAAC,EAAE,+CAA+C,EAAE,CAAC,CAAC;AACrE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,IAAIA,CAACL,IAAI,EAAE,GAAGC,IAAI,EAAE;EAChC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEI,KAAK,EAAE,GAAGH,IAAI,CAAC;AACtD;AACA,MAAMK,IAAI,GAAG,CAAC,CAAC,EAAE,mDAAmD,CAAC;AACrE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,GAAGA,CAACP,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC/B,OAAOJ,qBAAqB,CAACG,IAAI,EAAEM,IAAI,EAAE,GAAGL,IAAI,CAAC;AACrD;AACA,MAAMO,QAAQ,GAAG,CAAC,CAAC,EAAE,mDAAmD,EAAE,CAAC,CAAC;AAC5E;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,OAAOA,CAACT,IAAI,EAAE,GAAGC,IAAI,EAAE;EACnC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEQ,QAAQ,EAAE,GAAGP,IAAI,CAAC;AACzD;AACA,MAAMS,QAAQ,GAAG,CAAC,CAAC,EAAE,2DAA2D,CAAC;AACjF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,OAAOA,CAACX,IAAI,EAAE,GAAGC,IAAI,EAAE;EACnC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEU,QAAQ,EAAE,GAAGT,IAAI,CAAC;AACzD","ignoreList":[]}
|
|
@@ -1,4 +1,3 @@
|
|
|
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 _Connectivity from "../_components.js";
|
|
@@ -6,16 +5,13 @@ import type * as _Connectivity from "../_components.js";
|
|
|
6
5
|
* Creates a new [Virtual Table](https://www.palantir.com/docs/foundry/data-integration/virtual-tables/) from an upstream table. The VirtualTable will be created
|
|
7
6
|
* in the specified parent folder and can be queried through Foundry's data access APIs.
|
|
8
7
|
*
|
|
9
|
-
* @
|
|
8
|
+
* @public
|
|
10
9
|
*
|
|
11
10
|
* Required Scopes: [api:connectivity-virtual-table-write]
|
|
12
11
|
* URL: /v2/connectivity/connections/{connectionRid}/virtualTables
|
|
13
12
|
*/
|
|
14
13
|
export declare function create($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
15
14
|
connectionRid: _Connectivity.ConnectionRid,
|
|
16
|
-
$body: _Connectivity.CreateVirtualTableRequest
|
|
17
|
-
$queryParams?: {
|
|
18
|
-
preview?: _Core.PreviewMode | undefined;
|
|
19
|
-
}
|
|
15
|
+
$body: _Connectivity.CreateVirtualTableRequest
|
|
20
16
|
]): Promise<_Connectivity.VirtualTable>;
|
|
21
17
|
//# sourceMappingURL=VirtualTable.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VirtualTable.d.ts","sourceRoot":"","sources":["../../../src/public/VirtualTable.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,
|
|
1
|
+
{"version":3,"file":"VirtualTable.d.ts","sourceRoot":"","sources":["../../../src/public/VirtualTable.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,aAAa,MAAM,mBAAmB,CAAC;AAWxD;;;;;;;;GAQG;AACH,wBAAgB,MAAM,CACpB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,aAAa,EAAE,aAAa,CAAC,aAAa;IAC1C,KAAK,EAAE,aAAa,CAAC,yBAAyB;CAC/C,GACA,OAAO,CAAC,aAAa,CAAC,YAAY,CAAC,CAErC"}
|
|
@@ -15,12 +15,12 @@
|
|
|
15
15
|
*/
|
|
16
16
|
import { foundryPlatformFetch as $foundryPlatformFetch } from "@osdk/shared.net.platformapi";
|
|
17
17
|
//
|
|
18
|
-
const _create = [1, "/v2/connectivity/connections/{0}/virtualTables",
|
|
18
|
+
const _create = [1, "/v2/connectivity/connections/{0}/virtualTables", 1];
|
|
19
19
|
/**
|
|
20
20
|
* Creates a new [Virtual Table](https://www.palantir.com/docs/foundry/data-integration/virtual-tables/) from an upstream table. The VirtualTable will be created
|
|
21
21
|
* in the specified parent folder and can be queried through Foundry's data access APIs.
|
|
22
22
|
*
|
|
23
|
-
* @
|
|
23
|
+
* @public
|
|
24
24
|
*
|
|
25
25
|
* Required Scopes: [api:connectivity-virtual-table-write]
|
|
26
26
|
* URL: /v2/connectivity/connections/{connectionRid}/virtualTables
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"VirtualTable.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_create","create","$ctx","args"],"sources":["VirtualTable.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 _create = [1, \"/v2/connectivity/connections/{0}/virtualTables\",
|
|
1
|
+
{"version":3,"file":"VirtualTable.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_create","create","$ctx","args"],"sources":["VirtualTable.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 _create = [1, \"/v2/connectivity/connections/{0}/virtualTables\", 1];\n/**\n * Creates a new [Virtual Table](https://www.palantir.com/docs/foundry/data-integration/virtual-tables/) from an upstream table. The VirtualTable will be created\n * in the specified parent folder and can be queried through Foundry's data access APIs.\n *\n * @public\n *\n * Required Scopes: [api:connectivity-virtual-table-write]\n * URL: /v2/connectivity/connections/{connectionRid}/virtualTables\n */\nexport function create($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _create, ...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,OAAO,GAAG,CAAC,CAAC,EAAE,gDAAgD,EAAE,CAAC,CAAC;AACxE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,MAAMA,CAACC,IAAI,EAAE,GAAGC,IAAI,EAAE;EAClC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEF,OAAO,EAAE,GAAGG,IAAI,CAAC;AACxD","ignoreList":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osdk/foundry.connectivity",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.52.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -21,8 +21,8 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@osdk/shared.client": "^1.0.1",
|
|
23
23
|
"@osdk/shared.client2": "^1.0.0",
|
|
24
|
-
"@osdk/foundry.
|
|
25
|
-
"@osdk/foundry.
|
|
24
|
+
"@osdk/foundry.core": "2.52.0",
|
|
25
|
+
"@osdk/foundry.filesystem": "2.52.0",
|
|
26
26
|
"@osdk/shared.net.platformapi": "~1.6.0"
|
|
27
27
|
},
|
|
28
28
|
"devDependencies": {
|
|
@@ -48,7 +48,7 @@
|
|
|
48
48
|
"sls": {
|
|
49
49
|
"dependencies": {
|
|
50
50
|
"com.palantir.foundry.api:api-gateway": {
|
|
51
|
-
"minVersion": "1.
|
|
51
|
+
"minVersion": "1.1496.0",
|
|
52
52
|
"maxVersion": "1.x.x",
|
|
53
53
|
"optional": false
|
|
54
54
|
}
|