@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 CHANGED
@@ -10698,9 +10698,10 @@ interface StorageRecordsResultDto {
10698
10698
  * Hautech API
10699
10699
  * OpenAPI spec version: 1.0
10700
10700
  */
10701
- type VariableDtoValue = {
10702
- [key: string]: unknown;
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
- name: string;
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
- type VariableDtoValue = {
10702
- [key: string]: unknown;
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
- name: string;
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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@hautechai/sdk",
3
- "version": "2.16.1",
3
+ "version": "2.17.0",
4
4
  "license": "MIT",
5
5
  "keywords": [],
6
6
  "repository": {