@osdk/foundry.datasets 2.8.0 → 2.9.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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @osdk/foundry.datasets
2
2
 
3
+ ## 2.9.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 70eca2d: Updating platform sdks with new media reference capabilities and other improvements.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [70eca2d]
12
+ - @osdk/foundry.filesystem@2.9.0
13
+ - @osdk/foundry.core@2.9.0
14
+
3
15
  ## 2.8.0
4
16
 
5
17
  ### Minor Changes
@@ -2,11 +2,10 @@ export type LooselyBrandedString<T extends string> = string & {
2
2
  __LOOSE_BRAND?: T;
3
3
  };
4
4
  /**
5
- * The provided token does not have permission to abort the given transaction on the given dataset.
6
-
7
- *
8
- * Log Safety: SAFE
9
- */
5
+ * The provided token does not have permission to abort the given transaction on the given dataset.
6
+ *
7
+ * Log Safety: SAFE
8
+ */
10
9
  export interface AbortTransactionPermissionDenied {
11
10
  errorCode: "PERMISSION_DENIED";
12
11
  errorName: "AbortTransactionPermissionDenied";
@@ -17,11 +16,10 @@ export interface AbortTransactionPermissionDenied {
17
16
  };
18
17
  }
19
18
  /**
20
- * The branch cannot be created because a branch with that name already exists.
21
-
22
- *
23
- * Log Safety: UNSAFE
24
- */
19
+ * The branch cannot be created because a branch with that name already exists.
20
+ *
21
+ * Log Safety: UNSAFE
22
+ */
25
23
  export interface BranchAlreadyExists {
26
24
  errorCode: "CONFLICT";
27
25
  errorName: "BranchAlreadyExists";
@@ -32,11 +30,10 @@ export interface BranchAlreadyExists {
32
30
  };
33
31
  }
34
32
  /**
35
- * The requested branch could not be found, or the client token does not have access to it.
36
-
37
- *
38
- * Log Safety: UNSAFE
39
- */
33
+ * The requested branch could not be found, or the client token does not have access to it.
34
+ *
35
+ * Log Safety: UNSAFE
36
+ */
40
37
  export interface BranchNotFound {
41
38
  errorCode: "NOT_FOUND";
42
39
  errorName: "BranchNotFound";
@@ -47,11 +44,10 @@ export interface BranchNotFound {
47
44
  };
48
45
  }
49
46
  /**
50
- * The dataset contains column types that are not supported.
51
-
52
- *
53
- * Log Safety: SAFE
54
- */
47
+ * The dataset contains column types that are not supported.
48
+ *
49
+ * Log Safety: SAFE
50
+ */
55
51
  export interface ColumnTypesNotSupported {
56
52
  errorCode: "INVALID_ARGUMENT";
57
53
  errorName: "ColumnTypesNotSupported";
@@ -61,11 +57,10 @@ export interface ColumnTypesNotSupported {
61
57
  };
62
58
  }
63
59
  /**
64
- * The provided token does not have permission to commit the given transaction on the given dataset.
65
-
66
- *
67
- * Log Safety: SAFE
68
- */
60
+ * The provided token does not have permission to commit the given transaction on the given dataset.
61
+ *
62
+ * Log Safety: SAFE
63
+ */
69
64
  export interface CommitTransactionPermissionDenied {
70
65
  errorCode: "PERMISSION_DENIED";
71
66
  errorName: "CommitTransactionPermissionDenied";
@@ -76,11 +71,10 @@ export interface CommitTransactionPermissionDenied {
76
71
  };
77
72
  }
78
73
  /**
79
- * The provided token does not have permission to create a branch of this dataset.
80
-
81
- *
82
- * Log Safety: UNSAFE
83
- */
74
+ * The provided token does not have permission to create a branch of this dataset.
75
+ *
76
+ * Log Safety: UNSAFE
77
+ */
84
78
  export interface CreateBranchPermissionDenied {
85
79
  errorCode: "PERMISSION_DENIED";
86
80
  errorName: "CreateBranchPermissionDenied";
@@ -91,11 +85,10 @@ export interface CreateBranchPermissionDenied {
91
85
  };
92
86
  }
