@teemill/integrations 0.15.0 → 0.17.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.
Files changed (45) hide show
  1. package/README.md +64 -2
  2. package/api.ts +50 -13
  3. package/base.ts +1 -1
  4. package/common.ts +1 -1
  5. package/configuration.ts +1 -1
  6. package/dist/api.d.ts +32 -7
  7. package/dist/api.js +27 -13
  8. package/dist/base.d.ts +1 -1
  9. package/dist/base.js +1 -1
  10. package/dist/common.d.ts +1 -1
  11. package/dist/common.js +1 -1
  12. package/dist/configuration.d.ts +1 -1
  13. package/dist/configuration.js +1 -1
  14. package/dist/esm/api.d.ts +32 -7
  15. package/dist/esm/api.js +27 -13
  16. package/dist/esm/base.d.ts +1 -1
  17. package/dist/esm/base.js +1 -1
  18. package/dist/esm/common.d.ts +1 -1
  19. package/dist/esm/common.js +1 -1
  20. package/dist/esm/configuration.d.ts +1 -1
  21. package/dist/esm/configuration.js +1 -1
  22. package/dist/esm/index.d.ts +1 -1
  23. package/dist/esm/index.js +1 -1
  24. package/dist/index.d.ts +1 -1
  25. package/dist/index.js +1 -1
  26. package/docs/AdminIntegrationListing.md +48 -0
  27. package/docs/AdminIntegrationListingsResponse.md +20 -0
  28. package/docs/ApiError.md +22 -0
  29. package/docs/CreateAdminIntegrationListingRequest.md +42 -0
  30. package/docs/CreateAdminIntegrationListingRequestGradient.md +25 -0
  31. package/docs/Icon.md +24 -0
  32. package/docs/Integration.md +26 -0
  33. package/docs/IntegrationCategoriesResponse.md +20 -0
  34. package/docs/IntegrationCategory.md +24 -0
  35. package/docs/IntegrationListing.md +46 -0
  36. package/docs/IntegrationListingGradient.md +25 -0
  37. package/docs/IntegrationListingsResponse.md +20 -0
  38. package/docs/IntegrationProduct.md +30 -0
  39. package/docs/IntegrationProductsResponse.md +20 -0
  40. package/docs/IntegrationsApi.md +665 -0
  41. package/docs/IntegrationsResponse.md +20 -0
  42. package/docs/UpdateAdminIntegrationListingRequest.md +42 -0
  43. package/docs/UpdateAdminIntegrationListingRequestGradient.md +25 -0
  44. package/index.ts +1 -1
  45. package/package.json +1 -1
@@ -0,0 +1,42 @@
1
+ # UpdateAdminIntegrationListingRequest
2
+
3
+
4
+ ## Properties
5
+
6
+ Name | Type | Description | Notes
7
+ ------------ | ------------- | ------------- | -------------
8
+ **name** | **string** | The name of the integration listing | [optional] [default to undefined]
9
+ **description** | **string** | The description of the integration listing | [optional] [default to undefined]
10
+ **content** | **string** | The html content of the integration listing | [optional] [default to undefined]
11
+ **pricing** | **string** | The html content of the pricing information | [optional] [default to undefined]
12
+ **integration** | **string** | The code of the integration | [optional] [default to undefined]
13
+ **author** | **string** | The author of the integration listing | [optional] [default to undefined]
14
+ **slug** | **string** | The slug of the integration listing that is used in the URL | [optional] [default to undefined]
15
+ **gradient** | [**UpdateAdminIntegrationListingRequestGradient**](UpdateAdminIntegrationListingRequestGradient.md) | | [optional] [default to undefined]
16
+ **icon** | **string** | The icon of the integration listing | [optional] [default to undefined]
17
+ **categories** | **Array<string>** | The categories that this listing belongs to | [optional] [default to undefined]
18
+ **menuTitle** | **string** | The string identifier displayed in the UI menu | [optional] [default to undefined]
19
+ **menuSortOrder** | **number** | The order of the listing in the UI menu | [optional] [default to undefined]
20
+
21
+ ## Example
22
+
23
+ ```typescript
24
+ import { UpdateAdminIntegrationListingRequest } from '@teemill/integrations';
25
+
26
+ const instance: UpdateAdminIntegrationListingRequest = {
27
+ name,
28
+ description,
29
+ content,
30
+ pricing,
31
+ integration,
32
+ author,
33
+ slug,
34
+ gradient,
35
+ icon,
36
+ categories,
37
+ menuTitle,
38
+ menuSortOrder,
39
+ };
40
+ ```
41
+
42
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
@@ -0,0 +1,25 @@
1
+ # UpdateAdminIntegrationListingRequestGradient
2
+
3
+ The gradient that is used to display the listing
4
+
5
+ ## Properties
6
+
7
+ Name | Type | Description | Notes
8
+ ------------ | ------------- | ------------- | -------------
9
+ **from** | **string** | | [optional] [default to undefined]
10
+ **to** | **string** | | [optional] [default to undefined]
11
+ **angle** | **number** | | [optional] [default to undefined]
12
+
13
+ ## Example
14
+
15
+ ```typescript
16
+ import { UpdateAdminIntegrationListingRequestGradient } from '@teemill/integrations';
17
+
18
+ const instance: UpdateAdminIntegrationListingRequestGradient = {
19
+ from,
20
+ to,
21
+ angle,
22
+ };
23
+ ```
24
+
25
+ [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
package/index.ts CHANGED
@@ -4,7 +4,7 @@
4
4
  * Integrations API
5
5
  * Manage PodOS Integrations
6
6
  *
7
- * The version of the OpenAPI document: 0.15.0
7
+ * The version of the OpenAPI document: 0.17.0
8
8
  *
9
9
  *
10
10
  * 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.15.0",
3
+ "version": "0.17.0",
4
4
  "description": "OpenAPI client for @teemill/integrations",
5
5
  "author": "OpenAPI-Generator Contributors",
6
6
  "repository": {