@teemill/integrations 0.8.2 → 0.8.4

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 (77) hide show
  1. package/.openapi-generator/FILES +2 -1
  2. package/.openapi-generator/VERSION +1 -1
  3. package/README.md +5 -4
  4. package/dist/apis/IntegrationsApi.d.ts +4 -4
  5. package/dist/apis/IntegrationsApi.js +172 -351
  6. package/dist/esm/apis/IntegrationsApi.d.ts +91 -0
  7. package/dist/esm/apis/IntegrationsApi.js +256 -0
  8. package/dist/esm/apis/index.d.ts +1 -0
  9. package/dist/esm/apis/index.js +3 -0
  10. package/dist/esm/index.d.ts +3 -0
  11. package/dist/esm/index.js +5 -0
  12. package/dist/esm/models/ApiError.d.ts +37 -0
  13. package/dist/esm/models/ApiError.js +42 -0
  14. package/dist/esm/models/CategoriesResponse.d.ts +32 -0
  15. package/dist/esm/models/CategoriesResponse.js +44 -0
  16. package/dist/esm/models/Integration.d.ts +62 -0
  17. package/dist/esm/models/Integration.js +57 -0
  18. package/dist/esm/models/IntegrationCategoriesResponse.d.ts +32 -0
  19. package/dist/esm/models/IntegrationCategoriesResponse.js +41 -0
  20. package/dist/esm/models/IntegrationCategory.d.ts +52 -0
  21. package/dist/esm/models/IntegrationCategory.js +56 -0
  22. package/dist/esm/models/IntegrationInfo.d.ts +49 -0
  23. package/dist/esm/models/IntegrationInfo.js +52 -0
  24. package/dist/esm/models/IntegrationListing.d.ts +93 -0
  25. package/dist/esm/models/IntegrationListing.js +79 -0
  26. package/dist/esm/models/IntegrationListingGradient.d.ts +37 -0
  27. package/dist/esm/models/IntegrationListingGradient.js +40 -0
  28. package/dist/esm/models/IntegrationListingsResponse.d.ts +32 -0
  29. package/dist/esm/models/IntegrationListingsResponse.js +41 -0
  30. package/dist/esm/models/IntegrationProduct.d.ts +61 -0
  31. package/dist/esm/models/IntegrationProduct.js +57 -0
  32. package/dist/esm/models/IntegrationProductsResponse.d.ts +32 -0
  33. package/dist/esm/models/IntegrationProductsResponse.js +41 -0
  34. package/dist/esm/models/IntegrationsResponse.d.ts +32 -0
  35. package/dist/esm/models/IntegrationsResponse.js +44 -0
  36. package/dist/esm/models/index.d.ts +8 -0
  37. package/dist/esm/models/index.js +10 -0
  38. package/dist/esm/runtime.d.ts +187 -0
  39. package/dist/esm/runtime.js +333 -0
  40. package/dist/models/ApiError.d.ts +1 -1
  41. package/dist/models/ApiError.js +10 -14
  42. package/dist/models/CategoriesResponse.js +2 -2
  43. package/dist/models/Integration.js +3 -3
  44. package/dist/models/IntegrationCategoriesResponse.d.ts +32 -0
  45. package/dist/models/IntegrationCategoriesResponse.js +48 -0
  46. package/dist/models/IntegrationCategory.d.ts +1 -1
  47. package/dist/models/IntegrationCategory.js +14 -15
  48. package/dist/models/IntegrationInfo.js +1 -1
  49. package/dist/models/IntegrationListing.d.ts +3 -3
  50. package/dist/models/IntegrationListing.js +39 -33
  51. package/dist/models/IntegrationListingGradient.d.ts +1 -1
  52. package/dist/models/IntegrationListingGradient.js +9 -14
  53. package/dist/models/IntegrationListingsResponse.d.ts +2 -2
  54. package/dist/models/IntegrationListingsResponse.js +10 -13
  55. package/dist/models/IntegrationProduct.d.ts +2 -2
  56. package/dist/models/IntegrationProduct.js +21 -21
  57. package/dist/models/IntegrationProductsResponse.d.ts +1 -1
  58. package/dist/models/IntegrationProductsResponse.js +9 -12
  59. package/dist/models/IntegrationsResponse.js +2 -2
  60. package/dist/models/index.d.ts +1 -1
  61. package/dist/models/index.js +1 -1
  62. package/dist/runtime.d.ts +1 -1
  63. package/dist/runtime.js +223 -439
  64. package/package.json +4 -2
  65. package/src/apis/IntegrationsApi.ts +7 -7
  66. package/src/models/ApiError.ts +10 -15
  67. package/src/models/IntegrationCategoriesResponse.ts +68 -0
  68. package/src/models/IntegrationCategory.ts +12 -17
  69. package/src/models/IntegrationListing.ts +30 -34
  70. package/src/models/IntegrationListingGradient.ts +10 -15
  71. package/src/models/IntegrationListingsResponse.ts +10 -14
  72. package/src/models/IntegrationProduct.ts +18 -23
  73. package/src/models/IntegrationProductsResponse.ts +8 -13
  74. package/src/models/index.ts +1 -1
  75. package/src/runtime.ts +1 -1
  76. package/tsconfig.esm.json +7 -0
  77. package/tsconfig.json +2 -2
