@teemill/website 0.32.0 → 0.33.1
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/.openapi-generator/FILES +1 -0
- package/README.md +3 -2
- package/api.ts +21 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +21 -1
- package/dist/api.js +1 -1
- package/dist/base.d.ts +1 -1
- package/dist/base.js +1 -1
- package/dist/common.d.ts +1 -1
- package/dist/common.js +1 -1
- package/dist/configuration.d.ts +1 -1
- package/dist/configuration.js +1 -1
- package/dist/esm/api.d.ts +21 -1
- package/dist/esm/api.js +1 -1
- package/dist/esm/base.d.ts +1 -1
- package/dist/esm/base.js +1 -1
- package/dist/esm/common.d.ts +1 -1
- package/dist/esm/common.js +1 -1
- package/dist/esm/configuration.d.ts +1 -1
- package/dist/esm/configuration.js +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +1 -1
- package/docs/KeyphraseOpportunitiesResponse.md +2 -0
- package/docs/KeyphraseOpportunitiesResponseMeta.md +23 -0
- package/docs/KeyphraseOpportunity.md +2 -2
- package/index.ts +1 -1
- package/package.json +1 -1
package/.openapi-generator/FILES
CHANGED
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/website@0.
|
|
1
|
+
## @teemill/website@0.33.1
|
|
2
2
|
|
|
3
3
|
This generator creates TypeScript/JavaScript client that utilizes [axios](https://github.com/axios/axios). The generated Node module can be used in the following environments:
|
|
4
4
|
|
|
@@ -36,7 +36,7 @@ navigate to the folder of your consuming project and run one of the following co
|
|
|
36
36
|
_published:_
|
|
37
37
|
|
|
38
38
|
```
|
|
39
|
-
npm install @teemill/website@0.
|
|
39
|
+
npm install @teemill/website@0.33.1 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -117,6 +117,7 @@ Class | Method | HTTP request | Description
|
|
|
117
117
|
- [FooterItem](docs/FooterItem.md)
|
|
118
118
|
- [Image](docs/Image.md)
|
|
119
119
|
- [KeyphraseOpportunitiesResponse](docs/KeyphraseOpportunitiesResponse.md)
|
|
120
|
+
- [KeyphraseOpportunitiesResponseMeta](docs/KeyphraseOpportunitiesResponseMeta.md)
|
|
120
121
|
- [KeyphraseOpportunity](docs/KeyphraseOpportunity.md)
|
|
121
122
|
- [ListDomains200Response](docs/ListDomains200Response.md)
|
|
122
123
|
- [ListRoutesResponse](docs/ListRoutesResponse.md)
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Website
|
|
5
5
|
* Manage your PodOS Website
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.33.1
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -199,14 +199,34 @@ export interface Image {
|
|
|
199
199
|
}
|
|
200
200
|
export interface KeyphraseOpportunitiesResponse {
|
|
201
201
|
'keyphraseOpportunities': Array<KeyphraseOpportunity>;
|
|
202
|
+
'meta': KeyphraseOpportunitiesResponseMeta;
|
|
202
203
|
/**
|
|
203
204
|
* The token referencing the next page number
|
|
204
205
|
*/
|
|
205
206
|
'nextPageToken': number | null;
|
|
206
207
|
}
|
|
208
|
+
/**
|
|
209
|
+
* Object containing metadata about the keyphrase opportunities list.
|
|
210
|
+
*/
|
|
211
|
+
export interface KeyphraseOpportunitiesResponseMeta {
|
|
212
|
+
/**
|
|
213
|
+
* Total number of unique keyphrases stored against the project.
|
|
214
|
+
*/
|
|
215
|
+
'totalPhrases': number;
|
|
216
|
+
/**
|
|
217
|
+
* Combined monthly volume of all keyphrases stored against the project.
|
|
218
|
+
*/
|
|
219
|
+
'totalMonthlyVolume': number;
|
|
220
|
+
}
|
|
207
221
|
export interface KeyphraseOpportunity {
|
|
208
222
|
'id': string;
|
|
223
|
+
/**
|
|
224
|
+
* The keyphrase that has been identified as an opportunity
|
|
225
|
+
*/
|
|
209
226
|
'phrase': string;
|
|
227
|
+
/**
|
|
228
|
+
* Monthly search volume for the keyphrase
|
|
229
|
+
*/
|
|
210
230
|
'monthlyVolume': number | null;
|
|
211
231
|
}
|
|
212
232
|
export interface ListDomains200Response {
|
package/base.ts
CHANGED
package/common.ts
CHANGED
package/configuration.ts
CHANGED
package/dist/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Website
|
|
3
3
|
* Manage your PodOS Website
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.33.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -182,14 +182,34 @@ export interface Image {
|
|
|
182
182
|
}
|
|
183
183
|
export interface KeyphraseOpportunitiesResponse {
|
|
184
184
|
'keyphraseOpportunities': Array<KeyphraseOpportunity>;
|
|
185
|
+
'meta': KeyphraseOpportunitiesResponseMeta;
|
|
185
186
|
/**
|
|
186
187
|
* The token referencing the next page number
|
|
187
188
|
*/
|
|
188
189
|
'nextPageToken': number | null;
|
|
189
190
|
}
|
|
191
|
+
/**
|
|
192
|
+
* Object containing metadata about the keyphrase opportunities list.
|
|
193
|
+
*/
|
|
194
|
+
export interface KeyphraseOpportunitiesResponseMeta {
|
|
195
|
+
/**
|
|
196
|
+
* Total number of unique keyphrases stored against the project.
|
|
197
|
+
*/
|
|
198
|
+
'totalPhrases': number;
|
|
199
|
+
/**
|
|
200
|
+
* Combined monthly volume of all keyphrases stored against the project.
|
|
201
|
+
*/
|
|
202
|
+
'totalMonthlyVolume': number;
|
|
203
|
+
}
|
|
190
204
|
export interface KeyphraseOpportunity {
|
|
191
205
|
'id': string;
|
|
206
|
+
/**
|
|
207
|
+
* The keyphrase that has been identified as an opportunity
|
|
208
|
+
*/
|
|
192
209
|
'phrase': string;
|
|
210
|
+
/**
|
|
211
|
+
* Monthly search volume for the keyphrase
|
|
212
|
+
*/
|
|
193
213
|
'monthlyVolume': number | null;
|
|
194
214
|
}
|
|
195
215
|
export interface ListDomains200Response {
|
package/dist/api.js
CHANGED
package/dist/base.d.ts
CHANGED
package/dist/base.js
CHANGED
package/dist/common.d.ts
CHANGED
package/dist/common.js
CHANGED
package/dist/configuration.d.ts
CHANGED
package/dist/configuration.js
CHANGED
package/dist/esm/api.d.ts
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
* Website
|
|
3
3
|
* Manage your PodOS Website
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.33.1
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -182,14 +182,34 @@ export interface Image {
|
|
|
182
182
|
}
|
|
183
183
|
export interface KeyphraseOpportunitiesResponse {
|
|
184
184
|
'keyphraseOpportunities': Array<KeyphraseOpportunity>;
|
|
185
|
+
'meta': KeyphraseOpportunitiesResponseMeta;
|
|
185
186
|
/**
|
|
186
187
|
* The token referencing the next page number
|
|
187
188
|
*/
|
|
188
189
|
'nextPageToken': number | null;
|
|
189
190
|
}
|
|
191
|
+
/**
|
|
192
|
+
* Object containing metadata about the keyphrase opportunities list.
|
|
193
|
+
*/
|
|
194
|
+
export interface KeyphraseOpportunitiesResponseMeta {
|
|
195
|
+
/**
|
|
196
|
+
* Total number of unique keyphrases stored against the project.
|
|
197
|
+
*/
|
|
198
|
+
'totalPhrases': number;
|
|
199
|
+
/**
|
|
200
|
+
* Combined monthly volume of all keyphrases stored against the project.
|
|
201
|
+
*/
|
|
202
|
+
'totalMonthlyVolume': number;
|
|
203
|
+
}
|
|
190
204
|
export interface KeyphraseOpportunity {
|
|
191
205
|
'id': string;
|
|
206
|
+
/**
|
|
207
|
+
* The keyphrase that has been identified as an opportunity
|
|
208
|
+
*/
|
|
192
209
|
'phrase': string;
|
|
210
|
+
/**
|
|
211
|
+
* Monthly search volume for the keyphrase
|
|
212
|
+
*/
|
|
193
213
|
'monthlyVolume': number | null;
|
|
194
214
|
}
|
|
195
215
|
export interface ListDomains200Response {
|
package/dist/esm/api.js
CHANGED
package/dist/esm/base.d.ts
CHANGED
package/dist/esm/base.js
CHANGED
package/dist/esm/common.d.ts
CHANGED
package/dist/esm/common.js
CHANGED
package/dist/esm/index.d.ts
CHANGED
package/dist/esm/index.js
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -6,6 +6,7 @@
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**keyphraseOpportunities** | [**Array<KeyphraseOpportunity>**](KeyphraseOpportunity.md) | | [default to undefined]
|
|
9
|
+
**meta** | [**KeyphraseOpportunitiesResponseMeta**](KeyphraseOpportunitiesResponseMeta.md) | | [default to undefined]
|
|
9
10
|
**nextPageToken** | **number** | The token referencing the next page number | [default to undefined]
|
|
10
11
|
|
|
11
12
|
## Example
|
|
@@ -15,6 +16,7 @@ import { KeyphraseOpportunitiesResponse } from '@teemill/website';
|
|
|
15
16
|
|
|
16
17
|
const instance: KeyphraseOpportunitiesResponse = {
|
|
17
18
|
keyphraseOpportunities,
|
|
19
|
+
meta,
|
|
18
20
|
nextPageToken,
|
|
19
21
|
};
|
|
20
22
|
```
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# KeyphraseOpportunitiesResponseMeta
|
|
2
|
+
|
|
3
|
+
Object containing metadata about the keyphrase opportunities list.
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
**totalPhrases** | **number** | Total number of unique keyphrases stored against the project. | [default to undefined]
|
|
10
|
+
**totalMonthlyVolume** | **number** | Combined monthly volume of all keyphrases stored against the project. | [default to undefined]
|
|
11
|
+
|
|
12
|
+
## Example
|
|
13
|
+
|
|
14
|
+
```typescript
|
|
15
|
+
import { KeyphraseOpportunitiesResponseMeta } from '@teemill/website';
|
|
16
|
+
|
|
17
|
+
const instance: KeyphraseOpportunitiesResponseMeta = {
|
|
18
|
+
totalPhrases,
|
|
19
|
+
totalMonthlyVolume,
|
|
20
|
+
};
|
|
21
|
+
```
|
|
22
|
+
|
|
23
|
+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
|
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
Name | Type | Description | Notes
|
|
7
7
|
------------ | ------------- | ------------- | -------------
|
|
8
8
|
**id** | **string** | | [default to undefined]
|
|
9
|
-
**phrase** | **string** |
|
|
10
|
-
**monthlyVolume** | **number** |
|
|
9
|
+
**phrase** | **string** | The keyphrase that has been identified as an opportunity | [default to undefined]
|
|
10
|
+
**monthlyVolume** | **number** | Monthly search volume for the keyphrase | [default to undefined]
|
|
11
11
|
|
|
12
12
|
## Example
|
|
13
13
|
|
package/index.ts
CHANGED