@teemill/website 0.15.0 → 0.16.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 CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/website@0.15.0
1
+ ## @teemill/website@0.16.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.15.0 --save
39
+ npm install @teemill/website@0.16.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.15.0
7
+ * The version of the OpenAPI document: 0.16.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -249,6 +249,18 @@ export interface Blog {
249
249
  * @memberof Blog
250
250
  */
251
251
  'targetSearchPhraseData'?: TargetSearchPhraseData;
252
+ /**
253
+ *
254
+ * @type {MetaImage}
255
+ * @memberof Blog
256
+ */
257
+ 'metaImage'?: MetaImage;
258
+ /**
259
+ *
260
+ * @type {string}
261
+ * @memberof Blog
262
+ */
263
+ 'publishedAt'?: string | null;
252
264
  }
253
265
  /**
254
266
  *
@@ -323,6 +335,12 @@ export interface Collection {
323
335
  * @memberof Collection
324
336
  */
325
337
  'optimisationHistory'?: Array<OptimisationHistoryItem>;
338
+ /**
339
+ *
340
+ * @type {MetaImage}
341
+ * @memberof Collection
342
+ */
343
+ 'metaImage'?: MetaImage;
326
344
  }
327
345
  /**
328
346
  *
@@ -505,6 +523,25 @@ export interface MetaField {
505
523
  */
506
524
  'value': string;
507
525
  }
526
+ /**
527
+ * The image that will in links shared on social media platforms
528
+ * @export
529
+ * @interface MetaImage
530
+ */
531
+ export interface MetaImage {
532
+ /**
533
+ *
534
+ * @type {string}
535
+ * @memberof MetaImage
536
+ */
537
+ 'src'?: string;
538
+ /**
539
+ *
540
+ * @type {string}
541
+ * @memberof MetaImage
542
+ */
543
+ 'alt'?: string;
544
+ }
508
545
  /**
509
546
  *
510
547
  * @export
@@ -566,6 +603,18 @@ export interface Page {
566
603
  * @memberof Page
567
604
  */
568
605
  'optimisationHistory'?: Array<OptimisationHistoryItem>;
606
+ /**
607
+ *
608
+ * @type {MetaImage}
609
+ * @memberof Page
610
+ */
611
+ 'metaImage'?: MetaImage;
612
+ /**
613
+ *
614
+ * @type {string}
615
+ * @memberof Page
616
+ */
617
+ 'publishedAt'?: string | null;
569
618
  }
570
619
  /**
571
620
  *
@@ -2146,6 +2195,54 @@ export interface Video {
2146
2195
  */
