@osdk/foundry.models 2.48.0 → 2.49.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.
Files changed (66) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/build/browser/_components.d.ts +586 -0
  3. package/build/browser/_components.d.ts.map +1 -1
  4. package/build/browser/_errors.d.ts +215 -0
  5. package/build/browser/_errors.d.ts.map +1 -1
  6. package/build/browser/index.d.ts +6 -2
  7. package/build/browser/index.d.ts.map +1 -1
  8. package/build/browser/index.js +4 -0
  9. package/build/browser/index.js.map +1 -1
  10. package/build/browser/public/Experiment.d.ts +37 -0
  11. package/build/browser/public/Experiment.d.ts.map +1 -0
  12. package/build/browser/public/Experiment.js +44 -0
  13. package/build/browser/public/Experiment.js.map +1 -0
  14. package/build/browser/public/ExperimentArtifactTable.d.ts +41 -0
  15. package/build/browser/public/ExperimentArtifactTable.d.ts.map +1 -0
  16. package/build/browser/public/ExperimentArtifactTable.js +44 -0
  17. package/build/browser/public/ExperimentArtifactTable.js.map +1 -0
  18. package/build/browser/public/ExperimentSeries.d.ts +40 -0
  19. package/build/browser/public/ExperimentSeries.d.ts.map +1 -0
  20. package/build/browser/public/ExperimentSeries.js +43 -0
  21. package/build/browser/public/ExperimentSeries.js.map +1 -0
  22. package/build/browser/public/LiveDeployment.d.ts +20 -0
  23. package/build/browser/public/LiveDeployment.d.ts.map +1 -0
  24. package/build/browser/public/LiveDeployment.js +30 -0
  25. package/build/browser/public/LiveDeployment.js.map +1 -0
  26. package/build/browser/public/Model.d.ts +2 -2
  27. package/build/browser/public/Model.js +2 -2
  28. package/build/browser/public/Model.js.map +1 -1
  29. package/build/browser/public/ModelStudioTrainer.d.ts +3 -7
  30. package/build/browser/public/ModelStudioTrainer.d.ts.map +1 -1
  31. package/build/browser/public/ModelVersion.d.ts +2 -2
  32. package/build/browser/public/ModelVersion.js +2 -2
  33. package/build/browser/public/ModelVersion.js.map +1 -1
  34. package/build/esm/_components.d.ts +586 -0
  35. package/build/esm/_components.d.ts.map +1 -1
  36. package/build/esm/_errors.d.ts +215 -0
  37. package/build/esm/_errors.d.ts.map +1 -1
  38. package/build/esm/index.d.ts +6 -2
  39. package/build/esm/index.d.ts.map +1 -1
  40. package/build/esm/index.js +4 -0
  41. package/build/esm/index.js.map +1 -1
  42. package/build/esm/public/Experiment.d.ts +37 -0
  43. package/build/esm/public/Experiment.d.ts.map +1 -0
  44. package/build/esm/public/Experiment.js +44 -0
  45. package/build/esm/public/Experiment.js.map +1 -0
  46. package/build/esm/public/ExperimentArtifactTable.d.ts +41 -0
  47. package/build/esm/public/ExperimentArtifactTable.d.ts.map +1 -0
  48. package/build/esm/public/ExperimentArtifactTable.js +44 -0
  49. package/build/esm/public/ExperimentArtifactTable.js.map +1 -0
  50. package/build/esm/public/ExperimentSeries.d.ts +40 -0
  51. package/build/esm/public/ExperimentSeries.d.ts.map +1 -0
  52. package/build/esm/public/ExperimentSeries.js +43 -0
  53. package/build/esm/public/ExperimentSeries.js.map +1 -0
  54. package/build/esm/public/LiveDeployment.d.ts +20 -0
  55. package/build/esm/public/LiveDeployment.d.ts.map +1 -0
  56. package/build/esm/public/LiveDeployment.js +30 -0
  57. package/build/esm/public/LiveDeployment.js.map +1 -0
  58. package/build/esm/public/Model.d.ts +2 -2
  59. package/build/esm/public/Model.js +2 -2
  60. package/build/esm/public/Model.js.map +1 -1
  61. package/build/esm/public/ModelStudioTrainer.d.ts +3 -7
  62. package/build/esm/public/ModelStudioTrainer.d.ts.map +1 -1
  63. package/build/esm/public/ModelVersion.d.ts +2 -2
  64. package/build/esm/public/ModelVersion.js +2 -2
  65. package/build/esm/public/ModelVersion.js.map +1 -1
  66. package/package.json +4 -4
@@ -83,6 +83,100 @@ export interface CreateModelVersionPermissionDenied {
83
83
  modelRid: unknown;
84
84
  };
85
85
  }
