@osdk/foundry 2.64.0 → 2.65.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,40 @@
1
1
  # @osdk/foundry
2
2
 
3
+ ## 2.65.0
4
+
5
+ ### Minor Changes
6
+
7
+ - aea64a8: Regenerate SDKs with API version 1.1665.0
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies [aea64a8]
12
+ - @osdk/foundry.admin@2.65.0
13
+ - @osdk/foundry.aipagents@2.65.0
14
+ - @osdk/foundry.audit@2.65.0
15
+ - @osdk/foundry.checkpoints@2.65.0
16
+ - @osdk/foundry.connectivity@2.65.0
17
+ - @osdk/foundry.core@2.65.0
18
+ - @osdk/foundry.datahealth@2.65.0
19
+ - @osdk/foundry.datasets@2.65.0
20
+ - @osdk/foundry.filesystem@2.65.0
21
+ - @osdk/foundry.functions@2.65.0
22
+ - @osdk/foundry.geo@2.65.0
23
+ - @osdk/foundry.languagemodels@2.65.0
24
+ - @osdk/foundry.mediasets@2.65.0
25
+ - @osdk/foundry.models@2.65.0
26
+ - @osdk/foundry.notepad@2.65.0
27
+ - @osdk/foundry.ontologies@2.65.0
28
+ - @osdk/foundry.operations@2.65.0
29
+ - @osdk/foundry.orchestration@2.65.0
30
+ - @osdk/foundry.pack@2.65.0
31
+ - @osdk/foundry.publicapis@2.65.0
32
+ - @osdk/foundry.sqlqueries@2.65.0
33
+ - @osdk/foundry.streams@2.65.0
34
+ - @osdk/foundry.thirdpartyapplications@2.65.0
35
+ - @osdk/foundry.widgets@2.65.0
36
+ - @osdk/foundry.geojson@2.65.0
37
+
3
38
  ## 2.64.0
4
39
 
5
40
  ### Minor Changes
