@osdk/foundry.connectivity 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 +29 -0
- package/build/browser/_components.d.ts +189 -0
- package/build/browser/_components.d.ts.map +1 -1
- package/build/browser/_errors.d.ts +70 -0
- package/build/browser/_errors.d.ts.map +1 -1
- package/build/browser/index.d.ts +3 -2
- package/build/browser/index.d.ts.map +1 -1
- package/build/browser/index.js +1 -0
- package/build/browser/index.js.map +1 -1
- package/build/browser/public/FileImport.d.ts +17 -0
- package/build/browser/public/FileImport.d.ts.map +1 -1
- package/build/browser/public/FileImport.js +13 -0
- package/build/browser/public/FileImport.js.map +1 -1
- package/build/browser/public/TableImport.d.ts +20 -0
- package/build/browser/public/TableImport.d.ts.map +1 -0
- package/build/browser/public/TableImport.js +30 -0
- package/build/browser/public/TableImport.js.map +1 -0
- package/build/esm/_components.d.ts +189 -0
- package/build/esm/_components.d.ts.map +1 -1
- package/build/esm/_errors.d.ts +70 -0
- package/build/esm/_errors.d.ts.map +1 -1
- package/build/esm/index.d.ts +3 -2
- package/build/esm/index.d.ts.map +1 -1
- package/build/esm/index.js +1 -0
- package/build/esm/index.js.map +1 -1
- package/build/esm/public/FileImport.d.ts +17 -0
- package/build/esm/public/FileImport.d.ts.map +1 -1
- package/build/esm/public/FileImport.js +13 -0
- package/build/esm/public/FileImport.js.map +1 -1
- package/build/esm/public/TableImport.d.ts +20 -0
- package/build/esm/public/TableImport.d.ts.map +1 -0
- package/build/esm/public/TableImport.js +30 -0
- package/build/esm/public/TableImport.js.map +1 -0
- package/package.json +6 -6
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,34 @@
|
|
|
1
1
|
# @osdk/foundry.connectivity
|
|
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.orchestration@2.5.0
|
|
16
|
+
- @osdk/foundry.datasets@2.5.0
|
|
17
|
+
- @osdk/foundry.core@2.5.0
|
|
18
|
+
|
|
19
|
+
## 2.4.0
|
|
20
|
+
|
|
21
|
+
### Minor Changes
|
|
22
|
+
|
|
23
|
+
- 4720b1d: Update platform APIs with new APIs, including Runtime Derived Property API's
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- Updated dependencies [4720b1d]
|
|
28
|
+
- @osdk/foundry.orchestration@2.4.0
|
|
29
|
+
- @osdk/foundry.datasets@2.4.0
|
|
30
|
+
- @osdk/foundry.core@2.4.0
|
|
31
|
+
|
|
3
32
|
## 2.3.0
|
|
4
33
|
|
|
5
34
|
### Minor Changes
|
|
@@ -34,6 +34,31 @@ and run source capabilities on the agent itself.
|
|
|
34
34
|
export interface AgentWorkerRuntime {
|
|
35
35
|
agentRids: Array<AgentRid>;
|
|
36
36
|
}
|
|
37
|
+
/**
|
|
38
|
+
* Log Safety: DO_NOT_LOG
|
|
39
|
+
*/
|
|
40
|
+
export interface AsPlaintextValue {
|
|
41
|
+
value: PlaintextValue;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Log Safety: UNSAFE
|
|
45
|
+
*/
|
|
46
|
+
export interface AsSecretName {
|
|
47
|
+
value: SecretName;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Access keys are long-term
|
|
51
|
+
credentials for an IAM user or the AWS account root user.
|
|
52
|
+
Access keys consist of two parts: an access key ID (for example, AKIAIOSFODNN7EXAMPLE) and a secret access
|
|
53
|
+
key (for example, wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY). You must use both the access key ID and
|
|
54
|
+
secret access key together to authenticate your requests.
|
|
55
|
+
*
|
|
56
|
+
* Log Safety: UNSAFE
|
|
57
|
+
*/
|
|
58
|
+
export interface AwsAccessKey {
|
|
59
|
+
accessKeyId: string;
|
|
60
|
+
secretAccessKey: EncryptedProperty;
|
|
61
|
+
}
|
|
37
62
|
/**
|
|
38
63
|
* Log Safety: UNSAFE
|
|
39
64
|
*/
|
|
@@ -41,7 +66,14 @@ export interface Connection {
|
|
|
41
66
|
rid: ConnectionRid;
|
|
42
67
|
displayName: ConnectionDisplayName;
|
|
43
68
|
runtimePlatform: RuntimePlatform;
|
|
69
|
+
configuration: ConnectionConfiguration;
|
|
44
70
|
}
|
|
71
|
+
/**
|
|
72
|
+
* Log Safety: UNSAFE
|
|
73
|
+
*/
|
|
74
|
+
export type ConnectionConfiguration = {
|
|
75
|
+
type: "s3";
|
|
76
|
+
} & S3ConnectionConfiguration;
|
|
45
77
|
/**
|
|
46
78
|
* Log Safety: UNSAFE
|
|
47
79
|
*/
|
|
@@ -74,6 +106,46 @@ This is the preferred source connection method if the data source is accessible
|
|
|
74
106
|
export interface DirectConnectionRuntime {
|
|
75
107
|
networkEgressPolicyRids: Array<NetworkEgressPolicyRid>;
|
|
76
108
|
}
|
|
109
|
+
/**
|
|
110
|
+
* When reading an encrypted property, the secret name representing the encrypted value will be returned.
|
|
111
|
+
When writing to an encrypted property:
|
|
112
|
+
|
|
113
|
+
If a plaintext value is passed as an input, the plaintext value will be encrypted and saved to the property.
|
|
114
|
+
If a secret name is passed as an input, the secret name must match the existing secret name of the property
|
|
115
|
+
and the property will retain its previously encrypted value.
|
|
116
|
+
*
|
|
117
|
+
* Log Safety: UNSAFE
|
|
118
|
+
*/
|
|
119
|
+
export type EncryptedProperty = ({
|
|
120
|
+
type: "asSecretName";
|
|
121
|
+
} & AsSecretName) | ({
|
|
122
|
+
type: "asPlaintextValue";
|
|
123
|
+
} & AsPlaintextValue);
|
|
124
|
+
/**
|
|
125
|
+
* If any file has a relative path matching the regular expression, sync all files in the subfolder that are not otherwise filtered.
|
|
126
|
+
*
|
|
127
|
+
* Log Safety: UNSAFE
|
|
128
|
+
*/
|
|
129
|
+
export interface FileAnyPathMatchesFilter {
|
|
130
|
+
regex: string;
|
|
131
|
+
}
|
|
132
|
+
/**
|
|
133
|
+
* Import all filtered files only if there are at least the specified number of files remaining.
|
|
134
|
+
*
|
|
135
|
+
* Log Safety: SAFE
|
|
136
|
+
*/
|
|
137
|
+
export interface FileAtLeastCountFilter {
|
|
138
|
+
minFilesCount: number;
|
|
139
|
+
}
|
|
140
|
+
/**
|
|
141
|
+
* Only import files that have changed or been added since the last import run. Whether or not a file is considered to be changed is determined by the specified file properties.
|
|
142
|
+
This will exclude files uploaded in any previous imports, regardless of the file import mode used. A SNAPSHOT file import mode does not reset the filter.
|
|
143
|
+
*
|
|
144
|
+
* Log Safety: SAFE
|
|
145
|
+
*/
|
|
146
|
+
export interface FileChangedSinceLastUploadFilter {
|
|
147
|
+
fileProperties: Array<FileProperty>;
|
|
148
|
+
}
|
|
77
149
|
/**
|
|
78
150
|
* Log Safety: UNSAFE
|
|
79
151
|
*/
|
|
@@ -107,12 +179,22 @@ before they are imported into Foundry.
|
|
|
107
179
|
* Log Safety: UNSAFE
|
|
108
180
|
*/
|
|
109
181
|
export type FileImportFilter = ({
|
|
182
|
+
type: "pathNotMatchesFilter";
|
|
183
|
+
} & FilePathNotMatchesFilter) | ({
|
|
184
|
+
type: "anyPathMatchesFilter";
|
|
185
|
+
} & FileAnyPathMatchesFilter) | ({
|
|
186
|
+
type: "filesCountLimitFilter";
|
|
187
|
+
} & FilesCountLimitFilter) | ({
|
|
188
|
+
type: "changedSinceLastUploadFilter";
|
|
189
|
+
} & FileChangedSinceLastUploadFilter) | ({
|
|
110
190
|
type: "customFilter";
|
|
111
191
|
} & FileImportCustomFilter) | ({
|
|
112
192
|
type: "lastModifiedAfterFilter";
|
|
113
193
|
} & FileLastModifiedAfterFilter) | ({
|
|
114
194
|
type: "pathMatchesFilter";
|
|
115
195
|
} & FilePathMatchesFilter) | ({
|
|
196
|
+
type: "atLeastCountFilter";
|
|
197
|
+
} & FileAtLeastCountFilter) | ({
|
|
116
198
|
type: "fileSizeFilter";
|
|
117
199
|
} & FileSizeFilter);
|
|
118
200
|
/**
|
|
@@ -155,6 +237,28 @@ With the relative/subfolder/include-.*.txt regex, only relative/subfolder/includ
|
|
|
155
237
|
export interface FilePathMatchesFilter {
|
|
156
238
|
regex: string;
|
|
157
239
|
}
|
|
240
|
+
/**
|
|
241
|
+
* Only import files whose path (relative to the root of the source) does not match the regular expression.
|
|
242
|
+
Example
|
|
243
|
+
Suppose we are importing files from relative/subfolder.
|
|
244
|
+
relative/subfolder contains:
|
|
245
|
+
|
|
246
|
+
relative/subfolder/include-file.txt
|
|
247
|
+
relative/subfolder/exclude-file.txt
|
|
248
|
+
relative/subfolder/other-file.txt
|
|
249
|
+
|
|
250
|
+
With the relative/subfolder/exclude-.*.txt regex, both relative/subfolder/include-file.txt and relative/subfolder/other-file.txt will be imported,
|
|
251
|
+
and relative/subfolder/exclude-file.txt will be excluded from the import.
|
|
252
|
+
*
|
|
253
|
+
* Log Safety: UNSAFE
|
|
254
|
+
*/
|
|
255
|
+
export interface FilePathNotMatchesFilter {
|
|
256
|
+
regex: string;
|
|
257
|
+
}
|
|
258
|
+
/**
|
|
259
|
+
* Log Safety: SAFE
|
|
260
|
+
*/
|
|
261
|
+
export type FileProperty = "LAST_MODIFIED" | "SIZE";
|
|
158
262
|
/**
|
|
159
263
|
* Only import files whose size is between the specified minimum and maximum values.
|
|
160
264
|
At least one of gt or lt should be present.
|
|
@@ -166,12 +270,43 @@ export interface FileSizeFilter {
|
|
|
166
270
|
gt?: _Core.SizeBytes;
|
|
167
271
|
lt?: _Core.SizeBytes;
|
|
168
272
|
}
|
|
273
|
+
/**
|
|
274
|
+
* Only retain filesCount number of files in each transaction.
|
|
275
|
+
The choice of files to retain is made without any guarantee of order.
|
|
276
|
+
This option can increase the reliability of incremental syncs.
|
|
277
|
+
*
|
|
278
|
+
* Log Safety: SAFE
|
|
279
|
+
*/
|
|
280
|
+
export interface FilesCountLimitFilter {
|
|
281
|
+
filesCount: number;
|
|
282
|
+
}
|
|
283
|
+
/**
|
|
284
|
+
* Log Safety: UNSAFE
|
|
285
|
+
*/
|
|
286
|
+
export interface ListFileImportsResponse {
|
|
287
|
+
data: Array<FileImport>;
|
|
288
|
+
nextPageToken?: _Core.PageToken;
|
|
289
|
+
}
|
|
290
|
+
/**
|
|
291
|
+
* The import configuration for a Microsoft Access connection.
|
|
292
|
+
*
|
|
293
|
+
* Log Safety: UNSAFE
|
|
294
|
+
*/
|
|
295
|
+
export type MicrosoftAccessImportConfig = PalantirProvidedDriversImportConfig;
|
|
169
296
|
/**
|
|
170
297
|
* The Resource Identifier (RID) of a Network Egress Policy.
|
|
171
298
|
*
|
|
172
299
|
* Log Safety: SAFE
|
|
173
300
|
*/
|
|
174
301
|
export type NetworkEgressPolicyRid = LooselyBrandedString<"NetworkEgressPolicyRid">;
|
|
302
|
+
/**
|
|
303
|
+
* The configuration for all connectors that are Palantir-provided drivers.
|
|
304
|
+
*
|
|
305
|
+
* Log Safety: UNSAFE
|
|
306
|
+
*/
|
|
307
|
+
export interface PalantirProvidedDriversImportConfig {
|
|
308
|
+
query: string;
|
|
309
|
+
}
|
|
175
310
|
/**
|
|
176
311
|
* Log Safety: DO_NOT_LOG
|
|
177
312
|
*/
|
|
@@ -189,10 +324,64 @@ export type RuntimePlatform = ({
|
|
|
189
324
|
} & AgentProxyRuntime) | ({
|
|
190
325
|
type: "agentWorkerRuntime";
|
|
191
326
|
} & AgentWorkerRuntime);
|
|
327
|
+
/**
|
|
328
|
+
* Log Safety: UNSAFE
|
|
329
|
+
*/
|
|
330
|
+
export type S3AuthenticationMode = {
|
|
331
|
+
type: "awsAccessKey";
|
|
332
|
+
} & AwsAccessKey;
|
|
333
|
+
/**
|
|
334
|
+
* The configuration needed to connect to an AWS S3 external system (or any other S3-like external systems that
|
|
335
|
+
implement the s3a protocol).
|
|
336
|
+
*
|
|
337
|
+
* Log Safety: UNSAFE
|
|
338
|
+
*/
|
|
339
|
+
export interface S3ConnectionConfiguration {
|
|
340
|
+
bucketUrl: string;
|
|
341
|
+
authenticationMode?: S3AuthenticationMode;
|
|
342
|
+
}
|
|
192
343
|
/**
|
|
193
344
|
* Log Safety: UNSAFE
|
|
194
345
|
*/
|
|
195
346
|
export type SecretName = LooselyBrandedString<"SecretName">;
|
|
347
|
+
/**
|
|
348
|
+
* Log Safety: UNSAFE
|
|
349
|
+
*/
|
|
350
|
+
export interface TableImport {
|
|
351
|
+
rid: TableImportRid;
|
|
352
|
+
connectionRid: ConnectionRid;
|
|
353
|
+
datasetRid: _Datasets.DatasetRid;
|
|
354
|
+
branchName?: _Datasets.BranchName;
|
|
355
|
+
displayName: TableImportDisplayName;
|
|
356
|
+
importMode: TableImportMode;
|
|
357
|
+
config: TableImportConfig;
|
|
358
|
+
}
|
|
359
|
+
/**
|
|
360
|
+
* The import configuration for a specific connector type.
|
|
361
|
+
*
|
|
362
|
+
* Log Safety: UNSAFE
|
|
363
|
+
*/
|
|
364
|
+
export type TableImportConfig = {
|
|
365
|
+
type: "microsoftAccessImportConfig";
|
|
366
|
+
} & MicrosoftAccessImportConfig;
|
|
367
|
+
/**
|
|
368
|
+
* Log Safety: UNSAFE
|
|
369
|
+
*/
|
|
370
|
+
export type TableImportDisplayName = LooselyBrandedString<"TableImportDisplayName">;
|
|
371
|
+
/**
|
|
372
|
+
* Import mode governs how data is read from an external system, and written into a Foundry dataset.
|
|
373
|
+
SNAPSHOT: Defines a new dataset state consisting only of data from a particular import execution.
|
|
374
|
+
APPEND: Purely additive and yields data from previous import executions in addition to newly added data.
|
|
375
|
+
*
|
|
376
|
+
* Log Safety: SAFE
|
|
377
|
+
*/
|
|
378
|
+
export type TableImportMode = "SNAPSHOT" | "APPEND";
|
|
379
|
+
/**
|
|
380
|
+
* The Resource Identifier (RID) of a TableImport (formerly known as a batch sync).
|
|
381
|
+
*
|
|
382
|
+
* Log Safety: SAFE
|
|
383
|
+
*/
|
|
384
|
+
export type TableImportRid = LooselyBrandedString<"TableImportRid">;
|
|
196
385
|
/**
|
|
197
386
|
* Log Safety: DO_NOT_LOG
|
|
198
387
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_components.d.ts","sourceRoot":"","sources":["../../src/_components.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,oBAAoB,CAAC;AACjD,OAAO,KAAK,KAAK,SAAS,MAAM,wBAAwB,CAAC;AAEzD,MAAM,MAAM,oBAAoB,CAAC,CAAC,SAAS,MAAM,IAAI,MAAM,GAAG;IAC5D,aAAa,CAAC,EAAE,CAAC,CAAC;CACnB,CAAC;AAEF;;;;;;;;;KASK;AACL,MAAM,WAAW,iBAAiB;IAChC,SAAS,EAAE,KAAK,CAAC,QAAQ,CAAC,CAAC;CAC5B;AAED;;;;GAIG;AACH,MAAM,MAAM,QAAQ,GAAG,oBAAoB,CAAC,UAAU,CAAC,CAAC;AAExD;;;;;;;;KAQK;AACL,MAAM,WAAW,kBAAkB;IACjC,SAAS,EAAE,KAAK,CAAC,QAAQ,CAAC,CAAC;CAC5B;AAED;;GAEG;AACH,MAAM,WAAW,UAAU;IACzB,GAAG,EAAE,aAAa,CAAC;IACnB,WAAW,EAAE,qBAAqB,CAAC;IACnC,eAAe,EAAE,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"_components.d.ts","sourceRoot":"","sources":["../../src/_components.ts"],"names":[],"mappings":"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"}
|
|
@@ -29,6 +29,20 @@ export interface ConnectionNotFound {
|
|
|
29
29
|
connectionRid: unknown;
|
|
30
30
|
};
|
|
31
31
|
}
|
|
32
|
+
/**
|
|
33
|
+
* The specified connection is not yet supported in the Platform API.
|
|
34
|
+
|
|
35
|
+
*
|
|
36
|
+
* Log Safety: UNSAFE
|
|
37
|
+
*/
|
|
38
|
+
export interface ConnectionTypeNotSupported {
|
|
39
|
+
errorCode: "INTERNAL";
|
|
40
|
+
errorName: "ConnectionTypeNotSupported";
|
|
41
|
+
errorInstanceId: string;
|
|
42
|
+
parameters: {
|
|
43
|
+
connectionType: unknown;
|
|
44
|
+
};
|
|
45
|
+
}
|
|
32
46
|
/**
|
|
33
47
|
* Could not create the FileImport.
|
|
34
48
|
*
|
|
@@ -70,6 +84,20 @@ export interface ExecuteFileImportPermissionDenied {
|
|
|
70
84
|
connectionRid: unknown;
|
|
71
85
|
};
|
|
72
86
|
}
|
|
87
|
+
/**
|
|
88
|
+
* The provided `minFilesCount` field in the FileAtLeastCountFilter must be strictly greater than 0.
|
|
89
|
+
|
|
90
|
+
*
|
|
91
|
+
* Log Safety: SAFE
|
|
92
|
+
*/
|
|
93
|
+
export interface FileAtLeastCountFilterInvalidMinCount {
|
|
94
|
+
errorCode: "INVALID_ARGUMENT";
|
|
95
|
+
errorName: "FileAtLeastCountFilterInvalidMinCount";
|
|
96
|
+
errorInstanceId: string;
|
|
97
|
+
parameters: {
|
|
98
|
+
minFilesCount: unknown;
|
|
99
|
+
};
|
|
100
|
+
}
|
|
73
101
|
/**
|
|
74
102
|
* Custom file import filters can be fetched but cannot currently be used
|
|
75
103
|
when creating or updating file imports.
|
|
@@ -170,6 +198,20 @@ export interface FileSizeFilterMissingGreaterThanAndLessThan {
|
|
|
170
198
|
errorInstanceId: string;
|
|
171
199
|
parameters: {};
|
|
172
200
|
}
|
|
201
|
+
/**
|
|
202
|
+
* The `filesCount` field in the FilesCountLimitFilter must be strictly greater than 0.
|
|
203
|
+
|
|
204
|
+
*
|
|
205
|
+
* Log Safety: SAFE
|
|
206
|
+
*/
|
|
207
|
+
export interface FilesCountLimitFilterInvalidLimit {
|
|
208
|
+
errorCode: "INVALID_ARGUMENT";
|
|
209
|
+
errorName: "FilesCountLimitFilterInvalidLimit";
|
|
210
|
+
errorInstanceId: string;
|
|
211
|
+
parameters: {
|
|
212
|
+
filesCount: unknown;
|
|
213
|
+
};
|
|
214
|
+
}
|
|
173
215
|
/**
|
|
174
216
|
* The secret names provided do not exist on the connection.
|
|
175
217
|
|
|
@@ -185,6 +227,34 @@ export interface SecretNamesDoNotExist {
|
|
|
185
227
|
secretNames: unknown;
|
|
186
228
|
};
|
|
187
229
|
}
|
|
230
|
+
/**
|
|
231
|
+
* The given TableImport could not be found.
|
|
232
|
+
*
|
|
233
|
+
* Log Safety: SAFE
|
|
234
|
+
*/
|
|
235
|
+
export interface TableImportNotFound {
|
|
236
|
+
errorCode: "NOT_FOUND";
|
|
237
|
+
errorName: "TableImportNotFound";
|
|
238
|
+
errorInstanceId: string;
|
|
239
|
+
parameters: {
|
|
240
|
+
tableImportRid: unknown;
|
|
241
|
+
connectionRid: unknown;
|
|
242
|
+
};
|
|
243
|
+
}
|
|
244
|
+
/**
|
|
245
|
+
* The specified table import type is not yet supported in the Platform API.
|
|
246
|
+
|
|
247
|
+
*
|
|
248
|
+
* Log Safety: UNSAFE
|
|
249
|
+
*/
|
|
250
|
+
export interface TableImportTypeNotSupported {
|
|
251
|
+
errorCode: "INTERNAL";
|
|
252
|
+
errorName: "TableImportTypeNotSupported";
|
|
253
|
+
errorInstanceId: string;
|
|
254
|
+
parameters: {
|
|
255
|
+
tableImportType: unknown;
|
|
256
|
+
};
|
|
257
|
+
}
|
|
188
258
|
/**
|
|
189
259
|
* Could not updateSecrets the Connection.
|
|
190
260
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_errors.d.ts","sourceRoot":"","sources":["../../src/_errors.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"_errors.d.ts","sourceRoot":"","sources":["../../src/_errors.ts"],"names":[],"mappings":"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"}
|
package/build/browser/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
export type { AgentProxyRuntime, AgentRid, AgentWorkerRuntime, Connection, ConnectionDisplayName, ConnectionRid, CreateFileImportRequest, DirectConnectionRuntime, FileImport, FileImportCustomFilter, FileImportDisplayName, FileImportFilter, FileImportMode, FileImportRid, FileLastModifiedAfterFilter, FilePathMatchesFilter, FileSizeFilter, NetworkEgressPolicyRid, PlaintextValue, RuntimePlatform, SecretName, UpdateSecretsConnectionRequest, } from "./_components.js";
|
|
2
|
-
export type { ConnectionDetailsNotDetermined, ConnectionNotFound, CreateFileImportPermissionDenied, DeleteFileImportPermissionDenied, ExecuteFileImportPermissionDenied, FileImportCustomFilterCannotBeUsedToCreateOrUpdateFileImports, FileImportNotFound, FileImportNotSupportedForConnection, FileSizeFilterGreaterThanCannotBeNegative, FileSizeFilterInvalidGreaterThanAndLessThanRange, FileSizeFilterLessThanMustBeOneByteOrLarger, FileSizeFilterMissingGreaterThanAndLessThan, SecretNamesDoNotExist, UpdateSecretsConnectionPermissionDenied, } from "./_errors.js";
|
|
1
|
+
export type { AgentProxyRuntime, AgentRid, AgentWorkerRuntime, AsPlaintextValue, AsSecretName, AwsAccessKey, Connection, ConnectionConfiguration, ConnectionDisplayName, ConnectionRid, CreateFileImportRequest, DirectConnectionRuntime, EncryptedProperty, FileAnyPathMatchesFilter, FileAtLeastCountFilter, FileChangedSinceLastUploadFilter, FileImport, FileImportCustomFilter, FileImportDisplayName, FileImportFilter, FileImportMode, FileImportRid, FileLastModifiedAfterFilter, FilePathMatchesFilter, FilePathNotMatchesFilter, FileProperty, FilesCountLimitFilter, FileSizeFilter, ListFileImportsResponse, MicrosoftAccessImportConfig, NetworkEgressPolicyRid, PalantirProvidedDriversImportConfig, PlaintextValue, RuntimePlatform, S3AuthenticationMode, S3ConnectionConfiguration, SecretName, TableImport, TableImportConfig, TableImportDisplayName, TableImportMode, TableImportRid, UpdateSecretsConnectionRequest, } from "./_components.js";
|
|
2
|
+
export type { ConnectionDetailsNotDetermined, ConnectionNotFound, ConnectionTypeNotSupported, CreateFileImportPermissionDenied, DeleteFileImportPermissionDenied, ExecuteFileImportPermissionDenied, FileAtLeastCountFilterInvalidMinCount, FileImportCustomFilterCannotBeUsedToCreateOrUpdateFileImports, FileImportNotFound, FileImportNotSupportedForConnection, FilesCountLimitFilterInvalidLimit, FileSizeFilterGreaterThanCannotBeNegative, FileSizeFilterInvalidGreaterThanAndLessThanRange, FileSizeFilterLessThanMustBeOneByteOrLarger, FileSizeFilterMissingGreaterThanAndLessThan, SecretNamesDoNotExist, TableImportNotFound, TableImportTypeNotSupported, UpdateSecretsConnectionPermissionDenied, } from "./_errors.js";
|
|
3
3
|
export * as Connections from "./public/Connection.js";
|
|
4
4
|
export * as FileImports from "./public/FileImport.js";
|
|
5
|
+
export * as TableImports from "./public/TableImport.js";
|
|
5
6
|
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAgBA,YAAY,EACV,iBAAiB,EACjB,QAAQ,EACR,kBAAkB,EAClB,UAAU,EACV,qBAAqB,EACrB,aAAa,EACb,uBAAuB,EACvB,uBAAuB,EACvB,UAAU,EACV,sBAAsB,EACtB,qBAAqB,EACrB,gBAAgB,EAChB,cAAc,EACd,aAAa,EACb,2BAA2B,EAC3B,qBAAqB,EACrB,cAAc,EACd,sBAAsB,EACtB,cAAc,EACd,eAAe,EACf,UAAU,EACV,8BAA8B,GAC/B,MAAM,kBAAkB,CAAC;AAC1B,YAAY,EACV,8BAA8B,EAC9B,kBAAkB,EAClB,gCAAgC,EAChC,gCAAgC,EAChC,iCAAiC,EACjC,6DAA6D,EAC7D,kBAAkB,EAClB,mCAAmC,EACnC,yCAAyC,EACzC,gDAAgD,EAChD,2CAA2C,EAC3C,2CAA2C,EAC3C,qBAAqB,EACrB,uCAAuC,GACxC,MAAM,cAAc,CAAC;AACtB,OAAO,KAAK,WAAW,MAAM,wBAAwB,CAAC;AACtD,OAAO,KAAK,WAAW,MAAM,wBAAwB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAgBA,YAAY,EACV,iBAAiB,EACjB,QAAQ,EACR,kBAAkB,EAClB,gBAAgB,EAChB,YAAY,EACZ,YAAY,EACZ,UAAU,EACV,uBAAuB,EACvB,qBAAqB,EACrB,aAAa,EACb,uBAAuB,EACvB,uBAAuB,EACvB,iBAAiB,EACjB,wBAAwB,EACxB,sBAAsB,EACtB,gCAAgC,EAChC,UAAU,EACV,sBAAsB,EACtB,qBAAqB,EACrB,gBAAgB,EAChB,cAAc,EACd,aAAa,EACb,2BAA2B,EAC3B,qBAAqB,EACrB,wBAAwB,EACxB,YAAY,EACZ,qBAAqB,EACrB,cAAc,EACd,uBAAuB,EACvB,2BAA2B,EAC3B,sBAAsB,EACtB,mCAAmC,EACnC,cAAc,EACd,eAAe,EACf,oBAAoB,EACpB,yBAAyB,EACzB,UAAU,EACV,WAAW,EACX,iBAAiB,EACjB,sBAAsB,EACtB,eAAe,EACf,cAAc,EACd,8BAA8B,GAC/B,MAAM,kBAAkB,CAAC;AAC1B,YAAY,EACV,8BAA8B,EAC9B,kBAAkB,EAClB,0BAA0B,EAC1B,gCAAgC,EAChC,gCAAgC,EAChC,iCAAiC,EACjC,qCAAqC,EACrC,6DAA6D,EAC7D,kBAAkB,EAClB,mCAAmC,EACnC,iCAAiC,EACjC,yCAAyC,EACzC,gDAAgD,EAChD,2CAA2C,EAC3C,2CAA2C,EAC3C,qBAAqB,EACrB,mBAAmB,EACnB,2BAA2B,EAC3B,uCAAuC,GACxC,MAAM,cAAc,CAAC;AACtB,OAAO,KAAK,WAAW,MAAM,wBAAwB,CAAC;AACtD,OAAO,KAAK,WAAW,MAAM,wBAAwB,CAAC;AACtD,OAAO,KAAK,YAAY,MAAM,yBAAyB,CAAC"}
|
package/build/browser/index.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["Connections","FileImports"],"sources":["index.js"],"sourcesContent":["/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nexport * as Connections from \"./public/Connection.js\";\nexport * as FileImports from \"./public/FileImport.js\";\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,KAAKA,WAAW,MAAM,wBAAwB;AACrD,OAAO,KAAKC,WAAW,MAAM,wBAAwB","ignoreList":[]}
|
|
1
|
+
{"version":3,"file":"index.js","names":["Connections","FileImports","TableImports"],"sources":["index.js"],"sourcesContent":["/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nexport * as Connections from \"./public/Connection.js\";\nexport * as FileImports from \"./public/FileImport.js\";\nexport * as TableImports from \"./public/TableImport.js\";\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,KAAKA,WAAW,MAAM,wBAAwB;AACrD,OAAO,KAAKC,WAAW,MAAM,wBAAwB;AACrD,OAAO,KAAKC,YAAY,MAAM,yBAAyB","ignoreList":[]}
|
|
@@ -35,6 +35,23 @@ export declare function deleteFileImport($ctx: $Client | $ClientContext | $OldCl
|
|
|
35
35
|
preview?: _Core.PreviewMode | undefined;
|
|
36
36
|
}
|
|
37
37
|
]): Promise<void>;
|
|
38
|
+
/**
|
|
39
|
+
* Lists all file imports defined for this connection.
|
|
40
|
+
* Only file imports that the user has permissions to view will be returned.
|
|
41
|
+
*
|
|
42
|
+
* @alpha
|
|
43
|
+
*
|
|
44
|
+
* Required Scopes: [api:connectivity-file-import-read]
|
|
45
|
+
* URL: /v2/connectivity/connections/{connectionRid}/fileImports
|
|
46
|
+
*/
|
|
47
|
+
export declare function list($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
48
|
+
connectionRid: _Connectivity.ConnectionRid,
|
|
49
|
+
$queryParams?: {
|
|
50
|
+
pageSize?: _Core.PageSize | undefined;
|
|
51
|
+
pageToken?: _Core.PageToken | undefined;
|
|
52
|
+
preview?: _Core.PreviewMode | undefined;
|
|
53
|
+
}
|
|
54
|
+
]): Promise<_Connectivity.ListFileImportsResponse>;
|
|
38
55
|
/**
|
|
39
56
|
* Get the FileImport with the specified rid.
|
|
40
57
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FileImport.d.ts","sourceRoot":"","sources":["../../../src/public/FileImport.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,oBAAoB,CAAC;AACjD,OAAO,KAAK,KAAK,cAAc,MAAM,6BAA6B,CAAC;AACnE,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;AAYxD;;;;;;;GAOG;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,uBAAuB;IAC5C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,aAAa,CAAC,UAAU,CAAC,CAEnC;AAUD;;;;;;;;;GASG;AACH,wBAAgB,gBAAgB,CAC9B,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,aAAa,EAAE,aAAa,CAAC,aAAa;IAC1C,aAAa,EAAE,aAAa,CAAC,aAAa;IAE1C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,IAAI,CAAC,CAEf;AAUD;;;;;;;GAOG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,aAAa,EAAE,aAAa,CAAC,aAAa;IAC1C,aAAa,EAAE,aAAa,CAAC,aAAa;IAE1C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,aAAa,CAAC,UAAU,CAAC,CAEnC;AAUD;;;;;;;;GAQG;AACH,wBAAgB,OAAO,CACrB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,aAAa,EAAE,aAAa,CAAC,aAAa;IAC1C,aAAa,EAAE,aAAa,CAAC,aAAa;IAE1C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,cAAc,CAAC,QAAQ,CAAC,CAElC"}
|
|
1
|
+
{"version":3,"file":"FileImport.d.ts","sourceRoot":"","sources":["../../../src/public/FileImport.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,oBAAoB,CAAC;AACjD,OAAO,KAAK,KAAK,cAAc,MAAM,6BAA6B,CAAC;AACnE,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;AAYxD;;;;;;;GAOG;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,uBAAuB;IAC5C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,aAAa,CAAC,UAAU,CAAC,CAEnC;AAUD;;;;;;;;;GASG;AACH,wBAAgB,gBAAgB,CAC9B,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,aAAa,EAAE,aAAa,CAAC,aAAa;IAC1C,aAAa,EAAE,aAAa,CAAC,aAAa;IAE1C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,IAAI,CAAC,CAEf;AAaD;;;;;;;;GAQG;AACH,wBAAgB,IAAI,CAClB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,aAAa,EAAE,aAAa,CAAC,aAAa;IAE1C,YAAY,CAAC,EAAE;QACb,QAAQ,CAAC,EAAE,KAAK,CAAC,QAAQ,GAAG,SAAS,CAAC;QACtC,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,SAAS,CAAC;QACxC,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAC;KACzC;CACF,GACA,OAAO,CAAC,aAAa,CAAC,uBAAuB,CAAC,CAEhD;AAUD;;;;;;;GAOG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,aAAa,EAAE,aAAa,CAAC,aAAa;IAC1C,aAAa,EAAE,aAAa,CAAC,aAAa;IAE1C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,aAAa,CAAC,UAAU,CAAC,CAEnC;AAUD;;;;;;;;GAQG;AACH,wBAAgB,OAAO,CACrB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,aAAa,EAAE,aAAa,CAAC,aAAa;IAC1C,aAAa,EAAE,aAAa,CAAC,aAAa;IAE1C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,cAAc,CAAC,QAAQ,CAAC,CAElC"}
|
|
@@ -41,6 +41,19 @@ const _deleteFileImport = [3, "/v2/connectivity/connections/{0}/fileImports/{1}"
|
|
|
41
41
|
export function deleteFileImport($ctx, ...args) {
|
|
42
42
|
return $foundryPlatformFetch($ctx, _deleteFileImport, ...args);
|
|
43
43
|
}
|
|
44
|
+
const _list = [0, "/v2/connectivity/connections/{0}/fileImports", 2];
|
|
45
|
+
/**
|
|
46
|
+
* Lists all file imports defined for this connection.
|
|
47
|
+
* Only file imports that the user has permissions to view will be returned.
|
|
48
|
+
*
|
|
49
|
+
* @alpha
|
|
50
|
+
*
|
|
51
|
+
* Required Scopes: [api:connectivity-file-import-read]
|
|
52
|
+
* URL: /v2/connectivity/connections/{connectionRid}/fileImports
|
|
53
|
+
*/
|
|
54
|
+
export function list($ctx, ...args) {
|
|
55
|
+
return $foundryPlatformFetch($ctx, _list, ...args);
|
|
56
|
+
}
|
|
44
57
|
const _get = [0, "/v2/connectivity/connections/{0}/fileImports/{1}", 2];
|
|
45
58
|
/**
|
|
46
59
|
* Get the FileImport with the specified rid.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FileImport.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_create","create","$ctx","args","_deleteFileImport","deleteFileImport","_get","get","_execute","execute"],"sources":["FileImport.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}/fileImports\", 3];\n/**\n * Creates a new FileImport.\n *\n * @alpha\n *\n * Required Scopes: [api:connectivity-file-import-write]\n * URL: /v2/connectivity/connections/{connectionRid}/fileImports\n */\nexport function create($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _create, ...args);\n}\nconst _deleteFileImport = [3, \"/v2/connectivity/connections/{0}/fileImports/{1}\", 2];\n/**\n * Delete the FileImport with the specified RID.\n * Deleting the file import does not delete the destination dataset but the dataset will no longer\n * be updated by this import.\n *\n * @alpha\n *\n * Required Scopes: [api:connectivity-file-import-write]\n * URL: /v2/connectivity/connections/{connectionRid}/fileImports/{fileImportRid}\n */\nexport function deleteFileImport($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _deleteFileImport, ...args);\n}\nconst _get = [0, \"/v2/connectivity/connections/{0}/fileImports/{1}\", 2];\n/**\n * Get the FileImport with the specified rid.\n *\n * @alpha\n *\n * Required Scopes: [api:connectivity-file-import-read]\n * URL: /v2/connectivity/connections/{connectionRid}/fileImports/{fileImportRid}\n */\nexport function get($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _get, ...args);\n}\nconst _execute = [1, \"/v2/connectivity/connections/{0}/fileImports/{1}/execute\", 2];\n/**\n * Executes the FileImport, 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 * @alpha\n *\n * Required Scopes: [api:connectivity-file-import-execute]\n * URL: /v2/connectivity/connections/{connectionRid}/fileImports/{fileImportRid}/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,8CAA8C,EAAE,CAAC,CAAC;AACtE;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,iBAAiB,GAAG,CAAC,CAAC,EAAE,kDAAkD,EAAE,CAAC,CAAC;AACpF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,gBAAgBA,CAACH,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC5C,OAAOJ,qBAAqB,CAACG,IAAI,EAAEE,iBAAiB,EAAE,GAAGD,IAAI,CAAC;AAClE;AACA,MAAMG,IAAI,GAAG,CAAC,CAAC,EAAE,kDAAkD,EAAE,CAAC,CAAC;AACvE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,GAAGA,
|
|
1
|
+
{"version":3,"file":"FileImport.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_create","create","$ctx","args","_deleteFileImport","deleteFileImport","_list","list","_get","get","_execute","execute"],"sources":["FileImport.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}/fileImports\", 3];\n/**\n * Creates a new FileImport.\n *\n * @alpha\n *\n * Required Scopes: [api:connectivity-file-import-write]\n * URL: /v2/connectivity/connections/{connectionRid}/fileImports\n */\nexport function create($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _create, ...args);\n}\nconst _deleteFileImport = [3, \"/v2/connectivity/connections/{0}/fileImports/{1}\", 2];\n/**\n * Delete the FileImport with the specified RID.\n * Deleting the file import does not delete the destination dataset but the dataset will no longer\n * be updated by this import.\n *\n * @alpha\n *\n * Required Scopes: [api:connectivity-file-import-write]\n * URL: /v2/connectivity/connections/{connectionRid}/fileImports/{fileImportRid}\n */\nexport function deleteFileImport($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _deleteFileImport, ...args);\n}\nconst _list = [0, \"/v2/connectivity/connections/{0}/fileImports\", 2];\n/**\n * Lists all file imports defined for this connection.\n * Only file imports that the user has permissions to view will be returned.\n *\n * @alpha\n *\n * Required Scopes: [api:connectivity-file-import-read]\n * URL: /v2/connectivity/connections/{connectionRid}/fileImports\n */\nexport function list($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _list, ...args);\n}\nconst _get = [0, \"/v2/connectivity/connections/{0}/fileImports/{1}\", 2];\n/**\n * Get the FileImport with the specified rid.\n *\n * @alpha\n *\n * Required Scopes: [api:connectivity-file-import-read]\n * URL: /v2/connectivity/connections/{connectionRid}/fileImports/{fileImportRid}\n */\nexport function get($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _get, ...args);\n}\nconst _execute = [1, \"/v2/connectivity/connections/{0}/fileImports/{1}/execute\", 2];\n/**\n * Executes the FileImport, 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 * @alpha\n *\n * Required Scopes: [api:connectivity-file-import-execute]\n * URL: /v2/connectivity/connections/{connectionRid}/fileImports/{fileImportRid}/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,8CAA8C,EAAE,CAAC,CAAC;AACtE;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,iBAAiB,GAAG,CAAC,CAAC,EAAE,kDAAkD,EAAE,CAAC,CAAC;AACpF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,gBAAgBA,CAACH,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC5C,OAAOJ,qBAAqB,CAACG,IAAI,EAAEE,iBAAiB,EAAE,GAAGD,IAAI,CAAC;AAClE;AACA,MAAMG,KAAK,GAAG,CAAC,CAAC,EAAE,8CAA8C,EAAE,CAAC,CAAC;AACpE;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,kDAAkD,EAAE,CAAC,CAAC;AACvE;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,0DAA0D,EAAE,CAAC,CAAC;AACnF;AACA;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","ignoreList":[]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type * as _Core from "@osdk/foundry.core";
|
|
2
|
+
import type { SharedClient as $OldClient, SharedClientContext as $OldClientContext } from "@osdk/shared.client";
|
|
3
|
+
import type { SharedClient as $Client, SharedClientContext as $ClientContext } from "@osdk/shared.client2";
|
|
4
|
+
import type * as _Connectivity from "../_components.js";
|
|
5
|
+
/**
|
|
6
|
+
* Get the TableImport with the specified rid.
|
|
7
|
+
*
|
|
8
|
+
* @alpha
|
|
9
|
+
*
|
|
10
|
+
* Required Scopes: []
|
|
11
|
+
* URL: /v2/connectivity/connections/{connectionRid}/tableImports/{tableImportRid}
|
|
12
|
+
*/
|
|
13
|
+
export declare function get($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
14
|
+
connectionRid: _Connectivity.ConnectionRid,
|
|
15
|
+
tableImportRid: _Connectivity.TableImportRid,
|
|
16
|
+
$queryParams?: {
|
|
17
|
+
preview?: _Core.PreviewMode | undefined;
|
|
18
|
+
}
|
|
19
|
+
]): Promise<_Connectivity.TableImport>;
|
|
20
|
+
//# sourceMappingURL=TableImport.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TableImport.d.ts","sourceRoot":"","sources":["../../../src/public/TableImport.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,aAAa,MAAM,mBAAmB,CAAC;AAYxD;;;;;;;GAOG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,aAAa,EAAE,aAAa,CAAC,aAAa;IAC1C,cAAc,EAAE,aAAa,CAAC,cAAc;IAE5C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,aAAa,CAAC,WAAW,CAAC,CAEpC"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2024 Palantir Technologies, Inc. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { foundryPlatformFetch as $foundryPlatformFetch } from "@osdk/shared.net.platformapi";
|
|
17
|
+
//
|
|
18
|
+
const _get = [0, "/v2/connectivity/connections/{0}/tableImports/{1}", 2];
|
|
19
|
+
/**
|
|
20
|
+
* Get the TableImport with the specified rid.
|
|
21
|
+
*
|
|
22
|
+
* @alpha
|
|
23
|
+
*
|
|
24
|
+
* Required Scopes: []
|
|
25
|
+
* URL: /v2/connectivity/connections/{connectionRid}/tableImports/{tableImportRid}
|
|
26
|
+
*/
|
|
27
|
+
export function get($ctx, ...args) {
|
|
28
|
+
return $foundryPlatformFetch($ctx, _get, ...args);
|
|
29
|
+
}
|
|
30
|
+
//# sourceMappingURL=TableImport.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TableImport.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_get","get","$ctx","args"],"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 _get = [0, \"/v2/connectivity/connections/{0}/tableImports/{1}\", 2];\n/**\n * Get the TableImport with the specified rid.\n *\n * @alpha\n *\n * Required Scopes: []\n * URL: /v2/connectivity/connections/{connectionRid}/tableImports/{tableImportRid}\n */\nexport function get($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _get, ...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,mDAAmD,EAAE,CAAC,CAAC;AACxE;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","ignoreList":[]}
|
|
@@ -34,6 +34,31 @@ and run source capabilities on the agent itself.
|
|
|
34
34
|
export interface AgentWorkerRuntime {
|
|
35
35
|
agentRids: Array<AgentRid>;
|
|
36
36
|
}
|
|
37
|
+
/**
|
|
38
|
+
* Log Safety: DO_NOT_LOG
|
|
39
|
+
*/
|
|
40
|
+
export interface AsPlaintextValue {
|
|
41
|
+
value: PlaintextValue;
|
|
42
|
+
}
|
|
43
|
+
/**
|
|
44
|
+
* Log Safety: UNSAFE
|
|
45
|
+
*/
|
|
46
|
+
export interface AsSecretName {
|
|
47
|
+
value: SecretName;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Access keys are long-term
|
|
51
|
+
credentials for an IAM user or the AWS account root user.
|
|
52
|
+
Access keys consist of two parts: an access key ID (for example, AKIAIOSFODNN7EXAMPLE) and a secret access
|
|
53
|
+
key (for example, wJalrXUtnFEMI/K7MDENG/bPxRfiCYEXAMPLEKEY). You must use both the access key ID and
|
|
54
|
+
secret access key together to authenticate your requests.
|
|
55
|
+
*
|
|
56
|
+
* Log Safety: UNSAFE
|
|
57
|
+
*/
|
|
58
|
+
export interface AwsAccessKey {
|
|
59
|
+
accessKeyId: string;
|
|
60
|
+
secretAccessKey: EncryptedProperty;
|
|
61
|
+
}
|
|
37
62
|
/**
|
|
38
63
|
* Log Safety: UNSAFE
|
|
39
64
|
*/
|
|
@@ -41,7 +66,14 @@ export interface Connection {
|
|
|
41
66
|
rid: ConnectionRid;
|
|
42
67
|
displayName: ConnectionDisplayName;
|
|
43
68
|
runtimePlatform: RuntimePlatform;
|
|
69
|
+
configuration: ConnectionConfiguration;
|
|
44
70
|
}
|
|
71
|
+
/**
|
|
72
|
+
* Log Safety: UNSAFE
|
|
73
|
+
*/
|
|
74
|
+
export type ConnectionConfiguration = {
|
|
75
|
+
type: "s3";
|
|
76
|
+
} & S3ConnectionConfiguration;
|
|
45
77
|
/**
|
|
46
78
|
* Log Safety: UNSAFE
|
|
47
79
|
*/
|
|
@@ -74,6 +106,46 @@ This is the preferred source connection method if the data source is accessible
|
|
|
74
106
|
export interface DirectConnectionRuntime {
|
|
75
107
|
networkEgressPolicyRids: Array<NetworkEgressPolicyRid>;
|
|
76
108
|
}
|
|
109
|
+
/**
|
|
110
|
+
* When reading an encrypted property, the secret name representing the encrypted value will be returned.
|
|
111
|
+
When writing to an encrypted property:
|
|
112
|
+
|
|
113
|
+
If a plaintext value is passed as an input, the plaintext value will be encrypted and saved to the property.
|
|
114
|
+
If a secret name is passed as an input, the secret name must match the existing secret name of the property
|
|
115
|
+
and the property will retain its previously encrypted value.
|
|
116
|
+
*
|
|
117
|
+
* Log Safety: UNSAFE
|
|
118
|
+
*/
|
|
119
|
+
export type EncryptedProperty = ({
|
|
120
|
+
type: "asSecretName";
|
|
121
|
+
} & AsSecretName) | ({
|
|
122
|
+
type: "asPlaintextValue";
|
|
123
|
+
} & AsPlaintextValue);
|
|
124
|
+
/**
|
|
125
|
+
* If any file has a relative path matching the regular expression, sync all files in the subfolder that are not otherwise filtered.
|
|
126
|
+
*
|
|
127
|
+
* Log Safety: UNSAFE
|
|
128
|
+
*/
|
|
129
|
+
export interface FileAnyPathMatchesFilter {
|
|
130
|
+
regex: string;
|
|
131
|
+
}
|
|
132
|
+
/**
|
|
133
|
+
* Import all filtered files only if there are at least the specified number of files remaining.
|
|
134
|
+
*
|
|
135
|
+
* Log Safety: SAFE
|
|
136
|
+
*/
|
|
137
|
+
export interface FileAtLeastCountFilter {
|
|
138
|
+
minFilesCount: number;
|
|
139
|
+
}
|
|
140
|
+
/**
|
|
141
|
+
* Only import files that have changed or been added since the last import run. Whether or not a file is considered to be changed is determined by the specified file properties.
|
|
142
|
+
This will exclude files uploaded in any previous imports, regardless of the file import mode used. A SNAPSHOT file import mode does not reset the filter.
|
|
143
|
+
*
|
|
144
|
+
* Log Safety: SAFE
|
|
145
|
+
*/
|
|
146
|
+
export interface FileChangedSinceLastUploadFilter {
|
|
147
|
+
fileProperties: Array<FileProperty>;
|
|
148
|
+
}
|
|
77
149
|
/**
|
|
78
150
|
* Log Safety: UNSAFE
|
|
79
151
|
*/
|
|
@@ -107,12 +179,22 @@ before they are imported into Foundry.
|
|
|
107
179
|
* Log Safety: UNSAFE
|
|
108
180
|
*/
|
|
109
181
|
export type FileImportFilter = ({
|
|
182
|
+
type: "pathNotMatchesFilter";
|
|
183
|
+
} & FilePathNotMatchesFilter) | ({
|
|
184
|
+
type: "anyPathMatchesFilter";
|
|
185
|
+
} & FileAnyPathMatchesFilter) | ({
|
|
186
|
+
type: "filesCountLimitFilter";
|
|
187
|
+
} & FilesCountLimitFilter) | ({
|
|
188
|
+
type: "changedSinceLastUploadFilter";
|
|
189
|
+
} & FileChangedSinceLastUploadFilter) | ({
|
|
110
190
|
type: "customFilter";
|
|
111
191
|
} & FileImportCustomFilter) | ({
|
|
112
192
|
type: "lastModifiedAfterFilter";
|
|
113
193
|
} & FileLastModifiedAfterFilter) | ({
|
|
114
194
|
type: "pathMatchesFilter";
|
|
115
195
|
} & FilePathMatchesFilter) | ({
|
|
196
|
+
type: "atLeastCountFilter";
|
|
197
|
+
} & FileAtLeastCountFilter) | ({
|
|
116
198
|
type: "fileSizeFilter";
|
|
117
199
|
} & FileSizeFilter);
|
|
118
200
|
/**
|
|
@@ -155,6 +237,28 @@ With the relative/subfolder/include-.*.txt regex, only relative/subfolder/includ
|
|
|
155
237
|
export interface FilePathMatchesFilter {
|
|
156
238
|
regex: string;
|
|
157
239
|
}
|
|
240
|
+
/**
|
|
241
|
+
* Only import files whose path (relative to the root of the source) does not match the regular expression.
|
|
242
|
+
Example
|
|
243
|
+
Suppose we are importing files from relative/subfolder.
|
|
244
|
+
relative/subfolder contains:
|
|
245
|
+
|
|
246
|
+
relative/subfolder/include-file.txt
|
|
247
|
+
relative/subfolder/exclude-file.txt
|
|
248
|
+
relative/subfolder/other-file.txt
|
|
249
|
+
|
|
250
|
+
With the relative/subfolder/exclude-.*.txt regex, both relative/subfolder/include-file.txt and relative/subfolder/other-file.txt will be imported,
|
|
251
|
+
and relative/subfolder/exclude-file.txt will be excluded from the import.
|
|
252
|
+
*
|
|
253
|
+
* Log Safety: UNSAFE
|
|
254
|
+
*/
|
|
255
|
+
export interface FilePathNotMatchesFilter {
|
|
256
|
+
regex: string;
|
|
257
|
+
}
|
|
258
|
+
/**
|
|
259
|
+
* Log Safety: SAFE
|
|
260
|
+
*/
|
|
261
|
+
export type FileProperty = "LAST_MODIFIED" | "SIZE";
|
|
158
262
|
/**
|
|
159
263
|
* Only import files whose size is between the specified minimum and maximum values.
|
|
160
264
|
At least one of gt or lt should be present.
|
|
@@ -166,12 +270,43 @@ export interface FileSizeFilter {
|
|
|
166
270
|
gt?: _Core.SizeBytes;
|
|
167
271
|
lt?: _Core.SizeBytes;
|
|
168
272
|
}
|
|
273
|
+
/**
|
|
274
|
+
* Only retain filesCount number of files in each transaction.
|
|
275
|
+
The choice of files to retain is made without any guarantee of order.
|
|
276
|
+
This option can increase the reliability of incremental syncs.
|
|
277
|
+
*
|
|
278
|
+
* Log Safety: SAFE
|
|
279
|
+
*/
|
|
280
|
+
export interface FilesCountLimitFilter {
|
|
281
|
+
filesCount: number;
|
|
282
|
+
}
|
|
283
|
+
/**
|
|
284
|
+
* Log Safety: UNSAFE
|
|
285
|
+
*/
|
|
286
|
+
export interface ListFileImportsResponse {
|
|
287
|
+
data: Array<FileImport>;
|
|
288
|
+
nextPageToken?: _Core.PageToken;
|
|
289
|
+
}
|
|
290
|
+
/**
|
|
291
|
+
* The import configuration for a Microsoft Access connection.
|
|
292
|
+
*
|
|
293
|
+
* Log Safety: UNSAFE
|
|
294
|
+
*/
|
|
295
|
+
export type MicrosoftAccessImportConfig = PalantirProvidedDriversImportConfig;
|
|
169
296
|
/**
|
|
170
297
|
* The Resource Identifier (RID) of a Network Egress Policy.
|
|
171
298
|
*
|
|
172
299
|
* Log Safety: SAFE
|
|
173
300
|
*/
|
|
174
301
|
export type NetworkEgressPolicyRid = LooselyBrandedString<"NetworkEgressPolicyRid">;
|
|
302
|
+
/**
|
|
303
|
+
* The configuration for all connectors that are Palantir-provided drivers.
|
|
304
|
+
*
|
|
305
|
+
* Log Safety: UNSAFE
|
|
306
|
+
*/
|
|
307
|
+
export interface PalantirProvidedDriversImportConfig {
|
|
308
|
+
query: string;
|
|
309
|
+
}
|
|
175
310
|
/**
|
|
176
311
|
* Log Safety: DO_NOT_LOG
|
|
177
312
|
*/
|
|
@@ -189,10 +324,64 @@ export type RuntimePlatform = ({
|
|
|
189
324
|
} & AgentProxyRuntime) | ({
|
|
190
325
|
type: "agentWorkerRuntime";
|
|
191
326
|
} & AgentWorkerRuntime);
|
|
327
|
+
/**
|
|
328
|
+
* Log Safety: UNSAFE
|
|
329
|
+
*/
|
|
330
|
+
export type S3AuthenticationMode = {
|
|
331
|
+
type: "awsAccessKey";
|
|
332
|
+
} & AwsAccessKey;
|
|
333
|
+
/**
|
|
334
|
+
* The configuration needed to connect to an AWS S3 external system (or any other S3-like external systems that
|
|
335
|
+
implement the s3a protocol).
|
|
336
|
+
*
|
|
337
|
+
* Log Safety: UNSAFE
|
|
338
|
+
*/
|
|
339
|
+
export interface S3ConnectionConfiguration {
|
|
340
|
+
bucketUrl: string;
|
|
341
|
+
authenticationMode?: S3AuthenticationMode;
|
|
342
|
+
}
|
|
192
343
|
/**
|
|
193
344
|
* Log Safety: UNSAFE
|
|
194
345
|
*/
|
|
195
346
|
export type SecretName = LooselyBrandedString<"SecretName">;
|
|
347
|
+
/**
|
|
348
|
+
* Log Safety: UNSAFE
|
|
349
|
+
*/
|
|
350
|
+
export interface TableImport {
|
|
351
|
+
rid: TableImportRid;
|
|
352
|
+
connectionRid: ConnectionRid;
|
|
353
|
+
datasetRid: _Datasets.DatasetRid;
|
|
354
|
+
branchName?: _Datasets.BranchName;
|
|
355
|
+
displayName: TableImportDisplayName;
|
|
356
|
+
importMode: TableImportMode;
|
|
357
|
+
config: TableImportConfig;
|
|
358
|
+
}
|
|
359
|
+
/**
|
|
360
|
+
* The import configuration for a specific connector type.
|
|
361
|
+
*
|
|
362
|
+
* Log Safety: UNSAFE
|
|
363
|
+
*/
|
|
364
|
+
export type TableImportConfig = {
|
|
365
|
+
type: "microsoftAccessImportConfig";
|
|
366
|
+
} & MicrosoftAccessImportConfig;
|
|
367
|
+
/**
|
|
368
|
+
* Log Safety: UNSAFE
|
|
369
|
+
*/
|
|
370
|
+
export type TableImportDisplayName = LooselyBrandedString<"TableImportDisplayName">;
|
|
371
|
+
/**
|
|
372
|
+
* Import mode governs how data is read from an external system, and written into a Foundry dataset.
|
|
373
|
+
SNAPSHOT: Defines a new dataset state consisting only of data from a particular import execution.
|
|
374
|
+
APPEND: Purely additive and yields data from previous import executions in addition to newly added data.
|
|
375
|
+
*
|
|
376
|
+
* Log Safety: SAFE
|
|
377
|
+
*/
|
|
378
|
+
export type TableImportMode = "SNAPSHOT" | "APPEND";
|
|
379
|
+
/**
|
|
380
|
+
* The Resource Identifier (RID) of a TableImport (formerly known as a batch sync).
|
|
381
|
+
*
|
|
382
|
+
* Log Safety: SAFE
|
|
383
|
+
*/
|
|
384
|
+
export type TableImportRid = LooselyBrandedString<"TableImportRid">;
|
|
196
385
|
/**
|
|
197
386
|
* Log Safety: DO_NOT_LOG
|
|
198
387
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_components.d.ts","sourceRoot":"","sources":["../../src/_components.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,oBAAoB,CAAC;AACjD,OAAO,KAAK,KAAK,SAAS,MAAM,wBAAwB,CAAC;AAEzD,MAAM,MAAM,oBAAoB,CAAC,CAAC,SAAS,MAAM,IAAI,MAAM,GAAG;IAC5D,aAAa,CAAC,EAAE,CAAC,CAAC;CACnB,CAAC;AAEF;;;;;;;;;KASK;AACL,MAAM,WAAW,iBAAiB;IAChC,SAAS,EAAE,KAAK,CAAC,QAAQ,CAAC,CAAC;CAC5B;AAED;;;;GAIG;AACH,MAAM,MAAM,QAAQ,GAAG,oBAAoB,CAAC,UAAU,CAAC,CAAC;AAExD;;;;;;;;KAQK;AACL,MAAM,WAAW,kBAAkB;IACjC,SAAS,EAAE,KAAK,CAAC,QAAQ,CAAC,CAAC;CAC5B;AAED;;GAEG;AACH,MAAM,WAAW,UAAU;IACzB,GAAG,EAAE,aAAa,CAAC;IACnB,WAAW,EAAE,qBAAqB,CAAC;IACnC,eAAe,EAAE,eAAe,CAAC;
|
|
1
|
+
{"version":3,"file":"_components.d.ts","sourceRoot":"","sources":["../../src/_components.ts"],"names":[],"mappings":"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"}
|
package/build/esm/_errors.d.ts
CHANGED
|
@@ -29,6 +29,20 @@ export interface ConnectionNotFound {
|
|
|
29
29
|
connectionRid: unknown;
|
|
30
30
|
};
|
|
31
31
|
}
|
|
32
|
+
/**
|
|
33
|
+
* The specified connection is not yet supported in the Platform API.
|
|
34
|
+
|
|
35
|
+
*
|
|
36
|
+
* Log Safety: UNSAFE
|
|
37
|
+
*/
|
|
38
|
+
export interface ConnectionTypeNotSupported {
|
|
39
|
+
errorCode: "INTERNAL";
|
|
40
|
+
errorName: "ConnectionTypeNotSupported";
|
|
41
|
+
errorInstanceId: string;
|
|
42
|
+
parameters: {
|
|
43
|
+
connectionType: unknown;
|
|
44
|
+
};
|
|
45
|
+
}
|
|
32
46
|
/**
|
|
33
47
|
* Could not create the FileImport.
|
|
34
48
|
*
|
|
@@ -70,6 +84,20 @@ export interface ExecuteFileImportPermissionDenied {
|
|
|
70
84
|
connectionRid: unknown;
|
|
71
85
|
};
|
|
72
86
|
}
|
|
87
|
+
/**
|
|
88
|
+
* The provided `minFilesCount` field in the FileAtLeastCountFilter must be strictly greater than 0.
|
|
89
|
+
|
|
90
|
+
*
|
|
91
|
+
* Log Safety: SAFE
|
|
92
|
+
*/
|
|
93
|
+
export interface FileAtLeastCountFilterInvalidMinCount {
|
|
94
|
+
errorCode: "INVALID_ARGUMENT";
|
|
95
|
+
errorName: "FileAtLeastCountFilterInvalidMinCount";
|
|
96
|
+
errorInstanceId: string;
|
|
97
|
+
parameters: {
|
|
98
|
+
minFilesCount: unknown;
|
|
99
|
+
};
|
|
100
|
+
}
|
|
73
101
|
/**
|
|
74
102
|
* Custom file import filters can be fetched but cannot currently be used
|
|
75
103
|
when creating or updating file imports.
|
|
@@ -170,6 +198,20 @@ export interface FileSizeFilterMissingGreaterThanAndLessThan {
|
|
|
170
198
|
errorInstanceId: string;
|
|
171
199
|
parameters: {};
|
|
172
200
|
}
|
|
201
|
+
/**
|
|
202
|
+
* The `filesCount` field in the FilesCountLimitFilter must be strictly greater than 0.
|
|
203
|
+
|
|
204
|
+
*
|
|
205
|
+
* Log Safety: SAFE
|
|
206
|
+
*/
|
|
207
|
+
export interface FilesCountLimitFilterInvalidLimit {
|
|
208
|
+
errorCode: "INVALID_ARGUMENT";
|
|
209
|
+
errorName: "FilesCountLimitFilterInvalidLimit";
|
|
210
|
+
errorInstanceId: string;
|
|
211
|
+
parameters: {
|
|
212
|
+
filesCount: unknown;
|
|
213
|
+
};
|
|
214
|
+
}
|
|
173
215
|
/**
|
|
174
216
|
* The secret names provided do not exist on the connection.
|
|
175
217
|
|
|
@@ -185,6 +227,34 @@ export interface SecretNamesDoNotExist {
|
|
|
185
227
|
secretNames: unknown;
|
|
186
228
|
};
|
|
187
229
|
}
|
|
230
|
+
/**
|
|
231
|
+
* The given TableImport could not be found.
|
|
232
|
+
*
|
|
233
|
+
* Log Safety: SAFE
|
|
234
|
+
*/
|
|
235
|
+
export interface TableImportNotFound {
|
|
236
|
+
errorCode: "NOT_FOUND";
|
|
237
|
+
errorName: "TableImportNotFound";
|
|
238
|
+
errorInstanceId: string;
|
|
239
|
+
parameters: {
|
|
240
|
+
tableImportRid: unknown;
|
|
241
|
+
connectionRid: unknown;
|
|
242
|
+
};
|
|
243
|
+
}
|
|
244
|
+
/**
|
|
245
|
+
* The specified table import type is not yet supported in the Platform API.
|
|
246
|
+
|
|
247
|
+
*
|
|
248
|
+
* Log Safety: UNSAFE
|
|
249
|
+
*/
|
|
250
|
+
export interface TableImportTypeNotSupported {
|
|
251
|
+
errorCode: "INTERNAL";
|
|
252
|
+
errorName: "TableImportTypeNotSupported";
|
|
253
|
+
errorInstanceId: string;
|
|
254
|
+
parameters: {
|
|
255
|
+
tableImportType: unknown;
|
|
256
|
+
};
|
|
257
|
+
}
|
|
188
258
|
/**
|
|
189
259
|
* Could not updateSecrets the Connection.
|
|
190
260
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"_errors.d.ts","sourceRoot":"","sources":["../../src/_errors.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"_errors.d.ts","sourceRoot":"","sources":["../../src/_errors.ts"],"names":[],"mappings":"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"}
|
package/build/esm/index.d.ts
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
export type { AgentProxyRuntime, AgentRid, AgentWorkerRuntime, Connection, ConnectionDisplayName, ConnectionRid, CreateFileImportRequest, DirectConnectionRuntime, FileImport, FileImportCustomFilter, FileImportDisplayName, FileImportFilter, FileImportMode, FileImportRid, FileLastModifiedAfterFilter, FilePathMatchesFilter, FileSizeFilter, NetworkEgressPolicyRid, PlaintextValue, RuntimePlatform, SecretName, UpdateSecretsConnectionRequest, } from "./_components.js";
|
|
2
|
-
export type { ConnectionDetailsNotDetermined, ConnectionNotFound, CreateFileImportPermissionDenied, DeleteFileImportPermissionDenied, ExecuteFileImportPermissionDenied, FileImportCustomFilterCannotBeUsedToCreateOrUpdateFileImports, FileImportNotFound, FileImportNotSupportedForConnection, FileSizeFilterGreaterThanCannotBeNegative, FileSizeFilterInvalidGreaterThanAndLessThanRange, FileSizeFilterLessThanMustBeOneByteOrLarger, FileSizeFilterMissingGreaterThanAndLessThan, SecretNamesDoNotExist, UpdateSecretsConnectionPermissionDenied, } from "./_errors.js";
|
|
1
|
+
export type { AgentProxyRuntime, AgentRid, AgentWorkerRuntime, AsPlaintextValue, AsSecretName, AwsAccessKey, Connection, ConnectionConfiguration, ConnectionDisplayName, ConnectionRid, CreateFileImportRequest, DirectConnectionRuntime, EncryptedProperty, FileAnyPathMatchesFilter, FileAtLeastCountFilter, FileChangedSinceLastUploadFilter, FileImport, FileImportCustomFilter, FileImportDisplayName, FileImportFilter, FileImportMode, FileImportRid, FileLastModifiedAfterFilter, FilePathMatchesFilter, FilePathNotMatchesFilter, FileProperty, FilesCountLimitFilter, FileSizeFilter, ListFileImportsResponse, MicrosoftAccessImportConfig, NetworkEgressPolicyRid, PalantirProvidedDriversImportConfig, PlaintextValue, RuntimePlatform, S3AuthenticationMode, S3ConnectionConfiguration, SecretName, TableImport, TableImportConfig, TableImportDisplayName, TableImportMode, TableImportRid, UpdateSecretsConnectionRequest, } from "./_components.js";
|
|
2
|
+
export type { ConnectionDetailsNotDetermined, ConnectionNotFound, ConnectionTypeNotSupported, CreateFileImportPermissionDenied, DeleteFileImportPermissionDenied, ExecuteFileImportPermissionDenied, FileAtLeastCountFilterInvalidMinCount, FileImportCustomFilterCannotBeUsedToCreateOrUpdateFileImports, FileImportNotFound, FileImportNotSupportedForConnection, FilesCountLimitFilterInvalidLimit, FileSizeFilterGreaterThanCannotBeNegative, FileSizeFilterInvalidGreaterThanAndLessThanRange, FileSizeFilterLessThanMustBeOneByteOrLarger, FileSizeFilterMissingGreaterThanAndLessThan, SecretNamesDoNotExist, TableImportNotFound, TableImportTypeNotSupported, UpdateSecretsConnectionPermissionDenied, } from "./_errors.js";
|
|
3
3
|
export * as Connections from "./public/Connection.js";
|
|
4
4
|
export * as FileImports from "./public/FileImport.js";
|
|
5
|
+
export * as TableImports from "./public/TableImport.js";
|
|
5
6
|
//# sourceMappingURL=index.d.ts.map
|
package/build/esm/index.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAgBA,YAAY,EACV,iBAAiB,EACjB,QAAQ,EACR,kBAAkB,EAClB,UAAU,EACV,qBAAqB,EACrB,aAAa,EACb,uBAAuB,EACvB,uBAAuB,EACvB,UAAU,EACV,sBAAsB,EACtB,qBAAqB,EACrB,gBAAgB,EAChB,cAAc,EACd,aAAa,EACb,2BAA2B,EAC3B,qBAAqB,EACrB,cAAc,EACd,sBAAsB,EACtB,cAAc,EACd,eAAe,EACf,UAAU,EACV,8BAA8B,GAC/B,MAAM,kBAAkB,CAAC;AAC1B,YAAY,EACV,8BAA8B,EAC9B,kBAAkB,EAClB,gCAAgC,EAChC,gCAAgC,EAChC,iCAAiC,EACjC,6DAA6D,EAC7D,kBAAkB,EAClB,mCAAmC,EACnC,yCAAyC,EACzC,gDAAgD,EAChD,2CAA2C,EAC3C,2CAA2C,EAC3C,qBAAqB,EACrB,uCAAuC,GACxC,MAAM,cAAc,CAAC;AACtB,OAAO,KAAK,WAAW,MAAM,wBAAwB,CAAC;AACtD,OAAO,KAAK,WAAW,MAAM,wBAAwB,CAAC"}
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAgBA,YAAY,EACV,iBAAiB,EACjB,QAAQ,EACR,kBAAkB,EAClB,gBAAgB,EAChB,YAAY,EACZ,YAAY,EACZ,UAAU,EACV,uBAAuB,EACvB,qBAAqB,EACrB,aAAa,EACb,uBAAuB,EACvB,uBAAuB,EACvB,iBAAiB,EACjB,wBAAwB,EACxB,sBAAsB,EACtB,gCAAgC,EAChC,UAAU,EACV,sBAAsB,EACtB,qBAAqB,EACrB,gBAAgB,EAChB,cAAc,EACd,aAAa,EACb,2BAA2B,EAC3B,qBAAqB,EACrB,wBAAwB,EACxB,YAAY,EACZ,qBAAqB,EACrB,cAAc,EACd,uBAAuB,EACvB,2BAA2B,EAC3B,sBAAsB,EACtB,mCAAmC,EACnC,cAAc,EACd,eAAe,EACf,oBAAoB,EACpB,yBAAyB,EACzB,UAAU,EACV,WAAW,EACX,iBAAiB,EACjB,sBAAsB,EACtB,eAAe,EACf,cAAc,EACd,8BAA8B,GAC/B,MAAM,kBAAkB,CAAC;AAC1B,YAAY,EACV,8BAA8B,EAC9B,kBAAkB,EAClB,0BAA0B,EAC1B,gCAAgC,EAChC,gCAAgC,EAChC,iCAAiC,EACjC,qCAAqC,EACrC,6DAA6D,EAC7D,kBAAkB,EAClB,mCAAmC,EACnC,iCAAiC,EACjC,yCAAyC,EACzC,gDAAgD,EAChD,2CAA2C,EAC3C,2CAA2C,EAC3C,qBAAqB,EACrB,mBAAmB,EACnB,2BAA2B,EAC3B,uCAAuC,GACxC,MAAM,cAAc,CAAC;AACtB,OAAO,KAAK,WAAW,MAAM,wBAAwB,CAAC;AACtD,OAAO,KAAK,WAAW,MAAM,wBAAwB,CAAC;AACtD,OAAO,KAAK,YAAY,MAAM,yBAAyB,CAAC"}
|
package/build/esm/index.js
CHANGED
package/build/esm/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","names":["Connections","FileImports"],"sources":["index.js"],"sourcesContent":["/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nexport * as Connections from \"./public/Connection.js\";\nexport * as FileImports from \"./public/FileImport.js\";\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,KAAKA,WAAW,MAAM,wBAAwB;AACrD,OAAO,KAAKC,WAAW,MAAM,wBAAwB","ignoreList":[]}
|
|
1
|
+
{"version":3,"file":"index.js","names":["Connections","FileImports","TableImports"],"sources":["index.js"],"sourcesContent":["/*\n * Copyright 2024 Palantir Technologies, Inc. All rights reserved.\n *\n * Licensed under the Apache License, Version 2.0 (the \"License\");\n * you may not use this file except in compliance with the License.\n * You may obtain a copy of the License at\n *\n * http://www.apache.org/licenses/LICENSE-2.0\n *\n * Unless required by applicable law or agreed to in writing, software\n * distributed under the License is distributed on an \"AS IS\" BASIS,\n * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n * See the License for the specific language governing permissions and\n * limitations under the License.\n */\nexport * as Connections from \"./public/Connection.js\";\nexport * as FileImports from \"./public/FileImport.js\";\nexport * as TableImports from \"./public/TableImport.js\";\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,KAAKA,WAAW,MAAM,wBAAwB;AACrD,OAAO,KAAKC,WAAW,MAAM,wBAAwB;AACrD,OAAO,KAAKC,YAAY,MAAM,yBAAyB","ignoreList":[]}
|
|
@@ -35,6 +35,23 @@ export declare function deleteFileImport($ctx: $Client | $ClientContext | $OldCl
|
|
|
35
35
|
preview?: _Core.PreviewMode | undefined;
|
|
36
36
|
}
|
|
37
37
|
]): Promise<void>;
|
|
38
|
+
/**
|
|
39
|
+
* Lists all file imports defined for this connection.
|
|
40
|
+
* Only file imports that the user has permissions to view will be returned.
|
|
41
|
+
*
|
|
42
|
+
* @alpha
|
|
43
|
+
*
|
|
44
|
+
* Required Scopes: [api:connectivity-file-import-read]
|
|
45
|
+
* URL: /v2/connectivity/connections/{connectionRid}/fileImports
|
|
46
|
+
*/
|
|
47
|
+
export declare function list($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
48
|
+
connectionRid: _Connectivity.ConnectionRid,
|
|
49
|
+
$queryParams?: {
|
|
50
|
+
pageSize?: _Core.PageSize | undefined;
|
|
51
|
+
pageToken?: _Core.PageToken | undefined;
|
|
52
|
+
preview?: _Core.PreviewMode | undefined;
|
|
53
|
+
}
|
|
54
|
+
]): Promise<_Connectivity.ListFileImportsResponse>;
|
|
38
55
|
/**
|
|
39
56
|
* Get the FileImport with the specified rid.
|
|
40
57
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FileImport.d.ts","sourceRoot":"","sources":["../../../src/public/FileImport.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,oBAAoB,CAAC;AACjD,OAAO,KAAK,KAAK,cAAc,MAAM,6BAA6B,CAAC;AACnE,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;AAYxD;;;;;;;GAOG;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,uBAAuB;IAC5C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,aAAa,CAAC,UAAU,CAAC,CAEnC;AAUD;;;;;;;;;GASG;AACH,wBAAgB,gBAAgB,CAC9B,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,aAAa,EAAE,aAAa,CAAC,aAAa;IAC1C,aAAa,EAAE,aAAa,CAAC,aAAa;IAE1C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,IAAI,CAAC,CAEf;AAUD;;;;;;;GAOG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,aAAa,EAAE,aAAa,CAAC,aAAa;IAC1C,aAAa,EAAE,aAAa,CAAC,aAAa;IAE1C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,aAAa,CAAC,UAAU,CAAC,CAEnC;AAUD;;;;;;;;GAQG;AACH,wBAAgB,OAAO,CACrB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,aAAa,EAAE,aAAa,CAAC,aAAa;IAC1C,aAAa,EAAE,aAAa,CAAC,aAAa;IAE1C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,cAAc,CAAC,QAAQ,CAAC,CAElC"}
|
|
1
|
+
{"version":3,"file":"FileImport.d.ts","sourceRoot":"","sources":["../../../src/public/FileImport.ts"],"names":[],"mappings":"AAgBA,OAAO,KAAK,KAAK,KAAK,MAAM,oBAAoB,CAAC;AACjD,OAAO,KAAK,KAAK,cAAc,MAAM,6BAA6B,CAAC;AACnE,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;AAYxD;;;;;;;GAOG;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,uBAAuB;IAC5C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,aAAa,CAAC,UAAU,CAAC,CAEnC;AAUD;;;;;;;;;GASG;AACH,wBAAgB,gBAAgB,CAC9B,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,aAAa,EAAE,aAAa,CAAC,aAAa;IAC1C,aAAa,EAAE,aAAa,CAAC,aAAa;IAE1C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,IAAI,CAAC,CAEf;AAaD;;;;;;;;GAQG;AACH,wBAAgB,IAAI,CAClB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,aAAa,EAAE,aAAa,CAAC,aAAa;IAE1C,YAAY,CAAC,EAAE;QACb,QAAQ,CAAC,EAAE,KAAK,CAAC,QAAQ,GAAG,SAAS,CAAC;QACtC,SAAS,CAAC,EAAE,KAAK,CAAC,SAAS,GAAG,SAAS,CAAC;QACxC,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAC;KACzC;CACF,GACA,OAAO,CAAC,aAAa,CAAC,uBAAuB,CAAC,CAEhD;AAUD;;;;;;;GAOG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,aAAa,EAAE,aAAa,CAAC,aAAa;IAC1C,aAAa,EAAE,aAAa,CAAC,aAAa;IAE1C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,aAAa,CAAC,UAAU,CAAC,CAEnC;AAUD;;;;;;;;GAQG;AACH,wBAAgB,OAAO,CACrB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,aAAa,EAAE,aAAa,CAAC,aAAa;IAC1C,aAAa,EAAE,aAAa,CAAC,aAAa;IAE1C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,cAAc,CAAC,QAAQ,CAAC,CAElC"}
|
|
@@ -41,6 +41,19 @@ const _deleteFileImport = [3, "/v2/connectivity/connections/{0}/fileImports/{1}"
|
|
|
41
41
|
export function deleteFileImport($ctx, ...args) {
|
|
42
42
|
return $foundryPlatformFetch($ctx, _deleteFileImport, ...args);
|
|
43
43
|
}
|
|
44
|
+
const _list = [0, "/v2/connectivity/connections/{0}/fileImports", 2];
|
|
45
|
+
/**
|
|
46
|
+
* Lists all file imports defined for this connection.
|
|
47
|
+
* Only file imports that the user has permissions to view will be returned.
|
|
48
|
+
*
|
|
49
|
+
* @alpha
|
|
50
|
+
*
|
|
51
|
+
* Required Scopes: [api:connectivity-file-import-read]
|
|
52
|
+
* URL: /v2/connectivity/connections/{connectionRid}/fileImports
|
|
53
|
+
*/
|
|
54
|
+
export function list($ctx, ...args) {
|
|
55
|
+
return $foundryPlatformFetch($ctx, _list, ...args);
|
|
56
|
+
}
|
|
44
57
|
const _get = [0, "/v2/connectivity/connections/{0}/fileImports/{1}", 2];
|
|
45
58
|
/**
|
|
46
59
|
* Get the FileImport with the specified rid.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"FileImport.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_create","create","$ctx","args","_deleteFileImport","deleteFileImport","_get","get","_execute","execute"],"sources":["FileImport.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}/fileImports\", 3];\n/**\n * Creates a new FileImport.\n *\n * @alpha\n *\n * Required Scopes: [api:connectivity-file-import-write]\n * URL: /v2/connectivity/connections/{connectionRid}/fileImports\n */\nexport function create($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _create, ...args);\n}\nconst _deleteFileImport = [3, \"/v2/connectivity/connections/{0}/fileImports/{1}\", 2];\n/**\n * Delete the FileImport with the specified RID.\n * Deleting the file import does not delete the destination dataset but the dataset will no longer\n * be updated by this import.\n *\n * @alpha\n *\n * Required Scopes: [api:connectivity-file-import-write]\n * URL: /v2/connectivity/connections/{connectionRid}/fileImports/{fileImportRid}\n */\nexport function deleteFileImport($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _deleteFileImport, ...args);\n}\nconst _get = [0, \"/v2/connectivity/connections/{0}/fileImports/{1}\", 2];\n/**\n * Get the FileImport with the specified rid.\n *\n * @alpha\n *\n * Required Scopes: [api:connectivity-file-import-read]\n * URL: /v2/connectivity/connections/{connectionRid}/fileImports/{fileImportRid}\n */\nexport function get($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _get, ...args);\n}\nconst _execute = [1, \"/v2/connectivity/connections/{0}/fileImports/{1}/execute\", 2];\n/**\n * Executes the FileImport, 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 * @alpha\n *\n * Required Scopes: [api:connectivity-file-import-execute]\n * URL: /v2/connectivity/connections/{connectionRid}/fileImports/{fileImportRid}/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,8CAA8C,EAAE,CAAC,CAAC;AACtE;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,iBAAiB,GAAG,CAAC,CAAC,EAAE,kDAAkD,EAAE,CAAC,CAAC;AACpF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,gBAAgBA,CAACH,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC5C,OAAOJ,qBAAqB,CAACG,IAAI,EAAEE,iBAAiB,EAAE,GAAGD,IAAI,CAAC;AAClE;AACA,MAAMG,IAAI,GAAG,CAAC,CAAC,EAAE,kDAAkD,EAAE,CAAC,CAAC;AACvE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,GAAGA,
|
|
1
|
+
{"version":3,"file":"FileImport.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_create","create","$ctx","args","_deleteFileImport","deleteFileImport","_list","list","_get","get","_execute","execute"],"sources":["FileImport.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}/fileImports\", 3];\n/**\n * Creates a new FileImport.\n *\n * @alpha\n *\n * Required Scopes: [api:connectivity-file-import-write]\n * URL: /v2/connectivity/connections/{connectionRid}/fileImports\n */\nexport function create($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _create, ...args);\n}\nconst _deleteFileImport = [3, \"/v2/connectivity/connections/{0}/fileImports/{1}\", 2];\n/**\n * Delete the FileImport with the specified RID.\n * Deleting the file import does not delete the destination dataset but the dataset will no longer\n * be updated by this import.\n *\n * @alpha\n *\n * Required Scopes: [api:connectivity-file-import-write]\n * URL: /v2/connectivity/connections/{connectionRid}/fileImports/{fileImportRid}\n */\nexport function deleteFileImport($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _deleteFileImport, ...args);\n}\nconst _list = [0, \"/v2/connectivity/connections/{0}/fileImports\", 2];\n/**\n * Lists all file imports defined for this connection.\n * Only file imports that the user has permissions to view will be returned.\n *\n * @alpha\n *\n * Required Scopes: [api:connectivity-file-import-read]\n * URL: /v2/connectivity/connections/{connectionRid}/fileImports\n */\nexport function list($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _list, ...args);\n}\nconst _get = [0, \"/v2/connectivity/connections/{0}/fileImports/{1}\", 2];\n/**\n * Get the FileImport with the specified rid.\n *\n * @alpha\n *\n * Required Scopes: [api:connectivity-file-import-read]\n * URL: /v2/connectivity/connections/{connectionRid}/fileImports/{fileImportRid}\n */\nexport function get($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _get, ...args);\n}\nconst _execute = [1, \"/v2/connectivity/connections/{0}/fileImports/{1}/execute\", 2];\n/**\n * Executes the FileImport, 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 * @alpha\n *\n * Required Scopes: [api:connectivity-file-import-execute]\n * URL: /v2/connectivity/connections/{connectionRid}/fileImports/{fileImportRid}/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,8CAA8C,EAAE,CAAC,CAAC;AACtE;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,iBAAiB,GAAG,CAAC,CAAC,EAAE,kDAAkD,EAAE,CAAC,CAAC;AACpF;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,gBAAgBA,CAACH,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC5C,OAAOJ,qBAAqB,CAACG,IAAI,EAAEE,iBAAiB,EAAE,GAAGD,IAAI,CAAC;AAClE;AACA,MAAMG,KAAK,GAAG,CAAC,CAAC,EAAE,8CAA8C,EAAE,CAAC,CAAC;AACpE;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,kDAAkD,EAAE,CAAC,CAAC;AACvE;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,0DAA0D,EAAE,CAAC,CAAC;AACnF;AACA;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","ignoreList":[]}
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import type * as _Core from "@osdk/foundry.core";
|
|
2
|
+
import type { SharedClient as $OldClient, SharedClientContext as $OldClientContext } from "@osdk/shared.client";
|
|
3
|
+
import type { SharedClient as $Client, SharedClientContext as $ClientContext } from "@osdk/shared.client2";
|
|
4
|
+
import type * as _Connectivity from "../_components.js";
|
|
5
|
+
/**
|
|
6
|
+
* Get the TableImport with the specified rid.
|
|
7
|
+
*
|
|
8
|
+
* @alpha
|
|
9
|
+
*
|
|
10
|
+
* Required Scopes: []
|
|
11
|
+
* URL: /v2/connectivity/connections/{connectionRid}/tableImports/{tableImportRid}
|
|
12
|
+
*/
|
|
13
|
+
export declare function get($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
|
|
14
|
+
connectionRid: _Connectivity.ConnectionRid,
|
|
15
|
+
tableImportRid: _Connectivity.TableImportRid,
|
|
16
|
+
$queryParams?: {
|
|
17
|
+
preview?: _Core.PreviewMode | undefined;
|
|
18
|
+
}
|
|
19
|
+
]): Promise<_Connectivity.TableImport>;
|
|
20
|
+
//# sourceMappingURL=TableImport.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TableImport.d.ts","sourceRoot":"","sources":["../../../src/public/TableImport.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,aAAa,MAAM,mBAAmB,CAAC;AAYxD;;;;;;;GAOG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,aAAa,EAAE,aAAa,CAAC,aAAa;IAC1C,cAAc,EAAE,aAAa,CAAC,cAAc;IAE5C,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,aAAa,CAAC,WAAW,CAAC,CAEpC"}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright 2024 Palantir Technologies, Inc. All rights reserved.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
import { foundryPlatformFetch as $foundryPlatformFetch } from "@osdk/shared.net.platformapi";
|
|
17
|
+
//
|
|
18
|
+
const _get = [0, "/v2/connectivity/connections/{0}/tableImports/{1}", 2];
|
|
19
|
+
/**
|
|
20
|
+
* Get the TableImport with the specified rid.
|
|
21
|
+
*
|
|
22
|
+
* @alpha
|
|
23
|
+
*
|
|
24
|
+
* Required Scopes: []
|
|
25
|
+
* URL: /v2/connectivity/connections/{connectionRid}/tableImports/{tableImportRid}
|
|
26
|
+
*/
|
|
27
|
+
export function get($ctx, ...args) {
|
|
28
|
+
return $foundryPlatformFetch($ctx, _get, ...args);
|
|
29
|
+
}
|
|
30
|
+
//# sourceMappingURL=TableImport.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TableImport.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_get","get","$ctx","args"],"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 _get = [0, \"/v2/connectivity/connections/{0}/tableImports/{1}\", 2];\n/**\n * Get the TableImport with the specified rid.\n *\n * @alpha\n *\n * Required Scopes: []\n * URL: /v2/connectivity/connections/{connectionRid}/tableImports/{tableImportRid}\n */\nexport function get($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _get, ...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,mDAAmD,EAAE,CAAC,CAAC;AACxE;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","ignoreList":[]}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@osdk/foundry.connectivity",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.5.0",
|
|
4
4
|
"license": "Apache-2.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -19,10 +19,10 @@
|
|
|
19
19
|
"dependencies": {
|
|
20
20
|
"@osdk/shared.client": "^1.0.1",
|
|
21
21
|
"@osdk/shared.client2": "^1.0.0",
|
|
22
|
-
"@osdk/
|
|
23
|
-
"@osdk/foundry.
|
|
24
|
-
"@osdk/foundry.
|
|
25
|
-
"@osdk/
|
|
22
|
+
"@osdk/foundry.core": "2.5.0",
|
|
23
|
+
"@osdk/foundry.datasets": "2.5.0",
|
|
24
|
+
"@osdk/foundry.orchestration": "2.5.0",
|
|
25
|
+
"@osdk/shared.net.platformapi": "~1.1.0"
|
|
26
26
|
},
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"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.986.0",
|
|
51
51
|
"maxVersion": "1.x.x",
|
|
52
52
|
"optional": true
|
|
53
53
|
}
|