@osdk/foundry 2.64.0 → 2.66.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,77 @@
1
1
  # @osdk/foundry
2
2
 
3
+ ## 2.66.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 0ee40aa: Regenerate SDKs with API version 1.1668.0
8
+ - b53de25: Regenerate SDKs with API version 1.1675.0
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies [0ee40aa]
13
+ - Updated dependencies [b53de25]
14
+ - @osdk/foundry.admin@2.66.0
15
+ - @osdk/foundry.aipagents@2.66.0
16
+ - @osdk/foundry.audit@2.66.0
17
+ - @osdk/foundry.checkpoints@2.66.0
18
+ - @osdk/foundry.connectivity@2.66.0
19
+ - @osdk/foundry.core@2.66.0
20
+ - @osdk/foundry.datahealth@2.66.0
21
+ - @osdk/foundry.datasets@2.66.0
22
+ - @osdk/foundry.filesystem@2.66.0
23
+ - @osdk/foundry.functions@2.66.0
24
+ - @osdk/foundry.geo@2.66.0
25
+ - @osdk/foundry.languagemodels@2.66.0
26
+ - @osdk/foundry.mediasets@2.66.0
27
+ - @osdk/foundry.models@2.66.0
28
+ - @osdk/foundry.notepad@2.66.0
29
+ - @osdk/foundry.ontologies@2.66.0
30
+ - @osdk/foundry.operations@2.66.0
31
+ - @osdk/foundry.orchestration@2.66.0
32
+ - @osdk/foundry.pack@2.66.0
33
+ - @osdk/foundry.publicapis@2.66.0
34
+ - @osdk/foundry.sqlqueries@2.66.0
35
+ - @osdk/foundry.streams@2.66.0
36
+ - @osdk/foundry.thirdpartyapplications@2.66.0
37
+ - @osdk/foundry.widgets@2.66.0
38
+ - @osdk/foundry.geojson@2.66.0
39
+
40
+ ## 2.65.0
41
+
42
+ ### Minor Changes
43
+
44
+ - aea64a8: Regenerate SDKs with API version 1.1665.0
45
+
46
+ ### Patch Changes
47
+
48
+ - Updated dependencies [aea64a8]
49
+ - @osdk/foundry.admin@2.65.0
50
+ - @osdk/foundry.aipagents@2.65.0
51
+ - @osdk/foundry.audit@2.65.0
52
+ - @osdk/foundry.checkpoints@2.65.0
53
+ - @osdk/foundry.connectivity@2.65.0
54
+ - @osdk/foundry.core@2.65.0
55
+ - @osdk/foundry.datahealth@2.65.0
56
+ - @osdk/foundry.datasets@2.65.0
57
+ - @osdk/foundry.filesystem@2.65.0
58
+ - @osdk/foundry.functions@2.65.0
59
+ - @osdk/foundry.geo@2.65.0
60
+ - @osdk/foundry.languagemodels@2.65.0
61
+ - @osdk/foundry.mediasets@2.65.0
62
+ - @osdk/foundry.models@2.65.0
63
+ - @osdk/foundry.notepad@2.65.0
64
+ - @osdk/foundry.ontologies@2.65.0
65
+ - @osdk/foundry.operations@2.65.0
66
+ - @osdk/foundry.orchestration@2.65.0
67
+ - @osdk/foundry.pack@2.65.0
68
+ - @osdk/foundry.publicapis@2.65.0
69
+ - @osdk/foundry.sqlqueries@2.65.0
70
+ - @osdk/foundry.streams@2.65.0
71
+ - @osdk/foundry.thirdpartyapplications@2.65.0
72
+ - @osdk/foundry.widgets@2.65.0
73
+ - @osdk/foundry.geojson@2.65.0
74
+
3
75
  ## 2.64.0
4
76
 
5
77
  ### 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
  /**
@@ -11254,7 +11261,10 @@ declare function decrypt($ctx: SharedClient | SharedClientContext | SharedClient
11254
11261
  ontology: _Ontologies_2.OntologyIdentifier,
11255
11262
  objectType: _Ontologies_2.ObjectTypeApiName,
11256
11263
  primaryKey: _Ontologies_2.PropertyValueEscapedString,
11257
- property: _Ontologies_2.PropertyApiName
11264
+ property: _Ontologies_2.PropertyApiName,
11265
+ $queryParams?: {
11266
+ branch?: _Core.FoundryBranch | undefined;
11267
+ }
11258
11268
  ]): Promise<_Ontologies_2.DecryptionResult>;
11259
11269
 
11260
11270
  /**
@@ -12158,6 +12168,7 @@ declare interface Document_3 {
12158
12168
  updatedBy: _Core.UpdatedBy;
12159
12169
  updatedTime: _Core.UpdatedTime;
12160
12170
  operations: Array<DocumentOperation>;
12171
+ operationalVersion?: SchemaVersion;
12161
12172
  }
12162
12173
 
12163
12174
  /**
@@ -12247,7 +12258,7 @@ declare interface DocumentDiscretionarySecurityUpdateEventData {
12247
12258
  */
12248
12259
  declare interface DocumentEditDescription {
12249
12260
  eventData: DocumentCustomEventData;
12250
- eventType: string;
12261
+ eventType?: string;
12251
12262
  }
12252
12263
 
12253
12264
  /**
@@ -12481,6 +12492,15 @@ declare interface DocumentSort {
12481
12492
  */
12482
12493
  declare type DocumentSortField = "NAME" | "CREATED_TIME" | "LAST_MODIFIED_TIME" | "LAST_VIEW_TIME";
12483
12494
 
12495
+ /**
12496
+ * The storage backend for a document type's schema.
12497
+ *
12498
+ * Log Safety: UNSAFE
12499
+ */
12500
+ declare type DocumentStorageType = {
12501
+ type: "yjs";
12502
+ } & YjsSchema;
12503
+
12484
12504
  /**
12485
12505
  * The operation to perform for document to document conversion.
12486
12506
  *
@@ -12588,6 +12608,20 @@ declare interface DocumentTypeAlreadyExists {
12588
12608
  };
12589
12609
  }
12590
12610
 
12611
+ /**
12612
+ * First-party document type definition loaded from a published asset. Used by products that ship
12613
+ document-type schemas as part of their deployment.
12614
+ *
12615
+ * Log Safety: UNSAFE
12616
+ */
12617
+ declare interface DocumentTypeAsset {
12618
+ comment?: string;
12619
+ documentTypeName: DocumentTypeName;
12620
+ documentStorageType: DocumentStorageType;
12621
+ fileSystemType: FileSystemType;
12622
+ schemaVersion: SchemaVersion;
12623
+ }
12624
+
12591
12625
  /**
12592
12626
  * The configured name for a DocumentType. This is unique within an ontology but not
12593
12627
  globally unique.
@@ -13358,7 +13392,7 @@ declare interface Error_2 {
13358
13392
  /**
13359
13393
  * Log Safety: SAFE
13360
13394
  */
13361
- declare type ErrorCode = "INTERNAL_ERROR" | "REVISION_TOO_OLD" | "CLIENT_VERSION_TOO_LOW";
13395
+ declare type ErrorCode = "INTERNAL_ERROR" | "REVISION_TOO_OLD" | "CLIENT_VERSION_TOO_LOW" | "DOCUMENT_TYPE_OPERATIONAL_VERSION_BUMPED";
13362
13396
 
13363
13397
  /**
13364
13398
  * Indicates the server was not able to load the securities of the property.
@@ -13752,7 +13786,7 @@ declare interface Experiment {
13752
13786
  source: ExperimentSource;
13753
13787
  status: ExperimentStatus;
13754
13788
  statusMessage?: string;
13755
- branch: ExperimentBranch;
13789
+ branch: _Core.BranchName;
13756
13790
  parameters: Array<Parameter_4>;
13757
13791
  series: Array<SeriesAggregations>;
13758
13792
  summaryMetrics: Array<SummaryMetric>;
@@ -13831,11 +13865,6 @@ declare interface ExperimentAuthoringSource {
13831
13865
  stemmaRid: string;
13832
13866
  }
13833
13867
 
13834
- /**
13835
- * Log Safety: UNSAFE
13836
- */
13837
- declare type ExperimentBranch = LooselyBrandedString_15<"ExperimentBranch">;
13838
-
13839
13868
  /**
13840
13869
  * Experiment created from a code workspace.
13841
13870
  *
@@ -14492,7 +14521,7 @@ declare type FieldTypeUnion = ({
14492
14521
  * Log Safety: UNSAFE
14493
14522
  */
14494
14523
  declare interface FieldValidationError {
14495
- datasetRid: string;
14524
+ datasetRid: _Core.DatasetRid;
14496
14525
  fieldName?: string;
14497
14526
  fieldType: string;
14498
14527
  }
@@ -18350,6 +18379,7 @@ propertyName: _Ontologies_2.PropertyApiName,
18350
18379
  $queryParams?: {
18351
18380
  sdkPackageRid?: _Ontologies_2.SdkPackageRid | undefined;
18352
18381
  sdkVersion?: _Ontologies_2.SdkVersion | undefined;
18382
+ branch?: _Core.FoundryBranch | undefined;
18353
18383
  }
18354
18384
  ]): Promise<_Ontologies_2.TimeseriesEntry | undefined>;
18355
18385
 
