@enbbox/api 1.0.0 → 1.0.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.
- package/.openapi-generator/FILES +375 -0
- package/.openapi-generator/VERSION +1 -0
- package/.openapi-generator-ignore +23 -0
- package/README.md +2 -2
- package/api/activity-api.ts +756 -0
- package/api/billing-api.ts +673 -0
- package/api/channel-connections-api.ts +510 -0
- package/api/channel-endpoints-api.ts +510 -0
- package/api/contexts-api.ts +534 -0
- package/api/events-api.ts +394 -0
- package/api/feature-flags-api.ts +132 -0
- package/api/health-api.ts +264 -0
- package/api/inbound-parse-api.ts +137 -0
- package/api/inbox-api.ts +1151 -0
- package/api/integrations-api.ts +833 -0
- package/api/layouts-api.ts +849 -0
- package/api/messages-api.ts +349 -0
- package/api/metrics-api.ts +128 -0
- package/api/notification-groups-api.ts +391 -0
- package/api/notifications-api.ts +326 -0
- package/api/preferences-api.ts +333 -0
- package/api/projects-api.ts +1075 -0
- package/api/subscribers-api.ts +1542 -0
- package/api/topics-api.ts +1352 -0
- package/api/translations-api.ts +462 -0
- package/api/webhooks-api.ts +397 -0
- package/api/workflows-api.ts +970 -0
- package/api.ts +40 -0
- package/base.ts +62 -0
- package/common.ts +127 -0
- package/configuration.ts +121 -0
- package/docs/ActionBody.md +21 -0
- package/docs/ActionRecord.md +25 -0
- package/docs/ActionType.md +17 -0
- package/docs/ActivityApi.md +412 -0
- package/docs/ActivityChartPoint.md +31 -0
- package/docs/ActivityRecord.md +39 -0
- package/docs/ActivityRequestRecord.md +31 -0
- package/docs/ActivityStats.md +31 -0
- package/docs/ActorType.md +15 -0
- package/docs/ApiKeyCreated.md +27 -0
- package/docs/ApiKeyInfo.md +27 -0
- package/docs/AutoConfigureResult.md +21 -0
- package/docs/BillingApi.md +375 -0
- package/docs/BillingInterval.md +11 -0
- package/docs/Branding.md +31 -0
- package/docs/BroadcastTrigger.md +27 -0
- package/docs/BulkCreateSubscribers.md +21 -0
- package/docs/BulkPreferenceItem.md +24 -0
- package/docs/BulkPreferences.md +21 -0
- package/docs/BulkResult.md +22 -0
- package/docs/BulkTrigger.md +21 -0
- package/docs/ChannelConnectionRecord.md +31 -0
- package/docs/ChannelConnectionsApi.md +276 -0
- package/docs/ChannelEndpointRecord.md +33 -0
- package/docs/ChannelEndpointsApi.md +276 -0
- package/docs/ChannelPreferences.md +29 -0
- package/docs/ChannelType.md +17 -0
- package/docs/ChartQuery.md +21 -0
- package/docs/ChatOauth.md +21 -0
- package/docs/ChatOauthRequest.md +22 -0
- package/docs/CheckoutSession.md +23 -0
- package/docs/ContextRecord.md +29 -0
- package/docs/ContextsApi.md +285 -0
- package/docs/CreateChannelConnection.md +27 -0
- package/docs/CreateChannelEndpoint.md +29 -0
- package/docs/CreateCheckout.md +23 -0
- package/docs/CreateContext.md +25 -0
- package/docs/CreateIntegration.md +31 -0
- package/docs/CreateLayout.md +31 -0
- package/docs/CreateNotificationGroup.md +21 -0
- package/docs/CreateProject.md +21 -0
- package/docs/CreateSubscriber.md +37 -0
- package/docs/CreateSubscription.md +21 -0
- package/docs/CreateTopic.md +23 -0
- package/docs/CreateWebhook.md +23 -0
- package/docs/CreateWorkflow.md +35 -0
- package/docs/CtaType.md +9 -0
- package/docs/CursorMeta.md +27 -0
- package/docs/CursorPaginatedFeedItem.md +23 -0
- package/docs/CursorPaginatedFeedItemDataInner.md +37 -0
- package/docs/CursorPaginatedMessageRecord.md +23 -0
- package/docs/CursorPaginatedMessageRecordDataInner.md +41 -0
- package/docs/CursorPagination.md +25 -0
- package/docs/DeleteSubscription.md +20 -0
- package/docs/DeliveryAck.md +21 -0
- package/docs/DeliveryStatusWebhook.md +27 -0
- package/docs/DnsSettings.md +23 -0
- package/docs/EngagementStatsResponse.md +27 -0
- package/docs/EntitlementItem.md +25 -0
- package/docs/Entitlements.md +21 -0
- package/docs/ErrorDetail.md +27 -0
- package/docs/EventsApi.md +214 -0
- package/docs/EventsUsage.md +23 -0
- package/docs/FeatureFlagsApi.md +51 -0
- package/docs/FeedItem.md +37 -0
- package/docs/FeedQuery.md +31 -0
- package/docs/HealthApi.md +140 -0
- package/docs/InboundParseApi.md +59 -0
- package/docs/InboxApi.md +673 -0
- package/docs/InboxNotification.md +41 -0
- package/docs/InboxPreference.md +23 -0
- package/docs/InboxQuery.md +27 -0
- package/docs/InitSessionRequest.md +23 -0
- package/docs/InitSessionResponse.md +23 -0
- package/docs/IntegrationRecord.md +35 -0
- package/docs/IntegrationsApi.md +475 -0
- package/docs/InviteMember.md +23 -0
- package/docs/InviteMemberBody.md +23 -0
- package/docs/JobLog.md +33 -0
- package/docs/LayoutPreview.md +21 -0
- package/docs/LayoutPreviewResult.md +21 -0
- package/docs/LayoutRecord.md +31 -0
- package/docs/LayoutUsageItem.md +23 -0
- package/docs/LayoutsApi.md +484 -0
- package/docs/MarkAll.md +21 -0
- package/docs/MarkMessages.md +23 -0
- package/docs/MarkResult.md +21 -0
- package/docs/MemberRecord.md +27 -0
- package/docs/MemberRole.md +15 -0
- package/docs/MemberStatus.md +13 -0
- package/docs/MessageQuery.md +31 -0
- package/docs/MessageRecord.md +41 -0
- package/docs/MessagesApi.md +175 -0
- package/docs/MetricsApi.md +51 -0
- package/docs/NotificationCount.md +25 -0
- package/docs/NotificationGroupRecord.md +23 -0
- package/docs/NotificationGroupsApi.md +209 -0
- package/docs/NotificationLog.md +33 -0
- package/docs/NotificationQuery.md +25 -0
- package/docs/NotificationsApi.md +166 -0
- package/docs/OffsetMeta.md +27 -0
- package/docs/OffsetPagination.md +27 -0
- package/docs/OnlineStatus.md +21 -0
- package/docs/PaginatedChannelConnectionRecord.md +23 -0
- package/docs/PaginatedChannelConnectionRecordDataInner.md +31 -0
- package/docs/PaginatedChannelEndpointRecord.md +23 -0
- package/docs/PaginatedChannelEndpointRecordDataInner.md +33 -0
- package/docs/PaginatedContextRecord.md +23 -0
- package/docs/PaginatedContextRecordDataInner.md +29 -0
- package/docs/PaginatedIntegrationRecord.md +23 -0
- package/docs/PaginatedIntegrationRecordDataInner.md +35 -0
- package/docs/PaginatedLayoutRecord.md +23 -0
- package/docs/PaginatedLayoutRecordDataInner.md +31 -0
- package/docs/PaginatedSubscriberRecord.md +23 -0
- package/docs/PaginatedSubscriberRecordDataInner.md +41 -0
- package/docs/PaginatedTopicRecord.md +23 -0
- package/docs/PaginatedTopicRecordDataInner.md +24 -0
- package/docs/PaginatedTopicSubscriptionRecord.md +23 -0
- package/docs/PaginatedTopicSubscriptionRecordDataInner.md +29 -0
- package/docs/PaginatedWorkflowRecord.md +23 -0
- package/docs/PaginatedWorkflowRecordDataInner.md +37 -0
- package/docs/PaginationQuery.md +25 -0
- package/docs/PatchCredentials.md +27 -0
- package/docs/Plan.md +17 -0
- package/docs/PlanLimitsResponse.md +33 -0
- package/docs/PortalUrl.md +21 -0
- package/docs/PreferenceChannels.md +29 -0
- package/docs/PreferenceRecord.md +27 -0
- package/docs/PreferencesApi.md +171 -0
- package/docs/PreviewResult.md +20 -0
- package/docs/PriceInfo.md +27 -0
- package/docs/Prices.md +21 -0
- package/docs/ProjectRecord.md +27 -0
- package/docs/ProjectsApi.md +638 -0
- package/docs/SetCredentials.md +27 -0
- package/docs/StepPreview.md +21 -0
- package/docs/StepRecord.md +29 -0
- package/docs/StepType.md +27 -0
- package/docs/SubscriberCredential.md +27 -0
- package/docs/SubscriberPayload.md +37 -0
- package/docs/SubscriberRecord.md +41 -0
- package/docs/SubscribersApi.md +887 -0
- package/docs/Subscription.md +39 -0
- package/docs/SyncWorkflow.md +21 -0
- package/docs/SystemAvatarIcon.md +19 -0
- package/docs/TopicRecord.md +24 -0
- package/docs/TopicSubscribers.md +21 -0
- package/docs/TopicSubscription.md +23 -0
- package/docs/TopicSubscriptionRecord.md +29 -0
- package/docs/TopicsApi.md +777 -0
- package/docs/TranslationsApi.md +258 -0
- package/docs/TrialInfo.md +27 -0
- package/docs/TriggerEvent.md +31 -0
- package/docs/TriggerRecipients.md +39 -0
- package/docs/TriggerRecipientsOneOf.md +21 -0
- package/docs/TriggerResult.md +25 -0
- package/docs/TriggerStatus.md +21 -0
- package/docs/UnseenCount.md +21 -0
- package/docs/UpdateChannelConnection.md +21 -0
- package/docs/UpdateChannelEndpoint.md +23 -0
- package/docs/UpdateContext.md +21 -0
- package/docs/UpdateInboxPreferences.md +29 -0
- package/docs/UpdateIntegration.md +27 -0
- package/docs/UpdateLayout.md +27 -0
- package/docs/UpdateNotificationGroup.md +21 -0
- package/docs/UpdatePreference.md +23 -0
- package/docs/UpdateProject.md +23 -0
- package/docs/UpdateSubscriber.md +35 -0
- package/docs/UpdateSubscriptionMeta.md +21 -0
- package/docs/UpdateTopic.md +21 -0
- package/docs/UpdateWorkflow.md +31 -0
- package/docs/Usage.md +35 -0
- package/docs/WebhookRecord.md +31 -0
- package/docs/WebhooksApi.md +212 -0
- package/docs/WidgetSettings.md +21 -0
- package/docs/WorkflowRecord.md +37 -0
- package/docs/WorkflowRunRecord.md +31 -0
- package/docs/WorkflowStatsResponse.md +27 -0
- package/docs/WorkflowStatus.md +21 -0
- package/docs/WorkflowStepCreate.md +31 -0
- package/docs/WorkflowsApi.md +550 -0
- package/git_push.sh +57 -0
- package/index.ts +18 -0
- package/models/action-body.ts +26 -0
- package/models/action-record.ts +28 -0
- package/models/action-type.ts +32 -0
- package/models/activity-chart-point.ts +46 -0
- package/models/activity-record.ts +62 -0
- package/models/activity-request-record.ts +46 -0
- package/models/activity-stats.ts +46 -0
- package/models/actor-type.ts +31 -0
- package/models/api-key-created.ts +38 -0
- package/models/api-key-info.ts +38 -0
- package/models/auto-configure-result.ts +23 -0
- package/models/billing-interval.ts +29 -0
- package/models/branding.ts +46 -0
- package/models/broadcast-trigger.ts +29 -0
- package/models/bulk-create-subscribers.ts +26 -0
- package/models/bulk-preference-item.ts +25 -0
- package/models/bulk-preferences.ts +26 -0
- package/models/bulk-result.ts +24 -0
- package/models/bulk-trigger.ts +29 -0
- package/models/channel-connection-record.ts +43 -0
- package/models/channel-endpoint-record.ts +47 -0
- package/models/channel-preferences.ts +27 -0
- package/models/channel-type.ts +32 -0
- package/models/chart-query.ts +26 -0
- package/models/chat-oauth-request.ts +21 -0
- package/models/chat-oauth.ts +23 -0
- package/models/checkout-session.ts +35 -0
- package/models/context-record.ts +42 -0
- package/models/create-channel-connection.ts +35 -0
- package/models/create-channel-endpoint.ts +39 -0
- package/models/create-checkout.ts +35 -0
- package/models/create-context.ts +34 -0
- package/models/create-integration.ts +51 -0
- package/models/create-layout.ts +34 -0
- package/models/create-notification-group.ts +26 -0
- package/models/create-project.ts +26 -0
- package/models/create-subscriber.ts +58 -0
- package/models/create-subscription.ts +23 -0
- package/models/create-topic.ts +30 -0
- package/models/create-webhook.ts +30 -0
- package/models/create-workflow.ts +60 -0
- package/models/cta-type.ts +28 -0
- package/models/cursor-meta.ts +38 -0
- package/models/cursor-paginated-feed-item-data-inner.ts +40 -0
- package/models/cursor-paginated-feed-item.ts +36 -0
- package/models/cursor-paginated-message-record-data-inner.ts +45 -0
- package/models/cursor-paginated-message-record.ts +36 -0
- package/models/cursor-pagination.ts +34 -0
- package/models/delete-subscription.ts +20 -0
- package/models/delivery-ack.ts +23 -0
- package/models/delivery-status-webhook.ts +29 -0
- package/models/dns-settings.ts +30 -0
- package/models/engagement-stats-response.ts +38 -0
- package/models/entitlement-item.ts +34 -0
- package/models/entitlements.ts +26 -0
- package/models/error-detail.ts +38 -0
- package/models/events-usage.ts +30 -0
- package/models/feed-item.ts +40 -0
- package/models/feed-query.ts +28 -0
- package/models/inbox-notification.ts +39 -0
- package/models/inbox-preference.ts +27 -0
- package/models/inbox-query.ts +26 -0
- package/models/index.ts +158 -0
- package/models/init-session-request.ts +30 -0
- package/models/init-session-response.ts +30 -0
- package/models/integration-record.ts +59 -0
- package/models/invite-member-body.ts +30 -0
- package/models/invite-member.ts +30 -0
- package/models/job-log.ts +47 -0
- package/models/layout-preview-result.ts +23 -0
- package/models/layout-preview.ts +23 -0
- package/models/layout-record.ts +37 -0
- package/models/layout-usage-item.ts +24 -0
- package/models/mark-all.ts +23 -0
- package/models/mark-messages.ts +24 -0
- package/models/mark-result.ts +23 -0
- package/models/member-record.ts +38 -0
- package/models/member-role.ts +31 -0
- package/models/member-status.ts +30 -0
- package/models/message-query.ts +46 -0
- package/models/message-record.ts +45 -0
- package/models/notification-count.ts +25 -0
- package/models/notification-group-record.ts +30 -0
- package/models/notification-log.ts +41 -0
- package/models/notification-query.ts +34 -0
- package/models/offset-meta.ts +38 -0
- package/models/offset-pagination.ts +38 -0
- package/models/online-status.ts +23 -0
- package/models/paginated-channel-connection-record-data-inner.ts +43 -0
- package/models/paginated-channel-connection-record.ts +36 -0
- package/models/paginated-channel-endpoint-record-data-inner.ts +47 -0
- package/models/paginated-channel-endpoint-record.ts +36 -0
- package/models/paginated-context-record-data-inner.ts +42 -0
- package/models/paginated-context-record.ts +36 -0
- package/models/paginated-integration-record-data-inner.ts +59 -0
- package/models/paginated-integration-record.ts +36 -0
- package/models/paginated-layout-record-data-inner.ts +37 -0
- package/models/paginated-layout-record.ts +36 -0
- package/models/paginated-subscriber-record-data-inner.ts +69 -0
- package/models/paginated-subscriber-record.ts +36 -0
- package/models/paginated-topic-record-data-inner.ts +28 -0
- package/models/paginated-topic-record.ts +36 -0
- package/models/paginated-topic-subscription-record-data-inner.ts +39 -0
- package/models/paginated-topic-subscription-record.ts +36 -0
- package/models/paginated-workflow-record-data-inner.ts +58 -0
- package/models/paginated-workflow-record.ts +36 -0
- package/models/pagination-query.ts +34 -0
- package/models/patch-credentials.ts +29 -0
- package/models/plan-limits-response.ts +55 -0
- package/models/plan.ts +32 -0
- package/models/portal-url.ts +26 -0
- package/models/preference-channels.ts +27 -0
- package/models/preference-record.ts +32 -0
- package/models/preview-result.ts +20 -0
- package/models/price-info.ts +38 -0
- package/models/prices.ts +26 -0
- package/models/project-record.ts +46 -0
- package/models/set-credentials.ts +29 -0
- package/models/step-preview.ts +23 -0
- package/models/step-record.ts +36 -0
- package/models/step-type.ts +37 -0
- package/models/subscriber-credential.ts +26 -0
- package/models/subscriber-payload.ts +24 -0
- package/models/subscriber-record.ts +69 -0
- package/models/subscription.ts +73 -0
- package/models/sync-workflow.ts +26 -0
- package/models/system-avatar-icon.ts +33 -0
- package/models/topic-record.ts +28 -0
- package/models/topic-subscribers.ts +23 -0
- package/models/topic-subscription-record.ts +39 -0
- package/models/topic-subscription.ts +27 -0
- package/models/trial-info.ts +38 -0
- package/models/trigger-event.ts +49 -0
- package/models/trigger-recipients-one-of.ts +23 -0
- package/models/trigger-recipients.ts +29 -0
- package/models/trigger-result.ts +39 -0
- package/models/trigger-status.ts +34 -0
- package/models/unseen-count.ts +23 -0
- package/models/update-channel-connection.ts +23 -0
- package/models/update-channel-endpoint.ts +27 -0
- package/models/update-context.ts +26 -0
- package/models/update-inbox-preferences.ts +27 -0
- package/models/update-integration.ts +38 -0
- package/models/update-layout.ts +29 -0
- package/models/update-notification-group.ts +26 -0
- package/models/update-preference.ts +27 -0
- package/models/update-project.ts +33 -0
- package/models/update-subscriber.ts +54 -0
- package/models/update-subscription-meta.ts +23 -0
- package/models/update-topic.ts +26 -0
- package/models/update-workflow.ts +52 -0
- package/models/usage.ts +59 -0
- package/models/webhook-record.ts +46 -0
- package/models/widget-settings.ts +26 -0
- package/models/workflow-record.ts +58 -0
- package/models/workflow-run-record.ts +46 -0
- package/models/workflow-stats-response.ts +38 -0
- package/models/workflow-status.ts +26 -0
- package/models/workflow-step-create.ts +51 -0
- package/package.json +9 -33
- package/tsconfig.esm.json +7 -0
- package/tsconfig.json +18 -0
|
@@ -0,0 +1,756 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* enbbox API
|
|
5
|
+
* Notification infrastructure API — open-source alternative to Novu/Courier
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 0.1.0
|
|
8
|
+
*
|
|
9
|
+
*
|
|
10
|
+
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
11
|
+
* https://openapi-generator.tech
|
|
12
|
+
* Do not edit the class manually.
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
import type { Configuration } from '../configuration';
|
|
17
|
+
import type { AxiosPromise, AxiosInstance, RawAxiosRequestConfig } from 'axios';
|
|
18
|
+
import globalAxios from 'axios';
|
|
19
|
+
// Some imports not used depending on template conditions
|
|
20
|
+
// @ts-ignore
|
|
21
|
+
import { DUMMY_BASE_URL, assertParamExists, setApiKeyToObject, setBasicAuthToObject, setBearerAuthToObject, setOAuthToObject, setSearchParams, serializeDataIfNeeded, toPathString, createRequestFunction, replaceWithSerializableTypeIfNeeded } from '../common';
|
|
22
|
+
// @ts-ignore
|
|
23
|
+
import { BASE_PATH, COLLECTION_FORMATS, type RequestArgs, BaseAPI, RequiredError, operationServerMap } from '../base';
|
|
24
|
+
// @ts-ignore
|
|
25
|
+
import type { ActivityChartPoint } from '../models';
|
|
26
|
+
// @ts-ignore
|
|
27
|
+
import type { ActivityRecord } from '../models';
|
|
28
|
+
// @ts-ignore
|
|
29
|
+
import type { ActivityRequestRecord } from '../models';
|
|
30
|
+
// @ts-ignore
|
|
31
|
+
import type { ActivityStats } from '../models';
|
|
32
|
+
// @ts-ignore
|
|
33
|
+
import type { EngagementStatsResponse } from '../models';
|
|
34
|
+
// @ts-ignore
|
|
35
|
+
import type { WorkflowRunRecord } from '../models';
|
|
36
|
+
// @ts-ignore
|
|
37
|
+
import type { WorkflowStatsResponse } from '../models';
|
|
38
|
+
/**
|
|
39
|
+
* ActivityApi - axios parameter creator
|
|
40
|
+
*/
|
|
41
|
+
export const ActivityApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
42
|
+
return {
|
|
43
|
+
/**
|
|
44
|
+
*
|
|
45
|
+
* @summary GET /v1/activity/chart — activity chart data
|
|
46
|
+
* @param {number | null} [days] Number of days to include in the chart (1–365, default: 30).
|
|
47
|
+
* @param {*} [options] Override http request option.
|
|
48
|
+
* @throws {RequiredError}
|
|
49
|
+
*/
|
|
50
|
+
activityChart: async (days?: number | null, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
51
|
+
const localVarPath = `/v1/activity/chart/`;
|
|
52
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
53
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
54
|
+
let baseOptions;
|
|
55
|
+
if (configuration) {
|
|
56
|
+
baseOptions = configuration.baseOptions;
|
|
57
|
+
}
|
|
58
|
+
|
|
59
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
60
|
+
const localVarHeaderParameter = {} as any;
|
|
61
|
+
const localVarQueryParameter = {} as any;
|
|
62
|
+
|
|
63
|
+
// authentication bearer_auth required
|
|
64
|
+
// http bearer authentication required
|
|
65
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
66
|
+
|
|
67
|
+
if (days !== undefined) {
|
|
68
|
+
localVarQueryParameter['days'] = days;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
72
|
+
|
|
73
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
74
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
75
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
76
|
+
|
|
77
|
+
return {
|
|
78
|
+
url: toPathString(localVarUrlObj),
|
|
79
|
+
options: localVarRequestOptions,
|
|
80
|
+
};
|
|
81
|
+
},
|
|
82
|
+
/**
|
|
83
|
+
*
|
|
84
|
+
* @summary GET /v1/activity/stats
|
|
85
|
+
* @param {*} [options] Override http request option.
|
|
86
|
+
* @throws {RequiredError}
|
|
87
|
+
*/
|
|
88
|
+
activityStats: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
89
|
+
const localVarPath = `/v1/activity/stats/`;
|
|
90
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
91
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
92
|
+
let baseOptions;
|
|
93
|
+
if (configuration) {
|
|
94
|
+
baseOptions = configuration.baseOptions;
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
98
|
+
const localVarHeaderParameter = {} as any;
|
|
99
|
+
const localVarQueryParameter = {} as any;
|
|
100
|
+
|
|
101
|
+
// authentication bearer_auth required
|
|
102
|
+
// http bearer authentication required
|
|
103
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
104
|
+
|
|
105
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
106
|
+
|
|
107
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
108
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
109
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
110
|
+
|
|
111
|
+
return {
|
|
112
|
+
url: toPathString(localVarUrlObj),
|
|
113
|
+
options: localVarRequestOptions,
|
|
114
|
+
};
|
|
115
|
+
},
|
|
116
|
+
/**
|
|
117
|
+
*
|
|
118
|
+
* @summary GET /v1/activity/engagement — subscriber engagement stats
|
|
119
|
+
* @param {*} [options] Override http request option.
|
|
120
|
+
* @throws {RequiredError}
|
|
121
|
+
*/
|
|
122
|
+
engagementStats: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
123
|
+
const localVarPath = `/v1/activity/engagement/`;
|
|
124
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
125
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
126
|
+
let baseOptions;
|
|
127
|
+
if (configuration) {
|
|
128
|
+
baseOptions = configuration.baseOptions;
|
|
129
|
+
}
|
|
130
|
+
|
|
131
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
132
|
+
const localVarHeaderParameter = {} as any;
|
|
133
|
+
const localVarQueryParameter = {} as any;
|
|
134
|
+
|
|
135
|
+
// authentication bearer_auth required
|
|
136
|
+
// http bearer authentication required
|
|
137
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
138
|
+
|
|
139
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
140
|
+
|
|
141
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
142
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
143
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
144
|
+
|
|
145
|
+
return {
|
|
146
|
+
url: toPathString(localVarUrlObj),
|
|
147
|
+
options: localVarRequestOptions,
|
|
148
|
+
};
|
|
149
|
+
},
|
|
150
|
+
/**
|
|
151
|
+
*
|
|
152
|
+
* @summary GET /v1/activity/:notificationId
|
|
153
|
+
* @param {string} notificationId Notification ID
|
|
154
|
+
* @param {*} [options] Override http request option.
|
|
155
|
+
* @throws {RequiredError}
|
|
156
|
+
*/
|
|
157
|
+
getActivityByNotification: async (notificationId: string, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
158
|
+
// verify required parameter 'notificationId' is not null or undefined
|
|
159
|
+
assertParamExists('getActivityByNotification', 'notificationId', notificationId)
|
|
160
|
+
const localVarPath = `/v1/activity/{notification_id}/`
|
|
161
|
+
.replace(`{${"notification_id"}}`, encodeURIComponent(String(notificationId)));
|
|
162
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
163
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
164
|
+
let baseOptions;
|
|
165
|
+
if (configuration) {
|
|
166
|
+
baseOptions = configuration.baseOptions;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
170
|
+
const localVarHeaderParameter = {} as any;
|
|
171
|
+
const localVarQueryParameter = {} as any;
|
|
172
|
+
|
|
173
|
+
// authentication bearer_auth required
|
|
174
|
+
// http bearer authentication required
|
|
175
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
176
|
+
|
|
177
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
178
|
+
|
|
179
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
180
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
181
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
182
|
+
|
|
183
|
+
return {
|
|
184
|
+
url: toPathString(localVarUrlObj),
|
|
185
|
+
options: localVarRequestOptions,
|
|
186
|
+
};
|
|
187
|
+
},
|
|
188
|
+
/**
|
|
189
|
+
*
|
|
190
|
+
* @summary GET /v1/activity
|
|
191
|
+
* @param {number | null} [limit] Maximum number of items per page (1–100, default: 10).
|
|
192
|
+
* @param {number | null} [page] Zero-based page index (default: 0).
|
|
193
|
+
* @param {string | null} [q] Optional full-text search query (e.g. detail text, provider_id, workflow_identifier).
|
|
194
|
+
* @param {*} [options] Override http request option.
|
|
195
|
+
* @throws {RequiredError}
|
|
196
|
+
*/
|
|
197
|
+
listActivity: async (limit?: number | null, page?: number | null, q?: string | null, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
198
|
+
const localVarPath = `/v1/activity/`;
|
|
199
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
200
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
201
|
+
let baseOptions;
|
|
202
|
+
if (configuration) {
|
|
203
|
+
baseOptions = configuration.baseOptions;
|
|
204
|
+
}
|
|
205
|
+
|
|
206
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
207
|
+
const localVarHeaderParameter = {} as any;
|
|
208
|
+
const localVarQueryParameter = {} as any;
|
|
209
|
+
|
|
210
|
+
// authentication bearer_auth required
|
|
211
|
+
// http bearer authentication required
|
|
212
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
213
|
+
|
|
214
|
+
if (limit !== undefined) {
|
|
215
|
+
localVarQueryParameter['limit'] = limit;
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
if (page !== undefined) {
|
|
219
|
+
localVarQueryParameter['page'] = page;
|
|
220
|
+
}
|
|
221
|
+
|
|
222
|
+
if (q !== undefined) {
|
|
223
|
+
localVarQueryParameter['q'] = q;
|
|
224
|
+
}
|
|
225
|
+
|
|
226
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
227
|
+
|
|
228
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
229
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
230
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
231
|
+
|
|
232
|
+
return {
|
|
233
|
+
url: toPathString(localVarUrlObj),
|
|
234
|
+
options: localVarRequestOptions,
|
|
235
|
+
};
|
|
236
|
+
},
|
|
237
|
+
/**
|
|
238
|
+
*
|
|
239
|
+
* @summary GET /v1/activity/requests — list trigger requests
|
|
240
|
+
* @param {number | null} [limit] Maximum number of items per page (1–100, default: 10).
|
|
241
|
+
* @param {number | null} [page] Zero-based page index (default: 0).
|
|
242
|
+
* @param {string | null} [q] Optional full-text search query (e.g. detail text, provider_id, workflow_identifier).
|
|
243
|
+
* @param {*} [options] Override http request option.
|
|
244
|
+
* @throws {RequiredError}
|
|
245
|
+
*/
|
|
246
|
+
listActivityRequests: async (limit?: number | null, page?: number | null, q?: string | null, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
247
|
+
const localVarPath = `/v1/activity/requests/`;
|
|
248
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
249
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
250
|
+
let baseOptions;
|
|
251
|
+
if (configuration) {
|
|
252
|
+
baseOptions = configuration.baseOptions;
|
|
253
|
+
}
|
|
254
|
+
|
|
255
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
256
|
+
const localVarHeaderParameter = {} as any;
|
|
257
|
+
const localVarQueryParameter = {} as any;
|
|
258
|
+
|
|
259
|
+
// authentication bearer_auth required
|
|
260
|
+
// http bearer authentication required
|
|
261
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
262
|
+
|
|
263
|
+
if (limit !== undefined) {
|
|
264
|
+
localVarQueryParameter['limit'] = limit;
|
|
265
|
+
}
|
|
266
|
+
|
|
267
|
+
if (page !== undefined) {
|
|
268
|
+
localVarQueryParameter['page'] = page;
|
|
269
|
+
}
|
|
270
|
+
|
|
271
|
+
if (q !== undefined) {
|
|
272
|
+
localVarQueryParameter['q'] = q;
|
|
273
|
+
}
|
|
274
|
+
|
|
275
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
276
|
+
|
|
277
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
278
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
279
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
280
|
+
|
|
281
|
+
return {
|
|
282
|
+
url: toPathString(localVarUrlObj),
|
|
283
|
+
options: localVarRequestOptions,
|
|
284
|
+
};
|
|
285
|
+
},
|
|
286
|
+
/**
|
|
287
|
+
*
|
|
288
|
+
* @summary GET /v1/activity/workflow-runs — list workflow executions
|
|
289
|
+
* @param {number | null} [limit] Maximum number of items per page (1–100, default: 10).
|
|
290
|
+
* @param {number | null} [page] Zero-based page index (default: 0).
|
|
291
|
+
* @param {string | null} [q] Optional full-text search query (e.g. detail text, provider_id, workflow_identifier).
|
|
292
|
+
* @param {*} [options] Override http request option.
|
|
293
|
+
* @throws {RequiredError}
|
|
294
|
+
*/
|
|
295
|
+
listWorkflowRuns: async (limit?: number | null, page?: number | null, q?: string | null, options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
296
|
+
const localVarPath = `/v1/activity/workflow-runs/`;
|
|
297
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
298
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
299
|
+
let baseOptions;
|
|
300
|
+
if (configuration) {
|
|
301
|
+
baseOptions = configuration.baseOptions;
|
|
302
|
+
}
|
|
303
|
+
|
|
304
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
305
|
+
const localVarHeaderParameter = {} as any;
|
|
306
|
+
const localVarQueryParameter = {} as any;
|
|
307
|
+
|
|
308
|
+
// authentication bearer_auth required
|
|
309
|
+
// http bearer authentication required
|
|
310
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
311
|
+
|
|
312
|
+
if (limit !== undefined) {
|
|
313
|
+
localVarQueryParameter['limit'] = limit;
|
|
314
|
+
}
|
|
315
|
+
|
|
316
|
+
if (page !== undefined) {
|
|
317
|
+
localVarQueryParameter['page'] = page;
|
|
318
|
+
}
|
|
319
|
+
|
|
320
|
+
if (q !== undefined) {
|
|
321
|
+
localVarQueryParameter['q'] = q;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
325
|
+
|
|
326
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
327
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
328
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
329
|
+
|
|
330
|
+
return {
|
|
331
|
+
url: toPathString(localVarUrlObj),
|
|
332
|
+
options: localVarRequestOptions,
|
|
333
|
+
};
|
|
334
|
+
},
|
|
335
|
+
/**
|
|
336
|
+
*
|
|
337
|
+
* @summary GET /v1/activity/workflows/stats — workflow execution stats
|
|
338
|
+
* @param {*} [options] Override http request option.
|
|
339
|
+
* @throws {RequiredError}
|
|
340
|
+
*/
|
|
341
|
+
workflowStats: async (options: RawAxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
342
|
+
const localVarPath = `/v1/activity/workflows/stats/`;
|
|
343
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
344
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
345
|
+
let baseOptions;
|
|
346
|
+
if (configuration) {
|
|
347
|
+
baseOptions = configuration.baseOptions;
|
|
348
|
+
}
|
|
349
|
+
|
|
350
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
351
|
+
const localVarHeaderParameter = {} as any;
|
|
352
|
+
const localVarQueryParameter = {} as any;
|
|
353
|
+
|
|
354
|
+
// authentication bearer_auth required
|
|
355
|
+
// http bearer authentication required
|
|
356
|
+
await setBearerAuthToObject(localVarHeaderParameter, configuration)
|
|
357
|
+
|
|
358
|
+
localVarHeaderParameter['Accept'] = 'application/json';
|
|
359
|
+
|
|
360
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
361
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
362
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
363
|
+
|
|
364
|
+
return {
|
|
365
|
+
url: toPathString(localVarUrlObj),
|
|
366
|
+
options: localVarRequestOptions,
|
|
367
|
+
};
|
|
368
|
+
},
|
|
369
|
+
}
|
|
370
|
+
};
|
|
371
|
+
|
|
372
|
+
/**
|
|
373
|
+
* ActivityApi - functional programming interface
|
|
374
|
+
*/
|
|
375
|
+
export const ActivityApiFp = function(configuration?: Configuration) {
|
|
376
|
+
const localVarAxiosParamCreator = ActivityApiAxiosParamCreator(configuration)
|
|
377
|
+
return {
|
|
378
|
+
/**
|
|
379
|
+
*
|
|
380
|
+
* @summary GET /v1/activity/chart — activity chart data
|
|
381
|
+
* @param {number | null} [days] Number of days to include in the chart (1–365, default: 30).
|
|
382
|
+
* @param {*} [options] Override http request option.
|
|
383
|
+
* @throws {RequiredError}
|
|
384
|
+
*/
|
|
385
|
+
async activityChart(days?: number | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ActivityChartPoint>>> {
|
|
386
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.activityChart(days, options);
|
|
387
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
388
|
+
const localVarOperationServerBasePath = operationServerMap['ActivityApi.activityChart']?.[localVarOperationServerIndex]?.url;
|
|
389
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
390
|
+
},
|
|
391
|
+
/**
|
|
392
|
+
*
|
|
393
|
+
* @summary GET /v1/activity/stats
|
|
394
|
+
* @param {*} [options] Override http request option.
|
|
395
|
+
* @throws {RequiredError}
|
|
396
|
+
*/
|
|
397
|
+
async activityStats(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ActivityStats>> {
|
|
398
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.activityStats(options);
|
|
399
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
400
|
+
const localVarOperationServerBasePath = operationServerMap['ActivityApi.activityStats']?.[localVarOperationServerIndex]?.url;
|
|
401
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
402
|
+
},
|
|
403
|
+
/**
|
|
404
|
+
*
|
|
405
|
+
* @summary GET /v1/activity/engagement — subscriber engagement stats
|
|
406
|
+
* @param {*} [options] Override http request option.
|
|
407
|
+
* @throws {RequiredError}
|
|
408
|
+
*/
|
|
409
|
+
async engagementStats(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<EngagementStatsResponse>> {
|
|
410
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.engagementStats(options);
|
|
411
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
412
|
+
const localVarOperationServerBasePath = operationServerMap['ActivityApi.engagementStats']?.[localVarOperationServerIndex]?.url;
|
|
413
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
414
|
+
},
|
|
415
|
+
/**
|
|
416
|
+
*
|
|
417
|
+
* @summary GET /v1/activity/:notificationId
|
|
418
|
+
* @param {string} notificationId Notification ID
|
|
419
|
+
* @param {*} [options] Override http request option.
|
|
420
|
+
* @throws {RequiredError}
|
|
421
|
+
*/
|
|
422
|
+
async getActivityByNotification(notificationId: string, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ActivityRecord>>> {
|
|
423
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.getActivityByNotification(notificationId, options);
|
|
424
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
425
|
+
const localVarOperationServerBasePath = operationServerMap['ActivityApi.getActivityByNotification']?.[localVarOperationServerIndex]?.url;
|
|
426
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
427
|
+
},
|
|
428
|
+
/**
|
|
429
|
+
*
|
|
430
|
+
* @summary GET /v1/activity
|
|
431
|
+
* @param {number | null} [limit] Maximum number of items per page (1–100, default: 10).
|
|
432
|
+
* @param {number | null} [page] Zero-based page index (default: 0).
|
|
433
|
+
* @param {string | null} [q] Optional full-text search query (e.g. detail text, provider_id, workflow_identifier).
|
|
434
|
+
* @param {*} [options] Override http request option.
|
|
435
|
+
* @throws {RequiredError}
|
|
436
|
+
*/
|
|
437
|
+
async listActivity(limit?: number | null, page?: number | null, q?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ActivityRecord>>> {
|
|
438
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listActivity(limit, page, q, options);
|
|
439
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
440
|
+
const localVarOperationServerBasePath = operationServerMap['ActivityApi.listActivity']?.[localVarOperationServerIndex]?.url;
|
|
441
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
442
|
+
},
|
|
443
|
+
/**
|
|
444
|
+
*
|
|
445
|
+
* @summary GET /v1/activity/requests — list trigger requests
|
|
446
|
+
* @param {number | null} [limit] Maximum number of items per page (1–100, default: 10).
|
|
447
|
+
* @param {number | null} [page] Zero-based page index (default: 0).
|
|
448
|
+
* @param {string | null} [q] Optional full-text search query (e.g. detail text, provider_id, workflow_identifier).
|
|
449
|
+
* @param {*} [options] Override http request option.
|
|
450
|
+
* @throws {RequiredError}
|
|
451
|
+
*/
|
|
452
|
+
async listActivityRequests(limit?: number | null, page?: number | null, q?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<ActivityRequestRecord>>> {
|
|
453
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listActivityRequests(limit, page, q, options);
|
|
454
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
455
|
+
const localVarOperationServerBasePath = operationServerMap['ActivityApi.listActivityRequests']?.[localVarOperationServerIndex]?.url;
|
|
456
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
457
|
+
},
|
|
458
|
+
/**
|
|
459
|
+
*
|
|
460
|
+
* @summary GET /v1/activity/workflow-runs — list workflow executions
|
|
461
|
+
* @param {number | null} [limit] Maximum number of items per page (1–100, default: 10).
|
|
462
|
+
* @param {number | null} [page] Zero-based page index (default: 0).
|
|
463
|
+
* @param {string | null} [q] Optional full-text search query (e.g. detail text, provider_id, workflow_identifier).
|
|
464
|
+
* @param {*} [options] Override http request option.
|
|
465
|
+
* @throws {RequiredError}
|
|
466
|
+
*/
|
|
467
|
+
async listWorkflowRuns(limit?: number | null, page?: number | null, q?: string | null, options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Array<WorkflowRunRecord>>> {
|
|
468
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.listWorkflowRuns(limit, page, q, options);
|
|
469
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
470
|
+
const localVarOperationServerBasePath = operationServerMap['ActivityApi.listWorkflowRuns']?.[localVarOperationServerIndex]?.url;
|
|
471
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
472
|
+
},
|
|
473
|
+
/**
|
|
474
|
+
*
|
|
475
|
+
* @summary GET /v1/activity/workflows/stats — workflow execution stats
|
|
476
|
+
* @param {*} [options] Override http request option.
|
|
477
|
+
* @throws {RequiredError}
|
|
478
|
+
*/
|
|
479
|
+
async workflowStats(options?: RawAxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<WorkflowStatsResponse>> {
|
|
480
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.workflowStats(options);
|
|
481
|
+
const localVarOperationServerIndex = configuration?.serverIndex ?? 0;
|
|
482
|
+
const localVarOperationServerBasePath = operationServerMap['ActivityApi.workflowStats']?.[localVarOperationServerIndex]?.url;
|
|
483
|
+
return (axios, basePath) => createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration)(axios, localVarOperationServerBasePath || basePath);
|
|
484
|
+
},
|
|
485
|
+
}
|
|
486
|
+
};
|
|
487
|
+
|
|
488
|
+
/**
|
|
489
|
+
* ActivityApi - factory interface
|
|
490
|
+
*/
|
|
491
|
+
export const ActivityApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
492
|
+
const localVarFp = ActivityApiFp(configuration)
|
|
493
|
+
return {
|
|
494
|
+
/**
|
|
495
|
+
*
|
|
496
|
+
* @summary GET /v1/activity/chart — activity chart data
|
|
497
|
+
* @param {number | null} [days] Number of days to include in the chart (1–365, default: 30).
|
|
498
|
+
* @param {*} [options] Override http request option.
|
|
499
|
+
* @throws {RequiredError}
|
|
500
|
+
*/
|
|
501
|
+
activityChart(days?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<Array<ActivityChartPoint>> {
|
|
502
|
+
return localVarFp.activityChart(days, options).then((request) => request(axios, basePath));
|
|
503
|
+
},
|
|
504
|
+
/**
|
|
505
|
+
*
|
|
506
|
+
* @summary GET /v1/activity/stats
|
|
507
|
+
* @param {*} [options] Override http request option.
|
|
508
|
+
* @throws {RequiredError}
|
|
509
|
+
*/
|
|
510
|
+
activityStats(options?: RawAxiosRequestConfig): AxiosPromise<ActivityStats> {
|
|
511
|
+
return localVarFp.activityStats(options).then((request) => request(axios, basePath));
|
|
512
|
+
},
|
|
513
|
+
/**
|
|
514
|
+
*
|
|
515
|
+
* @summary GET /v1/activity/engagement — subscriber engagement stats
|
|
516
|
+
* @param {*} [options] Override http request option.
|
|
517
|
+
* @throws {RequiredError}
|
|
518
|
+
*/
|
|
519
|
+
engagementStats(options?: RawAxiosRequestConfig): AxiosPromise<EngagementStatsResponse> {
|
|
520
|
+
return localVarFp.engagementStats(options).then((request) => request(axios, basePath));
|
|
521
|
+
},
|
|
522
|
+
/**
|
|
523
|
+
*
|
|
524
|
+
* @summary GET /v1/activity/:notificationId
|
|
525
|
+
* @param {string} notificationId Notification ID
|
|
526
|
+
* @param {*} [options] Override http request option.
|
|
527
|
+
* @throws {RequiredError}
|
|
528
|
+
*/
|
|
529
|
+
getActivityByNotification(notificationId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ActivityRecord>> {
|
|
530
|
+
return localVarFp.getActivityByNotification(notificationId, options).then((request) => request(axios, basePath));
|
|
531
|
+
},
|
|
532
|
+
/**
|
|
533
|
+
*
|
|
534
|
+
* @summary GET /v1/activity
|
|
535
|
+
* @param {number | null} [limit] Maximum number of items per page (1–100, default: 10).
|
|
536
|
+
* @param {number | null} [page] Zero-based page index (default: 0).
|
|
537
|
+
* @param {string | null} [q] Optional full-text search query (e.g. detail text, provider_id, workflow_identifier).
|
|
538
|
+
* @param {*} [options] Override http request option.
|
|
539
|
+
* @throws {RequiredError}
|
|
540
|
+
*/
|
|
541
|
+
listActivity(limit?: number | null, page?: number | null, q?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<Array<ActivityRecord>> {
|
|
542
|
+
return localVarFp.listActivity(limit, page, q, options).then((request) => request(axios, basePath));
|
|
543
|
+
},
|
|
544
|
+
/**
|
|
545
|
+
*
|
|
546
|
+
* @summary GET /v1/activity/requests — list trigger requests
|
|
547
|
+
* @param {number | null} [limit] Maximum number of items per page (1–100, default: 10).
|
|
548
|
+
* @param {number | null} [page] Zero-based page index (default: 0).
|
|
549
|
+
* @param {string | null} [q] Optional full-text search query (e.g. detail text, provider_id, workflow_identifier).
|
|
550
|
+
* @param {*} [options] Override http request option.
|
|
551
|
+
* @throws {RequiredError}
|
|
552
|
+
*/
|
|
553
|
+
listActivityRequests(limit?: number | null, page?: number | null, q?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<Array<ActivityRequestRecord>> {
|
|
554
|
+
return localVarFp.listActivityRequests(limit, page, q, options).then((request) => request(axios, basePath));
|
|
555
|
+
},
|
|
556
|
+
/**
|
|
557
|
+
*
|
|
558
|
+
* @summary GET /v1/activity/workflow-runs — list workflow executions
|
|
559
|
+
* @param {number | null} [limit] Maximum number of items per page (1–100, default: 10).
|
|
560
|
+
* @param {number | null} [page] Zero-based page index (default: 0).
|
|
561
|
+
* @param {string | null} [q] Optional full-text search query (e.g. detail text, provider_id, workflow_identifier).
|
|
562
|
+
* @param {*} [options] Override http request option.
|
|
563
|
+
* @throws {RequiredError}
|
|
564
|
+
*/
|
|
565
|
+
listWorkflowRuns(limit?: number | null, page?: number | null, q?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<Array<WorkflowRunRecord>> {
|
|
566
|
+
return localVarFp.listWorkflowRuns(limit, page, q, options).then((request) => request(axios, basePath));
|
|
567
|
+
},
|
|
568
|
+
/**
|
|
569
|
+
*
|
|
570
|
+
* @summary GET /v1/activity/workflows/stats — workflow execution stats
|
|
571
|
+
* @param {*} [options] Override http request option.
|
|
572
|
+
* @throws {RequiredError}
|
|
573
|
+
*/
|
|
574
|
+
workflowStats(options?: RawAxiosRequestConfig): AxiosPromise<WorkflowStatsResponse> {
|
|
575
|
+
return localVarFp.workflowStats(options).then((request) => request(axios, basePath));
|
|
576
|
+
},
|
|
577
|
+
};
|
|
578
|
+
};
|
|
579
|
+
|
|
580
|
+
/**
|
|
581
|
+
* ActivityApi - interface
|
|
582
|
+
*/
|
|
583
|
+
export interface ActivityApiInterface {
|
|
584
|
+
/**
|
|
585
|
+
*
|
|
586
|
+
* @summary GET /v1/activity/chart — activity chart data
|
|
587
|
+
* @param {number | null} [days] Number of days to include in the chart (1–365, default: 30).
|
|
588
|
+
* @param {*} [options] Override http request option.
|
|
589
|
+
* @throws {RequiredError}
|
|
590
|
+
*/
|
|
591
|
+
activityChart(days?: number | null, options?: RawAxiosRequestConfig): AxiosPromise<Array<ActivityChartPoint>>;
|
|
592
|
+
|
|
593
|
+
/**
|
|
594
|
+
*
|
|
595
|
+
* @summary GET /v1/activity/stats
|
|
596
|
+
* @param {*} [options] Override http request option.
|
|
597
|
+
* @throws {RequiredError}
|
|
598
|
+
*/
|
|
599
|
+
activityStats(options?: RawAxiosRequestConfig): AxiosPromise<ActivityStats>;
|
|
600
|
+
|
|
601
|
+
/**
|
|
602
|
+
*
|
|
603
|
+
* @summary GET /v1/activity/engagement — subscriber engagement stats
|
|
604
|
+
* @param {*} [options] Override http request option.
|
|
605
|
+
* @throws {RequiredError}
|
|
606
|
+
*/
|
|
607
|
+
engagementStats(options?: RawAxiosRequestConfig): AxiosPromise<EngagementStatsResponse>;
|
|
608
|
+
|
|
609
|
+
/**
|
|
610
|
+
*
|
|
611
|
+
* @summary GET /v1/activity/:notificationId
|
|
612
|
+
* @param {string} notificationId Notification ID
|
|
613
|
+
* @param {*} [options] Override http request option.
|
|
614
|
+
* @throws {RequiredError}
|
|
615
|
+
*/
|
|
616
|
+
getActivityByNotification(notificationId: string, options?: RawAxiosRequestConfig): AxiosPromise<Array<ActivityRecord>>;
|
|
617
|
+
|
|
618
|
+
/**
|
|
619
|
+
*
|
|
620
|
+
* @summary GET /v1/activity
|
|
621
|
+
* @param {number | null} [limit] Maximum number of items per page (1–100, default: 10).
|
|
622
|
+
* @param {number | null} [page] Zero-based page index (default: 0).
|
|
623
|
+
* @param {string | null} [q] Optional full-text search query (e.g. detail text, provider_id, workflow_identifier).
|
|
624
|
+
* @param {*} [options] Override http request option.
|
|
625
|
+
* @throws {RequiredError}
|
|
626
|
+
*/
|
|
627
|
+
listActivity(limit?: number | null, page?: number | null, q?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<Array<ActivityRecord>>;
|
|
628
|
+
|
|
629
|
+
/**
|
|
630
|
+
*
|
|
631
|
+
* @summary GET /v1/activity/requests — list trigger requests
|
|
632
|
+
* @param {number | null} [limit] Maximum number of items per page (1–100, default: 10).
|
|
633
|
+
* @param {number | null} [page] Zero-based page index (default: 0).
|
|
634
|
+
* @param {string | null} [q] Optional full-text search query (e.g. detail text, provider_id, workflow_identifier).
|
|
635
|
+
* @param {*} [options] Override http request option.
|
|
636
|
+
* @throws {RequiredError}
|
|
637
|
+
*/
|
|
638
|
+
listActivityRequests(limit?: number | null, page?: number | null, q?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<Array<ActivityRequestRecord>>;
|
|
639
|
+
|
|
640
|
+
/**
|
|
641
|
+
*
|
|
642
|
+
* @summary GET /v1/activity/workflow-runs — list workflow executions
|
|
643
|
+
* @param {number | null} [limit] Maximum number of items per page (1–100, default: 10).
|
|
644
|
+
* @param {number | null} [page] Zero-based page index (default: 0).
|
|
645
|
+
* @param {string | null} [q] Optional full-text search query (e.g. detail text, provider_id, workflow_identifier).
|
|
646
|
+
* @param {*} [options] Override http request option.
|
|
647
|
+
* @throws {RequiredError}
|
|
648
|
+
*/
|
|
649
|
+
listWorkflowRuns(limit?: number | null, page?: number | null, q?: string | null, options?: RawAxiosRequestConfig): AxiosPromise<Array<WorkflowRunRecord>>;
|
|
650
|
+
|
|
651
|
+
/**
|
|
652
|
+
*
|
|
653
|
+
* @summary GET /v1/activity/workflows/stats — workflow execution stats
|
|
654
|
+
* @param {*} [options] Override http request option.
|
|
655
|
+
* @throws {RequiredError}
|
|
656
|
+
*/
|
|
657
|
+
workflowStats(options?: RawAxiosRequestConfig): AxiosPromise<WorkflowStatsResponse>;
|
|
658
|
+
|
|
659
|
+
}
|
|
660
|
+
|
|
661
|
+
/**
|
|
662
|
+
* ActivityApi - object-oriented interface
|
|
663
|
+
*/
|
|
664
|
+
export class ActivityApi extends BaseAPI implements ActivityApiInterface {
|
|
665
|
+
/**
|
|
666
|
+
*
|
|
667
|
+
* @summary GET /v1/activity/chart — activity chart data
|
|
668
|
+
* @param {number | null} [days] Number of days to include in the chart (1–365, default: 30).
|
|
669
|
+
* @param {*} [options] Override http request option.
|
|
670
|
+
* @throws {RequiredError}
|
|
671
|
+
*/
|
|
672
|
+
public activityChart(days?: number | null, options?: RawAxiosRequestConfig) {
|
|
673
|
+
return ActivityApiFp(this.configuration).activityChart(days, options).then((request) => request(this.axios, this.basePath));
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
/**
|
|
677
|
+
*
|
|
678
|
+
* @summary GET /v1/activity/stats
|
|
679
|
+
* @param {*} [options] Override http request option.
|
|
680
|
+
* @throws {RequiredError}
|
|
681
|
+
*/
|
|
682
|
+
public activityStats(options?: RawAxiosRequestConfig) {
|
|
683
|
+
return ActivityApiFp(this.configuration).activityStats(options).then((request) => request(this.axios, this.basePath));
|
|
684
|
+
}
|
|
685
|
+
|
|
686
|
+
/**
|
|
687
|
+
*
|
|
688
|
+
* @summary GET /v1/activity/engagement — subscriber engagement stats
|
|
689
|
+
* @param {*} [options] Override http request option.
|
|
690
|
+
* @throws {RequiredError}
|
|
691
|
+
*/
|
|
692
|
+
public engagementStats(options?: RawAxiosRequestConfig) {
|
|
693
|
+
return ActivityApiFp(this.configuration).engagementStats(options).then((request) => request(this.axios, this.basePath));
|
|
694
|
+
}
|
|
695
|
+
|
|
696
|
+
/**
|
|
697
|
+
*
|
|
698
|
+
* @summary GET /v1/activity/:notificationId
|
|
699
|
+
* @param {string} notificationId Notification ID
|
|
700
|
+
* @param {*} [options] Override http request option.
|
|
701
|
+
* @throws {RequiredError}
|
|
702
|
+
*/
|
|
703
|
+
public getActivityByNotification(notificationId: string, options?: RawAxiosRequestConfig) {
|
|
704
|
+
return ActivityApiFp(this.configuration).getActivityByNotification(notificationId, options).then((request) => request(this.axios, this.basePath));
|
|
705
|
+
}
|
|
706
|
+
|
|
707
|
+
/**
|
|
708
|
+
*
|
|
709
|
+
* @summary GET /v1/activity
|
|
710
|
+
* @param {number | null} [limit] Maximum number of items per page (1–100, default: 10).
|
|
711
|
+
* @param {number | null} [page] Zero-based page index (default: 0).
|
|
712
|
+
* @param {string | null} [q] Optional full-text search query (e.g. detail text, provider_id, workflow_identifier).
|
|
713
|
+
* @param {*} [options] Override http request option.
|
|
714
|
+
* @throws {RequiredError}
|
|
715
|
+
*/
|
|
716
|
+
public listActivity(limit?: number | null, page?: number | null, q?: string | null, options?: RawAxiosRequestConfig) {
|
|
717
|
+
return ActivityApiFp(this.configuration).listActivity(limit, page, q, options).then((request) => request(this.axios, this.basePath));
|
|
718
|
+
}
|
|
719
|
+
|
|
720
|
+
/**
|
|
721
|
+
*
|
|
722
|
+
* @summary GET /v1/activity/requests — list trigger requests
|
|
723
|
+
* @param {number | null} [limit] Maximum number of items per page (1–100, default: 10).
|
|
724
|
+
* @param {number | null} [page] Zero-based page index (default: 0).
|
|
725
|
+
* @param {string | null} [q] Optional full-text search query (e.g. detail text, provider_id, workflow_identifier).
|
|
726
|
+
* @param {*} [options] Override http request option.
|
|
727
|
+
* @throws {RequiredError}
|
|
728
|
+
*/
|
|
729
|
+
public listActivityRequests(limit?: number | null, page?: number | null, q?: string | null, options?: RawAxiosRequestConfig) {
|
|
730
|
+
return ActivityApiFp(this.configuration).listActivityRequests(limit, page, q, options).then((request) => request(this.axios, this.basePath));
|
|
731
|
+
}
|
|
732
|
+
|
|
733
|
+
/**
|
|
734
|
+
*
|
|
735
|
+
* @summary GET /v1/activity/workflow-runs — list workflow executions
|
|
736
|
+
* @param {number | null} [limit] Maximum number of items per page (1–100, default: 10).
|
|
737
|
+
* @param {number | null} [page] Zero-based page index (default: 0).
|
|
738
|
+
* @param {string | null} [q] Optional full-text search query (e.g. detail text, provider_id, workflow_identifier).
|
|
739
|
+
* @param {*} [options] Override http request option.
|
|
740
|
+
* @throws {RequiredError}
|
|
741
|
+
*/
|
|
742
|
+
public listWorkflowRuns(limit?: number | null, page?: number | null, q?: string | null, options?: RawAxiosRequestConfig) {
|
|
743
|
+
return ActivityApiFp(this.configuration).listWorkflowRuns(limit, page, q, options).then((request) => request(this.axios, this.basePath));
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
/**
|
|
747
|
+
*
|
|
748
|
+
* @summary GET /v1/activity/workflows/stats — workflow execution stats
|
|
749
|
+
* @param {*} [options] Override http request option.
|
|
750
|
+
* @throws {RequiredError}
|
|
751
|
+
*/
|
|
752
|
+
public workflowStats(options?: RawAxiosRequestConfig) {
|
|
753
|
+
return ActivityApiFp(this.configuration).workflowStats(options).then((request) => request(this.axios, this.basePath));
|
|
754
|
+
}
|
|
755
|
+
}
|
|
756
|
+
|