@sigmaott/base-next 1.0.6
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 +1 -0
- package/hyrd-ui.preset.ts +463 -0
- package/i18n.config.ts +3 -0
- package/locales/en.yaml +719 -0
- package/locales/vi.yaml +726 -0
- package/nuxt-config.ts +23 -0
- package/nuxt.config.ts +267 -0
- package/package.json +119 -0
- package/public/routes.json +34 -0
- package/src/MediaInfoModule.wasm +0 -0
- package/src/api/api.ts +15 -0
- package/src/api/axios.ts +125 -0
- package/src/api/service-loading.ts +50 -0
- package/src/api-client-auth/.openapi-generator/FILES +83 -0
- package/src/api-client-auth/.openapi-generator/VERSION +1 -0
- package/src/api-client-auth/.openapi-generator-ignore +23 -0
- package/src/api-client-auth/api/admin-groups-api.ts +612 -0
- package/src/api-client-auth/api/admin-members-api.ts +708 -0
- package/src/api-client-auth/api/administration-api-groups-api.ts +547 -0
- package/src/api-client-auth/api/administration-apps-api.ts +709 -0
- package/src/api-client-auth/api/administration-packages-api.ts +547 -0
- package/src/api-client-auth/api/api-groups-api.ts +296 -0
- package/src/api-client-auth/api/apps-api.ts +1613 -0
- package/src/api-client-auth/api/basic-credential-api.ts +950 -0
- package/src/api-client-auth/api/groups-api.ts +702 -0
- package/src/api-client-auth/api/members-api.ts +708 -0
- package/src/api-client-auth/api/members-on-premise-api.ts +351 -0
- package/src/api-client-auth/api/packages-api.ts +296 -0
- package/src/api-client-auth/api/users-api.ts +1387 -0
- package/src/api-client-auth/api.ts +30 -0
- package/src/api-client-auth/base.ts +72 -0
- package/src/api-client-auth/common.ts +150 -0
- package/src/api-client-auth/configuration.ts +101 -0
- package/src/api-client-auth/git_push.sh +57 -0
- package/src/api-client-auth/index.ts +18 -0
- package/src/api-client-auth/models/add-member-dto.ts +42 -0
- package/src/api-client-auth/models/admin-permission.ts +44 -0
- package/src/api-client-auth/models/api-group-collection.ts +57 -0
- package/src/api-client-auth/models/api-group.ts +80 -0
- package/src/api-client-auth/models/api.ts +44 -0
- package/src/api-client-auth/models/app-collection.ts +57 -0
- package/src/api-client-auth/models/app.ts +147 -0
- package/src/api-client-auth/models/backdoor-cred.ts +39 -0
- package/src/api-client-auth/models/basic-cred-collection.ts +57 -0
- package/src/api-client-auth/models/basic-cred.ts +83 -0
- package/src/api-client-auth/models/change-password-dto.ts +42 -0
- package/src/api-client-auth/models/create-admin-group-dto.ts +39 -0
- package/src/api-client-auth/models/create-api-group-dto.ts +42 -0
- package/src/api-client-auth/models/create-app-by-user-dto.ts +36 -0
- package/src/api-client-auth/models/create-app-dto.ts +65 -0
- package/src/api-client-auth/models/create-basic-cred-dto.ts +39 -0
- package/src/api-client-auth/models/create-group-dto.ts +39 -0
- package/src/api-client-auth/models/create-package-dto.ts +48 -0
- package/src/api-client-auth/models/create-user-dto.ts +60 -0
- package/src/api-client-auth/models/free-trial.ts +54 -0
- package/src/api-client-auth/models/general-app.ts +48 -0
- package/src/api-client-auth/models/generate-app-id.ts +30 -0
- package/src/api-client-auth/models/group-collection.ts +57 -0
- package/src/api-client-auth/models/group.ts +75 -0
- package/src/api-client-auth/models/index.ts +60 -0
- package/src/api-client-auth/models/invite-email-dto.ts +30 -0
- package/src/api-client-auth/models/invite-member-dto.ts +36 -0
- package/src/api-client-auth/models/live-stream-quota.ts +42 -0
- package/src/api-client-auth/models/login-dto.ts +36 -0
- package/src/api-client-auth/models/login-result.ts +39 -0
- package/src/api-client-auth/models/member-collection.ts +57 -0
- package/src/api-client-auth/models/member.ts +92 -0
- package/src/api-client-auth/models/package-collection.ts +57 -0
- package/src/api-client-auth/models/package-permission.ts +44 -0
- package/src/api-client-auth/models/package.ts +66 -0
- package/src/api-client-auth/models/permission.ts +44 -0
- package/src/api-client-auth/models/quota.ts +45 -0
- package/src/api-client-auth/models/re-get-password-dto.ts +30 -0
- package/src/api-client-auth/models/register-dto.ts +54 -0
- package/src/api-client-auth/models/register-through-email-dto.ts +36 -0
- package/src/api-client-auth/models/rename-app-dto.ts +30 -0
- package/src/api-client-auth/models/resend-confirmation-dto.ts +30 -0
- package/src/api-client-auth/models/resend-invitation-dto.ts +30 -0
- package/src/api-client-auth/models/resend-result.ts +36 -0
- package/src/api-client-auth/models/reset-password-dto.ts +36 -0
- package/src/api-client-auth/models/revoke-basic-dto.ts +38 -0
- package/src/api-client-auth/models/signup-result.ts +45 -0
- package/src/api-client-auth/models/token-check-result.ts +36 -0
- package/src/api-client-auth/models/trial-remaining-days.ts +42 -0
- package/src/api-client-auth/models/update-admin-group-dto.ts +39 -0
- package/src/api-client-auth/models/update-api-group-dto.ts +30 -0
- package/src/api-client-auth/models/update-app-by-admin-dto.ts +48 -0
- package/src/api-client-auth/models/update-app-by-user-dto.ts +36 -0
- package/src/api-client-auth/models/update-basic-cred-dto.ts +30 -0
- package/src/api-client-auth/models/update-group-dto.ts +39 -0
- package/src/api-client-auth/models/update-member-dto.ts +30 -0
- package/src/api-client-auth/models/update-package-dto.ts +42 -0
- package/src/api-client-auth/models/update-password-member-dto.ts +30 -0
- package/src/api-client-auth/models/update-user-by-user-dto.ts +48 -0
- package/src/api-client-auth/models/user.ts +120 -0
- package/src/api-client-auth/models/validate-app-id.ts +36 -0
- package/src/api-client-billing/.openapi-generator/FILES +38 -0
- package/src/api-client-billing/.openapi-generator/VERSION +1 -0
- package/src/api-client-billing/.openapi-generator-ignore +23 -0
- package/src/api-client-billing/api/invoice-api.ts +363 -0
- package/src/api-client-billing/api/payment-methods-api.ts +414 -0
- package/src/api-client-billing/api/payment-plan-api.ts +121 -0
- package/src/api-client-billing/api/subscriptions-api.ts +121 -0
- package/src/api-client-billing/api/usages-api.ts +121 -0
- package/src/api-client-billing/api/vnpay-provider-api.ts +327 -0
- package/src/api-client-billing/api.ts +23 -0
- package/src/api-client-billing/base.ts +72 -0
- package/src/api-client-billing/common.ts +150 -0
- package/src/api-client-billing/configuration.ts +101 -0
- package/src/api-client-billing/git_push.sh +57 -0
- package/src/api-client-billing/index.ts +18 -0
- package/src/api-client-billing/models/common-paginate-response.ts +48 -0
- package/src/api-client-billing/models/dto-billing-item-info.ts +60 -0
- package/src/api-client-billing/models/dto-billing-item.ts +36 -0
- package/src/api-client-billing/models/dto-create-draft-invoice-request.ts +33 -0
- package/src/api-client-billing/models/dto-create-draft-invoice-response.ts +57 -0
- package/src/api-client-billing/models/dto-create-vnpay-card-form.ts +48 -0
- package/src/api-client-billing/models/dto-return-uri-response.ts +30 -0
- package/src/api-client-billing/models/index.ts +22 -0
- package/src/api-client-billing/models/invoices-get200-response.ts +42 -0
- package/src/api-client-billing/models/model-charge.ts +47 -0
- package/src/api-client-billing/models/model-charges-usage.ts +57 -0
- package/src/api-client-billing/models/model-graduated-range.ts +48 -0
- package/src/api-client-billing/models/model-info.ts +42 -0
- package/src/api-client-billing/models/model-invoice.ts +105 -0
- package/src/api-client-billing/models/model-item-usage.ts +54 -0
- package/src/api-client-billing/models/model-payment-method.ts +135 -0
- package/src/api-client-billing/models/model-product.ts +51 -0
- package/src/api-client-billing/models/model-properties.ts +39 -0
- package/src/api-client-billing/models/model-quota.ts +48 -0
- package/src/api-client-billing/models/model-subscription.ts +51 -0
- package/src/api-client-billing/models/model-usage-payment.ts +87 -0
- package/src/api-client-billing/models/payment-methods-get200-response.ts +42 -0
- package/src/api-client-billing/models/subscriptions-get200-response.ts +42 -0
- package/src/api-client-machine/.openapi-generator/FILES +90 -0
- package/src/api-client-machine/.openapi-generator/VERSION +1 -0
- package/src/api-client-machine/.openapi-generator-ignore +23 -0
- package/src/api-client-machine/api/apps-config-api.ts +523 -0
- package/src/api-client-machine/api/component-clusters-api.ts +741 -0
- package/src/api-client-machine/api/expose-api.ts +141 -0
- package/src/api-client-machine/api/machine-actions-api.ts +850 -0
- package/src/api-client-machine/api/machines-api.ts +524 -0
- package/src/api-client-machine/api/networks-api.ts +375 -0
- package/src/api-client-machine/api/sigma-clusters-api.ts +741 -0
- package/src/api-client-machine/api/sigma-machine-actions-api.ts +292 -0
- package/src/api-client-machine/api/sigma-machine-apps-configuration-api.ts +523 -0
- package/src/api-client-machine/api/sigma-machines-api.ts +557 -0
- package/src/api-client-machine/api/sigma-vod-server-api.ts +478 -0
- package/src/api-client-machine/api/sigma-vod-server-app-config-api.ts +980 -0
- package/src/api-client-machine/api/transcoder-configuration-api.ts +359 -0
- package/src/api-client-machine/api.ts +30 -0
- package/src/api-client-machine/base.ts +72 -0
- package/src/api-client-machine/common.ts +150 -0
- package/src/api-client-machine/configuration.ts +101 -0
- package/src/api-client-machine/git_push.sh +57 -0
- package/src/api-client-machine/index.ts +18 -0
- package/src/api-client-machine/models/actions-to-app-dto.ts +38 -0
- package/src/api-client-machine/models/add-license-machine-dto.ts +30 -0
- package/src/api-client-machine/models/app-status.ts +47 -0
- package/src/api-client-machine/models/check-quota-limit-result.ts +36 -0
- package/src/api-client-machine/models/cluster-log.ts +54 -0
- package/src/api-client-machine/models/component-cluster-collection.ts +57 -0
- package/src/api-client-machine/models/component-cluster.ts +116 -0
- package/src/api-client-machine/models/create-component-machine-cluster-dto.ts +86 -0
- package/src/api-client-machine/models/create-sigma-machine-cluster-dto.ts +77 -0
- package/src/api-client-machine/models/create-vodroute-dto.ts +42 -0
- package/src/api-client-machine/models/decklink-collection.ts +57 -0
- package/src/api-client-machine/models/decklink.ts +42 -0
- package/src/api-client-machine/models/http-app.ts +45 -0
- package/src/api-client-machine/models/https-config.ts +42 -0
- package/src/api-client-machine/models/index.ts +67 -0
- package/src/api-client-machine/models/info-channel.ts +42 -0
- package/src/api-client-machine/models/ingest-app.ts +60 -0
- package/src/api-client-machine/models/ingest-config.ts +74 -0
- package/src/api-client-machine/models/ingest-update-config-dto.ts +68 -0
- package/src/api-client-machine/models/machine-cluster-collection.ts +57 -0
- package/src/api-client-machine/models/machine-cluster.ts +120 -0
- package/src/api-client-machine/models/machine-details-license.ts +42 -0
- package/src/api-client-machine/models/machine-details.ts +127 -0
- package/src/api-client-machine/models/machine-dto.ts +42 -0
- package/src/api-client-machine/models/machine-dump.ts +108 -0
- package/src/api-client-machine/models/machine.ts +42 -0
- package/src/api-client-machine/models/network-collection.ts +57 -0
- package/src/api-client-machine/models/network-interface.ts +36 -0
- package/src/api-client-machine/models/network.ts +66 -0
- package/src/api-client-machine/models/origin-config.ts +50 -0
- package/src/api-client-machine/models/origin-update-config-dto.ts +59 -0
- package/src/api-client-machine/models/packager-component-cluster.ts +42 -0
- package/src/api-client-machine/models/packager-live-cluster.ts +42 -0
- package/src/api-client-machine/models/packager-to-component-cluster.ts +51 -0
- package/src/api-client-machine/models/quotas-result.ts +30 -0
- package/src/api-client-machine/models/registration-config.ts +48 -0
- package/src/api-client-machine/models/sigma-cluster-ingest-config.ts +42 -0
- package/src/api-client-machine/models/sigma-cluster-origin-config.ts +30 -0
- package/src/api-client-machine/models/sigma-ingest-config-entity.ts +42 -0
- package/src/api-client-machine/models/sigma-ingest-config.ts +42 -0
- package/src/api-client-machine/models/sigma-origin-config-entity.ts +30 -0
- package/src/api-client-machine/models/sigma-origin-config.ts +30 -0
- package/src/api-client-machine/models/stats.ts +57 -0
- package/src/api-client-machine/models/status.ts +36 -0
- package/src/api-client-machine/models/stop-channel.ts +48 -0
- package/src/api-client-machine/models/transcoder-apps.ts +42 -0
- package/src/api-client-machine/models/transcoder-collection.ts +57 -0
- package/src/api-client-machine/models/transcoder-component-cluster.ts +42 -0
- package/src/api-client-machine/models/transcoder-license.ts +42 -0
- package/src/api-client-machine/models/transcoder-live-cluster.ts +42 -0
- package/src/api-client-machine/models/transcoder-live-to-component-cluster.ts +45 -0
- package/src/api-client-machine/models/transcoder-network.ts +42 -0
- package/src/api-client-machine/models/transcoder.ts +276 -0
- package/src/api-client-machine/models/update-app-config-dto-config-data.ts +33 -0
- package/src/api-client-machine/models/update-app-config-dto.ts +33 -0
- package/src/api-client-machine/models/update-app-config-of-sigma-vod-server-dto-config-data.ts +30 -0
- package/src/api-client-machine/models/update-app-config-of-sigma-vod-server-dto.ts +33 -0
- package/src/api-client-machine/models/update-component-cluster-dto.ts +72 -0
- package/src/api-client-machine/models/update-machine-cluster-dto.ts +63 -0
- package/src/api-client-machine/models/update-machine-dto.ts +42 -0
- package/src/api-client-machine/models/update-packager-live-cluster.ts +42 -0
- package/src/api-client-machine/models/update-packager-to-component-cluster.ts +51 -0
- package/src/api-client-machine/models/update-route-config-of-sigma-vod-server.ts +33 -0
- package/src/api-client-machine/models/update-route-config-sigma-machine.ts +42 -0
- package/src/api-client-machine/models/update-transcoder-live-cluster.ts +42 -0
- package/src/api-client-machine/models/update-transcoder-to-component-cluster.ts +45 -0
- package/src/api-client-machine/models/video-encoder.ts +56 -0
- package/src/api-client-machine/models/vodroute.ts +60 -0
- package/src/api-client-noti/.openapi-generator/FILES +13 -0
- package/src/api-client-noti/.openapi-generator/VERSION +1 -0
- package/src/api-client-noti/.openapi-generator-ignore +23 -0
- package/src/api-client-noti/api/notification-api.ts +386 -0
- package/src/api-client-noti/api.ts +18 -0
- package/src/api-client-noti/base.ts +72 -0
- package/src/api-client-noti/common.ts +150 -0
- package/src/api-client-noti/configuration.ts +101 -0
- package/src/api-client-noti/git_push.sh +57 -0
- package/src/api-client-noti/index.ts +18 -0
- package/src/api-client-noti/models/index.ts +2 -0
- package/src/api-client-noti/models/notification-collection.ts +57 -0
- package/src/api-client-noti/models/notification.ts +101 -0
- package/src/api-client-transcode/.openapi-generator/FILES +129 -0
- package/src/api-client-transcode/.openapi-generator/VERSION +1 -0
- package/src/api-client-transcode/.openapi-generator-ignore +23 -0
- package/src/api-client-transcode/api/alert-logs-apiapi.ts +281 -0
- package/src/api-client-transcode/api/channel-package-inputs-apiapi.ts +650 -0
- package/src/api-client-transcode/api/channel-transcode-inputs-apiapi.ts +650 -0
- package/src/api-client-transcode/api/channels-crudapiapi.ts +869 -0
- package/src/api-client-transcode/api/channels-job-action-apiapi.ts +434 -0
- package/src/api-client-transcode/api/drm-credentials-api.ts +525 -0
- package/src/api-client-transcode/api/event-channel-action-apiapi.ts +363 -0
- package/src/api-client-transcode/api/event-channel-crudapiapi.ts +545 -0
- package/src/api-client-transcode/api/fast-channel-action-apiapi.ts +301 -0
- package/src/api-client-transcode/api/fast-channel-apiapi.ts +525 -0
- package/src/api-client-transcode/api/fast-channel-programs-api-api.ts +525 -0
- package/src/api-client-transcode/api/multi-channel-action-apiapi.ts +387 -0
- package/src/api-client-transcode/api/sigma-transcode-live-interactive-action-api.ts +152 -0
- package/src/api-client-transcode/api/single-channel-action-apiapi.ts +1155 -0
- package/src/api-client-transcode/api/transcode-templates-apiapi.ts +541 -0
- package/src/api-client-transcode/api.ts +32 -0
- package/src/api-client-transcode/base.ts +71 -0
- package/src/api-client-transcode/common.ts +138 -0
- package/src/api-client-transcode/configuration.ts +101 -0
- package/src/api-client-transcode/git_push.sh +57 -0
- package/src/api-client-transcode/index.ts +18 -0
- package/src/api-client-transcode/models/ads-dto.ts +137 -0
- package/src/api-client-transcode/models/alert-log-collection.ts +55 -0
- package/src/api-client-transcode/models/audio-watermark-dto.ts +59 -0
- package/src/api-client-transcode/models/blackout-slate-dto.ts +36 -0
- package/src/api-client-transcode/models/catchup-dto.ts +43 -0
- package/src/api-client-transcode/models/channel-collection.ts +55 -0
- package/src/api-client-transcode/models/channel-config-advance-dto-info.ts +25 -0
- package/src/api-client-transcode/models/channel-config-advance-dto.ts +121 -0
- package/src/api-client-transcode/models/channel-config-advance-info-dto.ts +78 -0
- package/src/api-client-transcode/models/channel-config-base.ts +69 -0
- package/src/api-client-transcode/models/channel-config-blackout-entity.ts +36 -0
- package/src/api-client-transcode/models/channel-config-dto.ts +72 -0
- package/src/api-client-transcode/models/channel-config-interactive-entity.ts +30 -0
- package/src/api-client-transcode/models/channel-config-template-dto.ts +66 -0
- package/src/api-client-transcode/models/channel-detail-catchup-dto.ts +37 -0
- package/src/api-client-transcode/models/channel-detail-dto.ts +69 -0
- package/src/api-client-transcode/models/channel-detail-input.ts +43 -0
- package/src/api-client-transcode/models/channel-detail-package.ts +50 -0
- package/src/api-client-transcode/models/channel-detail-transcode.ts +37 -0
- package/src/api-client-transcode/models/channel-job-detail.ts +84 -0
- package/src/api-client-transcode/models/channel-stats.ts +36 -0
- package/src/api-client-transcode/models/channel-template-data-dto.ts +59 -0
- package/src/api-client-transcode/models/channel-template-dto-data.ts +28 -0
- package/src/api-client-transcode/models/channel-template-dto.ts +63 -0
- package/src/api-client-transcode/models/channel.ts +168 -0
- package/src/api-client-transcode/models/create-alert-log-dto.ts +138 -0
- package/src/api-client-transcode/models/create-channel-dto.ts +84 -0
- package/src/api-client-transcode/models/create-drm-credential-dto.ts +63 -0
- package/src/api-client-transcode/models/create-event-channel-dto-targets.ts +26 -0
- package/src/api-client-transcode/models/create-event-channel-dto.ts +76 -0
- package/src/api-client-transcode/models/create-fast-channel-dto.ts +42 -0
- package/src/api-client-transcode/models/create-fast-program-dto.ts +72 -0
- package/src/api-client-transcode/models/drm-credential-collection.ts +55 -0
- package/src/api-client-transcode/models/drm-credential-entity.ts +87 -0
- package/src/api-client-transcode/models/drm-data-dto.ts +54 -0
- package/src/api-client-transcode/models/drm-data-entity.ts +54 -0
- package/src/api-client-transcode/models/drm-dto.ts +103 -0
- package/src/api-client-transcode/models/event-channel-collection.ts +55 -0
- package/src/api-client-transcode/models/event-channel-config-dto.ts +78 -0
- package/src/api-client-transcode/models/event-channel-config-entity.ts +75 -0
- package/src/api-client-transcode/models/event-channel-input-dto.ts +45 -0
- package/src/api-client-transcode/models/event-channel-input-entity.ts +45 -0
- package/src/api-client-transcode/models/event-channel-transcoder-dto.ts +56 -0
- package/src/api-client-transcode/models/event-channel.ts +147 -0
- package/src/api-client-transcode/models/event-profile-dto.ts +62 -0
- package/src/api-client-transcode/models/event-target-data-dto.ts +95 -0
- package/src/api-client-transcode/models/event-target-dto.ts +49 -0
- package/src/api-client-transcode/models/fast-channel-collection.ts +55 -0
- package/src/api-client-transcode/models/fast-channel.ts +75 -0
- package/src/api-client-transcode/models/fast-program-collection.ts +55 -0
- package/src/api-client-transcode/models/fast-program.ts +84 -0
- package/src/api-client-transcode/models/fingerprint-dto.ts +42 -0
- package/src/api-client-transcode/models/index.ts +104 -0
- package/src/api-client-transcode/models/input-collection.ts +55 -0
- package/src/api-client-transcode/models/input-data-dto.ts +104 -0
- package/src/api-client-transcode/models/input-data-item-dto.ts +42 -0
- package/src/api-client-transcode/models/input-dto.ts +30 -0
- package/src/api-client-transcode/models/input-entity.ts +30 -0
- package/src/api-client-transcode/models/input-info-response.ts +31 -0
- package/src/api-client-transcode/models/input-info.ts +123 -0
- package/src/api-client-transcode/models/input-machine-config.ts +45 -0
- package/src/api-client-transcode/models/input-program.ts +66 -0
- package/src/api-client-transcode/models/interactive-dto.ts +30 -0
- package/src/api-client-transcode/models/interactive-publish-dto.ts +30 -0
- package/src/api-client-transcode/models/job-entity.ts +102 -0
- package/src/api-client-transcode/models/low-latency-dto.ts +68 -0
- package/src/api-client-transcode/models/machine-config-dto.ts +75 -0
- package/src/api-client-transcode/models/main-input-dto.ts +62 -0
- package/src/api-client-transcode/models/main-input-entity.ts +54 -0
- package/src/api-client-transcode/models/maintenance-dto.ts +30 -0
- package/src/api-client-transcode/models/manifest-dto.ts +62 -0
- package/src/api-client-transcode/models/package-input-collection.ts +55 -0
- package/src/api-client-transcode/models/package-input-data-dto.ts +99 -0
- package/src/api-client-transcode/models/package-input-list.ts +36 -0
- package/src/api-client-transcode/models/package-input.ts +115 -0
- package/src/api-client-transcode/models/post-input-dto.ts +48 -0
- package/src/api-client-transcode/models/post-input-entity.ts +48 -0
- package/src/api-client-transcode/models/pre-input-dto.ts +54 -0
- package/src/api-client-transcode/models/pre-input-entity.ts +54 -0
- package/src/api-client-transcode/models/preset-dto.ts +247 -0
- package/src/api-client-transcode/models/profile-default-response-dto.ts +30 -0
- package/src/api-client-transcode/models/profile-dto.ts +62 -0
- package/src/api-client-transcode/models/profile-entity.ts +60 -0
- package/src/api-client-transcode/models/scte35-dto.ts +36 -0
- package/src/api-client-transcode/models/start-over-dto.ts +30 -0
- package/src/api-client-transcode/models/switch-input-dto.ts +56 -0
- package/src/api-client-transcode/models/switch-input-entity.ts +44 -0
- package/src/api-client-transcode/models/target-data-dto.ts +101 -0
- package/src/api-client-transcode/models/target-dto.ts +44 -0
- package/src/api-client-transcode/models/target-entity.ts +55 -0
- package/src/api-client-transcode/models/target-profile-dto.ts +71 -0
- package/src/api-client-transcode/models/target-profile.ts +71 -0
- package/src/api-client-transcode/models/target-template-dto.ts +44 -0
- package/src/api-client-transcode/models/target-update-dto.ts +50 -0
- package/src/api-client-transcode/models/transcode-input.ts +144 -0
- package/src/api-client-transcode/models/transcoder.ts +36 -0
- package/src/api-client-transcode/models/trick-play-dto.ts +54 -0
- package/src/api-client-transcode/models/update-channel-dto-targets.ts +27 -0
- package/src/api-client-transcode/models/update-channel-dto.ts +84 -0
- package/src/api-client-transcode/models/update-drm-management-dto.ts +63 -0
- package/src/api-client-transcode/models/update-event-channel-dto.ts +76 -0
- package/src/api-client-transcode/models/update-fast-channel-dto.ts +42 -0
- package/src/api-client-transcode/models/update-fast-program-dto.ts +30 -0
- package/src/api-client-transcode/models/watermark-dto.ts +66 -0
- package/src/api-client-transcode/models/watermark-entity.ts +102 -0
- package/src/app/spa-loading-template.html +127 -0
- package/src/app.config.ts +2 -0
- package/src/assets/global.css.ts +3 -0
- package/src/assets/scss/element/dark.scss +13 -0
- package/src/assets/scss/element/index.scss +26 -0
- package/src/assets/scss/index.scss +181 -0
- package/src/components/AdvancedFilter/SSAdvancedFilterItem.vue +180 -0
- package/src/components/AdvancedFilter/SSAdvancedFilterItemCustom.vue +165 -0
- package/src/components/AdvancedFilter/SSAdvancedFilterItemDefined.vue +298 -0
- package/src/components/AdvancedFilter/SSAdvancedFilterItemSchedule.vue +293 -0
- package/src/components/AdvancedFilter/SSAdvancedFilterMain.vue +196 -0
- package/src/components/AdvancedFilter/types.ts +37 -0
- package/src/components/AdvancedFilterReport/SSAdvancedFilterReportItem.vue +110 -0
- package/src/components/AdvancedFilterReport/SSAdvancedFilterReportItemDefined.vue +159 -0
- package/src/components/AdvancedFilterReport/SSAdvancedFilterReportMain.vue +197 -0
- package/src/components/AdvancedFilterReport/types.ts +19 -0
- package/src/components/AdvancedFilterSsai/SSAdvancedFilterSsaiItem.vue +102 -0
- package/src/components/AdvancedFilterSsai/SSAdvancedFilterSsaiItemDefined.vue +119 -0
- package/src/components/AdvancedFilterSsai/SSAdvancedFilterSsaiMain.vue +194 -0
- package/src/components/AdvancedFilterSsai/types.ts +19 -0
- package/src/components/Asset/AssetAddPlaylist.vue +169 -0
- package/src/components/Asset/AssetExtra.vue +46 -0
- package/src/components/Asset/AssetImportLinks.vue +281 -0
- package/src/components/Asset/AssetInfiniteSelect.vue +62 -0
- package/src/components/Asset/AssetItem.vue +194 -0
- package/src/components/Asset/AssetItemPreview.vue +117 -0
- package/src/components/Asset/AssetList.vue +869 -0
- package/src/components/Asset/AssetMeta.vue +97 -0
- package/src/components/Asset/AssetPicker.vue +204 -0
- package/src/components/Asset/AssetPlaylist.vue +414 -0
- package/src/components/Asset/AssetPlaylistInfiniteSelect.vue +136 -0
- package/src/components/Asset/AssetPlaylistModalAdd.vue +138 -0
- package/src/components/Asset/AssetPreview.vue +89 -0
- package/src/components/Asset/AssetShareModal.vue +131 -0
- package/src/components/Asset/AssetTable.vue +365 -0
- package/src/components/Asset/FormUploadAsset.vue +647 -0
- package/src/components/Asset/FormUploadAssetItem.vue +115 -0
- package/src/components/Asset/FormUploadAssetProgress.vue +161 -0
- package/src/components/Asset/Scrubber.vue +57 -0
- package/src/components/Asset/VideoPlayer.vue +226 -0
- package/src/components/Asset/VideoPreview.vue +102 -0
- package/src/components/Asset/VideoPreviewConfig.vue +329 -0
- package/src/components/Asset/VideoPreviewConfigMessage.vue +120 -0
- package/src/components/Asset/VideoPreviewConfigVod.vue +287 -0
- package/src/components/Asset/VideoPreviewNew.vue +66 -0
- package/src/components/Asset/VideoPreviewNewLoader.vue +144 -0
- package/src/components/Asset/VideoPreviewWrapper.vue +208 -0
- package/src/components/Asset/asset-context.ts +24 -0
- package/src/components/Asset/usePickerStore.ts +55 -0
- package/src/components/AuthLayout/AuthLayoutSimple.vue +150 -0
- package/src/components/AuthLayout/index.vue +151 -0
- package/src/components/AutoRefresh/AutoRefresh.vue +91 -0
- package/src/components/AutoRefresh/AutoRefreshOld.vue +87 -0
- package/src/components/AutoRefresh/useRefresh.ts +93 -0
- package/src/components/BackButton.vue +13 -0
- package/src/components/Card/CardInfo.vue +21 -0
- package/src/components/Channel/AIConfig.vue +101 -0
- package/src/components/Channel/AdvancedForm.vue +542 -0
- package/src/components/Channel/ChannelListGrid.vue +154 -0
- package/src/components/Channel/ConfigBlackout.vue +98 -0
- package/src/components/Channel/ConfigCensorship.vue +387 -0
- package/src/components/Channel/ConfigForensicWatermark.vue +152 -0
- package/src/components/Channel/ConfigForm.vue +102 -0
- package/src/components/Channel/ConfigInformation.vue +191 -0
- package/src/components/Channel/ConfigInteraction.vue +11 -0
- package/src/components/Channel/ConfigNameModifier.vue +15 -0
- package/src/components/Channel/ConfigOptionItem.vue +114 -0
- package/src/components/Channel/ConfigOptions.vue +181 -0
- package/src/components/Channel/ConfigPte.vue +368 -0
- package/src/components/Channel/ConfigScte.vue +442 -0
- package/src/components/Channel/ConfigTranscoder.vue +353 -0
- package/src/components/Channel/ConfigWaterMarkAudio.vue +52 -0
- package/src/components/Channel/ConfigWatermark.vue +76 -0
- package/src/components/Channel/ConfigWatermarkEventChannel.vue +86 -0
- package/src/components/Channel/ConfigWatermarkItem.vue +239 -0
- package/src/components/Channel/HeaderItem.vue +75 -0
- package/src/components/Channel/InputDetail.vue +68 -0
- package/src/components/Channel/InputForm.vue +175 -0
- package/src/components/Channel/InputList.vue +38 -0
- package/src/components/Channel/InputPackageDetail.vue +125 -0
- package/src/components/Channel/MediaProfileFormModal.vue +79 -0
- package/src/components/Channel/MediaProfileModify.vue +229 -0
- package/src/components/Channel/MessageButtonGetHelp.vue +30 -0
- package/src/components/Channel/MessageTooltipAi.vue +29 -0
- package/src/components/Channel/MultipleSelectProfile.vue +312 -0
- package/src/components/Channel/PackageInputItem.vue +13 -0
- package/src/components/Channel/PresetConfigItem.vue +1957 -0
- package/src/components/Channel/PresetConfigItemExtra.vue +59 -0
- package/src/components/Channel/PresetConfigItemPId.vue +145 -0
- package/src/components/Channel/ProfileConfigItem.vue +829 -0
- package/src/components/Channel/ProfileDetailsList.vue +160 -0
- package/src/components/Channel/ProfileForm.vue +134 -0
- package/src/components/Channel/ProfileList.vue +228 -0
- package/src/components/Channel/SelectServer.vue +134 -0
- package/src/components/Channel/SignalLoss.vue +92 -0
- package/src/components/Channel/SwitchInputButton.vue +38 -0
- package/src/components/Channel/TargetCatchup.vue +75 -0
- package/src/components/Channel/TargetDataInfo.vue +100 -0
- package/src/components/Channel/TargetDestination.vue +375 -0
- package/src/components/Channel/TargetDrm.vue +518 -0
- package/src/components/Channel/TargetForm.vue +136 -0
- package/src/components/Channel/TargetList.vue +159 -0
- package/src/components/Channel/TargetLowLatency.vue +107 -0
- package/src/components/Channel/TargetMabrOutput.vue +58 -0
- package/src/components/Channel/TargetMabrOutputItem.vue +91 -0
- package/src/components/Channel/TargetManifest.vue +94 -0
- package/src/components/Channel/TargetNetworkInterface.vue +95 -0
- package/src/components/Channel/TargetOutputMultiplex.vue +237 -0
- package/src/components/Channel/TargetOutputType.vue +201 -0
- package/src/components/Channel/TargetOutputUdp.vue +200 -0
- package/src/components/Channel/TargetPreset.vue +541 -0
- package/src/components/Channel/TargetProfileAudioGroup.vue +27 -0
- package/src/components/Channel/TargetProfileProgram.vue +43 -0
- package/src/components/Channel/TargetProfileURI.vue +68 -0
- package/src/components/Channel/TargetSrtOutput.vue +35 -0
- package/src/components/Channel/TargetSrtOutputItem.vue +83 -0
- package/src/components/Channel/TargetStartover.vue +40 -0
- package/src/components/Channel/WarningName.vue +39 -0
- package/src/components/Channel/WarningOutput.vue +40 -0
- package/src/components/CollapseTagsTooltip/CollapseTagsTooltip.vue +87 -0
- package/src/components/CollapseTagsTooltip/index.ts +1 -0
- package/src/components/CopyButton.vue +46 -0
- package/src/components/CopyText.vue +40 -0
- package/src/components/CopyTextButton.vue +40 -0
- package/src/components/DefaultLayout/DefaultLayout.vue +134 -0
- package/src/components/DefaultLayout/GlobalASide.vue +75 -0
- package/src/components/DefaultLayout/GlobalFooter.vue +15 -0
- package/src/components/DefaultLayout/GlobalHeader.vue +43 -0
- package/src/components/DefaultLayout/Logo.vue +35 -0
- package/src/components/DefaultLayout/Menu.vue +464 -0
- package/src/components/DefaultLayout/RightMenu.vue +93 -0
- package/src/components/DialogWarningAddLicense.vue +37 -0
- package/src/components/Epg/Epg.vue +24 -0
- package/src/components/Epg/components/Channel.vue +28 -0
- package/src/components/Epg/components/Channels.vue +33 -0
- package/src/components/Epg/components/Layout.vue +121 -0
- package/src/components/Epg/components/Line.vue +41 -0
- package/src/components/Epg/components/Loader.vue +23 -0
- package/src/components/Epg/components/Program.vue +101 -0
- package/src/components/Epg/components/SideBar.vue +18 -0
- package/src/components/Epg/components/Timeline.vue +72 -0
- package/src/components/Epg/helpers/common.ts +68 -0
- package/src/components/Epg/helpers/epg.ts +192 -0
- package/src/components/Epg/helpers/index.ts +5 -0
- package/src/components/Epg/helpers/interfaces.ts +54 -0
- package/src/components/Epg/helpers/time.ts +51 -0
- package/src/components/Epg/helpers/types.ts +26 -0
- package/src/components/Epg/helpers/variables.ts +33 -0
- package/src/components/Epg/hooks/index.ts +2 -0
- package/src/components/Epg/hooks/useEpg.ts +160 -0
- package/src/components/Epg/hooks/useLayout.ts +187 -0
- package/src/components/Epg/hooks/useProgram.ts +63 -0
- package/src/components/Epg/hooks/useTimeline.ts +35 -0
- package/src/components/Epg/index.ts +4 -0
- package/src/components/Epg/store.ts +85 -0
- package/src/components/Epg/theme.ts +44 -0
- package/src/components/Exception/403.png +0 -0
- package/src/components/Exception/403.vue +58 -0
- package/src/components/Exception/404.png +0 -0
- package/src/components/Exception/404.vue +59 -0
- package/src/components/Exception/500.png +0 -0
- package/src/components/Exception/500.vue +39 -0
- package/src/components/Exception/index.scss +30 -0
- package/src/components/Field.vue +193 -0
- package/src/components/FilterQuerySchema/FilterQuerySchemaForm.vue +200 -0
- package/src/components/FilterQuerySchema/QueryTag.vue +109 -0
- package/src/components/FilterQuerySchema/Tag.vue +68 -0
- package/src/components/FilterTimeDimensions.vue +265 -0
- package/src/components/FilterTimeDimensionsSingle.vue +214 -0
- package/src/components/HelpPanel.vue +87 -0
- package/src/components/HexagonPro.vue +7 -0
- package/src/components/IconCopyButton.vue +43 -0
- package/src/components/InformationLabel.vue +67 -0
- package/src/components/Input/InputTags.vue +136 -0
- package/src/components/Input/index.ts +1 -0
- package/src/components/MainDefaultLayout/index.vue +120 -0
- package/src/components/NoticeAddLicense.vue +20 -0
- package/src/components/NoticeRunningOutResources.vue +20 -0
- package/src/components/Pagination.vue +61 -0
- package/src/components/QueryBuilder/QueryBuilder.vue +141 -0
- package/src/components/QueryBuilder/components/inputs/DateInputField.vue +105 -0
- package/src/components/QueryBuilder/components/inputs/FieldSelect.vue +44 -0
- package/src/components/QueryBuilder/components/inputs/InputMultiSelect.vue +60 -0
- package/src/components/QueryBuilder/components/inputs/InputSelect.vue +39 -0
- package/src/components/QueryBuilder/components/inputs/NumberInputField.vue +91 -0
- package/src/components/QueryBuilder/components/inputs/OperatorSelect.vue +59 -0
- package/src/components/QueryBuilder/components/inputs/TextInput.vue +40 -0
- package/src/components/QueryBuilder/components/inputs/TimeInputField.vue +114 -0
- package/src/components/QueryBuilder/components/inputs/logics.ts +27 -0
- package/src/components/QueryBuilder/components/item/InputMultiOptions.vue +56 -0
- package/src/components/QueryBuilder/components/item/QueryGroup.vue +71 -0
- package/src/components/QueryBuilder/components/item/QueryGroupActions.vue +76 -0
- package/src/components/QueryBuilder/components/item/QueryRule.vue +233 -0
- package/src/components/QueryBuilder/useConfigStore.ts +27 -0
- package/src/components/QueryBuilder/utils/config.ts +194 -0
- package/src/components/QueryBuilder/utils/index.ts +3 -0
- package/src/components/QueryBuilder/utils/mongodb.ts +175 -0
- package/src/components/QueryBuilder/utils/rules.ts +213 -0
- package/src/components/RecommendedConfigurationPTE.vue +238 -0
- package/src/components/Server/MachineConfig.vue +333 -0
- package/src/components/Server/ServerConfig.vue +599 -0
- package/src/components/Server/useQueryMachine.ts +380 -0
- package/src/components/Server/validator.ts +13 -0
- package/src/components/SwitchDark.vue +19 -0
- package/src/components/SwitchLang.vue +31 -0
- package/src/components/TableEmpty.vue +50 -0
- package/src/components/Toast/ToastNoti.vue +52 -0
- package/src/components/Tool/ForensicWatermarkingDialog.vue +39 -0
- package/src/components/Tool/FormRecord.vue +162 -0
- package/src/components/Tool/FormUpload.vue +118 -0
- package/src/components/Tool/ResultChecking.vue +103 -0
- package/src/components/Tool/Watermarking.vue +159 -0
- package/src/components/Tool/record.js +92 -0
- package/src/components/Tooltip/Ellipsis.vue +52 -0
- package/src/components/Tooltip/index.vue +47 -0
- package/src/components/app/AppList.vue +50 -0
- package/src/components/button/Button.vue +27 -0
- package/src/components/button/index.ts +37 -0
- package/src/components/context-menu/ContextMenu.vue +15 -0
- package/src/components/context-menu/ContextMenuCheckboxItem.vue +39 -0
- package/src/components/context-menu/ContextMenuContent.vue +35 -0
- package/src/components/context-menu/ContextMenuGroup.vue +11 -0
- package/src/components/context-menu/ContextMenuItem.vue +33 -0
- package/src/components/context-menu/ContextMenuLabel.vue +24 -0
- package/src/components/context-menu/ContextMenuPortal.vue +11 -0
- package/src/components/context-menu/ContextMenuRadioGroup.vue +19 -0
- package/src/components/context-menu/ContextMenuRadioItem.vue +39 -0
- package/src/components/context-menu/ContextMenuSeparator.vue +19 -0
- package/src/components/context-menu/ContextMenuShortcut.vue +13 -0
- package/src/components/context-menu/ContextMenuSub.vue +19 -0
- package/src/components/context-menu/ContextMenuSubContent.vue +34 -0
- package/src/components/context-menu/ContextMenuSubTrigger.vue +33 -0
- package/src/components/context-menu/ContextMenuTrigger.vue +13 -0
- package/src/components/context-menu/index.ts +14 -0
- package/src/components/dashboard/SSDashboardChartRoot.vue +18 -0
- package/src/components/dashboard/SSDashboardDocument.vue +45 -0
- package/src/components/dashboard/SSDashboardEmpty.vue +16 -0
- package/src/components/dashboard/SSDashboardGuideline.vue +45 -0
- package/src/components/dashboard/SSDashboardInfo.vue +36 -0
- package/src/components/dashboard/SSDashboardInfoRoot.vue +9 -0
- package/src/components/dashboard/SSDashboardInfoTime.vue +38 -0
- package/src/components/markdown/Markdown.vue +295 -0
- package/src/components/tabs/Tabs.vue +15 -0
- package/src/components/tabs/TabsContent.vue +22 -0
- package/src/components/tabs/TabsList.vue +22 -0
- package/src/components/tabs/TabsTrigger.vue +26 -0
- package/src/composables/asset.ts +13 -0
- package/src/composables/channel.ts +333 -0
- package/src/composables/country.ts +788 -0
- package/src/composables/error.ts +24 -0
- package/src/composables/form.ts +351 -0
- package/src/composables/getBuildTime.ts +7 -0
- package/src/composables/micro.ts +113 -0
- package/src/composables/microState.ts +22 -0
- package/src/composables/notiGlobal.ts +19 -0
- package/src/composables/plan.ts +162 -0
- package/src/composables/refReset.ts +12 -0
- package/src/composables/resetInfiniteQueryPagination.ts +18 -0
- package/src/composables/route.ts +19 -0
- package/src/composables/toast.ts +21 -0
- package/src/composables/useApp.ts +6 -0
- package/src/composables/useAsyncSchema.ts +58 -0
- package/src/composables/useChannelActions.ts +151 -0
- package/src/composables/useComplexSearchParam.ts +293 -0
- package/src/composables/useFilterSchema.ts +106 -0
- package/src/composables/useGetInputDetail.ts +36 -0
- package/src/composables/useGetServerAddLicense.ts +21 -0
- package/src/composables/useJobPreview.ts +438 -0
- package/src/composables/useLayoutStore.ts +106 -0
- package/src/composables/usePermission.ts +5 -0
- package/src/composables/usePickerStore.ts +53 -0
- package/src/composables/useQueryAssets.ts +56 -0
- package/src/composables/useQueryParams.ts +20 -0
- package/src/composables/useRouteParams.ts +36 -0
- package/src/composables/useRouteQueries.ts +54 -0
- package/src/composables/useRouterHistory.ts +76 -0
- package/src/composables/useSearchQuery.ts +27 -0
- package/src/composables/useTooltipEllipsis.ts +12 -0
- package/src/constants/env.ts +11 -0
- package/src/constants/filterable.ts +32 -0
- package/src/constants/languageCode.ts +185 -0
- package/src/constants/micro.ts +1 -0
- package/src/constants/queryKeys.ts +11 -0
- package/src/constants/regex.ts +8 -0
- package/src/constants/storage.ts +41 -0
- package/src/enums/index.ts +24 -0
- package/src/layouts/empty.vue +7 -0
- package/src/modules/api-party/kit.ts +30 -0
- package/src/modules/api-party/module.ts +259 -0
- package/src/modules/api-party/openapi.ts +74 -0
- package/src/modules/api-party/runtime/composables/$api.ts +157 -0
- package/src/modules/api-party/runtime/composables/useApiData.ts +229 -0
- package/src/modules/api-party/runtime/constants.ts +1 -0
- package/src/modules/api-party/runtime/formData.ts +85 -0
- package/src/modules/api-party/runtime/server/$api.ts +29 -0
- package/src/modules/api-party/runtime/server/handler.ts +92 -0
- package/src/modules/api-party/runtime/types.ts +97 -0
- package/src/modules/api-party/runtime/utils.ts +43 -0
- package/src/pages/403.vue +11 -0
- package/src/pages/500.vue +11 -0
- package/src/pages/[...all].vue +11 -0
- package/src/pages/login.vue +67 -0
- package/src/plugins/auth.ts +10 -0
- package/src/plugins/build-time.ts +5 -0
- package/src/plugins/dayjs.ts +14 -0
- package/src/plugins/i18n.ts +6 -0
- package/src/plugins/router.ts +6 -0
- package/src/plugins/vue-json-pretty.ts +5 -0
- package/src/plugins/vue-query.ts +41 -0
- package/src/plugins/wujie.ts +19 -0
- package/src/public/apple-touch-icon.png +0 -0
- package/src/public/audio-recorder.js +31 -0
- package/src/public/build-time.json +1 -0
- package/src/public/favicon.ico +0 -0
- package/src/public/icon-block-free-app.png +0 -0
- package/src/public/maskable-icon.png +0 -0
- package/src/public/nuxt.svg +3 -0
- package/src/public/preview/step-1.png +0 -0
- package/src/public/preview/step-2.png +0 -0
- package/src/public/preview/step-3.png +0 -0
- package/src/public/pwa-192x192.png +0 -0
- package/src/public/pwa-512x512.png +0 -0
- package/src/public/robots.txt +2 -0
- package/src/public/vite.png +0 -0
- package/src/pwa/config.ts +61 -0
- package/src/pwa/index.ts +194 -0
- package/src/pwa/runtime/VitePwaManifest.ts +33 -0
- package/src/pwa/types.ts +56 -0
- package/src/pwa/utils.ts +16 -0
- package/src/schemas/authServiceApi.json +6709 -0
- package/src/schemas/billingApi.json +1083 -0
- package/src/schemas/chatApi.json +497 -0
- package/src/schemas/libraryApi.json +2009 -0
- package/src/schemas/licenseApi.json +772 -0
- package/src/schemas/livestreamApi.json +3354 -0
- package/src/schemas/lrmApi.json +2848 -0
- package/src/schemas/machineApi.json +4604 -0
- package/src/schemas/metricApi.json +141 -0
- package/src/schemas/notificationApi.json +1 -0
- package/src/schemas/playoutApi.json +8315 -0
- package/src/schemas/ssaiApi.json +1108 -0
- package/src/schemas/transcodeApi.json +9670 -0
- package/src/schemas/vastControlApi.json +961 -0
- package/src/schemas/vodApi.json +3974 -0
- package/src/server/plugins/loading.css +111 -0
- package/src/server/plugins/loading.html +12 -0
- package/src/server/plugins/loading.ts +134 -0
- package/src/templates/pwa.client.ts +136 -0
- package/src/utils/$apiOptions.ts +79 -0
- package/src/utils/app.ts +23 -0
- package/src/utils/cn.ts +3 -0
- package/src/utils/format.ts +88 -0
- package/src/utils/gen-routes.ts +100 -0
- package/src/utils/helper.ts +56 -0
- package/src/utils/micro.ts +207 -0
- package/src/utils/popoverSelectAttrs.ts +24 -0
- package/src/utils/popup.ts +96 -0
- package/src/utils/pwa.ts +86 -0
- package/src/utils/query-filter.ts +111 -0
- package/src/utils/table.ts +35 -0
- package/src/utils/tryCatch.ts +25 -0
- package/src/utils/utils.ts +58 -0
- package/src/utils/validator.ts +185 -0
- package/src/utils/videojs.ts +490 -0
- package/src/utils/wujie.ts +1 -0
- package/tsconfig.json +3 -0
- package/uno.config.ts +375 -0
|
@@ -0,0 +1,1613 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* Sigma Auth Service
|
|
5
|
+
* Sigma Authentication Service Api
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 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, AxiosRequestConfig } 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 } from '../common';
|
|
22
|
+
// @ts-ignore
|
|
23
|
+
import { BASE_PATH, COLLECTION_FORMATS, RequestArgs, BaseAPI, RequiredError } from '../base';
|
|
24
|
+
// @ts-ignore
|
|
25
|
+
import { ApiGroupCollection } from '../models';
|
|
26
|
+
// @ts-ignore
|
|
27
|
+
import { App } from '../models';
|
|
28
|
+
// @ts-ignore
|
|
29
|
+
import { AppCollection } from '../models';
|
|
30
|
+
// @ts-ignore
|
|
31
|
+
import { CreateAppByUserDto } from '../models';
|
|
32
|
+
// @ts-ignore
|
|
33
|
+
import { FreeTrial } from '../models';
|
|
34
|
+
// @ts-ignore
|
|
35
|
+
import { GenerateAppId } from '../models';
|
|
36
|
+
// @ts-ignore
|
|
37
|
+
import { Member } from '../models';
|
|
38
|
+
// @ts-ignore
|
|
39
|
+
import { TrialRemainingDays } from '../models';
|
|
40
|
+
// @ts-ignore
|
|
41
|
+
import { UpdateAppByUserDto } from '../models';
|
|
42
|
+
// @ts-ignore
|
|
43
|
+
import { ValidateAppId } from '../models';
|
|
44
|
+
/**
|
|
45
|
+
* AppsApi - axios parameter creator
|
|
46
|
+
* @export
|
|
47
|
+
*/
|
|
48
|
+
export const AppsApiAxiosParamCreator = function (configuration?: Configuration) {
|
|
49
|
+
return {
|
|
50
|
+
/**
|
|
51
|
+
*
|
|
52
|
+
* @param {CreateAppByUserDto} createAppByUserDto
|
|
53
|
+
* @param {string} [authorization]
|
|
54
|
+
* @param {*} [options] Override http request option.
|
|
55
|
+
* @throws {RequiredError}
|
|
56
|
+
*/
|
|
57
|
+
appsControllerCreate: async (createAppByUserDto: CreateAppByUserDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
58
|
+
// verify required parameter 'createAppByUserDto' is not null or undefined
|
|
59
|
+
assertParamExists('appsControllerCreate', 'createAppByUserDto', createAppByUserDto)
|
|
60
|
+
const localVarPath = `/auth-service/v1/apps`;
|
|
61
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
62
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
63
|
+
let baseOptions;
|
|
64
|
+
if (configuration) {
|
|
65
|
+
baseOptions = configuration.baseOptions;
|
|
66
|
+
}
|
|
67
|
+
|
|
68
|
+
const localVarRequestOptions = { method: 'POST', ...baseOptions, ...options};
|
|
69
|
+
const localVarHeaderParameter = {} as any;
|
|
70
|
+
const localVarQueryParameter = {} as any;
|
|
71
|
+
|
|
72
|
+
if (authorization != null) {
|
|
73
|
+
localVarHeaderParameter['Authorization'] = String(authorization);
|
|
74
|
+
}
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
79
|
+
|
|
80
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
81
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
82
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
83
|
+
localVarRequestOptions.data = serializeDataIfNeeded(createAppByUserDto, localVarRequestOptions, configuration)
|
|
84
|
+
|
|
85
|
+
return {
|
|
86
|
+
url: toPathString(localVarUrlObj),
|
|
87
|
+
options: localVarRequestOptions,
|
|
88
|
+
};
|
|
89
|
+
},
|
|
90
|
+
/**
|
|
91
|
+
*
|
|
92
|
+
* @param {string} id
|
|
93
|
+
* @param {string} [authorization]
|
|
94
|
+
* @param {*} [options] Override http request option.
|
|
95
|
+
* @throws {RequiredError}
|
|
96
|
+
*/
|
|
97
|
+
appsControllerFreeTrial: async (id: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
98
|
+
// verify required parameter 'id' is not null or undefined
|
|
99
|
+
assertParamExists('appsControllerFreeTrial', 'id', id)
|
|
100
|
+
const localVarPath = `/auth-service/v1/apps/{id}/free-trial`
|
|
101
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
102
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
103
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
104
|
+
let baseOptions;
|
|
105
|
+
if (configuration) {
|
|
106
|
+
baseOptions = configuration.baseOptions;
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options};
|
|
110
|
+
const localVarHeaderParameter = {} as any;
|
|
111
|
+
const localVarQueryParameter = {} as any;
|
|
112
|
+
|
|
113
|
+
if (authorization != null) {
|
|
114
|
+
localVarHeaderParameter['Authorization'] = String(authorization);
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
120
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
121
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
122
|
+
|
|
123
|
+
return {
|
|
124
|
+
url: toPathString(localVarUrlObj),
|
|
125
|
+
options: localVarRequestOptions,
|
|
126
|
+
};
|
|
127
|
+
},
|
|
128
|
+
/**
|
|
129
|
+
*
|
|
130
|
+
* @param {string} name
|
|
131
|
+
* @param {string} [authorization]
|
|
132
|
+
* @param {*} [options] Override http request option.
|
|
133
|
+
* @throws {RequiredError}
|
|
134
|
+
*/
|
|
135
|
+
appsControllerGenerateAppId: async (name: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
136
|
+
// verify required parameter 'name' is not null or undefined
|
|
137
|
+
assertParamExists('appsControllerGenerateAppId', 'name', name)
|
|
138
|
+
const localVarPath = `/auth-service/v1/apps/generate-appid`;
|
|
139
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
140
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
141
|
+
let baseOptions;
|
|
142
|
+
if (configuration) {
|
|
143
|
+
baseOptions = configuration.baseOptions;
|
|
144
|
+
}
|
|
145
|
+
|
|
146
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
147
|
+
const localVarHeaderParameter = {} as any;
|
|
148
|
+
const localVarQueryParameter = {} as any;
|
|
149
|
+
|
|
150
|
+
if (name !== undefined) {
|
|
151
|
+
localVarQueryParameter['name'] = name;
|
|
152
|
+
}
|
|
153
|
+
|
|
154
|
+
if (authorization != null) {
|
|
155
|
+
localVarHeaderParameter['Authorization'] = String(authorization);
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
|
|
159
|
+
|
|
160
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
161
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
162
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
163
|
+
|
|
164
|
+
return {
|
|
165
|
+
url: toPathString(localVarUrlObj),
|
|
166
|
+
options: localVarRequestOptions,
|
|
167
|
+
};
|
|
168
|
+
},
|
|
169
|
+
/**
|
|
170
|
+
*
|
|
171
|
+
* @param {string} id
|
|
172
|
+
* @param {string} [authorization]
|
|
173
|
+
* @param {*} [options] Override http request option.
|
|
174
|
+
* @throws {RequiredError}
|
|
175
|
+
*/
|
|
176
|
+
appsControllerGet: async (id: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
177
|
+
// verify required parameter 'id' is not null or undefined
|
|
178
|
+
assertParamExists('appsControllerGet', 'id', id)
|
|
179
|
+
const localVarPath = `/auth-service/v1/apps/{id}`
|
|
180
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
181
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
182
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
183
|
+
let baseOptions;
|
|
184
|
+
if (configuration) {
|
|
185
|
+
baseOptions = configuration.baseOptions;
|
|
186
|
+
}
|
|
187
|
+
|
|
188
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
189
|
+
const localVarHeaderParameter = {} as any;
|
|
190
|
+
const localVarQueryParameter = {} as any;
|
|
191
|
+
|
|
192
|
+
if (authorization != null) {
|
|
193
|
+
localVarHeaderParameter['Authorization'] = String(authorization);
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
199
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
200
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
201
|
+
|
|
202
|
+
return {
|
|
203
|
+
url: toPathString(localVarUrlObj),
|
|
204
|
+
options: localVarRequestOptions,
|
|
205
|
+
};
|
|
206
|
+
},
|
|
207
|
+
/**
|
|
208
|
+
*
|
|
209
|
+
* @param {number} [page]
|
|
210
|
+
* @param {number} [perPage]
|
|
211
|
+
* @param {string} [authorization]
|
|
212
|
+
* @param {*} [options] Override http request option.
|
|
213
|
+
* @throws {RequiredError}
|
|
214
|
+
*/
|
|
215
|
+
appsControllerGetAdminApiGroupByApp: async (page?: number, perPage?: number, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
216
|
+
const localVarPath = `/auth-service/v1/apps/admin-api-groups/detail`;
|
|
217
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
218
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
219
|
+
let baseOptions;
|
|
220
|
+
if (configuration) {
|
|
221
|
+
baseOptions = configuration.baseOptions;
|
|
222
|
+
}
|
|
223
|
+
|
|
224
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
225
|
+
const localVarHeaderParameter = {} as any;
|
|
226
|
+
const localVarQueryParameter = {} as any;
|
|
227
|
+
|
|
228
|
+
if (page !== undefined) {
|
|
229
|
+
localVarQueryParameter['page'] = page;
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
if (perPage !== undefined) {
|
|
233
|
+
localVarQueryParameter['perPage'] = perPage;
|
|
234
|
+
}
|
|
235
|
+
|
|
236
|
+
if (authorization != null) {
|
|
237
|
+
localVarHeaderParameter['Authorization'] = String(authorization);
|
|
238
|
+
}
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
|
|
242
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
243
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
244
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
245
|
+
|
|
246
|
+
return {
|
|
247
|
+
url: toPathString(localVarUrlObj),
|
|
248
|
+
options: localVarRequestOptions,
|
|
249
|
+
};
|
|
250
|
+
},
|
|
251
|
+
/**
|
|
252
|
+
*
|
|
253
|
+
* @param {number} [page]
|
|
254
|
+
* @param {number} [perPage]
|
|
255
|
+
* @param {string} [authorization]
|
|
256
|
+
* @param {*} [options] Override http request option.
|
|
257
|
+
* @throws {RequiredError}
|
|
258
|
+
*/
|
|
259
|
+
appsControllerGetApiGroupByApp: async (page?: number, perPage?: number, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
260
|
+
const localVarPath = `/auth-service/v1/apps/api-groups/detail`;
|
|
261
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
262
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
263
|
+
let baseOptions;
|
|
264
|
+
if (configuration) {
|
|
265
|
+
baseOptions = configuration.baseOptions;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
269
|
+
const localVarHeaderParameter = {} as any;
|
|
270
|
+
const localVarQueryParameter = {} as any;
|
|
271
|
+
|
|
272
|
+
if (page !== undefined) {
|
|
273
|
+
localVarQueryParameter['page'] = page;
|
|
274
|
+
}
|
|
275
|
+
|
|
276
|
+
if (perPage !== undefined) {
|
|
277
|
+
localVarQueryParameter['perPage'] = perPage;
|
|
278
|
+
}
|
|
279
|
+
|
|
280
|
+
if (authorization != null) {
|
|
281
|
+
localVarHeaderParameter['Authorization'] = String(authorization);
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
|
|
285
|
+
|
|
286
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
287
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
288
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
289
|
+
|
|
290
|
+
return {
|
|
291
|
+
url: toPathString(localVarUrlObj),
|
|
292
|
+
options: localVarRequestOptions,
|
|
293
|
+
};
|
|
294
|
+
},
|
|
295
|
+
/**
|
|
296
|
+
*
|
|
297
|
+
* @param {string} [sort] Use only allowed properties separated by semicolon; default is ascending created_at; prefix name with hyphen/minus sign to get descending order
|
|
298
|
+
* @param {string} [q] search conditions ($and, $or with all possible variations)
|
|
299
|
+
* @param {number} [page] pagination number
|
|
300
|
+
* @param {string} [customFields] CustomField via addField Mongoose
|
|
301
|
+
* @param {number} [perPage]
|
|
302
|
+
* @param {string} [fields] Nevertheless, you may choose that some fields would always be sent along with the requested fields, in the response payload. Like the id for example.
|
|
303
|
+
* @param {string} [populates] Nevertheless, you may choose that some fields would always be sent along with the requested fields, in the response payload. Like the id for example.
|
|
304
|
+
* @param {string} [authorization]
|
|
305
|
+
* @param {*} [options] Override http request option.
|
|
306
|
+
* @throws {RequiredError}
|
|
307
|
+
*/
|
|
308
|
+
appsControllerGetAppByAdmin: async (sort?: string, q?: string, page?: number, customFields?: string, perPage?: number, fields?: string, populates?: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
309
|
+
const localVarPath = `/auth-service/v1/apps/all-apps/by-admin`;
|
|
310
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
311
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
312
|
+
let baseOptions;
|
|
313
|
+
if (configuration) {
|
|
314
|
+
baseOptions = configuration.baseOptions;
|
|
315
|
+
}
|
|
316
|
+
|
|
317
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
318
|
+
const localVarHeaderParameter = {} as any;
|
|
319
|
+
const localVarQueryParameter = {} as any;
|
|
320
|
+
|
|
321
|
+
if (sort !== undefined) {
|
|
322
|
+
localVarQueryParameter['sort'] = sort;
|
|
323
|
+
}
|
|
324
|
+
|
|
325
|
+
if (q !== undefined) {
|
|
326
|
+
localVarQueryParameter['q'] = q;
|
|
327
|
+
}
|
|
328
|
+
|
|
329
|
+
if (page !== undefined) {
|
|
330
|
+
localVarQueryParameter['page'] = page;
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
if (customFields !== undefined) {
|
|
334
|
+
localVarQueryParameter['customFields'] = customFields;
|
|
335
|
+
}
|
|
336
|
+
|
|
337
|
+
if (perPage !== undefined) {
|
|
338
|
+
localVarQueryParameter['perPage'] = perPage;
|
|
339
|
+
}
|
|
340
|
+
|
|
341
|
+
if (fields !== undefined) {
|
|
342
|
+
localVarQueryParameter['fields'] = fields;
|
|
343
|
+
}
|
|
344
|
+
|
|
345
|
+
if (populates !== undefined) {
|
|
346
|
+
localVarQueryParameter['populates'] = populates;
|
|
347
|
+
}
|
|
348
|
+
|
|
349
|
+
if (authorization != null) {
|
|
350
|
+
localVarHeaderParameter['Authorization'] = String(authorization);
|
|
351
|
+
}
|
|
352
|
+
|
|
353
|
+
|
|
354
|
+
|
|
355
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
356
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
357
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
358
|
+
|
|
359
|
+
return {
|
|
360
|
+
url: toPathString(localVarUrlObj),
|
|
361
|
+
options: localVarRequestOptions,
|
|
362
|
+
};
|
|
363
|
+
},
|
|
364
|
+
/**
|
|
365
|
+
*
|
|
366
|
+
* @param {string} [sort] Use only allowed properties separated by semicolon; default is ascending created_at; prefix name with hyphen/minus sign to get descending order
|
|
367
|
+
* @param {string} [q] search conditions ($and, $or with all possible variations)
|
|
368
|
+
* @param {number} [page] pagination number
|
|
369
|
+
* @param {string} [customFields] CustomField via addField Mongoose
|
|
370
|
+
* @param {number} [perPage]
|
|
371
|
+
* @param {string} [fields] Nevertheless, you may choose that some fields would always be sent along with the requested fields, in the response payload. Like the id for example.
|
|
372
|
+
* @param {string} [populates] Nevertheless, you may choose that some fields would always be sent along with the requested fields, in the response payload. Like the id for example.
|
|
373
|
+
* @param {string} [authorization]
|
|
374
|
+
* @param {*} [options] Override http request option.
|
|
375
|
+
* @throws {RequiredError}
|
|
376
|
+
*/
|
|
377
|
+
appsControllerGetAppByUser: async (sort?: string, q?: string, page?: number, customFields?: string, perPage?: number, fields?: string, populates?: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
378
|
+
const localVarPath = `/auth-service/v1/apps`;
|
|
379
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
380
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
381
|
+
let baseOptions;
|
|
382
|
+
if (configuration) {
|
|
383
|
+
baseOptions = configuration.baseOptions;
|
|
384
|
+
}
|
|
385
|
+
|
|
386
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
387
|
+
const localVarHeaderParameter = {} as any;
|
|
388
|
+
const localVarQueryParameter = {} as any;
|
|
389
|
+
|
|
390
|
+
if (sort !== undefined) {
|
|
391
|
+
localVarQueryParameter['sort'] = sort;
|
|
392
|
+
}
|
|
393
|
+
|
|
394
|
+
if (q !== undefined) {
|
|
395
|
+
localVarQueryParameter['q'] = q;
|
|
396
|
+
}
|
|
397
|
+
|
|
398
|
+
if (page !== undefined) {
|
|
399
|
+
localVarQueryParameter['page'] = page;
|
|
400
|
+
}
|
|
401
|
+
|
|
402
|
+
if (customFields !== undefined) {
|
|
403
|
+
localVarQueryParameter['customFields'] = customFields;
|
|
404
|
+
}
|
|
405
|
+
|
|
406
|
+
if (perPage !== undefined) {
|
|
407
|
+
localVarQueryParameter['perPage'] = perPage;
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
if (fields !== undefined) {
|
|
411
|
+
localVarQueryParameter['fields'] = fields;
|
|
412
|
+
}
|
|
413
|
+
|
|
414
|
+
if (populates !== undefined) {
|
|
415
|
+
localVarQueryParameter['populates'] = populates;
|
|
416
|
+
}
|
|
417
|
+
|
|
418
|
+
if (authorization != null) {
|
|
419
|
+
localVarHeaderParameter['Authorization'] = String(authorization);
|
|
420
|
+
}
|
|
421
|
+
|
|
422
|
+
|
|
423
|
+
|
|
424
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
425
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
426
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
427
|
+
|
|
428
|
+
return {
|
|
429
|
+
url: toPathString(localVarUrlObj),
|
|
430
|
+
options: localVarRequestOptions,
|
|
431
|
+
};
|
|
432
|
+
},
|
|
433
|
+
/**
|
|
434
|
+
*
|
|
435
|
+
* @param {string} [authorization]
|
|
436
|
+
* @param {*} [options] Override http request option.
|
|
437
|
+
* @throws {RequiredError}
|
|
438
|
+
*/
|
|
439
|
+
appsControllerGetFreeTrialAppByUser: async (authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
440
|
+
const localVarPath = `/auth-service/v1/apps/free-trial/by-user`;
|
|
441
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
442
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
443
|
+
let baseOptions;
|
|
444
|
+
if (configuration) {
|
|
445
|
+
baseOptions = configuration.baseOptions;
|
|
446
|
+
}
|
|
447
|
+
|
|
448
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
449
|
+
const localVarHeaderParameter = {} as any;
|
|
450
|
+
const localVarQueryParameter = {} as any;
|
|
451
|
+
|
|
452
|
+
if (authorization != null) {
|
|
453
|
+
localVarHeaderParameter['Authorization'] = String(authorization);
|
|
454
|
+
}
|
|
455
|
+
|
|
456
|
+
|
|
457
|
+
|
|
458
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
459
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
460
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
461
|
+
|
|
462
|
+
return {
|
|
463
|
+
url: toPathString(localVarUrlObj),
|
|
464
|
+
options: localVarRequestOptions,
|
|
465
|
+
};
|
|
466
|
+
},
|
|
467
|
+
/**
|
|
468
|
+
*
|
|
469
|
+
* @param {string} id
|
|
470
|
+
* @param {string} [authorization]
|
|
471
|
+
* @param {*} [options] Override http request option.
|
|
472
|
+
* @throws {RequiredError}
|
|
473
|
+
*/
|
|
474
|
+
appsControllerGetRemainingFreeTrialDays: async (id: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
475
|
+
// verify required parameter 'id' is not null or undefined
|
|
476
|
+
assertParamExists('appsControllerGetRemainingFreeTrialDays', 'id', id)
|
|
477
|
+
const localVarPath = `/auth-service/v1/apps/{id}/get-remaining-free-trial`
|
|
478
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
479
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
480
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
481
|
+
let baseOptions;
|
|
482
|
+
if (configuration) {
|
|
483
|
+
baseOptions = configuration.baseOptions;
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
487
|
+
const localVarHeaderParameter = {} as any;
|
|
488
|
+
const localVarQueryParameter = {} as any;
|
|
489
|
+
|
|
490
|
+
if (authorization != null) {
|
|
491
|
+
localVarHeaderParameter['Authorization'] = String(authorization);
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
|
|
495
|
+
|
|
496
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
497
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
498
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
499
|
+
|
|
500
|
+
return {
|
|
501
|
+
url: toPathString(localVarUrlObj),
|
|
502
|
+
options: localVarRequestOptions,
|
|
503
|
+
};
|
|
504
|
+
},
|
|
505
|
+
/**
|
|
506
|
+
*
|
|
507
|
+
* @param {string} [authorization]
|
|
508
|
+
* @param {*} [options] Override http request option.
|
|
509
|
+
* @throws {RequiredError}
|
|
510
|
+
*/
|
|
511
|
+
appsControllerGetUserDetail: async (authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
512
|
+
const localVarPath = `/auth-service/v1/apps/user/detail`;
|
|
513
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
514
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
515
|
+
let baseOptions;
|
|
516
|
+
if (configuration) {
|
|
517
|
+
baseOptions = configuration.baseOptions;
|
|
518
|
+
}
|
|
519
|
+
|
|
520
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
521
|
+
const localVarHeaderParameter = {} as any;
|
|
522
|
+
const localVarQueryParameter = {} as any;
|
|
523
|
+
|
|
524
|
+
if (authorization != null) {
|
|
525
|
+
localVarHeaderParameter['Authorization'] = String(authorization);
|
|
526
|
+
}
|
|
527
|
+
|
|
528
|
+
|
|
529
|
+
|
|
530
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
531
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
532
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
533
|
+
|
|
534
|
+
return {
|
|
535
|
+
url: toPathString(localVarUrlObj),
|
|
536
|
+
options: localVarRequestOptions,
|
|
537
|
+
};
|
|
538
|
+
},
|
|
539
|
+
/**
|
|
540
|
+
*
|
|
541
|
+
* @param {string} id
|
|
542
|
+
* @param {string} [authorization]
|
|
543
|
+
* @param {*} [options] Override http request option.
|
|
544
|
+
* @throws {RequiredError}
|
|
545
|
+
*/
|
|
546
|
+
appsControllerResetApiKey: async (id: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
547
|
+
// verify required parameter 'id' is not null or undefined
|
|
548
|
+
assertParamExists('appsControllerResetApiKey', 'id', id)
|
|
549
|
+
const localVarPath = `/auth-service/v1/apps/{id}/reset-api-key`
|
|
550
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
551
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
552
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
553
|
+
let baseOptions;
|
|
554
|
+
if (configuration) {
|
|
555
|
+
baseOptions = configuration.baseOptions;
|
|
556
|
+
}
|
|
557
|
+
|
|
558
|
+
const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options};
|
|
559
|
+
const localVarHeaderParameter = {} as any;
|
|
560
|
+
const localVarQueryParameter = {} as any;
|
|
561
|
+
|
|
562
|
+
if (authorization != null) {
|
|
563
|
+
localVarHeaderParameter['Authorization'] = String(authorization);
|
|
564
|
+
}
|
|
565
|
+
|
|
566
|
+
|
|
567
|
+
|
|
568
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
569
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
570
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
571
|
+
|
|
572
|
+
return {
|
|
573
|
+
url: toPathString(localVarUrlObj),
|
|
574
|
+
options: localVarRequestOptions,
|
|
575
|
+
};
|
|
576
|
+
},
|
|
577
|
+
/**
|
|
578
|
+
*
|
|
579
|
+
* @param {string} id
|
|
580
|
+
* @param {UpdateAppByUserDto} updateAppByUserDto
|
|
581
|
+
* @param {string} [authorization]
|
|
582
|
+
* @param {*} [options] Override http request option.
|
|
583
|
+
* @throws {RequiredError}
|
|
584
|
+
*/
|
|
585
|
+
appsControllerUpdate: async (id: string, updateAppByUserDto: UpdateAppByUserDto, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
586
|
+
// verify required parameter 'id' is not null or undefined
|
|
587
|
+
assertParamExists('appsControllerUpdate', 'id', id)
|
|
588
|
+
// verify required parameter 'updateAppByUserDto' is not null or undefined
|
|
589
|
+
assertParamExists('appsControllerUpdate', 'updateAppByUserDto', updateAppByUserDto)
|
|
590
|
+
const localVarPath = `/auth-service/v1/apps/{id}`
|
|
591
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
592
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
593
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
594
|
+
let baseOptions;
|
|
595
|
+
if (configuration) {
|
|
596
|
+
baseOptions = configuration.baseOptions;
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options};
|
|
600
|
+
const localVarHeaderParameter = {} as any;
|
|
601
|
+
const localVarQueryParameter = {} as any;
|
|
602
|
+
|
|
603
|
+
if (authorization != null) {
|
|
604
|
+
localVarHeaderParameter['Authorization'] = String(authorization);
|
|
605
|
+
}
|
|
606
|
+
|
|
607
|
+
|
|
608
|
+
|
|
609
|
+
localVarHeaderParameter['Content-Type'] = 'application/json';
|
|
610
|
+
|
|
611
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
612
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
613
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
614
|
+
localVarRequestOptions.data = serializeDataIfNeeded(updateAppByUserDto, localVarRequestOptions, configuration)
|
|
615
|
+
|
|
616
|
+
return {
|
|
617
|
+
url: toPathString(localVarUrlObj),
|
|
618
|
+
options: localVarRequestOptions,
|
|
619
|
+
};
|
|
620
|
+
},
|
|
621
|
+
/**
|
|
622
|
+
*
|
|
623
|
+
* @param {string} id
|
|
624
|
+
* @param {string} [authorization]
|
|
625
|
+
* @param {*} [options] Override http request option.
|
|
626
|
+
* @throws {RequiredError}
|
|
627
|
+
*/
|
|
628
|
+
appsControllerUpgradeToFreeApp: async (id: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
629
|
+
// verify required parameter 'id' is not null or undefined
|
|
630
|
+
assertParamExists('appsControllerUpgradeToFreeApp', 'id', id)
|
|
631
|
+
const localVarPath = `/auth-service/v1/apps/{id}/upgrade-to-free-app`
|
|
632
|
+
.replace(`{${"id"}}`, encodeURIComponent(String(id)));
|
|
633
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
634
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
635
|
+
let baseOptions;
|
|
636
|
+
if (configuration) {
|
|
637
|
+
baseOptions = configuration.baseOptions;
|
|
638
|
+
}
|
|
639
|
+
|
|
640
|
+
const localVarRequestOptions = { method: 'PATCH', ...baseOptions, ...options};
|
|
641
|
+
const localVarHeaderParameter = {} as any;
|
|
642
|
+
const localVarQueryParameter = {} as any;
|
|
643
|
+
|
|
644
|
+
if (authorization != null) {
|
|
645
|
+
localVarHeaderParameter['Authorization'] = String(authorization);
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
|
|
649
|
+
|
|
650
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
651
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
652
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
653
|
+
|
|
654
|
+
return {
|
|
655
|
+
url: toPathString(localVarUrlObj),
|
|
656
|
+
options: localVarRequestOptions,
|
|
657
|
+
};
|
|
658
|
+
},
|
|
659
|
+
/**
|
|
660
|
+
*
|
|
661
|
+
* @param {string} appId
|
|
662
|
+
* @param {string} [authorization]
|
|
663
|
+
* @param {*} [options] Override http request option.
|
|
664
|
+
* @throws {RequiredError}
|
|
665
|
+
*/
|
|
666
|
+
appsControllerVerifyAppId: async (appId: string, authorization?: string, options: AxiosRequestConfig = {}): Promise<RequestArgs> => {
|
|
667
|
+
// verify required parameter 'appId' is not null or undefined
|
|
668
|
+
assertParamExists('appsControllerVerifyAppId', 'appId', appId)
|
|
669
|
+
const localVarPath = `/auth-service/v1/apps/validate-appid`;
|
|
670
|
+
// use dummy base URL string because the URL constructor only accepts absolute URLs.
|
|
671
|
+
const localVarUrlObj = new URL(localVarPath, DUMMY_BASE_URL);
|
|
672
|
+
let baseOptions;
|
|
673
|
+
if (configuration) {
|
|
674
|
+
baseOptions = configuration.baseOptions;
|
|
675
|
+
}
|
|
676
|
+
|
|
677
|
+
const localVarRequestOptions = { method: 'GET', ...baseOptions, ...options};
|
|
678
|
+
const localVarHeaderParameter = {} as any;
|
|
679
|
+
const localVarQueryParameter = {} as any;
|
|
680
|
+
|
|
681
|
+
if (appId !== undefined) {
|
|
682
|
+
localVarQueryParameter['appId'] = appId;
|
|
683
|
+
}
|
|
684
|
+
|
|
685
|
+
if (authorization != null) {
|
|
686
|
+
localVarHeaderParameter['Authorization'] = String(authorization);
|
|
687
|
+
}
|
|
688
|
+
|
|
689
|
+
|
|
690
|
+
|
|
691
|
+
setSearchParams(localVarUrlObj, localVarQueryParameter);
|
|
692
|
+
let headersFromBaseOptions = baseOptions && baseOptions.headers ? baseOptions.headers : {};
|
|
693
|
+
localVarRequestOptions.headers = {...localVarHeaderParameter, ...headersFromBaseOptions, ...options.headers};
|
|
694
|
+
|
|
695
|
+
return {
|
|
696
|
+
url: toPathString(localVarUrlObj),
|
|
697
|
+
options: localVarRequestOptions,
|
|
698
|
+
};
|
|
699
|
+
},
|
|
700
|
+
}
|
|
701
|
+
};
|
|
702
|
+
|
|
703
|
+
/**
|
|
704
|
+
* AppsApi - functional programming interface
|
|
705
|
+
* @export
|
|
706
|
+
*/
|
|
707
|
+
export const AppsApiFp = function(configuration?: Configuration) {
|
|
708
|
+
const localVarAxiosParamCreator = AppsApiAxiosParamCreator(configuration)
|
|
709
|
+
return {
|
|
710
|
+
/**
|
|
711
|
+
*
|
|
712
|
+
* @param {CreateAppByUserDto} createAppByUserDto
|
|
713
|
+
* @param {string} [authorization]
|
|
714
|
+
* @param {*} [options] Override http request option.
|
|
715
|
+
* @throws {RequiredError}
|
|
716
|
+
*/
|
|
717
|
+
async appsControllerCreate(createAppByUserDto: CreateAppByUserDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<App>> {
|
|
718
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.appsControllerCreate(createAppByUserDto, authorization, options);
|
|
719
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
720
|
+
},
|
|
721
|
+
/**
|
|
722
|
+
*
|
|
723
|
+
* @param {string} id
|
|
724
|
+
* @param {string} [authorization]
|
|
725
|
+
* @param {*} [options] Override http request option.
|
|
726
|
+
* @throws {RequiredError}
|
|
727
|
+
*/
|
|
728
|
+
async appsControllerFreeTrial(id: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<App>> {
|
|
729
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.appsControllerFreeTrial(id, authorization, options);
|
|
730
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
731
|
+
},
|
|
732
|
+
/**
|
|
733
|
+
*
|
|
734
|
+
* @param {string} name
|
|
735
|
+
* @param {string} [authorization]
|
|
736
|
+
* @param {*} [options] Override http request option.
|
|
737
|
+
* @throws {RequiredError}
|
|
738
|
+
*/
|
|
739
|
+
async appsControllerGenerateAppId(name: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<GenerateAppId>> {
|
|
740
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.appsControllerGenerateAppId(name, authorization, options);
|
|
741
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
742
|
+
},
|
|
743
|
+
/**
|
|
744
|
+
*
|
|
745
|
+
* @param {string} id
|
|
746
|
+
* @param {string} [authorization]
|
|
747
|
+
* @param {*} [options] Override http request option.
|
|
748
|
+
* @throws {RequiredError}
|
|
749
|
+
*/
|
|
750
|
+
async appsControllerGet(id: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<App>> {
|
|
751
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.appsControllerGet(id, authorization, options);
|
|
752
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
753
|
+
},
|
|
754
|
+
/**
|
|
755
|
+
*
|
|
756
|
+
* @param {number} [page]
|
|
757
|
+
* @param {number} [perPage]
|
|
758
|
+
* @param {string} [authorization]
|
|
759
|
+
* @param {*} [options] Override http request option.
|
|
760
|
+
* @throws {RequiredError}
|
|
761
|
+
*/
|
|
762
|
+
async appsControllerGetAdminApiGroupByApp(page?: number, perPage?: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApiGroupCollection>> {
|
|
763
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.appsControllerGetAdminApiGroupByApp(page, perPage, authorization, options);
|
|
764
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
765
|
+
},
|
|
766
|
+
/**
|
|
767
|
+
*
|
|
768
|
+
* @param {number} [page]
|
|
769
|
+
* @param {number} [perPage]
|
|
770
|
+
* @param {string} [authorization]
|
|
771
|
+
* @param {*} [options] Override http request option.
|
|
772
|
+
* @throws {RequiredError}
|
|
773
|
+
*/
|
|
774
|
+
async appsControllerGetApiGroupByApp(page?: number, perPage?: number, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ApiGroupCollection>> {
|
|
775
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.appsControllerGetApiGroupByApp(page, perPage, authorization, options);
|
|
776
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
777
|
+
},
|
|
778
|
+
/**
|
|
779
|
+
*
|
|
780
|
+
* @param {string} [sort] Use only allowed properties separated by semicolon; default is ascending created_at; prefix name with hyphen/minus sign to get descending order
|
|
781
|
+
* @param {string} [q] search conditions ($and, $or with all possible variations)
|
|
782
|
+
* @param {number} [page] pagination number
|
|
783
|
+
* @param {string} [customFields] CustomField via addField Mongoose
|
|
784
|
+
* @param {number} [perPage]
|
|
785
|
+
* @param {string} [fields] Nevertheless, you may choose that some fields would always be sent along with the requested fields, in the response payload. Like the id for example.
|
|
786
|
+
* @param {string} [populates] Nevertheless, you may choose that some fields would always be sent along with the requested fields, in the response payload. Like the id for example.
|
|
787
|
+
* @param {string} [authorization]
|
|
788
|
+
* @param {*} [options] Override http request option.
|
|
789
|
+
* @throws {RequiredError}
|
|
790
|
+
*/
|
|
791
|
+
async appsControllerGetAppByAdmin(sort?: string, q?: string, page?: number, customFields?: string, perPage?: number, fields?: string, populates?: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppCollection>> {
|
|
792
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.appsControllerGetAppByAdmin(sort, q, page, customFields, perPage, fields, populates, authorization, options);
|
|
793
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
794
|
+
},
|
|
795
|
+
/**
|
|
796
|
+
*
|
|
797
|
+
* @param {string} [sort] Use only allowed properties separated by semicolon; default is ascending created_at; prefix name with hyphen/minus sign to get descending order
|
|
798
|
+
* @param {string} [q] search conditions ($and, $or with all possible variations)
|
|
799
|
+
* @param {number} [page] pagination number
|
|
800
|
+
* @param {string} [customFields] CustomField via addField Mongoose
|
|
801
|
+
* @param {number} [perPage]
|
|
802
|
+
* @param {string} [fields] Nevertheless, you may choose that some fields would always be sent along with the requested fields, in the response payload. Like the id for example.
|
|
803
|
+
* @param {string} [populates] Nevertheless, you may choose that some fields would always be sent along with the requested fields, in the response payload. Like the id for example.
|
|
804
|
+
* @param {string} [authorization]
|
|
805
|
+
* @param {*} [options] Override http request option.
|
|
806
|
+
* @throws {RequiredError}
|
|
807
|
+
*/
|
|
808
|
+
async appsControllerGetAppByUser(sort?: string, q?: string, page?: number, customFields?: string, perPage?: number, fields?: string, populates?: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<AppCollection>> {
|
|
809
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.appsControllerGetAppByUser(sort, q, page, customFields, perPage, fields, populates, authorization, options);
|
|
810
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
811
|
+
},
|
|
812
|
+
/**
|
|
813
|
+
*
|
|
814
|
+
* @param {string} [authorization]
|
|
815
|
+
* @param {*} [options] Override http request option.
|
|
816
|
+
* @throws {RequiredError}
|
|
817
|
+
*/
|
|
818
|
+
async appsControllerGetFreeTrialAppByUser(authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<FreeTrial>> {
|
|
819
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.appsControllerGetFreeTrialAppByUser(authorization, options);
|
|
820
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
821
|
+
},
|
|
822
|
+
/**
|
|
823
|
+
*
|
|
824
|
+
* @param {string} id
|
|
825
|
+
* @param {string} [authorization]
|
|
826
|
+
* @param {*} [options] Override http request option.
|
|
827
|
+
* @throws {RequiredError}
|
|
828
|
+
*/
|
|
829
|
+
async appsControllerGetRemainingFreeTrialDays(id: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<TrialRemainingDays>> {
|
|
830
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.appsControllerGetRemainingFreeTrialDays(id, authorization, options);
|
|
831
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
832
|
+
},
|
|
833
|
+
/**
|
|
834
|
+
*
|
|
835
|
+
* @param {string} [authorization]
|
|
836
|
+
* @param {*} [options] Override http request option.
|
|
837
|
+
* @throws {RequiredError}
|
|
838
|
+
*/
|
|
839
|
+
async appsControllerGetUserDetail(authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<Member>> {
|
|
840
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.appsControllerGetUserDetail(authorization, options);
|
|
841
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
842
|
+
},
|
|
843
|
+
/**
|
|
844
|
+
*
|
|
845
|
+
* @param {string} id
|
|
846
|
+
* @param {string} [authorization]
|
|
847
|
+
* @param {*} [options] Override http request option.
|
|
848
|
+
* @throws {RequiredError}
|
|
849
|
+
*/
|
|
850
|
+
async appsControllerResetApiKey(id: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<string>> {
|
|
851
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.appsControllerResetApiKey(id, authorization, options);
|
|
852
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
853
|
+
},
|
|
854
|
+
/**
|
|
855
|
+
*
|
|
856
|
+
* @param {string} id
|
|
857
|
+
* @param {UpdateAppByUserDto} updateAppByUserDto
|
|
858
|
+
* @param {string} [authorization]
|
|
859
|
+
* @param {*} [options] Override http request option.
|
|
860
|
+
* @throws {RequiredError}
|
|
861
|
+
*/
|
|
862
|
+
async appsControllerUpdate(id: string, updateAppByUserDto: UpdateAppByUserDto, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<App>> {
|
|
863
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.appsControllerUpdate(id, updateAppByUserDto, authorization, options);
|
|
864
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
865
|
+
},
|
|
866
|
+
/**
|
|
867
|
+
*
|
|
868
|
+
* @param {string} id
|
|
869
|
+
* @param {string} [authorization]
|
|
870
|
+
* @param {*} [options] Override http request option.
|
|
871
|
+
* @throws {RequiredError}
|
|
872
|
+
*/
|
|
873
|
+
async appsControllerUpgradeToFreeApp(id: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<App>> {
|
|
874
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.appsControllerUpgradeToFreeApp(id, authorization, options);
|
|
875
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
876
|
+
},
|
|
877
|
+
/**
|
|
878
|
+
*
|
|
879
|
+
* @param {string} appId
|
|
880
|
+
* @param {string} [authorization]
|
|
881
|
+
* @param {*} [options] Override http request option.
|
|
882
|
+
* @throws {RequiredError}
|
|
883
|
+
*/
|
|
884
|
+
async appsControllerVerifyAppId(appId: string, authorization?: string, options?: AxiosRequestConfig): Promise<(axios?: AxiosInstance, basePath?: string) => AxiosPromise<ValidateAppId>> {
|
|
885
|
+
const localVarAxiosArgs = await localVarAxiosParamCreator.appsControllerVerifyAppId(appId, authorization, options);
|
|
886
|
+
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
|
|
887
|
+
},
|
|
888
|
+
}
|
|
889
|
+
};
|
|
890
|
+
|
|
891
|
+
/**
|
|
892
|
+
* AppsApi - factory interface
|
|
893
|
+
* @export
|
|
894
|
+
*/
|
|
895
|
+
export const AppsApiFactory = function (configuration?: Configuration, basePath?: string, axios?: AxiosInstance) {
|
|
896
|
+
const localVarFp = AppsApiFp(configuration)
|
|
897
|
+
return {
|
|
898
|
+
/**
|
|
899
|
+
*
|
|
900
|
+
* @param {AppsApiAppsControllerCreateRequest} requestParameters Request parameters.
|
|
901
|
+
* @param {*} [options] Override http request option.
|
|
902
|
+
* @throws {RequiredError}
|
|
903
|
+
*/
|
|
904
|
+
appsControllerCreate(requestParameters: AppsApiAppsControllerCreateRequest, options?: AxiosRequestConfig): AxiosPromise<App> {
|
|
905
|
+
return localVarFp.appsControllerCreate(requestParameters.createAppByUserDto, requestParameters.authorization, options).then((request) => request(axios, basePath));
|
|
906
|
+
},
|
|
907
|
+
/**
|
|
908
|
+
*
|
|
909
|
+
* @param {AppsApiAppsControllerFreeTrialRequest} requestParameters Request parameters.
|
|
910
|
+
* @param {*} [options] Override http request option.
|
|
911
|
+
* @throws {RequiredError}
|
|
912
|
+
*/
|
|
913
|
+
appsControllerFreeTrial(requestParameters: AppsApiAppsControllerFreeTrialRequest, options?: AxiosRequestConfig): AxiosPromise<App> {
|
|
914
|
+
return localVarFp.appsControllerFreeTrial(requestParameters.id, requestParameters.authorization, options).then((request) => request(axios, basePath));
|
|
915
|
+
},
|
|
916
|
+
/**
|
|
917
|
+
*
|
|
918
|
+
* @param {AppsApiAppsControllerGenerateAppIdRequest} requestParameters Request parameters.
|
|
919
|
+
* @param {*} [options] Override http request option.
|
|
920
|
+
* @throws {RequiredError}
|
|
921
|
+
*/
|
|
922
|
+
appsControllerGenerateAppId(requestParameters: AppsApiAppsControllerGenerateAppIdRequest, options?: AxiosRequestConfig): AxiosPromise<GenerateAppId> {
|
|
923
|
+
return localVarFp.appsControllerGenerateAppId(requestParameters.name, requestParameters.authorization, options).then((request) => request(axios, basePath));
|
|
924
|
+
},
|
|
925
|
+
/**
|
|
926
|
+
*
|
|
927
|
+
* @param {AppsApiAppsControllerGetRequest} requestParameters Request parameters.
|
|
928
|
+
* @param {*} [options] Override http request option.
|
|
929
|
+
* @throws {RequiredError}
|
|
930
|
+
*/
|
|
931
|
+
appsControllerGet(requestParameters: AppsApiAppsControllerGetRequest, options?: AxiosRequestConfig): AxiosPromise<App> {
|
|
932
|
+
return localVarFp.appsControllerGet(requestParameters.id, requestParameters.authorization, options).then((request) => request(axios, basePath));
|
|
933
|
+
},
|
|
934
|
+
/**
|
|
935
|
+
*
|
|
936
|
+
* @param {AppsApiAppsControllerGetAdminApiGroupByAppRequest} requestParameters Request parameters.
|
|
937
|
+
* @param {*} [options] Override http request option.
|
|
938
|
+
* @throws {RequiredError}
|
|
939
|
+
*/
|
|
940
|
+
appsControllerGetAdminApiGroupByApp(requestParameters: AppsApiAppsControllerGetAdminApiGroupByAppRequest = {}, options?: AxiosRequestConfig): AxiosPromise<ApiGroupCollection> {
|
|
941
|
+
return localVarFp.appsControllerGetAdminApiGroupByApp(requestParameters.page, requestParameters.perPage, requestParameters.authorization, options).then((request) => request(axios, basePath));
|
|
942
|
+
},
|
|
943
|
+
/**
|
|
944
|
+
*
|
|
945
|
+
* @param {AppsApiAppsControllerGetApiGroupByAppRequest} requestParameters Request parameters.
|
|
946
|
+
* @param {*} [options] Override http request option.
|
|
947
|
+
* @throws {RequiredError}
|
|
948
|
+
*/
|
|
949
|
+
appsControllerGetApiGroupByApp(requestParameters: AppsApiAppsControllerGetApiGroupByAppRequest = {}, options?: AxiosRequestConfig): AxiosPromise<ApiGroupCollection> {
|
|
950
|
+
return localVarFp.appsControllerGetApiGroupByApp(requestParameters.page, requestParameters.perPage, requestParameters.authorization, options).then((request) => request(axios, basePath));
|
|
951
|
+
},
|
|
952
|
+
/**
|
|
953
|
+
*
|
|
954
|
+
* @param {AppsApiAppsControllerGetAppByAdminRequest} requestParameters Request parameters.
|
|
955
|
+
* @param {*} [options] Override http request option.
|
|
956
|
+
* @throws {RequiredError}
|
|
957
|
+
*/
|
|
958
|
+
appsControllerGetAppByAdmin(requestParameters: AppsApiAppsControllerGetAppByAdminRequest = {}, options?: AxiosRequestConfig): AxiosPromise<AppCollection> {
|
|
959
|
+
return localVarFp.appsControllerGetAppByAdmin(requestParameters.sort, requestParameters.q, requestParameters.page, requestParameters.customFields, requestParameters.perPage, requestParameters.fields, requestParameters.populates, requestParameters.authorization, options).then((request) => request(axios, basePath));
|
|
960
|
+
},
|
|
961
|
+
/**
|
|
962
|
+
*
|
|
963
|
+
* @param {AppsApiAppsControllerGetAppByUserRequest} requestParameters Request parameters.
|
|
964
|
+
* @param {*} [options] Override http request option.
|
|
965
|
+
* @throws {RequiredError}
|
|
966
|
+
*/
|
|
967
|
+
appsControllerGetAppByUser(requestParameters: AppsApiAppsControllerGetAppByUserRequest = {}, options?: AxiosRequestConfig): AxiosPromise<AppCollection> {
|
|
968
|
+
return localVarFp.appsControllerGetAppByUser(requestParameters.sort, requestParameters.q, requestParameters.page, requestParameters.customFields, requestParameters.perPage, requestParameters.fields, requestParameters.populates, requestParameters.authorization, options).then((request) => request(axios, basePath));
|
|
969
|
+
},
|
|
970
|
+
/**
|
|
971
|
+
*
|
|
972
|
+
* @param {AppsApiAppsControllerGetFreeTrialAppByUserRequest} requestParameters Request parameters.
|
|
973
|
+
* @param {*} [options] Override http request option.
|
|
974
|
+
* @throws {RequiredError}
|
|
975
|
+
*/
|
|
976
|
+
appsControllerGetFreeTrialAppByUser(requestParameters: AppsApiAppsControllerGetFreeTrialAppByUserRequest = {}, options?: AxiosRequestConfig): AxiosPromise<FreeTrial> {
|
|
977
|
+
return localVarFp.appsControllerGetFreeTrialAppByUser(requestParameters.authorization, options).then((request) => request(axios, basePath));
|
|
978
|
+
},
|
|
979
|
+
/**
|
|
980
|
+
*
|
|
981
|
+
* @param {AppsApiAppsControllerGetRemainingFreeTrialDaysRequest} requestParameters Request parameters.
|
|
982
|
+
* @param {*} [options] Override http request option.
|
|
983
|
+
* @throws {RequiredError}
|
|
984
|
+
*/
|
|
985
|
+
appsControllerGetRemainingFreeTrialDays(requestParameters: AppsApiAppsControllerGetRemainingFreeTrialDaysRequest, options?: AxiosRequestConfig): AxiosPromise<TrialRemainingDays> {
|
|
986
|
+
return localVarFp.appsControllerGetRemainingFreeTrialDays(requestParameters.id, requestParameters.authorization, options).then((request) => request(axios, basePath));
|
|
987
|
+
},
|
|
988
|
+
/**
|
|
989
|
+
*
|
|
990
|
+
* @param {AppsApiAppsControllerGetUserDetailRequest} requestParameters Request parameters.
|
|
991
|
+
* @param {*} [options] Override http request option.
|
|
992
|
+
* @throws {RequiredError}
|
|
993
|
+
*/
|
|
994
|
+
appsControllerGetUserDetail(requestParameters: AppsApiAppsControllerGetUserDetailRequest = {}, options?: AxiosRequestConfig): AxiosPromise<Member> {
|
|
995
|
+
return localVarFp.appsControllerGetUserDetail(requestParameters.authorization, options).then((request) => request(axios, basePath));
|
|
996
|
+
},
|
|
997
|
+
/**
|
|
998
|
+
*
|
|
999
|
+
* @param {AppsApiAppsControllerResetApiKeyRequest} requestParameters Request parameters.
|
|
1000
|
+
* @param {*} [options] Override http request option.
|
|
1001
|
+
* @throws {RequiredError}
|
|
1002
|
+
*/
|
|
1003
|
+
appsControllerResetApiKey(requestParameters: AppsApiAppsControllerResetApiKeyRequest, options?: AxiosRequestConfig): AxiosPromise<string> {
|
|
1004
|
+
return localVarFp.appsControllerResetApiKey(requestParameters.id, requestParameters.authorization, options).then((request) => request(axios, basePath));
|
|
1005
|
+
},
|
|
1006
|
+
/**
|
|
1007
|
+
*
|
|
1008
|
+
* @param {AppsApiAppsControllerUpdateRequest} requestParameters Request parameters.
|
|
1009
|
+
* @param {*} [options] Override http request option.
|
|
1010
|
+
* @throws {RequiredError}
|
|
1011
|
+
*/
|
|
1012
|
+
appsControllerUpdate(requestParameters: AppsApiAppsControllerUpdateRequest, options?: AxiosRequestConfig): AxiosPromise<App> {
|
|
1013
|
+
return localVarFp.appsControllerUpdate(requestParameters.id, requestParameters.updateAppByUserDto, requestParameters.authorization, options).then((request) => request(axios, basePath));
|
|
1014
|
+
},
|
|
1015
|
+
/**
|
|
1016
|
+
*
|
|
1017
|
+
* @param {AppsApiAppsControllerUpgradeToFreeAppRequest} requestParameters Request parameters.
|
|
1018
|
+
* @param {*} [options] Override http request option.
|
|
1019
|
+
* @throws {RequiredError}
|
|
1020
|
+
*/
|
|
1021
|
+
appsControllerUpgradeToFreeApp(requestParameters: AppsApiAppsControllerUpgradeToFreeAppRequest, options?: AxiosRequestConfig): AxiosPromise<App> {
|
|
1022
|
+
return localVarFp.appsControllerUpgradeToFreeApp(requestParameters.id, requestParameters.authorization, options).then((request) => request(axios, basePath));
|
|
1023
|
+
},
|
|
1024
|
+
/**
|
|
1025
|
+
*
|
|
1026
|
+
* @param {AppsApiAppsControllerVerifyAppIdRequest} requestParameters Request parameters.
|
|
1027
|
+
* @param {*} [options] Override http request option.
|
|
1028
|
+
* @throws {RequiredError}
|
|
1029
|
+
*/
|
|
1030
|
+
appsControllerVerifyAppId(requestParameters: AppsApiAppsControllerVerifyAppIdRequest, options?: AxiosRequestConfig): AxiosPromise<ValidateAppId> {
|
|
1031
|
+
return localVarFp.appsControllerVerifyAppId(requestParameters.appId, requestParameters.authorization, options).then((request) => request(axios, basePath));
|
|
1032
|
+
},
|
|
1033
|
+
};
|
|
1034
|
+
};
|
|
1035
|
+
|
|
1036
|
+
/**
|
|
1037
|
+
* Request parameters for appsControllerCreate operation in AppsApi.
|
|
1038
|
+
* @export
|
|
1039
|
+
* @interface AppsApiAppsControllerCreateRequest
|
|
1040
|
+
*/
|
|
1041
|
+
export interface AppsApiAppsControllerCreateRequest {
|
|
1042
|
+
/**
|
|
1043
|
+
*
|
|
1044
|
+
* @type {CreateAppByUserDto}
|
|
1045
|
+
* @memberof AppsApiAppsControllerCreate
|
|
1046
|
+
*/
|
|
1047
|
+
readonly createAppByUserDto: CreateAppByUserDto
|
|
1048
|
+
|
|
1049
|
+
/**
|
|
1050
|
+
*
|
|
1051
|
+
* @type {string}
|
|
1052
|
+
* @memberof AppsApiAppsControllerCreate
|
|
1053
|
+
*/
|
|
1054
|
+
readonly authorization?: string
|
|
1055
|
+
}
|
|
1056
|
+
|
|
1057
|
+
/**
|
|
1058
|
+
* Request parameters for appsControllerFreeTrial operation in AppsApi.
|
|
1059
|
+
* @export
|
|
1060
|
+
* @interface AppsApiAppsControllerFreeTrialRequest
|
|
1061
|
+
*/
|
|
1062
|
+
export interface AppsApiAppsControllerFreeTrialRequest {
|
|
1063
|
+
/**
|
|
1064
|
+
*
|
|
1065
|
+
* @type {string}
|
|
1066
|
+
* @memberof AppsApiAppsControllerFreeTrial
|
|
1067
|
+
*/
|
|
1068
|
+
readonly id: string
|
|
1069
|
+
|
|
1070
|
+
/**
|
|
1071
|
+
*
|
|
1072
|
+
* @type {string}
|
|
1073
|
+
* @memberof AppsApiAppsControllerFreeTrial
|
|
1074
|
+
*/
|
|
1075
|
+
readonly authorization?: string
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1078
|
+
/**
|
|
1079
|
+
* Request parameters for appsControllerGenerateAppId operation in AppsApi.
|
|
1080
|
+
* @export
|
|
1081
|
+
* @interface AppsApiAppsControllerGenerateAppIdRequest
|
|
1082
|
+
*/
|
|
1083
|
+
export interface AppsApiAppsControllerGenerateAppIdRequest {
|
|
1084
|
+
/**
|
|
1085
|
+
*
|
|
1086
|
+
* @type {string}
|
|
1087
|
+
* @memberof AppsApiAppsControllerGenerateAppId
|
|
1088
|
+
*/
|
|
1089
|
+
readonly name: string
|
|
1090
|
+
|
|
1091
|
+
/**
|
|
1092
|
+
*
|
|
1093
|
+
* @type {string}
|
|
1094
|
+
* @memberof AppsApiAppsControllerGenerateAppId
|
|
1095
|
+
*/
|
|
1096
|
+
readonly authorization?: string
|
|
1097
|
+
}
|
|
1098
|
+
|
|
1099
|
+
/**
|
|
1100
|
+
* Request parameters for appsControllerGet operation in AppsApi.
|
|
1101
|
+
* @export
|
|
1102
|
+
* @interface AppsApiAppsControllerGetRequest
|
|
1103
|
+
*/
|
|
1104
|
+
export interface AppsApiAppsControllerGetRequest {
|
|
1105
|
+
/**
|
|
1106
|
+
*
|
|
1107
|
+
* @type {string}
|
|
1108
|
+
* @memberof AppsApiAppsControllerGet
|
|
1109
|
+
*/
|
|
1110
|
+
readonly id: string
|
|
1111
|
+
|
|
1112
|
+
/**
|
|
1113
|
+
*
|
|
1114
|
+
* @type {string}
|
|
1115
|
+
* @memberof AppsApiAppsControllerGet
|
|
1116
|
+
*/
|
|
1117
|
+
readonly authorization?: string
|
|
1118
|
+
}
|
|
1119
|
+
|
|
1120
|
+
/**
|
|
1121
|
+
* Request parameters for appsControllerGetAdminApiGroupByApp operation in AppsApi.
|
|
1122
|
+
* @export
|
|
1123
|
+
* @interface AppsApiAppsControllerGetAdminApiGroupByAppRequest
|
|
1124
|
+
*/
|
|
1125
|
+
export interface AppsApiAppsControllerGetAdminApiGroupByAppRequest {
|
|
1126
|
+
/**
|
|
1127
|
+
*
|
|
1128
|
+
* @type {number}
|
|
1129
|
+
* @memberof AppsApiAppsControllerGetAdminApiGroupByApp
|
|
1130
|
+
*/
|
|
1131
|
+
readonly page?: number
|
|
1132
|
+
|
|
1133
|
+
/**
|
|
1134
|
+
*
|
|
1135
|
+
* @type {number}
|
|
1136
|
+
* @memberof AppsApiAppsControllerGetAdminApiGroupByApp
|
|
1137
|
+
*/
|
|
1138
|
+
readonly perPage?: number
|
|
1139
|
+
|
|
1140
|
+
/**
|
|
1141
|
+
*
|
|
1142
|
+
* @type {string}
|
|
1143
|
+
* @memberof AppsApiAppsControllerGetAdminApiGroupByApp
|
|
1144
|
+
*/
|
|
1145
|
+
readonly authorization?: string
|
|
1146
|
+
}
|
|
1147
|
+
|
|
1148
|
+
/**
|
|
1149
|
+
* Request parameters for appsControllerGetApiGroupByApp operation in AppsApi.
|
|
1150
|
+
* @export
|
|
1151
|
+
* @interface AppsApiAppsControllerGetApiGroupByAppRequest
|
|
1152
|
+
*/
|
|
1153
|
+
export interface AppsApiAppsControllerGetApiGroupByAppRequest {
|
|
1154
|
+
/**
|
|
1155
|
+
*
|
|
1156
|
+
* @type {number}
|
|
1157
|
+
* @memberof AppsApiAppsControllerGetApiGroupByApp
|
|
1158
|
+
*/
|
|
1159
|
+
readonly page?: number
|
|
1160
|
+
|
|
1161
|
+
/**
|
|
1162
|
+
*
|
|
1163
|
+
* @type {number}
|
|
1164
|
+
* @memberof AppsApiAppsControllerGetApiGroupByApp
|
|
1165
|
+
*/
|
|
1166
|
+
readonly perPage?: number
|
|
1167
|
+
|
|
1168
|
+
/**
|
|
1169
|
+
*
|
|
1170
|
+
* @type {string}
|
|
1171
|
+
* @memberof AppsApiAppsControllerGetApiGroupByApp
|
|
1172
|
+
*/
|
|
1173
|
+
readonly authorization?: string
|
|
1174
|
+
}
|
|
1175
|
+
|
|
1176
|
+
/**
|
|
1177
|
+
* Request parameters for appsControllerGetAppByAdmin operation in AppsApi.
|
|
1178
|
+
* @export
|
|
1179
|
+
* @interface AppsApiAppsControllerGetAppByAdminRequest
|
|
1180
|
+
*/
|
|
1181
|
+
export interface AppsApiAppsControllerGetAppByAdminRequest {
|
|
1182
|
+
/**
|
|
1183
|
+
* Use only allowed properties separated by semicolon; default is ascending created_at; prefix name with hyphen/minus sign to get descending order
|
|
1184
|
+
* @type {string}
|
|
1185
|
+
* @memberof AppsApiAppsControllerGetAppByAdmin
|
|
1186
|
+
*/
|
|
1187
|
+
readonly sort?: string
|
|
1188
|
+
|
|
1189
|
+
/**
|
|
1190
|
+
* search conditions ($and, $or with all possible variations)
|
|
1191
|
+
* @type {string}
|
|
1192
|
+
* @memberof AppsApiAppsControllerGetAppByAdmin
|
|
1193
|
+
*/
|
|
1194
|
+
readonly q?: string
|
|
1195
|
+
|
|
1196
|
+
/**
|
|
1197
|
+
* pagination number
|
|
1198
|
+
* @type {number}
|
|
1199
|
+
* @memberof AppsApiAppsControllerGetAppByAdmin
|
|
1200
|
+
*/
|
|
1201
|
+
readonly page?: number
|
|
1202
|
+
|
|
1203
|
+
/**
|
|
1204
|
+
* CustomField via addField Mongoose
|
|
1205
|
+
* @type {string}
|
|
1206
|
+
* @memberof AppsApiAppsControllerGetAppByAdmin
|
|
1207
|
+
*/
|
|
1208
|
+
readonly customFields?: string
|
|
1209
|
+
|
|
1210
|
+
/**
|
|
1211
|
+
*
|
|
1212
|
+
* @type {number}
|
|
1213
|
+
* @memberof AppsApiAppsControllerGetAppByAdmin
|
|
1214
|
+
*/
|
|
1215
|
+
readonly perPage?: number
|
|
1216
|
+
|
|
1217
|
+
/**
|
|
1218
|
+
* Nevertheless, you may choose that some fields would always be sent along with the requested fields, in the response payload. Like the id for example.
|
|
1219
|
+
* @type {string}
|
|
1220
|
+
* @memberof AppsApiAppsControllerGetAppByAdmin
|
|
1221
|
+
*/
|
|
1222
|
+
readonly fields?: string
|
|
1223
|
+
|
|
1224
|
+
/**
|
|
1225
|
+
* Nevertheless, you may choose that some fields would always be sent along with the requested fields, in the response payload. Like the id for example.
|
|
1226
|
+
* @type {string}
|
|
1227
|
+
* @memberof AppsApiAppsControllerGetAppByAdmin
|
|
1228
|
+
*/
|
|
1229
|
+
readonly populates?: string
|
|
1230
|
+
|
|
1231
|
+
/**
|
|
1232
|
+
*
|
|
1233
|
+
* @type {string}
|
|
1234
|
+
* @memberof AppsApiAppsControllerGetAppByAdmin
|
|
1235
|
+
*/
|
|
1236
|
+
readonly authorization?: string
|
|
1237
|
+
}
|
|
1238
|
+
|
|
1239
|
+
/**
|
|
1240
|
+
* Request parameters for appsControllerGetAppByUser operation in AppsApi.
|
|
1241
|
+
* @export
|
|
1242
|
+
* @interface AppsApiAppsControllerGetAppByUserRequest
|
|
1243
|
+
*/
|
|
1244
|
+
export interface AppsApiAppsControllerGetAppByUserRequest {
|
|
1245
|
+
/**
|
|
1246
|
+
* Use only allowed properties separated by semicolon; default is ascending created_at; prefix name with hyphen/minus sign to get descending order
|
|
1247
|
+
* @type {string}
|
|
1248
|
+
* @memberof AppsApiAppsControllerGetAppByUser
|
|
1249
|
+
*/
|
|
1250
|
+
readonly sort?: string
|
|
1251
|
+
|
|
1252
|
+
/**
|
|
1253
|
+
* search conditions ($and, $or with all possible variations)
|
|
1254
|
+
* @type {string}
|
|
1255
|
+
* @memberof AppsApiAppsControllerGetAppByUser
|
|
1256
|
+
*/
|
|
1257
|
+
readonly q?: string
|
|
1258
|
+
|
|
1259
|
+
/**
|
|
1260
|
+
* pagination number
|
|
1261
|
+
* @type {number}
|
|
1262
|
+
* @memberof AppsApiAppsControllerGetAppByUser
|
|
1263
|
+
*/
|
|
1264
|
+
readonly page?: number
|
|
1265
|
+
|
|
1266
|
+
/**
|
|
1267
|
+
* CustomField via addField Mongoose
|
|
1268
|
+
* @type {string}
|
|
1269
|
+
* @memberof AppsApiAppsControllerGetAppByUser
|
|
1270
|
+
*/
|
|
1271
|
+
readonly customFields?: string
|
|
1272
|
+
|
|
1273
|
+
/**
|
|
1274
|
+
*
|
|
1275
|
+
* @type {number}
|
|
1276
|
+
* @memberof AppsApiAppsControllerGetAppByUser
|
|
1277
|
+
*/
|
|
1278
|
+
readonly perPage?: number
|
|
1279
|
+
|
|
1280
|
+
/**
|
|
1281
|
+
* Nevertheless, you may choose that some fields would always be sent along with the requested fields, in the response payload. Like the id for example.
|
|
1282
|
+
* @type {string}
|
|
1283
|
+
* @memberof AppsApiAppsControllerGetAppByUser
|
|
1284
|
+
*/
|
|
1285
|
+
readonly fields?: string
|
|
1286
|
+
|
|
1287
|
+
/**
|
|
1288
|
+
* Nevertheless, you may choose that some fields would always be sent along with the requested fields, in the response payload. Like the id for example.
|
|
1289
|
+
* @type {string}
|
|
1290
|
+
* @memberof AppsApiAppsControllerGetAppByUser
|
|
1291
|
+
*/
|
|
1292
|
+
readonly populates?: string
|
|
1293
|
+
|
|
1294
|
+
/**
|
|
1295
|
+
*
|
|
1296
|
+
* @type {string}
|
|
1297
|
+
* @memberof AppsApiAppsControllerGetAppByUser
|
|
1298
|
+
*/
|
|
1299
|
+
readonly authorization?: string
|
|
1300
|
+
}
|
|
1301
|
+
|
|
1302
|
+
/**
|
|
1303
|
+
* Request parameters for appsControllerGetFreeTrialAppByUser operation in AppsApi.
|
|
1304
|
+
* @export
|
|
1305
|
+
* @interface AppsApiAppsControllerGetFreeTrialAppByUserRequest
|
|
1306
|
+
*/
|
|
1307
|
+
export interface AppsApiAppsControllerGetFreeTrialAppByUserRequest {
|
|
1308
|
+
/**
|
|
1309
|
+
*
|
|
1310
|
+
* @type {string}
|
|
1311
|
+
* @memberof AppsApiAppsControllerGetFreeTrialAppByUser
|
|
1312
|
+
*/
|
|
1313
|
+
readonly authorization?: string
|
|
1314
|
+
}
|
|
1315
|
+
|
|
1316
|
+
/**
|
|
1317
|
+
* Request parameters for appsControllerGetRemainingFreeTrialDays operation in AppsApi.
|
|
1318
|
+
* @export
|
|
1319
|
+
* @interface AppsApiAppsControllerGetRemainingFreeTrialDaysRequest
|
|
1320
|
+
*/
|
|
1321
|
+
export interface AppsApiAppsControllerGetRemainingFreeTrialDaysRequest {
|
|
1322
|
+
/**
|
|
1323
|
+
*
|
|
1324
|
+
* @type {string}
|
|
1325
|
+
* @memberof AppsApiAppsControllerGetRemainingFreeTrialDays
|
|
1326
|
+
*/
|
|
1327
|
+
readonly id: string
|
|
1328
|
+
|
|
1329
|
+
/**
|
|
1330
|
+
*
|
|
1331
|
+
* @type {string}
|
|
1332
|
+
* @memberof AppsApiAppsControllerGetRemainingFreeTrialDays
|
|
1333
|
+
*/
|
|
1334
|
+
readonly authorization?: string
|
|
1335
|
+
}
|
|
1336
|
+
|
|
1337
|
+
/**
|
|
1338
|
+
* Request parameters for appsControllerGetUserDetail operation in AppsApi.
|
|
1339
|
+
* @export
|
|
1340
|
+
* @interface AppsApiAppsControllerGetUserDetailRequest
|
|
1341
|
+
*/
|
|
1342
|
+
export interface AppsApiAppsControllerGetUserDetailRequest {
|
|
1343
|
+
/**
|
|
1344
|
+
*
|
|
1345
|
+
* @type {string}
|
|
1346
|
+
* @memberof AppsApiAppsControllerGetUserDetail
|
|
1347
|
+
*/
|
|
1348
|
+
readonly authorization?: string
|
|
1349
|
+
}
|
|
1350
|
+
|
|
1351
|
+
/**
|
|
1352
|
+
* Request parameters for appsControllerResetApiKey operation in AppsApi.
|
|
1353
|
+
* @export
|
|
1354
|
+
* @interface AppsApiAppsControllerResetApiKeyRequest
|
|
1355
|
+
*/
|
|
1356
|
+
export interface AppsApiAppsControllerResetApiKeyRequest {
|
|
1357
|
+
/**
|
|
1358
|
+
*
|
|
1359
|
+
* @type {string}
|
|
1360
|
+
* @memberof AppsApiAppsControllerResetApiKey
|
|
1361
|
+
*/
|
|
1362
|
+
readonly id: string
|
|
1363
|
+
|
|
1364
|
+
/**
|
|
1365
|
+
*
|
|
1366
|
+
* @type {string}
|
|
1367
|
+
* @memberof AppsApiAppsControllerResetApiKey
|
|
1368
|
+
*/
|
|
1369
|
+
readonly authorization?: string
|
|
1370
|
+
}
|
|
1371
|
+
|
|
1372
|
+
/**
|
|
1373
|
+
* Request parameters for appsControllerUpdate operation in AppsApi.
|
|
1374
|
+
* @export
|
|
1375
|
+
* @interface AppsApiAppsControllerUpdateRequest
|
|
1376
|
+
*/
|
|
1377
|
+
export interface AppsApiAppsControllerUpdateRequest {
|
|
1378
|
+
/**
|
|
1379
|
+
*
|
|
1380
|
+
* @type {string}
|
|
1381
|
+
* @memberof AppsApiAppsControllerUpdate
|
|
1382
|
+
*/
|
|
1383
|
+
readonly id: string
|
|
1384
|
+
|
|
1385
|
+
/**
|
|
1386
|
+
*
|
|
1387
|
+
* @type {UpdateAppByUserDto}
|
|
1388
|
+
* @memberof AppsApiAppsControllerUpdate
|
|
1389
|
+
*/
|
|
1390
|
+
readonly updateAppByUserDto: UpdateAppByUserDto
|
|
1391
|
+
|
|
1392
|
+
/**
|
|
1393
|
+
*
|
|
1394
|
+
* @type {string}
|
|
1395
|
+
* @memberof AppsApiAppsControllerUpdate
|
|
1396
|
+
*/
|
|
1397
|
+
readonly authorization?: string
|
|
1398
|
+
}
|
|
1399
|
+
|
|
1400
|
+
/**
|
|
1401
|
+
* Request parameters for appsControllerUpgradeToFreeApp operation in AppsApi.
|
|
1402
|
+
* @export
|
|
1403
|
+
* @interface AppsApiAppsControllerUpgradeToFreeAppRequest
|
|
1404
|
+
*/
|
|
1405
|
+
export interface AppsApiAppsControllerUpgradeToFreeAppRequest {
|
|
1406
|
+
/**
|
|
1407
|
+
*
|
|
1408
|
+
* @type {string}
|
|
1409
|
+
* @memberof AppsApiAppsControllerUpgradeToFreeApp
|
|
1410
|
+
*/
|
|
1411
|
+
readonly id: string
|
|
1412
|
+
|
|
1413
|
+
/**
|
|
1414
|
+
*
|
|
1415
|
+
* @type {string}
|
|
1416
|
+
* @memberof AppsApiAppsControllerUpgradeToFreeApp
|
|
1417
|
+
*/
|
|
1418
|
+
readonly authorization?: string
|
|
1419
|
+
}
|
|
1420
|
+
|
|
1421
|
+
/**
|
|
1422
|
+
* Request parameters for appsControllerVerifyAppId operation in AppsApi.
|
|
1423
|
+
* @export
|
|
1424
|
+
* @interface AppsApiAppsControllerVerifyAppIdRequest
|
|
1425
|
+
*/
|
|
1426
|
+
export interface AppsApiAppsControllerVerifyAppIdRequest {
|
|
1427
|
+
/**
|
|
1428
|
+
*
|
|
1429
|
+
* @type {string}
|
|
1430
|
+
* @memberof AppsApiAppsControllerVerifyAppId
|
|
1431
|
+
*/
|
|
1432
|
+
readonly appId: string
|
|
1433
|
+
|
|
1434
|
+
/**
|
|
1435
|
+
*
|
|
1436
|
+
* @type {string}
|
|
1437
|
+
* @memberof AppsApiAppsControllerVerifyAppId
|
|
1438
|
+
*/
|
|
1439
|
+
readonly authorization?: string
|
|
1440
|
+
}
|
|
1441
|
+
|
|
1442
|
+
/**
|
|
1443
|
+
* AppsApi - object-oriented interface
|
|
1444
|
+
* @export
|
|
1445
|
+
* @class AppsApi
|
|
1446
|
+
* @extends {BaseAPI}
|
|
1447
|
+
*/
|
|
1448
|
+
export class AppsApi extends BaseAPI {
|
|
1449
|
+
/**
|
|
1450
|
+
*
|
|
1451
|
+
* @param {AppsApiAppsControllerCreateRequest} requestParameters Request parameters.
|
|
1452
|
+
* @param {*} [options] Override http request option.
|
|
1453
|
+
* @throws {RequiredError}
|
|
1454
|
+
* @memberof AppsApi
|
|
1455
|
+
*/
|
|
1456
|
+
public appsControllerCreate(requestParameters: AppsApiAppsControllerCreateRequest, options?: AxiosRequestConfig) {
|
|
1457
|
+
return AppsApiFp(this.configuration).appsControllerCreate(requestParameters.createAppByUserDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1458
|
+
}
|
|
1459
|
+
|
|
1460
|
+
/**
|
|
1461
|
+
*
|
|
1462
|
+
* @param {AppsApiAppsControllerFreeTrialRequest} requestParameters Request parameters.
|
|
1463
|
+
* @param {*} [options] Override http request option.
|
|
1464
|
+
* @throws {RequiredError}
|
|
1465
|
+
* @memberof AppsApi
|
|
1466
|
+
*/
|
|
1467
|
+
public appsControllerFreeTrial(requestParameters: AppsApiAppsControllerFreeTrialRequest, options?: AxiosRequestConfig) {
|
|
1468
|
+
return AppsApiFp(this.configuration).appsControllerFreeTrial(requestParameters.id, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1469
|
+
}
|
|
1470
|
+
|
|
1471
|
+
/**
|
|
1472
|
+
*
|
|
1473
|
+
* @param {AppsApiAppsControllerGenerateAppIdRequest} requestParameters Request parameters.
|
|
1474
|
+
* @param {*} [options] Override http request option.
|
|
1475
|
+
* @throws {RequiredError}
|
|
1476
|
+
* @memberof AppsApi
|
|
1477
|
+
*/
|
|
1478
|
+
public appsControllerGenerateAppId(requestParameters: AppsApiAppsControllerGenerateAppIdRequest, options?: AxiosRequestConfig) {
|
|
1479
|
+
return AppsApiFp(this.configuration).appsControllerGenerateAppId(requestParameters.name, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1480
|
+
}
|
|
1481
|
+
|
|
1482
|
+
/**
|
|
1483
|
+
*
|
|
1484
|
+
* @param {AppsApiAppsControllerGetRequest} requestParameters Request parameters.
|
|
1485
|
+
* @param {*} [options] Override http request option.
|
|
1486
|
+
* @throws {RequiredError}
|
|
1487
|
+
* @memberof AppsApi
|
|
1488
|
+
*/
|
|
1489
|
+
public appsControllerGet(requestParameters: AppsApiAppsControllerGetRequest, options?: AxiosRequestConfig) {
|
|
1490
|
+
return AppsApiFp(this.configuration).appsControllerGet(requestParameters.id, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1491
|
+
}
|
|
1492
|
+
|
|
1493
|
+
/**
|
|
1494
|
+
*
|
|
1495
|
+
* @param {AppsApiAppsControllerGetAdminApiGroupByAppRequest} requestParameters Request parameters.
|
|
1496
|
+
* @param {*} [options] Override http request option.
|
|
1497
|
+
* @throws {RequiredError}
|
|
1498
|
+
* @memberof AppsApi
|
|
1499
|
+
*/
|
|
1500
|
+
public appsControllerGetAdminApiGroupByApp(requestParameters: AppsApiAppsControllerGetAdminApiGroupByAppRequest = {}, options?: AxiosRequestConfig) {
|
|
1501
|
+
return AppsApiFp(this.configuration).appsControllerGetAdminApiGroupByApp(requestParameters.page, requestParameters.perPage, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1502
|
+
}
|
|
1503
|
+
|
|
1504
|
+
/**
|
|
1505
|
+
*
|
|
1506
|
+
* @param {AppsApiAppsControllerGetApiGroupByAppRequest} requestParameters Request parameters.
|
|
1507
|
+
* @param {*} [options] Override http request option.
|
|
1508
|
+
* @throws {RequiredError}
|
|
1509
|
+
* @memberof AppsApi
|
|
1510
|
+
*/
|
|
1511
|
+
public appsControllerGetApiGroupByApp(requestParameters: AppsApiAppsControllerGetApiGroupByAppRequest = {}, options?: AxiosRequestConfig) {
|
|
1512
|
+
return AppsApiFp(this.configuration).appsControllerGetApiGroupByApp(requestParameters.page, requestParameters.perPage, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1513
|
+
}
|
|
1514
|
+
|
|
1515
|
+
/**
|
|
1516
|
+
*
|
|
1517
|
+
* @param {AppsApiAppsControllerGetAppByAdminRequest} requestParameters Request parameters.
|
|
1518
|
+
* @param {*} [options] Override http request option.
|
|
1519
|
+
* @throws {RequiredError}
|
|
1520
|
+
* @memberof AppsApi
|
|
1521
|
+
*/
|
|
1522
|
+
public appsControllerGetAppByAdmin(requestParameters: AppsApiAppsControllerGetAppByAdminRequest = {}, options?: AxiosRequestConfig) {
|
|
1523
|
+
return AppsApiFp(this.configuration).appsControllerGetAppByAdmin(requestParameters.sort, requestParameters.q, requestParameters.page, requestParameters.customFields, requestParameters.perPage, requestParameters.fields, requestParameters.populates, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1524
|
+
}
|
|
1525
|
+
|
|
1526
|
+
/**
|
|
1527
|
+
*
|
|
1528
|
+
* @param {AppsApiAppsControllerGetAppByUserRequest} requestParameters Request parameters.
|
|
1529
|
+
* @param {*} [options] Override http request option.
|
|
1530
|
+
* @throws {RequiredError}
|
|
1531
|
+
* @memberof AppsApi
|
|
1532
|
+
*/
|
|
1533
|
+
public appsControllerGetAppByUser(requestParameters: AppsApiAppsControllerGetAppByUserRequest = {}, options?: AxiosRequestConfig) {
|
|
1534
|
+
return AppsApiFp(this.configuration).appsControllerGetAppByUser(requestParameters.sort, requestParameters.q, requestParameters.page, requestParameters.customFields, requestParameters.perPage, requestParameters.fields, requestParameters.populates, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1535
|
+
}
|
|
1536
|
+
|
|
1537
|
+
/**
|
|
1538
|
+
*
|
|
1539
|
+
* @param {AppsApiAppsControllerGetFreeTrialAppByUserRequest} requestParameters Request parameters.
|
|
1540
|
+
* @param {*} [options] Override http request option.
|
|
1541
|
+
* @throws {RequiredError}
|
|
1542
|
+
* @memberof AppsApi
|
|
1543
|
+
*/
|
|
1544
|
+
public appsControllerGetFreeTrialAppByUser(requestParameters: AppsApiAppsControllerGetFreeTrialAppByUserRequest = {}, options?: AxiosRequestConfig) {
|
|
1545
|
+
return AppsApiFp(this.configuration).appsControllerGetFreeTrialAppByUser(requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1546
|
+
}
|
|
1547
|
+
|
|
1548
|
+
/**
|
|
1549
|
+
*
|
|
1550
|
+
* @param {AppsApiAppsControllerGetRemainingFreeTrialDaysRequest} requestParameters Request parameters.
|
|
1551
|
+
* @param {*} [options] Override http request option.
|
|
1552
|
+
* @throws {RequiredError}
|
|
1553
|
+
* @memberof AppsApi
|
|
1554
|
+
*/
|
|
1555
|
+
public appsControllerGetRemainingFreeTrialDays(requestParameters: AppsApiAppsControllerGetRemainingFreeTrialDaysRequest, options?: AxiosRequestConfig) {
|
|
1556
|
+
return AppsApiFp(this.configuration).appsControllerGetRemainingFreeTrialDays(requestParameters.id, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1557
|
+
}
|
|
1558
|
+
|
|
1559
|
+
/**
|
|
1560
|
+
*
|
|
1561
|
+
* @param {AppsApiAppsControllerGetUserDetailRequest} requestParameters Request parameters.
|
|
1562
|
+
* @param {*} [options] Override http request option.
|
|
1563
|
+
* @throws {RequiredError}
|
|
1564
|
+
* @memberof AppsApi
|
|
1565
|
+
*/
|
|
1566
|
+
public appsControllerGetUserDetail(requestParameters: AppsApiAppsControllerGetUserDetailRequest = {}, options?: AxiosRequestConfig) {
|
|
1567
|
+
return AppsApiFp(this.configuration).appsControllerGetUserDetail(requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1568
|
+
}
|
|
1569
|
+
|
|
1570
|
+
/**
|
|
1571
|
+
*
|
|
1572
|
+
* @param {AppsApiAppsControllerResetApiKeyRequest} requestParameters Request parameters.
|
|
1573
|
+
* @param {*} [options] Override http request option.
|
|
1574
|
+
* @throws {RequiredError}
|
|
1575
|
+
* @memberof AppsApi
|
|
1576
|
+
*/
|
|
1577
|
+
public appsControllerResetApiKey(requestParameters: AppsApiAppsControllerResetApiKeyRequest, options?: AxiosRequestConfig) {
|
|
1578
|
+
return AppsApiFp(this.configuration).appsControllerResetApiKey(requestParameters.id, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1579
|
+
}
|
|
1580
|
+
|
|
1581
|
+
/**
|
|
1582
|
+
*
|
|
1583
|
+
* @param {AppsApiAppsControllerUpdateRequest} requestParameters Request parameters.
|
|
1584
|
+
* @param {*} [options] Override http request option.
|
|
1585
|
+
* @throws {RequiredError}
|
|
1586
|
+
* @memberof AppsApi
|
|
1587
|
+
*/
|
|
1588
|
+
public appsControllerUpdate(requestParameters: AppsApiAppsControllerUpdateRequest, options?: AxiosRequestConfig) {
|
|
1589
|
+
return AppsApiFp(this.configuration).appsControllerUpdate(requestParameters.id, requestParameters.updateAppByUserDto, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1590
|
+
}
|
|
1591
|
+
|
|
1592
|
+
/**
|
|
1593
|
+
*
|
|
1594
|
+
* @param {AppsApiAppsControllerUpgradeToFreeAppRequest} requestParameters Request parameters.
|
|
1595
|
+
* @param {*} [options] Override http request option.
|
|
1596
|
+
* @throws {RequiredError}
|
|
1597
|
+
* @memberof AppsApi
|
|
1598
|
+
*/
|
|
1599
|
+
public appsControllerUpgradeToFreeApp(requestParameters: AppsApiAppsControllerUpgradeToFreeAppRequest, options?: AxiosRequestConfig) {
|
|
1600
|
+
return AppsApiFp(this.configuration).appsControllerUpgradeToFreeApp(requestParameters.id, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1601
|
+
}
|
|
1602
|
+
|
|
1603
|
+
/**
|
|
1604
|
+
*
|
|
1605
|
+
* @param {AppsApiAppsControllerVerifyAppIdRequest} requestParameters Request parameters.
|
|
1606
|
+
* @param {*} [options] Override http request option.
|
|
1607
|
+
* @throws {RequiredError}
|
|
1608
|
+
* @memberof AppsApi
|
|
1609
|
+
*/
|
|
1610
|
+
public appsControllerVerifyAppId(requestParameters: AppsApiAppsControllerVerifyAppIdRequest, options?: AxiosRequestConfig) {
|
|
1611
|
+
return AppsApiFp(this.configuration).appsControllerVerifyAppId(requestParameters.appId, requestParameters.authorization, options).then((request) => request(this.axios, this.basePath));
|
|
1612
|
+
}
|
|
1613
|
+
}
|