@explorer-1/vue 0.2.101 → 0.2.102
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/CHANGELOG.md +6 -0
- package/package.json +1 -1
- package/src/interfaces.ts +12 -0
package/CHANGELOG.md
CHANGED
package/package.json
CHANGED
package/src/interfaces.ts
CHANGED
|
@@ -171,6 +171,18 @@ export interface BlockRelatedLinksObject extends BlockData {
|
|
|
171
171
|
links: RelatedLinkObject[]
|
|
172
172
|
}
|
|
173
173
|
|
|
174
|
+
export interface InitResponse {
|
|
175
|
+
init: {
|
|
176
|
+
id: string
|
|
177
|
+
__typename: string
|
|
178
|
+
}
|
|
179
|
+
redirect: {
|
|
180
|
+
isPermanent: boolean
|
|
181
|
+
oldPath: string
|
|
182
|
+
newUrl: string
|
|
183
|
+
}
|
|
184
|
+
}
|
|
185
|
+
|
|
174
186
|
export interface PageResponse {
|
|
175
187
|
__typename: string
|
|
176
188
|
page: PageObject
|