86
+ /**
87
+ * The requested artifact was not found in the experiment.
88
+ *
89
+ * Log Safety: UNSAFE
90
+ */
91
+ export interface ExperimentArtifactNotFound {
92
+ errorCode: "NOT_FOUND";
93
+ errorName: "ExperimentArtifactNotFound";
94
+ errorDescription: "The requested artifact was not found in the experiment.";
95
+ errorInstanceId: string;
96
+ parameters: {
97
+ modelRid: unknown;
98
+ experimentRid: unknown;
99
+ artifactName: unknown;
100
+ };
101
+ }
102
+ /**
103
+ * The given Experiment could not be found.
104
+ *
105
+ * Log Safety: SAFE
106
+ */
107
+ export interface ExperimentNotFound {
108
+ errorCode: "NOT_FOUND";
109
+ errorName: "ExperimentNotFound";
110
+ errorDescription: "The given Experiment could not be found.";
111
+ errorInstanceId: string;
112
+ parameters: {
113
+ experimentRid: unknown;
114
+ modelRid: unknown;
115
+ };
116
+ }
117
+ /**
118
+ * The requested series was not found in the experiment.
119
+ *
120
+ * Log Safety: UNSAFE
121
+ */
122
+ export interface ExperimentSeriesNotFound {
123
+ errorCode: "NOT_FOUND";
124
+ errorName: "ExperimentSeriesNotFound";
125
+ errorDescription: "The requested series was not found in the experiment.";
126
+ errorInstanceId: string;
127
+ parameters: {
128
+ modelRid: unknown;
129
+ experimentRid: unknown;
130
+ seriesName: unknown;
131
+ };
132
+ }
133
+ /**
134
+ * The inference request failed due to a model execution error or unexpected internal issue.
135
+ This typically indicates a problem with the model itself rather than the input data.
136
+ *
137
+ * Log Safety: UNSAFE
138
+ */
139
+ export interface InferenceFailure {
140
+ errorCode: "INVALID_ARGUMENT";
141
+ errorName: "InferenceFailure";
142
+ errorDescription: "The inference request failed due to a model execution error or unexpected internal issue. This typically indicates a problem with the model itself rather than the input data.";
143
+ errorInstanceId: string;
144
+ parameters: {
145
+ liveDeploymentRid: unknown;
146
+ errorMessage: unknown;
147
+ };
148
+ }
149
+ /**
150
+ * The inference request contains invalid input data that does not match the model's API specification.
151
+ Check the error type for specific validation failure details.
152
+ *
153
+ * Log Safety: UNSAFE
154
+ */
155
+ export interface InferenceInvalidInput {
156
+ errorCode: "INVALID_ARGUMENT";
157
+ errorName: "InferenceInvalidInput";
158
+ errorDescription: "The inference request contains invalid input data that does not match the model's API specification. Check the error type for specific validation failure details.";
159
+ errorInstanceId: string;
160
+ parameters: {
161
+ liveDeploymentRid: unknown;
162
+ errorType: unknown;
163
+ };
164
+ }
165
+ /**
166
+ * The live deployment took longer than 5 minutes to respond to the inference request.
167
+ This typically indicates the model execution is taking too long or the deployment is under heavy load.
168
+ *
169
+ * Log Safety: SAFE
170
+ */
171
+ export interface InferenceTimeout {
172
+ errorCode: "TIMEOUT";
173
+ errorName: "InferenceTimeout";
174
+ errorDescription: "The live deployment took longer than 5 minutes to respond to the inference request. This typically indicates the model execution is taking too long or the deployment is under heavy load.";
175
+ errorInstanceId: string;
176
+ parameters: {
177
+ liveDeploymentRid: unknown;
178
+ };
179
+ }
86
180
  /**
87
181
  * The model api failed validations
88
182
  *
@@ -110,6 +204,38 @@ export interface InvalidModelStudioCreateRequest {
110
204
  errorInstanceId: string;
111
205
  parameters: {};
112
206
  }
207
+ /**
208
+ * Could not json the ExperimentArtifactTable.
209
+ *
210
+ * Log Safety: UNSAFE
211
+ */
212
+ export interface JsonExperimentArtifactTablePermissionDenied {
213
+ errorCode: "PERMISSION_DENIED";
214
+ errorName: "JsonExperimentArtifactTablePermissionDenied";
215
+ errorDescription: "Could not json the ExperimentArtifactTable.";
216
+ errorInstanceId: string;
217
+ parameters: {
218
+ experimentRid: unknown;
219
+ experimentArtifactTableName: unknown;
220
+ modelRid: unknown;
221
+ };
222
+ }
223
+ /**
224
+ * Could not json the ExperimentSeries.
225
+ *
226
+ * Log Safety: UNSAFE
227
+ */
228
+ export interface JsonExperimentSeriesPermissionDenied {
229
+ errorCode: "PERMISSION_DENIED";
230
+ errorName: "JsonExperimentSeriesPermissionDenied";
231
+ errorDescription: "Could not json the ExperimentSeries.";
232
+ errorInstanceId: string;
233
+ parameters: {
234
+ experimentSeriesName: unknown;
235
+ experimentRid: unknown;
236
+ modelRid: unknown;
237
+ };
238
+ }
113
239
  /**
114
240
  * Could not latest the ModelStudioConfigVersion.
115
241
  *
@@ -138,6 +264,35 @@ export interface LaunchModelStudioPermissionDenied {
138
264
  studioRid: unknown;
139
265
  };
140
266
  }
267
+ /**
268
+ * The specified live deployment was not found.
269
+ *
270
+ * Log Safety: SAFE
271
+ */
272
+ export interface LiveDeploymentNotFound {
273
+ errorCode: "NOT_FOUND";
274
+ errorName: "LiveDeploymentNotFound";
275
+ errorDescription: "The specified live deployment was not found.";
276
+ errorInstanceId: string;
277
+ parameters: {
278
+ liveDeploymentRid: unknown;
279
+ };
280
+ }
281
+ /**
282
+ * The requested experiment was not found or the user lacks permission to access it.
283
+ *
284
+ * Log Safety: SAFE
285
+ */
286
+ export interface ModelExperimentNotFound {
287
+ errorCode: "NOT_FOUND";
288
+ errorName: "ModelExperimentNotFound";
289
+ errorDescription: "The requested experiment was not found or the user lacks permission to access it.";
290
+ errorInstanceId: string;
291
+ parameters: {
292
+ modelRid: unknown;
293
+ experimentRid: unknown;
294
+ };
295
+ }
141
296
  /**
142
297
  * The given Model could not be found.
143
298
  *
@@ -210,6 +365,52 @@ export interface ModelVersionNotFound {
210
365
  modelVersionRid: unknown;
211
366
  };
212
367
  }
368
+ /**
369
+ * Could not parquet the ExperimentArtifactTable.
370
+ *
371
+ * Log Safety: UNSAFE
372
+ */
373
+ export interface ParquetExperimentArtifactTablePermissionDenied {
374
+ errorCode: "PERMISSION_DENIED";
375
+ errorName: "ParquetExperimentArtifactTablePermissionDenied";
376
+ errorDescription: "Could not parquet the ExperimentArtifactTable.";
377
+ errorInstanceId: string;
378
+ parameters: {
379
+ experimentRid: unknown;
380
+ experimentArtifactTableName: unknown;
381
+ modelRid: unknown;
382
+ };
383
+ }
384
+ /**
385
+ * Could not parquet the ExperimentSeries.
386
+ *
387
+ * Log Safety: UNSAFE
388
+ */
389
+ export interface ParquetExperimentSeriesPermissionDenied {
390
+ errorCode: "PERMISSION_DENIED";
391
+ errorName: "ParquetExperimentSeriesPermissionDenied";
392
+ errorDescription: "Could not parquet the ExperimentSeries.";
393
+ errorInstanceId: string;
394
+ parameters: {
395
+ experimentSeriesName: unknown;
396
+ experimentRid: unknown;
397
+ modelRid: unknown;
398
+ };
399
+ }
400
+ /**
401
+ * Could not search the Experiment.
402
+ *
403
+ * Log Safety: SAFE
404
+ */
405
+ export interface SearchExperimentsPermissionDenied {
406
+ errorCode: "PERMISSION_DENIED";
407
+ errorName: "SearchExperimentsPermissionDenied";
408
+ errorDescription: "Could not search the Experiment.";
409
+ errorInstanceId: string;
410
+ parameters: {
411
+ modelRid: unknown;
412
+ };
413
+ }
213
414
  /**
214
415
  * The specified trainer does not exist.
215
416
  *
@@ -224,4 +425,18 @@ export interface TrainerNotFound {
224
425
  trainerId: unknown;
225
426
  };
226
427
  }
428
+ /**
429
+ * Could not transformJson the LiveDeployment.
430
+ *
431
+ * Log Safety: SAFE
432
+ */
433
+ export interface TransformJsonLiveDeploymentPermissionDenied {
434
+ errorCode: "PERMISSION_DENIED";
435
+ errorName: "TransformJsonLiveDeploymentPermissionDenied";
436
+ errorDescription: "Could not transformJson the LiveDeployment.";
437
+ errorInstanceId: string;
438
+ parameters: {
439
+ liveDeploymentRid: unknown;
440
+ };
441
+ }
227
442
  //# sourceMappingURL=_errors.d.ts.map
