@absolutejs/absolute 0.19.0-beta.145 → 0.19.0-beta.146
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/types/messages.d.ts
CHANGED
|
@@ -117,6 +117,9 @@ export type VueUpdateMessage = {
|
|
|
117
117
|
componentPath?: string;
|
|
118
118
|
cssUrl?: string;
|
|
119
119
|
cssBaseName?: string;
|
|
120
|
+
forceReload?: boolean;
|
|
121
|
+
pageModuleUrl?: string;
|
|
122
|
+
serverDuration?: number;
|
|
120
123
|
updateType?: 'css-only' | 'full';
|
|
121
124
|
};
|
|
122
125
|
timestamp: number;
|
package/package.json
CHANGED
package/types/messages.ts
CHANGED
|
@@ -142,6 +142,9 @@ export type VueUpdateMessage = {
|
|
|
142
142
|
componentPath?: string;
|
|
143
143
|
cssUrl?: string;
|
|
144
144
|
cssBaseName?: string;
|
|
145
|
+
forceReload?: boolean;
|
|
146
|
+
pageModuleUrl?: string;
|
|
147
|
+
serverDuration?: number;
|
|
145
148
|
updateType?: 'css-only' | 'full';
|
|
146
149
|
};
|
|
147
150
|
timestamp: number;
|