@hautechai/sdk 2.16.1 → 2.17.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/dist/index.d.mts +12 -4
- package/dist/index.d.ts +12 -4
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -10698,9 +10698,10 @@ interface StorageRecordsResultDto {
|
|
|
10698
10698
|
* Hautech API
|
|
10699
10699
|
* OpenAPI spec version: 1.0
|
|
10700
10700
|
*/
|
|
10701
|
-
|
|
10702
|
-
|
|
10703
|
-
|
|
10701
|
+
/**
|
|
10702
|
+
* Variable value, string or number
|
|
10703
|
+
*/
|
|
10704
|
+
type VariableDtoValue = string | number;
|
|
10704
10705
|
|
|
10705
10706
|
/**
|
|
10706
10707
|
* Generated by orval v7.10.0 🍺
|
|
@@ -10710,8 +10711,9 @@ type VariableDtoValue = {
|
|
|
10710
10711
|
*/
|
|
10711
10712
|
|
|
10712
10713
|
interface VariableDto {
|
|
10713
|
-
|
|
10714
|
+
/** Variable value, string or number */
|
|
10714
10715
|
value: VariableDtoValue;
|
|
10716
|
+
name: string;
|
|
10715
10717
|
}
|
|
10716
10718
|
|
|
10717
10719
|
/**
|
|
@@ -12546,6 +12548,12 @@ type MethodsPermissions = {
|
|
|
12546
12548
|
connect: boolean;
|
|
12547
12549
|
subscribe: boolean;
|
|
12548
12550
|
};
|
|
12551
|
+
userProfiles: {
|
|
12552
|
+
create: boolean;
|
|
12553
|
+
read: boolean;
|
|
12554
|
+
update: boolean;
|
|
12555
|
+
list: boolean;
|
|
12556
|
+
};
|
|
12549
12557
|
};
|
|
12550
12558
|
|
|
12551
12559
|
declare const createTokenSigner: (options: {
|
package/dist/index.d.ts
CHANGED
|
@@ -10698,9 +10698,10 @@ interface StorageRecordsResultDto {
|
|
|
10698
10698
|
* Hautech API
|
|
10699
10699
|
* OpenAPI spec version: 1.0
|
|
10700
10700
|
*/
|
|
10701
|
-
|
|
10702
|
-
|
|
10703
|
-
|
|
10701
|
+
/**
|
|
10702
|
+
* Variable value, string or number
|
|
10703
|
+
*/
|
|
10704
|
+
type VariableDtoValue = string | number;
|
|
10704
10705
|
|
|
10705
10706
|
/**
|
|
10706
10707
|
* Generated by orval v7.10.0 🍺
|
|
@@ -10710,8 +10711,9 @@ type VariableDtoValue = {
|
|
|
10710
10711
|
*/
|
|
10711
10712
|
|
|
10712
10713
|
interface VariableDto {
|
|
10713
|
-
|
|
10714
|
+
/** Variable value, string or number */
|
|
10714
10715
|
value: VariableDtoValue;
|
|
10716
|
+
name: string;
|
|
10715
10717
|
}
|
|
10716
10718
|
|
|
10717
10719
|
/**
|
|
@@ -12546,6 +12548,12 @@ type MethodsPermissions = {
|
|
|
12546
12548
|
connect: boolean;
|
|
12547
12549
|
subscribe: boolean;
|
|
12548
12550
|
};
|
|
12551
|
+
userProfiles: {
|
|
12552
|
+
create: boolean;
|
|
12553
|
+
read: boolean;
|
|
12554
|
+
update: boolean;
|
|
12555
|
+
list: boolean;
|
|
12556
|
+
};
|
|
12549
12557
|
};
|
|
12550
12558
|
|
|
12551
12559
|
declare const createTokenSigner: (options: {
|