@@ -10558,7 +10558,7 @@ declare interface DatasetFieldSchema {
10558
10558
  * Log Safety: UNSAFE
10559
10559
  */
10560
10560
  declare interface DatasetInput {
10561
- rid: string;
10561
+ rid: _Core.DatasetRid;
10562
10562
  columnMapping: Record<ColumnTypeSpecId, Array<_Core.ColumnName>>;
10563
10563
  ignoreColumns: Array<_Core.ColumnName>;
10564
10564
  selectColumns: Array<_Core.ColumnName>;
@@ -10628,6 +10628,13 @@ declare type DatasetRid_2 = LooselyBrandedString_11<"DatasetRid">;
10628
10628
  */
10629
10629
  declare type DatasetRid_3 = LooselyBrandedString_12<"DatasetRid">;
10630
10630
 
10631
+ /**
10632
+ * The Resource Identifier (RID) of a Dataset.
10633
+ *
10634
+ * Log Safety: SAFE
10635
+ */
10636
+ declare type DatasetRid_4 = LooselyBrandedString_15<"DatasetRid">;
10637
+
10631
10638
  export declare namespace Datasets {
10632
10639
  export {
10633
10640
  AddBackingDatasetsRequest,
@@ -10968,7 +10975,7 @@ declare interface DatasetSchema {
10968
10975
  * Log Safety: SAFE
10969
10976
  */
10970
10977
  declare interface DatasetSchemaNotFoundError {
10971
- datasetRid: string;
10978
+ datasetRid: _Core.DatasetRid;
10972
10979
  }
10973
10980
 
10974
10981
  /**
@@ -12158,6 +12165,7 @@ declare interface Document_3 {
12158
12165
  updatedBy: _Core.UpdatedBy;
12159
12166
  updatedTime: _Core.UpdatedTime;
12160
12167
  operations: Array<DocumentOperation>;
12168
+ operationalVersion?: SchemaVersion;
12161
12169
  }
12162
12170
 
12163
12171
  /**
@@ -12481,6 +12489,15 @@ declare interface DocumentSort {
12481
12489
  */
12482
12490
  declare type DocumentSortField = "NAME" | "CREATED_TIME" | "LAST_MODIFIED_TIME" | "LAST_VIEW_TIME";
12483
12491
 
12492
+ /**
12493
+ * The storage backend for a document type's schema.
12494
+ *
12495
+ * Log Safety: UNSAFE
12496
+ */
12497
+ declare type DocumentStorageType = {
12498
+ type: "yjs";
12499
+ } & YjsSchema;
12500
+
12484
12501
  /**
12485
12502
  * The operation to perform for document to document conversion.
12486
12503
  *
@@ -12588,6 +12605,19 @@ declare interface DocumentTypeAlreadyExists {
12588
12605
  };
12589
12606
  }
12590
12607
 
12608
+ /**
12609
+ * First-party document type definition loaded from a published asset. Used by products that ship
12610
+ document-type schemas as part of their deployment.
12611
+ *
12612
+ * Log Safety: UNSAFE
12613
+ */
12614
+ declare interface DocumentTypeAsset {
12615
+ documentTypeName: DocumentTypeName;
12616
+ documentStorageType: DocumentStorageType;
12617
+ fileSystemType: FileSystemType;
12618
+ schemaVersion: SchemaVersion;
12619
+ }
12620
+
12591
12621
  /**
12592
12622
  * The configured name for a DocumentType. This is unique within an ontology but not
12593
12623
  globally unique.
@@ -13358,7 +13388,7 @@ declare interface Error_2 {
13358
13388
  /**
13359
13389
  * Log Safety: SAFE
13360
13390
  */
13361
- declare type ErrorCode = "INTERNAL_ERROR" | "REVISION_TOO_OLD" | "CLIENT_VERSION_TOO_LOW";
13391
+ declare type ErrorCode = "INTERNAL_ERROR" | "REVISION_TOO_OLD" | "CLIENT_VERSION_TOO_LOW" | "DOCUMENT_TYPE_OPERATIONAL_VERSION_BUMPED";
13362
13392
 
13363
13393
  /**
13364
13394
  * Indicates the server was not able to load the securities of the property.
@@ -13752,7 +13782,7 @@ declare interface Experiment {
13752
13782
  source: ExperimentSource;
13753
13783
  status: ExperimentStatus;
13754
13784
  statusMessage?: string;
13755
- branch: ExperimentBranch;
13785
+ branch: _Core.BranchName;
13756
13786
  parameters: Array<Parameter_4>;
13757
13787
  series: Array<SeriesAggregations>;
13758
13788
  summaryMetrics: Array<SummaryMetric>;
@@ -13831,11 +13861,6 @@ declare interface ExperimentAuthoringSource {
13831
13861
  stemmaRid: string;
13832
13862
  }
13833
13863
 
13834
- /**
13835
- * Log Safety: UNSAFE
13836
- */
13837
- declare type ExperimentBranch = LooselyBrandedString_15<"ExperimentBranch">;
13838
-
13839
13864
  /**
13840
13865
  * Experiment created from a code workspace.
13841
13866
  *
@@ -14492,7 +14517,7 @@ declare type FieldTypeUnion = ({
14492
14517
  * Log Safety: UNSAFE
14493
14518
  */
14494
14519
  declare interface FieldValidationError {
14495
- datasetRid: string;
14520
+ datasetRid: _Core.DatasetRid;
14496
14521
  fieldName?: string;
14497
14522
  fieldType: string;
14498
14523
  }
@@ -23801,7 +23826,6 @@ declare interface ListAttachmentsResponseV2 {
23801
23826
  */
23802
23827
  declare interface ListAuthenticationProvidersResponse {
23803
23828
  data: Array<AuthenticationProvider>;
23804
- nextPageToken?: _Core.PageToken;
23805
23829
  }
23806
23830
 
23807
23831
  /**
@@ -23905,11 +23929,10 @@ declare interface ListEnrollmentRoleAssignmentsPermissionDenied {
23905
23929
  }
23906
23930
 
23907
23931
  /**
23908
- * Log Safety: UNSAFE
23932
+ * Log Safety: SAFE
23909
23933
  */
23910
23934
  declare interface ListEnrollmentRoleAssignmentsResponse {
23911
23935
  data: Array<EnrollmentRoleAssignment>;
23912
- nextPageToken?: _Core.PageToken;
23913
23936
  }
23914
23937
 
23915
23938
  /**
@@ -24067,7 +24090,6 @@ declare interface ListLinkedObjectsResponseV2 {
24067
24090
  */
24068
24091
  declare interface ListLiveDeploymentsResponse {
24069
24092
  data: Array<LiveDeployment>;
24070
- nextPageToken?: _Core.PageToken;
24071
24093
  }
24072
24094
 
24073
24095
  /**
@@ -24182,7 +24204,6 @@ declare interface ListModelStudioRunsResponse {
24182
24204
  */
24183
24205
  declare interface ListModelStudioTrainersResponse {
24184
24206
  data: Array<ModelStudioTrainer>;
24185
- nextPageToken?: _Core.PageToken;
24186
24207
  }
24187
24208
 
24188
24209
  /**
@@ -24275,11 +24296,10 @@ declare interface ListOrganizationGuestMembersPermissionDenied {
24275
24296
  }
24276
24297
 
24277
24298
  /**
24278
- * Log Safety: UNSAFE
24299
+ * Log Safety: SAFE
24279
24300
  */
24280
24301
  declare interface ListOrganizationGuestMembersResponse {
24281
24302
  data: Array<OrganizationGuestMember>;
24282
- nextPageToken?: _Core.PageToken;
24283
24303
  }
24284
24304
 
24285
24305
  /**
@@ -24298,11 +24318,10 @@ declare interface ListOrganizationRoleAssignmentsPermissionDenied {
24298
24318
  }
24299
24319
 
24300
24320
  /**
24301
- * Log Safety: UNSAFE
24321
+ * Log Safety: SAFE
24302
24322
  */
24303
24323
  declare interface ListOrganizationRoleAssignmentsResponse {
24304
24324
  data: Array<OrganizationRoleAssignment>;
24305
- nextPageToken?: _Core.PageToken;
24306
24325
  }
24307
24326
 
24308
24327
  /**
@@ -26878,7 +26897,7 @@ declare interface MissingPostBody {
26878
26897
  * Log Safety: UNSAFE
26879
26898
  */
26880
26899
  declare interface MissingRequiredDatasetColumnError {
26881
- datasetRid: string;
26900
+ datasetRid: _Core.DatasetRid;
26882
26901
  columnTypeSpecId: ColumnTypeSpecId;
26883
26902
  columnNames: Array<_Core.ColumnName>;
26884
26903
  }
@@ -26946,7 +26965,7 @@ declare interface MissingVariableValue {
26946
26965
  * Log Safety: UNSAFE
26947
26966
  */
26948
26967
  declare interface MissingWorkerConfigInputDatasetColumnMappingError {
26949
- datasetRid: string;
26968
+ datasetRid: _Core.DatasetRid;
26950
26969
  columnTypeSpecId: ColumnTypeSpecId;
26951
26970
  }
26952
26971
 
@@ -27278,7 +27297,7 @@ declare interface ModelNotFound {
27278
27297
  * Log Safety: SAFE
27279
27298
  */
27280
27299
  declare interface ModelOutput {
27281
- modelRid: string;
27300
+ modelRid: ModelRid;
27282
27301
  }
27283
27302
 
27284
27303
  /**
@@ -27304,6 +27323,7 @@ export declare namespace Models {
27304
27323
  CreateModelStudioRequest,
27305
27324
  CreateModelVersionRequest,
27306
27325
  DatasetInput,
27326
+ DatasetRid_4 as DatasetRid,
27307
27327
  DatasetSchemaNotFoundError,
27308
27328
  DatetimeParameter,
27309
27329
  DateType_2 as DateType,
@@ -27322,7 +27342,6 @@ export declare namespace Models {
27322
27342
  ExperimentArtifactName,
27323
27343
  ExperimentArtifactTable,
27324
27344
  ExperimentAuthoringSource,
27325
- ExperimentBranch,
27326
27345
  ExperimentCodeWorkspaceSource,
27327
27346
  ExperimentRid,
27328
27347
  ExperimentSdkSource,
@@ -27551,6 +27570,7 @@ declare namespace _Models {
27551
27570
  CreateModelStudioRequest,
27552
27571
  CreateModelVersionRequest,
27553
27572
  DatasetInput,
27573
+ DatasetRid_4 as DatasetRid,
27554
27574
  DatasetSchemaNotFoundError,
27555
27575
  DatetimeParameter,
27556
27576
  DateType_2 as DateType,
@@ -27569,7 +27589,6 @@ declare namespace _Models {
27569
27589
  ExperimentArtifactName,
27570
27590
  ExperimentArtifactTable,
27571
27591
  ExperimentAuthoringSource,
27572
- ExperimentBranch,
27573
27592
  ExperimentCodeWorkspaceSource,
27574
27593
  ExperimentRid,
27575
27594
  ExperimentSdkSource,
@@ -27870,9 +27889,9 @@ declare type ModelStudioRunJobRid = LooselyBrandedString_15<"ModelStudioRunJobRi
27870
27889
  * Log Safety: SAFE
27871
27890
  */
27872
27891
  declare interface ModelStudioRunModelOutput {
27873
- modelRid: string;
27874
- modelVersionRid: string;
27875
- experimentRid?: string;
27892
+ modelRid: ModelRid;
27893
+ modelVersionRid: ModelVersionRid;
27894
+ experimentRid?: ExperimentRid;
27876
27895
  }
27877
27896
 
27878
27897
  /**
@@ -28195,7 +28214,7 @@ declare interface MultiLineString {
28195
28214
  * Log Safety: UNSAFE
28196
28215
  */
28197
28216
  declare interface MultipleColumnsNotAllowedForTrainerError {
28198
- datasetRid: string;
28217
+ datasetRid: _Core.DatasetRid;
28199
28218
  columnTypeSpecId: ColumnTypeSpecId;
28200
28219
  }
28201
28220
 
@@ -34197,7 +34216,9 @@ export declare namespace Pack {
34197
34216
  DocumentSecurity,
34198
34217
  DocumentSort,
34199
34218
  DocumentSortField,
34219
+ DocumentStorageType,
34200
34220
  DocumentType_2 as DocumentType,
34221
+ DocumentTypeAsset,
34201
34222
  DocumentTypeName,
34202
34223
  DocumentTypeRid,
34203
34224
  DocumentTypeSchema,
@@ -34266,6 +34287,7 @@ export declare namespace Pack {
34266
34287
  UpdateSchemaSuccess,
34267
34288
  UserId_2 as UserId,
34268
34289
  UserPresence,
34290
+ YjsSchema,
34269
34291
  YjsUpdate,
34270
34292
  CannotDeleteAutosavedDocument,
34271
34293
  CannotDeleteHiddenDocument,
@@ -34339,7 +34361,9 @@ declare namespace _Pack {
34339
34361
  DocumentSecurity,
34340
34362
  DocumentSort,
34341
34363
  DocumentSortField,
34364
+ DocumentStorageType,
34342
34365
  DocumentType_2 as DocumentType,
34366
+ DocumentTypeAsset,
34343
34367
  DocumentTypeName,
34344
34368
  DocumentTypeRid,
34345
34369
  DocumentTypeSchema,
@@ -34408,6 +34432,7 @@ declare namespace _Pack {
34408
34432
  UpdateSchemaSuccess,
34409
34433
  UserId_2 as UserId,
34410
34434
  UserPresence,
34435
+ YjsSchema,
34411
34436
  YjsUpdate
34412
34437
  }
34413
34438
  }
@@ -45172,7 +45197,7 @@ declare interface TrackedTransformationSuccessfulResponse {
45172
45197
  declare type TrainerDescription = LooselyBrandedString_15<"TrainerDescription">;
45173
45198
 
45174
45199
  /**
45175
- * The identifier for a trainer.
45200
+ * The Resource Identifier (RID) of a trainer.
45176
45201
  *
45177
45202
  * Log Safety: SAFE
45178
45203
  */
@@ -45222,11 +45247,11 @@ declare type TrainerOutputsSpecification = any;
45222
45247
  declare type TrainerSchemaDefinition = any;
45223
45248
 
45224
45249
  /**
45225
- * The type/category of a trainer.
45250
+ * The category of machine learning task a trainer is designed to solve. This determines the kind of modeling problem the trainer addresses and the shape of the inputs and outputs it expects.
45226
45251
  *
45227
- * Log Safety: UNSAFE
45252
+ * Log Safety: SAFE
45228
45253
  */
45229
- declare type TrainerType = LooselyBrandedString_15<"TrainerType">;
45254
+ declare type TrainerType = "GENERIC" | "TIME_SERIES" | "TABULAR_REGRESSION" | "TABULAR_CLASSIFICATION" | "LLM_FINETUNING" | "VLM_FINETUNING";
45230
45255
 
45231
45256
  /**
45232
45257
  * A specific version identifier for a trainer.
@@ -45987,7 +46012,7 @@ declare interface UnknownClassificationBannerDisplayType {
45987
46012
  * Log Safety: UNSAFE
45988
46013
  */
45989
46014
  declare interface UnknownColumnSpecIdInConfigColumnMappingError {
45990
- datasetRid: string;
46015
+ datasetRid: _Core.DatasetRid;
45991
46016
  columnTypeSpecId: ColumnTypeSpecId;
45992
46017
  }
45993
46018
 
@@ -48414,6 +48439,17 @@ declare interface WorkflowIdentityFederation {
48414
48439
  subject: ConnectionRid;
48415
48440
  }
48416
48441
 
48442
+ /**
48443
+ * Yjs-backed schema storage. If schema is empty, the schema for this document type could not be
48444
+ found — this can happen for older document types that never persisted their schema; use the
48445
+ updateSchema endpoint to populate it.
48446
+ *
48447
+ * Log Safety: UNSAFE
48448
+ */
48449
+ declare interface YjsSchema {
48450
+ schema?: DocumentTypeSchema;
48451
+ }
48452
+
48417
48453
  /**
48418
48454
  * Log Safety: UNSAFE
48419
48455
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/foundry",
3
- "version": "2.64.0",
3
+ "version": "2.65.0",
4
4
  "license": "Apache-2.0",
5
5
  "repository": {
6
6
  "type": "git",
@@ -21,32 +21,32 @@
21
21
  "dependencies": {
22
22
  "@osdk/shared.client": "^1.0.1",
23
23
  "@osdk/shared.client2": "^1.0.0",
24
- "@osdk/foundry.aipagents": "2.64.0",
25
- "@osdk/foundry.audit": "2.64.0",
26
- "@osdk/foundry.checkpoints": "2.64.0",
27
- "@osdk/foundry.connectivity": "2.64.0",
28
- "@osdk/foundry.core": "2.64.0",
29
- "@osdk/foundry.datahealth": "2.64.0",
30
- "@osdk/foundry.geojson": "2.64.0",
31
- "@osdk/foundry.functions": "2.64.0",
32
- "@osdk/foundry.filesystem": "2.64.0",
33
- "@osdk/foundry.datasets": "2.64.0",
34
- "@osdk/foundry.geo": "2.64.0",
35
- "@osdk/foundry.languagemodels": "2.64.0",
36
- "@osdk/foundry.mediasets": "2.64.0",
37
- "@osdk/foundry.notepad": "2.64.0",
38
- "@osdk/foundry.models": "2.64.0",
39
- "@osdk/foundry.orchestration": "2.64.0",
40
- "@osdk/foundry.admin": "2.64.0",
41
- "@osdk/foundry.operations": "2.64.0",
42
- "@osdk/foundry.pack": "2.64.0",
43
- "@osdk/foundry.ontologies": "2.64.0",
44
- "@osdk/foundry.publicapis": "2.64.0",
45
- "@osdk/foundry.sqlqueries": "2.64.0",
46
- "@osdk/foundry.streams": "2.64.0",
47
- "@osdk/foundry.thirdpartyapplications": "2.64.0",
24
+ "@osdk/foundry.admin": "2.65.0",
25
+ "@osdk/foundry.aipagents": "2.65.0",
26
+ "@osdk/foundry.checkpoints": "2.65.0",
27
+ "@osdk/foundry.core": "2.65.0",
28
+ "@osdk/foundry.connectivity": "2.65.0",
29
+ "@osdk/foundry.audit": "2.65.0",
30
+ "@osdk/foundry.datahealth": "2.65.0",
31
+ "@osdk/foundry.datasets": "2.65.0",
32
+ "@osdk/foundry.filesystem": "2.65.0",
33
+ "@osdk/foundry.functions": "2.65.0",
34
+ "@osdk/foundry.geo": "2.65.0",
35
+ "@osdk/foundry.geojson": "2.65.0",
36
+ "@osdk/foundry.mediasets": "2.65.0",
37
+ "@osdk/foundry.models": "2.65.0",
38
+ "@osdk/foundry.languagemodels": "2.65.0",
39
+ "@osdk/foundry.notepad": "2.65.0",
40
+ "@osdk/foundry.operations": "2.65.0",
41
+ "@osdk/foundry.ontologies": "2.65.0",
42
+ "@osdk/foundry.orchestration": "2.65.0",
43
+ "@osdk/foundry.pack": "2.65.0",
44
+ "@osdk/foundry.publicapis": "2.65.0",
45
+ "@osdk/foundry.sqlqueries": "2.65.0",
46
+ "@osdk/foundry.thirdpartyapplications": "2.65.0",
47
+ "@osdk/foundry.widgets": "2.65.0",
48
48
  "@osdk/shared.net.platformapi": "~1.7.0",
49
- "@osdk/foundry.widgets": "2.64.0"
49
+ "@osdk/foundry.streams": "2.65.0"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@microsoft/api-extractor": "^7.57.7",
@@ -75,7 +75,7 @@
75
75
  "sls": {
76
76
  "dependencies": {
77
77
  "com.palantir.foundry.api:api-gateway": {
78
- "minVersion": "1.1656.0",
78
+ "minVersion": "1.1665.0",
79
79
  "maxVersion": "1.x.x",
80
80
  "optional": false
81
81
  }