@teemill/integrations 0.9.0 → 0.11.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.
Files changed (84) hide show
  1. package/.openapi-generator/FILES +3 -0
  2. package/.openapi-generator/VERSION +1 -1
  3. package/README.md +2 -2
  4. package/dist/apis/IntegrationsApi.d.ts +65 -2
  5. package/dist/apis/IntegrationsApi.js +197 -1
  6. package/dist/esm/apis/IntegrationsApi.d.ts +65 -2
  7. package/dist/esm/apis/IntegrationsApi.js +198 -2
  8. package/dist/esm/models/ApiError.d.ts +2 -2
  9. package/dist/esm/models/ApiError.js +2 -2
  10. package/dist/esm/models/CreateAdminIntegrationListingRequest.d.ts +80 -0
  11. package/dist/esm/models/CreateAdminIntegrationListingRequest.js +73 -0
  12. package/dist/esm/models/CreateAdminIntegrationListingRequestGradient.d.ts +37 -0
  13. package/dist/esm/models/CreateAdminIntegrationListingRequestGradient.js +40 -0
  14. package/dist/esm/models/Integration.d.ts +2 -2
  15. package/dist/esm/models/Integration.js +1 -1
  16. package/dist/esm/models/IntegrationCategoriesResponse.d.ts +2 -2
  17. package/dist/esm/models/IntegrationCategoriesResponse.js +2 -2
  18. package/dist/esm/models/IntegrationCategory.d.ts +2 -2
  19. package/dist/esm/models/IntegrationCategory.js +4 -4
  20. package/dist/esm/models/IntegrationListing.d.ts +2 -2
  21. package/dist/esm/models/IntegrationListing.js +11 -11
  22. package/dist/esm/models/IntegrationListingGradient.d.ts +2 -2
  23. package/dist/esm/models/IntegrationListingGradient.js +1 -1
  24. package/dist/esm/models/IntegrationListingsResponse.d.ts +2 -2
  25. package/dist/esm/models/IntegrationListingsResponse.js +2 -2
  26. package/dist/esm/models/IntegrationProduct.d.ts +2 -2
  27. package/dist/esm/models/IntegrationProduct.js +6 -6
  28. package/dist/esm/models/IntegrationProductsResponse.d.ts +2 -2
  29. package/dist/esm/models/IntegrationProductsResponse.js +2 -2
  30. package/dist/esm/models/IntegrationsResponse.d.ts +2 -2
  31. package/dist/esm/models/IntegrationsResponse.js +2 -2
  32. package/dist/esm/models/UpdateAdminIntegrationListingRequest.d.ts +80 -0
  33. package/dist/esm/models/UpdateAdminIntegrationListingRequest.js +55 -0
  34. package/dist/esm/models/index.d.ts +3 -0
  35. package/dist/esm/models/index.js +3 -0
  36. package/dist/esm/runtime.d.ts +1 -1
  37. package/dist/esm/runtime.js +1 -1
  38. package/dist/models/ApiError.d.ts +2 -2
  39. package/dist/models/ApiError.js +2 -2
  40. package/dist/models/CreateAdminIntegrationListingRequest.d.ts +80 -0
  41. package/dist/models/CreateAdminIntegrationListingRequest.js +80 -0
  42. package/dist/models/CreateAdminIntegrationListingRequestGradient.d.ts +37 -0
  43. package/dist/models/CreateAdminIntegrationListingRequestGradient.js +47 -0
  44. package/dist/models/Integration.d.ts +2 -2
  45. package/dist/models/Integration.js +1 -1
  46. package/dist/models/IntegrationCategoriesResponse.d.ts +2 -2
  47. package/dist/models/IntegrationCategoriesResponse.js +2 -2
  48. package/dist/models/IntegrationCategory.d.ts +2 -2
  49. package/dist/models/IntegrationCategory.js +4 -4
  50. package/dist/models/IntegrationListing.d.ts +2 -2
  51. package/dist/models/IntegrationListing.js +11 -11
  52. package/dist/models/IntegrationListingGradient.d.ts +2 -2
  53. package/dist/models/IntegrationListingGradient.js +1 -1
  54. package/dist/models/IntegrationListingsResponse.d.ts +2 -2
  55. package/dist/models/IntegrationListingsResponse.js +2 -2
  56. package/dist/models/IntegrationProduct.d.ts +2 -2
  57. package/dist/models/IntegrationProduct.js +6 -6
  58. package/dist/models/IntegrationProductsResponse.d.ts +2 -2
  59. package/dist/models/IntegrationProductsResponse.js +2 -2
  60. package/dist/models/IntegrationsResponse.d.ts +2 -2
  61. package/dist/models/IntegrationsResponse.js +2 -2
  62. package/dist/models/UpdateAdminIntegrationListingRequest.d.ts +80 -0
  63. package/dist/models/UpdateAdminIntegrationListingRequest.js +62 -0
  64. package/dist/models/index.d.ts +3 -0
  65. package/dist/models/index.js +3 -0
  66. package/dist/runtime.d.ts +1 -1
  67. package/dist/runtime.js +1 -1
  68. package/package.json +2 -2
  69. package/src/apis/IntegrationsApi.ts +276 -1
  70. package/src/models/ApiError.ts +3 -3
  71. package/src/models/CreateAdminIntegrationListingRequest.ts +140 -0
  72. package/src/models/CreateAdminIntegrationListingRequestGradient.ts +68 -0
  73. package/src/models/Integration.ts +2 -2
  74. package/src/models/IntegrationCategoriesResponse.ts +3 -3
  75. package/src/models/IntegrationCategory.ts +5 -5
  76. package/src/models/IntegrationListing.ts +12 -12
  77. package/src/models/IntegrationListingGradient.ts +2 -2
  78. package/src/models/IntegrationListingsResponse.ts +3 -3
  79. package/src/models/IntegrationProduct.ts +7 -7
  80. package/src/models/IntegrationProductsResponse.ts +3 -3
  81. package/src/models/IntegrationsResponse.ts +3 -3
  82. package/src/models/UpdateAdminIntegrationListingRequest.ts +131 -0
  83. package/src/models/index.ts +3 -0
  84. package/src/runtime.ts +1 -1