93
87
  /**
94
- * The provided token does not have permission to create a dataset in this folder.
95
-
96
- *
97
- * Log Safety: UNSAFE
98
- */
88
+ * The provided token does not have permission to create a dataset in this folder.
89
+ *
90
+ * Log Safety: UNSAFE
91
+ */
99
92
  export interface CreateDatasetPermissionDenied {
100
93
  errorCode: "PERMISSION_DENIED";
101
94
  errorName: "CreateDatasetPermissionDenied";
@@ -106,11 +99,10 @@ export interface CreateDatasetPermissionDenied {
106
99
  };
107
100
  }
108
101
  /**
109
- * The provided token does not have permission to create a transaction on this dataset.
110
-
111
- *
112
- * Log Safety: UNSAFE
113
- */
102
+ * The provided token does not have permission to create a transaction on this dataset.
103
+ *
104
+ * Log Safety: UNSAFE
105
+ */
114
106
  export interface CreateTransactionPermissionDenied {
115
107
  errorCode: "PERMISSION_DENIED";
116
108
  errorName: "CreateTransactionPermissionDenied";
@@ -121,11 +113,10 @@ export interface CreateTransactionPermissionDenied {
121
113
  };
122
114
  }
123
115
  /**
124
- * The requested dataset could not be found, or the client token does not have access to it.
125
-
126
- *
127
- * Log Safety: SAFE
128
- */
116
+ * The requested dataset could not be found, or the client token does not have access to it.
117
+ *
118
+ * Log Safety: SAFE
119
+ */
129
120
  export interface DatasetNotFound {
130
121
  errorCode: "NOT_FOUND";
131
122
  errorName: "DatasetNotFound";
@@ -135,11 +126,10 @@ export interface DatasetNotFound {
135
126
  };
136
127
  }
137
128
  /**
138
- * The dataset does not support being read.
139
-
140
- *
141
- * Log Safety: SAFE
142
- */
129
+ * The dataset does not support being read.
130
+ *
131
+ * Log Safety: SAFE
132
+ */
143
133
  export interface DatasetReadNotSupported {
144
134
  errorCode: "INVALID_ARGUMENT";
145
135
  errorName: "DatasetReadNotSupported";
@@ -149,11 +139,10 @@ export interface DatasetReadNotSupported {
149
139
  };
150
140
  }
151
141
  /**
152
- * The provided token does not have permission to delete the given branch from this dataset.
153
-
154
- *
155
- * Log Safety: UNSAFE
156
- */
142
+ * The provided token does not have permission to delete the given branch from this dataset.
143
+ *
144
+ * Log Safety: UNSAFE
145
+ */
157
146
  export interface DeleteBranchPermissionDenied {
158
147
  errorCode: "PERMISSION_DENIED";
159
148
  errorName: "DeleteBranchPermissionDenied";
@@ -193,11 +182,10 @@ export interface DeleteSchemaPermissionDenied {
193
182
  };
194
183
  }
195
184
  /**
196
- * The given file path already exists in the dataset and transaction.
197
-
198
- *
199
- * Log Safety: UNSAFE
200
- */
185
+ * The given file path already exists in the dataset and transaction.
186
+ *
187
+ * Log Safety: UNSAFE
188
+ */
201
189
  export interface FileAlreadyExists {
202
190
  errorCode: "NOT_FOUND";
203
191
  errorName: "FileAlreadyExists";
@@ -223,11 +211,10 @@ export interface FileNotFound {
223
211
  };
224
212
  }
225
213
  /**
226
- * The requested file could not be found on the given branch, or the client token does not have access to it.
227
-
228
- *
229
- * Log Safety: UNSAFE
230
- */
214
+ * The requested file could not be found on the given branch, or the client token does not have access to it.
215
+ *
216
+ * Log Safety: UNSAFE
217
+ */
231
218
  export interface FileNotFoundOnBranch {
232
219
  errorCode: "NOT_FOUND";
233
220
  errorName: "FileNotFoundOnBranch";
@@ -239,11 +226,10 @@ export interface FileNotFoundOnBranch {
239
226
  };
240
227
  }
