@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,101 @@
|
|
|
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
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface UpdateModelDto
|
|
20
|
+
*/
|
|
21
|
+
export interface UpdateModelDto {
|
|
22
|
+
/**
|
|
23
|
+
* モデル名
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof UpdateModelDto
|
|
26
|
+
*/
|
|
27
|
+
name: string;
|
|
28
|
+
/**
|
|
29
|
+
* 説明
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof UpdateModelDto
|
|
32
|
+
*/
|
|
33
|
+
description?: string;
|
|
34
|
+
/**
|
|
35
|
+
* ワークフロー定義
|
|
36
|
+
* @type {object}
|
|
37
|
+
* @memberof UpdateModelDto
|
|
38
|
+
*/
|
|
39
|
+
definition: object;
|
|
40
|
+
/**
|
|
41
|
+
* データスキーマ
|
|
42
|
+
* @type {object}
|
|
43
|
+
* @memberof UpdateModelDto
|
|
44
|
+
*/
|
|
45
|
+
dataSchema: object;
|
|
46
|
+
/**
|
|
47
|
+
* データアクセスポリシー
|
|
48
|
+
* @type {object}
|
|
49
|
+
* @memberof UpdateModelDto
|
|
50
|
+
*/
|
|
51
|
+
policy: object;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
/**
|
|
55
|
+
* Check if a given object implements the UpdateModelDto interface.
|
|
56
|
+
*/
|
|
57
|
+
export function instanceOfUpdateModelDto(value: object): value is UpdateModelDto {
|
|
58
|
+
if (!('name' in value) || value['name'] === undefined) return false;
|
|
59
|
+
if (!('definition' in value) || value['definition'] === undefined) return false;
|
|
60
|
+
if (!('dataSchema' in value) || value['dataSchema'] === undefined) return false;
|
|
61
|
+
if (!('policy' in value) || value['policy'] === undefined) return false;
|
|
62
|
+
return true;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
export function UpdateModelDtoFromJSON(json: any): UpdateModelDto {
|
|
66
|
+
return UpdateModelDtoFromJSONTyped(json, false);
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
export function UpdateModelDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateModelDto {
|
|
70
|
+
if (json == null) {
|
|
71
|
+
return json;
|
|
72
|
+
}
|
|
73
|
+
return {
|
|
74
|
+
|
|
75
|
+
'name': json['name'],
|
|
76
|
+
'description': json['description'] == null ? undefined : json['description'],
|
|
77
|
+
'definition': json['definition'],
|
|
78
|
+
'dataSchema': json['dataSchema'],
|
|
79
|
+
'policy': json['policy'],
|
|
80
|
+
};
|
|
81
|
+
}
|
|
82
|
+
|
|
83
|
+
export function UpdateModelDtoToJSON(json: any): UpdateModelDto {
|
|
84
|
+
return UpdateModelDtoToJSONTyped(json, false);
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export function UpdateModelDtoToJSONTyped(value?: UpdateModelDto | null, ignoreDiscriminator: boolean = false): any {
|
|
88
|
+
if (value == null) {
|
|
89
|
+
return value;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
return {
|
|
93
|
+
|
|
94
|
+
'name': value['name'],
|
|
95
|
+
'description': value['description'],
|
|
96
|
+
'definition': value['definition'],
|
|
97
|
+
'dataSchema': value['dataSchema'],
|
|
98
|
+
'policy': value['policy'],
|
|
99
|
+
};
|
|
100
|
+
}
|
|
101
|
+
|
|
@@ -0,0 +1,66 @@
|
|
|
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
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface UpdateOrganizationDto
|
|
20
|
+
*/
|
|
21
|
+
export interface UpdateOrganizationDto {
|
|
22
|
+
/**
|
|
23
|
+
* 組織名
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof UpdateOrganizationDto
|
|
26
|
+
*/
|
|
27
|
+
name: string;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Check if a given object implements the UpdateOrganizationDto interface.
|
|
32
|
+
*/
|
|
33
|
+
export function instanceOfUpdateOrganizationDto(value: object): value is UpdateOrganizationDto {
|
|
34
|
+
if (!('name' in value) || value['name'] === undefined) return false;
|
|
35
|
+
return true;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export function UpdateOrganizationDtoFromJSON(json: any): UpdateOrganizationDto {
|
|
39
|
+
return UpdateOrganizationDtoFromJSONTyped(json, false);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export function UpdateOrganizationDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateOrganizationDto {
|
|
43
|
+
if (json == null) {
|
|
44
|
+
return json;
|
|
45
|
+
}
|
|
46
|
+
return {
|
|
47
|
+
|
|
48
|
+
'name': json['name'],
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export function UpdateOrganizationDtoToJSON(json: any): UpdateOrganizationDto {
|
|
53
|
+
return UpdateOrganizationDtoToJSONTyped(json, false);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export function UpdateOrganizationDtoToJSONTyped(value?: UpdateOrganizationDto | null, ignoreDiscriminator: boolean = false): any {
|
|
57
|
+
if (value == null) {
|
|
58
|
+
return value;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
return {
|
|
62
|
+
|
|
63
|
+
'name': value['name'],
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
|
|
@@ -0,0 +1,73 @@
|
|
|
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
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface UpdateProcessDto
|
|
20
|
+
*/
|
|
21
|
+
export interface UpdateProcessDto {
|
|
22
|
+
/**
|
|
23
|
+
* プロセス名
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof UpdateProcessDto
|
|
26
|
+
*/
|
|
27
|
+
name?: string;
|
|
28
|
+
/**
|
|
29
|
+
* 説明
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof UpdateProcessDto
|
|
32
|
+
*/
|
|
33
|
+
description?: string;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Check if a given object implements the UpdateProcessDto interface.
|
|
38
|
+
*/
|
|
39
|
+
export function instanceOfUpdateProcessDto(value: object): value is UpdateProcessDto {
|
|
40
|
+
return true;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
export function UpdateProcessDtoFromJSON(json: any): UpdateProcessDto {
|
|
44
|
+
return UpdateProcessDtoFromJSONTyped(json, false);
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
export function UpdateProcessDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateProcessDto {
|
|
48
|
+
if (json == null) {
|
|
49
|
+
return json;
|
|
50
|
+
}
|
|
51
|
+
return {
|
|
52
|
+
|
|
53
|
+
'name': json['name'] == null ? undefined : json['name'],
|
|
54
|
+
'description': json['description'] == null ? undefined : json['description'],
|
|
55
|
+
};
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export function UpdateProcessDtoToJSON(json: any): UpdateProcessDto {
|
|
59
|
+
return UpdateProcessDtoToJSONTyped(json, false);
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
export function UpdateProcessDtoToJSONTyped(value?: UpdateProcessDto | null, ignoreDiscriminator: boolean = false): any {
|
|
63
|
+
if (value == null) {
|
|
64
|
+
return value;
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
return {
|
|
68
|
+
|
|
69
|
+
'name': value['name'],
|
|
70
|
+
'description': value['description'],
|
|
71
|
+
};
|
|
72
|
+
}
|
|
73
|
+
|
|
@@ -0,0 +1,66 @@
|
|
|
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
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface UpdateTenantDto
|
|
20
|
+
*/
|
|
21
|
+
export interface UpdateTenantDto {
|
|
22
|
+
/**
|
|
23
|
+
* テナント名
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof UpdateTenantDto
|
|
26
|
+
*/
|
|
27
|
+
name: string;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Check if a given object implements the UpdateTenantDto interface.
|
|
32
|
+
*/
|
|
33
|
+
export function instanceOfUpdateTenantDto(value: object): value is UpdateTenantDto {
|
|
34
|
+
if (!('name' in value) || value['name'] === undefined) return false;
|
|
35
|
+
return true;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export function UpdateTenantDtoFromJSON(json: any): UpdateTenantDto {
|
|
39
|
+
return UpdateTenantDtoFromJSONTyped(json, false);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export function UpdateTenantDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): UpdateTenantDto {
|
|
43
|
+
if (json == null) {
|
|
44
|
+
return json;
|
|
45
|
+
}
|
|
46
|
+
return {
|
|
47
|
+
|
|
48
|
+
'name': json['name'],
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export function UpdateTenantDtoToJSON(json: any): UpdateTenantDto {
|
|
53
|
+
return UpdateTenantDtoToJSONTyped(json, false);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export function UpdateTenantDtoToJSONTyped(value?: UpdateTenantDto | null, ignoreDiscriminator: boolean = false): any {
|
|
57
|
+
if (value == null) {
|
|
58
|
+
return value;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
return {
|
|
62
|
+
|
|
63
|
+
'name': value['name'],
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
|
|
@@ -0,0 +1,66 @@
|
|
|
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
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
* @interface UrlEntity
|
|
20
|
+
*/
|
|
21
|
+
export interface UrlEntity {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof UrlEntity
|
|
26
|
+
*/
|
|
27
|
+
url: string;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Check if a given object implements the UrlEntity interface.
|
|
32
|
+
*/
|
|
33
|
+
export function instanceOfUrlEntity(value: object): value is UrlEntity {
|
|
34
|
+
if (!('url' in value) || value['url'] === undefined) return false;
|
|
35
|
+
return true;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export function UrlEntityFromJSON(json: any): UrlEntity {
|
|
39
|
+
return UrlEntityFromJSONTyped(json, false);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export function UrlEntityFromJSONTyped(json: any, ignoreDiscriminator: boolean): UrlEntity {
|
|
43
|
+
if (json == null) {
|
|
44
|
+
return json;
|
|
45
|
+
}
|
|
46
|
+
return {
|
|
47
|
+
|
|
48
|
+
'url': json['url'],
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export function UrlEntityToJSON(json: any): UrlEntity {
|
|
53
|
+
return UrlEntityToJSONTyped(json, false);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export function UrlEntityToJSONTyped(value?: UrlEntity | null, ignoreDiscriminator: boolean = false): any {
|
|
57
|
+
if (value == null) {
|
|
58
|
+
return value;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
return {
|
|
62
|
+
|
|
63
|
+
'url': value['url'],
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
|
|
@@ -0,0 +1,110 @@
|
|
|
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 { SignInMethodEntity } from './SignInMethodEntity';
|
|
17
|
+
import {
|
|
18
|
+
SignInMethodEntityFromJSON,
|
|
19
|
+
SignInMethodEntityFromJSONTyped,
|
|
20
|
+
SignInMethodEntityToJSON,
|
|
21
|
+
SignInMethodEntityToJSONTyped,
|
|
22
|
+
} from './SignInMethodEntity';
|
|
23
|
+
|
|
24
|
+
/**
|
|
25
|
+
*
|
|
26
|
+
* @export
|
|
27
|
+
* @interface UserAuthInfoEntity
|
|
28
|
+
*/
|
|
29
|
+
export interface UserAuthInfoEntity {
|
|
30
|
+
/**
|
|
31
|
+
* ユーザーID
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof UserAuthInfoEntity
|
|
34
|
+
*/
|
|
35
|
+
id: string;
|
|
36
|
+
/**
|
|
37
|
+
* テナントID
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof UserAuthInfoEntity
|
|
40
|
+
*/
|
|
41
|
+
tenantId: string;
|
|
42
|
+
/**
|
|
43
|
+
* メールアドレス
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof UserAuthInfoEntity
|
|
46
|
+
*/
|
|
47
|
+
email: string;
|
|
48
|
+
/**
|
|
49
|
+
* 登録日時(アカウントが作成された日付)
|
|
50
|
+
* @type {number}
|
|
51
|
+
* @memberof UserAuthInfoEntity
|
|
52
|
+
*/
|
|
53
|
+
creationTime: number;
|
|
54
|
+
/**
|
|
55
|
+
*
|
|
56
|
+
* @type {Array<SignInMethodEntity>}
|
|
57
|
+
* @memberof UserAuthInfoEntity
|
|
58
|
+
*/
|
|
59
|
+
signInMethods: Array<SignInMethodEntity>;
|
|
60
|
+
}
|
|
61
|
+
|
|
62
|
+
/**
|
|
63
|
+
* Check if a given object implements the UserAuthInfoEntity interface.
|
|
64
|
+
*/
|
|
65
|
+
export function instanceOfUserAuthInfoEntity(value: object): value is UserAuthInfoEntity {
|
|
66
|
+
if (!('id' in value) || value['id'] === undefined) return false;
|
|
67
|
+
if (!('tenantId' in value) || value['tenantId'] === undefined) return false;
|
|
68
|
+
if (!('email' in value) || value['email'] === undefined) return false;
|
|
69
|
+
if (!('creationTime' in value) || value['creationTime'] === undefined) return false;
|
|
70
|
+
if (!('signInMethods' in value) || value['signInMethods'] === undefined) return false;
|
|
71
|
+
return true;
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
export function UserAuthInfoEntityFromJSON(json: any): UserAuthInfoEntity {
|
|
75
|
+
return UserAuthInfoEntityFromJSONTyped(json, false);
|
|
76
|
+
}
|
|
77
|
+
|
|
78
|
+
export function UserAuthInfoEntityFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserAuthInfoEntity {
|
|
79
|
+
if (json == null) {
|
|
80
|
+
return json;
|
|
81
|
+
}
|
|
82
|
+
return {
|
|
83
|
+
|
|
84
|
+
'id': json['id'],
|
|
85
|
+
'tenantId': json['tenantId'],
|
|
86
|
+
'email': json['email'],
|
|
87
|
+
'creationTime': json['creationTime'],
|
|
88
|
+
'signInMethods': ((json['signInMethods'] as Array<any>).map(SignInMethodEntityFromJSON)),
|
|
89
|
+
};
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
export function UserAuthInfoEntityToJSON(json: any): UserAuthInfoEntity {
|
|
93
|
+
return UserAuthInfoEntityToJSONTyped(json, false);
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
export function UserAuthInfoEntityToJSONTyped(value?: UserAuthInfoEntity | null, ignoreDiscriminator: boolean = false): any {
|
|
97
|
+
if (value == null) {
|
|
98
|
+
return value;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
return {
|
|
102
|
+
|
|
103
|
+
'id': value['id'],
|
|
104
|
+
'tenantId': value['tenantId'],
|
|
105
|
+
'email': value['email'],
|
|
106
|
+
'creationTime': value['creationTime'],
|
|
107
|
+
'signInMethods': ((value['signInMethods'] as Array<any>).map(SignInMethodEntityToJSON)),
|
|
108
|
+
};
|
|
109
|
+
}
|
|
110
|
+
|
|
@@ -0,0 +1,216 @@
|
|
|
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 { RoleEntity } from './RoleEntity';
|
|
17
|
+
import {
|
|
18
|
+
RoleEntityFromJSON,
|
|
19
|
+
RoleEntityFromJSONTyped,
|
|
20
|
+
RoleEntityToJSON,
|
|
21
|
+
RoleEntityToJSONTyped,
|
|
22
|
+
} from './RoleEntity';
|
|
23
|
+
import type { TenantEntity } from './TenantEntity';
|
|
24
|
+
import {
|
|
25
|
+
TenantEntityFromJSON,
|
|
26
|
+
TenantEntityFromJSONTyped,
|
|
27
|
+
TenantEntityToJSON,
|
|
28
|
+
TenantEntityToJSONTyped,
|
|
29
|
+
} from './TenantEntity';
|
|
30
|
+
import type { GroupEntity } from './GroupEntity';
|
|
31
|
+
import {
|
|
32
|
+
GroupEntityFromJSON,
|
|
33
|
+
GroupEntityFromJSONTyped,
|
|
34
|
+
GroupEntityToJSON,
|
|
35
|
+
GroupEntityToJSONTyped,
|
|
36
|
+
} from './GroupEntity';
|
|
37
|
+
|
|
38
|
+
/**
|
|
39
|
+
*
|
|
40
|
+
* @export
|
|
41
|
+
* @interface UserEntity
|
|
42
|
+
*/
|
|
43
|
+
export interface UserEntity {
|
|
44
|
+
/**
|
|
45
|
+
* ユーザーの有効・無効状態
|
|
46
|
+
* @type {string}
|
|
47
|
+
* @memberof UserEntity
|
|
48
|
+
*/
|
|
49
|
+
status: UserEntityStatusEnum;
|
|
50
|
+
/**
|
|
51
|
+
* ユーザーID
|
|
52
|
+
* @type {string}
|
|
53
|
+
* @memberof UserEntity
|
|
54
|
+
*/
|
|
55
|
+
id: string;
|
|
56
|
+
/**
|
|
57
|
+
* テナント
|
|
58
|
+
* @type {TenantEntity}
|
|
59
|
+
* @memberof UserEntity
|
|
60
|
+
*/
|
|
61
|
+
tenant: TenantEntity;
|
|
62
|
+
/**
|
|
63
|
+
* Eメール
|
|
64
|
+
* @type {string}
|
|
65
|
+
* @memberof UserEntity
|
|
66
|
+
*/
|
|
67
|
+
email: string;
|
|
68
|
+
/**
|
|
69
|
+
* ユーザー名
|
|
70
|
+
* @type {string}
|
|
71
|
+
* @memberof UserEntity
|
|
72
|
+
*/
|
|
73
|
+
name: string;
|
|
74
|
+
/**
|
|
75
|
+
* テナントごとのsupertokens userId
|
|
76
|
+
* @type {string}
|
|
77
|
+
* @memberof UserEntity
|
|
78
|
+
*/
|
|
79
|
+
authId: string;
|
|
80
|
+
/**
|
|
81
|
+
* 所属グループ
|
|
82
|
+
* @type {Array<GroupEntity>}
|
|
83
|
+
* @memberof UserEntity
|
|
84
|
+
*/
|
|
85
|
+
groups: Array<GroupEntity>;
|
|
86
|
+
/**
|
|
87
|
+
* ロール
|
|
88
|
+
* @type {Array<RoleEntity>}
|
|
89
|
+
* @memberof UserEntity
|
|
90
|
+
*/
|
|
91
|
+
roles: Array<RoleEntity>;
|
|
92
|
+
/**
|
|
93
|
+
* 作成日時
|
|
94
|
+
* @type {Date}
|
|
95
|
+
* @memberof UserEntity
|
|
96
|
+
*/
|
|
97
|
+
createdAt: Date;
|
|
98
|
+
/**
|
|
99
|
+
* 最終更新日時
|
|
100
|
+
* @type {Date}
|
|
101
|
+
* @memberof UserEntity
|
|
102
|
+
*/
|
|
103
|
+
updatedAt: Date;
|
|
104
|
+
/**
|
|
105
|
+
* 作成ユーザー
|
|
106
|
+
* @type {UserEntity}
|
|
107
|
+
* @memberof UserEntity
|
|
108
|
+
*/
|
|
109
|
+
createdBy: UserEntity;
|
|
110
|
+
/**
|
|
111
|
+
* 最終更新ユーザー
|
|
112
|
+
* @type {UserEntity}
|
|
113
|
+
* @memberof UserEntity
|
|
114
|
+
*/
|
|
115
|
+
updatedBy: UserEntity;
|
|
116
|
+
/**
|
|
117
|
+
* ログイン時にパスワードの変更を求めるかどうか
|
|
118
|
+
* @type {boolean}
|
|
119
|
+
* @memberof UserEntity
|
|
120
|
+
*/
|
|
121
|
+
shouldPasswordInitialize: boolean;
|
|
122
|
+
/**
|
|
123
|
+
*
|
|
124
|
+
* @type {object}
|
|
125
|
+
* @memberof UserEntity
|
|
126
|
+
*/
|
|
127
|
+
isAdmin: object;
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
|
|
131
|
+
/**
|
|
132
|
+
* @export
|
|
133
|
+
*/
|
|
134
|
+
export const UserEntityStatusEnum = {
|
|
135
|
+
Enabled: 'ENABLED',
|
|
136
|
+
Disabled: 'DISABLED'
|
|
137
|
+
} as const;
|
|
138
|
+
export type UserEntityStatusEnum = typeof UserEntityStatusEnum[keyof typeof UserEntityStatusEnum];
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
/**
|
|
142
|
+
* Check if a given object implements the UserEntity interface.
|
|
143
|
+
*/
|
|
144
|
+
export function instanceOfUserEntity(value: object): value is UserEntity {
|
|
145
|
+
if (!('status' in value) || value['status'] === undefined) return false;
|
|
146
|
+
if (!('id' in value) || value['id'] === undefined) return false;
|
|
147
|
+
if (!('tenant' in value) || value['tenant'] === undefined) return false;
|
|
148
|
+
if (!('email' in value) || value['email'] === undefined) return false;
|
|
149
|
+
if (!('name' in value) || value['name'] === undefined) return false;
|
|
150
|
+
if (!('authId' in value) || value['authId'] === undefined) return false;
|
|
151
|
+
if (!('groups' in value) || value['groups'] === undefined) return false;
|
|
152
|
+
if (!('roles' in value) || value['roles'] === undefined) return false;
|
|
153
|
+
if (!('createdAt' in value) || value['createdAt'] === undefined) return false;
|
|
154
|
+
if (!('updatedAt' in value) || value['updatedAt'] === undefined) return false;
|
|
155
|
+
if (!('createdBy' in value) || value['createdBy'] === undefined) return false;
|
|
156
|
+
if (!('updatedBy' in value) || value['updatedBy'] === undefined) return false;
|
|
157
|
+
if (!('shouldPasswordInitialize' in value) || value['shouldPasswordInitialize'] === undefined) return false;
|
|
158
|
+
if (!('isAdmin' in value) || value['isAdmin'] === undefined) return false;
|
|
159
|
+
return true;
|
|
160
|
+
}
|
|
161
|
+
|
|
162
|
+
export function UserEntityFromJSON(json: any): UserEntity {
|
|
163
|
+
return UserEntityFromJSONTyped(json, false);
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
export function UserEntityFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserEntity {
|
|
167
|
+
if (json == null) {
|
|
168
|
+
return json;
|
|
169
|
+
}
|
|
170
|
+
return {
|
|
171
|
+
|
|
172
|
+
'status': json['status'],
|
|
173
|
+
'id': json['id'],
|
|
174
|
+
'tenant': TenantEntityFromJSON(json['tenant']),
|
|
175
|
+
'email': json['email'],
|
|
176
|
+
'name': json['name'],
|
|
177
|
+
'authId': json['authId'],
|
|
178
|
+
'groups': ((json['groups'] as Array<any>).map(GroupEntityFromJSON)),
|
|
179
|
+
'roles': ((json['roles'] as Array<any>).map(RoleEntityFromJSON)),
|
|
180
|
+
'createdAt': (new Date(json['createdAt'])),
|
|
181
|
+
'updatedAt': (new Date(json['updatedAt'])),
|
|
182
|
+
'createdBy': UserEntityFromJSON(json['createdBy']),
|
|
183
|
+
'updatedBy': UserEntityFromJSON(json['updatedBy']),
|
|
184
|
+
'shouldPasswordInitialize': json['shouldPasswordInitialize'],
|
|
185
|
+
'isAdmin': json['isAdmin'],
|
|
186
|
+
};
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
export function UserEntityToJSON(json: any): UserEntity {
|
|
190
|
+
return UserEntityToJSONTyped(json, false);
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
export function UserEntityToJSONTyped(value?: UserEntity | null, ignoreDiscriminator: boolean = false): any {
|
|
194
|
+
if (value == null) {
|
|
195
|
+
return value;
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
return {
|
|
199
|
+
|
|
200
|
+
'status': value['status'],
|
|
201
|
+
'id': value['id'],
|
|
202
|
+
'tenant': TenantEntityToJSON(value['tenant']),
|
|
203
|
+
'email': value['email'],
|
|
204
|
+
'name': value['name'],
|
|
205
|
+
'authId': value['authId'],
|
|
206
|
+
'groups': ((value['groups'] as Array<any>).map(GroupEntityToJSON)),
|
|
207
|
+
'roles': ((value['roles'] as Array<any>).map(RoleEntityToJSON)),
|
|
208
|
+
'createdAt': ((value['createdAt']).toISOString()),
|
|
209
|
+
'updatedAt': ((value['updatedAt']).toISOString()),
|
|
210
|
+
'createdBy': UserEntityToJSON(value['createdBy']),
|
|
211
|
+
'updatedBy': UserEntityToJSON(value['updatedBy']),
|
|
212
|
+
'shouldPasswordInitialize': value['shouldPasswordInitialize'],
|
|
213
|
+
'isAdmin': value['isAdmin'],
|
|
214
|
+
};
|
|
215
|
+
}
|
|
216
|
+
|