2147
2196
  export const BlogsApiAxiosParamCreator = function (configuration?: Configuration) {
2148
2197
  return {
2198
+ /**
2199
+ *
2200
+ * @summary Get website blog post
2201
+ * @param {string} project What project it is
2202
+ * @param {string} blogId Blog\&#39;s unique identifier
2203
+ * @param {*} [options] Override http request option.
2204
+ * @throws {RequiredError}
2205
+ */
2206
+ getBlog: async (project: string, blogId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
2207
+ // verify required parameter 'project' is not null or undefined
2208
+ assertParamExists('getBlog', 'project', project)
2209
+ // verify required parameter 'blogId' is not null or undefined
2210
+ assertParamExists('getBlog', 'blogId', blogId)
2211
+ const localVarPath = `/v1/website/blogs/{blogId}`
2212
+ .replace(`{${"blogId"}}`, encodeURIComponent(String(blogId)));
2213
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
2214
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2215
+ let baseOptions;
2216
+ if (configuration) {
2217
+ baseOptions = configuration.baseOptions;
2218
+ }
2219
+
2220
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
2221
+ const localVarHeaderParameter = {} as any;
2222
+ const localVarQueryParameter = {} as any;
2223
+
2224
+ // authentication session-oauth required
2225
+ // oauth required
2226
+ await setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration)
2227
+
2228
+ // authentication api-key required
2229
+ await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
2230
+
2231
+ if (project !== undefined) {
2232
+ localVarQueryParameter['project'] = project;
2233
+ }
2234
+
2235
+
2236
+
2237
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
2238
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2239
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
2240
+
2241
+ return {
2242
+ url: toPathString(localVarUrlObj),
2243
+ options: localVarRequestOptions,
2244
+ };
2245
+ },
2149
2246
  /**
2150
2247
  *
2151
2248
  * @summary List website blog posts
@@ -2330,6 +2427,20 @@ export const BlogsApiAxiosParamCreator = function (configuration?: Configuration
2330
2427
  export const BlogsApiFp = function(configuration?: Configuration) {
2331
2428
  const localVarAxiosParamCreator = BlogsApiAxiosParamCreator(configuration)
2332
2429
  return {
2430
+ /**
2431
+ *
2432
+ * @summary Get website blog post
2433
+ * @param {string} project What project it is
2434
+ * @param {string} blogId Blog\&#39;s unique identifier
2435
+ * @param {*} [options] Override http request option.
2436
+ * @throws {RequiredError}
2437
+ */
2438
+ async getBlog(project: string, blogId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Blog>> {
2439
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getBlog(project, blogId, options);
2440
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
2441
+ const localVarOperationServerBasePath = operationServerMap['BlogsApi.getBlog']?.[localVarOperationServerIndex]?.url;
2442
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
2443
+ },
2333
2444
  /**
2334
2445
  *
2335
2446
  * @summary List website blog posts
@@ -2388,6 +2499,16 @@ export const BlogsApiFp = function(configuration?: Configuration) {
2388
2499
  export const BlogsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
2389
2500
  const localVarFp = BlogsApiFp(configuration)
2390
2501
  return {
2502
+ /**
2503
+ *
2504
+ * @summary Get website blog post
2505
+ * @param {BlogsApiGetBlogRequest} requestParameters Request parameters.
2506
+ * @param {*} [options] Override http request option.
2507
+ * @throws {RequiredError}
2508
+ */
2509
+ getBlog(requestParameters: BlogsApiGetBlogRequest, options?: RawAxiosRequestConfig): AxiosPromise<Blog> {
2510
+ return localVarFp.getBlog(requestParameters.project, requestParameters.blogId, options).then((request) => request(axios, basePath));
2511
+ },
2391
2512
  /**
2392
2513
  *
2393
2514
  * @summary List website blog posts
@@ -2421,6 +2542,27 @@ export const BlogsApiFactory = function (configuration?: Configuration, basePath
2421
2542
  };
2422
2543
  };
2423
2544
 
2545
+ /**
2546
+ * Request parameters for getBlog operation in BlogsApi.
2547
+ * @export
2548
+ * @interface BlogsApiGetBlogRequest
2549
+ */
2550
+ export interface BlogsApiGetBlogRequest {
2551
+ /**
2552
+ * What project it is
2553
+ * @type {string}
2554
+ * @memberof BlogsApiGetBlog
2555
+ */
2556
+ readonly project: string
2557
+
2558
+ /**
2559
+ * Blog\&#39;s unique identifier
2560
+ * @type {string}
2561
+ * @memberof BlogsApiGetBlog
2562
+ */
2563
+ readonly blogId: string
2564
+ }
2565
+
2424
2566
  /**
2425
2567
  * Request parameters for listBlogs operation in BlogsApi.
2426
2568
  * @export
@@ -2533,6 +2675,18 @@ export interface BlogsApiUpdateBlogsRequest {
2533
2675
  * @extends {BaseAPI}
2534
2676
  */
2535
2677
  export class BlogsApi extends BaseAPI {
2678
+ /**
2679
+ *
2680
+ * @summary Get website blog post
2681
+ * @param {BlogsApiGetBlogRequest} requestParameters Request parameters.
2682
+ * @param {*} [options] Override http request option.
2683
+ * @throws {RequiredError}
2684
+ * @memberof BlogsApi
2685
+ */
2686
+ public getBlog(requestParameters: BlogsApiGetBlogRequest, options?: RawAxiosRequestConfig) {
2687
+ return BlogsApiFp(this.configuration).getBlog(requestParameters.project, requestParameters.blogId, options).then((request) => request(this.axios, this.basePath));
2688
+ }
2689
+
2536
2690
  /**
2537
2691
  *
2538
2692
  * @summary List website blog posts
@@ -2578,6 +2732,54 @@ export class BlogsApi extends BaseAPI {
2578
2732
  */
2579
2733
  export const CollectionsApiAxiosParamCreator = function (configuration?: Configuration) {
2580
2734
  return {
2735
+ /**
2736
+ *
2737
+ * @summary Get website collection
2738
+ * @param {string} project What project it is
2739
+ * @param {string} collectionId Collection\&#39;s unique identifier
2740
+ * @param {*} [options] Override http request option.
2741
+ * @throws {RequiredError}
2742
+ */
2743
+ getCollection: async (project: string, collectionId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
2744
+ // verify required parameter 'project' is not null or undefined
2745
+ assertParamExists('getCollection', 'project', project)
2746
+ // verify required parameter 'collectionId' is not null or undefined
2747
+ assertParamExists('getCollection', 'collectionId', collectionId)
2748
+ const localVarPath = `/v1/website/collections/{collectionId}`
2749
+ .replace(`{${"collectionId"}}`, encodeURIComponent(String(collectionId)));
2750
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
2751
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
2752
+ let baseOptions;
2753
+ if (configuration) {
2754
+ baseOptions = configuration.baseOptions;
2755
+ }
2756
+
2757
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
2758
+ const localVarHeaderParameter = {} as any;
2759
+ const localVarQueryParameter = {} as any;
2760
+
2761
+ // authentication session-oauth required
2762
+ // oauth required
2763
+ await setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration)
2764
+
2765
+ // authentication api-key required
2766
+ await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
2767
+
2768
+ if (project !== undefined) {
2769
+ localVarQueryParameter['project'] = project;
2770
+ }
2771
+
2772
+
2773
+
2774
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
2775
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
2776
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
2777
+
2778
+ return {
2779
+ url: toPathString(localVarUrlObj),
2780
+ options: localVarRequestOptions,
2781
+ };
2782
+ },
2581
2783
  /**
2582
2784
  *
2583
2785
  * @summary List website collections
@@ -2810,6 +3012,20 @@ export const CollectionsApiAxiosParamCreator = function (configuration?: Configu
2810
3012
  export const CollectionsApiFp = function(configuration?: Configuration) {
2811
3013
  const localVarAxiosParamCreator = CollectionsApiAxiosParamCreator(configuration)
2812
3014
  return {
3015
+ /**
3016
+ *
3017
+ * @summary Get website collection
3018
+ * @param {string} project What project it is
3019
+ * @param {string} collectionId Collection\&#39;s unique identifier
3020
+ * @param {*} [options] Override http request option.
3021
+ * @throws {RequiredError}
3022
+ */
3023
+ async getCollection(project: string, collectionId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Collection>> {
3024
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getCollection(project, collectionId, options);
3025
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
3026
+ const localVarOperationServerBasePath = operationServerMap['CollectionsApi.getCollection']?.[localVarOperationServerIndex]?.url;
3027
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
3028
+ },
2813
3029
  /**
2814
3030
  *
2815
3031
  * @summary List website collections
@@ -2882,6 +3098,16 @@ export const CollectionsApiFp = function(configuration?: Configuration) {
2882
3098
  export const CollectionsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
2883
3099
  const localVarFp = CollectionsApiFp(configuration)
2884
3100
  return {
3101
+ /**
3102
+ *
3103
+ * @summary Get website collection
3104
+ * @param {CollectionsApiGetCollectionRequest} requestParameters Request parameters.
3105
+ * @param {*} [options] Override http request option.
3106
+ * @throws {RequiredError}
3107
+ */
3108
+ getCollection(requestParameters: CollectionsApiGetCollectionRequest, options?: RawAxiosRequestConfig): AxiosPromise<Collection> {
3109
+ return localVarFp.getCollection(requestParameters.project, requestParameters.collectionId, options).then((request) => request(axios, basePath));
3110
+ },
2885
3111
  /**
2886
3112
  *
2887
3113
  * @summary List website collections
@@ -2925,6 +3151,27 @@ export const CollectionsApiFactory = function (configuration?: Configuration, ba
2925
3151
  };
2926
3152
  };
2927
3153
 
3154
+ /**
3155
+ * Request parameters for getCollection operation in CollectionsApi.
3156
+ * @export
3157
+ * @interface CollectionsApiGetCollectionRequest
3158
+ */
3159
+ export interface CollectionsApiGetCollectionRequest {
3160
+ /**
3161
+ * What project it is
3162
+ * @type {string}
3163
+ * @memberof CollectionsApiGetCollection
3164
+ */
3165
+ readonly project: string
3166
+
3167
+ /**
3168
+ * Collection\&#39;s unique identifier
3169
+ * @type {string}
3170
+ * @memberof CollectionsApiGetCollection
3171
+ */
3172
+ readonly collectionId: string
3173
+ }
3174
+
2928
3175
  /**
2929
3176
  * Request parameters for listCollections operation in CollectionsApi.
2930
3177
  * @export
@@ -3058,6 +3305,18 @@ export interface CollectionsApiUpdateCollectionsRequest {
3058
3305
  * @extends {BaseAPI}
3059
3306
  */
3060
3307
  export class CollectionsApi extends BaseAPI {
3308
+ /**
3309
+ *
3310
+ * @summary Get website collection
3311
+ * @param {CollectionsApiGetCollectionRequest} requestParameters Request parameters.
3312
+ * @param {*} [options] Override http request option.
3313
+ * @throws {RequiredError}
3314
+ * @memberof CollectionsApi
3315
+ */
3316
+ public getCollection(requestParameters: CollectionsApiGetCollectionRequest, options?: RawAxiosRequestConfig) {
3317
+ return CollectionsApiFp(this.configuration).getCollection(requestParameters.project, requestParameters.collectionId, options).then((request) => request(this.axios, this.basePath));
3318
+ }
3319
+
3061
3320
  /**
3062
3321
  *
3063
3322
  * @summary List website collections
@@ -3613,6 +3872,54 @@ export class MenuApi extends BaseAPI {
3613
3872
  */
3614
3873
  export const PagesApiAxiosParamCreator = function (configuration?: Configuration) {
3615
3874
  return {
3875
+ /**
3876
+ *
3877
+ * @summary Get website page
3878
+ * @param {string} project What project it is
3879
+ * @param {string} pageId Page\&#39;s unique identifier
3880
+ * @param {*} [options] Override http request option.
3881
+ * @throws {RequiredError}
3882
+ */
3883
+ getPage: async (project: string, pageId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
3884
+ // verify required parameter 'project' is not null or undefined
3885
+ assertParamExists('getPage', 'project', project)
3886
+ // verify required parameter 'pageId' is not null or undefined
3887
+ assertParamExists('getPage', 'pageId', pageId)
3888
+ const localVarPath = `/v1/website/pages/{pageId}`
3889
+ .replace(`{${"pageId"}}`, encodeURIComponent(String(pageId)));
3890
+ // use dummy base URL string because the URL constructor only accepts absolute URLs.
3891
+ const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
3892
+ let baseOptions;
3893
+ if (configuration) {
3894
+ baseOptions = configuration.baseOptions;
3895
+ }
3896
+
3897
+ const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
3898
+ const localVarHeaderParameter = {} as any;
3899
+ const localVarQueryParameter = {} as any;
3900
+
3901
+ // authentication session-oauth required
3902
+ // oauth required
3903
+ await setOAuthToObject(localVarHeaderParameter, "session-oauth", [], configuration)
3904
+
3905
+ // authentication api-key required
3906
+ await setApiKeyToObject(localVarHeaderParameter, "Authorization", configuration)
3907
+
3908
+ if (project !== undefined) {
3909
+ localVarQueryParameter['project'] = project;
3910
+ }
3911
+
3912
+
3913
+
3914
+ setSearchParams(localVarUrlObj, localVarQueryParameter);
3915
+ let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
3916
+ localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
3917
+
3918
+ return {
3919
+ url: toPathString(localVarUrlObj),
3920
+ options: localVarRequestOptions,
3921
+ };
3922
+ },
3616
3923
  /**
3617
3924
  *
3618
3925
  * @summary List website pages
@@ -3845,6 +4152,20 @@ export const PagesApiAxiosParamCreator = function (configuration?: Configuration
3845
4152
  export const PagesApiFp = function(configuration?: Configuration) {
3846
4153
  const localVarAxiosParamCreator = PagesApiAxiosParamCreator(configuration)
3847
4154
  return {
4155
+ /**
4156
+ *
4157
+ * @summary Get website page
4158
+ * @param {string} project What project it is
4159
+ * @param {string} pageId Page\&#39;s unique identifier
4160
+ * @param {*} [options] Override http request option.
4161
+ * @throws {RequiredError}
4162
+ */
4163
+ async getPage(project: string, pageId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Page>> {
4164
+ const localVarAxiosArgs = await localVarAxiosParamCreator.getPage(project, pageId, options);
4165
+ const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
4166
+ const localVarOperationServerBasePath = operationServerMap['PagesApi.getPage']?.[localVarOperationServerIndex]?.url;
4167
+ return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
4168
+ },
3848
4169
  /**
3849
4170
  *
3850
4171
  * @summary List website pages
@@ -3917,6 +4238,16 @@ export const PagesApiFp = function(configuration?: Configuration) {
3917
4238
  export const PagesApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
3918
4239
  const localVarFp = PagesApiFp(configuration)
3919
4240
  return {
4241
+ /**
4242
+ *
4243
+ * @summary Get website page
4244
+ * @param {PagesApiGetPageRequest} requestParameters Request parameters.
4245
+ * @param {*} [options] Override http request option.
4246
+ * @throws {RequiredError}
4247
+ */
4248
+ getPage(requestParameters: PagesApiGetPageRequest, options?: RawAxiosRequestConfig): AxiosPromise<Page> {
4249
+ return localVarFp.getPage(requestParameters.project, requestParameters.pageId, options).then((request) => request(axios, basePath));
4250
+ },
3920
4251
  /**
3921
4252
  *
3922
4253
  * @summary List website pages
@@ -3960,6 +4291,27 @@ export const PagesApiFactory = function (configuration?: Configuration, basePath
3960
4291
  };
3961
4292
  };
3962
4293
 
4294
+ /**
4295
+ * Request parameters for getPage operation in PagesApi.
4296
+ * @export
4297
+ * @interface PagesApiGetPageRequest
4298
+ */
4299
+ export interface PagesApiGetPageRequest {
4300
+ /**
4301
+ * What project it is
4302
+ * @type {string}
4303
+ * @memberof PagesApiGetPage
4304
+ */
4305
+ readonly project: string
4306
+
4307
+ /**
4308
+ * Page\&#39;s unique identifier
4309
+ * @type {string}
4310
+ * @memberof PagesApiGetPage
4311
+ */
4312
+ readonly pageId: string
4313
+ }
4314
+
3963
4315
  /**
3964
4316
  * Request parameters for listPages operation in PagesApi.
3965
4317
  * @export
@@ -4093,6 +4445,18 @@ export interface PagesApiUpdatePagesRequest {
4093
4445
  * @extends {BaseAPI}
4094
4446
  */
4095
4447
  export class PagesApi extends BaseAPI {
4448
+ /**
4449
+ *
4450
+ * @summary Get website page
4451
+ * @param {PagesApiGetPageRequest} requestParameters Request parameters.
4452
+ * @param {*} [options] Override http request option.
4453
+ * @throws {RequiredError}
4454
+ * @memberof PagesApi
4455
+ */
4456
+ public getPage(requestParameters: PagesApiGetPageRequest, options?: RawAxiosRequestConfig) {
4457
+ return PagesApiFp(this.configuration).getPage(requestParameters.project, requestParameters.pageId, options).then((request) => request(this.axios, this.basePath));
4458
+ }
4459
+
4096
4460
  /**
4097
4461
  *
4098
4462
  * @summary List website pages
package/base.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.15.0
7
+ * The version of the OpenAPI document: 0.16.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/common.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.15.0
7
+ * The version of the OpenAPI document: 0.16.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/configuration.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.15.0
7
+ * The version of the OpenAPI document: 0.16.0
8
8
  *
9
9
  *
10
10
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).