@@ -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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"}
@@ -1,5 +1,9 @@
1
- export type { BooleanType, ColumnName, ColumnTypeSpecId, CreateModelRequest, CreateModelStudioConfigVersionRequest, CreateModelStudioRequest, CreateModelVersionRequest, DatasetInput, DateType, DillModelFiles, DoubleType, FloatType, InputAlias, IntegerType, ListModelStudioConfigVersionsResponse, ListModelStudioRunsResponse, ListModelStudioTrainersResponse, ListModelVersionsResponse, LongType, Model, ModelApi, ModelApiAnyType, ModelApiArrayType, ModelApiColumn, ModelApiDataType, ModelApiInput, ModelApiMapType, ModelApiOutput, ModelApiParameterType, ModelApiTabularFormat, ModelApiTabularType, ModelFiles, ModelName, ModelOutput, ModelRid, ModelStudio, ModelStudioConfigRid, ModelStudioConfigVersion, ModelStudioConfigVersionName, ModelStudioConfigVersionNumber, ModelStudioInput, ModelStudioOutput, ModelStudioRid, ModelStudioRun, ModelStudioRunBuildRid, ModelStudioRunJobRid, ModelStudioRunModelOutput, ModelStudioRunOutput, ModelStudioTrainer, ModelStudioTrainerExperimental, ModelStudioWorkerConfig, ModelVersion, ModelVersionRid, OutputAlias, ResourceConfiguration, RunId, StringType, TimestampType, TrainerDescription, TrainerId, TrainerInputsSpecification, TrainerName, TrainerOutputsSpecification, TrainerSchemaDefinition, TrainerType, TrainerVersion, TrainerVersionLocator, UnsupportedType, UnsupportedTypeParamValue, } from "./_components.js";
2
- export type { CondaSolveFailureForProvidedPackages, CreateConfigValidationError, CreateModelPermissionDenied, CreateModelStudioConfigVersionPermissionDenied, CreateModelStudioPermissionDenied, CreateModelVersionPermissionDenied, InvalidModelApi, InvalidModelStudioCreateRequest, LatestModelStudioConfigVersionsPermissionDenied, LaunchModelStudioPermissionDenied, ModelNotFound, ModelStudioConfigVersionNotFound, ModelStudioNotFound, ModelStudioTrainerNotFound, ModelVersionNotFound, TrainerNotFound, } from "./_errors.js";
1
+ export type { BooleanParameter, BooleanType, ColumnName, ColumnTypeSpecId, CreateModelRequest, CreateModelStudioConfigVersionRequest, CreateModelStudioRequest, CreateModelVersionRequest, DatasetInput, DatetimeParameter, DateType, DillModelFiles, DoubleParameter, DoubleSeriesAggregations, DoubleSeriesV1, DoubleSeriesValueV1, DoubleType, EpochMillis, Experiment, ExperimentArtifactDetails, ExperimentArtifactMetadata, ExperimentArtifactName, ExperimentArtifactTable, ExperimentAuthoringSource, ExperimentBranch, ExperimentCodeWorkspaceSource, ExperimentName, ExperimentRid, ExperimentSdkSource, ExperimentSeries, ExperimentSource, ExperimentStatus, ExperimentTagText, FloatType, InconsistentArrayDimensionsError, InferenceInputErrorType, InputAlias, IntegerParameter, IntegerType, InvalidArrayShapeError, InvalidMapFormatError, InvalidTabularFormatError, ListModelStudioConfigVersionsResponse, ListModelStudioRunsResponse, ListModelStudioTrainersResponse, ListModelVersionsResponse, LiveDeployment, LiveDeploymentRid, LongType, Model, ModelApi, ModelApiAnyType, ModelApiArrayType, ModelApiColumn, ModelApiDataType, ModelApiInput, ModelApiMapType, ModelApiOutput, ModelApiParameterType, ModelApiTabularFormat, ModelApiTabularType, ModelFiles, ModelName, ModelOutput, ModelRid, ModelStudio, ModelStudioConfigRid, ModelStudioConfigVersion, ModelStudioConfigVersionName, ModelStudioConfigVersionNumber, ModelStudioInput, ModelStudioOutput, ModelStudioRid, ModelStudioRun, ModelStudioRunBuildRid, ModelStudioRunJobRid, ModelStudioRunModelOutput, ModelStudioRunOutput, ModelStudioTrainer, ModelStudioTrainerExperimental, ModelStudioWorkerConfig, ModelVersion, ModelVersionRid, OutputAlias, Parameter, ParameterName, ParameterValue, RequiredValueMissingError, ResourceConfiguration, RunId, SearchExperimentsAndFilter, SearchExperimentsContainsFilter, SearchExperimentsContainsFilterField, SearchExperimentsEqualsFilter, SearchExperimentsEqualsFilterField, SearchExperimentsFilter, SearchExperimentsFilterOperator, SearchExperimentsNotFilter, SearchExperimentsOrderBy, SearchExperimentsOrderByField, SearchExperimentsOrFilter, SearchExperimentsParameterFilter, SearchExperimentsRequest, SearchExperimentsResponse, SearchExperimentsSeriesFilter, SearchExperimentsSeriesFilterField, SearchExperimentsStartsWithFilter, SearchExperimentsStartsWithFilterField, SearchExperimentsSummaryMetricFilter, Series, SeriesAggregations, SeriesAggregationsValue, SeriesName, StringParameter, StringType, SummaryMetric, SummaryMetricAggregation, TableArtifactDetails, TimestampType, TrainerDescription, TrainerId, TrainerInputsSpecification, TrainerName, TrainerOutputsSpecification, TrainerSchemaDefinition, TrainerType, TrainerVersion, TrainerVersionLocator, TransformJsonLiveDeploymentRequest, TransformLiveDeploymentResponse, TypeMismatchError, UnknownInputNameError, UnsupportedType, UnsupportedTypeError, UnsupportedTypeParamValue, } from "./_components.js";
2
+ export type { CondaSolveFailureForProvidedPackages, CreateConfigValidationError, CreateModelPermissionDenied, CreateModelStudioConfigVersionPermissionDenied, CreateModelStudioPermissionDenied, CreateModelVersionPermissionDenied, ExperimentArtifactNotFound, ExperimentNotFound, ExperimentSeriesNotFound, InferenceFailure, InferenceInvalidInput, InferenceTimeout, InvalidModelApi, InvalidModelStudioCreateRequest, JsonExperimentArtifactTablePermissionDenied, JsonExperimentSeriesPermissionDenied, LatestModelStudioConfigVersionsPermissionDenied, LaunchModelStudioPermissionDenied, LiveDeploymentNotFound, ModelExperimentNotFound, ModelNotFound, ModelStudioConfigVersionNotFound, ModelStudioNotFound, ModelStudioTrainerNotFound, ModelVersionNotFound, ParquetExperimentArtifactTablePermissionDenied, ParquetExperimentSeriesPermissionDenied, SearchExperimentsPermissionDenied, TrainerNotFound, TransformJsonLiveDeploymentPermissionDenied, } from "./_errors.js";
3
+ export * as Experiments from "./public/Experiment.js";
4
+ export * as ArtifactTables from "./public/ExperimentArtifactTable.js";
5
+ export * as ExperimentSeriesList from "./public/ExperimentSeries.js";
6
+ export * as LiveDeployments from "./public/LiveDeployment.js";
3
7
  export * as Models from "./public/Model.js";
