@osdk/foundry 2.65.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,42 @@
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
+
3
40
  ## 2.65.0
4
41
 
5
42
  ### Minor Changes
@@ -11261,7 +11261,10 @@ declare function decrypt($ctx: SharedClient | SharedClientContext | SharedClient
11261
11261
  ontology: _Ontologies_2.OntologyIdentifier,
11262
11262
  objectType: _Ontologies_2.ObjectTypeApiName,
11263
11263
  primaryKey: _Ontologies_2.PropertyValueEscapedString,
11264
- property: _Ontologies_2.PropertyApiName
11264
+ property: _Ontologies_2.PropertyApiName,
11265
+ $queryParams?: {
11266
+ branch?: _Core.FoundryBranch | undefined;
11267
+ }
11265
11268
  ]): Promise<_Ontologies_2.DecryptionResult>;
11266
11269
 
11267
11270
  /**
@@ -12255,7 +12258,7 @@ declare interface DocumentDiscretionarySecurityUpdateEventData {
12255
12258
  */
12256
12259
  declare interface DocumentEditDescription {
12257
12260
  eventData: DocumentCustomEventData;
12258
- eventType: string;
12261
+ eventType?: string;
12259
12262
  }
12260
12263
 
12261
12264
  /**
@@ -12612,6 +12615,7 @@ declare interface DocumentTypeAlreadyExists {
12612
12615
  * Log Safety: UNSAFE
12613
12616
  */
12614
12617
  declare interface DocumentTypeAsset {
12618
+ comment?: string;
12615
12619
  documentTypeName: DocumentTypeName;
12616
12620
  documentStorageType: DocumentStorageType;
12617
12621
  fileSystemType: FileSystemType;
@@ -18375,6 +18379,7 @@ propertyName: _Ontologies_2.PropertyApiName,
18375
18379
  $queryParams?: {
18376
18380
  sdkPackageRid?: _Ontologies_2.SdkPackageRid | undefined;
18377
18381
  sdkVersion?: _Ontologies_2.SdkVersion | undefined;
18382
+ branch?: _Core.FoundryBranch | undefined;
18378
18383
  }
18379
18384
  ]): Promise<_Ontologies_2.TimeseriesEntry | undefined>;
18380
18385
 
@@ -26688,6 +26693,41 @@ declare type MediaSetViewRid = LooselyBrandedString<"MediaSetViewRid">;
26688
26693
  */
26689
26694
  declare type MediaType = LooselyBrandedString<"MediaType">;
26690
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
+
26691
26731
  /**
26692
26732
  * An ephemeral client-generated Universally Unique Identifier (UUID) to identify a message for streamed session responses.
26693
26733
  This can be used by clients to cancel a streamed exchange.
@@ -28233,6 +28273,24 @@ declare interface MultipleGroupByOnFieldNotSupported {
28233
28273
  };
28234
28274
  }
28235
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
+
28236
28294
  /**
28237
28295
  * Multiple properties were mapped but the trainer only allows a single property for this spec.
28238
28296
  *
@@ -30890,9 +30948,12 @@ export declare namespace Ontologies {
30890
30948
  MarketplaceSdkObjectMappingNotFound,
30891
30949
  MarketplaceSdkPropertyMappingNotFound,
30892
30950
  MarketplaceSdkQueryMappingNotFound,
30951
+ MediaUploadDestinationNotConfigured,
30952
+ MediaUploadPropertyNotBackedByMediaSetView,
30893
30953
  MissingParameter,
30894
30954
  MissingValueTypeReference,
30895
30955
  MultipleGroupByOnFieldNotSupported,
30956
+ MultipleMediaUploadDestinations,
30896
30957
  MultiplePropertyValuesNotSupported,
30897
30958
  NotCipherFormatted,
30898
30959
  ObjectAlreadyExists,
@@ -31787,9 +31848,12 @@ declare namespace _Ontologies {
31787
31848
  MarketplaceSdkObjectMappingNotFound,
31788
31849
  MarketplaceSdkPropertyMappingNotFound,
31789
31850
  MarketplaceSdkQueryMappingNotFound,
31851
+ MediaUploadDestinationNotConfigured,
31852
+ MediaUploadPropertyNotBackedByMediaSetView,
31790
31853
  MissingParameter,
31791
31854
  MissingValueTypeReference,
31792
31855
  MultipleGroupByOnFieldNotSupported,
31856
+ MultipleMediaUploadDestinations,
31793
31857
  MultiplePropertyValuesNotSupported,
31794
31858
  NotCipherFormatted,
31795
31859
  ObjectAlreadyExists,
@@ -43582,6 +43646,7 @@ $body: _Ontologies_2.StreamTimeSeriesValuesRequest,
43582
43646
  $queryParams?: {
43583
43647
  sdkPackageRid?: _Ontologies_2.SdkPackageRid | undefined;
43584
43648
  sdkVersion?: _Ontologies_2.SdkVersion | undefined;
43649
+ branch?: _Core.FoundryBranch | undefined;
43585
43650
  }
43586
43651
  ]): Promise<Response>;
43587
43652
 
@@ -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.65.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.admin": "2.65.0",
25
- "@osdk/foundry.aipagents": "2.65.0",
26
- "@osdk/foundry.checkpoints": "2.65.0",
27
- "@osdk/foundry.core": "2.65.0",
28
- "@osdk/foundry.connectivity": "2.65.0",
29
- "@osdk/foundry.audit": "2.65.0",
30
- "@osdk/foundry.datahealth": "2.65.0",
31
- "@osdk/foundry.datasets": "2.65.0",
32
- "@osdk/foundry.filesystem": "2.65.0",
33
- "@osdk/foundry.functions": "2.65.0",
34
- "@osdk/foundry.geo": "2.65.0",
35
- "@osdk/foundry.geojson": "2.65.0",
36
- "@osdk/foundry.mediasets": "2.65.0",
37
- "@osdk/foundry.models": "2.65.0",
38
- "@osdk/foundry.languagemodels": "2.65.0",
39
- "@osdk/foundry.notepad": "2.65.0",
40
- "@osdk/foundry.operations": "2.65.0",
41
- "@osdk/foundry.ontologies": "2.65.0",
42
- "@osdk/foundry.orchestration": "2.65.0",
43
- "@osdk/foundry.pack": "2.65.0",
44
- "@osdk/foundry.publicapis": "2.65.0",
45
- "@osdk/foundry.sqlqueries": "2.65.0",
46
- "@osdk/foundry.thirdpartyapplications": "2.65.0",
47
- "@osdk/foundry.widgets": "2.65.0",
48
- "@osdk/shared.net.platformapi": "~1.7.0",
49
- "@osdk/foundry.streams": "2.65.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.1665.0",
78
+ "minVersion": "1.1675.0",
79
79
  "maxVersion": "1.x.x",
80
80
  "optional": false
81
81
  }