@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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @explorer-1/vue
2
2
 
3
+ ## 0.2.102
4
+
5
+ ### Patch Changes
6
+
7
+ - edd1d1e: Adding types for redirects query
8
+
3
9
  ## 0.2.101
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@explorer-1/vue",
3
- "version": "0.2.101",
3
+ "version": "0.2.102",
4
4
  "private": false,
5
5
  "publishConfig": {
6
6
  "access": "public"
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