@@ -5,7 +5,7 @@
5
5
  * Integrations API
6
6
  * Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 0.9.0
8
+ * The version of the OpenAPI document: 0.11.1
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -2,7 +2,7 @@
2
2
  * Integrations API
3
3
  * Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.9.0
5
+ * The version of the OpenAPI document: 0.11.1
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -26,7 +26,7 @@ export interface IntegrationListingsResponse {
26
26
  /**
27
27
  * Check if a given object implements the IntegrationListingsResponse interface.
28
28
  */
29
- export declare function instanceOfIntegrationListingsResponse(value: object): boolean;
29
+ export declare function instanceOfIntegrationListingsResponse(value: object): value is IntegrationListingsResponse;
30
30
  export declare function IntegrationListingsResponseFromJSON(json: any): IntegrationListingsResponse;
31
31
  export declare function IntegrationListingsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): IntegrationListingsResponse;
32
32
  export declare function IntegrationListingsResponseToJSON(value?: IntegrationListingsResponse | null): any;
@@ -5,7 +5,7 @@
5
5
  * Integrations API
6
6
  * Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 0.9.0
8
+ * The version of the OpenAPI document: 0.11.1
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -19,7 +19,7 @@ const IntegrationListing_1 = require("./IntegrationListing");
19
19
  * Check if a given object implements the IntegrationListingsResponse interface.
20
20
  */
21
21
  function instanceOfIntegrationListingsResponse(value) {
22
- if (!('listings' in value))
22
+ if (!('listings' in value) || value['listings'] === undefined)
23
23
  return false;
24
24
  return true;
25
25
  }
@@ -2,7 +2,7 @@
2
2
  * Integrations API
3
3
  * Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.9.0
