@veltdev/sdk 4.5.0-beta.19 → 4.5.0-beta.20
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/app/client/snippyly.model.d.ts +7 -1
- package/package.json +1 -1
- package/velt.js +42 -42
|
@@ -131,7 +131,13 @@ export declare class Snippyly {
|
|
|
131
131
|
* To remove multiple locations
|
|
132
132
|
* @param locations Location objects
|
|
133
133
|
*/
|
|
134
|
-
removeLocations: (locations?: Location[]) =>
|
|
134
|
+
removeLocations: (locations?: Location[]) => void;
|
|
135
|
+
|
|
136
|
+
/**
|
|
137
|
+
* To remove location ids
|
|
138
|
+
* @param locationIds Location ids
|
|
139
|
+
*/
|
|
140
|
+
unsetLocationIds: (locationIds?: string[]) => void;
|
|
135
141
|
|
|
136
142
|
/**
|
|
137
143
|
* To exclude data of specific location ids
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/sdk",
|
|
3
|
-
"version": "4.5.0-beta.
|
|
3
|
+
"version": "4.5.0-beta.20",
|
|
4
4
|
"description": "Velt is an SDK to add collaborative features to your product within minutes. Example: Comments like Figma, Frame.io, Google docs or sheets, Recording like Loom, Huddles like Slack and much more.",
|
|
5
5
|
"homepage": "https://velt.dev",
|
|
6
6
|
"keywords": [
|