@@ -6,7 +6,7 @@ src/apis/IntegrationsApi.ts
6
6
  src/apis/index.ts
7
7
  src/index.ts
8
8
  src/models/ApiError.ts
9
- src/models/CategoriesResponse.ts
9
+ src/models/IntegrationCategoriesResponse.ts
10
10
  src/models/IntegrationCategory.ts
11
11
  src/models/IntegrationListing.ts
12
12
  src/models/IntegrationListingGradient.ts
@@ -15,4 +15,5 @@ src/models/IntegrationProduct.ts
15
15
  src/models/IntegrationProductsResponse.ts
16
16
  src/models/index.ts
17
17
  src/runtime.ts
18
+ tsconfig.esm.json
18
19
  tsconfig.json
@@ -1 +1 @@
1
- 7.3.0-SNAPSHOT
1
+ 7.5.0
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- ## @teemill/integrations@0.8.2
1
+ ## @teemill/integrations@0.8.4
2
2
 
3
3
  This generator creates TypeScript/JavaScript client that utilizes [Fetch API](https://fetch.spec.whatwg.org/). The generated Node module can be used in the following environments:
4
4
 
@@ -15,7 +15,7 @@ Module system
15
15
  * CommonJS
16
16
  * ES6 module system
17
17
 
18
- It can be used in both TypeScript and JavaScript. In TypeScript, the definition should be automatically resolved via `package.json`. ([Reference](http://www.typescriptlang.org/docs/handbook/typings-for-npm-packages.html))
18
+ It can be used in both TypeScript and JavaScript. In TypeScript, the definition will be automatically resolved via `package.json`. ([Reference](https://www.typescriptlang.org/docs/handbook/declaration-files/consumption.html))
19
19
 
20
20
  ### Building
21
21
 
@@ -27,7 +27,7 @@ npm run build
27
27
 
28
28
  ### Publishing
29
29
 
30
- First build the package then run ```npm publish```
30
+ First build the package then run `npm publish`
31
31
 
32
32
  ### Consuming
33
33
 
@@ -36,10 +36,11 @@ 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/integrations@0.8.2 --save
39
+ npm install @teemill/integrations@0.8.4 --save
40
40
  ```
41
41
 
42
42
  _unPublished (not recommended):_
43
43
 
44
44
  ```
45
45
  npm install PATH_TO_GENERATED_PACKAGE --save
46
+ ```
@@ -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.8.2
5
+ * The version of the OpenAPI document: 0.8.4
6
6
  * Contact: hello@teemill.com
7
7
  *
8
8
  * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
@@ -10,7 +10,7 @@
10
10
  * Do not edit the class manually.
11
11
  */
12
12
  import * as runtime from '../runtime';
13
- import type { CategoriesResponse, IntegrationListing, IntegrationListingsResponse, IntegrationProduct, IntegrationProductsResponse } from '../models/index';
13
+ import type { IntegrationCategoriesResponse, IntegrationListing, IntegrationListingsResponse, IntegrationProduct, IntegrationProductsResponse } from '../models/index';
14
14
  export interface GetIntegrationCategoryRequest {
15
15
  category: string;
16
16
  }
@@ -32,12 +32,12 @@ export declare class IntegrationsApi extends runtime.BaseAPI {
32
32
  * List all integration categories
33
33
  * List integration categories
34
34
  */
35
- getIntegrationCategoriesRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<CategoriesResponse>>;
35
+ getIntegrationCategoriesRaw(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<runtime.ApiResponse<IntegrationCategoriesResponse>>;
36
36
  /**
37
37
  * List all integration categories
38
38
  * List integration categories
39
39
  */
40
- getIntegrationCategories(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<CategoriesResponse>;
40
+ getIntegrationCategories(initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise<IntegrationCategoriesResponse>;
41
41
  /**
42
42
  * Get an integration category
43
43
  * Get integration category