@uniformdev/mesh-sdk 19.173.2-alpha.8 → 19.175.1-alpha.35
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 +5 -1
- package/dist/index.d.ts +5 -1
- package/package.json +5 -5
package/dist/index.d.mts
CHANGED
|
@@ -90,6 +90,7 @@ interface paths$1 {
|
|
|
90
90
|
type: string;
|
|
91
91
|
displayName: string;
|
|
92
92
|
dataSourceEditorUrl?: string;
|
|
93
|
+
supportsUnpublishedData?: boolean;
|
|
93
94
|
dataSourceEditorLocations?: {
|
|
94
95
|
[key: string]: {
|
|
95
96
|
url: string;
|
|
@@ -259,6 +260,7 @@ interface paths$1 {
|
|
|
259
260
|
type: string;
|
|
260
261
|
displayName: string;
|
|
261
262
|
dataSourceEditorUrl?: string;
|
|
263
|
+
supportsUnpublishedData?: boolean;
|
|
262
264
|
dataSourceEditorLocations?: {
|
|
263
265
|
[key: string]: {
|
|
264
266
|
url: string;
|
|
@@ -427,6 +429,7 @@ interface paths$1 {
|
|
|
427
429
|
type: string;
|
|
428
430
|
displayName: string;
|
|
429
431
|
dataSourceEditorUrl?: string;
|
|
432
|
+
supportsUnpublishedData?: boolean;
|
|
430
433
|
dataSourceEditorLocations?: {
|
|
431
434
|
[key: string]: {
|
|
432
435
|
url: string;
|
|
@@ -843,6 +846,7 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
|
|
|
843
846
|
type: string;
|
|
844
847
|
displayName: string;
|
|
845
848
|
dataSourceEditorUrl?: string | undefined;
|
|
849
|
+
supportsUnpublishedData?: boolean | undefined;
|
|
846
850
|
dataSourceEditorLocations?: {
|
|
847
851
|
[key: string]: {
|
|
848
852
|
url: string;
|
|
@@ -999,7 +1003,7 @@ type DataResourceLocationMetadata<TIntegrationConfiguration = unknown> = CommonM
|
|
|
999
1003
|
}, TIntegrationConfiguration>;
|
|
1000
1004
|
type DataResourceLocation = MeshLocationCore<DataResourceVariables, DataResourceLocationMetadata, DataResourceVariables, 'dataResource'> & GetDataResourceLocation;
|
|
1001
1005
|
|
|
1002
|
-
type DataSourceLocationValue = Pick<DataSource, 'baseUrl' | 'custom' | 'customPublic' | 'headers' | 'parameters' | 'variables'>;
|
|
1006
|
+
type DataSourceLocationValue = Pick<DataSource, 'baseUrl' | 'custom' | 'customPublic' | 'headers' | 'parameters' | 'variables' | 'enableUnpublishedMode'>;
|
|
1003
1007
|
type DataSourceLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<unknown, TIntegrationConfiguration>;
|
|
1004
1008
|
type DataSourceLocation = MeshLocationCore<DataSourceLocationValue, DataSourceLocationMetadata, DataSourceLocationValue, 'dataSource'>;
|
|
1005
1009
|
|
package/dist/index.d.ts
CHANGED
|
@@ -90,6 +90,7 @@ interface paths$1 {
|
|
|
90
90
|
type: string;
|
|
91
91
|
displayName: string;
|
|
92
92
|
dataSourceEditorUrl?: string;
|
|
93
|
+
supportsUnpublishedData?: boolean;
|
|
93
94
|
dataSourceEditorLocations?: {
|
|
94
95
|
[key: string]: {
|
|
95
96
|
url: string;
|
|
@@ -259,6 +260,7 @@ interface paths$1 {
|
|
|
259
260
|
type: string;
|
|
260
261
|
displayName: string;
|
|
261
262
|
dataSourceEditorUrl?: string;
|
|
263
|
+
supportsUnpublishedData?: boolean;
|
|
262
264
|
dataSourceEditorLocations?: {
|
|
263
265
|
[key: string]: {
|
|
264
266
|
url: string;
|
|
@@ -427,6 +429,7 @@ interface paths$1 {
|
|
|
427
429
|
type: string;
|
|
428
430
|
displayName: string;
|
|
429
431
|
dataSourceEditorUrl?: string;
|
|
432
|
+
supportsUnpublishedData?: boolean;
|
|
430
433
|
dataSourceEditorLocations?: {
|
|
431
434
|
[key: string]: {
|
|
432
435
|
url: string;
|
|
@@ -843,6 +846,7 @@ declare class IntegrationDefinitionClient extends ApiClient<DefClientOptions> {
|
|
|
843
846
|
type: string;
|
|
844
847
|
displayName: string;
|
|
845
848
|
dataSourceEditorUrl?: string | undefined;
|
|
849
|
+
supportsUnpublishedData?: boolean | undefined;
|
|
846
850
|
dataSourceEditorLocations?: {
|
|
847
851
|
[key: string]: {
|
|
848
852
|
url: string;
|
|
@@ -999,7 +1003,7 @@ type DataResourceLocationMetadata<TIntegrationConfiguration = unknown> = CommonM
|
|
|
999
1003
|
}, TIntegrationConfiguration>;
|
|
1000
1004
|
type DataResourceLocation = MeshLocationCore<DataResourceVariables, DataResourceLocationMetadata, DataResourceVariables, 'dataResource'> & GetDataResourceLocation;
|
|
1001
1005
|
|
|
1002
|
-
type DataSourceLocationValue = Pick<DataSource, 'baseUrl' | 'custom' | 'customPublic' | 'headers' | 'parameters' | 'variables'>;
|
|
1006
|
+
type DataSourceLocationValue = Pick<DataSource, 'baseUrl' | 'custom' | 'customPublic' | 'headers' | 'parameters' | 'variables' | 'enableUnpublishedMode'>;
|
|
1003
1007
|
type DataSourceLocationMetadata<TIntegrationConfiguration = unknown> = CommonMetadata<unknown, TIntegrationConfiguration>;
|
|
1004
1008
|
type DataSourceLocation = MeshLocationCore<DataSourceLocationValue, DataSourceLocationMetadata, DataSourceLocationValue, 'dataSource'>;
|
|
1005
1009
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/mesh-sdk",
|
|
3
|
-
"version": "19.
|
|
3
|
+
"version": "19.175.1-alpha.35+f2ac62967d",
|
|
4
4
|
"description": "Uniform Mesh Framework SDK",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -33,14 +33,14 @@
|
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@uniformdev/canvas": "19.
|
|
37
|
-
"@uniformdev/context": "19.
|
|
38
|
-
"@uniformdev/project-map": "19.
|
|
36
|
+
"@uniformdev/canvas": "19.175.1-alpha.35+f2ac62967d",
|
|
37
|
+
"@uniformdev/context": "19.175.1-alpha.35+f2ac62967d",
|
|
38
|
+
"@uniformdev/project-map": "19.175.1-alpha.35+f2ac62967d",
|
|
39
39
|
"imagesloaded": "^5.0.0",
|
|
40
40
|
"mitt": "^3.0.0"
|
|
41
41
|
},
|
|
42
42
|
"devDependencies": {
|
|
43
43
|
"@types/imagesloaded": "^4.1.2"
|
|
44
44
|
},
|
|
45
|
-
"gitHead": "
|
|
45
|
+
"gitHead": "f2ac62967d4046285a3cf007cf90fd2889510262"
|
|
46
46
|
}
|