@deephaven-enterprise/jsapi-types 1.20250801.250917111308-g1c85ebe → 1.20250801.251015115311-g1574e26
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/package.json +1 -1
- package/types/Iris.d.ts +0 -29
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@deephaven-enterprise/jsapi-types",
|
|
3
|
-
"version": "1.20250801.
|
|
3
|
+
"version": "1.20250801.251015115311-g1574e26",
|
|
4
4
|
"description": "Deephaven Enterprise Jsapi Types",
|
|
5
5
|
"author": "Deephaven Data Labs LLC",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE.md",
|
package/types/Iris.d.ts
CHANGED
|
@@ -563,35 +563,6 @@ export interface EnterpriseClient {
|
|
|
563
563
|
* `challengeResponse()` for private / public key authentication.
|
|
564
564
|
*/
|
|
565
565
|
getChallengeNonce(): Promise<ChallengeNonce>;
|
|
566
|
-
|
|
567
|
-
/**
|
|
568
|
-
* Get a map of schema namespaces to table names.
|
|
569
|
-
* @returns A map where the keys are schema namespaces and the values are arrays of table names.
|
|
570
|
-
*/
|
|
571
|
-
getAllSchemas(): Promise<Map<string, string[]>>;
|
|
572
|
-
|
|
573
|
-
/**
|
|
574
|
-
* Get the XML schema for a table.
|
|
575
|
-
* @param namespace the namespace of the schema
|
|
576
|
-
* @param tableName the table name of the schema
|
|
577
|
-
* @return the schema XML string for the given namespace and table name
|
|
578
|
-
*/
|
|
579
|
-
getSchemaXml(namespace: string, tableName: string): Promise<string>;
|
|
580
|
-
|
|
581
|
-
/**
|
|
582
|
-
* Saves a schema XML String to the Schema Service. Uses the namespace and table name from the XML.
|
|
583
|
-
* @param xmlString the XML string for the schema to save
|
|
584
|
-
* @return a promise that resolves on successful save
|
|
585
|
-
*/
|
|
586
|
-
saveSchemaXml(xmlString: string): Promise<void>;
|
|
587
|
-
|
|
588
|
-
/**
|
|
589
|
-
* Deletes a schema from the Schema Service using the provided namespace and table name.
|
|
590
|
-
* @param namespace the namespace of the schema
|
|
591
|
-
* @param tableName the table name of the schema
|
|
592
|
-
* @return a promise that resolves on successful delete
|
|
593
|
-
*/
|
|
594
|
-
deleteSchema(namespace: string, tableName: string): Promise<void>;
|
|
595
566
|
}
|
|
596
567
|
|
|
597
568
|
export interface ChallengeNonce {
|