@uniformdev/mesh-sdk 19.135.0 → 19.135.1-alpha.9
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 +9 -1
- package/dist/index.d.ts +9 -1
- package/package.json +5 -5
package/dist/index.d.mts
CHANGED
|
@@ -1199,6 +1199,8 @@ type CommonMetadata<ExtendedMetadata = unknown, TIntegrationConfiguration = unkn
|
|
|
1199
1199
|
user: UniformUser;
|
|
1200
1200
|
/** Current Uniform Project ID */
|
|
1201
1201
|
projectId: string;
|
|
1202
|
+
/** Current Uniform Dashboard URL origin. Can be useful to build links to the Uniform app */
|
|
1203
|
+
dashboardOrigin: string;
|
|
1202
1204
|
/** Settings defined at the integration level (arbitrary type used on settings location) */
|
|
1203
1205
|
settings: TIntegrationConfiguration;
|
|
1204
1206
|
} & ExtendedMetadata;
|
|
@@ -1272,7 +1274,13 @@ type MeshLocationUserPermissions =
|
|
|
1272
1274
|
/** UTM Mapper:Read|Read UTM mapper configuration */
|
|
1273
1275
|
| 'UTM_MAPPER_READ'
|
|
1274
1276
|
/** Uniform Canvas:Releases:Launch|Launch a release */
|
|
1275
|
-
| 'RELEASES_LAUNCH'
|
|
1277
|
+
| 'RELEASES_LAUNCH'
|
|
1278
|
+
/** Uniform Canvas:Releases:Create */
|
|
1279
|
+
| 'RELEASES_CREATE'
|
|
1280
|
+
/** Uniform Canvas:Releases:Delete */
|
|
1281
|
+
| 'RELEASES_DELETE'
|
|
1282
|
+
/** Uniform Canvas:Releases:Update */
|
|
1283
|
+
| 'RELEASES_UPDATE';
|
|
1276
1284
|
/**
|
|
1277
1285
|
* Known location types that can be passed to a mesh location
|
|
1278
1286
|
*/
|
package/dist/index.d.ts
CHANGED
|
@@ -1199,6 +1199,8 @@ type CommonMetadata<ExtendedMetadata = unknown, TIntegrationConfiguration = unkn
|
|
|
1199
1199
|
user: UniformUser;
|
|
1200
1200
|
/** Current Uniform Project ID */
|
|
1201
1201
|
projectId: string;
|
|
1202
|
+
/** Current Uniform Dashboard URL origin. Can be useful to build links to the Uniform app */
|
|
1203
|
+
dashboardOrigin: string;
|
|
1202
1204
|
/** Settings defined at the integration level (arbitrary type used on settings location) */
|
|
1203
1205
|
settings: TIntegrationConfiguration;
|
|
1204
1206
|
} & ExtendedMetadata;
|
|
@@ -1272,7 +1274,13 @@ type MeshLocationUserPermissions =
|
|
|
1272
1274
|
/** UTM Mapper:Read|Read UTM mapper configuration */
|
|
1273
1275
|
| 'UTM_MAPPER_READ'
|
|
1274
1276
|
/** Uniform Canvas:Releases:Launch|Launch a release */
|
|
1275
|
-
| 'RELEASES_LAUNCH'
|
|
1277
|
+
| 'RELEASES_LAUNCH'
|
|
1278
|
+
/** Uniform Canvas:Releases:Create */
|
|
1279
|
+
| 'RELEASES_CREATE'
|
|
1280
|
+
/** Uniform Canvas:Releases:Delete */
|
|
1281
|
+
| 'RELEASES_DELETE'
|
|
1282
|
+
/** Uniform Canvas:Releases:Update */
|
|
1283
|
+
| 'RELEASES_UPDATE';
|
|
1276
1284
|
/**
|
|
1277
1285
|
* Known location types that can be passed to a mesh location
|
|
1278
1286
|
*/
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/mesh-sdk",
|
|
3
|
-
"version": "19.135.
|
|
3
|
+
"version": "19.135.1-alpha.9+6715fce92a",
|
|
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.135.
|
|
37
|
-
"@uniformdev/context": "19.135.
|
|
38
|
-
"@uniformdev/project-map": "19.135.
|
|
36
|
+
"@uniformdev/canvas": "19.135.1-alpha.9+6715fce92a",
|
|
37
|
+
"@uniformdev/context": "19.135.1-alpha.9+6715fce92a",
|
|
38
|
+
"@uniformdev/project-map": "19.135.1-alpha.9+6715fce92a",
|
|
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": "6715fce92a09242316f5a218cc3d94b39e58cc05"
|
|
46
46
|
}
|