@teemill/website 0.14.0 → 0.15.0
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/README.md +2 -2
- package/api.ts +50 -1
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +50 -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 +50 -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/index.ts +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @teemill/website@0.
|
|
1
|
+
## @teemill/website@0.15.0
|
|
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.15.0 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
package/api.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* Website API
|
|
5
5
|
* Manage your PodOS Website
|
|
6
6
|
*
|
|
7
|
-
* The version of the OpenAPI document: 0.
|
|
7
|
+
* The version of the OpenAPI document: 0.15.0
|
|
8
8
|
*
|
|
9
9
|
*
|
|
10
10
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -299,6 +299,12 @@ export interface Collection {
|
|
|
299
299
|
* @memberof Collection
|
|
300
300
|
*/
|
|
301
301
|
'slug'?: string;
|
|
302
|
+
/**
|
|
303
|
+
*
|
|
304
|
+
* @type {string}
|
|
305
|
+
* @memberof Collection
|
|
306
|
+
*/
|
|
307
|
+
'longDescription'?: string;
|
|
302
308
|
/**
|
|
303
309
|
*
|
|
304
310
|
* @type {SeoMetadata}
|
|
@@ -311,6 +317,12 @@ export interface Collection {
|
|
|
311
317
|
* @memberof Collection
|
|
312
318
|
*/
|
|
313
319
|
'targetSearchPhraseData'?: TargetSearchPhraseData;
|
|
320
|
+
/**
|
|
321
|
+
* History of AI optimisations performed on the collection
|
|
322
|
+
* @type {Array<OptimisationHistoryItem>}
|
|
323
|
+
* @memberof Collection
|
|
324
|
+
*/
|
|
325
|
+
'optimisationHistory'?: Array<OptimisationHistoryItem>;
|
|
314
326
|
}
|
|
315
327
|
/**
|
|
316
328
|
*
|
|
@@ -493,6 +505,25 @@ export interface MetaField {
|
|
|
493
505
|
*/
|
|
494
506
|
'value': string;
|
|
495
507
|
}
|
|
508
|
+
/**
|
|
509
|
+
*
|
|
510
|
+
* @export
|
|
511
|
+
* @interface OptimisationHistoryItem
|
|
512
|
+
*/
|
|
513
|
+
export interface OptimisationHistoryItem {
|
|
514
|
+
/**
|
|
515
|
+
* Unique object identifier
|
|
516
|
+
* @type {string}
|
|
517
|
+
* @memberof OptimisationHistoryItem
|
|
518
|
+
*/
|
|
519
|
+
'id'?: string;
|
|
520
|
+
/**
|
|
521
|
+
*
|
|
522
|
+
* @type {string}
|
|
523
|
+
* @memberof OptimisationHistoryItem
|
|
524
|
+
*/
|
|
525
|
+
'createdAt'?: string;
|
|
526
|
+
}
|
|
496
527
|
/**
|
|
497
528
|
*
|
|
498
529
|
* @export
|
|
@@ -529,6 +560,12 @@ export interface Page {
|
|
|
529
560
|
* @memberof Page
|
|
530
561
|
*/
|
|
531
562
|
'targetSearchPhraseData'?: TargetSearchPhraseData;
|
|
563
|
+
/**
|
|
564
|
+
* History of AI optimisations performed on the page
|
|
565
|
+
* @type {Array<OptimisationHistoryItem>}
|
|
566
|
+
* @memberof Page
|
|
567
|
+
*/
|
|
568
|
+
'optimisationHistory'?: Array<OptimisationHistoryItem>;
|
|
532
569
|
}
|
|
533
570
|
/**
|
|
534
571
|
*
|
|
@@ -1407,6 +1444,12 @@ export interface UpdateCollectionRequest {
|
|
|
1407
1444
|
* @memberof UpdateCollectionRequest
|
|
1408
1445
|
*/
|
|
1409
1446
|
'slug'?: string;
|
|
1447
|
+
/**
|
|
1448
|
+
* Long-form description for the collection used for SEO.
|
|
1449
|
+
* @type {string}
|
|
1450
|
+
* @memberof UpdateCollectionRequest
|
|
1451
|
+
*/
|
|
1452
|
+
'longDescription'?: string;
|
|
1410
1453
|
/**
|
|
1411
1454
|
*
|
|
1412
1455
|
* @type {UpdateCollectionsRequestCollectionsInnerSeoMetadata}
|
|
@@ -1469,6 +1512,12 @@ export interface UpdateCollectionsRequestCollectionsInner {
|
|
|
1469
1512
|
* @memberof UpdateCollectionsRequestCollectionsInner
|
|
1470
1513
|
*/
|
|
1471
1514
|
'slug'?: string;
|
|
1515
|
+
/**
|
|
1516
|
+
* Long-form description for the collection used for SEO.
|
|
1517
|
+
* @type {string}
|
|
1518
|
+
* @memberof UpdateCollectionsRequestCollectionsInner
|
|
1519
|
+
*/
|
|
1520
|
+
'longDescription'?: string;
|
|
1472
1521
|
/**
|
|
1473
1522
|
*
|
|
1474
1523
|
* @type {UpdateCollectionsRequestCollectionsInnerSeoMetadata}
|
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 API
|
|
3
3
|
* Manage your PodOS Website
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.15.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -282,6 +282,12 @@ export interface Collection {
|
|
|
282
282
|
* @memberof Collection
|
|
283
283
|
*/
|
|
284
284
|
'slug'?: string;
|
|
285
|
+
/**
|
|
286
|
+
*
|
|
287
|
+
* @type {string}
|
|
288
|
+
* @memberof Collection
|
|
289
|
+
*/
|
|
290
|
+
'longDescription'?: string;
|
|
285
291
|
/**
|
|
286
292
|
*
|
|
287
293
|
* @type {SeoMetadata}
|
|
@@ -294,6 +300,12 @@ export interface Collection {
|
|
|
294
300
|
* @memberof Collection
|
|
295
301
|
*/
|
|
296
302
|
'targetSearchPhraseData'?: TargetSearchPhraseData;
|
|
303
|
+
/**
|
|
304
|
+
* History of AI optimisations performed on the collection
|
|
305
|
+
* @type {Array<OptimisationHistoryItem>}
|
|
306
|
+
* @memberof Collection
|
|
307
|
+
*/
|
|
308
|
+
'optimisationHistory'?: Array<OptimisationHistoryItem>;
|
|
297
309
|
}
|
|
298
310
|
/**
|
|
299
311
|
*
|
|
@@ -476,6 +488,25 @@ export interface MetaField {
|
|
|
476
488
|
*/
|
|
477
489
|
'value': string;
|
|
478
490
|
}
|
|
491
|
+
/**
|
|
492
|
+
*
|
|
493
|
+
* @export
|
|
494
|
+
* @interface OptimisationHistoryItem
|
|
495
|
+
*/
|
|
496
|
+
export interface OptimisationHistoryItem {
|
|
497
|
+
/**
|
|
498
|
+
* Unique object identifier
|
|
499
|
+
* @type {string}
|
|
500
|
+
* @memberof OptimisationHistoryItem
|
|
501
|
+
*/
|
|
502
|
+
'id'?: string;
|
|
503
|
+
/**
|
|
504
|
+
*
|
|
505
|
+
* @type {string}
|
|
506
|
+
* @memberof OptimisationHistoryItem
|
|
507
|
+
*/
|
|
508
|
+
'createdAt'?: string;
|
|
509
|
+
}
|
|
479
510
|
/**
|
|
480
511
|
*
|
|
481
512
|
* @export
|
|
@@ -512,6 +543,12 @@ export interface Page {
|
|
|
512
543
|
* @memberof Page
|
|
513
544
|
*/
|
|
514
545
|
'targetSearchPhraseData'?: TargetSearchPhraseData;
|
|
546
|
+
/**
|
|
547
|
+
* History of AI optimisations performed on the page
|
|
548
|
+
* @type {Array<OptimisationHistoryItem>}
|
|
549
|
+
* @memberof Page
|
|
550
|
+
*/
|
|
551
|
+
'optimisationHistory'?: Array<OptimisationHistoryItem>;
|
|
515
552
|
}
|
|
516
553
|
/**
|
|
517
554
|
*
|
|
@@ -1372,6 +1409,12 @@ export interface UpdateCollectionRequest {
|
|
|
1372
1409
|
* @memberof UpdateCollectionRequest
|
|
1373
1410
|
*/
|
|
1374
1411
|
'slug'?: string;
|
|
1412
|
+
/**
|
|
1413
|
+
* Long-form description for the collection used for SEO.
|
|
1414
|
+
* @type {string}
|
|
1415
|
+
* @memberof UpdateCollectionRequest
|
|
1416
|
+
*/
|
|
1417
|
+
'longDescription'?: string;
|
|
1375
1418
|
/**
|
|
1376
1419
|
*
|
|
1377
1420
|
* @type {UpdateCollectionsRequestCollectionsInnerSeoMetadata}
|
|
@@ -1434,6 +1477,12 @@ export interface UpdateCollectionsRequestCollectionsInner {
|
|
|
1434
1477
|
* @memberof UpdateCollectionsRequestCollectionsInner
|
|
1435
1478
|
*/
|
|
1436
1479
|
'slug'?: string;
|
|
1480
|
+
/**
|
|
1481
|
+
* Long-form description for the collection used for SEO.
|
|
1482
|
+
* @type {string}
|
|
1483
|
+
* @memberof UpdateCollectionsRequestCollectionsInner
|
|
1484
|
+
*/
|
|
1485
|
+
'longDescription'?: string;
|
|
1437
1486
|
/**
|
|
1438
1487
|
*
|
|
1439
1488
|
* @type {UpdateCollectionsRequestCollectionsInnerSeoMetadata}
|
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 API
|
|
3
3
|
* Manage your PodOS Website
|
|
4
4
|
*
|
|
5
|
-
* The version of the OpenAPI document: 0.
|
|
5
|
+
* The version of the OpenAPI document: 0.15.0
|
|
6
6
|
*
|
|
7
7
|
*
|
|
8
8
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
@@ -282,6 +282,12 @@ export interface Collection {
|
|
|
282
282
|
* @memberof Collection
|
|
283
283
|
*/
|
|
284
284
|
'slug'?: string;
|
|
285
|
+
/**
|
|
286
|
+
*
|
|
287
|
+
* @type {string}
|
|
288
|
+
* @memberof Collection
|
|
289
|
+
*/
|
|
290
|
+
'longDescription'?: string;
|
|
285
291
|
/**
|
|
286
292
|
*
|
|
287
293
|
* @type {SeoMetadata}
|
|
@@ -294,6 +300,12 @@ export interface Collection {
|
|
|
294
300
|
* @memberof Collection
|
|
295
301
|
*/
|
|
296
302
|
'targetSearchPhraseData'?: TargetSearchPhraseData;
|
|
303
|
+
/**
|
|
304
|
+
* History of AI optimisations performed on the collection
|
|
305
|
+
* @type {Array<OptimisationHistoryItem>}
|
|
306
|
+
* @memberof Collection
|
|
307
|
+
*/
|
|
308
|
+
'optimisationHistory'?: Array<OptimisationHistoryItem>;
|
|
297
309
|
}
|
|
298
310
|
/**
|
|
299
311
|
*
|
|
@@ -476,6 +488,25 @@ export interface MetaField {
|
|
|
476
488
|
*/
|
|
477
489
|
'value': string;
|
|
478
490
|
}
|
|
491
|
+
/**
|
|
492
|
+
*
|
|
493
|
+
* @export
|
|
494
|
+
* @interface OptimisationHistoryItem
|
|
495
|
+
*/
|
|
496
|
+
export interface OptimisationHistoryItem {
|
|
497
|
+
/**
|
|
498
|
+
* Unique object identifier
|
|
499
|
+
* @type {string}
|
|
500
|
+
* @memberof OptimisationHistoryItem
|
|
501
|
+
*/
|
|
502
|
+
'id'?: string;
|
|
503
|
+
/**
|
|
504
|
+
*
|
|
505
|
+
* @type {string}
|
|
506
|
+
* @memberof OptimisationHistoryItem
|
|
507
|
+
*/
|
|
508
|
+
'createdAt'?: string;
|
|
509
|
+
}
|
|
479
510
|
/**
|
|
480
511
|
*
|
|
481
512
|
* @export
|
|
@@ -512,6 +543,12 @@ export interface Page {
|
|
|
512
543
|
* @memberof Page
|
|
513
544
|
*/
|
|
514
545
|
'targetSearchPhraseData'?: TargetSearchPhraseData;
|
|
546
|
+
/**
|
|
547
|
+
* History of AI optimisations performed on the page
|
|
548
|
+
* @type {Array<OptimisationHistoryItem>}
|
|
549
|
+
* @memberof Page
|
|
550
|
+
*/
|
|
551
|
+
'optimisationHistory'?: Array<OptimisationHistoryItem>;
|
|
515
552
|
}
|
|
516
553
|
/**
|
|
517
554
|
*
|
|
@@ -1372,6 +1409,12 @@ export interface UpdateCollectionRequest {
|
|
|
1372
1409
|
* @memberof UpdateCollectionRequest
|
|
1373
1410
|
*/
|
|
1374
1411
|
'slug'?: string;
|
|
1412
|
+
/**
|
|
1413
|
+
* Long-form description for the collection used for SEO.
|
|
1414
|
+
* @type {string}
|
|
1415
|
+
* @memberof UpdateCollectionRequest
|
|
1416
|
+
*/
|
|
1417
|
+
'longDescription'?: string;
|
|
1375
1418
|
/**
|
|
1376
1419
|
*
|
|
1377
1420
|
* @type {UpdateCollectionsRequestCollectionsInnerSeoMetadata}
|
|
@@ -1434,6 +1477,12 @@ export interface UpdateCollectionsRequestCollectionsInner {
|
|
|
1434
1477
|
* @memberof UpdateCollectionsRequestCollectionsInner
|
|
1435
1478
|
*/
|
|
1436
1479
|
'slug'?: string;
|
|
1480
|
+
/**
|
|
1481
|
+
* Long-form description for the collection used for SEO.
|
|
1482
|
+
* @type {string}
|
|
1483
|
+
* @memberof UpdateCollectionsRequestCollectionsInner
|
|
1484
|
+
*/
|
|
1485
|
+
'longDescription'?: string;
|
|
1437
1486
|
/**
|
|
1438
1487
|
*
|
|
1439
1488
|
* @type {UpdateCollectionsRequestCollectionsInnerSeoMetadata}
|
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
package/index.ts
CHANGED