4
8
  export * as ModelStudios from "./public/ModelStudio.js";
5
9
  export * as ModelStudioConfigVersions from "./public/ModelStudioConfigVersion.js";
@@ -1 +1 @@
1
- {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"AAgBA,YAAY,EACV,WAAW,EACX,UAAU,EACV,gBAAgB,EAChB,kBAAkB,EAClB,qCAAqC,EACrC,wBAAwB,EACxB,yBAAyB,EACzB,YAAY,EACZ,QAAQ,EACR,cAAc,EACd,UAAU,EACV,SAAS,EACT,UAAU,EACV,WAAW,EACX,qCAAqC,EACrC,2BAA2B,EAC3B,+BAA+B,EAC/B,yBAAyB,EACzB,QAAQ,EACR,KAAK,EACL,QAAQ,EACR,eAAe,EACf,iBAAiB,EACjB,cAAc,EACd,gBAAgB,EAChB,aAAa,EACb,eAAe,EACf,cAAc,EACd,qBAAqB,EACrB,qBAAqB,EACrB,mBAAmB,EACnB,UAAU,EACV,SAAS,EACT,WAAW,EACX,QAAQ,EACR,WAAW,EACX,oBAAoB,EACpB,wBAAwB,EACxB,4BAA4B,EAC5B,8BAA8B,EAC9B,gBAAgB,EAChB,iBAAiB,EACjB,cAAc,EACd,cAAc,EACd,sBAAsB,EACtB,oBAAoB,EACpB,yBAAyB,EACzB,oBAAoB,EACpB,kBAAkB,EAClB,8BAA8B,EAC9B,uBAAuB,EACvB,YAAY,EACZ,eAAe,EACf,WAAW,EACX,qBAAqB,EACrB,KAAK,EACL,UAAU,EACV,aAAa,EACb,kBAAkB,EAClB,SAAS,EACT,0BAA0B,EAC1B,WAAW,EACX,2BAA2B,EAC3B,uBAAuB,EACvB,WAAW,EACX,cAAc,EACd,qBAAqB,EACrB,eAAe,EACf,yBAAyB,GAC1B,MAAM,kBAAkB,CAAC;AAC1B,YAAY,EACV,oCAAoC,EACpC,2BAA2B,EAC3B,2BAA2B,EAC3B,8CAA8C,EAC9C,iCAAiC,EACjC,kCAAkC,EAClC,eAAe,EACf,+BAA+B,EAC/B,+CAA+C,EAC/C,iCAAiC,EACjC,aAAa,EACb,gCAAgC,EAChC,mBAAmB,EACnB,0BAA0B,EAC1B,oBAAoB,EACpB,eAAe,GAChB,MAAM,cAAc,CAAC;AACtB,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,KAAK,YAAY,MAAM,yBAAyB,CAAC;AACxD,OAAO,KAAK,yBAAyB,MAAM,sCAAsC,CAAC;AAClF,OAAO,KAAK,eAAe,MAAM,4BAA4B,CAAC;AAC9D,OAAO,KAAK,mBAAmB,MAAM,gCAAgC,CAAC;AACtE,OAAO,KAAK,aAAa,MAAM,0BAA0B,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/index.ts"],"names":[],"mappings":"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"}
@@ -13,6 +13,10 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
+ export * as Experiments from "./public/Experiment.js";
17
+ export * as ArtifactTables from "./public/ExperimentArtifactTable.js";
18
+ export * as ExperimentSeriesList from "./public/ExperimentSeries.js";
19
+ export * as LiveDeployments from "./public/LiveDeployment.js";
16
20
  export * as Models from "./public/Model.js";
