@deephaven-enterprise/jsapi-types 1.20250219.129-beta → 1.20250219.131-beta
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 +6 -32
package/package.json
CHANGED
package/types/Iris.d.ts
CHANGED
|
@@ -458,7 +458,12 @@ export interface AssignmentPolicyType {
|
|
|
458
458
|
|
|
459
459
|
export type AssignmentPolicyTypes = Map<string, AssignmentPolicyType>;
|
|
460
460
|
|
|
461
|
-
export
|
|
461
|
+
export interface RefreshToken {
|
|
462
|
+
get bytes(): string;
|
|
463
|
+
get expiry(): number;
|
|
464
|
+
get effectiveUser(): string;
|
|
465
|
+
get authenticatedUser(): string;
|
|
466
|
+
}
|
|
462
467
|
|
|
463
468
|
export interface EnterpriseClient {
|
|
464
469
|
/**
|
|
@@ -602,33 +607,6 @@ export interface EnterpriseClientConstructor {
|
|
|
602
607
|
new (websocketUrl: string): EnterpriseClient;
|
|
603
608
|
}
|
|
604
609
|
|
|
605
|
-
/**
|
|
606
|
-
* @deprecated should be replaced with `EditableQueryInfo`
|
|
607
|
-
*/
|
|
608
|
-
export interface ConsoleConfigConstructor {
|
|
609
|
-
new (): ConsoleConfig;
|
|
610
|
-
}
|
|
611
|
-
|
|
612
|
-
/**
|
|
613
|
-
* @deprecated use the `EditableQueryInfo` going forward, which can be used to represent the PersistentQuery backing a
|
|
614
|
-
* Code Studio without an intermediate stage
|
|
615
|
-
*/
|
|
616
|
-
export interface ConsoleConfig {
|
|
617
|
-
dispatcherHost?: string;
|
|
618
|
-
dispatcherPort?: number;
|
|
619
|
-
queryDescription: string;
|
|
620
|
-
jvmProfile: string;
|
|
621
|
-
maxHeapMb: number;
|
|
622
|
-
additionalMemoryMb: number;
|
|
623
|
-
jvmArgs: string[];
|
|
624
|
-
envVars: [string, string][];
|
|
625
|
-
classpath: string[];
|
|
626
|
-
debug: boolean;
|
|
627
|
-
detailedGCLogging: boolean;
|
|
628
|
-
workerKind: string;
|
|
629
|
-
workerCreationJson: string;
|
|
630
|
-
}
|
|
631
|
-
|
|
632
610
|
export interface IdeConstructor {
|
|
633
611
|
new (client: EnterpriseClient): Ide;
|
|
634
612
|
}
|
|
@@ -770,10 +748,6 @@ export type EnterpriseDhType = typeof DhType & {
|
|
|
770
748
|
VariableType: typeof VariableType;
|
|
771
749
|
ConsoleServerAddress: ConsoleServerAddress;
|
|
772
750
|
Ide: IdeConstructor;
|
|
773
|
-
/**
|
|
774
|
-
* @deprecated instead of washing the Code Studio configuration through an old object, directly use an `EditableQueryInfo`
|
|
775
|
-
*/
|
|
776
|
-
ConsoleConfig: ConsoleConfigConstructor;
|
|
777
751
|
QueryInfo: QueryInfoStatic;
|
|
778
752
|
ImportSourceType: typeof ImportSourceType;
|
|
779
753
|
};
|