@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.
- package/README.md +64 -2
- package/api.ts +50 -13
- package/base.ts +1 -1
- package/common.ts +1 -1
- package/configuration.ts +1 -1
- package/dist/api.d.ts +32 -7
- package/dist/api.js +27 -13
- 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 +32 -7
- package/dist/esm/api.js +27 -13
- 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/docs/AdminIntegrationListing.md +48 -0
- package/docs/AdminIntegrationListingsResponse.md +20 -0
- package/docs/ApiError.md +22 -0
- package/docs/CreateAdminIntegrationListingRequest.md +42 -0
- package/docs/CreateAdminIntegrationListingRequestGradient.md +25 -0
- package/docs/Icon.md +24 -0
- package/docs/Integration.md +26 -0
- package/docs/IntegrationCategoriesResponse.md +20 -0
- package/docs/IntegrationCategory.md +24 -0
- package/docs/IntegrationListing.md +46 -0
- package/docs/IntegrationListingGradient.md +25 -0
- package/docs/IntegrationListingsResponse.md +20 -0
- package/docs/IntegrationProduct.md +30 -0
- package/docs/IntegrationProductsResponse.md +20 -0
- package/docs/IntegrationsApi.md +665 -0
- package/docs/IntegrationsResponse.md +20 -0
- package/docs/UpdateAdminIntegrationListingRequest.md +42 -0
- package/docs/UpdateAdminIntegrationListingRequestGradient.md +25 -0
- package/index.ts +1 -1
- 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