17
21
  export * as ModelStudios from "./public/ModelStudio.js";
18
22
  export * as ModelStudioConfigVersions from "./public/ModelStudioConfigVersion.js";
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","names":["Models","ModelStudios","ModelStudioConfigVersions","ModelStudioRuns","ModelStudioTrainers","ModelVersions"],"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 Models from \"./public/Model.js\";\nexport * as ModelStudios from \"./public/ModelStudio.js\";\nexport * as ModelStudioConfigVersions from \"./public/ModelStudioConfigVersion.js\";\nexport * as ModelStudioRuns from \"./public/ModelStudioRun.js\";\nexport * as ModelStudioTrainers from \"./public/ModelStudioTrainer.js\";\nexport * as ModelVersions from \"./public/ModelVersion.js\";\n"],"mappings":"AAAA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,KAAKA,MAAM,MAAM,mBAAmB;AAC3C,OAAO,KAAKC,YAAY,MAAM,yBAAyB;AACvD,OAAO,KAAKC,yBAAyB,MAAM,sCAAsC;AACjF,OAAO,KAAKC,eAAe,MAAM,4BAA4B;AAC7D,OAAO,KAAKC,mBAAmB,MAAM,gCAAgC;AACrE,OAAO,KAAKC,aAAa,MAAM,0BAA0B","ignoreList":[]}
1
+ {"version":3,"file":"index.js","names":["Experiments","ArtifactTables","ExperimentSeriesList","LiveDeployments","Models","ModelStudios","ModelStudioConfigVersions","ModelStudioRuns","ModelStudioTrainers","ModelVersions"],"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 Experiments from \"./public/Experiment.js\";\nexport * as ArtifactTables from \"./public/ExperimentArtifactTable.js\";\nexport * as ExperimentSeriesList from \"./public/ExperimentSeries.js\";\nexport * as LiveDeployments from \"./public/LiveDeployment.js\";\nexport * as Models from \"./public/Model.js\";\nexport * as ModelStudios from \"./public/ModelStudio.js\";\nexport * as ModelStudioConfigVersions from \"./public/ModelStudioConfigVersion.js\";\nexport * as ModelStudioRuns from \"./public/ModelStudioRun.js\";\nexport * as ModelStudioTrainers from \"./public/ModelStudioTrainer.js\";\nexport * as ModelVersions from \"./public/ModelVersion.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,cAAc,MAAM,qCAAqC;AACrE,OAAO,KAAKC,oBAAoB,MAAM,8BAA8B;AACpE,OAAO,KAAKC,eAAe,MAAM,4BAA4B;AAC7D,OAAO,KAAKC,MAAM,MAAM,mBAAmB;AAC3C,OAAO,KAAKC,YAAY,MAAM,yBAAyB;AACvD,OAAO,KAAKC,yBAAyB,MAAM,sCAAsC;AACjF,OAAO,KAAKC,eAAe,MAAM,4BAA4B;AAC7D,OAAO,KAAKC,mBAAmB,MAAM,gCAAgC;AACrE,OAAO,KAAKC,aAAa,MAAM,0BAA0B","ignoreList":[]}
@@ -0,0 +1,37 @@
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 _Models from "../_components.js";
5
+ /**
6
+ * Retrieve a single experiment with all metadata, parameters, series metadata, and summary metrics.
7
+ *
8
+ * @alpha
9
+ *
10
+ * Required Scopes: [api:models-read]
11
+ * URL: /v2/models/{modelRid}/experiments/{experimentRid}
12
+ */
13
+ export declare function get($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
14
+ modelRid: _Models.ModelRid,
15
+ experimentRid: _Models.ExperimentRid,
16
+ $queryParams?: {
17
+ preview?: _Core.PreviewMode | undefined;
18
+ }
19
+ ]): Promise<_Models.Experiment>;
20
+ /**
21
+ * Search experiments using complex nested queries on experiment metadata, parameters, series,
22
+ * and summary metrics. Supports AND/OR/NOT combinations and various predicates.
23
+ * Returns a maximum of 100 results per page.
24
+ *
25
+ * @alpha
26
+ *
27
+ * Required Scopes: [api:models-read]
28
+ * URL: /v2/models/{modelRid}/experiments/search
29
+ */
30
+ export declare function search($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
31
+ modelRid: _Models.ModelRid,
32
+ $body: _Models.SearchExperimentsRequest,
33
+ $queryParams?: {
34
+ preview?: _Core.PreviewMode | undefined;
35
+ }
36
+ ]): Promise<_Models.SearchExperimentsResponse>;
37
+ //# sourceMappingURL=Experiment.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Experiment.d.ts","sourceRoot":"","sources":["../../../src/public/Experiment.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,OAAO,MAAM,mBAAmB,CAAC;AAYlD;;;;;;;GAOG;AACH,wBAAgB,GAAG,CACjB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,OAAO,CAAC,QAAQ;IAC1B,aAAa,EAAE,OAAO,CAAC,aAAa;IAEpC,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,OAAO,CAAC,UAAU,CAAC,CAE7B;AAUD;;;;;;;;;GASG;AACH,wBAAgB,MAAM,CACpB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,OAAO,CAAC,QAAQ;IAC1B,KAAK,EAAE,OAAO,CAAC,wBAAwB;IACvC,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,OAAO,CAAC,yBAAyB,CAAC,CAE5C"}
@@ -0,0 +1,44 @@
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/models/{0}/experiments/{1}", 2];
19
+ /**
20
+ * Retrieve a single experiment with all metadata, parameters, series metadata, and summary metrics.
21
+ *
22
+ * @alpha
23
+ *
24
+ * Required Scopes: [api:models-read]
25
+ * URL: /v2/models/{modelRid}/experiments/{experimentRid}
26
+ */
27
+ export function get($ctx, ...args) {
28
+ return $foundryPlatformFetch($ctx, _get, ...args);
29
+ }
30
+ const _search = [1, "/v2/models/{0}/experiments/search", 3];
31
+ /**
32
+ * Search experiments using complex nested queries on experiment metadata, parameters, series,
33
+ * and summary metrics. Supports AND/OR/NOT combinations and various predicates.
34
+ * Returns a maximum of 100 results per page.
35
+ *
36
+ * @alpha
37
+ *
38
+ * Required Scopes: [api:models-read]
39
+ * URL: /v2/models/{modelRid}/experiments/search
40
+ */
41
+ export function search($ctx, ...args) {
42
+ return $foundryPlatformFetch($ctx, _search, ...args);
43
+ }
44
+ //# sourceMappingURL=Experiment.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"Experiment.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_get","get","$ctx","args","_search","search"],"sources":["Experiment.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/models/{0}/experiments/{1}\", 2];\n/**\n * Retrieve a single experiment with all metadata, parameters, series metadata, and summary metrics.\n *\n * @alpha\n *\n * Required Scopes: [api:models-read]\n * URL: /v2/models/{modelRid}/experiments/{experimentRid}\n */\nexport function get($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _get, ...args);\n}\nconst _search = [1, \"/v2/models/{0}/experiments/search\", 3];\n/**\n * Search experiments using complex nested queries on experiment metadata, parameters, series,\n * and summary metrics. Supports AND/OR/NOT combinations and various predicates.\n * Returns a maximum of 100 results per page.\n *\n * @alpha\n *\n * Required Scopes: [api:models-read]\n * URL: /v2/models/{modelRid}/experiments/search\n */\nexport function search($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _search, ...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,gCAAgC,EAAE,CAAC,CAAC;AACrD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,GAAGA,CAACC,IAAI,EAAE,GAAGC,IAAI,EAAE;EAC/B,OAAOJ,qBAAqB,CAACG,IAAI,EAAEF,IAAI,EAAE,GAAGG,IAAI,CAAC;AACrD;AACA,MAAMC,OAAO,GAAG,CAAC,CAAC,EAAE,mCAAmC,EAAE,CAAC,CAAC;AAC3D;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,MAAMA,CAACH,IAAI,EAAE,GAAGC,IAAI,EAAE;EAClC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEE,OAAO,EAAE,GAAGD,IAAI,CAAC;AACxD","ignoreList":[]}
@@ -0,0 +1,41 @@
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 _Models from "../_components.js";
5
+ /**
6
+ * Read table data from an experiment artifact as a streamed binary response containing JSON.
7
+ * The response body is a JSON array of row objects, where each object maps column names to values.
8
+ * Results are paginated by row count with a default page size of 10 and a maximum of 100.
9
+ *
10
+ * @alpha
11
+ *
12
+ * Required Scopes: [api:models-read]
13
+ * URL: /v2/models/{modelRid}/experiments/{experimentRid}/artifactTables/{experimentArtifactTableName}/json
14
+ */
15
+ export declare function json($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
16
+ modelRid: _Models.ModelRid,
17
+ experimentRid: _Models.ExperimentRid,
18
+ experimentArtifactTableName: _Models.ExperimentArtifactName,
19
+ $queryParams?: {
20
+ pageSize?: _Core.PageSize | undefined;
21
+ offset?: number | undefined;
22
+ preview?: _Core.PreviewMode | undefined;
23
+ }
24
+ ]): Promise<Response>;
25
+ /**
26
+ * Read raw table data from experiment artifacts in Parquet format.
27
+ *
28
+ * @alpha
29
+ *
30
+ * Required Scopes: [api:models-read]
31
+ * URL: /v2/models/{modelRid}/experiments/{experimentRid}/artifactTables/{experimentArtifactTableName}/parquet
32
+ */
33
+ export declare function parquet($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
34
+ modelRid: _Models.ModelRid,
35
+ experimentRid: _Models.ExperimentRid,
36
+ experimentArtifactTableName: _Models.ExperimentArtifactName,
37
+ $queryParams?: {
38
+ preview?: _Core.PreviewMode | undefined;
39
+ }
40
+ ]): Promise<Response>;
41
+ //# sourceMappingURL=ExperimentArtifactTable.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ExperimentArtifactTable.d.ts","sourceRoot":"","sources":["../../../src/public/ExperimentArtifactTable.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,OAAO,MAAM,mBAAmB,CAAC;AAuBlD;;;;;;;;;GASG;AACH,wBAAgB,IAAI,CAClB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,OAAO,CAAC,QAAQ;IAC1B,aAAa,EAAE,OAAO,CAAC,aAAa;IACpC,2BAA2B,EAAE,OAAO,CAAC,sBAAsB;IAE3D,YAAY,CAAC,EAAE;QACb,QAAQ,CAAC,EAAE,KAAK,CAAC,QAAQ,GAAG,SAAS,CAAC;QACtC,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;QAC5B,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAC;KACzC;CACF,GACA,OAAO,CAAC,QAAQ,CAAC,CAEnB;AAiBD;;;;;;;GAOG;AACH,wBAAgB,OAAO,CACrB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,OAAO,CAAC,QAAQ;IAC1B,aAAa,EAAE,OAAO,CAAC,aAAa;IACpC,2BAA2B,EAAE,OAAO,CAAC,sBAAsB;IAE3D,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,QAAQ,CAAC,CAEnB"}
@@ -0,0 +1,44 @@
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 _json = [0, "/v2/models/{0}/experiments/{1}/artifactTables/{2}/json", 2,, "application/octet-stream"];
19
+ /**
20
+ * Read table data from an experiment artifact as a streamed binary response containing JSON.
21
+ * The response body is a JSON array of row objects, where each object maps column names to values.
22
+ * Results are paginated by row count with a default page size of 10 and a maximum of 100.
23
+ *
24
+ * @alpha
25
+ *
26
+ * Required Scopes: [api:models-read]
27
+ * URL: /v2/models/{modelRid}/experiments/{experimentRid}/artifactTables/{experimentArtifactTableName}/json
28
+ */
29
+ export function json($ctx, ...args) {
30
+ return $foundryPlatformFetch($ctx, _json, ...args);
31
+ }
32
+ const _parquet = [0, "/v2/models/{0}/experiments/{1}/artifactTables/{2}/parquet", 2,, "application/octet-stream"];
33
+ /**
34
+ * Read raw table data from experiment artifacts in Parquet format.
35
+ *
36
+ * @alpha
37
+ *
38
+ * Required Scopes: [api:models-read]
39
+ * URL: /v2/models/{modelRid}/experiments/{experimentRid}/artifactTables/{experimentArtifactTableName}/parquet
40
+ */
41
+ export function parquet($ctx, ...args) {
42
+ return $foundryPlatformFetch($ctx, _parquet, ...args);
43
+ }
44
+ //# sourceMappingURL=ExperimentArtifactTable.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ExperimentArtifactTable.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_json","json","$ctx","args","_parquet","parquet"],"sources":["ExperimentArtifactTable.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 _json = [\n 0,\n \"/v2/models/{0}/experiments/{1}/artifactTables/{2}/json\",\n 2,\n ,\n \"application/octet-stream\",\n];\n/**\n * Read table data from an experiment artifact as a streamed binary response containing JSON.\n * The response body is a JSON array of row objects, where each object maps column names to values.\n * Results are paginated by row count with a default page size of 10 and a maximum of 100.\n *\n * @alpha\n *\n * Required Scopes: [api:models-read]\n * URL: /v2/models/{modelRid}/experiments/{experimentRid}/artifactTables/{experimentArtifactTableName}/json\n */\nexport function json($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _json, ...args);\n}\nconst _parquet = [\n 0,\n \"/v2/models/{0}/experiments/{1}/artifactTables/{2}/parquet\",\n 2,\n ,\n \"application/octet-stream\",\n];\n/**\n * Read raw table data from experiment artifacts in Parquet format.\n *\n * @alpha\n *\n * Required Scopes: [api:models-read]\n * URL: /v2/models/{modelRid}/experiments/{experimentRid}/artifactTables/{experimentArtifactTableName}/parquet\n */\nexport function parquet($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _parquet, ...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,KAAK,GAAG,CACV,CAAC,EACD,wDAAwD,EACxD,CAAC,GAED,0BAA0B,CAC7B;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,IAAIA,CAACC,IAAI,EAAE,GAAGC,IAAI,EAAE;EAChC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEF,KAAK,EAAE,GAAGG,IAAI,CAAC;AACtD;AACA,MAAMC,QAAQ,GAAG,CACb,CAAC,EACD,2DAA2D,EAC3D,CAAC,GAED,0BAA0B,CAC7B;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,OAAOA,CAACH,IAAI,EAAE,GAAGC,IAAI,EAAE;EACnC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEE,QAAQ,EAAE,GAAGD,IAAI,CAAC;AACzD","ignoreList":[]}
@@ -0,0 +1,40 @@
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 _Models from "../_components.js";
5
+ /**
6
+ * Retrieve raw time-series data for a single series in JSON format.
7
+ * Results are paginated with a default page size of 200 and a maximum of 1000.
8
+ *
9
+ * @alpha
10
+ *
11
+ * Required Scopes: [api:models-read]
12
+ * URL: /v2/models/{modelRid}/experiments/{experimentRid}/series/{experimentSeriesName}/json
13
+ */
14
+ export declare function json($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
15
+ modelRid: _Models.ModelRid,
16
+ experimentRid: _Models.ExperimentRid,
17
+ experimentSeriesName: _Models.SeriesName,
18
+ $queryParams?: {
19
+ pageSize?: _Core.PageSize | undefined;
20
+ offset?: number | undefined;
21
+ preview?: _Core.PreviewMode | undefined;
22
+ }
23
+ ]): Promise<_Models.Series>;
24
+ /**
25
+ * Retrieve raw time-series data for a single series as a streamed binary response in Apache Parquet format.
26
+ *
27
+ * @alpha
28
+ *
29
+ * Required Scopes: [api:models-read]
30
+ * URL: /v2/models/{modelRid}/experiments/{experimentRid}/series/{experimentSeriesName}/parquet
31
+ */
32
+ export declare function parquet($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
33
+ modelRid: _Models.ModelRid,
34
+ experimentRid: _Models.ExperimentRid,
35
+ experimentSeriesName: _Models.SeriesName,
36
+ $queryParams?: {
37
+ preview?: _Core.PreviewMode | undefined;
38
+ }
39
+ ]): Promise<Response>;
40
+ //# sourceMappingURL=ExperimentSeries.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ExperimentSeries.d.ts","sourceRoot":"","sources":["../../../src/public/ExperimentSeries.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,OAAO,MAAM,mBAAmB,CAAC;AAiBlD;;;;;;;;GAQG;AACH,wBAAgB,IAAI,CAClB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,OAAO,CAAC,QAAQ;IAC1B,aAAa,EAAE,OAAO,CAAC,aAAa;IACpC,oBAAoB,EAAE,OAAO,CAAC,UAAU;IAExC,YAAY,CAAC,EAAE;QACb,QAAQ,CAAC,EAAE,KAAK,CAAC,QAAQ,GAAG,SAAS,CAAC;QACtC,MAAM,CAAC,EAAE,MAAM,GAAG,SAAS,CAAC;QAC5B,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAC;KACzC;CACF,GACA,OAAO,CAAC,OAAO,CAAC,MAAM,CAAC,CAEzB;AAiBD;;;;;;;GAOG;AACH,wBAAgB,OAAO,CACrB,IAAI,EAAE,OAAO,GAAG,cAAc,GAAG,UAAU,GAAG,iBAAiB,EAC/D,GAAG,IAAI,EAAE;IACP,QAAQ,EAAE,OAAO,CAAC,QAAQ;IAC1B,aAAa,EAAE,OAAO,CAAC,aAAa;IACpC,oBAAoB,EAAE,OAAO,CAAC,UAAU;IAExC,YAAY,CAAC,EAAE;QAAE,OAAO,CAAC,EAAE,KAAK,CAAC,WAAW,GAAG,SAAS,CAAA;KAAE;CAC3D,GACA,OAAO,CAAC,QAAQ,CAAC,CAEnB"}
@@ -0,0 +1,43 @@
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 _json = [0, "/v2/models/{0}/experiments/{1}/series/{2}/json", 2];
19
+ /**
20
+ * Retrieve raw time-series data for a single series in JSON format.
21
+ * Results are paginated with a default page size of 200 and a maximum of 1000.
22
+ *
23
+ * @alpha
24
+ *
25
+ * Required Scopes: [api:models-read]
26
+ * URL: /v2/models/{modelRid}/experiments/{experimentRid}/series/{experimentSeriesName}/json
27
+ */
28
+ export function json($ctx, ...args) {
29
+ return $foundryPlatformFetch($ctx, _json, ...args);
30
+ }
31
+ const _parquet = [0, "/v2/models/{0}/experiments/{1}/series/{2}/parquet", 2,, "application/octet-stream"];
32
+ /**
33
+ * Retrieve raw time-series data for a single series as a streamed binary response in Apache Parquet format.
34
+ *
35
+ * @alpha
36
+ *
37
+ * Required Scopes: [api:models-read]
38
+ * URL: /v2/models/{modelRid}/experiments/{experimentRid}/series/{experimentSeriesName}/parquet
39
+ */
40
+ export function parquet($ctx, ...args) {
41
+ return $foundryPlatformFetch($ctx, _parquet, ...args);
42
+ }
43
+ //# sourceMappingURL=ExperimentSeries.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"ExperimentSeries.js","names":["foundryPlatformFetch","$foundryPlatformFetch","_json","json","$ctx","args","_parquet","parquet"],"sources":["ExperimentSeries.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 _json = [0, \"/v2/models/{0}/experiments/{1}/series/{2}/json\", 2];\n/**\n * Retrieve raw time-series data for a single series in JSON format.\n * Results are paginated with a default page size of 200 and a maximum of 1000.\n *\n * @alpha\n *\n * Required Scopes: [api:models-read]\n * URL: /v2/models/{modelRid}/experiments/{experimentRid}/series/{experimentSeriesName}/json\n */\nexport function json($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _json, ...args);\n}\nconst _parquet = [\n 0,\n \"/v2/models/{0}/experiments/{1}/series/{2}/parquet\",\n 2,\n ,\n \"application/octet-stream\",\n];\n/**\n * Retrieve raw time-series data for a single series as a streamed binary response in Apache Parquet format.\n *\n * @alpha\n *\n * Required Scopes: [api:models-read]\n * URL: /v2/models/{modelRid}/experiments/{experimentRid}/series/{experimentSeriesName}/parquet\n */\nexport function parquet($ctx, ...args) {\n return $foundryPlatformFetch($ctx, _parquet, ...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,KAAK,GAAG,CAAC,CAAC,EAAE,gDAAgD,EAAE,CAAC,CAAC;AACtE;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,IAAIA,CAACC,IAAI,EAAE,GAAGC,IAAI,EAAE;EAChC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEF,KAAK,EAAE,GAAGG,IAAI,CAAC;AACtD;AACA,MAAMC,QAAQ,GAAG,CACb,CAAC,EACD,mDAAmD,EACnD,CAAC,GAED,0BAA0B,CAC7B;AACD;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA,OAAO,SAASC,OAAOA,CAACH,IAAI,EAAE,GAAGC,IAAI,EAAE;EACnC,OAAOJ,qBAAqB,CAACG,IAAI,EAAEE,QAAQ,EAAE,GAAGD,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 _Models from "../_components.js";
5
+ /**
6
+ * Performs inference on the live deployment.
7
+ *
8
+ * @beta
9
+ *
10
+ * Required Scopes: [api:models-execute]
11
+ * URL: /v2/models/liveDeployments/{liveDeploymentRid}/transformJson
12
+ */
13
+ export declare function transformJson($ctx: $Client | $ClientContext | $OldClient | $OldClientContext, ...args: [
14
+ liveDeploymentRid: _Models.LiveDeploymentRid,
15
+ $body: _Models.TransformJsonLiveDeploymentRequest,
16
+ $queryParams?: {
17
+ preview?: _Core.PreviewMode | undefined;
18
+ }
19
+ ]): Promise<_Models.TransformLiveDeploymentResponse>;
20
+ //# sourceMappingURL=LiveDeployment.d.ts.map