@uniformdev/mesh-sdk 18.16.1-alpha.6 → 18.18.1-alpha.12
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 +5 -0
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -367,6 +367,7 @@ interface paths {
|
|
|
367
367
|
query: {
|
|
368
368
|
projectId: string;
|
|
369
369
|
type?: string;
|
|
370
|
+
exactType?: boolean | null;
|
|
370
371
|
teamSpecificType?: boolean | null;
|
|
371
372
|
};
|
|
372
373
|
};
|
|
@@ -410,6 +411,8 @@ interface paths {
|
|
|
410
411
|
* @description The project ID
|
|
411
412
|
*/
|
|
412
413
|
projectId: string;
|
|
414
|
+
/** @description Whether to match the passed type exactly or to treat the type as a prefix */
|
|
415
|
+
exactType?: boolean | null;
|
|
413
416
|
type: string;
|
|
414
417
|
data?: {
|
|
415
418
|
[key: string]: unknown;
|
|
@@ -441,6 +444,8 @@ interface paths {
|
|
|
441
444
|
projectId: string;
|
|
442
445
|
/** @description The integration type to remove */
|
|
443
446
|
type: string;
|
|
447
|
+
/** @description Whether to match the passed type exactly or to treat the type as a prefix */
|
|
448
|
+
exactType?: boolean | null;
|
|
444
449
|
};
|
|
445
450
|
};
|
|
446
451
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@uniformdev/mesh-sdk",
|
|
3
|
-
"version": "18.
|
|
3
|
+
"version": "18.18.1-alpha.12+e9f4d7eda",
|
|
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.18.1-alpha.12+e9f4d7eda",
|
|
35
|
+
"@uniformdev/context": "18.18.1-alpha.12+e9f4d7eda",
|
|
36
36
|
"mitt": "^3.0.0"
|
|
37
37
|
},
|
|
38
|
-
"gitHead": "
|
|
38
|
+
"gitHead": "e9f4d7eda7b1b425205d0be4ec736ebd5dbaed4d"
|
|
39
39
|
}
|