241
228
  /**
242
- * The requested file could not be found on the given transaction range, or the client token does not have access to it.
243
-
244
- *
245
- * Log Safety: UNSAFE
246
- */
229
+ * The requested file could not be found on the given transaction range, or the client token does not have access to it.
230
+ *
231
+ * Log Safety: UNSAFE
232
+ */
247
233
  export interface FileNotFoundOnTransactionRange {
248
234
  errorCode: "NOT_FOUND";
249
235
  errorName: "FileNotFoundOnTransactionRange";
@@ -270,11 +256,10 @@ export interface GetFileContentPermissionDenied {
270
256
  };
271
257
  }
272
258
  /**
273
- * The requested branch name cannot be used. Branch names cannot be empty and must not look like RIDs or UUIDs.
274
-
275
- *
276
- * Log Safety: UNSAFE
277
- */
259
+ * The requested branch name cannot be used. Branch names cannot be empty and must not look like RIDs or UUIDs.
260
+ *
261
+ * Log Safety: UNSAFE
262
+ */
278
263
  export interface InvalidBranchName {
279
264
  errorCode: "INVALID_ARGUMENT";
280
265
  errorName: "InvalidBranchName";
@@ -284,11 +269,10 @@ export interface InvalidBranchName {
284
269
  };
285
270
  }
286
271
  /**
287
- * The given transaction type is not valid. Valid transaction types are `SNAPSHOT`, `UPDATE`, `APPEND`, and `DELETE`.
288
-
289
- *
290
- * Log Safety: SAFE
291
- */
272
+ * The given transaction type is not valid. Valid transaction types are SNAPSHOT, UPDATE, APPEND, and DELETE.
273
+ *
274
+ * Log Safety: SAFE
275
+ */
292
276
  export interface InvalidTransactionType {
293
277
  errorCode: "INVALID_ARGUMENT";
294
278
  errorName: "InvalidTransactionType";
@@ -300,11 +284,10 @@ export interface InvalidTransactionType {
300
284
  };
301
285
  }
302
286
  /**
303
- * A transaction is already open on this dataset and branch. A branch of a dataset can only have one open transaction at a time.
304
-
305
- *
306
- * Log Safety: UNSAFE
307
- */
287
+ * A transaction is already open on this dataset and branch. A branch of a dataset can only have one open transaction at a time.
288
+ *
289
+ * Log Safety: UNSAFE
290
+ */
308
291
  export interface OpenTransactionAlreadyExists {
309
292
  errorCode: "CONFLICT";
310
293
  errorName: "OpenTransactionAlreadyExists";
@@ -342,11 +325,10 @@ export interface ReadTableDatasetPermissionDenied {
342
325
  };
343
326
  }
344
327
  /**
345
- * The provided token does not have permission to read the given dataset as a table.
346
-
347
- *
348
- * Log Safety: SAFE
349
- */
328
+ * The provided token does not have permission to read the given dataset as a table.
329
+ *
330
+ * Log Safety: SAFE
331
+ */
350
332
  export interface ReadTablePermissionDenied {
351
333
  errorCode: "PERMISSION_DENIED";
352
334
  errorName: "ReadTablePermissionDenied";
@@ -356,11 +338,10 @@ export interface ReadTablePermissionDenied {
356
338
  };
357
339
  }
358
340
  /**
359
- * A schema could not be found for the given dataset and branch, or the client token does not have access to it.
360
-
361
- *
362
- * Log Safety: UNSAFE
363
- */
341
+ * A schema could not be found for the given dataset and branch, or the client token does not have access to it.
342
+ *
343
+ * Log Safety: UNSAFE
344
+ */
364
345
  export interface SchemaNotFound {
365
346
  errorCode: "NOT_FOUND";
366
347
  errorName: "SchemaNotFound";
@@ -372,11 +353,10 @@ export interface SchemaNotFound {
372
353
  };
373
354
  }
374
355
  /**
375
- * The given transaction has not been committed.
376
-
377
- *
378
- * Log Safety: SAFE
379
- */
356
+ * The given transaction has not been committed.
357
+ *
358
+ * Log Safety: SAFE
359
+ */
380
360
  export interface TransactionNotCommitted {
381
361
  errorCode: "INVALID_ARGUMENT";
382
362
  errorName: "TransactionNotCommitted";
@@ -388,11 +368,10 @@ export interface TransactionNotCommitted {
388
368
  };
389
369
  }
