@uniformdev/mesh-sdk 18.4.0 → 18.6.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.
Files changed (2) hide show
  1. package/dist/index.d.ts +5 -5
  2. 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 | undefined;
627
+ settings: TIntegrationConfiguration;
628
628
  /** The Uniform project ID */
629
629
  projectId: string;
630
630
  };
@@ -637,7 +637,7 @@ 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 | undefined;
640
+ settings: TIntegrationConfiguration;
641
641
  /** The Uniform project ID */
642
642
  projectId: string;
643
643
  };
@@ -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 | undefined;
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 | undefined;
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 | undefined;
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.4.0",
3
+ "version": "18.6.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.4.0",
35
- "@uniformdev/context": "18.4.0",
34
+ "@uniformdev/canvas": "18.6.0",
35
+ "@uniformdev/context": "18.6.0",
36
36
  "mitt": "^3.0.0"
37
37
  },
38
- "gitHead": "34456ffbb8609bfaa0c2e321e1ebea82f02e040a"
38
+ "gitHead": "2e2b4d179180900386f8b3ceb30d4a854a7e22fd"
39
39
  }