@seekora-ai/admin-api 1.2.12 → 1.2.14
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 +18 -2
- package/api.ts +825 -22
- package/dist/api.d.ts +644 -25
- package/dist/api.js +363 -28
- package/dist/esm/api.d.ts +644 -25
- package/dist/esm/api.js +347 -16
- package/package.json +1 -1
- package/seekora-ai-admin-api-1.2.14.tgz +0 -0
- package/seekora-ai-admin-api-1.2.12.tgz +0 -0
package/README.md
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
## @seekora-ai/admin-api@1.2.
|
|
1
|
+
## @seekora-ai/admin-api@1.2.14
|
|
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 @seekora-ai/admin-api@1.2.
|
|
39
|
+
npm install @seekora-ai/admin-api@1.2.14 --save
|
|
40
40
|
```
|
|
41
41
|
|
|
42
42
|
_unPublished (not recommended):_
|
|
@@ -66,6 +66,10 @@ Class | Method | HTTP request | Description
|
|
|
66
66
|
*AccountSettingsApi* | [**accountSettingsSetPasswordPut**](docs/AccountSettingsApi.md#accountsettingssetpasswordput) | **PUT** /account-settings/set-password | Set password for OAuth/new user
|
|
67
67
|
*ActivityLogsApi* | [**analyticsActivityLogsGet**](docs/ActivityLogsApi.md#analyticsactivitylogsget) | **GET** /analytics/activity-logs | Get Activity Logs
|
|
68
68
|
*AdminAnalyticsApi* | [**v1AdminAnalyticsTestModePost**](docs/AdminAnalyticsApi.md#v1adminanalyticstestmodepost) | **POST** /v1/admin/analytics/test-mode | Enable/Disable analytics test mode (Admin)
|
|
69
|
+
*AdminConnectorWebhooksApi* | [**adminConnectorsSourcesSourceUuidWebhooksDeliveriesDeliveryUuidReplayPost**](docs/AdminConnectorWebhooksApi.md#adminconnectorssourcessourceuuidwebhooksdeliveriesdeliveryuuidreplaypost) | **POST** /admin/connectors/sources/{source_uuid}/webhooks/deliveries/{delivery_uuid}/replay | Replay a recorded webhook delivery
|
|
70
|
+
*AdminConnectorWebhooksApi* | [**adminConnectorsSourcesSourceUuidWebhooksDeliveriesGet**](docs/AdminConnectorWebhooksApi.md#adminconnectorssourcessourceuuidwebhooksdeliveriesget) | **GET** /admin/connectors/sources/{source_uuid}/webhooks/deliveries | List recent webhook deliveries
|
|
71
|
+
*AdminConnectorWebhooksApi* | [**adminConnectorsSourcesSourceUuidWebhooksResubscribePost**](docs/AdminConnectorWebhooksApi.md#adminconnectorssourcessourceuuidwebhooksresubscribepost) | **POST** /admin/connectors/sources/{source_uuid}/webhooks/resubscribe | Resubscribe webhooks for a connector source
|
|
72
|
+
*AdminConnectorWebhooksApi* | [**adminConnectorsWebhooksResubscribeAllPost**](docs/AdminConnectorWebhooksApi.md#adminconnectorswebhooksresubscribeallpost) | **POST** /admin/connectors/webhooks/resubscribe-all | Resubscribe webhooks for every connector source
|
|
69
73
|
*AdminNotificationTemplatesApi* | [**v1AdminNotificationsTemplatesCodeGet**](docs/AdminNotificationTemplatesApi.md#v1adminnotificationstemplatescodeget) | **GET** /v1/admin/notifications/templates/{code} | Get notification template by code (Admin)
|
|
70
74
|
*AdminNotificationTemplatesApi* | [**v1AdminNotificationsTemplatesCodeSendPost**](docs/AdminNotificationTemplatesApi.md#v1adminnotificationstemplatescodesendpost) | **POST** /v1/admin/notifications/templates/{code}/send | Send notification from template (Admin)
|
|
71
75
|
*AdminNotificationTemplatesApi* | [**v1AdminNotificationsTemplatesGet**](docs/AdminNotificationTemplatesApi.md#v1adminnotificationstemplatesget) | **GET** /v1/admin/notifications/templates | Get notification templates (Admin)
|
|
@@ -1134,6 +1138,7 @@ Class | Method | HTTP request | Description
|
|
|
1134
1138
|
- [ConnectorFieldMetadata](docs/ConnectorFieldMetadata.md)
|
|
1135
1139
|
- [ConnectorRoutePreviewRequest](docs/ConnectorRoutePreviewRequest.md)
|
|
1136
1140
|
- [ConnectorRunListResponse](docs/ConnectorRunListResponse.md)
|
|
1141
|
+
- [ConnectorRunPhaseDTO](docs/ConnectorRunPhaseDTO.md)
|
|
1137
1142
|
- [ConnectorRunResponse](docs/ConnectorRunResponse.md)
|
|
1138
1143
|
- [ConnectorRunServiceRowErrorsResult](docs/ConnectorRunServiceRowErrorsResult.md)
|
|
1139
1144
|
- [ConnectorSecretListResponse](docs/ConnectorSecretListResponse.md)
|
|
@@ -1172,6 +1177,17 @@ Class | Method | HTTP request | Description
|
|
|
1172
1177
|
- [ConnectorUpdateTaskGroupRequest](docs/ConnectorUpdateTaskGroupRequest.md)
|
|
1173
1178
|
- [ConnectorUpdateTaskRequest](docs/ConnectorUpdateTaskRequest.md)
|
|
1174
1179
|
- [ConnectorUpdateTransformationRequest](docs/ConnectorUpdateTransformationRequest.md)
|
|
1180
|
+
- [ConnectorValidateAuthResponse](docs/ConnectorValidateAuthResponse.md)
|
|
1181
|
+
- [ConnectorWebhookDeliveriesListData](docs/ConnectorWebhookDeliveriesListData.md)
|
|
1182
|
+
- [ConnectorWebhookDeliveriesListResponse](docs/ConnectorWebhookDeliveriesListResponse.md)
|
|
1183
|
+
- [ConnectorWebhookDeliveryItem](docs/ConnectorWebhookDeliveryItem.md)
|
|
1184
|
+
- [ConnectorWebhookReplayResponse](docs/ConnectorWebhookReplayResponse.md)
|
|
1185
|
+
- [ConnectorWebhookReplayResult](docs/ConnectorWebhookReplayResult.md)
|
|
1186
|
+
- [ConnectorWebhookResubscribeAllFailure](docs/ConnectorWebhookResubscribeAllFailure.md)
|
|
1187
|
+
- [ConnectorWebhookResubscribeAllResponse](docs/ConnectorWebhookResubscribeAllResponse.md)
|
|
1188
|
+
- [ConnectorWebhookResubscribeAllResult](docs/ConnectorWebhookResubscribeAllResult.md)
|
|
1189
|
+
- [ConnectorWebhookResubscribeResponse](docs/ConnectorWebhookResubscribeResponse.md)
|
|
1190
|
+
- [ConnectorWebhookResubscribeResult](docs/ConnectorWebhookResubscribeResult.md)
|
|
1175
1191
|
- [ConnectorsCreateConnectorRequest](docs/ConnectorsCreateConnectorRequest.md)
|
|
1176
1192
|
- [ConnectorsUpdateConnectorRequest](docs/ConnectorsUpdateConnectorRequest.md)
|
|
1177
1193
|
- [ConsentServiceConsentResponse](docs/ConsentServiceConsentResponse.md)
|