@uniformdev/mesh-sdk 18.3.1-alpha.22 → 18.5.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.ts +6 -6
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -624,7 +624,7 @@ declare class IntegrationInstallationClient extends ApiClient {
|
|
|
624
624
|
type DataSourceLocationValue = Pick<DataSource, 'baseUrl' | 'custom' | 'headers' | 'parameters' | 'variables'>;
|
|
625
625
|
type DataSourceLocationMetadata<TIntegrationConfiguration = unknown> = {
|
|
626
626
|
/** Settings defined at the integration level (arbitrary type used on settings location) */
|
|
627
|
-
settings: TIntegrationConfiguration
|
|
627
|
+
settings: TIntegrationConfiguration;
|
|
628
628
|
/** The Uniform project ID */
|
|
629
629
|
projectId: string;
|
|
630
630
|
};
|
|
@@ -637,13 +637,13 @@ type ParamTypeLocationMetadata<TParamConfiguration = unknown, TIntegrationConfig
|
|
|
637
637
|
componentDefinitions: Record<string, ComponentDefinition | undefined>;
|
|
638
638
|
parameterDefinition: ComponentDefinitionParameter;
|
|
639
639
|
/** Settings defined at the integration level (arbitrary type used on settings location) */
|
|
640
|
-
settings: TIntegrationConfiguration
|
|
640
|
+
settings: TIntegrationConfiguration;
|
|
641
641
|
/** The Uniform project ID */
|
|
642
642
|
projectId: string;
|
|
643
643
|
};
|
|
644
644
|
type ParamTypeLocation<TParamValue = unknown, TParamConfiguration = unknown, TParamSetValue = TParamValue, TIntegrationConfiguration = unknown> = MeshLocationCore<TParamValue | undefined, ParamTypeLocationMetadata<TParamConfiguration, TIntegrationConfiguration>, TParamSetValue, 'paramType'>;
|
|
645
645
|
|
|
646
|
-
type SettingsLocation<TSettingsType> = MeshLocationCore<TSettingsType
|
|
646
|
+
type SettingsLocation<TSettingsType> = MeshLocationCore<TSettingsType, undefined, TSettingsType, 'settings'>;
|
|
647
647
|
|
|
648
648
|
/**
|
|
649
649
|
* Defines methods used for interacting with a Mesh location
|
|
@@ -831,7 +831,7 @@ type DataConnectorInfo = {
|
|
|
831
831
|
};
|
|
832
832
|
type DataTypeLocationMetadata<TIntegrationConfiguration = unknown> = {
|
|
833
833
|
/** Settings defined at the integration level (arbitrary type used on settings location) */
|
|
834
|
-
settings: TIntegrationConfiguration
|
|
834
|
+
settings: TIntegrationConfiguration;
|
|
835
835
|
/** The Uniform project ID */
|
|
836
836
|
projectId: string;
|
|
837
837
|
/**
|
|
@@ -849,7 +849,7 @@ type DataTypeLocation = MeshLocationCore<DataTypeLocationValue, DataTypeLocation
|
|
|
849
849
|
type DataTypeInstanceLocationMetadata<TIntegrationConfiguration = unknown> = DataResourceLocationMetadata<TIntegrationConfiguration>;
|
|
850
850
|
type DataResourceLocationMetadata<TIntegrationConfiguration = unknown> = {
|
|
851
851
|
/** Settings defined at the integration level (arbitrary type used on settings location) */
|
|
852
|
-
settings: TIntegrationConfiguration
|
|
852
|
+
settings: TIntegrationConfiguration;
|
|
853
853
|
/** The current data resource's data type */
|
|
854
854
|
dataType: DataType$1;
|
|
855
855
|
/** The data type's archetype value. */
|
|
@@ -869,7 +869,7 @@ type DataTypeInstanceLocation = MeshLocationCore<DataResourceVariables, DataReso
|
|
|
869
869
|
|
|
870
870
|
type ParamTypeConfigLocationMetadata<TIntegrationConfiguration = unknown> = {
|
|
871
871
|
/** Settings defined at the integration level (arbitrary type used on settings location) */
|
|
872
|
-
settings: TIntegrationConfiguration
|
|
872
|
+
settings: TIntegrationConfiguration;
|
|
873
873
|
/** The Uniform project ID */
|
|
874
874
|
projectId: string;
|
|
875
875
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/mesh-sdk",
|
|
3
|
-
"version": "18.
|
|
3
|
+
"version": "18.5.0",
|
|
4
4
|
"description": "Uniform Mesh Framework SDK",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
"access": "public"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@uniformdev/canvas": "18.
|
|
35
|
-
"@uniformdev/context": "18.
|
|
34
|
+
"@uniformdev/canvas": "18.5.0",
|
|
35
|
+
"@uniformdev/context": "18.5.0",
|
|
36
36
|
"mitt": "^3.0.0"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "757923e90bece28162621d867709e08674bdaa05"
|
|
39
39
|
}
|