390
370
  /**
391
- * The requested transaction could not be found on the dataset, or the client token does not have access to it.
392
-
393
- *
394
- * Log Safety: SAFE
395
- */
371
+ * The requested transaction could not be found on the dataset, or the client token does not have access to it.
372
+ *
373
+ * Log Safety: SAFE
374
+ */
396
375
  export interface TransactionNotFound {
397
376
  errorCode: "NOT_FOUND";
398
377
  errorName: "TransactionNotFound";
@@ -403,11 +382,10 @@ export interface TransactionNotFound {
403
382
  };
404
383
  }
405
384
  /**
406
- * The given transaction is not open.
407
-
408
- *
409
- * Log Safety: SAFE
410
- */
385
+ * The given transaction is not open.
386
+ *
387
+ * Log Safety: SAFE
388
+ */
411
389
  export interface TransactionNotOpen {
412
390
  errorCode: "INVALID_ARGUMENT";
413
391
  errorName: "TransactionNotOpen";
@@ -419,11 +397,10 @@ export interface TransactionNotOpen {
419
397
  };
420
398
  }
421
399
  /**
422
- * The provided token does not have permission to upload the given file to the given dataset and transaction.
423
-
424
- *
425
- * Log Safety: UNSAFE
426
- */
400
+ * The provided token does not have permission to upload the given file to the given dataset and transaction.
401
+ *
402
+ * Log Safety: UNSAFE
403
+ */
427
404
  export interface UploadFilePermissionDenied {
428
405
  errorCode: "PERMISSION_DENIED";
429
406
  errorName: "UploadFilePermissionDenied";
@@ -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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"}
@@ -2,11 +2,10 @@ export type LooselyBrandedString<T extends string> = string & {
2
2
  __LOOSE_BRAND?: T;
3
3
  };
4
4
  /**
5
- * The provided token does not have permission to abort the given transaction on the given dataset.
6
-
7
- *
8
- * Log Safety: SAFE
9
- */
5
+ * The provided token does not have permission to abort the given transaction on the given dataset.
6
+ *
7
+ * Log Safety: SAFE
8
+ */
10
9
  export interface AbortTransactionPermissionDenied {
11
10
  errorCode: "PERMISSION_DENIED";
12
11
  errorName: "AbortTransactionPermissionDenied";
@@ -17,11 +16,10 @@ export interface AbortTransactionPermissionDenied {
17
16
  };
18
17
  }
19
18
  /**
20
- * The branch cannot be created because a branch with that name already exists.
21
-
22
- *
23
- * Log Safety: UNSAFE
24
- */
19
+ * The branch cannot be created because a branch with that name already exists.
20
+ *
21
+ * Log Safety: UNSAFE
22
+ */
25
23
  export interface BranchAlreadyExists {
26
24
  errorCode: "CONFLICT";
27
25
  errorName: "BranchAlreadyExists";
@@ -32,11 +30,10 @@ export interface BranchAlreadyExists {
32
30
  };
33
31
  }
34
32
  /**
35
- * The requested branch could not be found, or the client token does not have access to it.
36
-
37
- *
38
- * Log Safety: UNSAFE
39
- */
33
+ * The requested branch could not be found, or the client token does not have access to it.
34
+ *
35
+ * Log Safety: UNSAFE
36
+ */
40
37
  export interface BranchNotFound {
41
38
  errorCode: "NOT_FOUND";
42
39
  errorName: "BranchNotFound";
@@ -47,11 +44,10 @@ export interface BranchNotFound {
47
44
  };
48
45
  }
49
46
  /**
50
- * The dataset contains column types that are not supported.
51
-
52
- *
53
- * Log Safety: SAFE
54
- */
47
+ * The dataset contains column types that are not supported.
48
+ *
49
+ * Log Safety: SAFE
50
+ */
55
51
  export interface ColumnTypesNotSupported {
56
52
  errorCode: "INVALID_ARGUMENT";
57
53
  errorName: "ColumnTypesNotSupported";
@@ -61,11 +57,10 @@ export interface ColumnTypesNotSupported {
61
57
  };
62
58
  }
63
59
  /**
64
- * The provided token does not have permission to commit the given transaction on the given dataset.
65
-
66
- *
67
- * Log Safety: SAFE
68
- */
60
+ * The provided token does not have permission to commit the given transaction on the given dataset.
61
+ *
62
+ * Log Safety: SAFE
63
+ */
69
64
  export interface CommitTransactionPermissionDenied {
70
65
  errorCode: "PERMISSION_DENIED";
71
66
  errorName: "CommitTransactionPermissionDenied";
@@ -76,11 +71,10 @@ export interface CommitTransactionPermissionDenied {
76
71
  };
77
72
  }
78
73
  /**
79
- * The provided token does not have permission to create a branch of this dataset.
80
-
81
- *
82
- * Log Safety: UNSAFE
83
- */
74
+ * The provided token does not have permission to create a branch of this dataset.
75
+ *
76
+ * Log Safety: UNSAFE
77
+ */
84
78
  export interface CreateBranchPermissionDenied {
85
79
  errorCode: "PERMISSION_DENIED";
86
80
  errorName: "CreateBranchPermissionDenied";
@@ -91,11 +85,10 @@ export interface CreateBranchPermissionDenied {
91
85
  };
92
86
  }
93
87
  /**
94
- * The provided token does not have permission to create a dataset in this folder.
95
-
96
- *
97
- * Log Safety: UNSAFE
98
- */
88
+ * The provided token does not have permission to create a dataset in this folder.
89
+ *
90
+ * Log Safety: UNSAFE
91
+ */
99
92
  export interface CreateDatasetPermissionDenied {
100
93
  errorCode: "PERMISSION_DENIED";
101
94
  errorName: "CreateDatasetPermissionDenied";
@@ -106,11 +99,10 @@ export interface CreateDatasetPermissionDenied {
106
99
  };
107
100
  }
108
101
  /**
109
- * The provided token does not have permission to create a transaction on this dataset.
110
-
111
- *
112
- * Log Safety: UNSAFE
113
- */
102
+ * The provided token does not have permission to create a transaction on this dataset.
103
+ *
104
+ * Log Safety: UNSAFE
105
+ */
114
106
  export interface CreateTransactionPermissionDenied {
115
107
  errorCode: "PERMISSION_DENIED";
116
108
  errorName: "CreateTransactionPermissionDenied";
@@ -121,11 +113,10 @@ export interface CreateTransactionPermissionDenied {
121
113
  };
122
114
  }
123
115
  /**
124
- * The requested dataset could not be found, or the client token does not have access to it.
125
-
126
- *
127
- * Log Safety: SAFE
128
- */
116
+ * The requested dataset could not be found, or the client token does not have access to it.
117
+ *
118
+ * Log Safety: SAFE
119
+ */
129
120
  export interface DatasetNotFound {
130
121
  errorCode: "NOT_FOUND";
131
122
  errorName: "DatasetNotFound";
@@ -135,11 +126,10 @@ export interface DatasetNotFound {
135
126
  };
136
127
  }
137
128
  /**
138
- * The dataset does not support being read.
139
-
140
- *
141
- * Log Safety: SAFE
142
- */
129
+ * The dataset does not support being read.
130
+ *
131
+ * Log Safety: SAFE
132
+ */
143
133
  export interface DatasetReadNotSupported {
144
134
  errorCode: "INVALID_ARGUMENT";
145
135
  errorName: "DatasetReadNotSupported";
@@ -149,11 +139,10 @@ export interface DatasetReadNotSupported {
149
139
  };
150
140
  }
151
141
  /**
152
- * The provided token does not have permission to delete the given branch from this dataset.
153
-
154
- *
155
- * Log Safety: UNSAFE
156
- */
142
+ * The provided token does not have permission to delete the given branch from this dataset.
143
+ *
144
+ * Log Safety: UNSAFE
145
+ */
157
146
  export interface DeleteBranchPermissionDenied {
158
147
  errorCode: "PERMISSION_DENIED";
159
148
  errorName: "DeleteBranchPermissionDenied";
@@ -193,11 +182,10 @@ export interface DeleteSchemaPermissionDenied {
193
182
  };
194
183
  }
195
184
  /**
196
- * The given file path already exists in the dataset and transaction.
197
-
198
- *
199
- * Log Safety: UNSAFE
200
- */
185
+ * The given file path already exists in the dataset and transaction.
186
+ *
187
+ * Log Safety: UNSAFE
188
+ */
201
189
  export interface FileAlreadyExists {
202
190
  errorCode: "NOT_FOUND";
203
191
  errorName: "FileAlreadyExists";
@@ -223,11 +211,10 @@ export interface FileNotFound {
223
211
  };
224
212
  }
225
213
  /**
226
- * The requested file could not be found on the given branch, or the client token does not have access to it.
227
-
228
- *
229
- * Log Safety: UNSAFE
230
- */
214
+ * The requested file could not be found on the given branch, or the client token does not have access to it.
215
+ *
216
+ * Log Safety: UNSAFE
217
+ */
231
218
  export interface FileNotFoundOnBranch {
232
219
  errorCode: "NOT_FOUND";
233
220
  errorName: "FileNotFoundOnBranch";
@@ -239,11 +226,10 @@ export interface FileNotFoundOnBranch {
239
226
  };
240
227
  }
241
228
  /**
242
- * The requested file could not be found on the given transaction range, or the client token does not have access to it.
243
-
244
- *
245
- * Log Safety: UNSAFE
246
- */
229
+ * The requested file could not be found on the given transaction range, or the client token does not have access to it.
230
+ *
231
+ * Log Safety: UNSAFE
232
+ */
247
233
  export interface FileNotFoundOnTransactionRange {
248
234
  errorCode: "NOT_FOUND";
249
235
  errorName: "FileNotFoundOnTransactionRange";
@@ -270,11 +256,10 @@ export interface GetFileContentPermissionDenied {
270
256
  };
271
257
  }
272
258
  /**
273
- * The requested branch name cannot be used. Branch names cannot be empty and must not look like RIDs or UUIDs.
274
-
275
- *
276
- * Log Safety: UNSAFE
277
- */
259
+ * The requested branch name cannot be used. Branch names cannot be empty and must not look like RIDs or UUIDs.
260
+ *
261
+ * Log Safety: UNSAFE
262
+ */
278
263
  export interface InvalidBranchName {
279
264
  errorCode: "INVALID_ARGUMENT";
280
265
  errorName: "InvalidBranchName";
@@ -284,11 +269,10 @@ export interface InvalidBranchName {
284
269
  };
285
270
  }
286
271
  /**
287
- * The given transaction type is not valid. Valid transaction types are `SNAPSHOT`, `UPDATE`, `APPEND`, and `DELETE`.
288
-
289
- *
290
- * Log Safety: SAFE
291
- */
272
+ * The given transaction type is not valid. Valid transaction types are SNAPSHOT, UPDATE, APPEND, and DELETE.
273
+ *
274
+ * Log Safety: SAFE
275
+ */
292
276
  export interface InvalidTransactionType {
293
277
  errorCode: "INVALID_ARGUMENT";
294
278
  errorName: "InvalidTransactionType";
@@ -300,11 +284,10 @@ export interface InvalidTransactionType {
300
284
  };
301
285
  }
302
286
  /**
303
- * A transaction is already open on this dataset and branch. A branch of a dataset can only have one open transaction at a time.
304
-
305
- *
306
- * Log Safety: UNSAFE
307
- */
287
+ * A transaction is already open on this dataset and branch. A branch of a dataset can only have one open transaction at a time.
288
+ *
289
+ * Log Safety: UNSAFE
290
+ */
308
291
  export interface OpenTransactionAlreadyExists {
309
292
  errorCode: "CONFLICT";
310
293
  errorName: "OpenTransactionAlreadyExists";
@@ -342,11 +325,10 @@ export interface ReadTableDatasetPermissionDenied {
342
325
  };
343
326
  }
344
327
  /**
345
- * The provided token does not have permission to read the given dataset as a table.
346
-
347
- *
348
- * Log Safety: SAFE
349
- */
328
+ * The provided token does not have permission to read the given dataset as a table.
329
+ *
330
+ * Log Safety: SAFE
331
+ */
350
332
  export interface ReadTablePermissionDenied {
351
333
  errorCode: "PERMISSION_DENIED";
352
334
  errorName: "ReadTablePermissionDenied";
@@ -356,11 +338,10 @@ export interface ReadTablePermissionDenied {
356
338
  };
357
339
  }
358
340
  /**
359
- * A schema could not be found for the given dataset and branch, or the client token does not have access to it.
360
-
361
- *
362
- * Log Safety: UNSAFE
363
- */
341
+ * A schema could not be found for the given dataset and branch, or the client token does not have access to it.
342
+ *
343
+ * Log Safety: UNSAFE
344
+ */
364
345
  export interface SchemaNotFound {
365
346
  errorCode: "NOT_FOUND";
366
347
  errorName: "SchemaNotFound";
@@ -372,11 +353,10 @@ export interface SchemaNotFound {
372
353
  };
373
354
  }
374
355
  /**
375
- * The given transaction has not been committed.
376
-
377
- *
378
- * Log Safety: SAFE
379
- */
356
+ * The given transaction has not been committed.
357
+ *
358
+ * Log Safety: SAFE
359
+ */
380
360
  export interface TransactionNotCommitted {
381
361
  errorCode: "INVALID_ARGUMENT";
382
362
  errorName: "TransactionNotCommitted";
@@ -388,11 +368,10 @@ export interface TransactionNotCommitted {
388
368
  };
389
369
  }
390
370
  /**
391
- * The requested transaction could not be found on the dataset, or the client token does not have access to it.
392
-
393
- *
394
- * Log Safety: SAFE
395
- */
371
+ * The requested transaction could not be found on the dataset, or the client token does not have access to it.
372
+ *
373
+ * Log Safety: SAFE
374
+ */
396
375
  export interface TransactionNotFound {
397
376
  errorCode: "NOT_FOUND";
398
377
  errorName: "TransactionNotFound";
@@ -403,11 +382,10 @@ export interface TransactionNotFound {
403
382
  };
404
383
  }
405
384
  /**
406
- * The given transaction is not open.
407
-
408
- *
409
- * Log Safety: SAFE
410
- */
385
+ * The given transaction is not open.
386
+ *
387
+ * Log Safety: SAFE
388
+ */
411
389
  export interface TransactionNotOpen {
412
390
  errorCode: "INVALID_ARGUMENT";
413
391
  errorName: "TransactionNotOpen";
@@ -419,11 +397,10 @@ export interface TransactionNotOpen {
419
397
  };
420
398
  }
421
399
  /**
422
- * The provided token does not have permission to upload the given file to the given dataset and transaction.
423
-
424
- *
425
- * Log Safety: UNSAFE
426
- */
400
+ * The provided token does not have permission to upload the given file to the given dataset and transaction.
401
+ *
402
+ * Log Safety: UNSAFE
403
+ */
427
404
  export interface UploadFilePermissionDenied {
428
405
  errorCode: "PERMISSION_DENIED";
429
406
  errorName: "UploadFilePermissionDenied";
@@ -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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/foundry.datasets",
3
- "version": "2.8.0",
3
+ "version": "2.9.0",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -21,8 +21,8 @@
21
21
  "dependencies": {
22
22
  "@osdk/shared.client": "^1.0.1",
23
23
  "@osdk/shared.client2": "^1.0.0",
24
- "@osdk/foundry.core": "2.8.0",
25
- "@osdk/foundry.filesystem": "2.8.0",
24
+ "@osdk/foundry.filesystem": "2.9.0",
25
+ "@osdk/foundry.core": "2.9.0",
26
26
  "@osdk/shared.net.platformapi": "~1.2.0"
27
27
  },
28
28
  "devDependencies": {
@@ -46,7 +46,7 @@
46
46
  "sls": {
47
47
  "dependencies": {
48
48
  "com.palantir.foundry.api:api-gateway": {
49
- "minVersion": "1.1014.0",
49
+ "minVersion": "1.1040.0",
50
50
  "maxVersion": "1.x.x",
51
51
  "optional": false
52
52
  }