@veltdev/types 5.0.2-beta.10 → 5.0.2-beta.11
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.
|
@@ -51,6 +51,7 @@ export declare class Config {
|
|
|
51
51
|
advancedQueriesDisabled?: boolean;
|
|
52
52
|
/**
|
|
53
53
|
* The domain of the API proxy.
|
|
54
|
+
* @deprecated Use `proxyConfig.apiHost` instead.
|
|
54
55
|
*/
|
|
55
56
|
apiProxyDomain?: string;
|
|
56
57
|
/**
|
|
@@ -61,6 +62,26 @@ export declare class Config {
|
|
|
61
62
|
* Default: true
|
|
62
63
|
*/
|
|
63
64
|
globalStyles?: boolean;
|
|
65
|
+
/**
|
|
66
|
+
* Configuration for routing all traffic through reverse proxies.
|
|
67
|
+
*/
|
|
68
|
+
proxyConfig?: ProxyConfig;
|
|
69
|
+
}
|
|
70
|
+
export interface ProxyConfig {
|
|
71
|
+
/** Custom host for the Velt CDN (e.g., 'cdn-proxy.customer.com') */
|
|
72
|
+
cdnHost?: string;
|
|
73
|
+
/** Custom host for the Velt API (e.g., 'api-proxy.customer.com') */
|
|
74
|
+
apiHost?: string;
|
|
75
|
+
/** Custom host for Firestore (e.g., 'firestore-proxy.customer.com') */
|
|
76
|
+
v2DbHost?: string;
|
|
77
|
+
/** Custom host for Firebase RTDB (e.g., 'rtdb-proxy.customer.com'). Replaces the firebaseio.com domain in all RTDB URLs. */
|
|
78
|
+
v1DbHost?: string;
|
|
79
|
+
/** Custom host for Firebase Storage (e.g., 'storage-proxy.customer.com'). Replaces firebasestorage.googleapis.com. */
|
|
80
|
+
storageHost?: string;
|
|
81
|
+
/** Custom host for Firebase Auth (e.g., 'auth-proxy.customer.com'). Replaces identitytoolkit.googleapis.com and securetoken.googleapis.com. */
|
|
82
|
+
authHost?: string;
|
|
83
|
+
/** Force long-polling for Firestore and RTDB instead of WebSocket. Default: false (WebSocket). */
|
|
84
|
+
forceLongPolling?: boolean;
|
|
64
85
|
}
|
|
65
86
|
export interface ExtendedFirebaseOptions extends FirebaseOptions {
|
|
66
87
|
storeDbId: string;
|
package/app/utils/constants.d.ts
CHANGED
|
@@ -236,12 +236,48 @@ export declare class Constants {
|
|
|
236
236
|
VELT_COMMENT_SIDEBAR_FOCUSED_THREAD_BACK_BUTTON_V2: string;
|
|
237
237
|
VELT_COMMENT_SIDEBAR_FOCUSED_THREAD_DIALOG_CONTAINER_V2: string;
|
|
238
238
|
VELT_COMMENT_BUBBLE: string;
|
|
239
|
+
VELT_COMMENT_BUBBLE_AVATAR: string;
|
|
240
|
+
VELT_COMMENT_BUBBLE_COMMENTS_COUNT: string;
|
|
241
|
+
VELT_COMMENT_BUBBLE_UNREAD_ICON: string;
|
|
239
242
|
VELT_COMMENT_THREAD: string;
|
|
240
243
|
VELT_COMMENT_PIN: string;
|
|
244
|
+
VELT_COMMENT_PIN_NUMBER: string;
|
|
245
|
+
VELT_COMMENT_PIN_INDEX: string;
|
|
246
|
+
VELT_COMMENT_PIN_TRIANGLE: string;
|
|
247
|
+
VELT_COMMENT_PIN_PRIVATE_COMMENT_INDICATOR: string;
|
|
248
|
+
VELT_COMMENT_PIN_GHOST_COMMENT_INDICATOR: string;
|
|
249
|
+
VELT_COMMENT_PIN_UNREAD_COMMENT_INDICATOR: string;
|
|
250
|
+
VELT_SIDEBAR_BUTTON_ICON: string;
|
|
251
|
+
VELT_SIDEBAR_BUTTON_COMMENTS_COUNT: string;
|
|
252
|
+
VELT_SIDEBAR_BUTTON_UNREAD_ICON: string;
|
|
241
253
|
VELT_COMMENT_TEXT: string;
|
|
242
254
|
VELT_CHART_COMMENT: string;
|
|
243
255
|
VELT_CANVAS_COMMENT: string;
|
|
244
256
|
VELT_INLINE_COMMENTS_SECTION: string;
|
|
257
|
+
VELT_INLINE_COMMENTS_SECTION_SKELETON: string;
|
|
258
|
+
VELT_INLINE_COMMENTS_SECTION_PANEL: string;
|
|
259
|
+
VELT_INLINE_COMMENTS_SECTION_LIST: string;
|
|
260
|
+
VELT_INLINE_COMMENTS_SECTION_COMPOSER_CONTAINER: string;
|
|
261
|
+
VELT_INLINE_COMMENTS_SECTION_COMMENT_COUNT: string;
|
|
262
|
+
VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN: string;
|
|
263
|
+
VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_TRIGGER: string;
|
|
264
|
+
VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_TRIGGER_NAME: string;
|
|
265
|
+
VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_TRIGGER_ICON: string;
|
|
266
|
+
VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_CONTENT: string;
|
|
267
|
+
VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_CONTENT_ITEM: string;
|
|
268
|
+
VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_CONTENT_ITEM_ICON: string;
|
|
269
|
+
VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_CONTENT_ITEM_TICK: string;
|
|
270
|
+
VELT_INLINE_COMMENTS_SECTION_SORTING_DROPDOWN_CONTENT_ITEM_NAME: string;
|
|
271
|
+
VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN: string;
|
|
272
|
+
VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_TRIGGER: string;
|
|
273
|
+
VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_TRIGGER_NAME: string;
|
|
274
|
+
VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_TRIGGER_ARROW: string;
|
|
275
|
+
VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_CONTENT: string;
|
|
276
|
+
VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_CONTENT_LIST: string;
|
|
277
|
+
VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_CONTENT_LIST_ITEM: string;
|
|
278
|
+
VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_CONTENT_LIST_ITEM_CHECKBOX: string;
|
|
279
|
+
VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_CONTENT_LIST_ITEM_LABEL: string;
|
|
280
|
+
VELT_INLINE_COMMENTS_SECTION_FILTER_DROPDOWN_CONTENT_APPLY_BUTTON: string;
|
|
245
281
|
VELT_COMMENTS_MINIMAP: string;
|
|
246
282
|
VELT_HIGHLIGHT_USER_TEXT: string;
|
|
247
283
|
VELT_AUDIO_HUDDLE: string;
|
|
@@ -335,6 +371,36 @@ export declare class Constants {
|
|
|
335
371
|
VELT_SKELETON_LOADER: string;
|
|
336
372
|
VELT_SHADOW_DOM_INTERNAL: string;
|
|
337
373
|
VELT_SINGLE_EDITOR_MODE_PANEL: string;
|
|
374
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_LIST: string;
|
|
375
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_PANEL: string;
|
|
376
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_COMPOSER_CONTAINER: string;
|
|
377
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_COMMENT_COUNT: string;
|
|
378
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_EMPTY_PLACEHOLDER: string;
|
|
379
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_CLOSE_BUTTON: string;
|
|
380
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_NEW_THREAD_BUTTON: string;
|
|
381
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_RESET_FILTER_BUTTON: string;
|
|
382
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN: string;
|
|
383
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_TRIGGER: string;
|
|
384
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT: string;
|
|
385
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT_FILTER_ALL: string;
|
|
386
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT_FILTER_READ: string;
|
|
387
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT_FILTER_RESOLVED: string;
|
|
388
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT_FILTER_UNREAD: string;
|
|
389
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT_SELECTED_ICON: string;
|
|
390
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT_SORT_DATE: string;
|
|
391
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_FILTER_DROPDOWN_CONTENT_SORT_UNREAD: string;
|
|
392
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_ACTIONS_DROPDOWN: string;
|
|
393
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_ACTIONS_DROPDOWN_TRIGGER: string;
|
|
394
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_ACTIONS_DROPDOWN_CONTENT: string;
|
|
395
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_ACTIONS_DROPDOWN_CONTENT_MARK_ALL_READ: string;
|
|
396
|
+
VELT_MULTI_THREAD_COMMENT_DIALOG_MINIMAL_ACTIONS_DROPDOWN_CONTENT_MARK_ALL_RESOLVED: string;
|
|
397
|
+
VELT_TEXT_COMMENT: string;
|
|
398
|
+
VELT_TEXT_COMMENT_TOOL: string;
|
|
399
|
+
VELT_TEXT_COMMENT_TOOLBAR: string;
|
|
400
|
+
VELT_TEXT_COMMENT_TOOLBAR_COMMENT_ANNOTATION: string;
|
|
401
|
+
VELT_TEXT_COMMENT_TOOLBAR_DIVIDER: string;
|
|
402
|
+
VELT_TEXT_COMMENT_TOOLBAR_COPYWRITER: string;
|
|
403
|
+
VELT_TEXT_COMMENT_TOOLBAR_GENERIC: string;
|
|
338
404
|
};
|
|
339
405
|
static ATTRIBUTES: {
|
|
340
406
|
VELT_COMMENT_CONTAINER: string;
|
|
@@ -452,6 +518,7 @@ export declare class Constants {
|
|
|
452
518
|
VELT_VERSION: string;
|
|
453
519
|
VELT_ADVANCED_QUERIES: string;
|
|
454
520
|
VELT_COMMENT_VIEWS_MIGRATED: string;
|
|
521
|
+
VELT_AUTH_PROXY_HOST: string;
|
|
455
522
|
};
|
|
456
523
|
static NON_NESTABLE_ELEMENTS: {
|
|
457
524
|
[tag: string]: boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@veltdev/types",
|
|
3
|
-
"version": "5.0.2-beta.
|
|
3
|
+
"version": "5.0.2-beta.11",
|
|
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": [
|