@osdk/foundry.datasets 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 +26 -0
- package/build/browser/public/Dataset.d.ts +6 -16
- package/build/browser/public/Dataset.d.ts.map +1 -1
- package/build/browser/public/Dataset.js +6 -6
- package/build/browser/public/Dataset.js.map +1 -1
- package/build/browser/public/View.d.ts +11 -29
- package/build/browser/public/View.d.ts.map +1 -1
- package/build/browser/public/View.js +11 -11
- package/build/browser/public/View.js.map +1 -1
- package/build/esm/public/Dataset.d.ts +6 -16
- package/build/esm/public/Dataset.d.ts.map +1 -1
- package/build/esm/public/Dataset.js +6 -6
- package/build/esm/public/Dataset.js.map +1 -1
- package/build/esm/public/View.d.ts +11 -29
- package/build/esm/public/View.d.ts.map +1 -1
- package/build/esm/public/View.js +11 -11
- package/build/esm/public/View.js.map +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @osdk/foundry.datasets
|
|
2
2
|
|
|
3
|
+
## 2.52.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 61dbb74: regenerate platform sdk
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies [61dbb74]
|
|
12
|
+
- @osdk/foundry.datahealth@2.52.0
|
|
13
|
+
- @osdk/foundry.filesystem@2.52.0
|
|
14
|
+
- @osdk/foundry.core@2.52.0
|
|
15
|
+
|
|
16
|
+
## 2.51.0
|
|
17
|
+
|
|
18
|
+
### Minor Changes
|
|
19
|
+
|
|
20
|
+
- cefa77b: Regenerate platform SDK
|
|
21
|
+
|
|
22
|
+
### Patch Changes
|
|
23
|
+
|
|
24
|
+
- Updated dependencies [cefa77b]
|
|
25
|
+
- @osdk/foundry.datahealth@2.51.0
|
|
26
|
+
- @osdk/foundry.filesystem@2.51.0
|
|
27
|
+
- @osdk/foundry.core@2.51.0
|
|
28
|
+
|
|
3
29
|
## 2.50.0
|
|
4
30
|
|
|
5
31
|
### Minor Changes
|
|
@@ -27,7 +27,7 @@ export declare function get($ctx: $Client | $ClientContext | $OldClient | $OldCl
|
|
|
27
27
|
* especially for schedules managed by Marketplace. This operation will return outdated results in the
|
|
28
28
|
* meantime.
|
|
29
29
|
*
|
|
30
|
-
* @
|
|
30
|
+
* @public
|
|
31
31
|
*
|
|
32
32
|
* Required Scopes: [api:orchestration-read, api:datasets-read]
|
|
33
33
|
* URL: /v2/datasets/{datasetRid}/getSchedules
|
|
@@ -38,7 +38,6 @@ export declare function getSchedules($ctx: $Client | $ClientContext | $OldClient
|
|
|
38
38
|
branchName?: _Core.BranchName | undefined;
|
|
39
39
|
pageSize?: _Core.PageSize | undefined;
|
|
40
40
|
pageToken?: _Core.PageToken | undefined;
|
|
41
|
-
preview?: _Core.PreviewMode | undefined;
|
|
42
41
|
}
|
|
43
42
|
]): Promise<_Datasets.ListSchedulesResponse>;
|
|
44
43
|
/**
|
|
@@ -101,7 +100,7 @@ export declare function readTable($ctx: $Client | $ClientContext | $OldClient |
|
|
|
101
100
|
/**
|
|
102
101
|
* Gets a dataset's schema. If no `endTransactionRid` is provided, the latest committed version will be used.
|
|
103
102
|
*
|
|
104
|
-
* @
|
|
103
|
+
* @public
|
|
105
104
|
*
|
|
106
105
|
* Required Scopes: [api:datasets-read]
|
|
107
106
|
* URL: /v2/datasets/{datasetRid}/getSchema
|
|
@@ -112,7 +111,6 @@ export declare function getSchema($ctx: $Client | $ClientContext | $OldClient |
|
|
|
112
111
|
branchName?: _Core.BranchName | undefined;
|
|
113
112
|
endTransactionRid?: _Datasets.TransactionRid | undefined;
|
|
114
113
|
versionId?: _Core.VersionId | undefined;
|
|
115
|
-
preview?: _Core.PreviewMode | undefined;
|
|
116
114
|
}
|
|
117
115
|
]): Promise<_Datasets.GetDatasetSchemaResponse>;
|
|
118
116
|
/**
|
|
@@ -121,31 +119,23 @@ export declare function getSchema($ctx: $Client | $ClientContext | $OldClient |
|
|
|
121
119
|
*
|
|
122
120
|
* The maximum batch size for this endpoint is 1000.
|
|
123
121
|
*
|
|
124
|
-
* @
|
|
122
|
+
* @public
|
|
125
123
|
*
|
|
126
124
|
* Required Scopes: [api:datasets-read]
|
|
127
125
|
* URL: /v2/datasets/getSchemaBatch
|
|
128
126
|
*/
|
|
129
|
-
export declare function getSchemaBatch($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
130
|
-
$body: Array<_Datasets.GetSchemaDatasetsBatchRequestElement>,
|
|
131
|
-
$queryParams?: {
|
|
132
|
-
preview?: _Core.PreviewMode | undefined;
|
|
133
|
-
}
|
|
134
|
-
]): Promise<_Datasets.GetSchemaDatasetsBatchResponse>;
|
|
127
|
+
export declare function getSchemaBatch($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [$body: Array<_Datasets.GetSchemaDatasetsBatchRequestElement>]): Promise<_Datasets.GetSchemaDatasetsBatchResponse>;
|
|
135
128
|
/**
|
|
136
129
|
* Adds a schema on an existing dataset using a PUT request.
|
|
137
130
|
*
|
|
138
|
-
* @
|
|
131
|
+
* @public
|
|
139
132
|
*
|
|
140
133
|
* Required Scopes: [api:datasets-write]
|
|
141
134
|
* URL: /v2/datasets/{datasetRid}/putSchema
|
|
142
135
|
*/
|
|
143
136
|
export declare function putSchema($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
144
137
|
datasetRid: _Core.DatasetRid,
|
|
145
|
-
$body: _Datasets.PutDatasetSchemaRequest
|
|
146
|
-
$queryParams?: {
|
|
147
|
-
preview?: _Core.PreviewMode | undefined;
|
|
148
|
-
}
|
|
138
|
+
$body: _Datasets.PutDatasetSchemaRequest
|
|
149
139
|
]): Promise<_Datasets.GetDatasetSchemaResponse>;
|
|
150
140
|
/**
|
|
151
141
|
* Get the RIDs of the Jobs for the given dataset. By default, returned Jobs are sorted in descending order by the Job start time.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Dataset.d.ts","sourceRoot":"","sources":["../../../src/public/Dataset.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,SAAS,MAAM,mBAAmB,CAAC;AAQpD;;;;;;;GAOG;AACH,wBAAgB,MAAM,CACpB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE,CAAC,KAAK,EAAE,SAAS,CAAC,oBAAoB,CAAC,GAC/C,OAAO,CAAC,SAAS,CAAC,OAAO,CAAC,CAE5B;AAMD;;;;;;;GAOG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE,CAAC,UAAU,EAAE,KAAK,CAAC,UAAU,CAAC,GACtC,OAAO,CAAC,SAAS,CAAC,OAAO,CAAC,CAE5B;
|
|
1
|
+
{"version":3,"file":"Dataset.d.ts","sourceRoot":"","sources":["../../../src/public/Dataset.ts"],"names":[],"mappings":"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"}
|
|
@@ -47,7 +47,7 @@ const _getSchedules = [0, "/v2/datasets/{0}/getSchedules", 2];
|
|
|
47
47
|
* especially for schedules managed by Marketplace. This operation will return outdated results in the
|
|
48
48
|
* meantime.
|
|
49
49
|
*
|
|
50
|
-
* @
|
|
50
|
+
* @public
|
|
51
51
|
*
|
|
52
52
|
* Required Scopes: [api:orchestration-read, api:datasets-read]
|
|
53
53
|
* URL: /v2/datasets/{datasetRid}/getSchedules
|
|
@@ -103,7 +103,7 @@ const _getSchema = [0, "/v2/datasets/{0}/getSchema", 2];
|
|
|
103
103
|
/**
|
|
104
104
|
* Gets a dataset's schema. If no `endTransactionRid` is provided, the latest committed version will be used.
|
|
105
105
|
*
|
|
106
|
-
* @
|
|
106
|
+
* @public
|
|
107
107
|
*
|
|
108
108
|
* Required Scopes: [api:datasets-read]
|
|
109
109
|
* URL: /v2/datasets/{datasetRid}/getSchema
|
|
@@ -111,14 +111,14 @@ const _getSchema = [0, "/v2/datasets/{0}/getSchema", 2];
|
|
|
111
111
|
export function getSchema($ctx, ...args) {
|
|
112
112
|
return $foundryPlatformFetch($ctx, _getSchema, ...args);
|
|
113
113
|
}
|
|
114
|
-
const _getSchemaBatch = [1, "/v2/datasets/getSchemaBatch",
|
|
114
|
+
const _getSchemaBatch = [1, "/v2/datasets/getSchemaBatch", 1];
|
|
115
115
|
/**
|
|
116
116
|
* Fetch schemas for multiple datasets in a single request. Datasets not found
|
|
117
117
|
* or inaccessible to the user will be omitted from the response.
|
|
118
118
|
*
|
|
119
119
|
* The maximum batch size for this endpoint is 1000.
|
|
120
120
|
*
|
|
121
|
-
* @
|
|
121
|
+
* @public
|
|
122
122
|
*
|
|
123
123
|
* Required Scopes: [api:datasets-read]
|
|
124
124
|
* URL: /v2/datasets/getSchemaBatch
|
|
@@ -126,11 +126,11 @@ const _getSchemaBatch = [1, "/v2/datasets/getSchemaBatch", 3];
|
|
|
126
126
|
export function getSchemaBatch($ctx, ...args) {
|
|
127
127
|
return $foundryPlatformFetch($ctx, _getSchemaBatch, ...args);
|
|
128
128
|
}
|
|
129
|
-
const _putSchema = [2, "/v2/datasets/{0}/putSchema",
|
|
129
|
+
const _putSchema = [2, "/v2/datasets/{0}/putSchema", 1];
|
|
130
130
|
/**
|
|
131
131
|
* Adds a schema on an existing dataset using a PUT request.
|
|
132
132
|
*
|
|
133
|
-
* @
|
|
133
|
+
* @public
|
|
134
134
|
*
|
|
135
135
|
* Required Scopes: [api:datasets-write]
|
|
136
136
|
* URL: /v2/datasets/{datasetRid}/putSchema
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Dataset.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_create","create","$ctx","args","_get","get","_getSchedules","getSchedules","_getHealthChecks","getHealthChecks","_getHealthCheckReports","getHealthCheckReports","_readTable","readTable","_getSchema","getSchema","_getSchemaBatch","getSchemaBatch","_putSchema","putSchema","_jobs","jobs","_transactions","transactions"],"sources":["Dataset.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/datasets\", 1];\n/**\n * Creates a new Dataset. A default branch - `master` for most enrollments - will be created on the Dataset.\n *\n * @public\n *\n * Required Scopes: [api:datasets-write]\n * URL: /v2/datasets\n */\nexport function create($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _create, ...args);\n}\nconst _get = [0, \"/v2/datasets/{0}\"];\n/**\n * Get the Dataset with the specified rid.\n *\n * @public\n *\n * Required Scopes: [api:datasets-read]\n * URL: /v2/datasets/{datasetRid}\n */\nexport function get($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _get, ...args);\n}\nconst _getSchedules = [0, \"/v2/datasets/{0}/getSchedules\", 2];\n/**\n * Get the RIDs of the Schedules that target the given Dataset.\n *\n * Note: It may take up to an hour for recent changes to schedules to be reflected in this response,\n * especially for schedules managed by Marketplace. This operation will return outdated results in the\n * meantime.\n *\n * @
|
|
1
|
+
{"version":3,"file":"Dataset.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_create","create","$ctx","args","_get","get","_getSchedules","getSchedules","_getHealthChecks","getHealthChecks","_getHealthCheckReports","getHealthCheckReports","_readTable","readTable","_getSchema","getSchema","_getSchemaBatch","getSchemaBatch","_putSchema","putSchema","_jobs","jobs","_transactions","transactions"],"sources":["Dataset.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/datasets\", 1];\n/**\n * Creates a new Dataset. A default branch - `master` for most enrollments - will be created on the Dataset.\n *\n * @public\n *\n * Required Scopes: [api:datasets-write]\n * URL: /v2/datasets\n */\nexport function create($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _create, ...args);\n}\nconst _get = [0, \"/v2/datasets/{0}\"];\n/**\n * Get the Dataset with the specified rid.\n *\n * @public\n *\n * Required Scopes: [api:datasets-read]\n * URL: /v2/datasets/{datasetRid}\n */\nexport function get($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _get, ...args);\n}\nconst _getSchedules = [0, \"/v2/datasets/{0}/getSchedules\", 2];\n/**\n * Get the RIDs of the Schedules that target the given Dataset.\n *\n * Note: It may take up to an hour for recent changes to schedules to be reflected in this response,\n * especially for schedules managed by Marketplace. This operation will return outdated results in the\n * meantime.\n *\n * @public\n *\n * Required Scopes: [api:orchestration-read, api:datasets-read]\n * URL: /v2/datasets/{datasetRid}/getSchedules\n */\nexport function getSchedules($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _getSchedules, ...args);\n}\nconst _getHealthChecks = [0, \"/v2/datasets/{0}/getHealthChecks\", 2];\n/**\n * Get the RIDs of the Data Health Checks that are configured for the given Dataset.\n *\n * @beta\n *\n * Required Scopes: [api:data-health-read, api:datasets-read]\n * URL: /v2/datasets/{datasetRid}/getHealthChecks\n */\nexport function getHealthChecks($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _getHealthChecks, ...args);\n}\nconst _getHealthCheckReports = [0, \"/v2/datasets/{0}/getHealthCheckReports\", 2];\n/**\n * Get the most recent Data Health Check report for each check configured on the given Dataset.\n * Returns one report per check, representing the current health status of the dataset.\n *\n * To get the list of checks configured on a Dataset, use\n * [Get Dataset Health Checks](https://www.palantir.com/docs/foundry/api/datasets/get-dataset-health-checks/).\n * For the full report history of a specific check, use\n * [Get Latest Check Reports](https://www.palantir.com/docs/foundry/api/v2/data-health-v2-resources/checks/get-latest-check-reports).\n *\n * @beta\n *\n * Required Scopes: [api:data-health-read, api:datasets-read]\n * URL: /v2/datasets/{datasetRid}/getHealthCheckReports\n */\nexport function getHealthCheckReports($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _getHealthCheckReports, ...args);\n}\nconst _readTable = [0, \"/v2/datasets/{0}/readTable\", 2, , \"application/octet-stream\"];\n/**\n * Gets the content of a dataset as a table in the specified format.\n *\n * This endpoint currently does not support views (virtual datasets composed of other datasets).\n *\n * @public\n *\n * Required Scopes: [api:datasets-read]\n * URL: /v2/datasets/{datasetRid}/readTable\n */\nexport function readTable($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _readTable, ...args);\n}\nconst _getSchema = [0, \"/v2/datasets/{0}/getSchema\", 2];\n/**\n * Gets a dataset's schema. If no `endTransactionRid` is provided, the latest committed version will be used.\n *\n * @public\n *\n * Required Scopes: [api:datasets-read]\n * URL: /v2/datasets/{datasetRid}/getSchema\n */\nexport function getSchema($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _getSchema, ...args);\n}\nconst _getSchemaBatch = [1, \"/v2/datasets/getSchemaBatch\", 1];\n/**\n * Fetch schemas for multiple datasets in a single request. Datasets not found\n * or inaccessible to the user will be omitted from the response.\n *\n * The maximum batch size for this endpoint is 1000.\n *\n * @public\n *\n * Required Scopes: [api:datasets-read]\n * URL: /v2/datasets/getSchemaBatch\n */\nexport function getSchemaBatch($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _getSchemaBatch, ...args);\n}\nconst _putSchema = [2, \"/v2/datasets/{0}/putSchema\", 1];\n/**\n * Adds a schema on an existing dataset using a PUT request.\n *\n * @public\n *\n * Required Scopes: [api:datasets-write]\n * URL: /v2/datasets/{datasetRid}/putSchema\n */\nexport function putSchema($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _putSchema, ...args);\n}\nconst _jobs = [1, \"/v2/datasets/{0}/jobs\", 3];\n/**\n * Get the RIDs of the Jobs for the given dataset. By default, returned Jobs are sorted in descending order by the Job start time.\n *\n * @beta\n *\n * Required Scopes: [api:datasets-read]\n * URL: /v2/datasets/{datasetRid}/jobs\n */\nexport function jobs($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _jobs, ...args);\n}\nconst _transactions = [0, \"/v2/datasets/{0}/transactions\", 2];\n/**\n * Get the Transaction history for the given Dataset. When requesting all transactions, the endpoint returns them in reverse chronological order.\n *\n * @beta\n *\n * Required Scopes: [api:datasets-read]\n * URL: /v2/datasets/{datasetRid}/transactions\n */\nexport function transactions($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _transactions, ...args);\n}\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -5,21 +5,16 @@ import type * as _Datasets from "../_components.js";
|
|
|
5
5
|
/**
|
|
6
6
|
* Create a new View.
|
|
7
7
|
*
|
|
8
|
-
* @
|
|
8
|
+
* @public
|
|
9
9
|
*
|
|
10
10
|
* Required Scopes: [api:datasets-write]
|
|
11
11
|
* URL: /v2/datasets/views
|
|
12
12
|
*/
|
|
13
|
-
export declare function create($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
14
|
-
$body: _Datasets.CreateViewRequest,
|
|
15
|
-
$queryParams?: {
|
|
16
|
-
preview?: _Core.PreviewMode | undefined;
|
|
17
|
-
}
|
|
18
|
-
]): Promise<_Datasets.View>;
|
|
13
|
+
export declare function create($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [$body: _Datasets.CreateViewRequest]): Promise<_Datasets.View>;
|
|
19
14
|
/**
|
|
20
15
|
* Get metadata for a View.
|
|
21
16
|
*
|
|
22
|
-
* @
|
|
17
|
+
* @public
|
|
23
18
|
*
|
|
24
19
|
* Required Scopes: []
|
|
25
20
|
* URL: /v2/datasets/views/{viewDatasetRid}
|
|
@@ -28,72 +23,59 @@ export declare function get($ctx: $Client | $ClientContext | $OldClient | $OldCl
|
|
|
28
23
|
viewDatasetRid: _Core.DatasetRid,
|
|
29
24
|
$queryParams?: {
|
|
30
25
|
branch?: _Core.BranchName | undefined;
|
|
31
|
-
preview?: _Core.PreviewMode | undefined;
|
|
32
26
|
}
|
|
33
27
|
]): Promise<_Datasets.View>;
|
|
34
28
|
/**
|
|
35
29
|
* Adds one or more backing datasets to a View. Any duplicates with the same dataset RID and branch name are
|
|
36
30
|
* ignored.
|
|
37
31
|
*
|
|
38
|
-
* @
|
|
32
|
+
* @public
|
|
39
33
|
*
|
|
40
34
|
* Required Scopes: [api:datasets-write]
|
|
41
35
|
* URL: /v2/datasets/views/{viewDatasetRid}/addBackingDatasets
|
|
42
36
|
*/
|
|
43
37
|
export declare function addBackingDatasets($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
44
38
|
viewDatasetRid: _Core.DatasetRid,
|
|
45
|
-
$body: _Datasets.AddBackingDatasetsRequest
|
|
46
|
-
$queryParams?: {
|
|
47
|
-
preview?: _Core.PreviewMode | undefined;
|
|
48
|
-
}
|
|
39
|
+
$body: _Datasets.AddBackingDatasetsRequest
|
|
49
40
|
]): Promise<_Datasets.View>;
|
|
50
41
|
/**
|
|
51
42
|
* Replaces the backing datasets for a View. Removing any backing dataset triggers a
|
|
52
43
|
* [SNAPSHOT](https://www.palantir.com/docs/foundry/data-integration/datasets#snapshot) transaction the next time the View is updated.
|
|
53
44
|
*
|
|
54
|
-
* @
|
|
45
|
+
* @public
|
|
55
46
|
*
|
|
56
47
|
* Required Scopes: [api:datasets-write]
|
|
57
48
|
* URL: /v2/datasets/views/{viewDatasetRid}/replaceBackingDatasets
|
|
58
49
|
*/
|
|
59
50
|
export declare function replaceBackingDatasets($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
60
51
|
viewDatasetRid: _Core.DatasetRid,
|
|
61
|
-
$body: _Datasets.ReplaceBackingDatasetsRequest
|
|
62
|
-
$queryParams?: {
|
|
63
|
-
preview?: _Core.PreviewMode | undefined;
|
|
64
|
-
}
|
|
52
|
+
$body: _Datasets.ReplaceBackingDatasetsRequest
|
|
65
53
|
]): Promise<_Datasets.View>;
|
|
66
54
|
/**
|
|
67
55
|
* Removes specified backing datasets from a View. Removing a dataset triggers a
|
|
68
56
|
* [SNAPSHOT](https://www.palantir.com/docs/foundry/data-integration/datasets#snapshot) transaction on the next update. If a
|
|
69
57
|
* specified dataset does not exist, no error is thrown.
|
|
70
58
|
*
|
|
71
|
-
* @
|
|
59
|
+
* @public
|
|
72
60
|
*
|
|
73
61
|
* Required Scopes: [api:datasets-write]
|
|
74
62
|
* URL: /v2/datasets/views/{viewDatasetRid}/removeBackingDatasets
|
|
75
63
|
*/
|
|
76
64
|
export declare function removeBackingDatasets($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
77
65
|
viewDatasetRid: _Core.DatasetRid,
|
|
78
|
-
$body: _Datasets.RemoveBackingDatasetsRequest
|
|
79
|
-
$queryParams?: {
|
|
80
|
-
preview?: _Core.PreviewMode | undefined;
|
|
81
|
-
}
|
|
66
|
+
$body: _Datasets.RemoveBackingDatasetsRequest
|
|
82
67
|
]): Promise<_Datasets.View>;
|
|
83
68
|
/**
|
|
84
69
|
* Adds a primary key to a View that does not already have one. Primary keys are treated as
|
|
85
70
|
* guarantees provided by the creator of the dataset.
|
|
86
71
|
*
|
|
87
|
-
* @
|
|
72
|
+
* @public
|
|
88
73
|
*
|
|
89
74
|
* Required Scopes: [api:datasets-write]
|
|
90
75
|
* URL: /v2/datasets/views/{viewDatasetRid}/addPrimaryKey
|
|
91
76
|
*/
|
|
92
77
|
export declare function addPrimaryKey($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
93
78
|
viewDatasetRid: _Core.DatasetRid,
|
|
94
|
-
$body: _Datasets.AddPrimaryKeyRequest
|
|
95
|
-
$queryParams?: {
|
|
96
|
-
preview?: _Core.PreviewMode | undefined;
|
|
97
|
-
}
|
|
79
|
+
$body: _Datasets.AddPrimaryKeyRequest
|
|
98
80
|
]): Promise<_Datasets.View>;
|
|
99
81
|
//# sourceMappingURL=View.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"View.d.ts","sourceRoot":"","sources":["../../../src/public/View.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,SAAS,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"View.d.ts","sourceRoot":"","sources":["../../../src/public/View.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,SAAS,MAAM,mBAAmB,CAAC;AAQpD;;;;;;;GAOG;AACH,wBAAgB,MAAM,CACpB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE,CAAC,KAAK,EAAE,SAAS,CAAC,iBAAiB,CAAC,GAC5C,OAAO,CAAC,SAAS,CAAC,IAAI,CAAC,CAEzB;AASD;;;;;;;GAOG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,cAAc,EAAE,KAAK,CAAC,UAAU;IAEhC,YAAY,CAAC,EAAE;QAAE,MAAM,CAAC,EAAE,KAAK,CAAC,UAAU,GAAG,SAAS,CAAA;KAAE;CACzD,GACA,OAAO,CAAC,SAAS,CAAC,IAAI,CAAC,CAEzB;AASD;;;;;;;;GAQG;AACH,wBAAgB,kBAAkB,CAChC,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,cAAc,EAAE,KAAK,CAAC,UAAU;IAChC,KAAK,EAAE,SAAS,CAAC,yBAAyB;CAC3C,GACA,OAAO,CAAC,SAAS,CAAC,IAAI,CAAC,CAEzB;AASD;;;;;;;;GAQG;AACH,wBAAgB,sBAAsB,CACpC,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,cAAc,EAAE,KAAK,CAAC,UAAU;IAChC,KAAK,EAAE,SAAS,CAAC,6BAA6B;CAC/C,GACA,OAAO,CAAC,SAAS,CAAC,IAAI,CAAC,CAEzB;AASD;;;;;;;;;GASG;AACH,wBAAgB,qBAAqB,CACnC,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,cAAc,EAAE,KAAK,CAAC,UAAU;IAChC,KAAK,EAAE,SAAS,CAAC,4BAA4B;CAC9C,GACA,OAAO,CAAC,SAAS,CAAC,IAAI,CAAC,CAEzB;AASD;;;;;;;;GAQG;AACH,wBAAgB,aAAa,CAC3B,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,cAAc,EAAE,KAAK,CAAC,UAAU;IAChC,KAAK,EAAE,SAAS,CAAC,oBAAoB;CACtC,GACA,OAAO,CAAC,SAAS,CAAC,IAAI,CAAC,CAEzB"}
|
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
*/
|
|
16
16
|
import { foundryPlatformFetch as $foundryPlatformFetch } from "@osdk/shared.net.platformapi";
|
|
17
17
|
//
|
|
18
|
-
const _create = [1, "/v2/datasets/views",
|
|
18
|
+
const _create = [1, "/v2/datasets/views", 1];
|
|
19
19
|
/**
|
|
20
20
|
* Create a new View.
|
|
21
21
|
*
|
|
22
|
-
* @
|
|
22
|
+
* @public
|
|
23
23
|
*
|
|
24
24
|
* Required Scopes: [api:datasets-write]
|
|
25
25
|
* URL: /v2/datasets/views
|
|
@@ -31,7 +31,7 @@ const _get = [0, "/v2/datasets/views/{0}", 2];
|
|
|
31
31
|
/**
|
|
32
32
|
* Get metadata for a View.
|
|
33
33
|
*
|
|
34
|
-
* @
|
|
34
|
+
* @public
|
|
35
35
|
*
|
|
36
36
|
* Required Scopes: []
|
|
37
37
|
* URL: /v2/datasets/views/{viewDatasetRid}
|
|
@@ -39,12 +39,12 @@ const _get = [0, "/v2/datasets/views/{0}", 2];
|
|
|
39
39
|
export function get($ctx, ...args) {
|
|
40
40
|
return $foundryPlatformFetch($ctx, _get, ...args);
|
|
41
41
|
}
|
|
42
|
-
const _addBackingDatasets = [1, "/v2/datasets/views/{0}/addBackingDatasets",
|
|
42
|
+
const _addBackingDatasets = [1, "/v2/datasets/views/{0}/addBackingDatasets", 1];
|
|
43
43
|
/**
|
|
44
44
|
* Adds one or more backing datasets to a View. Any duplicates with the same dataset RID and branch name are
|
|
45
45
|
* ignored.
|
|
46
46
|
*
|
|
47
|
-
* @
|
|
47
|
+
* @public
|
|
48
48
|
*
|
|
49
49
|
* Required Scopes: [api:datasets-write]
|
|
50
50
|
* URL: /v2/datasets/views/{viewDatasetRid}/addBackingDatasets
|
|
@@ -52,12 +52,12 @@ const _addBackingDatasets = [1, "/v2/datasets/views/{0}/addBackingDatasets", 3];
|
|
|
52
52
|
export function addBackingDatasets($ctx, ...args) {
|
|
53
53
|
return $foundryPlatformFetch($ctx, _addBackingDatasets, ...args);
|
|
54
54
|
}
|
|
55
|
-
const _replaceBackingDatasets = [2, "/v2/datasets/views/{0}/replaceBackingDatasets",
|
|
55
|
+
const _replaceBackingDatasets = [2, "/v2/datasets/views/{0}/replaceBackingDatasets", 1];
|
|
56
56
|
/**
|
|
57
57
|
* Replaces the backing datasets for a View. Removing any backing dataset triggers a
|
|
58
58
|
* [SNAPSHOT](https://www.palantir.com/docs/foundry/data-integration/datasets#snapshot) transaction the next time the View is updated.
|
|
59
59
|
*
|
|
60
|
-
* @
|
|
60
|
+
* @public
|
|
61
61
|
*
|
|
62
62
|
* Required Scopes: [api:datasets-write]
|
|
63
63
|
* URL: /v2/datasets/views/{viewDatasetRid}/replaceBackingDatasets
|
|
@@ -65,13 +65,13 @@ const _replaceBackingDatasets = [2, "/v2/datasets/views/{0}/replaceBackingDatase
|
|
|
65
65
|
export function replaceBackingDatasets($ctx, ...args) {
|
|
66
66
|
return $foundryPlatformFetch($ctx, _replaceBackingDatasets, ...args);
|
|
67
67
|
}
|
|
68
|
-
const _removeBackingDatasets = [1, "/v2/datasets/views/{0}/removeBackingDatasets",
|
|
68
|
+
const _removeBackingDatasets = [1, "/v2/datasets/views/{0}/removeBackingDatasets", 1];
|
|
69
69
|
/**
|
|
70
70
|
* Removes specified backing datasets from a View. Removing a dataset triggers a
|
|
71
71
|
* [SNAPSHOT](https://www.palantir.com/docs/foundry/data-integration/datasets#snapshot) transaction on the next update. If a
|
|
72
72
|
* specified dataset does not exist, no error is thrown.
|
|
73
73
|
*
|
|
74
|
-
* @
|
|
74
|
+
* @public
|
|
75
75
|
*
|
|
76
76
|
* Required Scopes: [api:datasets-write]
|
|
77
77
|
* URL: /v2/datasets/views/{viewDatasetRid}/removeBackingDatasets
|
|
@@ -79,12 +79,12 @@ const _removeBackingDatasets = [1, "/v2/datasets/views/{0}/removeBackingDatasets
|
|
|
79
79
|
export function removeBackingDatasets($ctx, ...args) {
|
|
80
80
|
return $foundryPlatformFetch($ctx, _removeBackingDatasets, ...args);
|
|
81
81
|
}
|
|
82
|
-
const _addPrimaryKey = [1, "/v2/datasets/views/{0}/addPrimaryKey",
|
|
82
|
+
const _addPrimaryKey = [1, "/v2/datasets/views/{0}/addPrimaryKey", 1];
|
|
83
83
|
/**
|
|
84
84
|
* Adds a primary key to a View that does not already have one. Primary keys are treated as
|
|
85
85
|
* guarantees provided by the creator of the dataset.
|
|
86
86
|
*
|
|
87
|
-
* @
|
|
87
|
+
* @public
|
|
88
88
|
*
|
|
89
89
|
* Required Scopes: [api:datasets-write]
|
|
90
90
|
* URL: /v2/datasets/views/{viewDatasetRid}/addPrimaryKey
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"View.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_create","create","$ctx","args","_get","get","_addBackingDatasets","addBackingDatasets","_replaceBackingDatasets","replaceBackingDatasets","_removeBackingDatasets","removeBackingDatasets","_addPrimaryKey","addPrimaryKey"],"sources":["View.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/datasets/views\",
|
|
1
|
+
{"version":3,"file":"View.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_create","create","$ctx","args","_get","get","_addBackingDatasets","addBackingDatasets","_replaceBackingDatasets","replaceBackingDatasets","_removeBackingDatasets","removeBackingDatasets","_addPrimaryKey","addPrimaryKey"],"sources":["View.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/datasets/views\", 1];\n/**\n * Create a new View.\n *\n * @public\n *\n * Required Scopes: [api:datasets-write]\n * URL: /v2/datasets/views\n */\nexport function create($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _create, ...args);\n}\nconst _get = [0, \"/v2/datasets/views/{0}\", 2];\n/**\n * Get metadata for a View.\n *\n * @public\n *\n * Required Scopes: []\n * URL: /v2/datasets/views/{viewDatasetRid}\n */\nexport function get($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _get, ...args);\n}\nconst _addBackingDatasets = [1, \"/v2/datasets/views/{0}/addBackingDatasets\", 1];\n/**\n * Adds one or more backing datasets to a View. Any duplicates with the same dataset RID and branch name are\n * ignored.\n *\n * @public\n *\n * Required Scopes: [api:datasets-write]\n * URL: /v2/datasets/views/{viewDatasetRid}/addBackingDatasets\n */\nexport function addBackingDatasets($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _addBackingDatasets, ...args);\n}\nconst _replaceBackingDatasets = [2, \"/v2/datasets/views/{0}/replaceBackingDatasets\", 1];\n/**\n * Replaces the backing datasets for a View. Removing any backing dataset triggers a\n * [SNAPSHOT](https://www.palantir.com/docs/foundry/data-integration/datasets#snapshot) transaction the next time the View is updated.\n *\n * @public\n *\n * Required Scopes: [api:datasets-write]\n * URL: /v2/datasets/views/{viewDatasetRid}/replaceBackingDatasets\n */\nexport function replaceBackingDatasets($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _replaceBackingDatasets, ...args);\n}\nconst _removeBackingDatasets = [1, \"/v2/datasets/views/{0}/removeBackingDatasets\", 1];\n/**\n * Removes specified backing datasets from a View. Removing a dataset triggers a\n * [SNAPSHOT](https://www.palantir.com/docs/foundry/data-integration/datasets#snapshot) transaction on the next update. If a\n * specified dataset does not exist, no error is thrown.\n *\n * @public\n *\n * Required Scopes: [api:datasets-write]\n * URL: /v2/datasets/views/{viewDatasetRid}/removeBackingDatasets\n */\nexport function removeBackingDatasets($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _removeBackingDatasets, ...args);\n}\nconst _addPrimaryKey = [1, \"/v2/datasets/views/{0}/addPrimaryKey\", 1];\n/**\n * Adds a primary key to a View that does not already have one. Primary keys are treated as\n * guarantees provided by the creator of the dataset.\n *\n * @public\n *\n * Required Scopes: [api:datasets-write]\n * URL: /v2/datasets/views/{viewDatasetRid}/addPrimaryKey\n */\nexport function addPrimaryKey($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _addPrimaryKey, ...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,oBAAoB,EAAE,CAAC,CAAC;AAC5C;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,IAAI,GAAG,CAAC,CAAC,EAAE,wBAAwB,EAAE,CAAC,CAAC;AAC7C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,GAAGA,CAACH,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC/B,OAAOJ,qBAAqB,CAACG,IAAI,EAAEE,IAAI,EAAE,GAAGD,IAAI,CAAC;AACrD;AACA,MAAMG,mBAAmB,GAAG,CAAC,CAAC,EAAE,2CAA2C,EAAE,CAAC,CAAC;AAC/E;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,kBAAkBA,CAACL,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC9C,OAAOJ,qBAAqB,CAACG,IAAI,EAAEI,mBAAmB,EAAE,GAAGH,IAAI,CAAC;AACpE;AACA,MAAMK,uBAAuB,GAAG,CAAC,CAAC,EAAE,+CAA+C,EAAE,CAAC,CAAC;AACvF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,sBAAsBA,CAACP,IAAI,EAAE,GAAGC,IAAI,EAAE;EAClD,OAAOJ,qBAAqB,CAACG,IAAI,EAAEM,uBAAuB,EAAE,GAAGL,IAAI,CAAC;AACxE;AACA,MAAMO,sBAAsB,GAAG,CAAC,CAAC,EAAE,8CAA8C,EAAE,CAAC,CAAC;AACrF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,qBAAqBA,CAACT,IAAI,EAAE,GAAGC,IAAI,EAAE;EACjD,OAAOJ,qBAAqB,CAACG,IAAI,EAAEQ,sBAAsB,EAAE,GAAGP,IAAI,CAAC;AACvE;AACA,MAAMS,cAAc,GAAG,CAAC,CAAC,EAAE,sCAAsC,EAAE,CAAC,CAAC;AACrE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,aAAaA,CAACX,IAAI,EAAE,GAAGC,IAAI,EAAE;EACzC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEU,cAAc,EAAE,GAAGT,IAAI,CAAC;AAC/D","ignoreList":[]}
|
|
@@ -27,7 +27,7 @@ export declare function get($ctx: $Client | $ClientContext | $OldClient | $OldCl
|
|
|
27
27
|
* especially for schedules managed by Marketplace. This operation will return outdated results in the
|
|
28
28
|
* meantime.
|
|
29
29
|
*
|
|
30
|
-
* @
|
|
30
|
+
* @public
|
|
31
31
|
*
|
|
32
32
|
* Required Scopes: [api:orchestration-read, api:datasets-read]
|
|
33
33
|
* URL: /v2/datasets/{datasetRid}/getSchedules
|
|
@@ -38,7 +38,6 @@ export declare function getSchedules($ctx: $Client | $ClientContext | $OldClient
|
|
|
38
38
|
branchName?: _Core.BranchName | undefined;
|
|
39
39
|
pageSize?: _Core.PageSize | undefined;
|
|
40
40
|
pageToken?: _Core.PageToken | undefined;
|
|
41
|
-
preview?: _Core.PreviewMode | undefined;
|
|
42
41
|
}
|
|
43
42
|
]): Promise<_Datasets.ListSchedulesResponse>;
|
|
44
43
|
/**
|
|
@@ -101,7 +100,7 @@ export declare function readTable($ctx: $Client | $ClientContext | $OldClient |
|
|
|
101
100
|
/**
|
|
102
101
|
* Gets a dataset's schema. If no `endTransactionRid` is provided, the latest committed version will be used.
|
|
103
102
|
*
|
|
104
|
-
* @
|
|
103
|
+
* @public
|
|
105
104
|
*
|
|
106
105
|
* Required Scopes: [api:datasets-read]
|
|
107
106
|
* URL: /v2/datasets/{datasetRid}/getSchema
|
|
@@ -112,7 +111,6 @@ export declare function getSchema($ctx: $Client | $ClientContext | $OldClient |
|
|
|
112
111
|
branchName?: _Core.BranchName | undefined;
|
|
113
112
|
endTransactionRid?: _Datasets.TransactionRid | undefined;
|
|
114
113
|
versionId?: _Core.VersionId | undefined;
|
|
115
|
-
preview?: _Core.PreviewMode | undefined;
|
|
116
114
|
}
|
|
117
115
|
]): Promise<_Datasets.GetDatasetSchemaResponse>;
|
|
118
116
|
/**
|
|
@@ -121,31 +119,23 @@ export declare function getSchema($ctx: $Client | $ClientContext | $OldClient |
|
|
|
121
119
|
*
|
|
122
120
|
* The maximum batch size for this endpoint is 1000.
|
|
123
121
|
*
|
|
124
|
-
* @
|
|
122
|
+
* @public
|
|
125
123
|
*
|
|
126
124
|
* Required Scopes: [api:datasets-read]
|
|
127
125
|
* URL: /v2/datasets/getSchemaBatch
|
|
128
126
|
*/
|
|
129
|
-
export declare function getSchemaBatch($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
130
|
-
$body: Array<_Datasets.GetSchemaDatasetsBatchRequestElement>,
|
|
131
|
-
$queryParams?: {
|
|
132
|
-
preview?: _Core.PreviewMode | undefined;
|
|
133
|
-
}
|
|
134
|
-
]): Promise<_Datasets.GetSchemaDatasetsBatchResponse>;
|
|
127
|
+
export declare function getSchemaBatch($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [$body: Array<_Datasets.GetSchemaDatasetsBatchRequestElement>]): Promise<_Datasets.GetSchemaDatasetsBatchResponse>;
|
|
135
128
|
/**
|
|
136
129
|
* Adds a schema on an existing dataset using a PUT request.
|
|
137
130
|
*
|
|
138
|
-
* @
|
|
131
|
+
* @public
|
|
139
132
|
*
|
|
140
133
|
* Required Scopes: [api:datasets-write]
|
|
141
134
|
* URL: /v2/datasets/{datasetRid}/putSchema
|
|
142
135
|
*/
|
|
143
136
|
export declare function putSchema($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
144
137
|
datasetRid: _Core.DatasetRid,
|
|
145
|
-
$body: _Datasets.PutDatasetSchemaRequest
|
|
146
|
-
$queryParams?: {
|
|
147
|
-
preview?: _Core.PreviewMode | undefined;
|
|
148
|
-
}
|
|
138
|
+
$body: _Datasets.PutDatasetSchemaRequest
|
|
149
139
|
]): Promise<_Datasets.GetDatasetSchemaResponse>;
|
|
150
140
|
/**
|
|
151
141
|
* Get the RIDs of the Jobs for the given dataset. By default, returned Jobs are sorted in descending order by the Job start time.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Dataset.d.ts","sourceRoot":"","sources":["../../../src/public/Dataset.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,SAAS,MAAM,mBAAmB,CAAC;AAQpD;;;;;;;GAOG;AACH,wBAAgB,MAAM,CACpB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE,CAAC,KAAK,EAAE,SAAS,CAAC,oBAAoB,CAAC,GAC/C,OAAO,CAAC,SAAS,CAAC,OAAO,CAAC,CAE5B;AAMD;;;;;;;GAOG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE,CAAC,UAAU,EAAE,KAAK,CAAC,UAAU,CAAC,GACtC,OAAO,CAAC,SAAS,CAAC,OAAO,CAAC,CAE5B;
|
|
1
|
+
{"version":3,"file":"Dataset.d.ts","sourceRoot":"","sources":["../../../src/public/Dataset.ts"],"names":[],"mappings":"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"}
|
|
@@ -47,7 +47,7 @@ const _getSchedules = [0, "/v2/datasets/{0}/getSchedules", 2];
|
|
|
47
47
|
* especially for schedules managed by Marketplace. This operation will return outdated results in the
|
|
48
48
|
* meantime.
|
|
49
49
|
*
|
|
50
|
-
* @
|
|
50
|
+
* @public
|
|
51
51
|
*
|
|
52
52
|
* Required Scopes: [api:orchestration-read, api:datasets-read]
|
|
53
53
|
* URL: /v2/datasets/{datasetRid}/getSchedules
|
|
@@ -103,7 +103,7 @@ const _getSchema = [0, "/v2/datasets/{0}/getSchema", 2];
|
|
|
103
103
|
/**
|
|
104
104
|
* Gets a dataset's schema. If no `endTransactionRid` is provided, the latest committed version will be used.
|
|
105
105
|
*
|
|
106
|
-
* @
|
|
106
|
+
* @public
|
|
107
107
|
*
|
|
108
108
|
* Required Scopes: [api:datasets-read]
|
|
109
109
|
* URL: /v2/datasets/{datasetRid}/getSchema
|
|
@@ -111,14 +111,14 @@ const _getSchema = [0, "/v2/datasets/{0}/getSchema", 2];
|
|
|
111
111
|
export function getSchema($ctx, ...args) {
|
|
112
112
|
return $foundryPlatformFetch($ctx, _getSchema, ...args);
|
|
113
113
|
}
|
|
114
|
-
const _getSchemaBatch = [1, "/v2/datasets/getSchemaBatch",
|
|
114
|
+
const _getSchemaBatch = [1, "/v2/datasets/getSchemaBatch", 1];
|
|
115
115
|
/**
|
|
116
116
|
* Fetch schemas for multiple datasets in a single request. Datasets not found
|
|
117
117
|
* or inaccessible to the user will be omitted from the response.
|
|
118
118
|
*
|
|
119
119
|
* The maximum batch size for this endpoint is 1000.
|
|
120
120
|
*
|
|
121
|
-
* @
|
|
121
|
+
* @public
|
|
122
122
|
*
|
|
123
123
|
* Required Scopes: [api:datasets-read]
|
|
124
124
|
* URL: /v2/datasets/getSchemaBatch
|
|
@@ -126,11 +126,11 @@ const _getSchemaBatch = [1, "/v2/datasets/getSchemaBatch", 3];
|
|
|
126
126
|
export function getSchemaBatch($ctx, ...args) {
|
|
127
127
|
return $foundryPlatformFetch($ctx, _getSchemaBatch, ...args);
|
|
128
128
|
}
|
|
129
|
-
const _putSchema = [2, "/v2/datasets/{0}/putSchema",
|
|
129
|
+
const _putSchema = [2, "/v2/datasets/{0}/putSchema", 1];
|
|
130
130
|
/**
|
|
131
131
|
* Adds a schema on an existing dataset using a PUT request.
|
|
132
132
|
*
|
|
133
|
-
* @
|
|
133
|
+
* @public
|
|
134
134
|
*
|
|
135
135
|
* Required Scopes: [api:datasets-write]
|
|
136
136
|
* URL: /v2/datasets/{datasetRid}/putSchema
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"Dataset.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_create","create","$ctx","args","_get","get","_getSchedules","getSchedules","_getHealthChecks","getHealthChecks","_getHealthCheckReports","getHealthCheckReports","_readTable","readTable","_getSchema","getSchema","_getSchemaBatch","getSchemaBatch","_putSchema","putSchema","_jobs","jobs","_transactions","transactions"],"sources":["Dataset.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/datasets\", 1];\n/**\n * Creates a new Dataset. A default branch - `master` for most enrollments - will be created on the Dataset.\n *\n * @public\n *\n * Required Scopes: [api:datasets-write]\n * URL: /v2/datasets\n */\nexport function create($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _create, ...args);\n}\nconst _get = [0, \"/v2/datasets/{0}\"];\n/**\n * Get the Dataset with the specified rid.\n *\n * @public\n *\n * Required Scopes: [api:datasets-read]\n * URL: /v2/datasets/{datasetRid}\n */\nexport function get($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _get, ...args);\n}\nconst _getSchedules = [0, \"/v2/datasets/{0}/getSchedules\", 2];\n/**\n * Get the RIDs of the Schedules that target the given Dataset.\n *\n * Note: It may take up to an hour for recent changes to schedules to be reflected in this response,\n * especially for schedules managed by Marketplace. This operation will return outdated results in the\n * meantime.\n *\n * @
|
|
1
|
+
{"version":3,"file":"Dataset.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_create","create","$ctx","args","_get","get","_getSchedules","getSchedules","_getHealthChecks","getHealthChecks","_getHealthCheckReports","getHealthCheckReports","_readTable","readTable","_getSchema","getSchema","_getSchemaBatch","getSchemaBatch","_putSchema","putSchema","_jobs","jobs","_transactions","transactions"],"sources":["Dataset.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/datasets\", 1];\n/**\n * Creates a new Dataset. A default branch - `master` for most enrollments - will be created on the Dataset.\n *\n * @public\n *\n * Required Scopes: [api:datasets-write]\n * URL: /v2/datasets\n */\nexport function create($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _create, ...args);\n}\nconst _get = [0, \"/v2/datasets/{0}\"];\n/**\n * Get the Dataset with the specified rid.\n *\n * @public\n *\n * Required Scopes: [api:datasets-read]\n * URL: /v2/datasets/{datasetRid}\n */\nexport function get($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _get, ...args);\n}\nconst _getSchedules = [0, \"/v2/datasets/{0}/getSchedules\", 2];\n/**\n * Get the RIDs of the Schedules that target the given Dataset.\n *\n * Note: It may take up to an hour for recent changes to schedules to be reflected in this response,\n * especially for schedules managed by Marketplace. This operation will return outdated results in the\n * meantime.\n *\n * @public\n *\n * Required Scopes: [api:orchestration-read, api:datasets-read]\n * URL: /v2/datasets/{datasetRid}/getSchedules\n */\nexport function getSchedules($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _getSchedules, ...args);\n}\nconst _getHealthChecks = [0, \"/v2/datasets/{0}/getHealthChecks\", 2];\n/**\n * Get the RIDs of the Data Health Checks that are configured for the given Dataset.\n *\n * @beta\n *\n * Required Scopes: [api:data-health-read, api:datasets-read]\n * URL: /v2/datasets/{datasetRid}/getHealthChecks\n */\nexport function getHealthChecks($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _getHealthChecks, ...args);\n}\nconst _getHealthCheckReports = [0, \"/v2/datasets/{0}/getHealthCheckReports\", 2];\n/**\n * Get the most recent Data Health Check report for each check configured on the given Dataset.\n * Returns one report per check, representing the current health status of the dataset.\n *\n * To get the list of checks configured on a Dataset, use\n * [Get Dataset Health Checks](https://www.palantir.com/docs/foundry/api/datasets/get-dataset-health-checks/).\n * For the full report history of a specific check, use\n * [Get Latest Check Reports](https://www.palantir.com/docs/foundry/api/v2/data-health-v2-resources/checks/get-latest-check-reports).\n *\n * @beta\n *\n * Required Scopes: [api:data-health-read, api:datasets-read]\n * URL: /v2/datasets/{datasetRid}/getHealthCheckReports\n */\nexport function getHealthCheckReports($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _getHealthCheckReports, ...args);\n}\nconst _readTable = [0, \"/v2/datasets/{0}/readTable\", 2, , \"application/octet-stream\"];\n/**\n * Gets the content of a dataset as a table in the specified format.\n *\n * This endpoint currently does not support views (virtual datasets composed of other datasets).\n *\n * @public\n *\n * Required Scopes: [api:datasets-read]\n * URL: /v2/datasets/{datasetRid}/readTable\n */\nexport function readTable($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _readTable, ...args);\n}\nconst _getSchema = [0, \"/v2/datasets/{0}/getSchema\", 2];\n/**\n * Gets a dataset's schema. If no `endTransactionRid` is provided, the latest committed version will be used.\n *\n * @public\n *\n * Required Scopes: [api:datasets-read]\n * URL: /v2/datasets/{datasetRid}/getSchema\n */\nexport function getSchema($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _getSchema, ...args);\n}\nconst _getSchemaBatch = [1, \"/v2/datasets/getSchemaBatch\", 1];\n/**\n * Fetch schemas for multiple datasets in a single request. Datasets not found\n * or inaccessible to the user will be omitted from the response.\n *\n * The maximum batch size for this endpoint is 1000.\n *\n * @public\n *\n * Required Scopes: [api:datasets-read]\n * URL: /v2/datasets/getSchemaBatch\n */\nexport function getSchemaBatch($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _getSchemaBatch, ...args);\n}\nconst _putSchema = [2, \"/v2/datasets/{0}/putSchema\", 1];\n/**\n * Adds a schema on an existing dataset using a PUT request.\n *\n * @public\n *\n * Required Scopes: [api:datasets-write]\n * URL: /v2/datasets/{datasetRid}/putSchema\n */\nexport function putSchema($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _putSchema, ...args);\n}\nconst _jobs = [1, \"/v2/datasets/{0}/jobs\", 3];\n/**\n * Get the RIDs of the Jobs for the given dataset. By default, returned Jobs are sorted in descending order by the Job start time.\n *\n * @beta\n *\n * Required Scopes: [api:datasets-read]\n * URL: /v2/datasets/{datasetRid}/jobs\n */\nexport function jobs($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _jobs, ...args);\n}\nconst _transactions = [0, \"/v2/datasets/{0}/transactions\", 2];\n/**\n * Get the Transaction history for the given Dataset. When requesting all transactions, the endpoint returns them in reverse chronological order.\n *\n * @beta\n *\n * Required Scopes: [api:datasets-read]\n * URL: /v2/datasets/{datasetRid}/transactions\n */\nexport function transactions($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _transactions, ...args);\n}\n"],"mappings":"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","ignoreList":[]}
|
|
@@ -5,21 +5,16 @@ import type * as _Datasets from "../_components.js";
|
|
|
5
5
|
/**
|
|
6
6
|
* Create a new View.
|
|
7
7
|
*
|
|
8
|
-
* @
|
|
8
|
+
* @public
|
|
9
9
|
*
|
|
10
10
|
* Required Scopes: [api:datasets-write]
|
|
11
11
|
* URL: /v2/datasets/views
|
|
12
12
|
*/
|
|
13
|
-
export declare function create($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
14
|
-
$body: _Datasets.CreateViewRequest,
|
|
15
|
-
$queryParams?: {
|
|
16
|
-
preview?: _Core.PreviewMode | undefined;
|
|
17
|
-
}
|
|
18
|
-
]): Promise<_Datasets.View>;
|
|
13
|
+
export declare function create($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [$body: _Datasets.CreateViewRequest]): Promise<_Datasets.View>;
|
|
19
14
|
/**
|
|
20
15
|
* Get metadata for a View.
|
|
21
16
|
*
|
|
22
|
-
* @
|
|
17
|
+
* @public
|
|
23
18
|
*
|
|
24
19
|
* Required Scopes: []
|
|
25
20
|
* URL: /v2/datasets/views/{viewDatasetRid}
|
|
@@ -28,72 +23,59 @@ export declare function get($ctx: $Client | $ClientContext | $OldClient | $OldCl
|
|
|
28
23
|
viewDatasetRid: _Core.DatasetRid,
|
|
29
24
|
$queryParams?: {
|
|
30
25
|
branch?: _Core.BranchName | undefined;
|
|
31
|
-
preview?: _Core.PreviewMode | undefined;
|
|
32
26
|
}
|
|
33
27
|
]): Promise<_Datasets.View>;
|
|
34
28
|
/**
|
|
35
29
|
* Adds one or more backing datasets to a View. Any duplicates with the same dataset RID and branch name are
|
|
36
30
|
* ignored.
|
|
37
31
|
*
|
|
38
|
-
* @
|
|
32
|
+
* @public
|
|
39
33
|
*
|
|
40
34
|
* Required Scopes: [api:datasets-write]
|
|
41
35
|
* URL: /v2/datasets/views/{viewDatasetRid}/addBackingDatasets
|
|
42
36
|
*/
|
|
43
37
|
export declare function addBackingDatasets($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
44
38
|
viewDatasetRid: _Core.DatasetRid,
|
|
45
|
-
$body: _Datasets.AddBackingDatasetsRequest
|
|
46
|
-
$queryParams?: {
|
|
47
|
-
preview?: _Core.PreviewMode | undefined;
|
|
48
|
-
}
|
|
39
|
+
$body: _Datasets.AddBackingDatasetsRequest
|
|
49
40
|
]): Promise<_Datasets.View>;
|
|
50
41
|
/**
|
|
51
42
|
* Replaces the backing datasets for a View. Removing any backing dataset triggers a
|
|
52
43
|
* [SNAPSHOT](https://www.palantir.com/docs/foundry/data-integration/datasets#snapshot) transaction the next time the View is updated.
|
|
53
44
|
*
|
|
54
|
-
* @
|
|
45
|
+
* @public
|
|
55
46
|
*
|
|
56
47
|
* Required Scopes: [api:datasets-write]
|
|
57
48
|
* URL: /v2/datasets/views/{viewDatasetRid}/replaceBackingDatasets
|
|
58
49
|
*/
|
|
59
50
|
export declare function replaceBackingDatasets($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
60
51
|
viewDatasetRid: _Core.DatasetRid,
|
|
61
|
-
$body: _Datasets.ReplaceBackingDatasetsRequest
|
|
62
|
-
$queryParams?: {
|
|
63
|
-
preview?: _Core.PreviewMode | undefined;
|
|
64
|
-
}
|
|
52
|
+
$body: _Datasets.ReplaceBackingDatasetsRequest
|
|
65
53
|
]): Promise<_Datasets.View>;
|
|
66
54
|
/**
|
|
67
55
|
* Removes specified backing datasets from a View. Removing a dataset triggers a
|
|
68
56
|
* [SNAPSHOT](https://www.palantir.com/docs/foundry/data-integration/datasets#snapshot) transaction on the next update. If a
|
|
69
57
|
* specified dataset does not exist, no error is thrown.
|
|
70
58
|
*
|
|
71
|
-
* @
|
|
59
|
+
* @public
|
|
72
60
|
*
|
|
73
61
|
* Required Scopes: [api:datasets-write]
|
|
74
62
|
* URL: /v2/datasets/views/{viewDatasetRid}/removeBackingDatasets
|
|
75
63
|
*/
|
|
76
64
|
export declare function removeBackingDatasets($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
77
65
|
viewDatasetRid: _Core.DatasetRid,
|
|
78
|
-
$body: _Datasets.RemoveBackingDatasetsRequest
|
|
79
|
-
$queryParams?: {
|
|
80
|
-
preview?: _Core.PreviewMode | undefined;
|
|
81
|
-
}
|
|
66
|
+
$body: _Datasets.RemoveBackingDatasetsRequest
|
|
82
67
|
]): Promise<_Datasets.View>;
|
|
83
68
|
/**
|
|
84
69
|
* Adds a primary key to a View that does not already have one. Primary keys are treated as
|
|
85
70
|
* guarantees provided by the creator of the dataset.
|
|
86
71
|
*
|
|
87
|
-
* @
|
|
72
|
+
* @public
|
|
88
73
|
*
|
|
89
74
|
* Required Scopes: [api:datasets-write]
|
|
90
75
|
* URL: /v2/datasets/views/{viewDatasetRid}/addPrimaryKey
|
|
91
76
|
*/
|
|
92
77
|
export declare function addPrimaryKey($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
93
78
|
viewDatasetRid: _Core.DatasetRid,
|
|
94
|
-
$body: _Datasets.AddPrimaryKeyRequest
|
|
95
|
-
$queryParams?: {
|
|
96
|
-
preview?: _Core.PreviewMode | undefined;
|
|
97
|
-
}
|
|
79
|
+
$body: _Datasets.AddPrimaryKeyRequest
|
|
98
80
|
]): Promise<_Datasets.View>;
|
|
99
81
|
//# sourceMappingURL=View.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"View.d.ts","sourceRoot":"","sources":["../../../src/public/View.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,SAAS,MAAM,mBAAmB,CAAC;
|
|
1
|
+
{"version":3,"file":"View.d.ts","sourceRoot":"","sources":["../../../src/public/View.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,SAAS,MAAM,mBAAmB,CAAC;AAQpD;;;;;;;GAOG;AACH,wBAAgB,MAAM,CACpB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE,CAAC,KAAK,EAAE,SAAS,CAAC,iBAAiB,CAAC,GAC5C,OAAO,CAAC,SAAS,CAAC,IAAI,CAAC,CAEzB;AASD;;;;;;;GAOG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,cAAc,EAAE,KAAK,CAAC,UAAU;IAEhC,YAAY,CAAC,EAAE;QAAE,MAAM,CAAC,EAAE,KAAK,CAAC,UAAU,GAAG,SAAS,CAAA;KAAE;CACzD,GACA,OAAO,CAAC,SAAS,CAAC,IAAI,CAAC,CAEzB;AASD;;;;;;;;GAQG;AACH,wBAAgB,kBAAkB,CAChC,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,cAAc,EAAE,KAAK,CAAC,UAAU;IAChC,KAAK,EAAE,SAAS,CAAC,yBAAyB;CAC3C,GACA,OAAO,CAAC,SAAS,CAAC,IAAI,CAAC,CAEzB;AASD;;;;;;;;GAQG;AACH,wBAAgB,sBAAsB,CACpC,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,cAAc,EAAE,KAAK,CAAC,UAAU;IAChC,KAAK,EAAE,SAAS,CAAC,6BAA6B;CAC/C,GACA,OAAO,CAAC,SAAS,CAAC,IAAI,CAAC,CAEzB;AASD;;;;;;;;;GASG;AACH,wBAAgB,qBAAqB,CACnC,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,cAAc,EAAE,KAAK,CAAC,UAAU;IAChC,KAAK,EAAE,SAAS,CAAC,4BAA4B;CAC9C,GACA,OAAO,CAAC,SAAS,CAAC,IAAI,CAAC,CAEzB;AASD;;;;;;;;GAQG;AACH,wBAAgB,aAAa,CAC3B,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,cAAc,EAAE,KAAK,CAAC,UAAU;IAChC,KAAK,EAAE,SAAS,CAAC,oBAAoB;CACtC,GACA,OAAO,CAAC,SAAS,CAAC,IAAI,CAAC,CAEzB"}
|
package/build/esm/public/View.js
CHANGED
|
@@ -15,11 +15,11 @@
|
|
|
15
15
|
*/
|
|
16
16
|
import { foundryPlatformFetch as $foundryPlatformFetch } from "@osdk/shared.net.platformapi";
|
|
17
17
|
//
|
|
18
|
-
const _create = [1, "/v2/datasets/views",
|
|
18
|
+
const _create = [1, "/v2/datasets/views", 1];
|
|
19
19
|
/**
|
|
20
20
|
* Create a new View.
|
|
21
21
|
*
|
|
22
|
-
* @
|
|
22
|
+
* @public
|
|
23
23
|
*
|
|
24
24
|
* Required Scopes: [api:datasets-write]
|
|
25
25
|
* URL: /v2/datasets/views
|
|
@@ -31,7 +31,7 @@ const _get = [0, "/v2/datasets/views/{0}", 2];
|
|
|
31
31
|
/**
|
|
32
32
|
* Get metadata for a View.
|
|
33
33
|
*
|
|
34
|
-
* @
|
|
34
|
+
* @public
|
|
35
35
|
*
|
|
36
36
|
* Required Scopes: []
|
|
37
37
|
* URL: /v2/datasets/views/{viewDatasetRid}
|
|
@@ -39,12 +39,12 @@ const _get = [0, "/v2/datasets/views/{0}", 2];
|
|
|
39
39
|
export function get($ctx, ...args) {
|
|
40
40
|
return $foundryPlatformFetch($ctx, _get, ...args);
|
|
41
41
|
}
|
|
42
|
-
const _addBackingDatasets = [1, "/v2/datasets/views/{0}/addBackingDatasets",
|
|
42
|
+
const _addBackingDatasets = [1, "/v2/datasets/views/{0}/addBackingDatasets", 1];
|
|
43
43
|
/**
|
|
44
44
|
* Adds one or more backing datasets to a View. Any duplicates with the same dataset RID and branch name are
|
|
45
45
|
* ignored.
|
|
46
46
|
*
|
|
47
|
-
* @
|
|
47
|
+
* @public
|
|
48
48
|
*
|
|
49
49
|
* Required Scopes: [api:datasets-write]
|
|
50
50
|
* URL: /v2/datasets/views/{viewDatasetRid}/addBackingDatasets
|
|
@@ -52,12 +52,12 @@ const _addBackingDatasets = [1, "/v2/datasets/views/{0}/addBackingDatasets", 3];
|
|
|
52
52
|
export function addBackingDatasets($ctx, ...args) {
|
|
53
53
|
return $foundryPlatformFetch($ctx, _addBackingDatasets, ...args);
|
|
54
54
|
}
|
|
55
|
-
const _replaceBackingDatasets = [2, "/v2/datasets/views/{0}/replaceBackingDatasets",
|
|
55
|
+
const _replaceBackingDatasets = [2, "/v2/datasets/views/{0}/replaceBackingDatasets", 1];
|
|
56
56
|
/**
|
|
57
57
|
* Replaces the backing datasets for a View. Removing any backing dataset triggers a
|
|
58
58
|
* [SNAPSHOT](https://www.palantir.com/docs/foundry/data-integration/datasets#snapshot) transaction the next time the View is updated.
|
|
59
59
|
*
|
|
60
|
-
* @
|
|
60
|
+
* @public
|
|
61
61
|
*
|
|
62
62
|
* Required Scopes: [api:datasets-write]
|
|
63
63
|
* URL: /v2/datasets/views/{viewDatasetRid}/replaceBackingDatasets
|
|
@@ -65,13 +65,13 @@ const _replaceBackingDatasets = [2, "/v2/datasets/views/{0}/replaceBackingDatase
|
|
|
65
65
|
export function replaceBackingDatasets($ctx, ...args) {
|
|
66
66
|
return $foundryPlatformFetch($ctx, _replaceBackingDatasets, ...args);
|
|
67
67
|
}
|
|
68
|
-
const _removeBackingDatasets = [1, "/v2/datasets/views/{0}/removeBackingDatasets",
|
|
68
|
+
const _removeBackingDatasets = [1, "/v2/datasets/views/{0}/removeBackingDatasets", 1];
|
|
69
69
|
/**
|
|
70
70
|
* Removes specified backing datasets from a View. Removing a dataset triggers a
|
|
71
71
|
* [SNAPSHOT](https://www.palantir.com/docs/foundry/data-integration/datasets#snapshot) transaction on the next update. If a
|
|
72
72
|
* specified dataset does not exist, no error is thrown.
|
|
73
73
|
*
|
|
74
|
-
* @
|
|
74
|
+
* @public
|
|
75
75
|
*
|
|
76
76
|
* Required Scopes: [api:datasets-write]
|
|
77
77
|
* URL: /v2/datasets/views/{viewDatasetRid}/removeBackingDatasets
|
|
@@ -79,12 +79,12 @@ const _removeBackingDatasets = [1, "/v2/datasets/views/{0}/removeBackingDatasets
|
|
|
79
79
|
export function removeBackingDatasets($ctx, ...args) {
|
|
80
80
|
return $foundryPlatformFetch($ctx, _removeBackingDatasets, ...args);
|
|
81
81
|
}
|
|
82
|
-
const _addPrimaryKey = [1, "/v2/datasets/views/{0}/addPrimaryKey",
|
|
82
|
+
const _addPrimaryKey = [1, "/v2/datasets/views/{0}/addPrimaryKey", 1];
|
|
83
83
|
/**
|
|
84
84
|
* Adds a primary key to a View that does not already have one. Primary keys are treated as
|
|
85
85
|
* guarantees provided by the creator of the dataset.
|
|
86
86
|
*
|
|
87
|
-
* @
|
|
87
|
+
* @public
|
|
88
88
|
*
|
|
89
89
|
* Required Scopes: [api:datasets-write]
|
|
90
90
|
* URL: /v2/datasets/views/{viewDatasetRid}/addPrimaryKey
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"View.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_create","create","$ctx","args","_get","get","_addBackingDatasets","addBackingDatasets","_replaceBackingDatasets","replaceBackingDatasets","_removeBackingDatasets","removeBackingDatasets","_addPrimaryKey","addPrimaryKey"],"sources":["View.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/datasets/views\",
|
|
1
|
+
{"version":3,"file":"View.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_create","create","$ctx","args","_get","get","_addBackingDatasets","addBackingDatasets","_replaceBackingDatasets","replaceBackingDatasets","_removeBackingDatasets","removeBackingDatasets","_addPrimaryKey","addPrimaryKey"],"sources":["View.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/datasets/views\", 1];\n/**\n * Create a new View.\n *\n * @public\n *\n * Required Scopes: [api:datasets-write]\n * URL: /v2/datasets/views\n */\nexport function create($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _create, ...args);\n}\nconst _get = [0, \"/v2/datasets/views/{0}\", 2];\n/**\n * Get metadata for a View.\n *\n * @public\n *\n * Required Scopes: []\n * URL: /v2/datasets/views/{viewDatasetRid}\n */\nexport function get($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _get, ...args);\n}\nconst _addBackingDatasets = [1, \"/v2/datasets/views/{0}/addBackingDatasets\", 1];\n/**\n * Adds one or more backing datasets to a View. Any duplicates with the same dataset RID and branch name are\n * ignored.\n *\n * @public\n *\n * Required Scopes: [api:datasets-write]\n * URL: /v2/datasets/views/{viewDatasetRid}/addBackingDatasets\n */\nexport function addBackingDatasets($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _addBackingDatasets, ...args);\n}\nconst _replaceBackingDatasets = [2, \"/v2/datasets/views/{0}/replaceBackingDatasets\", 1];\n/**\n * Replaces the backing datasets for a View. Removing any backing dataset triggers a\n * [SNAPSHOT](https://www.palantir.com/docs/foundry/data-integration/datasets#snapshot) transaction the next time the View is updated.\n *\n * @public\n *\n * Required Scopes: [api:datasets-write]\n * URL: /v2/datasets/views/{viewDatasetRid}/replaceBackingDatasets\n */\nexport function replaceBackingDatasets($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _replaceBackingDatasets, ...args);\n}\nconst _removeBackingDatasets = [1, \"/v2/datasets/views/{0}/removeBackingDatasets\", 1];\n/**\n * Removes specified backing datasets from a View. Removing a dataset triggers a\n * [SNAPSHOT](https://www.palantir.com/docs/foundry/data-integration/datasets#snapshot) transaction on the next update. If a\n * specified dataset does not exist, no error is thrown.\n *\n * @public\n *\n * Required Scopes: [api:datasets-write]\n * URL: /v2/datasets/views/{viewDatasetRid}/removeBackingDatasets\n */\nexport function removeBackingDatasets($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _removeBackingDatasets, ...args);\n}\nconst _addPrimaryKey = [1, \"/v2/datasets/views/{0}/addPrimaryKey\", 1];\n/**\n * Adds a primary key to a View that does not already have one. Primary keys are treated as\n * guarantees provided by the creator of the dataset.\n *\n * @public\n *\n * Required Scopes: [api:datasets-write]\n * URL: /v2/datasets/views/{viewDatasetRid}/addPrimaryKey\n */\nexport function addPrimaryKey($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _addPrimaryKey, ...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,oBAAoB,EAAE,CAAC,CAAC;AAC5C;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,IAAI,GAAG,CAAC,CAAC,EAAE,wBAAwB,EAAE,CAAC,CAAC;AAC7C;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,GAAGA,CAACH,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC/B,OAAOJ,qBAAqB,CAACG,IAAI,EAAEE,IAAI,EAAE,GAAGD,IAAI,CAAC;AACrD;AACA,MAAMG,mBAAmB,GAAG,CAAC,CAAC,EAAE,2CAA2C,EAAE,CAAC,CAAC;AAC/E;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,kBAAkBA,CAACL,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC9C,OAAOJ,qBAAqB,CAACG,IAAI,EAAEI,mBAAmB,EAAE,GAAGH,IAAI,CAAC;AACpE;AACA,MAAMK,uBAAuB,GAAG,CAAC,CAAC,EAAE,+CAA+C,EAAE,CAAC,CAAC;AACvF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,sBAAsBA,CAACP,IAAI,EAAE,GAAGC,IAAI,EAAE;EAClD,OAAOJ,qBAAqB,CAACG,IAAI,EAAEM,uBAAuB,EAAE,GAAGL,IAAI,CAAC;AACxE;AACA,MAAMO,sBAAsB,GAAG,CAAC,CAAC,EAAE,8CAA8C,EAAE,CAAC,CAAC;AACrF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,qBAAqBA,CAACT,IAAI,EAAE,GAAGC,IAAI,EAAE;EACjD,OAAOJ,qBAAqB,CAACG,IAAI,EAAEQ,sBAAsB,EAAE,GAAGP,IAAI,CAAC;AACvE;AACA,MAAMS,cAAc,GAAG,CAAC,CAAC,EAAE,sCAAsC,EAAE,CAAC,CAAC;AACrE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,aAAaA,CAACX,IAAI,EAAE,GAAGC,IAAI,EAAE;EACzC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEU,cAAc,EAAE,GAAGT,IAAI,CAAC;AAC/D","ignoreList":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osdk/foundry.datasets",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.52.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -21,10 +21,10 @@
|
|
|
21
21
|
"dependencies": {
|
|
22
22
|
"@osdk/shared.client": "^1.0.1",
|
|
23
23
|
"@osdk/shared.client2": "^1.0.0",
|
|
24
|
-
"@osdk/foundry.core": "2.
|
|
25
|
-
"@osdk/foundry.
|
|
24
|
+
"@osdk/foundry.core": "2.52.0",
|
|
25
|
+
"@osdk/foundry.datahealth": "2.52.0",
|
|
26
26
|
"@osdk/shared.net.platformapi": "~1.6.0",
|
|
27
|
-
"@osdk/foundry.
|
|
27
|
+
"@osdk/foundry.filesystem": "2.52.0"
|
|
28
28
|
},
|
|
29
29
|
"devDependencies": {
|
|
30
30
|
"typescript": "^5.5.4",
|
|
@@ -47,7 +47,7 @@
|
|
|
47
47
|
"sls": {
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"com.palantir.foundry.api:api-gateway": {
|
|
50
|
-
"minVersion": "1.
|
|
50
|
+
"minVersion": "1.1496.0",
|
|
51
51
|
"maxVersion": "1.x.x",
|
|
52
52
|
"optional": false
|
|
53
53
|
}
|