@@ -23801,7 +23831,6 @@ declare interface ListAttachmentsResponseV2 {
23801
23831
  */
23802
23832
  declare interface ListAuthenticationProvidersResponse {
23803
23833
  data: Array<AuthenticationProvider>;
23804
- nextPageToken?: _Core.PageToken;
23805
23834
  }
23806
23835
 
23807
23836
  /**
@@ -23905,11 +23934,10 @@ declare interface ListEnrollmentRoleAssignmentsPermissionDenied {
23905
23934
  }
23906
23935
 
23907
23936
  /**
23908
- * Log Safety: UNSAFE
23937
+ * Log Safety: SAFE
23909
23938
  */
23910
23939
  declare interface ListEnrollmentRoleAssignmentsResponse {
23911
23940
  data: Array<EnrollmentRoleAssignment>;
23912
- nextPageToken?: _Core.PageToken;
23913
23941
  }
23914
23942
 
23915
23943
  /**
@@ -24067,7 +24095,6 @@ declare interface ListLinkedObjectsResponseV2 {
24067
24095
  */
24068
24096
  declare interface ListLiveDeploymentsResponse {
24069
24097
  data: Array<LiveDeployment>;
24070
- nextPageToken?: _Core.PageToken;
24071
24098
  }
24072
24099
 
24073
24100
  /**
@@ -24182,7 +24209,6 @@ declare interface ListModelStudioRunsResponse {
24182
24209
  */
24183
24210
  declare interface ListModelStudioTrainersResponse {
24184
24211
  data: Array<ModelStudioTrainer>;
24185
- nextPageToken?: _Core.PageToken;
24186
24212
  }
24187
24213
 
24188
24214
  /**
@@ -24275,11 +24301,10 @@ declare interface ListOrganizationGuestMembersPermissionDenied {
24275
24301
  }
24276
24302
 
24277
24303
  /**
24278
- * Log Safety: UNSAFE
24304
+ * Log Safety: SAFE
24279
24305
  */
24280
24306
  declare interface ListOrganizationGuestMembersResponse {
24281
24307
  data: Array<OrganizationGuestMember>;
24282
- nextPageToken?: _Core.PageToken;
24283
24308
  }
24284
24309
 
24285
24310
  /**
@@ -24298,11 +24323,10 @@ declare interface ListOrganizationRoleAssignmentsPermissionDenied {
24298
24323
  }
24299
24324
 
24300
24325
  /**
24301
- * Log Safety: UNSAFE
24326
+ * Log Safety: SAFE
24302
24327
  */
24303
24328
  declare interface ListOrganizationRoleAssignmentsResponse {
24304
24329
  data: Array<OrganizationRoleAssignment>;
24305
- nextPageToken?: _Core.PageToken;
24306
24330
  }
24307
24331
 
24308
24332
  /**
@@ -26669,6 +26693,41 @@ declare type MediaSetViewRid = LooselyBrandedString<"MediaSetViewRid">;
26669
26693
  */
26670
26694
  declare type MediaType = LooselyBrandedString<"MediaType">;
26671
26695
 
26696
+ /**
26697
+ * The media reference property is backed by multiple media set views, and none of them are marked as the upload
26698
+ destination for this property. Set an upload destination on exactly one of the backing media set views for
26699
+ this property in Ontology Manager.
26700
+ *
26701
+ * Log Safety: UNSAFE
26702
+ */
26703
+ declare interface MediaUploadDestinationNotConfigured {
26704
+ errorCode: "INVALID_ARGUMENT";
26705
+ errorName: "MediaUploadDestinationNotConfigured";
26706
+ errorDescription: "The media reference property is backed by multiple media set views, and none of them are marked as the upload destination for this property. Set an upload destination on exactly one of the backing media set views for this property in Ontology Manager.";
26707
+ errorInstanceId: string;
26708
+ parameters: {
26709
+ objectType: unknown;
26710
+ property: unknown;
26711
+ };
26712
+ }
26713
+
26714
+ /**
26715
+ * The property is not backed by any media set view datasource and cannot accept media uploads. Add a media set
26716
+ view datasource that includes this property in Ontology Manager.
26717
+ *
26718
+ * Log Safety: UNSAFE
26719
+ */
26720
+ declare interface MediaUploadPropertyNotBackedByMediaSetView {
26721
+ errorCode: "INVALID_ARGUMENT";
26722
+ errorName: "MediaUploadPropertyNotBackedByMediaSetView";
26723
+ errorDescription: "The property is not backed by any media set view datasource and cannot accept media uploads. Add a media set view datasource that includes this property in Ontology Manager.";
26724
+ errorInstanceId: string;
26725
+ parameters: {
26726
+ objectType: unknown;
26727
+ property: unknown;
26728
+ };
26729
+ }
26730
+
26672
26731
  /**
26673
26732
  * An ephemeral client-generated Universally Unique Identifier (UUID) to identify a message for streamed session responses.
26674
26733
  This can be used by clients to cancel a streamed exchange.
@@ -26878,7 +26937,7 @@ declare interface MissingPostBody {
26878
26937
  * Log Safety: UNSAFE
26879
26938
  */
26880
26939
  declare interface MissingRequiredDatasetColumnError {
26881
- datasetRid: string;
26940
+ datasetRid: _Core.DatasetRid;
26882
26941
  columnTypeSpecId: ColumnTypeSpecId;
26883
26942
  columnNames: Array<_Core.ColumnName>;
26884
26943
  }
@@ -26946,7 +27005,7 @@ declare interface MissingVariableValue {
26946
27005
  * Log Safety: UNSAFE
26947
27006
  */
26948
27007
  declare interface MissingWorkerConfigInputDatasetColumnMappingError {
26949
- datasetRid: string;
27008
+ datasetRid: _Core.DatasetRid;
26950
27009
  columnTypeSpecId: ColumnTypeSpecId;
26951
27010
  }
26952
27011
 
@@ -27278,7 +27337,7 @@ declare interface ModelNotFound {
27278
27337
  * Log Safety: SAFE
27279
27338
  */
27280
27339
  declare interface ModelOutput {
27281
- modelRid: string;
27340
+ modelRid: ModelRid;
27282
27341
  }
27283
27342
 
27284
27343
  /**
@@ -27304,6 +27363,7 @@ export declare namespace Models {
27304
27363
  CreateModelStudioRequest,
27305
27364
  CreateModelVersionRequest,
27306
27365
  DatasetInput,
27366
+ DatasetRid_4 as DatasetRid,
27307
27367
  DatasetSchemaNotFoundError,
27308
27368
  DatetimeParameter,
27309
27369
  DateType_2 as DateType,
@@ -27322,7 +27382,6 @@ export declare namespace Models {
27322
27382
  ExperimentArtifactName,
27323
27383
  ExperimentArtifactTable,
27324
27384
  ExperimentAuthoringSource,
27325
- ExperimentBranch,
27326
27385
  ExperimentCodeWorkspaceSource,
27327
27386
  ExperimentRid,
27328
27387
  ExperimentSdkSource,
@@ -27551,6 +27610,7 @@ declare namespace _Models {
27551
27610
  CreateModelStudioRequest,
27552
27611
  CreateModelVersionRequest,
27553
27612
  DatasetInput,
27613
+ DatasetRid_4 as DatasetRid,
27554
27614
  DatasetSchemaNotFoundError,
27555
27615
  DatetimeParameter,
27556
27616
  DateType_2 as DateType,
@@ -27569,7 +27629,6 @@ declare namespace _Models {
27569
27629
  ExperimentArtifactName,
27570
27630
  ExperimentArtifactTable,
27571
27631
  ExperimentAuthoringSource,
27572
- ExperimentBranch,
27573
27632
  ExperimentCodeWorkspaceSource,
27574
27633
  ExperimentRid,
27575
27634
  ExperimentSdkSource,
@@ -27870,9 +27929,9 @@ declare type ModelStudioRunJobRid = LooselyBrandedString_15<"ModelStudioRunJobRi
27870
27929
  * Log Safety: SAFE
27871
27930
  */
27872
27931
  declare interface ModelStudioRunModelOutput {
27873
- modelRid: string;
27874
- modelVersionRid: string;
27875
- experimentRid?: string;
27932
+ modelRid: ModelRid;
27933
+ modelVersionRid: ModelVersionRid;
27934
+ experimentRid?: ExperimentRid;
27876
27935
  }
27877
27936
 
27878
27937
  /**
@@ -28195,7 +28254,7 @@ declare interface MultiLineString {
28195
28254
  * Log Safety: UNSAFE
28196
28255
  */
28197
28256
  declare interface MultipleColumnsNotAllowedForTrainerError {
28198
- datasetRid: string;
28257
+ datasetRid: _Core.DatasetRid;
28199
28258
  columnTypeSpecId: ColumnTypeSpecId;
28200
28259
  }
28201
28260
 
@@ -28214,6 +28273,24 @@ declare interface MultipleGroupByOnFieldNotSupported {
28214
28273
  };
28215
28274
  }
28216
28275
 
28276
+ /**
28277
+ * The media reference property has multiple media set views marked as upload destinations. At most one media
28278
+ source per property should be configured as the upload destination. This typically indicates an inconsistent
28279
+ object type configuration; review the backing media sources for this property in Ontology Manager.
28280
+ *
28281
+ * Log Safety: UNSAFE
28282
+ */
28283
+ declare interface MultipleMediaUploadDestinations {
28284
+ errorCode: "INVALID_ARGUMENT";
28285
+ errorName: "MultipleMediaUploadDestinations";
28286
+ errorDescription: "The media reference property has multiple media set views marked as upload destinations. At most one media source per property should be configured as the upload destination. This typically indicates an inconsistent object type configuration; review the backing media sources for this property in Ontology Manager.";
28287
+ errorInstanceId: string;
28288
+ parameters: {
28289
+ objectType: unknown;
28290
+ property: unknown;
28291
+ };
28292
+ }
28293
+
28217
28294
  /**
28218
28295
  * Multiple properties were mapped but the trainer only allows a single property for this spec.
28219
28296
  *
@@ -30871,9 +30948,12 @@ export declare namespace Ontologies {
30871
30948
  MarketplaceSdkObjectMappingNotFound,
30872
30949
  MarketplaceSdkPropertyMappingNotFound,
30873
30950
  MarketplaceSdkQueryMappingNotFound,
30951
+ MediaUploadDestinationNotConfigured,
30952
+ MediaUploadPropertyNotBackedByMediaSetView,
30874
30953
  MissingParameter,
30875
30954
  MissingValueTypeReference,
30876
30955
  MultipleGroupByOnFieldNotSupported,
30956
+ MultipleMediaUploadDestinations,
30877
30957
  MultiplePropertyValuesNotSupported,
30878
30958
  NotCipherFormatted,
30879
30959
  ObjectAlreadyExists,
@@ -31768,9 +31848,12 @@ declare namespace _Ontologies {
31768
31848
  MarketplaceSdkObjectMappingNotFound,
31769
31849
  MarketplaceSdkPropertyMappingNotFound,
31770
31850
  MarketplaceSdkQueryMappingNotFound,
31851
+ MediaUploadDestinationNotConfigured,
31852
+ MediaUploadPropertyNotBackedByMediaSetView,
31771
31853
  MissingParameter,
31772
31854
  MissingValueTypeReference,
31773
31855
  MultipleGroupByOnFieldNotSupported,
31856
+ MultipleMediaUploadDestinations,
31774
31857
  MultiplePropertyValuesNotSupported,
31775
31858
  NotCipherFormatted,
31776
31859
  ObjectAlreadyExists,
@@ -34197,7 +34280,9 @@ export declare namespace Pack {
34197
34280
  DocumentSecurity,
34198
34281
  DocumentSort,
34199
34282
  DocumentSortField,
34283
+ DocumentStorageType,
34200
34284
  DocumentType_2 as DocumentType,
34285
+ DocumentTypeAsset,
34201
34286
  DocumentTypeName,
34202
34287
  DocumentTypeRid,
34203
34288
  DocumentTypeSchema,
@@ -34266,6 +34351,7 @@ export declare namespace Pack {
34266
34351
  UpdateSchemaSuccess,
34267
34352
  UserId_2 as UserId,
34268
34353
  UserPresence,
34354
+ YjsSchema,
34269
34355
  YjsUpdate,
34270
34356
  CannotDeleteAutosavedDocument,
34271
34357
  CannotDeleteHiddenDocument,
@@ -34339,7 +34425,9 @@ declare namespace _Pack {
34339
34425
  DocumentSecurity,
34340
34426
  DocumentSort,
34341
34427
  DocumentSortField,
34428
+ DocumentStorageType,
34342
34429
  DocumentType_2 as DocumentType,
34430
+ DocumentTypeAsset,
34343
34431
  DocumentTypeName,
34344
34432
  DocumentTypeRid,
34345
34433
  DocumentTypeSchema,
@@ -34408,6 +34496,7 @@ declare namespace _Pack {
34408
34496
  UpdateSchemaSuccess,
34409
34497
  UserId_2 as UserId,
34410
34498
  UserPresence,
34499
+ YjsSchema,
34411
34500
  YjsUpdate
34412
34501
  }
34413
34502
  }
@@ -43557,6 +43646,7 @@ $body: _Ontologies_2.StreamTimeSeriesValuesRequest,
43557
43646
  $queryParams?: {
43558
43647
  sdkPackageRid?: _Ontologies_2.SdkPackageRid | undefined;
43559
43648
  sdkVersion?: _Ontologies_2.SdkVersion | undefined;
43649
+ branch?: _Core.FoundryBranch | undefined;
43560
43650
  }
43561
43651
  ]): Promise<Response>;
43562
43652
 
@@ -45172,7 +45262,7 @@ declare interface TrackedTransformationSuccessfulResponse {
45172
45262
  declare type TrainerDescription = LooselyBrandedString_15<"TrainerDescription">;
45173
45263
 
45174
45264
  /**
45175
- * The identifier for a trainer.
45265
+ * The Resource Identifier (RID) of a trainer.
45176
45266
  *
45177
45267
  * Log Safety: SAFE
45178
45268
  */
@@ -45222,11 +45312,11 @@ declare type TrainerOutputsSpecification = any;
45222
45312
  declare type TrainerSchemaDefinition = any;
45223
45313
 
45224
45314
  /**
45225
- * The type/category of a trainer.
45315
+ * 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
45316
  *
45227
- * Log Safety: UNSAFE
45317
+ * Log Safety: SAFE
45228
45318
  */
45229
- declare type TrainerType = LooselyBrandedString_15<"TrainerType">;
45319
+ declare type TrainerType = "GENERIC" | "TIME_SERIES" | "TABULAR_REGRESSION" | "TABULAR_CLASSIFICATION" | "LLM_FINETUNING" | "VLM_FINETUNING";
45230
45320
 
45231
45321
  /**
45232
45322
  * A specific version identifier for a trainer.
@@ -45987,7 +46077,7 @@ declare interface UnknownClassificationBannerDisplayType {
45987
46077
  * Log Safety: UNSAFE
45988
46078
  */
45989
46079
  declare interface UnknownColumnSpecIdInConfigColumnMappingError {
45990
- datasetRid: string;
46080
+ datasetRid: _Core.DatasetRid;
45991
46081
  columnTypeSpecId: ColumnTypeSpecId;
45992
46082
  }
45993
46083
 
@@ -48414,6 +48504,17 @@ declare interface WorkflowIdentityFederation {
48414
48504
  subject: ConnectionRid;
48415
48505
  }
48416
48506
 
48507
+ /**
48508
+ * Yjs-backed schema storage. If schema is empty, the schema for this document type could not be
48509
+ found — this can happen for older document types that never persisted their schema; use the
48510
+ updateSchema endpoint to populate it.
48511
+ *
48512
+ * Log Safety: UNSAFE
48513
+ */
48514
+ declare interface YjsSchema {
48515
+ schema?: DocumentTypeSchema;
48516
+ }
48517
+
48417
48518
  /**
48418
48519
  * Log Safety: UNSAFE
48419
48520
  */
@@ -1 +1 @@
1
- const t=Symbol("ClientContext");class e extends Error{constructor(t,e,n,o,r,s,c){super(t),this.message=t,this.errorName=e,this.errorCode=n,this.errorDescription=o,this.statusCode=r,this.errorInstanceId=s,this.parameters=c}}class n extends e{constructor(t,e,n,o){super(t,e,void 0,void 0,o),this.originalError=n}}async function o(o,[r,s,c,i,a],...u){const l=s.replace(/\{([^}]+)\}/g,()=>encodeURIComponent(u.shift())),f=1&c?u.shift():void 0,v=2&c?u.shift():void 0,p=4&c?u.shift():void 0,d=["GET","POST","PUT","DELETE","PATCH"][r];return await async function(t,o,r,s,c,i,a,u){const l=function(t,e){return t+=t.endsWith("/")?"":"/",new URL(`api${e}`,t)}(t.baseUrl,r);for(const[t,e]of Object.entries(c||{}))if(null!=e)if(Array.isArray(e))for(const n of e)l.searchParams.append(t,n);else l.searchParams.append(t,e);const f=new Headers;f.set("Content-Type",a??"application/json"),f.set("Accept",u??"application/json"),Object.entries(i||{}).forEach(([t,e])=>{"Content-Type"===t&&"string"==typeof e?f.set("Content-Type",e):"Accept"===t&&"string"==typeof e?f.set("Accept",e):null!=e&&f.append(t,e.toString())});const v=null==s||s instanceof globalThis.Blob?s:JSON.stringify(s),p=await t.fetch(l.toString(),{body:v,method:o,headers:f});if(!p.ok)try{const t=await p.json();return new e(t.message,t.errorName,t.errorCode,t.errorDescription,p.status,t.errorInstanceId,t.parameters)}catch(t){return t instanceof Error?new n(t.message,"UNKNOWN"):new n("Unable to parse error response","UNKNOWN")}if(204===p.status)return;if(null==u||"application/json"===u)return await p.json();return p}(o.__osdkClientContext??o[t]??o,d,l,f,v,p,i,a)}const r=[0,"/v2/admin/enrollments/{0}/authenticationProviders",2];const s=[0,"/v2/admin/enrollments/{0}/authenticationProviders/{1}",2];const c=[1,"/v2/admin/enrollments/{0}/authenticationProviders/{1}/preregisterUser",3];const i=[1,"/v2/admin/enrollments/{0}/authenticationProviders/{1}/preregisterGroup",3];var a=Object.freeze({__proto__:null,get:function(t,...e){return o(t,s,...e)},list:function(t,...e){return o(t,r,...e)},preregisterGroup:function(t,...e){return o(t,i,...e)},preregisterUser:function(t,...e){return o(t,c,...e)}});const u=[0,"/v2/admin/cbacBanner",2];var l=Object.freeze({__proto__:null,get:function(t,...e){return o(t,u,...e)}});const f=[0,"/v2/admin/cbacMarkingRestrictions",2];var v=Object.freeze({__proto__:null,get:function(t,...e){return o(t,f,...e)}});const p=[0,"/v2/admin/enrollments/{0}",2];const d=[0,"/v2/admin/enrollments/getCurrent",2];var _=Object.freeze({__proto__:null,get:function(t,...e){return o(t,p,...e)},getCurrent:function(t,...e){return o(t,d,...e)}});const g=[0,"/v2/admin/enrollments/{0}/roleAssignments",2];const m=[1,"/v2/admin/enrollments/{0}/roleAssignments/add",3];const b=[1,"/v2/admin/enrollments/{0}/roleAssignments/remove",3];var h=Object.freeze({__proto__:null,add:function(t,...e){return o(t,m,...e)},list:function(t,...e){return o(t,g,...e)},remove:function(t,...e){return o(t,b,...e)}});const y=[1,"/v2/admin/groups",1];const j=[3,"/v2/admin/groups/{0}"];const O=[0,"/v2/admin/groups",2];const z=[0,"/v2/admin/groups/{0}"];const S=[1,"/v2/admin/groups/getBatch",1];const k=[2,"/v2/admin/groups/{0}",1];const T=[0,"/v2/admin/groups/listCurrent",2];const A=[1,"/v2/admin/groups/search",1];var B=Object.freeze({__proto__:null,create:function(t,...e){return o(t,y,...e)},deleteGroup:function(t,...e){return o(t,j,...e)},get:function(t,...e){return o(t,z,...e)},getBatch:function(t,...e){return o(t,S,...e)},list:function(t,...e){return o(t,O,...e)},listCurrent:function(t,...e){return o(t,T,...e)},replace:function(t,...e){return o(t,k,...e)},search:function(t,...e){return o(t,A,...e)}});const R=[0,"/v2/admin/groups/{0}/groupMembers",2];const M=[1,"/v2/admin/groups/{0}/groupMembers/add",1];const C=[1,"/v2/admin/groups/{0}/groupMembers/remove",1];var P=Object.freeze({__proto__:null,add:function(t,...e){return o(t,M,...e)},list:function(t,...e){return o(t,R,...e)},remove:function(t,...e){return o(t,C,...e)}});const x=[0,"/v2/admin/users/{0}/groupMemberships",2];var w=Object.freeze({__proto__:null,list:function(t,...e){return o(t,x,...e)}});const I=[0,"/v2/admin/groups/{0}/membershipExpirationPolicy",2];const V=[2,"/v2/admin/groups/{0}/membershipExpirationPolicy",3];var D=Object.freeze({__proto__:null,get:function(t,...e){return o(t,I,...e)},replace:function(t,...e){return o(t,V,...e)}});const E=[0,"/v2/admin/groups/{0}/providerInfo"];const L=[2,"/v2/admin/groups/{0}/providerInfo",1];var q=Object.freeze({__proto__:null,get:function(t,...e){return o(t,E,...e)},replace:function(t,...e){return o(t,L,...e)}});const F=[0,"/v2/admin/enrollments/{0}/hosts",2];var W=Object.freeze({__proto__:null,list:function(t,...e){return o(t,F,...e)}});const H=[1,"/v2/admin/markings",1];const G=[0,"/v2/admin/markings",2];const J=[0,"/v2/admin/markings/{0}"];const N=[1,"/v2/admin/markings/getBatch",1];const U=[2,"/v2/admin/markings/{0}",1];const Q=[1,"/v2/admin/markings/parseClassifications",3];var K=Object.freeze({__proto__:null,create:function(t,...e){return o(t,H,...e)},get:function(t,...e){return o(t,J,...e)},getBatch:function(t,...e){return o(t,N,...e)},list:function(t,...e){return o(t,G,...e)},parseClassifications:function(t,...e){return o(t,Q,...e)},replace:function(t,...e){return o(t,U,...e)}});const $=[1,"/v2/admin/markingCategories",3];const X=[0,"/v2/admin/markingCategories",2];const Y=[0,"/v2/admin/markingCategories/{0}"];const Z=[2,"/v2/admin/markingCategories/{0}",3];var tt=Object.freeze({__proto__:null,create:function(t,...e){return o(t,$,...e)},get:function(t,...e){return o(t,Y,...e)},list:function(t,...e){return o(t,X,...e)},replace:function(t,...e){return o(t,Z,...e)}});const et=[0,"/v2/admin/markings/{0}/markingMembers",2];const nt=[1,"/v2/admin/markings/{0}/markingMembers/add",1];const ot=[1,"/v2/admin/markings/{0}/markingMembers/remove",1];var rt=Object.freeze({__proto__:null,add:function(t,...e){return o(t,nt,...e)},list:function(t,...e){return o(t,et,...e)},remove:function(t,...e){return o(t,ot,...e)}});const st=[0,"/v2/admin/markings/{0}/roleAssignments",2];const ct=[1,"/v2/admin/markings/{0}/roleAssignments/add",1];const it=[1,"/v2/admin/markings/{0}/roleAssignments/remove",1];var at=Object.freeze({__proto__:null,add:function(t,...e){return o(t,ct,...e)},list:function(t,...e){return o(t,st,...e)},remove:function(t,...e){return o(t,it,...e)}});const ut=[1,"/v2/admin/organizations",3];const lt=[0,"/v2/admin/organizations/{0}"];const ft=[2,"/v2/admin/organizations/{0}",1];const vt=[0,"/v2/admin/organizations/{0}/listAvailableRoles"];var pt=Object.freeze({__proto__:null,create:function(t,...e){return o(t,ut,...e)},get:function(t,...e){return o(t,lt,...e)},listAvailableRoles:function(t,...e){return o(t,vt,...e)},replace:function(t,...e){return o(t,ft,...e)}});const dt=[0,"/v2/admin/organizations/{0}/guestMembers",2];const _t=[1,"/v2/admin/organizations/{0}/guestMembers/add",3];const gt=[1,"/v2/admin/organizations/{0}/guestMembers/remove",3];var mt=Object.freeze({__proto__:null,add:function(t,...e){return o(t,_t,...e)},list:function(t,...e){return o(t,dt,...e)},remove:function(t,...e){return o(t,gt,...e)}});const bt=[0,"/v2/admin/organizations/{0}/roleAssignments"];const ht=[1,"/v2/admin/organizations/{0}/roleAssignments/add",1];const yt=[1,"/v2/admin/organizations/{0}/roleAssignments/remove",1];var jt=Object.freeze({__proto__:null,add:function(t,...e){return o(t,ht,...e)},list:function(t,...e){return o(t,bt,...e)},remove:function(t,...e){return o(t,yt,...e)}});const Ot=[0,"/v2/admin/roles/{0}",2];const zt=[1,"/v2/admin/roles/getBatch",3];var St=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Ot,...e)},getBatch:function(t,...e){return o(t,zt,...e)}});const kt=[3,"/v2/admin/users/{0}"];const Tt=[0,"/v2/admin/users",2];const At=[0,"/v2/admin/users/{0}",2];const Bt=[1,"/v2/admin/users/getBatch",1];const Rt=[0,"/v2/admin/users/getCurrent"];const Mt=[0,"/v2/admin/users/{0}/getMarkings"];const Ct=[0,"/v2/admin/users/{0}/profilePicture",,,"application/octet-stream"];const Pt=[1,"/v2/admin/users/search",1];const xt=[1,"/v2/admin/users/{0}/revokeAllTokens"];var wt=Object.freeze({__proto__:null,deleteUser:function(t,...e){return o(t,kt,...e)},get:function(t,...e){return o(t,At,...e)},getBatch:function(t,...e){return o(t,Bt,...e)},getCurrent:function(t,...e){return o(t,Rt,...e)},getMarkings:function(t,...e){return o(t,Mt,...e)},list:function(t,...e){return o(t,Tt,...e)},profilePicture:function(t,...e){return o(t,Ct,...e)},revokeAllTokens:function(t,...e){return o(t,xt,...e)},search:function(t,...e){return o(t,Pt,...e)}});const It=[0,"/v2/admin/users/{0}/providerInfo"];const Vt=[2,"/v2/admin/users/{0}/providerInfo",1];var Dt=Object.freeze({__proto__:null,get:function(t,...e){return o(t,It,...e)},replace:function(t,...e){return o(t,Vt,...e)}}),Et=Object.freeze({__proto__:null,AuthenticationProviders:a,CbacBanners:l,CbacMarkingRestrictionsObjects:v,EnrollmentRoleAssignments:h,Enrollments:_,GroupMembers:P,GroupMembershipExpirationPolicies:D,GroupMemberships:w,GroupProviderInfos:q,Groups:B,Hosts:W,MarkingCategories:tt,MarkingMembers:rt,MarkingRoleAssignments:at,Markings:K,OrganizationGuestMembers:mt,OrganizationRoleAssignments:jt,Organizations:pt,Roles:St,UserProviderInfos:Dt,Users:wt});const Lt=[0,"/v2/aipAgents/agents/{0}",2];const qt=[0,"/v2/aipAgents/agents/allSessions",2];var Ft=Object.freeze({__proto__:null,allSessions:function(t,...e){return o(t,qt,...e)},get:function(t,...e){return o(t,Lt,...e)}});const Wt=[0,"/v2/aipAgents/agents/{0}/agentVersions",2];const Ht=[0,"/v2/aipAgents/agents/{0}/agentVersions/{1}",2];var Gt=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Ht,...e)},list:function(t,...e){return o(t,Wt,...e)}});const Jt=[0,"/v2/aipAgents/agents/{0}/sessions/{1}/content",2];var Nt=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Jt,...e)}});const Ut=[1,"/v2/aipAgents/agents/{0}/sessions",3];const Qt=[3,"/v2/aipAgents/agents/{0}/sessions/{1}",2];const Kt=[0,"/v2/aipAgents/agents/{0}/sessions",2];const $t=[0,"/v2/aipAgents/agents/{0}/sessions/{1}",2];const Xt=[1,"/v2/aipAgents/agents/{0}/sessions/{1}/blockingContinue",3];const Yt=[1,"/v2/aipAgents/agents/{0}/sessions/{1}/streamingContinue",3,,"application/octet-stream"];const Zt=[1,"/v2/aipAgents/agents/{0}/sessions/{1}/cancel",3];const te=[2,"/v2/aipAgents/agents/{0}/sessions/{1}/ragContext",3];const ee=[2,"/v2/aipAgents/agents/{0}/sessions/{1}/updateTitle",3];var ne=Object.freeze({__proto__:null,blockingContinue:function(t,...e){return o(t,Xt,...e)},cancel:function(t,...e){return o(t,Zt,...e)},create:function(t,...e){return o(t,Ut,...e)},deleteSession:function(t,...e){return o(t,Qt,...e)},get:function(t,...e){return o(t,$t,...e)},list:function(t,...e){return o(t,Kt,...e)},ragContext:function(t,...e){return o(t,te,...e)},streamingContinue:function(t,...e){return o(t,Yt,...e)},updateTitle:function(t,...e){return o(t,ee,...e)}});const oe=[0,"/v2/aipAgents/agents/{0}/sessions/{1}/sessionTraces/{2}",2];var re=Object.freeze({__proto__:null,get:function(t,...e){return o(t,oe,...e)}}),se=Object.freeze({__proto__:null,AgentVersions:Gt,Agents:Ft,Contents:Nt,SessionTraces:re,Sessions:ne});const ce=[0,"/v2/audit/organizations/{0}/logFiles",2];const ie=[0,"/v2/audit/organizations/{0}/logFiles/{1}/content",,,"application/octet-stream"];var ae=Object.freeze({__proto__:null,content:function(t,...e){return o(t,ie,...e)},list:function(t,...e){return o(t,ce,...e)}}),ue=Object.freeze({__proto__:null,LogFiles:ae});const le=[0,"/v2/checkpoints/records/{0}",2];const fe=[1,"/v2/checkpoints/records/getBatch",3];const ve=[1,"/v2/checkpoints/records/search",3];var pe=Object.freeze({__proto__:null,get:function(t,...e){return o(t,le,...e)},getBatch:function(t,...e){return o(t,fe,...e)},search:function(t,...e){return o(t,ve,...e)}}),de=Object.freeze({__proto__:null,Records:pe});const _e=[1,"/v2/connectivity/connections",1];const ge=[0,"/v2/connectivity/connections/{0}"];const me=[1,"/v2/connectivity/connections/{0}/updateExportSettings",1];const be=[1,"/v2/connectivity/connections/{0}/updateSecrets",1];const he=[0,"/v2/connectivity/connections/{0}/getConfiguration"];const ye=[1,"/v2/connectivity/connections/getConfigurationBatch",1];const je=[1,"/v2/connectivity/connections/{0}/uploadCustomJdbcDrivers",3,"application/octet-stream"];var Oe=Object.freeze({__proto__:null,create:function(t,...e){return o(t,_e,...e)},get:function(t,...e){return o(t,ge,...e)},getConfiguration:function(t,...e){return o(t,he,...e)},getConfigurationBatch:function(t,...e){return o(t,ye,...e)},updateExportSettings:function(t,...e){return o(t,me,...e)},updateSecrets:function(t,...e){return o(t,be,...e)},uploadCustomJdbcDrivers:function(t,...e){return o(t,je,...e)}});const ze=[1,"/v2/connectivity/connections/{0}/fileImports",1];const Se=[3,"/v2/connectivity/connections/{0}/fileImports/{1}"];const ke=[0,"/v2/connectivity/connections/{0}/fileImports",2];const Te=[0,"/v2/connectivity/connections/{0}/fileImports/{1}"];const Ae=[2,"/v2/connectivity/connections/{0}/fileImports/{1}",1];const Be=[1,"/v2/connectivity/connections/{0}/fileImports/{1}/execute"];var Re=Object.freeze({__proto__:null,create:function(t,...e){return o(t,ze,...e)},deleteFileImport:function(t,...e){return o(t,Se,...e)},execute:function(t,...e){return o(t,Be,...e)},get:function(t,...e){return o(t,Te,...e)},list:function(t,...e){return o(t,ke,...e)},replace:function(t,...e){return o(t,Ae,...e)}});const Me=[1,"/v2/connectivity/connections/{0}/tableImports",1];const Ce=[3,"/v2/connectivity/connections/{0}/tableImports/{1}"];const Pe=[0,"/v2/connectivity/connections/{0}/tableImports",2];const xe=[0,"/v2/connectivity/connections/{0}/tableImports/{1}"];const we=[2,"/v2/connectivity/connections/{0}/tableImports/{1}",1];const Ie=[1,"/v2/connectivity/connections/{0}/tableImports/{1}/execute"];var Ve=Object.freeze({__proto__:null,create:function(t,...e){return o(t,Me,...e)},deleteTableImport:function(t,...e){return o(t,Ce,...e)},execute:function(t,...e){return o(t,Ie,...e)},get:function(t,...e){return o(t,xe,...e)},list:function(t,...e){return o(t,Pe,...e)},replace:function(t,...e){return o(t,we,...e)}});const De=[1,"/v2/connectivity/connections/{0}/virtualTables",1];var Ee=Object.freeze({__proto__:null,create:function(t,...e){return o(t,De,...e)}}),Le=Object.freeze({__proto__:null,Connections:Oe,FileImports:Re,TableImports:Ve,VirtualTables:Ee}),qe=Object.freeze({__proto__:null});const Fe=[1,"/v2/dataHealth/checks",3];const We=[3,"/v2/dataHealth/checks/{0}",2];const He=[0,"/v2/dataHealth/checks/{0}",2];const Ge=[2,"/v2/dataHealth/checks/{0}",3];var Je=Object.freeze({__proto__:null,create:function(t,...e){return o(t,Fe,...e)},deleteCheck:function(t,...e){return o(t,We,...e)},get:function(t,...e){return o(t,He,...e)},replace:function(t,...e){return o(t,Ge,...e)}});const Ne=[0,"/v2/dataHealth/checks/{0}/checkReports/{1}",2];const Ue=[0,"/v2/dataHealth/checks/{0}/checkReports/getLatest",2];var Qe=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Ne,...e)},getLatest:function(t,...e){return o(t,Ue,...e)}}),Ke=Object.freeze({__proto__:null,CheckReports:Qe,Checks:Je});const $e=[1,"/v2/datasets/{0}/branches",1];const Xe=[3,"/v2/datasets/{0}/branches/{1}"];const Ye=[0,"/v2/datasets/{0}/branches",2];const Ze=[0,"/v2/datasets/{0}/branches/{1}"];const tn=[0,"/v2/datasets/{0}/branches/{1}/transactions",2];var en=Object.freeze({__proto__:null,create:function(t,...e){return o(t,$e,...e)},deleteBranch:function(t,...e){return o(t,Xe,...e)},get:function(t,...e){return o(t,Ze,...e)},list:function(t,...e){return o(t,Ye,...e)},transactions:function(t,...e){return o(t,tn,...e)}});const nn=[1,"/v2/datasets",1];const on=[0,"/v2/datasets/{0}"];const rn=[0,"/v2/datasets/{0}/getSchedules",2];const sn=[0,"/v2/datasets/{0}/getHealthChecks",2];const cn=[0,"/v2/datasets/{0}/getHealthCheckReports",2];const an=[0,"/v2/datasets/{0}/readTable",2,,"application/octet-stream"];const un=[0,"/v2/datasets/{0}/getSchema",2];const ln=[1,"/v2/datasets/getSchemaBatch",1];const fn=[2,"/v2/datasets/{0}/putSchema",1];const vn=[1,"/v2/datasets/{0}/jobs",3];const pn=[0,"/v2/datasets/{0}/transactions",2];var dn=Object.freeze({__proto__:null,create:function(t,...e){return o(t,nn,...e)},get:function(t,...e){return o(t,on,...e)},getHealthCheckReports:function(t,...e){return o(t,cn,...e)},getHealthChecks:function(t,...e){return o(t,sn,...e)},getSchedules:function(t,...e){return o(t,rn,...e)},getSchema:function(t,...e){return o(t,un,...e)},getSchemaBatch:function(t,...e){return o(t,ln,...e)},jobs:function(t,...e){return o(t,vn,...e)},putSchema:function(t,...e){return o(t,fn,...e)},readTable:function(t,...e){return o(t,an,...e)},transactions:function(t,...e){return o(t,pn,...e)}});const _n=[3,"/v2/datasets/{0}/files/{1}",2];const gn=[0,"/v2/datasets/{0}/files",2];const mn=[0,"/v2/datasets/{0}/files/{1}",2];const bn=[1,"/v2/datasets/{0}/files/{1}/upload",3,"application/octet-stream"];const hn=[0,"/v2/datasets/{0}/files/{1}/content",2,,"application/octet-stream"];var yn=Object.freeze({__proto__:null,content:function(t,...e){return o(t,hn,...e)},deleteFile:function(t,...e){return o(t,_n,...e)},get:function(t,...e){return o(t,mn,...e)},list:function(t,...e){return o(t,gn,...e)},upload:function(t,...e){return o(t,bn,...e)}});const jn=[1,"/v2/datasets/{0}/transactions",3];const On=[0,"/v2/datasets/{0}/transactions/{1}"];const zn=[1,"/v2/datasets/{0}/transactions/{1}/commit"];const Sn=[1,"/v2/datasets/{0}/transactions/{1}/abort"];const kn=[0,"/v2/datasets/{0}/transactions/{1}/build",2];const Tn=[0,"/v2/datasets/{0}/transactions/{1}/job",2];var An=Object.freeze({__proto__:null,abort:function(t,...e){return o(t,Sn,...e)},build:function(t,...e){return o(t,kn,...e)},commit:function(t,...e){return o(t,zn,...e)},create:function(t,...e){return o(t,jn,...e)},get:function(t,...e){return o(t,On,...e)},job:function(t,...e){return o(t,Tn,...e)}});const Bn=[1,"/v2/datasets/views",1];const Rn=[0,"/v2/datasets/views/{0}",2];const Mn=[1,"/v2/datasets/views/{0}/addBackingDatasets",1];const Cn=[2,"/v2/datasets/views/{0}/replaceBackingDatasets",1];const Pn=[1,"/v2/datasets/views/{0}/removeBackingDatasets",1];const xn=[1,"/v2/datasets/views/{0}/addPrimaryKey",1];var wn=Object.freeze({__proto__:null,addBackingDatasets:function(t,...e){return o(t,Mn,...e)},addPrimaryKey:function(t,...e){return o(t,xn,...e)},create:function(t,...e){return o(t,Bn,...e)},get:function(t,...e){return o(t,Rn,...e)},removeBackingDatasets:function(t,...e){return o(t,Pn,...e)},replaceBackingDatasets:function(t,...e){return o(t,Cn,...e)}}),In=Object.freeze({__proto__:null,Branches:en,Datasets:dn,Files:yn,Transactions:An,Views:wn});const Vn=[1,"/v2/filesystem/folders",1];const Dn=[0,"/v2/filesystem/folders/{0}"];const En=[1,"/v2/filesystem/folders/getBatch",1];const Ln=[2,"/v2/filesystem/folders/{0}",3];const qn=[0,"/v2/filesystem/folders/{0}/children",2];var Fn=Object.freeze({__proto__:null,children:function(t,...e){return o(t,qn,...e)},create:function(t,...e){return o(t,Vn,...e)},get:function(t,...e){return o(t,Dn,...e)},getBatch:function(t,...e){return o(t,En,...e)},replace:function(t,...e){return o(t,Ln,...e)}});const Wn=[0,"/v2/filesystem/projects/{0}"];const Hn=[2,"/v2/filesystem/projects/{0}",3];const Gn=[1,"/v2/filesystem/projects/create",1];const Jn=[1,"/v2/filesystem/projects/createFromTemplate",1];const Nn=[1,"/v2/filesystem/projects/{0}/addOrganizations",1];const Un=[1,"/v2/filesystem/projects/{0}/removeOrganizations",1];const Qn=[0,"/v2/filesystem/projects/{0}/organizations",2];var Kn=Object.freeze({__proto__:null,addOrganizations:function(t,...e){return o(t,Nn,...e)},create:function(t,...e){return o(t,Gn,...e)},createFromTemplate:function(t,...e){return o(t,Jn,...e)},get:function(t,...e){return o(t,Wn,...e)},organizations:function(t,...e){return o(t,Qn,...e)},removeOrganizations:function(t,...e){return o(t,Un,...e)},replace:function(t,...e){return o(t,Hn,...e)}});const $n=[0,"/v2/filesystem/projects/{0}/references",2];const Xn=[1,"/v2/filesystem/projects/{0}/references/add",1];const Yn=[1,"/v2/filesystem/projects/{0}/references/remove",1];var Zn=Object.freeze({__proto__:null,add:function(t,...e){return o(t,Xn,...e)},list:function(t,...e){return o(t,$n,...e)},remove:function(t,...e){return o(t,Yn,...e)}});const to=[3,"/v2/filesystem/resources/{0}"];const eo=[0,"/v2/filesystem/resources/{0}"];const no=[1,"/v2/filesystem/resources/getBatch",1];const oo=[0,"/v2/filesystem/resources/getByPath",2];const ro=[1,"/v2/filesystem/resources/getByPathBatch",1];const so=[1,"/v2/filesystem/resources/{0}/restore"];const co=[1,"/v2/filesystem/resources/{0}/permanentlyDelete"];const io=[1,"/v2/filesystem/resources/{0}/addMarkings",1];const ao=[1,"/v2/filesystem/resources/{0}/removeMarkings",1];const uo=[0,"/v2/filesystem/resources/{0}/getAccessRequirements"];const lo=[0,"/v2/filesystem/resources/{0}/markings",2];var fo=Object.freeze({__proto__:null,addMarkings:function(t,...e){return o(t,io,...e)},deleteResource:function(t,...e){return o(t,to,...e)},get:function(t,...e){return o(t,eo,...e)},getAccessRequirements:function(t,...e){return o(t,uo,...e)},getBatch:function(t,...e){return o(t,no,...e)},getByPath:function(t,...e){return o(t,oo,...e)},getByPathBatch:function(t,...e){return o(t,ro,...e)},markings:function(t,...e){return o(t,lo,...e)},permanentlyDelete:function(t,...e){return o(t,co,...e)},removeMarkings:function(t,...e){return o(t,ao,...e)},restore:function(t,...e){return o(t,so,...e)}});const vo=[0,"/v2/filesystem/resources/{0}/roles",2];const po=[1,"/v2/filesystem/resources/{0}/roles/add",1];const _o=[1,"/v2/filesystem/resources/{0}/roles/remove",1];var go=Object.freeze({__proto__:null,add:function(t,...e){return o(t,po,...e)},list:function(t,...e){return o(t,vo,...e)},remove:function(t,...e){return o(t,_o,...e)}});const mo=[1,"/v2/filesystem/spaces",3];const bo=[3,"/v2/filesystem/spaces/{0}",2];const ho=[0,"/v2/filesystem/spaces",2];const yo=[0,"/v2/filesystem/spaces/{0}",2];const jo=[2,"/v2/filesystem/spaces/{0}",3];var Oo=Object.freeze({__proto__:null,create:function(t,...e){return o(t,mo,...e)},deleteSpace:function(t,...e){return o(t,bo,...e)},get:function(t,...e){return o(t,yo,...e)},list:function(t,...e){return o(t,ho,...e)},replace:function(t,...e){return o(t,jo,...e)}}),zo=Object.freeze({__proto__:null,Folders:Fn,ProjectResourceReferences:Zn,Projects:Kn,ResourceRoles:go,Resources:fo,Spaces:Oo});const So=[1,"/v2/functions/executions/{0}/getResult",3];const ko=[1,"/v2/functions/executions/{0}/cancel",2];var To=Object.freeze({__proto__:null,cancel:function(t,...e){return o(t,ko,...e)},getResult:function(t,...e){return o(t,So,...e)}});const Ao=[0,"/v2/functions/queries/{0}",2];const Bo=[0,"/v2/functions/queries/getByRid",2];const Ro=[1,"/v2/functions/queries/getByRidBatch",3];const Mo=[1,"/v2/functions/queries/{0}/execute",7];const Co=[1,"/v2/functions/queries/{0}/streamingExecute",7,,"application/octet-stream"];const Po=[1,"/v2/functions/queries/{0}/executeAsync",7];var xo=Object.freeze({__proto__:null,execute:function(t,...e){return o(t,Mo,...e)},executeAsync:function(t,...e){return o(t,Po,...e)},get:function(t,...e){return o(t,Ao,...e)},getByRid:function(t,...e){return o(t,Bo,...e)},getByRidBatch:function(t,...e){return o(t,Ro,...e)},streamingExecute:function(t,...e){return o(t,Co,...e)}});const wo=[0,"/v2/functions/valueTypes/{0}",2];var Io=Object.freeze({__proto__:null,get:function(t,...e){return o(t,wo,...e)}});const Vo=[0,"/v2/functions/valueTypes/{0}/versionIds/{1}",2];var Do=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Vo,...e)}}),Eo=Object.freeze({__proto__:null,Executions:To,Queries:xo,ValueTypes:Io,VersionIds:Do}),Lo=Object.freeze({__proto__:null});const qo=[1,"/v2/languageModels/anthropic/{0}/messages",7];var Fo=Object.freeze({__proto__:null,messages:function(t,...e){return o(t,qo,...e)}});const Wo=[1,"/v2/languageModels/openAi/{0}/embeddings",7];var Ho=Object.freeze({__proto__:null,embeddings:function(t,...e){return o(t,Wo,...e)}}),Go=Object.freeze({__proto__:null,Anthropic:Fo,OpenAi:Ho});const Jo=[1,"/v2/mediasets/{0}/transactions/{1}/abort",2];const No=[0,"/v2/mediasets/{0}/items/{1}/transform/imagery/thumbnail/calculate",6];const Uo=[3,"/v2/mediasets/{0}/items/clearAtPath",2];const Qo=[1,"/v2/mediasets/{0}/transactions/{1}/commit",2];const Ko=[1,"/v2/mediasets/{0}/transactions",2];const $o=[0,"/v2/mediasets/{0}/items/{1}",6];const Xo=[0,"/v2/mediasets/{0}/items/{1}/metadata",6];const Yo=[0,"/v2/mediasets/{0}/items/{1}/reference",6];const Zo=[0,"/v2/mediasets/{0}/items/getRidByPath",2];const tr=[0,"/v2/mediasets/{0}",2];const er=[0,"/v2/mediasets/{0}/items/{1}/transformationJobs/{2}/result",6,,"*/*"];const nr=[0,"/v2/mediasets/{0}/items/{1}/transformationJobs/{2}",6];const or=[1,"/v2/mediasets/{0}/items",3,"*/*"];const rr=[0,"/v2/mediasets/{0}/items/{1}/content",6,,"*/*"];const sr=[0,"/v2/mediasets/{0}/items/{1}/original",6,,"*/*"];const cr=[1,"/v2/mediasets/{0}/items/register",3];const ir=[0,"/v2/mediasets/{0}/items/{1}/transform/imagery/thumbnail/retrieve",6,,"*/*"];const ar=[1,"/v2/mediasets/{0}/items/{1}/transform",7];const ur=[2,"/v2/mediasets/media/upload",7,"*/*"];var lr=Object.freeze({__proto__:null,abort:function(t,...e){return o(t,Jo,...e)},calculate:function(t,...e){return o(t,No,...e)},clear:function(t,...e){return o(t,Uo,...e)},commit:function(t,...e){return o(t,Qo,...e)},create:function(t,...e){return o(t,Ko,...e)},get:function(t,...e){return o(t,tr,...e)},getResult:function(t,...e){return o(t,er,...e)},getRidByPath:function(t,...e){return o(t,Zo,...e)},getStatus:function(t,...e){return o(t,nr,...e)},info:function(t,...e){return o(t,$o,...e)},metadata:function(t,...e){return o(t,Xo,...e)},read:function(t,...e){return o(t,rr,...e)},readOriginal:function(t,...e){return o(t,sr,...e)},reference:function(t,...e){return o(t,Yo,...e)},register:function(t,...e){return o(t,cr,...e)},retrieve:function(t,...e){return o(t,ir,...e)},transform:function(t,...e){return o(t,ar,...e)},upload:function(t,...e){return o(t,or,...e)},uploadMedia:function(t,...e){return o(t,ur,...e)}}),fr=Object.freeze({__proto__:null,MediaSets:lr});const vr=[0,"/v2/models/{0}/experiments/{1}",2];const pr=[1,"/v2/models/{0}/experiments/search",3];var dr=Object.freeze({__proto__:null,get:function(t,...e){return o(t,vr,...e)},search:function(t,...e){return o(t,pr,...e)}});const _r=[0,"/v2/models/{0}/experiments/{1}/artifactTables/{2}/json",2,,"application/octet-stream"];const gr=[0,"/v2/models/{0}/experiments/{1}/artifactTables/{2}/parquet",2,,"application/octet-stream"];var mr=Object.freeze({__proto__:null,json:function(t,...e){return o(t,_r,...e)},parquet:function(t,...e){return o(t,gr,...e)}});const br=[0,"/v2/models/{0}/experiments/{1}/series/{2}/json",2];const hr=[0,"/v2/models/{0}/experiments/{1}/series/{2}/parquet",2,,"application/octet-stream"];var yr=Object.freeze({__proto__:null,json:function(t,...e){return o(t,br,...e)},parquet:function(t,...e){return o(t,hr,...e)}});const jr=[1,"/v2/models/liveDeployments",3];const Or=[0,"/v2/models/liveDeployments",2];const zr=[0,"/v2/models/liveDeployments/{0}",2];const Sr=[2,"/v2/models/liveDeployments/{0}",3];const kr=[1,"/v2/models/liveDeployments/{0}/transformJson",7];var Tr=Object.freeze({__proto__:null,create:function(t,...e){return o(t,jr,...e)},get:function(t,...e){return o(t,zr,...e)},list:function(t,...e){return o(t,Or,...e)},replace:function(t,...e){return o(t,Sr,...e)},transformJson:function(t,...e){return o(t,kr,...e)}});const Ar=[1,"/v2/models",3];const Br=[0,"/v2/models/{0}",2];const Rr=[1,"/v2/models/{0}/promoteVersion",3];var Mr=Object.freeze({__proto__:null,create:function(t,...e){return o(t,Ar,...e)},get:function(t,...e){return o(t,Br,...e)},promoteVersion:function(t,...e){return o(t,Rr,...e)}});const Cr=[1,"/v2/models/{0}/function",3];const Pr=[0,"/v2/models/{0}/function",2];const xr=[2,"/v2/models/{0}/function",3];var wr=Object.freeze({__proto__:null,create:function(t,...e){return o(t,Cr,...e)},get:function(t,...e){return o(t,Pr,...e)},replace:function(t,...e){return o(t,xr,...e)}});const Ir=[1,"/v2/models/modelStudios",3];const Vr=[0,"/v2/models/modelStudios/{0}",2];const Dr=[1,"/v2/models/modelStudios/{0}/launch",2];var Er=Object.freeze({__proto__:null,create:function(t,...e){return o(t,Ir,...e)},get:function(t,...e){return o(t,Vr,...e)},launch:function(t,...e){return o(t,Dr,...e)}});const Lr=[1,"/v2/models/modelStudios/{0}/configVersions",3];const qr=[0,"/v2/models/modelStudios/{0}/configVersions",2];const Fr=[0,"/v2/models/modelStudios/{0}/configVersions/{1}",2];const Wr=[0,"/v2/models/modelStudios/{0}/configVersions/latest",2];var Hr=Object.freeze({__proto__:null,create:function(t,...e){return o(t,Lr,...e)},get:function(t,...e){return o(t,Fr,...e)},latest:function(t,...e){return o(t,Wr,...e)},list:function(t,...e){return o(t,qr,...e)}});const Gr=[0,"/v2/models/modelStudios/{0}/runs",2];var Jr=Object.freeze({__proto__:null,list:function(t,...e){return o(t,Gr,...e)}});const Nr=[0,"/v2/models/modelStudioTrainers",2];const Ur=[0,"/v2/models/modelStudioTrainers/{0}",2];var Qr=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Ur,...e)},list:function(t,...e){return o(t,Nr,...e)}});const Kr=[1,"/v2/models/{0}/versions",3];const $r=[0,"/v2/models/{0}/versions",2];const Xr=[0,"/v2/models/{0}/versions/{1}",2];var Yr=Object.freeze({__proto__:null,create:function(t,...e){return o(t,Kr,...e)},get:function(t,...e){return o(t,Xr,...e)},list:function(t,...e){return o(t,$r,...e)}}),Zr=Object.freeze({__proto__:null,ArtifactTables:mr,ExperimentSeriesList:yr,Experiments:dr,LiveDeployments:Tr,ModelFunctions:wr,ModelStudioConfigVersions:Hr,ModelStudioRuns:Jr,ModelStudioTrainers:Qr,ModelStudios:Er,ModelVersions:Yr,Models:Mr});const ts=[0,"/v2/notepad/exportJobs/{0}",2];const es=[1,"/v2/notepad/exportJobs/create",3];var ns=Object.freeze({__proto__:null,create:function(t,...e){return o(t,es,...e)},get:function(t,...e){return o(t,ts,...e)}});const os=[0,"/v2/notepad/files/{0}/content",2,,"application/octet-stream"];var rs=Object.freeze({__proto__:null,content:function(t,...e){return o(t,os,...e)}});const ss=[0,"/v2/notepad/templates/{0}/generationJobs/{1}",2];const cs=[1,"/v2/notepad/templates/{0}/generationJobs/{1}/saveDocument",3];var is=Object.freeze({__proto__:null,get:function(t,...e){return o(t,ss,...e)},saveDocument:function(t,...e){return o(t,cs,...e)}});const as=[1,"/v2/notepad/templates/{0}/generate",3];var us=Object.freeze({__proto__:null,generate:function(t,...e){return o(t,as,...e)}}),ls=Object.freeze({__proto__:null,ExportJobs:ns,Files:rs,GenerationJobs:is,Templates:us});const fs=[1,"/v2/ontologies/{0}/actions/{1}/apply",7];const vs=[1,"/v2/ontologies/{0}/actions/{1}/applyAsync",7];const ps=[1,"/v2/ontologies/{0}/actions/{1}/applyBatch",3];const ds=[1,"/v2/ontologies/{0}/actions/{1}/applyWithOverrides",3];const _s=[1,"/v2/ontologies/{0}/actions/{1}/applyBatchWithOverrides",3];var gs=Object.freeze({__proto__:null,apply:function(t,...e){return o(t,fs,...e)},applyAsync:function(t,...e){return o(t,vs,...e)},applyBatch:function(t,...e){return o(t,ps,...e)},applyBatchWithOverrides:function(t,...e){return o(t,_s,...e)},applyWithOverrides:function(t,...e){return o(t,ds,...e)}});const ms=[0,"/v2/ontologies/{0}/actionTypesFullMetadata",2];const bs=[0,"/v2/ontologies/{0}/actionTypes/{1}/fullMetadata",2];var hs=Object.freeze({__proto__:null,get:function(t,...e){return o(t,bs,...e)},list:function(t,...e){return o(t,ms,...e)}});const ys=[0,"/v2/ontologies/{0}/actionTypes",2];const js=[1,"/v2/ontologies/{0}/actionTypes/search",3];const Os=[0,"/v2/ontologies/{0}/actionTypes/{1}",2];const zs=[0,"/v2/ontologies/{0}/actionTypes/byRid/{1}",2];const Ss=[1,"/v2/ontologies/{0}/actionTypes/getByRidBatch",3];var ks=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Os,...e)},getByRid:function(t,...e){return o(t,zs,...e)},getByRidBatch:function(t,...e){return o(t,Ss,...e)},list:function(t,...e){return o(t,ys,...e)},search:function(t,...e){return o(t,js,...e)}});const Ts=[1,"/v2/ontologies/attachments/upload",7,"*/*"];const As=[1,"/v2/ontologies/attachments/upload/{0}",7,"*/*"];const Bs=[0,"/v2/ontologies/attachments/{0}/content",,,"*/*"];const Rs=[0,"/v2/ontologies/attachments/{0}"];var Ms=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Rs,...e)},read:function(t,...e){return o(t,Bs,...e)},upload:function(t,...e){const n={...e[2],"Content-Type":e[2]?.["Content-Type"]??e[0].type,"Content-Length":e[0].size.toString()};return o(t,Ts,e[0],e[1],n)},uploadWithRid:function(t,...e){const n={...e[3],"Content-Type":e[3]?.["Content-Type"]??e[1].type,"Content-Length":e[1].size.toString()};return o(t,As,e[0],e[1],e[2],n)}});const Cs=[0,"/v2/ontologies/{0}/objects/{1}/{2}/attachments/{3}",2];const Ps=[0,"/v2/ontologies/{0}/objects/{1}/{2}/attachments/{3}/{4}",2];const xs=[0,"/v2/ontologies/{0}/objects/{1}/{2}/attachments/{3}/content",2,,"*/*"];const ws=[0,"/v2/ontologies/{0}/objects/{1}/{2}/attachments/{3}/{4}/content",2,,"*/*"];var Is=Object.freeze({__proto__:null,getAttachment:function(t,...e){return o(t,Cs,...e)},getAttachmentByRid:function(t,...e){return o(t,Ps,...e)},readAttachment:function(t,...e){return o(t,xs,...e)},readAttachmentByRid:function(t,...e){return o(t,ws,...e)}});const Vs=[0,"/v2/ontologies/{0}/objects/{1}/{2}/ciphertexts/{3}/decrypt"];var Ds=Object.freeze({__proto__:null,decrypt:function(t,...e){return o(t,Vs,...e)}});const Es=[1,"/v2/ontologies/{0}/objects/{1}/{2}/geotemporalSeries/{3}/loadEntries",3];var Ls=Object.freeze({__proto__:null,loadGeotemporalSeriesEntries:function(t,...e){return o(t,Es,...e)}});const qs=[0,"/v2/ontologies/{0}/objects/{1}/{2}/links/{3}",2];const Fs=[0,"/v2/ontologies/{0}/objects/{1}/{2}/links/{3}/{4}",2];var Ws=Object.freeze({__proto__:null,getLinkedObject:function(t,...e){return o(t,Fs,...e)},listLinkedObjects:function(t,...e){return o(t,qs,...e)}});const Hs=[0,"/v2/ontologies/{0}/objects/{1}/{2}/media/{3}/content",2,,"*/*"];const Gs=[0,"/v2/ontologies/{0}/objects/{1}/{2}/media/{3}/metadata",2];const Js=[1,"/v2/ontologies/{0}/objectTypes/{1}/media/{2}/upload",3,"*/*"];var Ns=Object.freeze({__proto__:null,getMediaContent:function(t,...e){return o(t,Hs,...e)},getMediaMetadata:function(t,...e){return o(t,Gs,...e)},upload:function(t,...e){return o(t,Js,...e)}});const Us=[0,"/v2/ontologies/{0}/objectTypes",2];const Qs=[0,"/v2/ontologies/{0}/objectTypes/{1}",2];const Ks=[1,"/v2/ontologies/{0}/objectTypes/getByRidBatch",3];const $s=[0,"/v2/ontologies/{0}/objectTypes/{1}/fullMetadata",2];const Xs=[1,"/v2/ontologies/{0}/objectTypes/{1}/editsHistory",3];const Ys=[0,"/v2/ontologies/{0}/objectTypes/{1}/outgoingLinkTypes",2];const Zs=[0,"/v2/ontologies/{0}/objectTypes/{1}/outgoingLinkTypes/{2}",2];const tc=[1,"/v2/ontologies/{0}/outgoingLinkTypes/getByRidBatch",3];var ec=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Qs,...e)},getByRidBatch:function(t,...e){return o(t,Ks,...e)},getEditsHistory:function(t,...e){return o(t,Xs,...e)},getFullMetadata:function(t,...e){return o(t,$s,...e)},getOutgoingLinkType:function(t,...e){return o(t,Zs,...e)},getOutgoingLinkTypesByObjectTypeRidBatch:function(t,...e){return o(t,tc,...e)},list:function(t,...e){return o(t,Us,...e)},listOutgoingLinkTypes:function(t,...e){return o(t,Ys,...e)}});const nc=[0,"/v2/ontologies/{0}/interfaceTypes",2];const oc=[0,"/v2/ontologies/{0}/interfaceTypes/{1}",2];const rc=[0,"/v2/ontologies/{0}/interfaces/{1}",2];const sc=[1,"/v2/ontologies/{0}/interfaces/{1}/search",3];const cc=[1,"/v2/ontologies/{0}/interfaces/{1}/aggregate",3];const ic=[0,"/v2/ontologies/{0}/interfaceTypes/{1}/outgoingLinkTypes",2];const ac=[0,"/v2/ontologies/{0}/interfaceTypes/{1}/outgoingLinkTypes/{2}",2];const uc=[0,"/v2/ontologies/{0}/interfaces/{1}/{2}/{3}/links/{4}",2];var lc=Object.freeze({__proto__:null,aggregate:function(t,...e){return o(t,cc,...e)},get:function(t,...e){return o(t,oc,...e)},getOutgoingInterfaceLinkType:function(t,...e){return o(t,ac,...e)},list:function(t,...e){return o(t,nc,...e)},listInterfaceLinkedObjects:function(t,...e){return o(t,uc,...e)},listObjectsForInterface:function(t,...e){return o(t,rc,...e)},listOutgoingInterfaceLinkTypes:function(t,...e){return o(t,ic,...e)},search:function(t,...e){return o(t,sc,...e)}});const fc=[1,"/v2/ontologies/{0}/objectSets/createTemporary",7];const vc=[0,"/v2/ontologies/{0}/objectSets/{1}",2];const pc=[1,"/v2/ontologies/{0}/objectSets/loadObjects",7];const dc=[1,"/v2/ontologies/{0}/objectSets/loadObjectsMultipleObjectTypes",7];const _c=[1,"/v2/ontologies/{0}/objectSets/loadObjectsOrInterfaces",7];const gc=[1,"/v2/ontologies/{0}/objectSets/aggregate",7];const mc=[1,"/v2/ontologies/{0}/objectSets/loadLinks",7];var bc=Object.freeze({__proto__:null,aggregate:function(t,...e){return o(t,gc,...e)},createTemporary:function(t,...e){return o(t,fc,...e)},get:function(t,...e){return o(t,vc,...e)},load:function(t,...e){return o(t,pc,...e)},loadLinks:function(t,...e){return o(t,mc,...e)},loadMultipleObjectTypes:function(t,...e){return o(t,dc,...e)},loadObjectsOrInterfaces:function(t,...e){return o(t,_c,...e)}});const hc=[0,"/v2/ontologies/{0}/objects/{1}",2];const yc=[0,"/v2/ontologies/{0}/objects/{1}/{2}",2];const jc=[1,"/v2/ontologies/{0}/objects/{1}/count",2];const Oc=[1,"/v2/ontologies/{0}/objects/{1}/search",3];const zc=[1,"/v2/ontologies/{0}/objects/{1}/aggregate",3];var Sc=Object.freeze({__proto__:null,aggregate:function(t,...e){return o(t,zc,...e)},count:function(t,...e){return o(t,jc,...e)},get:function(t,...e){return o(t,yc,...e)},list:function(t,...e){return o(t,hc,...e)},search:function(t,...e){return o(t,Oc,...e)}});const kc=[1,"/v2/ontologies/{0}/scenarios/create",3];const Tc=[0,"/v2/ontologies/{0}/scenarios/{1}/objectTypes/edited",2];const Ac=[0,"/v2/ontologies/{0}/scenarios/{1}/objectTypes/{2}/outgoingLinkTypes/edited",2];const Bc=[0,"/v2/ontologies/{0}/scenarios/{1}/editedEntityTypes",2];const Rc=[0,"/v2/ontologies/{0}/scenarios/{1}/objects/{2}/edited",2];const Mc=[0,"/v2/ontologies/{0}/scenarios/{1}/objects/{2}/links/{3}/edited",2];var Cc=Object.freeze({__proto__:null,createScenario:function(t,...e){return o(t,kc,...e)},listScenarioEditedEntityTypes:function(t,...e){return o(t,Bc,...e)},listScenarioEditedLinkTypes:function(t,...e){return o(t,Ac,...e)},listScenarioEditedLinks:function(t,...e){return o(t,Mc,...e)},listScenarioEditedObjectTypes:function(t,...e){return o(t,Tc,...e)},listScenarioEditedObjects:function(t,...e){return o(t,Rc,...e)}});const Pc=[1,"/v2/ontologies/{0}/transactions/{1}/edits",3];var xc=Object.freeze({__proto__:null,postEdits:function(t,...e){return o(t,Pc,...e)}});const wc=[0,"/v2/ontologies"];const Ic=[0,"/v2/ontologies/{0}"];const Vc=[0,"/v2/ontologies/{0}/fullMetadata",2];const Dc=[1,"/v2/ontologies/{0}/metadata",3];var Ec=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Ic,...e)},getFullMetadata:function(t,...e){return o(t,Vc,...e)},list:function(t,...e){return o(t,wc,...e)},loadMetadata:function(t,...e){return o(t,Dc,...e)}});const Lc=[0,"/v2/ontologies/{0}/valueTypes/{1}",2];const qc=[0,"/v2/ontologies/{0}/valueTypes",2];var Fc=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Lc,...e)},list:function(t,...e){return o(t,qc,...e)}});const Wc=[1,"/v2/ontologies/{0}/queries/{1}/execute",7];var Hc=Object.freeze({__proto__:null,execute:function(t,...e){return o(t,Wc,...e)}});const Gc=[0,"/v2/ontologies/{0}/queryTypes",2];const Jc=[0,"/v2/ontologies/{0}/queryTypes/{1}",2];const Nc=[1,"/v2/ontologies/{0}/queryTypes/getByRidBatch",3];var Uc=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Jc,...e)},getByRidBatch:function(t,...e){return o(t,Nc,...e)},list:function(t,...e){return o(t,Gc,...e)}});const Qc=[0,"/v2/ontologies/{0}/objects/{1}/{2}/timeseries/{3}/firstPoint",2];const Kc=[0,"/v2/ontologies/{0}/objects/{1}/{2}/timeseries/{3}/lastPoint",2];const $c=[1,"/v2/ontologies/{0}/objects/{1}/{2}/timeseries/{3}/streamPoints",3,,"*/*"];var Xc=Object.freeze({__proto__:null,getFirstPoint:function(t,...e){return o(t,Qc,...e)},getLastPoint:function(t,...e){return o(t,Kc,...e)},streamPoints:function(t,...e){return o(t,$c,...e)}});const Yc=[0,"/v2/ontologies/{0}/objects/{1}/{2}/timeseries/{3}/latestValue",2];const Zc=[1,"/v2/ontologies/{0}/objects/{1}/{2}/timeseries/{3}/streamValues",3,,"*/*"];var ti=Object.freeze({__proto__:null,getLatestValue:function(t,...e){return o(t,Yc,...e)},streamValues:function(t,...e){return o(t,Zc,...e)}}),ei=Object.freeze({__proto__:null,ActionTypesFullMetadata:hs,ActionTypesV2:ks,Actions:gs,AttachmentPropertiesV2:Is,Attachments:Ms,CipherTextProperties:Ds,GeotemporalSeriesProperties:Ls,LinkedObjectsV2:Ws,MediaReferenceProperties:Ns,ObjectTypesV2:ec,OntologiesV2:Ec,OntologyInterfaces:lc,OntologyObjectSets:bc,OntologyObjectsV2:Sc,OntologyScenarios:Cc,OntologyTransactions:xc,OntologyValueTypes:Fc,Queries:Hc,QueryTypes:Uc,TimeSeriesPropertiesV2:Xc,TimeSeriesValueBankProperties:ti});const ni=[0,"/v2/operations/{0}",2];var oi=Object.freeze({__proto__:null,get:function(t,...e){return o(t,ni,...e)}}),ri=Object.freeze({__proto__:null,AsyncOperations:oi});const si=[0,"/v2/orchestration/builds/{0}"];const ci=[1,"/v2/orchestration/builds/getBatch",1];const ii=[1,"/v2/orchestration/builds/create",1];const ai=[1,"/v2/orchestration/builds/{0}/cancel"];const ui=[1,"/v2/orchestration/builds/search",3];const li=[0,"/v2/orchestration/builds/{0}/jobs",2];var fi=Object.freeze({__proto__:null,cancel:function(t,...e){return o(t,ai,...e)},create:function(t,...e){return o(t,ii,...e)},get:function(t,...e){return o(t,si,...e)},getBatch:function(t,...e){return o(t,ci,...e)},jobs:function(t,...e){return o(t,li,...e)},search:function(t,...e){return o(t,ui,...e)}});const vi=[0,"/v2/orchestration/jobs/{0}",2];const pi=[1,"/v2/orchestration/jobs/getBatch",3];var di=Object.freeze({__proto__:null,get:function(t,...e){return o(t,vi,...e)},getBatch:function(t,...e){return o(t,pi,...e)}});const _i=[1,"/v2/orchestration/schedules",3];const gi=[3,"/v2/orchestration/schedules/{0}"];const mi=[0,"/v2/orchestration/schedules/{0}",2];const bi=[1,"/v2/orchestration/schedules/getBatch",3];const hi=[2,"/v2/orchestration/schedules/{0}",3];const yi=[1,"/v2/orchestration/schedules/{0}/run"];const ji=[1,"/v2/orchestration/schedules/{0}/pause"];const Oi=[1,"/v2/orchestration/schedules/{0}/unpause"];const zi=[1,"/v2/orchestration/schedules/{0}/getAffectedResources",2];const Si=[0,"/v2/orchestration/schedules/{0}/runs",2];var ki=Object.freeze({__proto__:null,create:function(t,...e){return o(t,_i,...e)},deleteSchedule:function(t,...e){return o(t,gi,...e)},get:function(t,...e){return o(t,mi,...e)},getAffectedResources:function(t,...e){return o(t,zi,...e)},getBatch:function(t,...e){return o(t,bi,...e)},pause:function(t,...e){return o(t,ji,...e)},replace:function(t,...e){return o(t,hi,...e)},run:function(t,...e){return o(t,yi,...e)},runs:function(t,...e){return o(t,Si,...e)},unpause:function(t,...e){return o(t,Oi,...e)}});const Ti=[0,"/v2/orchestration/scheduleVersions/{0}",2];const Ai=[0,"/v2/orchestration/scheduleVersions/{0}/schedule",2];var Bi=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Ti,...e)},schedule:function(t,...e){return o(t,Ai,...e)}}),Ri=Object.freeze({__proto__:null,Builds:fi,Jobs:di,ScheduleVersions:Bi,Schedules:ki});const Mi=[1,"/v2/pack/documents",3];const Ci=[3,"/v2/pack/documents/{0}",2];const Pi=[0,"/v2/pack/documents/{0}",2];const xi=[1,"/v2/pack/documents/search",3];const wi=[1,"/v2/pack/documents/{0}/update",3];var Ii=Object.freeze({__proto__:null,create:function(t,...e){return o(t,Mi,...e)},deleteDocument:function(t,...e){return o(t,Ci,...e)},get:function(t,...e){return o(t,Pi,...e)},search:function(t,...e){return o(t,xi,...e)},update:function(t,...e){return o(t,wi,...e)}});const Vi=[1,"/v2/pack/documentTypes",3];const Di=[0,"/v2/pack/documentTypes/{0}",2];const Ei=[1,"/v2/pack/documentTypes/loadByName",3];const Li=[1,"/v2/pack/documentTypes/createFirstParty",3];const qi=[1,"/v2/pack/documentTypes/updateSchema",3];const Fi=[1,"/v2/pack/documentTypes/getOperationalVersion",3];var Wi=Object.freeze({__proto__:null,create:function(t,...e){return o(t,Vi,...e)},createFirstParty:function(t,...e){return o(t,Li,...e)},get:function(t,...e){return o(t,Di,...e)},getOperationalVersion:function(t,...e){return o(t,Fi,...e)},loadByName:function(t,...e){return o(t,Ei,...e)},updateSchema:function(t,...e){return o(t,qi,...e)}}),Hi=Object.freeze({__proto__:null,DocumentTypes:Wi,Documents:Ii});const Gi=[0,"/v2/publicApis/apiDefinitions/{0}",2];var Ji=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Gi,...e)}});const Ni=[0,"/v2/publicApis/openApiDefinitions/{0}",2];var Ui=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Ni,...e)}}),Qi=Object.freeze({__proto__:null,ApiDefinitions:Ji,OpenApiDefinitions:Ui});const Ki=[1,"/v2/sqlQueries/execute",1];const $i=[0,"/v2/sqlQueries/{0}/getStatus"];const Xi=[1,"/v2/sqlQueries/{0}/cancel"];const Yi=[0,"/v2/sqlQueries/{0}/getResults",,,"application/octet-stream"];const Zi=[1,"/v2/sqlQueries/executeOntology",3,,"application/octet-stream"];var ta=Object.freeze({__proto__:null,cancel:function(t,...e){return o(t,Xi,...e)},execute:function(t,...e){return o(t,Ki,...e)},executeOntology:function(t,...e){return o(t,Zi,...e)},getResults:function(t,...e){return o(t,Yi,...e)},getStatus:function(t,...e){return o(t,$i,...e)}}),ea=Object.freeze({__proto__:null,SqlQueries:ta});const na=[1,"/v2/streams/datasets/create",3];var oa=Object.freeze({__proto__:null,create:function(t,...e){return o(t,na,...e)}});const ra=[1,"/v2/streams/datasets/{0}/streams",3];const sa=[0,"/v2/streams/datasets/{0}/streams/{1}"];const ca=[1,"/v2/highScale/streams/datasets/{0}/streams/{1}/publishRecord",1];const ia=[1,"/v2/highScale/streams/datasets/{0}/streams/{1}/publishRecords",1];const aa=[1,"/v2/highScale/streams/datasets/{0}/streams/{1}/publishBinaryRecord",3,"application/octet-stream"];const ua=[1,"/v2/streams/datasets/{0}/streams/{1}/reset",3];const la=[0,"/v2/highScale/streams/datasets/{0}/streams/{1}/getRecords",2];const fa=[0,"/v2/highScale/streams/datasets/{0}/streams/{1}/getEndOffsets",2];var va=Object.freeze({__proto__:null,create:function(t,...e){return o(t,ra,...e)},get:function(t,...e){return o(t,sa,...e)},getEndOffsets:function(t,...e){return o(t,fa,...e)},getRecords:function(t,...e){return o(t,la,...e)},publishBinaryRecord:function(t,...e){return o(t,aa,...e)},publishRecord:function(t,...e){return o(t,ca,...e)},publishRecords:function(t,...e){return o(t,ia,...e)},reset:function(t,...e){return o(t,ua,...e)}});const pa=[1,"/v2/streams/datasets/{0}/streams/{1}/subscribers",3];const da=[3,"/v2/streams/datasets/{0}/streams/{1}/subscribers/{2}",2];const _a=[1,"/v2/highScale/streams/datasets/{0}/streams/{1}/subscribers/{2}/readRecords",3];const ga=[1,"/v2/highScale/streams/datasets/{0}/streams/{1}/subscribers/{2}/commitOffsets",3];const ma=[0,"/v2/highScale/streams/datasets/{0}/streams/{1}/subscribers/{2}/getReadPosition",2];const ba=[1,"/v2/highScale/streams/datasets/{0}/streams/{1}/subscribers/{2}/resetOffsets",3];var ha=Object.freeze({__proto__:null,commitOffsets:function(t,...e){return o(t,ga,...e)},create:function(t,...e){return o(t,pa,...e)},deleteSubscriber:function(t,...e){return o(t,da,...e)},getReadPosition:function(t,...e){return o(t,ma,...e)},readRecords:function(t,...e){return o(t,_a,...e)},resetOffsets:function(t,...e){return o(t,ba,...e)}}),ya=Object.freeze({__proto__:null,Datasets:oa,Streams:va,Subscribers:ha});const ja=[0,"/v2/thirdPartyApplications/{0}",2];var Oa=Object.freeze({__proto__:null,get:function(t,...e){return o(t,ja,...e)}});const za=[3,"/v2/thirdPartyApplications/{0}/website/versions/{1}"];const Sa=[0,"/v2/thirdPartyApplications/{0}/website/versions",2];const ka=[0,"/v2/thirdPartyApplications/{0}/website/versions/{1}"];const Ta=[1,"/v2/thirdPartyApplications/{0}/website/versions/upload",3,"application/octet-stream"];const Aa=[1,"/v2/thirdPartyApplications/{0}/website/versions/uploadSnapshot",3,"application/octet-stream"];var Ba=Object.freeze({__proto__:null,deleteVersion:function(t,...e){return o(t,za,...e)},get:function(t,...e){return o(t,ka,...e)},list:function(t,...e){return o(t,Sa,...e)},upload:function(t,...e){return o(t,Ta,...e)},uploadSnapshot:function(t,...e){return o(t,Aa,...e)}});const Ra=[0,"/v2/thirdPartyApplications/{0}/website"];const Ma=[1,"/v2/thirdPartyApplications/{0}/website/deploy",1];const Ca=[1,"/v2/thirdPartyApplications/{0}/website/undeploy"];var Pa=Object.freeze({__proto__:null,deploy:function(t,...e){return o(t,Ma,...e)},get:function(t,...e){return o(t,Ra,...e)},undeploy:function(t,...e){return o(t,Ca,...e)}}),xa=Object.freeze({__proto__:null,ThirdPartyApplications:Oa,Versions:Ba,Websites:Pa});const wa=[1,"/v2/widgets/devModeSettings/enable",2];const Ia=[1,"/v2/widgets/devModeSettings/setWidgetSetById",3];var Va=Object.freeze({__proto__:null,enable:function(t,...e){return o(t,wa,...e)},setWidgetSetById:function(t,...e){return o(t,Ia,...e)}});const Da=[1,"/v2/widgets/devModeSettingsV2/enable",2];const Ea=[1,"/v2/widgets/devModeSettingsV2/setWidgetSetManifest",3];var La=Object.freeze({__proto__:null,enable:function(t,...e){return o(t,Da,...e)},setWidgetSetManifest:function(t,...e){return o(t,Ea,...e)}});const qa=[3,"/v2/widgets/widgetSets/{0}/releases/{1}",2];const Fa=[0,"/v2/widgets/widgetSets/{0}/releases",2];const Wa=[0,"/v2/widgets/widgetSets/{0}/releases/{1}",2];var Ha=Object.freeze({__proto__:null,deleteRelease:function(t,...e){return o(t,qa,...e)},get:function(t,...e){return o(t,Wa,...e)},list:function(t,...e){return o(t,Fa,...e)}});const Ga=[0,"/v2/widgets/repositories/{0}",2];const Ja=[1,"/v2/widgets/repositories/{0}/publish",3,"application/octet-stream"];var Na=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Ga,...e)},publish:function(t,...e){return o(t,Ja,...e)}});const Ua=[0,"/v2/widgets/widgetSets/{0}",2];var Qa=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Ua,...e)}}),Ka=Object.freeze({__proto__:null,Releases:Ha,Repositories:Na,WidgetSets:Qa,WidgetsDevModeSettings:Va,WidgetsDevModeSettingsV2:La});export{Et as Admin,se as AipAgents,ue as Audit,de as Checkpoints,Le as Connectivity,qe as Core,Ke as DataHealth,In as Datasets,zo as Filesystem,Eo as Functions,Lo as Geo,Go as LanguageModels,fr as MediaSets,Zr as Models,ls as Notepad,ei as Ontologies,ri as Operations,Ri as Orchestration,Hi as Pack,Qi as PublicApis,ea as SqlQueries,ya as Streams,xa as ThirdPartyApplications,Ka as Widgets};
1
+ const t=Symbol("ClientContext");class e extends Error{constructor(t,e,n,o,r,s,c){super(t),this.message=t,this.errorName=e,this.errorCode=n,this.errorDescription=o,this.statusCode=r,this.errorInstanceId=s,this.parameters=c}}class n extends e{constructor(t,e,n,o){super(t,e,void 0,void 0,o),this.originalError=n}}async function o(o,[r,s,c,i,a],...u){const l=s.replace(/\{([^}]+)\}/g,()=>encodeURIComponent(u.shift())),f=1&c?u.shift():void 0,v=2&c?u.shift():void 0,p=4&c?u.shift():void 0,d=["GET","POST","PUT","DELETE","PATCH"][r];return await async function(t,o,r,s,c,i,a,u){const l=function(t,e){return t+=t.endsWith("/")?"":"/",new URL(`api${e}`,t)}(t.baseUrl,r);for(const[t,e]of Object.entries(c||{}))if(null!=e)if(Array.isArray(e))for(const n of e)l.searchParams.append(t,n);else l.searchParams.append(t,e);const f=new Headers;f.set("Content-Type",a??"application/json"),f.set("Accept",u??"application/json"),Object.entries(i||{}).forEach(([t,e])=>{"Content-Type"===t&&"string"==typeof e?f.set("Content-Type",e):"Accept"===t&&"string"==typeof e?f.set("Accept",e):null!=e&&f.append(t,e.toString())});const v=null==s||s instanceof globalThis.Blob?s:JSON.stringify(s),p=await t.fetch(l.toString(),{body:v,method:o,headers:f});if(!p.ok)try{const t=await p.json();return new e(t.message,t.errorName,t.errorCode,t.errorDescription,p.status,t.errorInstanceId,t.parameters)}catch(t){return t instanceof Error?new n(t.message,"UNKNOWN"):new n("Unable to parse error response","UNKNOWN")}if(204===p.status)return;if(null==u||"application/json"===u)return await p.json();return p}(o.__osdkClientContext??o[t]??o,d,l,f,v,p,i,a)}const r=[0,"/v2/admin/enrollments/{0}/authenticationProviders",2];const s=[0,"/v2/admin/enrollments/{0}/authenticationProviders/{1}",2];const c=[1,"/v2/admin/enrollments/{0}/authenticationProviders/{1}/preregisterUser",3];const i=[1,"/v2/admin/enrollments/{0}/authenticationProviders/{1}/preregisterGroup",3];var a=Object.freeze({__proto__:null,get:function(t,...e){return o(t,s,...e)},list:function(t,...e){return o(t,r,...e)},preregisterGroup:function(t,...e){return o(t,i,...e)},preregisterUser:function(t,...e){return o(t,c,...e)}});const u=[0,"/v2/admin/cbacBanner",2];var l=Object.freeze({__proto__:null,get:function(t,...e){return o(t,u,...e)}});const f=[0,"/v2/admin/cbacMarkingRestrictions",2];var v=Object.freeze({__proto__:null,get:function(t,...e){return o(t,f,...e)}});const p=[0,"/v2/admin/enrollments/{0}",2];const d=[0,"/v2/admin/enrollments/getCurrent",2];var _=Object.freeze({__proto__:null,get:function(t,...e){return o(t,p,...e)},getCurrent:function(t,...e){return o(t,d,...e)}});const g=[0,"/v2/admin/enrollments/{0}/roleAssignments",2];const m=[1,"/v2/admin/enrollments/{0}/roleAssignments/add",3];const b=[1,"/v2/admin/enrollments/{0}/roleAssignments/remove",3];var h=Object.freeze({__proto__:null,add:function(t,...e){return o(t,m,...e)},list:function(t,...e){return o(t,g,...e)},remove:function(t,...e){return o(t,b,...e)}});const y=[1,"/v2/admin/groups",1];const j=[3,"/v2/admin/groups/{0}"];const O=[0,"/v2/admin/groups",2];const z=[0,"/v2/admin/groups/{0}"];const S=[1,"/v2/admin/groups/getBatch",1];const k=[2,"/v2/admin/groups/{0}",1];const T=[0,"/v2/admin/groups/listCurrent",2];const A=[1,"/v2/admin/groups/search",1];var B=Object.freeze({__proto__:null,create:function(t,...e){return o(t,y,...e)},deleteGroup:function(t,...e){return o(t,j,...e)},get:function(t,...e){return o(t,z,...e)},getBatch:function(t,...e){return o(t,S,...e)},list:function(t,...e){return o(t,O,...e)},listCurrent:function(t,...e){return o(t,T,...e)},replace:function(t,...e){return o(t,k,...e)},search:function(t,...e){return o(t,A,...e)}});const R=[0,"/v2/admin/groups/{0}/groupMembers",2];const M=[1,"/v2/admin/groups/{0}/groupMembers/add",1];const C=[1,"/v2/admin/groups/{0}/groupMembers/remove",1];var P=Object.freeze({__proto__:null,add:function(t,...e){return o(t,M,...e)},list:function(t,...e){return o(t,R,...e)},remove:function(t,...e){return o(t,C,...e)}});const x=[0,"/v2/admin/users/{0}/groupMemberships",2];var w=Object.freeze({__proto__:null,list:function(t,...e){return o(t,x,...e)}});const I=[0,"/v2/admin/groups/{0}/membershipExpirationPolicy",2];const V=[2,"/v2/admin/groups/{0}/membershipExpirationPolicy",3];var D=Object.freeze({__proto__:null,get:function(t,...e){return o(t,I,...e)},replace:function(t,...e){return o(t,V,...e)}});const E=[0,"/v2/admin/groups/{0}/providerInfo"];const L=[2,"/v2/admin/groups/{0}/providerInfo",1];var q=Object.freeze({__proto__:null,get:function(t,...e){return o(t,E,...e)},replace:function(t,...e){return o(t,L,...e)}});const F=[0,"/v2/admin/enrollments/{0}/hosts",2];var W=Object.freeze({__proto__:null,list:function(t,...e){return o(t,F,...e)}});const H=[1,"/v2/admin/markings",1];const G=[0,"/v2/admin/markings",2];const J=[0,"/v2/admin/markings/{0}"];const N=[1,"/v2/admin/markings/getBatch",1];const U=[2,"/v2/admin/markings/{0}",1];const Q=[1,"/v2/admin/markings/parseClassifications",3];var K=Object.freeze({__proto__:null,create:function(t,...e){return o(t,H,...e)},get:function(t,...e){return o(t,J,...e)},getBatch:function(t,...e){return o(t,N,...e)},list:function(t,...e){return o(t,G,...e)},parseClassifications:function(t,...e){return o(t,Q,...e)},replace:function(t,...e){return o(t,U,...e)}});const $=[1,"/v2/admin/markingCategories",3];const X=[0,"/v2/admin/markingCategories",2];const Y=[0,"/v2/admin/markingCategories/{0}"];const Z=[2,"/v2/admin/markingCategories/{0}",3];var tt=Object.freeze({__proto__:null,create:function(t,...e){return o(t,$,...e)},get:function(t,...e){return o(t,Y,...e)},list:function(t,...e){return o(t,X,...e)},replace:function(t,...e){return o(t,Z,...e)}});const et=[0,"/v2/admin/markings/{0}/markingMembers",2];const nt=[1,"/v2/admin/markings/{0}/markingMembers/add",1];const ot=[1,"/v2/admin/markings/{0}/markingMembers/remove",1];var rt=Object.freeze({__proto__:null,add:function(t,...e){return o(t,nt,...e)},list:function(t,...e){return o(t,et,...e)},remove:function(t,...e){return o(t,ot,...e)}});const st=[0,"/v2/admin/markings/{0}/roleAssignments",2];const ct=[1,"/v2/admin/markings/{0}/roleAssignments/add",1];const it=[1,"/v2/admin/markings/{0}/roleAssignments/remove",1];var at=Object.freeze({__proto__:null,add:function(t,...e){return o(t,ct,...e)},list:function(t,...e){return o(t,st,...e)},remove:function(t,...e){return o(t,it,...e)}});const ut=[1,"/v2/admin/organizations",3];const lt=[0,"/v2/admin/organizations/{0}"];const ft=[2,"/v2/admin/organizations/{0}",1];const vt=[0,"/v2/admin/organizations/{0}/listAvailableRoles"];var pt=Object.freeze({__proto__:null,create:function(t,...e){return o(t,ut,...e)},get:function(t,...e){return o(t,lt,...e)},listAvailableRoles:function(t,...e){return o(t,vt,...e)},replace:function(t,...e){return o(t,ft,...e)}});const dt=[0,"/v2/admin/organizations/{0}/guestMembers",2];const _t=[1,"/v2/admin/organizations/{0}/guestMembers/add",3];const gt=[1,"/v2/admin/organizations/{0}/guestMembers/remove",3];var mt=Object.freeze({__proto__:null,add:function(t,...e){return o(t,_t,...e)},list:function(t,...e){return o(t,dt,...e)},remove:function(t,...e){return o(t,gt,...e)}});const bt=[0,"/v2/admin/organizations/{0}/roleAssignments"];const ht=[1,"/v2/admin/organizations/{0}/roleAssignments/add",1];const yt=[1,"/v2/admin/organizations/{0}/roleAssignments/remove",1];var jt=Object.freeze({__proto__:null,add:function(t,...e){return o(t,ht,...e)},list:function(t,...e){return o(t,bt,...e)},remove:function(t,...e){return o(t,yt,...e)}});const Ot=[0,"/v2/admin/roles/{0}",2];const zt=[1,"/v2/admin/roles/getBatch",3];var St=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Ot,...e)},getBatch:function(t,...e){return o(t,zt,...e)}});const kt=[3,"/v2/admin/users/{0}"];const Tt=[0,"/v2/admin/users",2];const At=[0,"/v2/admin/users/{0}",2];const Bt=[1,"/v2/admin/users/getBatch",1];const Rt=[0,"/v2/admin/users/getCurrent"];const Mt=[0,"/v2/admin/users/{0}/getMarkings"];const Ct=[0,"/v2/admin/users/{0}/profilePicture",,,"application/octet-stream"];const Pt=[1,"/v2/admin/users/search",1];const xt=[1,"/v2/admin/users/{0}/revokeAllTokens"];var wt=Object.freeze({__proto__:null,deleteUser:function(t,...e){return o(t,kt,...e)},get:function(t,...e){return o(t,At,...e)},getBatch:function(t,...e){return o(t,Bt,...e)},getCurrent:function(t,...e){return o(t,Rt,...e)},getMarkings:function(t,...e){return o(t,Mt,...e)},list:function(t,...e){return o(t,Tt,...e)},profilePicture:function(t,...e){return o(t,Ct,...e)},revokeAllTokens:function(t,...e){return o(t,xt,...e)},search:function(t,...e){return o(t,Pt,...e)}});const It=[0,"/v2/admin/users/{0}/providerInfo"];const Vt=[2,"/v2/admin/users/{0}/providerInfo",1];var Dt=Object.freeze({__proto__:null,get:function(t,...e){return o(t,It,...e)},replace:function(t,...e){return o(t,Vt,...e)}}),Et=Object.freeze({__proto__:null,AuthenticationProviders:a,CbacBanners:l,CbacMarkingRestrictionsObjects:v,EnrollmentRoleAssignments:h,Enrollments:_,GroupMembers:P,GroupMembershipExpirationPolicies:D,GroupMemberships:w,GroupProviderInfos:q,Groups:B,Hosts:W,MarkingCategories:tt,MarkingMembers:rt,MarkingRoleAssignments:at,Markings:K,OrganizationGuestMembers:mt,OrganizationRoleAssignments:jt,Organizations:pt,Roles:St,UserProviderInfos:Dt,Users:wt});const Lt=[0,"/v2/aipAgents/agents/{0}",2];const qt=[0,"/v2/aipAgents/agents/allSessions",2];var Ft=Object.freeze({__proto__:null,allSessions:function(t,...e){return o(t,qt,...e)},get:function(t,...e){return o(t,Lt,...e)}});const Wt=[0,"/v2/aipAgents/agents/{0}/agentVersions",2];const Ht=[0,"/v2/aipAgents/agents/{0}/agentVersions/{1}",2];var Gt=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Ht,...e)},list:function(t,...e){return o(t,Wt,...e)}});const Jt=[0,"/v2/aipAgents/agents/{0}/sessions/{1}/content",2];var Nt=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Jt,...e)}});const Ut=[1,"/v2/aipAgents/agents/{0}/sessions",3];const Qt=[3,"/v2/aipAgents/agents/{0}/sessions/{1}",2];const Kt=[0,"/v2/aipAgents/agents/{0}/sessions",2];const $t=[0,"/v2/aipAgents/agents/{0}/sessions/{1}",2];const Xt=[1,"/v2/aipAgents/agents/{0}/sessions/{1}/blockingContinue",3];const Yt=[1,"/v2/aipAgents/agents/{0}/sessions/{1}/streamingContinue",3,,"application/octet-stream"];const Zt=[1,"/v2/aipAgents/agents/{0}/sessions/{1}/cancel",3];const te=[2,"/v2/aipAgents/agents/{0}/sessions/{1}/ragContext",3];const ee=[2,"/v2/aipAgents/agents/{0}/sessions/{1}/updateTitle",3];var ne=Object.freeze({__proto__:null,blockingContinue:function(t,...e){return o(t,Xt,...e)},cancel:function(t,...e){return o(t,Zt,...e)},create:function(t,...e){return o(t,Ut,...e)},deleteSession:function(t,...e){return o(t,Qt,...e)},get:function(t,...e){return o(t,$t,...e)},list:function(t,...e){return o(t,Kt,...e)},ragContext:function(t,...e){return o(t,te,...e)},streamingContinue:function(t,...e){return o(t,Yt,...e)},updateTitle:function(t,...e){return o(t,ee,...e)}});const oe=[0,"/v2/aipAgents/agents/{0}/sessions/{1}/sessionTraces/{2}",2];var re=Object.freeze({__proto__:null,get:function(t,...e){return o(t,oe,...e)}}),se=Object.freeze({__proto__:null,AgentVersions:Gt,Agents:Ft,Contents:Nt,SessionTraces:re,Sessions:ne});const ce=[0,"/v2/audit/organizations/{0}/logFiles",2];const ie=[0,"/v2/audit/organizations/{0}/logFiles/{1}/content",,,"application/octet-stream"];var ae=Object.freeze({__proto__:null,content:function(t,...e){return o(t,ie,...e)},list:function(t,...e){return o(t,ce,...e)}}),ue=Object.freeze({__proto__:null,LogFiles:ae});const le=[0,"/v2/checkpoints/records/{0}",2];const fe=[1,"/v2/checkpoints/records/getBatch",3];const ve=[1,"/v2/checkpoints/records/search",3];var pe=Object.freeze({__proto__:null,get:function(t,...e){return o(t,le,...e)},getBatch:function(t,...e){return o(t,fe,...e)},search:function(t,...e){return o(t,ve,...e)}}),de=Object.freeze({__proto__:null,Records:pe});const _e=[1,"/v2/connectivity/connections",1];const ge=[0,"/v2/connectivity/connections/{0}"];const me=[1,"/v2/connectivity/connections/{0}/updateExportSettings",1];const be=[1,"/v2/connectivity/connections/{0}/updateSecrets",1];const he=[0,"/v2/connectivity/connections/{0}/getConfiguration"];const ye=[1,"/v2/connectivity/connections/getConfigurationBatch",1];const je=[1,"/v2/connectivity/connections/{0}/uploadCustomJdbcDrivers",3,"application/octet-stream"];var Oe=Object.freeze({__proto__:null,create:function(t,...e){return o(t,_e,...e)},get:function(t,...e){return o(t,ge,...e)},getConfiguration:function(t,...e){return o(t,he,...e)},getConfigurationBatch:function(t,...e){return o(t,ye,...e)},updateExportSettings:function(t,...e){return o(t,me,...e)},updateSecrets:function(t,...e){return o(t,be,...e)},uploadCustomJdbcDrivers:function(t,...e){return o(t,je,...e)}});const ze=[1,"/v2/connectivity/connections/{0}/fileImports",1];const Se=[3,"/v2/connectivity/connections/{0}/fileImports/{1}"];const ke=[0,"/v2/connectivity/connections/{0}/fileImports",2];const Te=[0,"/v2/connectivity/connections/{0}/fileImports/{1}"];const Ae=[2,"/v2/connectivity/connections/{0}/fileImports/{1}",1];const Be=[1,"/v2/connectivity/connections/{0}/fileImports/{1}/execute"];var Re=Object.freeze({__proto__:null,create:function(t,...e){return o(t,ze,...e)},deleteFileImport:function(t,...e){return o(t,Se,...e)},execute:function(t,...e){return o(t,Be,...e)},get:function(t,...e){return o(t,Te,...e)},list:function(t,...e){return o(t,ke,...e)},replace:function(t,...e){return o(t,Ae,...e)}});const Me=[1,"/v2/connectivity/connections/{0}/tableImports",1];const Ce=[3,"/v2/connectivity/connections/{0}/tableImports/{1}"];const Pe=[0,"/v2/connectivity/connections/{0}/tableImports",2];const xe=[0,"/v2/connectivity/connections/{0}/tableImports/{1}"];const we=[2,"/v2/connectivity/connections/{0}/tableImports/{1}",1];const Ie=[1,"/v2/connectivity/connections/{0}/tableImports/{1}/execute"];var Ve=Object.freeze({__proto__:null,create:function(t,...e){return o(t,Me,...e)},deleteTableImport:function(t,...e){return o(t,Ce,...e)},execute:function(t,...e){return o(t,Ie,...e)},get:function(t,...e){return o(t,xe,...e)},list:function(t,...e){return o(t,Pe,...e)},replace:function(t,...e){return o(t,we,...e)}});const De=[1,"/v2/connectivity/connections/{0}/virtualTables",1];var Ee=Object.freeze({__proto__:null,create:function(t,...e){return o(t,De,...e)}}),Le=Object.freeze({__proto__:null,Connections:Oe,FileImports:Re,TableImports:Ve,VirtualTables:Ee}),qe=Object.freeze({__proto__:null});const Fe=[1,"/v2/dataHealth/checks",3];const We=[3,"/v2/dataHealth/checks/{0}",2];const He=[0,"/v2/dataHealth/checks/{0}",2];const Ge=[2,"/v2/dataHealth/checks/{0}",3];var Je=Object.freeze({__proto__:null,create:function(t,...e){return o(t,Fe,...e)},deleteCheck:function(t,...e){return o(t,We,...e)},get:function(t,...e){return o(t,He,...e)},replace:function(t,...e){return o(t,Ge,...e)}});const Ne=[0,"/v2/dataHealth/checks/{0}/checkReports/{1}",2];const Ue=[0,"/v2/dataHealth/checks/{0}/checkReports/getLatest",2];var Qe=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Ne,...e)},getLatest:function(t,...e){return o(t,Ue,...e)}}),Ke=Object.freeze({__proto__:null,CheckReports:Qe,Checks:Je});const $e=[1,"/v2/datasets/{0}/branches",1];const Xe=[3,"/v2/datasets/{0}/branches/{1}"];const Ye=[0,"/v2/datasets/{0}/branches",2];const Ze=[0,"/v2/datasets/{0}/branches/{1}"];const tn=[0,"/v2/datasets/{0}/branches/{1}/transactions",2];var en=Object.freeze({__proto__:null,create:function(t,...e){return o(t,$e,...e)},deleteBranch:function(t,...e){return o(t,Xe,...e)},get:function(t,...e){return o(t,Ze,...e)},list:function(t,...e){return o(t,Ye,...e)},transactions:function(t,...e){return o(t,tn,...e)}});const nn=[1,"/v2/datasets",1];const on=[0,"/v2/datasets/{0}"];const rn=[0,"/v2/datasets/{0}/getSchedules",2];const sn=[0,"/v2/datasets/{0}/getHealthChecks",2];const cn=[0,"/v2/datasets/{0}/getHealthCheckReports",2];const an=[0,"/v2/datasets/{0}/readTable",2,,"application/octet-stream"];const un=[0,"/v2/datasets/{0}/getSchema",2];const ln=[1,"/v2/datasets/getSchemaBatch",1];const fn=[2,"/v2/datasets/{0}/putSchema",1];const vn=[1,"/v2/datasets/{0}/jobs",3];const pn=[0,"/v2/datasets/{0}/transactions",2];var dn=Object.freeze({__proto__:null,create:function(t,...e){return o(t,nn,...e)},get:function(t,...e){return o(t,on,...e)},getHealthCheckReports:function(t,...e){return o(t,cn,...e)},getHealthChecks:function(t,...e){return o(t,sn,...e)},getSchedules:function(t,...e){return o(t,rn,...e)},getSchema:function(t,...e){return o(t,un,...e)},getSchemaBatch:function(t,...e){return o(t,ln,...e)},jobs:function(t,...e){return o(t,vn,...e)},putSchema:function(t,...e){return o(t,fn,...e)},readTable:function(t,...e){return o(t,an,...e)},transactions:function(t,...e){return o(t,pn,...e)}});const _n=[3,"/v2/datasets/{0}/files/{1}",2];const gn=[0,"/v2/datasets/{0}/files",2];const mn=[0,"/v2/datasets/{0}/files/{1}",2];const bn=[1,"/v2/datasets/{0}/files/{1}/upload",3,"application/octet-stream"];const hn=[0,"/v2/datasets/{0}/files/{1}/content",2,,"application/octet-stream"];var yn=Object.freeze({__proto__:null,content:function(t,...e){return o(t,hn,...e)},deleteFile:function(t,...e){return o(t,_n,...e)},get:function(t,...e){return o(t,mn,...e)},list:function(t,...e){return o(t,gn,...e)},upload:function(t,...e){return o(t,bn,...e)}});const jn=[1,"/v2/datasets/{0}/transactions",3];const On=[0,"/v2/datasets/{0}/transactions/{1}"];const zn=[1,"/v2/datasets/{0}/transactions/{1}/commit"];const Sn=[1,"/v2/datasets/{0}/transactions/{1}/abort"];const kn=[0,"/v2/datasets/{0}/transactions/{1}/build",2];const Tn=[0,"/v2/datasets/{0}/transactions/{1}/job",2];var An=Object.freeze({__proto__:null,abort:function(t,...e){return o(t,Sn,...e)},build:function(t,...e){return o(t,kn,...e)},commit:function(t,...e){return o(t,zn,...e)},create:function(t,...e){return o(t,jn,...e)},get:function(t,...e){return o(t,On,...e)},job:function(t,...e){return o(t,Tn,...e)}});const Bn=[1,"/v2/datasets/views",1];const Rn=[0,"/v2/datasets/views/{0}",2];const Mn=[1,"/v2/datasets/views/{0}/addBackingDatasets",1];const Cn=[2,"/v2/datasets/views/{0}/replaceBackingDatasets",1];const Pn=[1,"/v2/datasets/views/{0}/removeBackingDatasets",1];const xn=[1,"/v2/datasets/views/{0}/addPrimaryKey",1];var wn=Object.freeze({__proto__:null,addBackingDatasets:function(t,...e){return o(t,Mn,...e)},addPrimaryKey:function(t,...e){return o(t,xn,...e)},create:function(t,...e){return o(t,Bn,...e)},get:function(t,...e){return o(t,Rn,...e)},removeBackingDatasets:function(t,...e){return o(t,Pn,...e)},replaceBackingDatasets:function(t,...e){return o(t,Cn,...e)}}),In=Object.freeze({__proto__:null,Branches:en,Datasets:dn,Files:yn,Transactions:An,Views:wn});const Vn=[1,"/v2/filesystem/folders",1];const Dn=[0,"/v2/filesystem/folders/{0}"];const En=[1,"/v2/filesystem/folders/getBatch",1];const Ln=[2,"/v2/filesystem/folders/{0}",3];const qn=[0,"/v2/filesystem/folders/{0}/children",2];var Fn=Object.freeze({__proto__:null,children:function(t,...e){return o(t,qn,...e)},create:function(t,...e){return o(t,Vn,...e)},get:function(t,...e){return o(t,Dn,...e)},getBatch:function(t,...e){return o(t,En,...e)},replace:function(t,...e){return o(t,Ln,...e)}});const Wn=[0,"/v2/filesystem/projects/{0}"];const Hn=[2,"/v2/filesystem/projects/{0}",3];const Gn=[1,"/v2/filesystem/projects/create",1];const Jn=[1,"/v2/filesystem/projects/createFromTemplate",1];const Nn=[1,"/v2/filesystem/projects/{0}/addOrganizations",1];const Un=[1,"/v2/filesystem/projects/{0}/removeOrganizations",1];const Qn=[0,"/v2/filesystem/projects/{0}/organizations",2];var Kn=Object.freeze({__proto__:null,addOrganizations:function(t,...e){return o(t,Nn,...e)},create:function(t,...e){return o(t,Gn,...e)},createFromTemplate:function(t,...e){return o(t,Jn,...e)},get:function(t,...e){return o(t,Wn,...e)},organizations:function(t,...e){return o(t,Qn,...e)},removeOrganizations:function(t,...e){return o(t,Un,...e)},replace:function(t,...e){return o(t,Hn,...e)}});const $n=[0,"/v2/filesystem/projects/{0}/references",2];const Xn=[1,"/v2/filesystem/projects/{0}/references/add",1];const Yn=[1,"/v2/filesystem/projects/{0}/references/remove",1];var Zn=Object.freeze({__proto__:null,add:function(t,...e){return o(t,Xn,...e)},list:function(t,...e){return o(t,$n,...e)},remove:function(t,...e){return o(t,Yn,...e)}});const to=[3,"/v2/filesystem/resources/{0}"];const eo=[0,"/v2/filesystem/resources/{0}"];const no=[1,"/v2/filesystem/resources/getBatch",1];const oo=[0,"/v2/filesystem/resources/getByPath",2];const ro=[1,"/v2/filesystem/resources/getByPathBatch",1];const so=[1,"/v2/filesystem/resources/{0}/restore"];const co=[1,"/v2/filesystem/resources/{0}/permanentlyDelete"];const io=[1,"/v2/filesystem/resources/{0}/addMarkings",1];const ao=[1,"/v2/filesystem/resources/{0}/removeMarkings",1];const uo=[0,"/v2/filesystem/resources/{0}/getAccessRequirements"];const lo=[0,"/v2/filesystem/resources/{0}/markings",2];var fo=Object.freeze({__proto__:null,addMarkings:function(t,...e){return o(t,io,...e)},deleteResource:function(t,...e){return o(t,to,...e)},get:function(t,...e){return o(t,eo,...e)},getAccessRequirements:function(t,...e){return o(t,uo,...e)},getBatch:function(t,...e){return o(t,no,...e)},getByPath:function(t,...e){return o(t,oo,...e)},getByPathBatch:function(t,...e){return o(t,ro,...e)},markings:function(t,...e){return o(t,lo,...e)},permanentlyDelete:function(t,...e){return o(t,co,...e)},removeMarkings:function(t,...e){return o(t,ao,...e)},restore:function(t,...e){return o(t,so,...e)}});const vo=[0,"/v2/filesystem/resources/{0}/roles",2];const po=[1,"/v2/filesystem/resources/{0}/roles/add",1];const _o=[1,"/v2/filesystem/resources/{0}/roles/remove",1];var go=Object.freeze({__proto__:null,add:function(t,...e){return o(t,po,...e)},list:function(t,...e){return o(t,vo,...e)},remove:function(t,...e){return o(t,_o,...e)}});const mo=[1,"/v2/filesystem/spaces",3];const bo=[3,"/v2/filesystem/spaces/{0}",2];const ho=[0,"/v2/filesystem/spaces",2];const yo=[0,"/v2/filesystem/spaces/{0}",2];const jo=[2,"/v2/filesystem/spaces/{0}",3];var Oo=Object.freeze({__proto__:null,create:function(t,...e){return o(t,mo,...e)},deleteSpace:function(t,...e){return o(t,bo,...e)},get:function(t,...e){return o(t,yo,...e)},list:function(t,...e){return o(t,ho,...e)},replace:function(t,...e){return o(t,jo,...e)}}),zo=Object.freeze({__proto__:null,Folders:Fn,ProjectResourceReferences:Zn,Projects:Kn,ResourceRoles:go,Resources:fo,Spaces:Oo});const So=[1,"/v2/functions/executions/{0}/getResult",3];const ko=[1,"/v2/functions/executions/{0}/cancel",2];var To=Object.freeze({__proto__:null,cancel:function(t,...e){return o(t,ko,...e)},getResult:function(t,...e){return o(t,So,...e)}});const Ao=[0,"/v2/functions/queries/{0}",2];const Bo=[0,"/v2/functions/queries/getByRid",2];const Ro=[1,"/v2/functions/queries/getByRidBatch",3];const Mo=[1,"/v2/functions/queries/{0}/execute",7];const Co=[1,"/v2/functions/queries/{0}/streamingExecute",7,,"application/octet-stream"];const Po=[1,"/v2/functions/queries/{0}/executeAsync",7];var xo=Object.freeze({__proto__:null,execute:function(t,...e){return o(t,Mo,...e)},executeAsync:function(t,...e){return o(t,Po,...e)},get:function(t,...e){return o(t,Ao,...e)},getByRid:function(t,...e){return o(t,Bo,...e)},getByRidBatch:function(t,...e){return o(t,Ro,...e)},streamingExecute:function(t,...e){return o(t,Co,...e)}});const wo=[0,"/v2/functions/valueTypes/{0}",2];var Io=Object.freeze({__proto__:null,get:function(t,...e){return o(t,wo,...e)}});const Vo=[0,"/v2/functions/valueTypes/{0}/versionIds/{1}",2];var Do=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Vo,...e)}}),Eo=Object.freeze({__proto__:null,Executions:To,Queries:xo,ValueTypes:Io,VersionIds:Do}),Lo=Object.freeze({__proto__:null});const qo=[1,"/v2/languageModels/anthropic/{0}/messages",7];var Fo=Object.freeze({__proto__:null,messages:function(t,...e){return o(t,qo,...e)}});const Wo=[1,"/v2/languageModels/openAi/{0}/embeddings",7];var Ho=Object.freeze({__proto__:null,embeddings:function(t,...e){return o(t,Wo,...e)}}),Go=Object.freeze({__proto__:null,Anthropic:Fo,OpenAi:Ho});const Jo=[1,"/v2/mediasets/{0}/transactions/{1}/abort",2];const No=[0,"/v2/mediasets/{0}/items/{1}/transform/imagery/thumbnail/calculate",6];const Uo=[3,"/v2/mediasets/{0}/items/clearAtPath",2];const Qo=[1,"/v2/mediasets/{0}/transactions/{1}/commit",2];const Ko=[1,"/v2/mediasets/{0}/transactions",2];const $o=[0,"/v2/mediasets/{0}/items/{1}",6];const Xo=[0,"/v2/mediasets/{0}/items/{1}/metadata",6];const Yo=[0,"/v2/mediasets/{0}/items/{1}/reference",6];const Zo=[0,"/v2/mediasets/{0}/items/getRidByPath",2];const tr=[0,"/v2/mediasets/{0}",2];const er=[0,"/v2/mediasets/{0}/items/{1}/transformationJobs/{2}/result",6,,"*/*"];const nr=[0,"/v2/mediasets/{0}/items/{1}/transformationJobs/{2}",6];const or=[1,"/v2/mediasets/{0}/items",3,"*/*"];const rr=[0,"/v2/mediasets/{0}/items/{1}/content",6,,"*/*"];const sr=[0,"/v2/mediasets/{0}/items/{1}/original",6,,"*/*"];const cr=[1,"/v2/mediasets/{0}/items/register",3];const ir=[0,"/v2/mediasets/{0}/items/{1}/transform/imagery/thumbnail/retrieve",6,,"*/*"];const ar=[1,"/v2/mediasets/{0}/items/{1}/transform",7];const ur=[2,"/v2/mediasets/media/upload",7,"*/*"];var lr=Object.freeze({__proto__:null,abort:function(t,...e){return o(t,Jo,...e)},calculate:function(t,...e){return o(t,No,...e)},clear:function(t,...e){return o(t,Uo,...e)},commit:function(t,...e){return o(t,Qo,...e)},create:function(t,...e){return o(t,Ko,...e)},get:function(t,...e){return o(t,tr,...e)},getResult:function(t,...e){return o(t,er,...e)},getRidByPath:function(t,...e){return o(t,Zo,...e)},getStatus:function(t,...e){return o(t,nr,...e)},info:function(t,...e){return o(t,$o,...e)},metadata:function(t,...e){return o(t,Xo,...e)},read:function(t,...e){return o(t,rr,...e)},readOriginal:function(t,...e){return o(t,sr,...e)},reference:function(t,...e){return o(t,Yo,...e)},register:function(t,...e){return o(t,cr,...e)},retrieve:function(t,...e){return o(t,ir,...e)},transform:function(t,...e){return o(t,ar,...e)},upload:function(t,...e){return o(t,or,...e)},uploadMedia:function(t,...e){return o(t,ur,...e)}}),fr=Object.freeze({__proto__:null,MediaSets:lr});const vr=[0,"/v2/models/{0}/experiments/{1}",2];const pr=[1,"/v2/models/{0}/experiments/search",3];var dr=Object.freeze({__proto__:null,get:function(t,...e){return o(t,vr,...e)},search:function(t,...e){return o(t,pr,...e)}});const _r=[0,"/v2/models/{0}/experiments/{1}/artifactTables/{2}/json",2,,"application/octet-stream"];const gr=[0,"/v2/models/{0}/experiments/{1}/artifactTables/{2}/parquet",2,,"application/octet-stream"];var mr=Object.freeze({__proto__:null,json:function(t,...e){return o(t,_r,...e)},parquet:function(t,...e){return o(t,gr,...e)}});const br=[0,"/v2/models/{0}/experiments/{1}/series/{2}/json",2];const hr=[0,"/v2/models/{0}/experiments/{1}/series/{2}/parquet",2,,"application/octet-stream"];var yr=Object.freeze({__proto__:null,json:function(t,...e){return o(t,br,...e)},parquet:function(t,...e){return o(t,hr,...e)}});const jr=[1,"/v2/models/liveDeployments",3];const Or=[0,"/v2/models/liveDeployments",2];const zr=[0,"/v2/models/liveDeployments/{0}",2];const Sr=[2,"/v2/models/liveDeployments/{0}",3];const kr=[1,"/v2/models/liveDeployments/{0}/transformJson",7];var Tr=Object.freeze({__proto__:null,create:function(t,...e){return o(t,jr,...e)},get:function(t,...e){return o(t,zr,...e)},list:function(t,...e){return o(t,Or,...e)},replace:function(t,...e){return o(t,Sr,...e)},transformJson:function(t,...e){return o(t,kr,...e)}});const Ar=[1,"/v2/models",3];const Br=[0,"/v2/models/{0}",2];const Rr=[1,"/v2/models/{0}/promoteVersion",3];var Mr=Object.freeze({__proto__:null,create:function(t,...e){return o(t,Ar,...e)},get:function(t,...e){return o(t,Br,...e)},promoteVersion:function(t,...e){return o(t,Rr,...e)}});const Cr=[1,"/v2/models/{0}/function",3];const Pr=[0,"/v2/models/{0}/function",2];const xr=[2,"/v2/models/{0}/function",3];var wr=Object.freeze({__proto__:null,create:function(t,...e){return o(t,Cr,...e)},get:function(t,...e){return o(t,Pr,...e)},replace:function(t,...e){return o(t,xr,...e)}});const Ir=[1,"/v2/models/modelStudios",3];const Vr=[0,"/v2/models/modelStudios/{0}",2];const Dr=[1,"/v2/models/modelStudios/{0}/launch",2];var Er=Object.freeze({__proto__:null,create:function(t,...e){return o(t,Ir,...e)},get:function(t,...e){return o(t,Vr,...e)},launch:function(t,...e){return o(t,Dr,...e)}});const Lr=[1,"/v2/models/modelStudios/{0}/configVersions",3];const qr=[0,"/v2/models/modelStudios/{0}/configVersions",2];const Fr=[0,"/v2/models/modelStudios/{0}/configVersions/{1}",2];const Wr=[0,"/v2/models/modelStudios/{0}/configVersions/latest",2];var Hr=Object.freeze({__proto__:null,create:function(t,...e){return o(t,Lr,...e)},get:function(t,...e){return o(t,Fr,...e)},latest:function(t,...e){return o(t,Wr,...e)},list:function(t,...e){return o(t,qr,...e)}});const Gr=[0,"/v2/models/modelStudios/{0}/runs",2];var Jr=Object.freeze({__proto__:null,list:function(t,...e){return o(t,Gr,...e)}});const Nr=[0,"/v2/models/modelStudioTrainers",2];const Ur=[0,"/v2/models/modelStudioTrainers/{0}",2];var Qr=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Ur,...e)},list:function(t,...e){return o(t,Nr,...e)}});const Kr=[1,"/v2/models/{0}/versions",3];const $r=[0,"/v2/models/{0}/versions",2];const Xr=[0,"/v2/models/{0}/versions/{1}",2];var Yr=Object.freeze({__proto__:null,create:function(t,...e){return o(t,Kr,...e)},get:function(t,...e){return o(t,Xr,...e)},list:function(t,...e){return o(t,$r,...e)}}),Zr=Object.freeze({__proto__:null,ArtifactTables:mr,ExperimentSeriesList:yr,Experiments:dr,LiveDeployments:Tr,ModelFunctions:wr,ModelStudioConfigVersions:Hr,ModelStudioRuns:Jr,ModelStudioTrainers:Qr,ModelStudios:Er,ModelVersions:Yr,Models:Mr});const ts=[0,"/v2/notepad/exportJobs/{0}",2];const es=[1,"/v2/notepad/exportJobs/create",3];var ns=Object.freeze({__proto__:null,create:function(t,...e){return o(t,es,...e)},get:function(t,...e){return o(t,ts,...e)}});const os=[0,"/v2/notepad/files/{0}/content",2,,"application/octet-stream"];var rs=Object.freeze({__proto__:null,content:function(t,...e){return o(t,os,...e)}});const ss=[0,"/v2/notepad/templates/{0}/generationJobs/{1}",2];const cs=[1,"/v2/notepad/templates/{0}/generationJobs/{1}/saveDocument",3];var is=Object.freeze({__proto__:null,get:function(t,...e){return o(t,ss,...e)},saveDocument:function(t,...e){return o(t,cs,...e)}});const as=[1,"/v2/notepad/templates/{0}/generate",3];var us=Object.freeze({__proto__:null,generate:function(t,...e){return o(t,as,...e)}}),ls=Object.freeze({__proto__:null,ExportJobs:ns,Files:rs,GenerationJobs:is,Templates:us});const fs=[1,"/v2/ontologies/{0}/actions/{1}/apply",7];const vs=[1,"/v2/ontologies/{0}/actions/{1}/applyAsync",7];const ps=[1,"/v2/ontologies/{0}/actions/{1}/applyBatch",3];const ds=[1,"/v2/ontologies/{0}/actions/{1}/applyWithOverrides",3];const _s=[1,"/v2/ontologies/{0}/actions/{1}/applyBatchWithOverrides",3];var gs=Object.freeze({__proto__:null,apply:function(t,...e){return o(t,fs,...e)},applyAsync:function(t,...e){return o(t,vs,...e)},applyBatch:function(t,...e){return o(t,ps,...e)},applyBatchWithOverrides:function(t,...e){return o(t,_s,...e)},applyWithOverrides:function(t,...e){return o(t,ds,...e)}});const ms=[0,"/v2/ontologies/{0}/actionTypesFullMetadata",2];const bs=[0,"/v2/ontologies/{0}/actionTypes/{1}/fullMetadata",2];var hs=Object.freeze({__proto__:null,get:function(t,...e){return o(t,bs,...e)},list:function(t,...e){return o(t,ms,...e)}});const ys=[0,"/v2/ontologies/{0}/actionTypes",2];const js=[1,"/v2/ontologies/{0}/actionTypes/search",3];const Os=[0,"/v2/ontologies/{0}/actionTypes/{1}",2];const zs=[0,"/v2/ontologies/{0}/actionTypes/byRid/{1}",2];const Ss=[1,"/v2/ontologies/{0}/actionTypes/getByRidBatch",3];var ks=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Os,...e)},getByRid:function(t,...e){return o(t,zs,...e)},getByRidBatch:function(t,...e){return o(t,Ss,...e)},list:function(t,...e){return o(t,ys,...e)},search:function(t,...e){return o(t,js,...e)}});const Ts=[1,"/v2/ontologies/attachments/upload",7,"*/*"];const As=[1,"/v2/ontologies/attachments/upload/{0}",7,"*/*"];const Bs=[0,"/v2/ontologies/attachments/{0}/content",,,"*/*"];const Rs=[0,"/v2/ontologies/attachments/{0}"];var Ms=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Rs,...e)},read:function(t,...e){return o(t,Bs,...e)},upload:function(t,...e){const n={...e[2],"Content-Type":e[2]?.["Content-Type"]??e[0].type,"Content-Length":e[0].size.toString()};return o(t,Ts,e[0],e[1],n)},uploadWithRid:function(t,...e){const n={...e[3],"Content-Type":e[3]?.["Content-Type"]??e[1].type,"Content-Length":e[1].size.toString()};return o(t,As,e[0],e[1],e[2],n)}});const Cs=[0,"/v2/ontologies/{0}/objects/{1}/{2}/attachments/{3}",2];const Ps=[0,"/v2/ontologies/{0}/objects/{1}/{2}/attachments/{3}/{4}",2];const xs=[0,"/v2/ontologies/{0}/objects/{1}/{2}/attachments/{3}/content",2,,"*/*"];const ws=[0,"/v2/ontologies/{0}/objects/{1}/{2}/attachments/{3}/{4}/content",2,,"*/*"];var Is=Object.freeze({__proto__:null,getAttachment:function(t,...e){return o(t,Cs,...e)},getAttachmentByRid:function(t,...e){return o(t,Ps,...e)},readAttachment:function(t,...e){return o(t,xs,...e)},readAttachmentByRid:function(t,...e){return o(t,ws,...e)}});const Vs=[0,"/v2/ontologies/{0}/objects/{1}/{2}/ciphertexts/{3}/decrypt",2];var Ds=Object.freeze({__proto__:null,decrypt:function(t,...e){return o(t,Vs,...e)}});const Es=[1,"/v2/ontologies/{0}/objects/{1}/{2}/geotemporalSeries/{3}/loadEntries",3];var Ls=Object.freeze({__proto__:null,loadGeotemporalSeriesEntries:function(t,...e){return o(t,Es,...e)}});const qs=[0,"/v2/ontologies/{0}/objects/{1}/{2}/links/{3}",2];const Fs=[0,"/v2/ontologies/{0}/objects/{1}/{2}/links/{3}/{4}",2];var Ws=Object.freeze({__proto__:null,getLinkedObject:function(t,...e){return o(t,Fs,...e)},listLinkedObjects:function(t,...e){return o(t,qs,...e)}});const Hs=[0,"/v2/ontologies/{0}/objects/{1}/{2}/media/{3}/content",2,,"*/*"];const Gs=[0,"/v2/ontologies/{0}/objects/{1}/{2}/media/{3}/metadata",2];const Js=[1,"/v2/ontologies/{0}/objectTypes/{1}/media/{2}/upload",3,"*/*"];var Ns=Object.freeze({__proto__:null,getMediaContent:function(t,...e){return o(t,Hs,...e)},getMediaMetadata:function(t,...e){return o(t,Gs,...e)},upload:function(t,...e){return o(t,Js,...e)}});const Us=[0,"/v2/ontologies/{0}/objectTypes",2];const Qs=[0,"/v2/ontologies/{0}/objectTypes/{1}",2];const Ks=[1,"/v2/ontologies/{0}/objectTypes/getByRidBatch",3];const $s=[0,"/v2/ontologies/{0}/objectTypes/{1}/fullMetadata",2];const Xs=[1,"/v2/ontologies/{0}/objectTypes/{1}/editsHistory",3];const Ys=[0,"/v2/ontologies/{0}/objectTypes/{1}/outgoingLinkTypes",2];const Zs=[0,"/v2/ontologies/{0}/objectTypes/{1}/outgoingLinkTypes/{2}",2];const tc=[1,"/v2/ontologies/{0}/outgoingLinkTypes/getByRidBatch",3];var ec=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Qs,...e)},getByRidBatch:function(t,...e){return o(t,Ks,...e)},getEditsHistory:function(t,...e){return o(t,Xs,...e)},getFullMetadata:function(t,...e){return o(t,$s,...e)},getOutgoingLinkType:function(t,...e){return o(t,Zs,...e)},getOutgoingLinkTypesByObjectTypeRidBatch:function(t,...e){return o(t,tc,...e)},list:function(t,...e){return o(t,Us,...e)},listOutgoingLinkTypes:function(t,...e){return o(t,Ys,...e)}});const nc=[0,"/v2/ontologies/{0}/interfaceTypes",2];const oc=[0,"/v2/ontologies/{0}/interfaceTypes/{1}",2];const rc=[0,"/v2/ontologies/{0}/interfaces/{1}",2];const sc=[1,"/v2/ontologies/{0}/interfaces/{1}/search",3];const cc=[1,"/v2/ontologies/{0}/interfaces/{1}/aggregate",3];const ic=[0,"/v2/ontologies/{0}/interfaceTypes/{1}/outgoingLinkTypes",2];const ac=[0,"/v2/ontologies/{0}/interfaceTypes/{1}/outgoingLinkTypes/{2}",2];const uc=[0,"/v2/ontologies/{0}/interfaces/{1}/{2}/{3}/links/{4}",2];var lc=Object.freeze({__proto__:null,aggregate:function(t,...e){return o(t,cc,...e)},get:function(t,...e){return o(t,oc,...e)},getOutgoingInterfaceLinkType:function(t,...e){return o(t,ac,...e)},list:function(t,...e){return o(t,nc,...e)},listInterfaceLinkedObjects:function(t,...e){return o(t,uc,...e)},listObjectsForInterface:function(t,...e){return o(t,rc,...e)},listOutgoingInterfaceLinkTypes:function(t,...e){return o(t,ic,...e)},search:function(t,...e){return o(t,sc,...e)}});const fc=[1,"/v2/ontologies/{0}/objectSets/createTemporary",7];const vc=[0,"/v2/ontologies/{0}/objectSets/{1}",2];const pc=[1,"/v2/ontologies/{0}/objectSets/loadObjects",7];const dc=[1,"/v2/ontologies/{0}/objectSets/loadObjectsMultipleObjectTypes",7];const _c=[1,"/v2/ontologies/{0}/objectSets/loadObjectsOrInterfaces",7];const gc=[1,"/v2/ontologies/{0}/objectSets/aggregate",7];const mc=[1,"/v2/ontologies/{0}/objectSets/loadLinks",7];var bc=Object.freeze({__proto__:null,aggregate:function(t,...e){return o(t,gc,...e)},createTemporary:function(t,...e){return o(t,fc,...e)},get:function(t,...e){return o(t,vc,...e)},load:function(t,...e){return o(t,pc,...e)},loadLinks:function(t,...e){return o(t,mc,...e)},loadMultipleObjectTypes:function(t,...e){return o(t,dc,...e)},loadObjectsOrInterfaces:function(t,...e){return o(t,_c,...e)}});const hc=[0,"/v2/ontologies/{0}/objects/{1}",2];const yc=[0,"/v2/ontologies/{0}/objects/{1}/{2}",2];const jc=[1,"/v2/ontologies/{0}/objects/{1}/count",2];const Oc=[1,"/v2/ontologies/{0}/objects/{1}/search",3];const zc=[1,"/v2/ontologies/{0}/objects/{1}/aggregate",3];var Sc=Object.freeze({__proto__:null,aggregate:function(t,...e){return o(t,zc,...e)},count:function(t,...e){return o(t,jc,...e)},get:function(t,...e){return o(t,yc,...e)},list:function(t,...e){return o(t,hc,...e)},search:function(t,...e){return o(t,Oc,...e)}});const kc=[1,"/v2/ontologies/{0}/scenarios/create",3];const Tc=[0,"/v2/ontologies/{0}/scenarios/{1}/objectTypes/edited",2];const Ac=[0,"/v2/ontologies/{0}/scenarios/{1}/objectTypes/{2}/outgoingLinkTypes/edited",2];const Bc=[0,"/v2/ontologies/{0}/scenarios/{1}/editedEntityTypes",2];const Rc=[0,"/v2/ontologies/{0}/scenarios/{1}/objects/{2}/edited",2];const Mc=[0,"/v2/ontologies/{0}/scenarios/{1}/objects/{2}/links/{3}/edited",2];var Cc=Object.freeze({__proto__:null,createScenario:function(t,...e){return o(t,kc,...e)},listScenarioEditedEntityTypes:function(t,...e){return o(t,Bc,...e)},listScenarioEditedLinkTypes:function(t,...e){return o(t,Ac,...e)},listScenarioEditedLinks:function(t,...e){return o(t,Mc,...e)},listScenarioEditedObjectTypes:function(t,...e){return o(t,Tc,...e)},listScenarioEditedObjects:function(t,...e){return o(t,Rc,...e)}});const Pc=[1,"/v2/ontologies/{0}/transactions/{1}/edits",3];var xc=Object.freeze({__proto__:null,postEdits:function(t,...e){return o(t,Pc,...e)}});const wc=[0,"/v2/ontologies"];const Ic=[0,"/v2/ontologies/{0}"];const Vc=[0,"/v2/ontologies/{0}/fullMetadata",2];const Dc=[1,"/v2/ontologies/{0}/metadata",3];var Ec=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Ic,...e)},getFullMetadata:function(t,...e){return o(t,Vc,...e)},list:function(t,...e){return o(t,wc,...e)},loadMetadata:function(t,...e){return o(t,Dc,...e)}});const Lc=[0,"/v2/ontologies/{0}/valueTypes/{1}",2];const qc=[0,"/v2/ontologies/{0}/valueTypes",2];var Fc=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Lc,...e)},list:function(t,...e){return o(t,qc,...e)}});const Wc=[1,"/v2/ontologies/{0}/queries/{1}/execute",7];var Hc=Object.freeze({__proto__:null,execute:function(t,...e){return o(t,Wc,...e)}});const Gc=[0,"/v2/ontologies/{0}/queryTypes",2];const Jc=[0,"/v2/ontologies/{0}/queryTypes/{1}",2];const Nc=[1,"/v2/ontologies/{0}/queryTypes/getByRidBatch",3];var Uc=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Jc,...e)},getByRidBatch:function(t,...e){return o(t,Nc,...e)},list:function(t,...e){return o(t,Gc,...e)}});const Qc=[0,"/v2/ontologies/{0}/objects/{1}/{2}/timeseries/{3}/firstPoint",2];const Kc=[0,"/v2/ontologies/{0}/objects/{1}/{2}/timeseries/{3}/lastPoint",2];const $c=[1,"/v2/ontologies/{0}/objects/{1}/{2}/timeseries/{3}/streamPoints",3,,"*/*"];var Xc=Object.freeze({__proto__:null,getFirstPoint:function(t,...e){return o(t,Qc,...e)},getLastPoint:function(t,...e){return o(t,Kc,...e)},streamPoints:function(t,...e){return o(t,$c,...e)}});const Yc=[0,"/v2/ontologies/{0}/objects/{1}/{2}/timeseries/{3}/latestValue",2];const Zc=[1,"/v2/ontologies/{0}/objects/{1}/{2}/timeseries/{3}/streamValues",3,,"*/*"];var ti=Object.freeze({__proto__:null,getLatestValue:function(t,...e){return o(t,Yc,...e)},streamValues:function(t,...e){return o(t,Zc,...e)}}),ei=Object.freeze({__proto__:null,ActionTypesFullMetadata:hs,ActionTypesV2:ks,Actions:gs,AttachmentPropertiesV2:Is,Attachments:Ms,CipherTextProperties:Ds,GeotemporalSeriesProperties:Ls,LinkedObjectsV2:Ws,MediaReferenceProperties:Ns,ObjectTypesV2:ec,OntologiesV2:Ec,OntologyInterfaces:lc,OntologyObjectSets:bc,OntologyObjectsV2:Sc,OntologyScenarios:Cc,OntologyTransactions:xc,OntologyValueTypes:Fc,Queries:Hc,QueryTypes:Uc,TimeSeriesPropertiesV2:Xc,TimeSeriesValueBankProperties:ti});const ni=[0,"/v2/operations/{0}",2];var oi=Object.freeze({__proto__:null,get:function(t,...e){return o(t,ni,...e)}}),ri=Object.freeze({__proto__:null,AsyncOperations:oi});const si=[0,"/v2/orchestration/builds/{0}"];const ci=[1,"/v2/orchestration/builds/getBatch",1];const ii=[1,"/v2/orchestration/builds/create",1];const ai=[1,"/v2/orchestration/builds/{0}/cancel"];const ui=[1,"/v2/orchestration/builds/search",3];const li=[0,"/v2/orchestration/builds/{0}/jobs",2];var fi=Object.freeze({__proto__:null,cancel:function(t,...e){return o(t,ai,...e)},create:function(t,...e){return o(t,ii,...e)},get:function(t,...e){return o(t,si,...e)},getBatch:function(t,...e){return o(t,ci,...e)},jobs:function(t,...e){return o(t,li,...e)},search:function(t,...e){return o(t,ui,...e)}});const vi=[0,"/v2/orchestration/jobs/{0}",2];const pi=[1,"/v2/orchestration/jobs/getBatch",3];var di=Object.freeze({__proto__:null,get:function(t,...e){return o(t,vi,...e)},getBatch:function(t,...e){return o(t,pi,...e)}});const _i=[1,"/v2/orchestration/schedules",3];const gi=[3,"/v2/orchestration/schedules/{0}"];const mi=[0,"/v2/orchestration/schedules/{0}",2];const bi=[1,"/v2/orchestration/schedules/getBatch",3];const hi=[2,"/v2/orchestration/schedules/{0}",3];const yi=[1,"/v2/orchestration/schedules/{0}/run"];const ji=[1,"/v2/orchestration/schedules/{0}/pause"];const Oi=[1,"/v2/orchestration/schedules/{0}/unpause"];const zi=[1,"/v2/orchestration/schedules/{0}/getAffectedResources",2];const Si=[0,"/v2/orchestration/schedules/{0}/runs",2];var ki=Object.freeze({__proto__:null,create:function(t,...e){return o(t,_i,...e)},deleteSchedule:function(t,...e){return o(t,gi,...e)},get:function(t,...e){return o(t,mi,...e)},getAffectedResources:function(t,...e){return o(t,zi,...e)},getBatch:function(t,...e){return o(t,bi,...e)},pause:function(t,...e){return o(t,ji,...e)},replace:function(t,...e){return o(t,hi,...e)},run:function(t,...e){return o(t,yi,...e)},runs:function(t,...e){return o(t,Si,...e)},unpause:function(t,...e){return o(t,Oi,...e)}});const Ti=[0,"/v2/orchestration/scheduleVersions/{0}",2];const Ai=[0,"/v2/orchestration/scheduleVersions/{0}/schedule",2];var Bi=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Ti,...e)},schedule:function(t,...e){return o(t,Ai,...e)}}),Ri=Object.freeze({__proto__:null,Builds:fi,Jobs:di,ScheduleVersions:Bi,Schedules:ki});const Mi=[1,"/v2/pack/documents",3];const Ci=[3,"/v2/pack/documents/{0}",2];const Pi=[0,"/v2/pack/documents/{0}",2];const xi=[1,"/v2/pack/documents/search",3];const wi=[1,"/v2/pack/documents/{0}/update",3];var Ii=Object.freeze({__proto__:null,create:function(t,...e){return o(t,Mi,...e)},deleteDocument:function(t,...e){return o(t,Ci,...e)},get:function(t,...e){return o(t,Pi,...e)},search:function(t,...e){return o(t,xi,...e)},update:function(t,...e){return o(t,wi,...e)}});const Vi=[1,"/v2/pack/documentTypes",3];const Di=[0,"/v2/pack/documentTypes/{0}",2];const Ei=[1,"/v2/pack/documentTypes/loadByName",3];const Li=[1,"/v2/pack/documentTypes/createFirstParty",3];const qi=[1,"/v2/pack/documentTypes/updateSchema",3];const Fi=[1,"/v2/pack/documentTypes/getOperationalVersion",3];var Wi=Object.freeze({__proto__:null,create:function(t,...e){return o(t,Vi,...e)},createFirstParty:function(t,...e){return o(t,Li,...e)},get:function(t,...e){return o(t,Di,...e)},getOperationalVersion:function(t,...e){return o(t,Fi,...e)},loadByName:function(t,...e){return o(t,Ei,...e)},updateSchema:function(t,...e){return o(t,qi,...e)}}),Hi=Object.freeze({__proto__:null,DocumentTypes:Wi,Documents:Ii});const Gi=[0,"/v2/publicApis/apiDefinitions/{0}",2];var Ji=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Gi,...e)}});const Ni=[0,"/v2/publicApis/openApiDefinitions/{0}",2];var Ui=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Ni,...e)}}),Qi=Object.freeze({__proto__:null,ApiDefinitions:Ji,OpenApiDefinitions:Ui});const Ki=[1,"/v2/sqlQueries/execute",1];const $i=[0,"/v2/sqlQueries/{0}/getStatus"];const Xi=[1,"/v2/sqlQueries/{0}/cancel"];const Yi=[0,"/v2/sqlQueries/{0}/getResults",,,"application/octet-stream"];const Zi=[1,"/v2/sqlQueries/executeOntology",3,,"application/octet-stream"];var ta=Object.freeze({__proto__:null,cancel:function(t,...e){return o(t,Xi,...e)},execute:function(t,...e){return o(t,Ki,...e)},executeOntology:function(t,...e){return o(t,Zi,...e)},getResults:function(t,...e){return o(t,Yi,...e)},getStatus:function(t,...e){return o(t,$i,...e)}}),ea=Object.freeze({__proto__:null,SqlQueries:ta});const na=[1,"/v2/streams/datasets/create",3];var oa=Object.freeze({__proto__:null,create:function(t,...e){return o(t,na,...e)}});const ra=[1,"/v2/streams/datasets/{0}/streams",3];const sa=[0,"/v2/streams/datasets/{0}/streams/{1}"];const ca=[1,"/v2/highScale/streams/datasets/{0}/streams/{1}/publishRecord",1];const ia=[1,"/v2/highScale/streams/datasets/{0}/streams/{1}/publishRecords",1];const aa=[1,"/v2/highScale/streams/datasets/{0}/streams/{1}/publishBinaryRecord",3,"application/octet-stream"];const ua=[1,"/v2/streams/datasets/{0}/streams/{1}/reset",3];const la=[0,"/v2/highScale/streams/datasets/{0}/streams/{1}/getRecords",2];const fa=[0,"/v2/highScale/streams/datasets/{0}/streams/{1}/getEndOffsets",2];var va=Object.freeze({__proto__:null,create:function(t,...e){return o(t,ra,...e)},get:function(t,...e){return o(t,sa,...e)},getEndOffsets:function(t,...e){return o(t,fa,...e)},getRecords:function(t,...e){return o(t,la,...e)},publishBinaryRecord:function(t,...e){return o(t,aa,...e)},publishRecord:function(t,...e){return o(t,ca,...e)},publishRecords:function(t,...e){return o(t,ia,...e)},reset:function(t,...e){return o(t,ua,...e)}});const pa=[1,"/v2/streams/datasets/{0}/streams/{1}/subscribers",3];const da=[3,"/v2/streams/datasets/{0}/streams/{1}/subscribers/{2}",2];const _a=[1,"/v2/highScale/streams/datasets/{0}/streams/{1}/subscribers/{2}/readRecords",3];const ga=[1,"/v2/highScale/streams/datasets/{0}/streams/{1}/subscribers/{2}/commitOffsets",3];const ma=[0,"/v2/highScale/streams/datasets/{0}/streams/{1}/subscribers/{2}/getReadPosition",2];const ba=[1,"/v2/highScale/streams/datasets/{0}/streams/{1}/subscribers/{2}/resetOffsets",3];var ha=Object.freeze({__proto__:null,commitOffsets:function(t,...e){return o(t,ga,...e)},create:function(t,...e){return o(t,pa,...e)},deleteSubscriber:function(t,...e){return o(t,da,...e)},getReadPosition:function(t,...e){return o(t,ma,...e)},readRecords:function(t,...e){return o(t,_a,...e)},resetOffsets:function(t,...e){return o(t,ba,...e)}}),ya=Object.freeze({__proto__:null,Datasets:oa,Streams:va,Subscribers:ha});const ja=[0,"/v2/thirdPartyApplications/{0}",2];var Oa=Object.freeze({__proto__:null,get:function(t,...e){return o(t,ja,...e)}});const za=[3,"/v2/thirdPartyApplications/{0}/website/versions/{1}"];const Sa=[0,"/v2/thirdPartyApplications/{0}/website/versions",2];const ka=[0,"/v2/thirdPartyApplications/{0}/website/versions/{1}"];const Ta=[1,"/v2/thirdPartyApplications/{0}/website/versions/upload",3,"application/octet-stream"];const Aa=[1,"/v2/thirdPartyApplications/{0}/website/versions/uploadSnapshot",3,"application/octet-stream"];var Ba=Object.freeze({__proto__:null,deleteVersion:function(t,...e){return o(t,za,...e)},get:function(t,...e){return o(t,ka,...e)},list:function(t,...e){return o(t,Sa,...e)},upload:function(t,...e){return o(t,Ta,...e)},uploadSnapshot:function(t,...e){return o(t,Aa,...e)}});const Ra=[0,"/v2/thirdPartyApplications/{0}/website"];const Ma=[1,"/v2/thirdPartyApplications/{0}/website/deploy",1];const Ca=[1,"/v2/thirdPartyApplications/{0}/website/undeploy"];var Pa=Object.freeze({__proto__:null,deploy:function(t,...e){return o(t,Ma,...e)},get:function(t,...e){return o(t,Ra,...e)},undeploy:function(t,...e){return o(t,Ca,...e)}}),xa=Object.freeze({__proto__:null,ThirdPartyApplications:Oa,Versions:Ba,Websites:Pa});const wa=[1,"/v2/widgets/devModeSettings/enable",2];const Ia=[1,"/v2/widgets/devModeSettings/setWidgetSetById",3];var Va=Object.freeze({__proto__:null,enable:function(t,...e){return o(t,wa,...e)},setWidgetSetById:function(t,...e){return o(t,Ia,...e)}});const Da=[1,"/v2/widgets/devModeSettingsV2/enable",2];const Ea=[1,"/v2/widgets/devModeSettingsV2/setWidgetSetManifest",3];var La=Object.freeze({__proto__:null,enable:function(t,...e){return o(t,Da,...e)},setWidgetSetManifest:function(t,...e){return o(t,Ea,...e)}});const qa=[3,"/v2/widgets/widgetSets/{0}/releases/{1}",2];const Fa=[0,"/v2/widgets/widgetSets/{0}/releases",2];const Wa=[0,"/v2/widgets/widgetSets/{0}/releases/{1}",2];var Ha=Object.freeze({__proto__:null,deleteRelease:function(t,...e){return o(t,qa,...e)},get:function(t,...e){return o(t,Wa,...e)},list:function(t,...e){return o(t,Fa,...e)}});const Ga=[0,"/v2/widgets/repositories/{0}",2];const Ja=[1,"/v2/widgets/repositories/{0}/publish",3,"application/octet-stream"];var Na=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Ga,...e)},publish:function(t,...e){return o(t,Ja,...e)}});const Ua=[0,"/v2/widgets/widgetSets/{0}",2];var Qa=Object.freeze({__proto__:null,get:function(t,...e){return o(t,Ua,...e)}}),Ka=Object.freeze({__proto__:null,Releases:Ha,Repositories:Na,WidgetSets:Qa,WidgetsDevModeSettings:Va,WidgetsDevModeSettingsV2:La});export{Et as Admin,se as AipAgents,ue as Audit,de as Checkpoints,Le as Connectivity,qe as Core,Ke as DataHealth,In as Datasets,zo as Filesystem,Eo as Functions,Lo as Geo,Go as LanguageModels,fr as MediaSets,Zr as Models,ls as Notepad,ei as Ontologies,ri as Operations,Ri as Orchestration,Hi as Pack,Qi as PublicApis,ea as SqlQueries,ya as Streams,xa as ThirdPartyApplications,Ka as Widgets};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@osdk/foundry",
3
- "version": "2.64.0",
3
+ "version": "2.66.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",
48
- "@osdk/shared.net.platformapi": "~1.7.0",
49
- "@osdk/foundry.widgets": "2.64.0"
24
+ "@osdk/foundry.admin": "2.66.0",
25
+ "@osdk/foundry.aipagents": "2.66.0",
26
+ "@osdk/foundry.audit": "2.66.0",
27
+ "@osdk/foundry.checkpoints": "2.66.0",
28
+ "@osdk/foundry.core": "2.66.0",
29
+ "@osdk/foundry.datasets": "2.66.0",
30
+ "@osdk/foundry.connectivity": "2.66.0",
31
+ "@osdk/foundry.datahealth": "2.66.0",
32
+ "@osdk/foundry.filesystem": "2.66.0",
33
+ "@osdk/foundry.geo": "2.66.0",
34
+ "@osdk/foundry.functions": "2.66.0",
35
+ "@osdk/foundry.languagemodels": "2.66.0",
36
+ "@osdk/foundry.geojson": "2.66.0",
37
+ "@osdk/foundry.mediasets": "2.66.0",
38
+ "@osdk/foundry.models": "2.66.0",
39
+ "@osdk/foundry.ontologies": "2.66.0",
40
+ "@osdk/foundry.operations": "2.66.0",
41
+ "@osdk/foundry.notepad": "2.66.0",
42
+ "@osdk/foundry.pack": "2.66.0",
43
+ "@osdk/foundry.sqlqueries": "2.66.0",
44
+ "@osdk/foundry.orchestration": "2.66.0",
45
+ "@osdk/foundry.streams": "2.66.0",
46
+ "@osdk/foundry.publicapis": "2.66.0",
47
+ "@osdk/foundry.thirdpartyapplications": "2.66.0",
48
+ "@osdk/foundry.widgets": "2.66.0",
49
+ "@osdk/shared.net.platformapi": "~1.7.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.1675.0",
79
79
  "maxVersion": "1.x.x",
80
80
  "optional": false
81
81
  }