5
+ * The version of the OpenAPI document: 0.11.1
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -55,7 +55,7 @@ export interface IntegrationProduct {
55
55
  /**
56
56
  * Check if a given object implements the IntegrationProduct interface.
57
57
  */
58
- export declare function instanceOfIntegrationProduct(value: object): boolean;
58
+ export declare function instanceOfIntegrationProduct(value: object): value is IntegrationProduct;
59
59
  export declare function IntegrationProductFromJSON(json: any): IntegrationProduct;
60
60
  export declare function IntegrationProductFromJSONTyped(json: any, ignoreDiscriminator: boolean): IntegrationProduct;
61
61
  export declare function IntegrationProductToJSON(value?: Omit<IntegrationProduct, 'id'> | null): any;
@@ -5,7 +5,7 @@
5
5
  * Integrations API
6
6
  * Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 0.9.0
8
+ * The version of the OpenAPI document: 0.11.1
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -18,15 +18,15 @@ exports.IntegrationProductToJSON = exports.IntegrationProductFromJSONTyped = exp
18
18
  * Check if a given object implements the IntegrationProduct interface.
19
19
  */
20
20
  function instanceOfIntegrationProduct(value) {
21
- if (!('sku' in value))
21
+ if (!('sku' in value) || value['sku'] === undefined)
22
22
  return false;
23
- if (!('name' in value))
23
+ if (!('name' in value) || value['name'] === undefined)
24
24
  return false;
25
- if (!('slug' in value))
25
+ if (!('slug' in value) || value['slug'] === undefined)
26
26
  return false;
27
- if (!('description' in value))
27
+ if (!('description' in value) || value['description'] === undefined)
28
28
  return false;
29
- if (!('price' in value))
29
+ if (!('price' in value) || value['price'] === undefined)
30
30
  return false;
31
31
  return true;
32
32
  }
@@ -2,7 +2,7 @@
2
2
  * Integrations API
3
3
  * Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.9.0
5
+ * The version of the OpenAPI document: 0.11.1
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -26,7 +26,7 @@ export interface IntegrationProductsResponse {
26
26
  /**
27
27
  * Check if a given object implements the IntegrationProductsResponse interface.
28
28
  */
29
- export declare function instanceOfIntegrationProductsResponse(value: object): boolean;
29
+ export declare function instanceOfIntegrationProductsResponse(value: object): value is IntegrationProductsResponse;
30
30
  export declare function IntegrationProductsResponseFromJSON(json: any): IntegrationProductsResponse;
31
31
  export declare function IntegrationProductsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): IntegrationProductsResponse;
32
32
  export declare function IntegrationProductsResponseToJSON(value?: IntegrationProductsResponse | null): any;
@@ -5,7 +5,7 @@
5
5
  * Integrations API
6
6
  * Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 0.9.0
8
+ * The version of the OpenAPI document: 0.11.1
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -19,7 +19,7 @@ const IntegrationProduct_1 = require("./IntegrationProduct");
19
19
  * Check if a given object implements the IntegrationProductsResponse interface.
20
20
  */
21
21
  function instanceOfIntegrationProductsResponse(value) {
22
- if (!('products' in value))
22
+ if (!('products' in value) || value['products'] === undefined)
23
23
  return false;
24
24
  return true;
25
25
  }
@@ -2,7 +2,7 @@
2
2
  * Integrations API
3
3
  * Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.9.0
5
+ * The version of the OpenAPI document: 0.11.1
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -26,7 +26,7 @@ export interface IntegrationsResponse {
26
26
  /**
27
27
  * Check if a given object implements the IntegrationsResponse interface.
28
28
  */
29
- export declare function instanceOfIntegrationsResponse(value: object): boolean;
29
+ export declare function instanceOfIntegrationsResponse(value: object): value is IntegrationsResponse;
30
30
  export declare function IntegrationsResponseFromJSON(json: any): IntegrationsResponse;
31
31
  export declare function IntegrationsResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): IntegrationsResponse;
32
32
  export declare function IntegrationsResponseToJSON(value?: IntegrationsResponse | null): any;
@@ -5,7 +5,7 @@
5
5
  * Integrations API
6
6
  * Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 0.9.0
8
+ * The version of the OpenAPI document: 0.11.1
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -19,7 +19,7 @@ const Integration_1 = require("./Integration");
19
19
  * Check if a given object implements the IntegrationsResponse interface.
20
20
  */
21
21
  function instanceOfIntegrationsResponse(value) {
22
- if (!('integrations' in value))
22
+ if (!('integrations' in value) || value['integrations'] === undefined)
23
23
  return false;
24
24
  return true;
25
25
  }
@@ -0,0 +1,80 @@
1
+ /**
2
+ * Integrations API
3
+ * Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
+ *
5
+ * The version of the OpenAPI document: 0.11.1
6
+ * Contact: hello@teemill.com
7
+ *
8
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
9
+ * https://openapi-generator.tech
10
+ * Do not edit the class manually.
11
+ */
12
+ import type { CreateAdminIntegrationListingRequestGradient } from './CreateAdminIntegrationListingRequestGradient';
13
+ /**
14
+ *
15
+ * @export
16
+ * @interface UpdateAdminIntegrationListingRequest
17
+ */
18
+ export interface UpdateAdminIntegrationListingRequest {
19
+ /**
20
+ * The name of the integration listing
21
+ * @type {string}
22
+ * @memberof UpdateAdminIntegrationListingRequest
23
+ */
24
+ name?: string;
25
+ /**
26
+ * The description of the integration listing
27
+ * @type {string}
28
+ * @memberof UpdateAdminIntegrationListingRequest
29
+ */
30
+ description?: string;
31
+ /**
32
+ * The html content of the integration listing
33
+ * @type {string}
34
+ * @memberof UpdateAdminIntegrationListingRequest
35
+ */
36
+ content?: string;
37
+ /**
38
+ * The code of the integration
39
+ * @type {string}
40
+ * @memberof UpdateAdminIntegrationListingRequest
41
+ */
42
+ integration?: string;
43
+ /**
44
+ * The author of the integration listing
45
+ * @type {string}
46
+ * @memberof UpdateAdminIntegrationListingRequest
47
+ */
48
+ author?: string;
49
+ /**
50
+ * The slug of the integration listing that is used in the URL
51
+ * @type {string}
52
+ * @memberof UpdateAdminIntegrationListingRequest
53
+ */
54
+ slug?: string;
55
+ /**
56
+ *
57
+ * @type {CreateAdminIntegrationListingRequestGradient}
58
+ * @memberof UpdateAdminIntegrationListingRequest
59
+ */
60
+ gradient?: CreateAdminIntegrationListingRequestGradient;
61
+ /**
62
+ * The icon of the integration listing
63
+ * @type {string}
64
+ * @memberof UpdateAdminIntegrationListingRequest
65
+ */
66
+ icon?: string;
67
+ /**
68
+ * The categories that this listing belongs to
69
+ * @type {Array<string>}
70
+ * @memberof UpdateAdminIntegrationListingRequest
71
+ */
72
+ categories?: Array<string>;
73
+ }
74
+ /**
75
+ * Check if a given object implements the UpdateAdminIntegrationListingRequest interface.
76
+ */
77
+ export declare function instanceOfUpdateAdminIntegrationListingRequest(value: object): value is UpdateAdminIntegrationListingRequest;
78
+ export declare function UpdateAdminIntegrationListingRequestFromJSON(json: any): UpdateAdminIntegrationListingRequest;
79
+ export declare function UpdateAdminIntegrationListingRequestFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateAdminIntegrationListingRequest;
80
+ export declare function UpdateAdminIntegrationListingRequestToJSON(value?: UpdateAdminIntegrationListingRequest | null): any;
@@ -0,0 +1,62 @@
1
+ "use strict";
2
+ /* tslint:disable */
3
+ /* eslint-disable */
4
+ /**
5
+ * Integrations API
6
+ * Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
+ *
8
+ * The version of the OpenAPI document: 0.11.1
9
+ * Contact: hello@teemill.com
10
+ *
11
+ * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
12
+ * https://openapi-generator.tech
13
+ * Do not edit the class manually.
14
+ */
15
+ Object.defineProperty(exports, "__esModule", { value: true });
16
+ exports.UpdateAdminIntegrationListingRequestToJSON = exports.UpdateAdminIntegrationListingRequestFromJSONTyped = exports.UpdateAdminIntegrationListingRequestFromJSON = exports.instanceOfUpdateAdminIntegrationListingRequest = void 0;
17
+ const CreateAdminIntegrationListingRequestGradient_1 = require("./CreateAdminIntegrationListingRequestGradient");
18
+ /**
19
+ * Check if a given object implements the UpdateAdminIntegrationListingRequest interface.
20
+ */
21
+ function instanceOfUpdateAdminIntegrationListingRequest(value) {
22
+ return true;
23
+ }
24
+ exports.instanceOfUpdateAdminIntegrationListingRequest = instanceOfUpdateAdminIntegrationListingRequest;
25
+ function UpdateAdminIntegrationListingRequestFromJSON(json) {
26
+ return UpdateAdminIntegrationListingRequestFromJSONTyped(json, false);
27
+ }
28
+ exports.UpdateAdminIntegrationListingRequestFromJSON = UpdateAdminIntegrationListingRequestFromJSON;
29
+ function UpdateAdminIntegrationListingRequestFromJSONTyped(json, ignoreDiscriminator) {
30
+ if (json == null) {
31
+ return json;
32
+ }
33
+ return {
34
+ 'name': json['name'] == null ? undefined : json['name'],
35
+ 'description': json['description'] == null ? undefined : json['description'],
36
+ 'content': json['content'] == null ? undefined : json['content'],
37
+ 'integration': json['integration'] == null ? undefined : json['integration'],
38
+ 'author': json['author'] == null ? undefined : json['author'],
39
+ 'slug': json['slug'] == null ? undefined : json['slug'],
40
+ 'gradient': json['gradient'] == null ? undefined : (0, CreateAdminIntegrationListingRequestGradient_1.CreateAdminIntegrationListingRequestGradientFromJSON)(json['gradient']),
41
+ 'icon': json['icon'] == null ? undefined : json['icon'],
42
+ 'categories': json['categories'] == null ? undefined : json['categories'],
43
+ };
44
+ }
45
+ exports.UpdateAdminIntegrationListingRequestFromJSONTyped = UpdateAdminIntegrationListingRequestFromJSONTyped;
46
+ function UpdateAdminIntegrationListingRequestToJSON(value) {
47
+ if (value == null) {
48
+ return value;
49
+ }
50
+ return {
51
+ 'name': value['name'],
52
+ 'description': value['description'],
53
+ 'content': value['content'],
54
+ 'integration': value['integration'],
55
+ 'author': value['author'],
56
+ 'slug': value['slug'],
57
+ 'gradient': (0, CreateAdminIntegrationListingRequestGradient_1.CreateAdminIntegrationListingRequestGradientToJSON)(value['gradient']),
58
+ 'icon': value['icon'],
59
+ 'categories': value['categories'],
60
+ };
61
+ }
62
+ exports.UpdateAdminIntegrationListingRequestToJSON = UpdateAdminIntegrationListingRequestToJSON;
@@ -1,4 +1,6 @@
1
1
  export * from './ApiError';
2
+ export * from './CreateAdminIntegrationListingRequest';
3
+ export * from './CreateAdminIntegrationListingRequestGradient';
2
4
  export * from './Integration';
3
5
  export * from './IntegrationCategoriesResponse';
4
6
  export * from './IntegrationCategory';
@@ -8,3 +10,4 @@ export * from './IntegrationListingsResponse';
8
10
  export * from './IntegrationProduct';
9
11
  export * from './IntegrationProductsResponse';
10
12
  export * from './IntegrationsResponse';
13
+ export * from './UpdateAdminIntegrationListingRequest';
@@ -17,6 +17,8 @@ Object.defineProperty(exports, "__esModule", { value: true });
17
17
  /* tslint:disable */
18
18
  /* eslint-disable */
19
19
  __exportStar(require("./ApiError"), exports);
20
+ __exportStar(require("./CreateAdminIntegrationListingRequest"), exports);
21
+ __exportStar(require("./CreateAdminIntegrationListingRequestGradient"), exports);
20
22
  __exportStar(require("./Integration"), exports);
21
23
  __exportStar(require("./IntegrationCategoriesResponse"), exports);
22
24
  __exportStar(require("./IntegrationCategory"), exports);
@@ -26,3 +28,4 @@ __exportStar(require("./IntegrationListingsResponse"), exports);
26
28
  __exportStar(require("./IntegrationProduct"), exports);
27
29
  __exportStar(require("./IntegrationProductsResponse"), exports);
28
30
  __exportStar(require("./IntegrationsResponse"), exports);
31
+ __exportStar(require("./UpdateAdminIntegrationListingRequest"), exports);
package/dist/runtime.d.ts CHANGED
@@ -2,7 +2,7 @@
2
2
  * Integrations API
3
3
  * Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
4
4
  *
5
- * The version of the OpenAPI document: 0.9.0
5
+ * The version of the OpenAPI document: 0.11.1
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/dist/runtime.js CHANGED
@@ -5,7 +5,7 @@
5
5
  * Integrations API
6
6
  * Manage Teemill Integrations For full documentation on functionality and account settings go to [teemill.com](https://teemill.com)
7
7
  *
8
- * The version of the OpenAPI document: 0.9.0
8
+ * The version of the OpenAPI document: 0.11.1
9
9
  * Contact: hello@teemill.com
10
10
  *
11
11
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@teemill/integrations",
3
- "version": "0.9.0",
3
+ "version": "0.11.1",
4
4
  "description": "OpenAPI client for @teemill/integrations",
5
5
  "author": "OpenAPI-Generator",
6
6
  "repository": {
@@ -16,6 +16,6 @@
16
16
  "prepare": "npm run build"
17
17
  },
18
18
  "devDependencies": {
19
- "typescript": "^4.0"
19
+ "typescript": "^4.0 || ^5.0"
20
20
  }
21
21
  }