@acomo/client 1.0.130 → 1.0.133
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/dist/src/acomo.d.ts +9 -0
- package/dist/src/acomo.js +4 -0
- package/dist/src/acomo.js.map +1 -0
- package/dist/src/client/apis/AccountApi.d.ts +85 -0
- package/dist/src/client/apis/AccountApi.js +607 -0
- package/dist/src/client/apis/AccountApi.js.map +1 -0
- package/dist/src/client/apis/ActionApi.d.ts +47 -0
- package/dist/src/client/apis/ActionApi.js +146 -0
- package/dist/src/client/apis/ActionApi.js.map +1 -0
- package/dist/src/client/apis/AiApi.d.ts +19 -0
- package/dist/src/client/apis/AiApi.js +93 -0
- package/dist/src/client/apis/AiApi.js.map +1 -0
- package/dist/src/client/apis/AuthApi.d.ts +24 -0
- package/dist/src/client/apis/AuthApi.js +202 -0
- package/dist/src/client/apis/AuthApi.js.map +1 -0
- package/dist/src/client/apis/AuthConfigApi.d.ts +26 -0
- package/dist/src/client/apis/AuthConfigApi.js +144 -0
- package/dist/src/client/apis/AuthConfigApi.js.map +1 -0
- package/dist/src/client/apis/CorsApi.d.ts +32 -0
- package/dist/src/client/apis/CorsApi.js +158 -0
- package/dist/src/client/apis/CorsApi.js.map +1 -0
- package/dist/src/client/apis/DevelopmentApi.d.ts +5 -0
- package/dist/src/client/apis/DevelopmentApi.js +28 -0
- package/dist/src/client/apis/DevelopmentApi.js.map +1 -0
- package/dist/src/client/apis/EngineApi.d.ts +65 -0
- package/dist/src/client/apis/EngineApi.js +330 -0
- package/dist/src/client/apis/EngineApi.js.map +1 -0
- package/dist/src/client/apis/GroupApi.d.ts +26 -0
- package/dist/src/client/apis/GroupApi.js +151 -0
- package/dist/src/client/apis/GroupApi.js.map +1 -0
- package/dist/src/client/apis/ModelApi.d.ts +57 -0
- package/dist/src/client/apis/ModelApi.js +296 -0
- package/dist/src/client/apis/ModelApi.js.map +1 -0
- package/dist/src/client/apis/MyActionApi.d.ts +6 -0
- package/dist/src/client/apis/MyActionApi.js +30 -0
- package/dist/src/client/apis/MyActionApi.js.map +1 -0
- package/dist/src/client/apis/MyModelApi.d.ts +26 -0
- package/dist/src/client/apis/MyModelApi.js +113 -0
- package/dist/src/client/apis/MyModelApi.js.map +1 -0
- package/dist/src/client/apis/MyProcessApi.d.ts +87 -0
- package/dist/src/client/apis/MyProcessApi.js +402 -0
- package/dist/src/client/apis/MyProcessApi.js.map +1 -0
- package/dist/src/client/apis/ProcessApi.d.ts +55 -0
- package/dist/src/client/apis/ProcessApi.js +295 -0
- package/dist/src/client/apis/ProcessApi.js.map +1 -0
- package/dist/src/client/apis/ProfileApi.d.ts +7 -0
- package/dist/src/client/apis/ProfileApi.js +52 -0
- package/dist/src/client/apis/ProfileApi.js.map +1 -0
- package/dist/src/client/apis/RoleApi.d.ts +23 -0
- package/dist/src/client/apis/RoleApi.js +120 -0
- package/dist/src/client/apis/RoleApi.js.map +1 -0
- package/dist/src/client/apis/SettingApi.d.ts +10 -0
- package/dist/src/client/apis/SettingApi.js +80 -0
- package/dist/src/client/apis/SettingApi.js.map +1 -0
- package/dist/src/client/apis/SlackApi.d.ts +18 -0
- package/dist/src/client/apis/SlackApi.js +195 -0
- package/dist/src/client/apis/SlackApi.js.map +1 -0
- package/dist/src/client/apis/UsersApi.d.ts +44 -0
- package/dist/src/client/apis/UsersApi.js +222 -0
- package/dist/src/client/apis/UsersApi.js.map +1 -0
- package/dist/src/client/apis/index.d.ts +19 -0
- package/dist/src/client/apis/index.js +20 -0
- package/dist/src/client/apis/index.js.map +1 -0
- package/dist/src/client/index.d.ts +3 -0
- package/dist/src/client/index.js +4 -0
- package/dist/src/client/index.js.map +1 -0
- package/dist/src/client/models/AccountEntity.d.ts +10 -0
- package/dist/src/client/models/AccountEntity.js +36 -0
- package/dist/src/client/models/AccountEntity.js.map +1 -0
- package/dist/src/client/models/AskAiForDataSchemaDto.d.ts +9 -0
- package/dist/src/client/models/AskAiForDataSchemaDto.js +32 -0
- package/dist/src/client/models/AskAiForDataSchemaDto.js.map +1 -0
- package/dist/src/client/models/AskAiForDefintionDto.d.ts +8 -0
- package/dist/src/client/models/AskAiForDefintionDto.js +28 -0
- package/dist/src/client/models/AskAiForDefintionDto.js.map +1 -0
- package/dist/src/client/models/AuthConfigEntity.d.ts +15 -0
- package/dist/src/client/models/AuthConfigEntity.js +53 -0
- package/dist/src/client/models/AuthConfigEntity.js.map +1 -0
- package/dist/src/client/models/ChatAiDto.d.ts +9 -0
- package/dist/src/client/models/ChatAiDto.js +32 -0
- package/dist/src/client/models/ChatAiDto.js.map +1 -0
- package/dist/src/client/models/ChatAiResponseEntity.d.ts +12 -0
- package/dist/src/client/models/ChatAiResponseEntity.js +38 -0
- package/dist/src/client/models/ChatAiResponseEntity.js.map +1 -0
- package/dist/src/client/models/CorsAllowedOriginEntity.d.ts +10 -0
- package/dist/src/client/models/CorsAllowedOriginEntity.js +36 -0
- package/dist/src/client/models/CorsAllowedOriginEntity.js.map +1 -0
- package/dist/src/client/models/CreateCorsAllowedOriginDto.d.ts +9 -0
- package/dist/src/client/models/CreateCorsAllowedOriginDto.js +32 -0
- package/dist/src/client/models/CreateCorsAllowedOriginDto.js.map +1 -0
- package/dist/src/client/models/CreateModelDto.d.ts +12 -0
- package/dist/src/client/models/CreateModelDto.js +42 -0
- package/dist/src/client/models/CreateModelDto.js.map +1 -0
- package/dist/src/client/models/CreateOrUpdateIdentityProviderDto.d.ts +22 -0
- package/dist/src/client/models/CreateOrUpdateIdentityProviderDto.js +53 -0
- package/dist/src/client/models/CreateOrUpdateIdentityProviderDto.js.map +1 -0
- package/dist/src/client/models/CreateProcessFileDto.d.ts +9 -0
- package/dist/src/client/models/CreateProcessFileDto.js +32 -0
- package/dist/src/client/models/CreateProcessFileDto.js.map +1 -0
- package/dist/src/client/models/CreateTenantDto.d.ts +9 -0
- package/dist/src/client/models/CreateTenantDto.js +32 -0
- package/dist/src/client/models/CreateTenantDto.js.map +1 -0
- package/dist/src/client/models/CrudSystemActionSubject.d.ts +18 -0
- package/dist/src/client/models/CrudSystemActionSubject.js +35 -0
- package/dist/src/client/models/CrudSystemActionSubject.js.map +1 -0
- package/dist/src/client/models/CrudSystemActionType.d.ts +12 -0
- package/dist/src/client/models/CrudSystemActionType.js +29 -0
- package/dist/src/client/models/CrudSystemActionType.js.map +1 -0
- package/dist/src/client/models/CustomerPortalDto.d.ts +8 -0
- package/dist/src/client/models/CustomerPortalDto.js +28 -0
- package/dist/src/client/models/CustomerPortalDto.js.map +1 -0
- package/dist/src/client/models/ExecutionSystemActionSubject.d.ts +10 -0
- package/dist/src/client/models/ExecutionSystemActionSubject.js +27 -0
- package/dist/src/client/models/ExecutionSystemActionSubject.js.map +1 -0
- package/dist/src/client/models/ExecutionSystemActionType.d.ts +10 -0
- package/dist/src/client/models/ExecutionSystemActionType.js +27 -0
- package/dist/src/client/models/ExecutionSystemActionType.js.map +1 -0
- package/dist/src/client/models/GroupEntity.d.ts +16 -0
- package/dist/src/client/models/GroupEntity.js +57 -0
- package/dist/src/client/models/GroupEntity.js.map +1 -0
- package/dist/src/client/models/IdentityProviderEntity.d.ts +19 -0
- package/dist/src/client/models/IdentityProviderEntity.js +48 -0
- package/dist/src/client/models/IdentityProviderEntity.js.map +1 -0
- package/dist/src/client/models/ListCorsAllowedOriginResult.d.ts +10 -0
- package/dist/src/client/models/ListCorsAllowedOriginResult.js +33 -0
- package/dist/src/client/models/ListCorsAllowedOriginResult.js.map +1 -0
- package/dist/src/client/models/ListGroupsResult.d.ts +10 -0
- package/dist/src/client/models/ListGroupsResult.js +33 -0
- package/dist/src/client/models/ListGroupsResult.js.map +1 -0
- package/dist/src/client/models/ListRolesResult.d.ts +10 -0
- package/dist/src/client/models/ListRolesResult.js +33 -0
- package/dist/src/client/models/ListRolesResult.js.map +1 -0
- package/dist/src/client/models/ListUsersResult.d.ts +10 -0
- package/dist/src/client/models/ListUsersResult.js +33 -0
- package/dist/src/client/models/ListUsersResult.js.map +1 -0
- package/dist/src/client/models/ListWorkflowModelsResult.d.ts +10 -0
- package/dist/src/client/models/ListWorkflowModelsResult.js +33 -0
- package/dist/src/client/models/ListWorkflowModelsResult.js.map +1 -0
- package/dist/src/client/models/ListWorkflowProcessesResult.d.ts +10 -0
- package/dist/src/client/models/ListWorkflowProcessesResult.js +33 -0
- package/dist/src/client/models/ListWorkflowProcessesResult.js.map +1 -0
- package/dist/src/client/models/ModelWithNodeActionsEntity.d.ts +11 -0
- package/dist/src/client/models/ModelWithNodeActionsEntity.js +34 -0
- package/dist/src/client/models/ModelWithNodeActionsEntity.js.map +1 -0
- package/dist/src/client/models/NodeActionsEntity.d.ts +19 -0
- package/dist/src/client/models/NodeActionsEntity.js +41 -0
- package/dist/src/client/models/NodeActionsEntity.js.map +1 -0
- package/dist/src/client/models/OrganizationEntity.d.ts +12 -0
- package/dist/src/client/models/OrganizationEntity.js +40 -0
- package/dist/src/client/models/OrganizationEntity.js.map +1 -0
- package/dist/src/client/models/PresetSystemActionSubject.d.ts +9 -0
- package/dist/src/client/models/PresetSystemActionSubject.js +26 -0
- package/dist/src/client/models/PresetSystemActionSubject.js.map +1 -0
- package/dist/src/client/models/PresetSystemActionType.d.ts +12 -0
- package/dist/src/client/models/PresetSystemActionType.js +29 -0
- package/dist/src/client/models/PresetSystemActionType.js.map +1 -0
- package/dist/src/client/models/ProcessHistoryDiffEntity.d.ts +14 -0
- package/dist/src/client/models/ProcessHistoryDiffEntity.js +52 -0
- package/dist/src/client/models/ProcessHistoryDiffEntity.js.map +1 -0
- package/dist/src/client/models/ProcessTokenEntity.d.ts +12 -0
- package/dist/src/client/models/ProcessTokenEntity.js +44 -0
- package/dist/src/client/models/ProcessTokenEntity.js.map +1 -0
- package/dist/src/client/models/ProcessWithNodeActionsEntity.d.ts +11 -0
- package/dist/src/client/models/ProcessWithNodeActionsEntity.js +34 -0
- package/dist/src/client/models/ProcessWithNodeActionsEntity.js.map +1 -0
- package/dist/src/client/models/RoleEntity.d.ts +17 -0
- package/dist/src/client/models/RoleEntity.js +61 -0
- package/dist/src/client/models/RoleEntity.js.map +1 -0
- package/dist/src/client/models/SessionEntity.d.ts +12 -0
- package/dist/src/client/models/SessionEntity.js +40 -0
- package/dist/src/client/models/SessionEntity.js.map +1 -0
- package/dist/src/client/models/SettingEntity.d.ts +16 -0
- package/dist/src/client/models/SettingEntity.js +57 -0
- package/dist/src/client/models/SettingEntity.js.map +1 -0
- package/dist/src/client/models/SignInDto.d.ts +10 -0
- package/dist/src/client/models/SignInDto.js +36 -0
- package/dist/src/client/models/SignInDto.js.map +1 -0
- package/dist/src/client/models/SignInMethodEntity.d.ts +18 -0
- package/dist/src/client/models/SignInMethodEntity.js +49 -0
- package/dist/src/client/models/SignInMethodEntity.js.map +1 -0
- package/dist/src/client/models/SlackChannelEntity.d.ts +11 -0
- package/dist/src/client/models/SlackChannelEntity.js +40 -0
- package/dist/src/client/models/SlackChannelEntity.js.map +1 -0
- package/dist/src/client/models/SlackConnectivityResponse.d.ts +12 -0
- package/dist/src/client/models/SlackConnectivityResponse.js +44 -0
- package/dist/src/client/models/SlackConnectivityResponse.js.map +1 -0
- package/dist/src/client/models/SlackEntity.d.ts +15 -0
- package/dist/src/client/models/SlackEntity.js +53 -0
- package/dist/src/client/models/SlackEntity.js.map +1 -0
- package/dist/src/client/models/SubscribeDto.d.ts +13 -0
- package/dist/src/client/models/SubscribeDto.js +48 -0
- package/dist/src/client/models/SubscribeDto.js.map +1 -0
- package/dist/src/client/models/SubscriptionEntity.d.ts +20 -0
- package/dist/src/client/models/SubscriptionEntity.js +76 -0
- package/dist/src/client/models/SubscriptionEntity.js.map +1 -0
- package/dist/src/client/models/SystemActionPoliciesEntity.d.ts +11 -0
- package/dist/src/client/models/SystemActionPoliciesEntity.js +34 -0
- package/dist/src/client/models/SystemActionPoliciesEntity.js.map +1 -0
- package/dist/src/client/models/SystemActionPoliciesEntitySubject.d.ts +8 -0
- package/dist/src/client/models/SystemActionPoliciesEntitySubject.js +40 -0
- package/dist/src/client/models/SystemActionPoliciesEntitySubject.js.map +1 -0
- package/dist/src/client/models/SystemActionPoliciesEntityType.d.ts +8 -0
- package/dist/src/client/models/SystemActionPoliciesEntityType.js +40 -0
- package/dist/src/client/models/SystemActionPoliciesEntityType.js.map +1 -0
- package/dist/src/client/models/SystemActionPoliciesSubjectEnumWrapper.d.ts +19 -0
- package/dist/src/client/models/SystemActionPoliciesSubjectEnumWrapper.js +54 -0
- package/dist/src/client/models/SystemActionPoliciesSubjectEnumWrapper.js.map +1 -0
- package/dist/src/client/models/TenantEntity.d.ts +16 -0
- package/dist/src/client/models/TenantEntity.js +57 -0
- package/dist/src/client/models/TenantEntity.js.map +1 -0
- package/dist/src/client/models/TenantIdentityProviderEntity.d.ts +11 -0
- package/dist/src/client/models/TenantIdentityProviderEntity.js +40 -0
- package/dist/src/client/models/TenantIdentityProviderEntity.js.map +1 -0
- package/dist/src/client/models/TenantPlanStatusEntity.d.ts +13 -0
- package/dist/src/client/models/TenantPlanStatusEntity.js +42 -0
- package/dist/src/client/models/TenantPlanStatusEntity.js.map +1 -0
- package/dist/src/client/models/TenantWithSignInMethodEntity.d.ts +13 -0
- package/dist/src/client/models/TenantWithSignInMethodEntity.js +39 -0
- package/dist/src/client/models/TenantWithSignInMethodEntity.js.map +1 -0
- package/dist/src/client/models/UpdateCorsAllowedOriginDto.d.ts +9 -0
- package/dist/src/client/models/UpdateCorsAllowedOriginDto.js +32 -0
- package/dist/src/client/models/UpdateCorsAllowedOriginDto.js.map +1 -0
- package/dist/src/client/models/UpdateModelDto.d.ts +12 -0
- package/dist/src/client/models/UpdateModelDto.js +42 -0
- package/dist/src/client/models/UpdateModelDto.js.map +1 -0
- package/dist/src/client/models/UpdateOrganizationDto.d.ts +8 -0
- package/dist/src/client/models/UpdateOrganizationDto.js +28 -0
- package/dist/src/client/models/UpdateOrganizationDto.js.map +1 -0
- package/dist/src/client/models/UpdateProcessDto.d.ts +9 -0
- package/dist/src/client/models/UpdateProcessDto.js +28 -0
- package/dist/src/client/models/UpdateProcessDto.js.map +1 -0
- package/dist/src/client/models/UpdateTenantDto.d.ts +8 -0
- package/dist/src/client/models/UpdateTenantDto.js +28 -0
- package/dist/src/client/models/UpdateTenantDto.js.map +1 -0
- package/dist/src/client/models/UrlEntity.d.ts +8 -0
- package/dist/src/client/models/UrlEntity.js +28 -0
- package/dist/src/client/models/UrlEntity.js.map +1 -0
- package/dist/src/client/models/UserAuthInfoEntity.d.ts +13 -0
- package/dist/src/client/models/UserAuthInfoEntity.js +45 -0
- package/dist/src/client/models/UserAuthInfoEntity.js.map +1 -0
- package/dist/src/client/models/UserEntity.d.ts +29 -0
- package/dist/src/client/models/UserEntity.js +87 -0
- package/dist/src/client/models/UserEntity.js.map +1 -0
- package/dist/src/client/models/WorkflowModelEntity.d.ts +29 -0
- package/dist/src/client/models/WorkflowModelEntity.js +87 -0
- package/dist/src/client/models/WorkflowModelEntity.js.map +1 -0
- package/dist/src/client/models/WorkflowProcessEntity.d.ts +22 -0
- package/dist/src/client/models/WorkflowProcessEntity.js +78 -0
- package/dist/src/client/models/WorkflowProcessEntity.js.map +1 -0
- package/dist/src/client/models/index.d.ts +61 -0
- package/dist/src/client/models/index.js +62 -0
- package/dist/src/client/models/index.js.map +1 -0
- package/dist/src/client/runtime.d.ts +154 -0
- package/dist/src/client/runtime.js +297 -0
- package/dist/src/client/runtime.js.map +1 -0
- package/dist/src/index.d.ts +3 -0
- package/dist/src/index.js +4 -0
- package/dist/src/index.js.map +1 -0
- package/dist/src/useFilter.d.ts +5 -0
- package/dist/src/useFilter.js +27 -0
- package/dist/src/useFilter.js.map +1 -0
- package/package.json +1 -1
- package/src/client/apis/AccountApi.ts +1059 -0
- package/src/client/apis/ActionApi.ts +276 -0
- package/src/client/apis/AiApi.ts +193 -0
- package/src/client/apis/AuthApi.ts +338 -0
- package/src/client/apis/AuthConfigApi.ts +274 -0
- package/src/client/apis/CorsApi.ts +305 -0
- package/src/client/apis/DevelopmentApi.ts +60 -0
- package/src/client/apis/EngineApi.ts +626 -0
- package/src/client/apis/GroupApi.ts +275 -0
- package/src/client/apis/ModelApi.ts +548 -0
- package/src/client/apis/MyActionApi.ts +68 -0
- package/src/client/apis/MyModelApi.ts +216 -0
- package/src/client/apis/MyProcessApi.ts +736 -0
- package/src/client/apis/ProcessApi.ts +551 -0
- package/src/client/apis/ProfileApi.ts +97 -0
- package/src/client/apis/RoleApi.ts +225 -0
- package/src/client/apis/SettingApi.ts +144 -0
- package/src/client/apis/SlackApi.ts +314 -0
- package/src/client/apis/UsersApi.ts +411 -0
- package/src/client/apis/index.ts +21 -0
- package/src/client/index.ts +5 -0
- package/src/client/models/AccountEntity.ts +85 -0
- package/src/client/models/AskAiForDataSchemaDto.ts +78 -0
- package/src/client/models/AskAiForDefintionDto.ts +66 -0
- package/src/client/models/AuthConfigEntity.ts +129 -0
- package/src/client/models/ChatAiDto.ts +75 -0
- package/src/client/models/ChatAiResponseEntity.ts +104 -0
- package/src/client/models/CorsAllowedOriginEntity.ts +84 -0
- package/src/client/models/CreateCorsAllowedOriginDto.ts +75 -0
- package/src/client/models/CreateModelDto.ts +101 -0
- package/src/client/models/CreateOrUpdateIdentityProviderDto.ts +131 -0
- package/src/client/models/CreateProcessFileDto.ts +75 -0
- package/src/client/models/CreateTenantDto.ts +75 -0
- package/src/client/models/CrudSystemActionSubject.ts +61 -0
- package/src/client/models/CrudSystemActionType.ts +55 -0
- package/src/client/models/CustomerPortalDto.ts +66 -0
- package/src/client/models/ExecutionSystemActionSubject.ts +53 -0
- package/src/client/models/ExecutionSystemActionType.ts +53 -0
- package/src/client/models/GroupEntity.ts +138 -0
- package/src/client/models/IdentityProviderEntity.ts +127 -0
- package/src/client/models/ListCorsAllowedOriginResult.ts +83 -0
- package/src/client/models/ListGroupsResult.ts +83 -0
- package/src/client/models/ListRolesResult.ts +83 -0
- package/src/client/models/ListUsersResult.ts +83 -0
- package/src/client/models/ListWorkflowModelsResult.ts +83 -0
- package/src/client/models/ListWorkflowProcessesResult.ts +83 -0
- package/src/client/models/ModelWithNodeActionsEntity.ts +90 -0
- package/src/client/models/NodeActionsEntity.ts +91 -0
- package/src/client/models/OrganizationEntity.ts +100 -0
- package/src/client/models/PresetSystemActionSubject.ts +52 -0
- package/src/client/models/PresetSystemActionType.ts +55 -0
- package/src/client/models/ProcessHistoryDiffEntity.ts +120 -0
- package/src/client/models/ProcessTokenEntity.ts +102 -0
- package/src/client/models/ProcessWithNodeActionsEntity.ts +90 -0
- package/src/client/models/RoleEntity.ts +147 -0
- package/src/client/models/SessionEntity.ts +100 -0
- package/src/client/models/SettingEntity.ts +137 -0
- package/src/client/models/SignInDto.ts +84 -0
- package/src/client/models/SignInMethodEntity.ts +115 -0
- package/src/client/models/SlackChannelEntity.ts +95 -0
- package/src/client/models/SlackConnectivityResponse.ts +104 -0
- package/src/client/models/SlackEntity.ts +129 -0
- package/src/client/models/SubscribeDto.ts +111 -0
- package/src/client/models/SubscriptionEntity.ts +174 -0
- package/src/client/models/SystemActionPoliciesEntity.ts +90 -0
- package/src/client/models/SystemActionPoliciesEntitySubject.ts +86 -0
- package/src/client/models/SystemActionPoliciesEntityType.ts +86 -0
- package/src/client/models/SystemActionPoliciesSubjectEnumWrapper.ts +156 -0
- package/src/client/models/TenantEntity.ts +138 -0
- package/src/client/models/TenantIdentityProviderEntity.ts +93 -0
- package/src/client/models/TenantPlanStatusEntity.ts +108 -0
- package/src/client/models/TenantWithSignInMethodEntity.ts +106 -0
- package/src/client/models/UpdateCorsAllowedOriginDto.ts +75 -0
- package/src/client/models/UpdateModelDto.ts +101 -0
- package/src/client/models/UpdateOrganizationDto.ts +66 -0
- package/src/client/models/UpdateProcessDto.ts +73 -0
- package/src/client/models/UpdateTenantDto.ts +66 -0
- package/src/client/models/UrlEntity.ts +66 -0
- package/src/client/models/UserAuthInfoEntity.ts +110 -0
- package/src/client/models/UserEntity.ts +216 -0
- package/src/client/models/WorkflowModelEntity.ts +205 -0
- package/src/client/models/WorkflowProcessEntity.ts +191 -0
- package/src/client/models/index.ts +63 -0
- package/src/client/runtime.ts +431 -0
|
@@ -0,0 +1,205 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* acomo API docs
|
|
5
|
+
* acomoのAPI仕様書です。
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.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
|
+
import { mapValues } from '../runtime';
|
|
16
|
+
import type { UserEntity } from './UserEntity';
|
|
17
|
+
import {
|
|
18
|
+
UserEntityFromJSON,
|
|
19
|
+
UserEntityFromJSONTyped,
|
|
20
|
+
UserEntityToJSON,
|
|
21
|
+
UserEntityToJSONTyped,
|
|
22
|
+
} from './UserEntity';
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @export
|
|
27
|
+
* @interface WorkflowModelEntity
|
|
28
|
+
*/
|
|
29
|
+
export interface WorkflowModelEntity {
|
|
30
|
+
/**
|
|
31
|
+
*
|
|
32
|
+
* @type {UserEntity}
|
|
33
|
+
* @memberof WorkflowModelEntity
|
|
34
|
+
*/
|
|
35
|
+
createdBy: UserEntity;
|
|
36
|
+
/**
|
|
37
|
+
*
|
|
38
|
+
* @type {UserEntity}
|
|
39
|
+
* @memberof WorkflowModelEntity
|
|
40
|
+
*/
|
|
41
|
+
updatedBy: UserEntity;
|
|
42
|
+
/**
|
|
43
|
+
* ワークフロー定義
|
|
44
|
+
* @type {object}
|
|
45
|
+
* @memberof WorkflowModelEntity
|
|
46
|
+
*/
|
|
47
|
+
definition: object;
|
|
48
|
+
/**
|
|
49
|
+
* データスキーマ
|
|
50
|
+
* @type {object}
|
|
51
|
+
* @memberof WorkflowModelEntity
|
|
52
|
+
*/
|
|
53
|
+
dataSchema: object;
|
|
54
|
+
/**
|
|
55
|
+
* データアクセスポリシー
|
|
56
|
+
* @type {object}
|
|
57
|
+
* @memberof WorkflowModelEntity
|
|
58
|
+
*/
|
|
59
|
+
policy: object;
|
|
60
|
+
/**
|
|
61
|
+
* 履歴の種別
|
|
62
|
+
* [create, update, publish]
|
|
63
|
+
* @type {string}
|
|
64
|
+
* @memberof WorkflowModelEntity
|
|
65
|
+
*/
|
|
66
|
+
historyType: WorkflowModelEntityHistoryTypeEnum;
|
|
67
|
+
/**
|
|
68
|
+
* ワークフローモデルID
|
|
69
|
+
* @type {string}
|
|
70
|
+
* @memberof WorkflowModelEntity
|
|
71
|
+
*/
|
|
72
|
+
id: string;
|
|
73
|
+
/**
|
|
74
|
+
* ワークフローモデル履歴ID
|
|
75
|
+
* @type {string}
|
|
76
|
+
* @memberof WorkflowModelEntity
|
|
77
|
+
*/
|
|
78
|
+
historyId: string;
|
|
79
|
+
/**
|
|
80
|
+
* 現在公開されているかモデルであるかを示します
|
|
81
|
+
* @type {boolean}
|
|
82
|
+
* @memberof WorkflowModelEntity
|
|
83
|
+
*/
|
|
84
|
+
isPublished: boolean;
|
|
85
|
+
/**
|
|
86
|
+
* 作成日時
|
|
87
|
+
* @type {Date}
|
|
88
|
+
* @memberof WorkflowModelEntity
|
|
89
|
+
*/
|
|
90
|
+
createdAt: Date;
|
|
91
|
+
/**
|
|
92
|
+
* 更新日時
|
|
93
|
+
* @type {Date}
|
|
94
|
+
* @memberof WorkflowModelEntity
|
|
95
|
+
*/
|
|
96
|
+
updatedAt: Date;
|
|
97
|
+
/**
|
|
98
|
+
*
|
|
99
|
+
* @type {string}
|
|
100
|
+
* @memberof WorkflowModelEntity
|
|
101
|
+
*/
|
|
102
|
+
name: string;
|
|
103
|
+
/**
|
|
104
|
+
* 説明
|
|
105
|
+
* @type {string}
|
|
106
|
+
* @memberof WorkflowModelEntity
|
|
107
|
+
*/
|
|
108
|
+
description: string;
|
|
109
|
+
/**
|
|
110
|
+
* バージョン
|
|
111
|
+
* @type {number}
|
|
112
|
+
* @memberof WorkflowModelEntity
|
|
113
|
+
*/
|
|
114
|
+
version: number;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
/**
|
|
119
|
+
* @export
|
|
120
|
+
*/
|
|
121
|
+
export const WorkflowModelEntityHistoryTypeEnum = {
|
|
122
|
+
Create: 'create',
|
|
123
|
+
Update: 'update',
|
|
124
|
+
Publish: 'publish',
|
|
125
|
+
Deactivate: 'deactivate'
|
|
126
|
+
} as const;
|
|
127
|
+
export type WorkflowModelEntityHistoryTypeEnum = typeof WorkflowModelEntityHistoryTypeEnum[keyof typeof WorkflowModelEntityHistoryTypeEnum];
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
/**
|
|
131
|
+
* Check if a given object implements the WorkflowModelEntity interface.
|
|
132
|
+
*/
|
|
133
|
+
export function instanceOfWorkflowModelEntity(value: object): value is WorkflowModelEntity {
|
|
134
|
+
if (!('createdBy' in value) || value['createdBy'] === undefined) return false;
|
|
135
|
+
if (!('updatedBy' in value) || value['updatedBy'] === undefined) return false;
|
|
136
|
+
if (!('definition' in value) || value['definition'] === undefined) return false;
|
|
137
|
+
if (!('dataSchema' in value) || value['dataSchema'] === undefined) return false;
|
|
138
|
+
if (!('policy' in value) || value['policy'] === undefined) return false;
|
|
139
|
+
if (!('historyType' in value) || value['historyType'] === undefined) return false;
|
|
140
|
+
if (!('id' in value) || value['id'] === undefined) return false;
|
|
141
|
+
if (!('historyId' in value) || value['historyId'] === undefined) return false;
|
|
142
|
+
if (!('isPublished' in value) || value['isPublished'] === undefined) return false;
|
|
143
|
+
if (!('createdAt' in value) || value['createdAt'] === undefined) return false;
|
|
144
|
+
if (!('updatedAt' in value) || value['updatedAt'] === undefined) return false;
|
|
145
|
+
if (!('name' in value) || value['name'] === undefined) return false;
|
|
146
|
+
if (!('description' in value) || value['description'] === undefined) return false;
|
|
147
|
+
if (!('version' in value) || value['version'] === undefined) return false;
|
|
148
|
+
return true;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
export function WorkflowModelEntityFromJSON(json: any): WorkflowModelEntity {
|
|
152
|
+
return WorkflowModelEntityFromJSONTyped(json, false);
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
export function WorkflowModelEntityFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkflowModelEntity {
|
|
156
|
+
if (json == null) {
|
|
157
|
+
return json;
|
|
158
|
+
}
|
|
159
|
+
return {
|
|
160
|
+
|
|
161
|
+
'createdBy': UserEntityFromJSON(json['createdBy']),
|
|
162
|
+
'updatedBy': UserEntityFromJSON(json['updatedBy']),
|
|
163
|
+
'definition': json['definition'],
|
|
164
|
+
'dataSchema': json['dataSchema'],
|
|
165
|
+
'policy': json['policy'],
|
|
166
|
+
'historyType': json['historyType'],
|
|
167
|
+
'id': json['id'],
|
|
168
|
+
'historyId': json['historyId'],
|
|
169
|
+
'isPublished': json['isPublished'],
|
|
170
|
+
'createdAt': (new Date(json['createdAt'])),
|
|
171
|
+
'updatedAt': (new Date(json['updatedAt'])),
|
|
172
|
+
'name': json['name'],
|
|
173
|
+
'description': json['description'],
|
|
174
|
+
'version': json['version'],
|
|
175
|
+
};
|
|
176
|
+
}
|
|
177
|
+
|
|
178
|
+
export function WorkflowModelEntityToJSON(json: any): WorkflowModelEntity {
|
|
179
|
+
return WorkflowModelEntityToJSONTyped(json, false);
|
|
180
|
+
}
|
|
181
|
+
|
|
182
|
+
export function WorkflowModelEntityToJSONTyped(value?: WorkflowModelEntity | null, ignoreDiscriminator: boolean = false): any {
|
|
183
|
+
if (value == null) {
|
|
184
|
+
return value;
|
|
185
|
+
}
|
|
186
|
+
|
|
187
|
+
return {
|
|
188
|
+
|
|
189
|
+
'createdBy': UserEntityToJSON(value['createdBy']),
|
|
190
|
+
'updatedBy': UserEntityToJSON(value['updatedBy']),
|
|
191
|
+
'definition': value['definition'],
|
|
192
|
+
'dataSchema': value['dataSchema'],
|
|
193
|
+
'policy': value['policy'],
|
|
194
|
+
'historyType': value['historyType'],
|
|
195
|
+
'id': value['id'],
|
|
196
|
+
'historyId': value['historyId'],
|
|
197
|
+
'isPublished': value['isPublished'],
|
|
198
|
+
'createdAt': ((value['createdAt']).toISOString()),
|
|
199
|
+
'updatedAt': ((value['updatedAt']).toISOString()),
|
|
200
|
+
'name': value['name'],
|
|
201
|
+
'description': value['description'],
|
|
202
|
+
'version': value['version'],
|
|
203
|
+
};
|
|
204
|
+
}
|
|
205
|
+
|
|
@@ -0,0 +1,191 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
/**
|
|
4
|
+
* acomo API docs
|
|
5
|
+
* acomoのAPI仕様書です。
|
|
6
|
+
*
|
|
7
|
+
* The version of the OpenAPI document: 1.0.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
|
+
import { mapValues } from '../runtime';
|
|
16
|
+
import type { WorkflowModelEntity } from './WorkflowModelEntity';
|
|
17
|
+
import {
|
|
18
|
+
WorkflowModelEntityFromJSON,
|
|
19
|
+
WorkflowModelEntityFromJSONTyped,
|
|
20
|
+
WorkflowModelEntityToJSON,
|
|
21
|
+
WorkflowModelEntityToJSONTyped,
|
|
22
|
+
} from './WorkflowModelEntity';
|
|
23
|
+
import type { ProcessTokenEntity } from './ProcessTokenEntity';
|
|
24
|
+
import {
|
|
25
|
+
ProcessTokenEntityFromJSON,
|
|
26
|
+
ProcessTokenEntityFromJSONTyped,
|
|
27
|
+
ProcessTokenEntityToJSON,
|
|
28
|
+
ProcessTokenEntityToJSONTyped,
|
|
29
|
+
} from './ProcessTokenEntity';
|
|
30
|
+
|
|
31
|
+
/**
|
|
32
|
+
*
|
|
33
|
+
* @export
|
|
34
|
+
* @interface WorkflowProcessEntity
|
|
35
|
+
*/
|
|
36
|
+
export interface WorkflowProcessEntity {
|
|
37
|
+
/**
|
|
38
|
+
* ワークフロープロセスID
|
|
39
|
+
* @type {string}
|
|
40
|
+
* @memberof WorkflowProcessEntity
|
|
41
|
+
*/
|
|
42
|
+
id: string;
|
|
43
|
+
/**
|
|
44
|
+
* ワークフロープロセス履歴ID
|
|
45
|
+
* @type {string}
|
|
46
|
+
* @memberof WorkflowProcessEntity
|
|
47
|
+
*/
|
|
48
|
+
historyId: string;
|
|
49
|
+
/**
|
|
50
|
+
* プロセス名
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof WorkflowProcessEntity
|
|
53
|
+
*/
|
|
54
|
+
name: string;
|
|
55
|
+
/**
|
|
56
|
+
* 説明
|
|
57
|
+
* @type {string}
|
|
58
|
+
* @memberof WorkflowProcessEntity
|
|
59
|
+
*/
|
|
60
|
+
description: string;
|
|
61
|
+
/**
|
|
62
|
+
* ワークフローモデル
|
|
63
|
+
* @type {WorkflowModelEntity}
|
|
64
|
+
* @memberof WorkflowProcessEntity
|
|
65
|
+
*/
|
|
66
|
+
model: WorkflowModelEntity;
|
|
67
|
+
/**
|
|
68
|
+
* 作成日時
|
|
69
|
+
* @type {Date}
|
|
70
|
+
* @memberof WorkflowProcessEntity
|
|
71
|
+
*/
|
|
72
|
+
createdAt: Date;
|
|
73
|
+
/**
|
|
74
|
+
* 更新日時
|
|
75
|
+
* @type {Date}
|
|
76
|
+
* @memberof WorkflowProcessEntity
|
|
77
|
+
*/
|
|
78
|
+
updatedAt: Date;
|
|
79
|
+
/**
|
|
80
|
+
* 以下プロセス履歴のプロパティ
|
|
81
|
+
* プロセス履歴を意識せずに扱えるような仕組みを目標
|
|
82
|
+
* @type {ProcessTokenEntity}
|
|
83
|
+
* @memberof WorkflowProcessEntity
|
|
84
|
+
*/
|
|
85
|
+
token: ProcessTokenEntity;
|
|
86
|
+
/**
|
|
87
|
+
* プロセスステータス
|
|
88
|
+
* @type {object}
|
|
89
|
+
* @memberof WorkflowProcessEntity
|
|
90
|
+
*/
|
|
91
|
+
status: object;
|
|
92
|
+
/**
|
|
93
|
+
* プロセスデータ
|
|
94
|
+
* @type {object}
|
|
95
|
+
* @memberof WorkflowProcessEntity
|
|
96
|
+
*/
|
|
97
|
+
data: object;
|
|
98
|
+
/**
|
|
99
|
+
* プロセス履歴種別
|
|
100
|
+
* @type {string}
|
|
101
|
+
* @memberof WorkflowProcessEntity
|
|
102
|
+
*/
|
|
103
|
+
type: string;
|
|
104
|
+
/**
|
|
105
|
+
* メタデータ
|
|
106
|
+
* @type {object}
|
|
107
|
+
* @memberof WorkflowProcessEntity
|
|
108
|
+
*/
|
|
109
|
+
metadata: object;
|
|
110
|
+
/**
|
|
111
|
+
* ワークフローモデルエンティティのキャッシュ
|
|
112
|
+
* metadataから生成した展開済みのモデルエンティティのキャッシュはここに持つ
|
|
113
|
+
* @type {object}
|
|
114
|
+
* @memberof WorkflowProcessEntity
|
|
115
|
+
*/
|
|
116
|
+
definitionEntityCache: object;
|
|
117
|
+
}
|
|
118
|
+
|
|
119
|
+
/**
|
|
120
|
+
* Check if a given object implements the WorkflowProcessEntity interface.
|
|
121
|
+
*/
|
|
122
|
+
export function instanceOfWorkflowProcessEntity(value: object): value is WorkflowProcessEntity {
|
|
123
|
+
if (!('id' in value) || value['id'] === undefined) return false;
|
|
124
|
+
if (!('historyId' in value) || value['historyId'] === undefined) return false;
|
|
125
|
+
if (!('name' in value) || value['name'] === undefined) return false;
|
|
126
|
+
if (!('description' in value) || value['description'] === undefined) return false;
|
|
127
|
+
if (!('model' in value) || value['model'] === undefined) return false;
|
|
128
|
+
if (!('createdAt' in value) || value['createdAt'] === undefined) return false;
|
|
129
|
+
if (!('updatedAt' in value) || value['updatedAt'] === undefined) return false;
|
|
130
|
+
if (!('token' in value) || value['token'] === undefined) return false;
|
|
131
|
+
if (!('status' in value) || value['status'] === undefined) return false;
|
|
132
|
+
if (!('data' in value) || value['data'] === undefined) return false;
|
|
133
|
+
if (!('type' in value) || value['type'] === undefined) return false;
|
|
134
|
+
if (!('metadata' in value) || value['metadata'] === undefined) return false;
|
|
135
|
+
if (!('definitionEntityCache' in value) || value['definitionEntityCache'] === undefined) return false;
|
|
136
|
+
return true;
|
|
137
|
+
}
|
|
138
|
+
|
|
139
|
+
export function WorkflowProcessEntityFromJSON(json: any): WorkflowProcessEntity {
|
|
140
|
+
return WorkflowProcessEntityFromJSONTyped(json, false);
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
export function WorkflowProcessEntityFromJSONTyped(json: any, ignoreDiscriminator: boolean): WorkflowProcessEntity {
|
|
144
|
+
if (json == null) {
|
|
145
|
+
return json;
|
|
146
|
+
}
|
|
147
|
+
return {
|
|
148
|
+
|
|
149
|
+
'id': json['id'],
|
|
150
|
+
'historyId': json['historyId'],
|
|
151
|
+
'name': json['name'],
|
|
152
|
+
'description': json['description'],
|
|
153
|
+
'model': WorkflowModelEntityFromJSON(json['model']),
|
|
154
|
+
'createdAt': (new Date(json['createdAt'])),
|
|
155
|
+
'updatedAt': (new Date(json['updatedAt'])),
|
|
156
|
+
'token': ProcessTokenEntityFromJSON(json['token']),
|
|
157
|
+
'status': json['status'],
|
|
158
|
+
'data': json['data'],
|
|
159
|
+
'type': json['type'],
|
|
160
|
+
'metadata': json['metadata'],
|
|
161
|
+
'definitionEntityCache': json['definitionEntityCache'],
|
|
162
|
+
};
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
export function WorkflowProcessEntityToJSON(json: any): WorkflowProcessEntity {
|
|
166
|
+
return WorkflowProcessEntityToJSONTyped(json, false);
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
export function WorkflowProcessEntityToJSONTyped(value?: WorkflowProcessEntity | null, ignoreDiscriminator: boolean = false): any {
|
|
170
|
+
if (value == null) {
|
|
171
|
+
return value;
|
|
172
|
+
}
|
|
173
|
+
|
|
174
|
+
return {
|
|
175
|
+
|
|
176
|
+
'id': value['id'],
|
|
177
|
+
'historyId': value['historyId'],
|
|
178
|
+
'name': value['name'],
|
|
179
|
+
'description': value['description'],
|
|
180
|
+
'model': WorkflowModelEntityToJSON(value['model']),
|
|
181
|
+
'createdAt': ((value['createdAt']).toISOString()),
|
|
182
|
+
'updatedAt': ((value['updatedAt']).toISOString()),
|
|
183
|
+
'token': ProcessTokenEntityToJSON(value['token']),
|
|
184
|
+
'status': value['status'],
|
|
185
|
+
'data': value['data'],
|
|
186
|
+
'type': value['type'],
|
|
187
|
+
'metadata': value['metadata'],
|
|
188
|
+
'definitionEntityCache': value['definitionEntityCache'],
|
|
189
|
+
};
|
|
190
|
+
}
|
|
191
|
+
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
/* tslint:disable */
|
|
2
|
+
/* eslint-disable */
|
|
3
|
+
export * from './AccountEntity';
|
|
4
|
+
export * from './AskAiForDataSchemaDto';
|
|
5
|
+
export * from './AskAiForDefintionDto';
|
|
6
|
+
export * from './AuthConfigEntity';
|
|
7
|
+
export * from './ChatAiDto';
|
|
8
|
+
export * from './ChatAiResponseEntity';
|
|
9
|
+
export * from './CorsAllowedOriginEntity';
|
|
10
|
+
export * from './CreateCorsAllowedOriginDto';
|
|
11
|
+
export * from './CreateModelDto';
|
|
12
|
+
export * from './CreateOrUpdateIdentityProviderDto';
|
|
13
|
+
export * from './CreateProcessFileDto';
|
|
14
|
+
export * from './CreateTenantDto';
|
|
15
|
+
export * from './CrudSystemActionSubject';
|
|
16
|
+
export * from './CrudSystemActionType';
|
|
17
|
+
export * from './CustomerPortalDto';
|
|
18
|
+
export * from './ExecutionSystemActionSubject';
|
|
19
|
+
export * from './ExecutionSystemActionType';
|
|
20
|
+
export * from './GroupEntity';
|
|
21
|
+
export * from './IdentityProviderEntity';
|
|
22
|
+
export * from './ListCorsAllowedOriginResult';
|
|
23
|
+
export * from './ListGroupsResult';
|
|
24
|
+
export * from './ListRolesResult';
|
|
25
|
+
export * from './ListUsersResult';
|
|
26
|
+
export * from './ListWorkflowModelsResult';
|
|
27
|
+
export * from './ListWorkflowProcessesResult';
|
|
28
|
+
export * from './ModelWithNodeActionsEntity';
|
|
29
|
+
export * from './NodeActionsEntity';
|
|
30
|
+
export * from './OrganizationEntity';
|
|
31
|
+
export * from './PresetSystemActionSubject';
|
|
32
|
+
export * from './PresetSystemActionType';
|
|
33
|
+
export * from './ProcessHistoryDiffEntity';
|
|
34
|
+
export * from './ProcessTokenEntity';
|
|
35
|
+
export * from './ProcessWithNodeActionsEntity';
|
|
36
|
+
export * from './RoleEntity';
|
|
37
|
+
export * from './SessionEntity';
|
|
38
|
+
export * from './SettingEntity';
|
|
39
|
+
export * from './SignInDto';
|
|
40
|
+
export * from './SignInMethodEntity';
|
|
41
|
+
export * from './SlackChannelEntity';
|
|
42
|
+
export * from './SlackConnectivityResponse';
|
|
43
|
+
export * from './SlackEntity';
|
|
44
|
+
export * from './SubscribeDto';
|
|
45
|
+
export * from './SubscriptionEntity';
|
|
46
|
+
export * from './SystemActionPoliciesEntity';
|
|
47
|
+
export * from './SystemActionPoliciesEntitySubject';
|
|
48
|
+
export * from './SystemActionPoliciesEntityType';
|
|
49
|
+
export * from './SystemActionPoliciesSubjectEnumWrapper';
|
|
50
|
+
export * from './TenantEntity';
|
|
51
|
+
export * from './TenantIdentityProviderEntity';
|
|
52
|
+
export * from './TenantPlanStatusEntity';
|
|
53
|
+
export * from './TenantWithSignInMethodEntity';
|
|
54
|
+
export * from './UpdateCorsAllowedOriginDto';
|
|
55
|
+
export * from './UpdateModelDto';
|
|
56
|
+
export * from './UpdateOrganizationDto';
|
|
57
|
+
export * from './UpdateProcessDto';
|
|
58
|
+
export * from './UpdateTenantDto';
|
|
59
|
+
export * from './UrlEntity';
|
|
60
|
+
export * from './UserAuthInfoEntity';
|
|
61
|
+
export * from './UserEntity';
|
|
62
|
+
export * from './WorkflowModelEntity';
|
|
63
|
+
export * from './WorkflowProcessEntity';
|