@acomo/client 1.0.130 → 1.0.132
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,75 @@
|
|
|
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 CreateProcessFileDto
|
|
20
|
+
*/
|
|
21
|
+
export interface CreateProcessFileDto {
|
|
22
|
+
/**
|
|
23
|
+
* プロパティ(データ項目名)
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof CreateProcessFileDto
|
|
26
|
+
*/
|
|
27
|
+
property: string;
|
|
28
|
+
/**
|
|
29
|
+
* ファイル名
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof CreateProcessFileDto
|
|
32
|
+
*/
|
|
33
|
+
fileName: string;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Check if a given object implements the CreateProcessFileDto interface.
|
|
38
|
+
*/
|
|
39
|
+
export function instanceOfCreateProcessFileDto(value: object): value is CreateProcessFileDto {
|
|
40
|
+
if (!('property' in value) || value['property'] === undefined) return false;
|
|
41
|
+
if (!('fileName' in value) || value['fileName'] === undefined) return false;
|
|
42
|
+
return true;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export function CreateProcessFileDtoFromJSON(json: any): CreateProcessFileDto {
|
|
46
|
+
return CreateProcessFileDtoFromJSONTyped(json, false);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export function CreateProcessFileDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateProcessFileDto {
|
|
50
|
+
if (json == null) {
|
|
51
|
+
return json;
|
|
52
|
+
}
|
|
53
|
+
return {
|
|
54
|
+
|
|
55
|
+
'property': json['property'],
|
|
56
|
+
'fileName': json['fileName'],
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export function CreateProcessFileDtoToJSON(json: any): CreateProcessFileDto {
|
|
61
|
+
return CreateProcessFileDtoToJSONTyped(json, false);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export function CreateProcessFileDtoToJSONTyped(value?: CreateProcessFileDto | null, ignoreDiscriminator: boolean = false): any {
|
|
65
|
+
if (value == null) {
|
|
66
|
+
return value;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
return {
|
|
70
|
+
|
|
71
|
+
'property': value['property'],
|
|
72
|
+
'fileName': value['fileName'],
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
|
|
@@ -0,0 +1,75 @@
|
|
|
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 CreateTenantDto
|
|
20
|
+
*/
|
|
21
|
+
export interface CreateTenantDto {
|
|
22
|
+
/**
|
|
23
|
+
* AuthテナントID
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof CreateTenantDto
|
|
26
|
+
*/
|
|
27
|
+
authTenantId: string;
|
|
28
|
+
/**
|
|
29
|
+
* テナント名
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof CreateTenantDto
|
|
32
|
+
*/
|
|
33
|
+
name: string;
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
/**
|
|
37
|
+
* Check if a given object implements the CreateTenantDto interface.
|
|
38
|
+
*/
|
|
39
|
+
export function instanceOfCreateTenantDto(value: object): value is CreateTenantDto {
|
|
40
|
+
if (!('authTenantId' in value) || value['authTenantId'] === undefined) return false;
|
|
41
|
+
if (!('name' in value) || value['name'] === undefined) return false;
|
|
42
|
+
return true;
|
|
43
|
+
}
|
|
44
|
+
|
|
45
|
+
export function CreateTenantDtoFromJSON(json: any): CreateTenantDto {
|
|
46
|
+
return CreateTenantDtoFromJSONTyped(json, false);
|
|
47
|
+
}
|
|
48
|
+
|
|
49
|
+
export function CreateTenantDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateTenantDto {
|
|
50
|
+
if (json == null) {
|
|
51
|
+
return json;
|
|
52
|
+
}
|
|
53
|
+
return {
|
|
54
|
+
|
|
55
|
+
'authTenantId': json['authTenantId'],
|
|
56
|
+
'name': json['name'],
|
|
57
|
+
};
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
export function CreateTenantDtoToJSON(json: any): CreateTenantDto {
|
|
61
|
+
return CreateTenantDtoToJSONTyped(json, false);
|
|
62
|
+
}
|
|
63
|
+
|
|
64
|
+
export function CreateTenantDtoToJSONTyped(value?: CreateTenantDto | null, ignoreDiscriminator: boolean = false): any {
|
|
65
|
+
if (value == null) {
|
|
66
|
+
return value;
|
|
67
|
+
}
|
|
68
|
+
|
|
69
|
+
return {
|
|
70
|
+
|
|
71
|
+
'authTenantId': value['authTenantId'],
|
|
72
|
+
'name': value['name'],
|
|
73
|
+
};
|
|
74
|
+
}
|
|
75
|
+
|
|
@@ -0,0 +1,61 @@
|
|
|
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
|
+
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
*/
|
|
20
|
+
export const CrudSystemActionSubject = {
|
|
21
|
+
Model: 'Model',
|
|
22
|
+
Process: 'Process',
|
|
23
|
+
Action: 'Action',
|
|
24
|
+
User: 'User',
|
|
25
|
+
Group: 'Group',
|
|
26
|
+
Role: 'Role',
|
|
27
|
+
AuthConfig: 'AuthConfig',
|
|
28
|
+
Setting: 'Setting',
|
|
29
|
+
Development: 'Development',
|
|
30
|
+
Slack: 'Slack'
|
|
31
|
+
} as const;
|
|
32
|
+
export type CrudSystemActionSubject = typeof CrudSystemActionSubject[keyof typeof CrudSystemActionSubject];
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
export function instanceOfCrudSystemActionSubject(value: any): boolean {
|
|
36
|
+
for (const key in CrudSystemActionSubject) {
|
|
37
|
+
if (Object.prototype.hasOwnProperty.call(CrudSystemActionSubject, key)) {
|
|
38
|
+
if (CrudSystemActionSubject[key as keyof typeof CrudSystemActionSubject] === value) {
|
|
39
|
+
return true;
|
|
40
|
+
}
|
|
41
|
+
}
|
|
42
|
+
}
|
|
43
|
+
return false;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export function CrudSystemActionSubjectFromJSON(json: any): CrudSystemActionSubject {
|
|
47
|
+
return CrudSystemActionSubjectFromJSONTyped(json, false);
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export function CrudSystemActionSubjectFromJSONTyped(json: any, ignoreDiscriminator: boolean): CrudSystemActionSubject {
|
|
51
|
+
return json as CrudSystemActionSubject;
|
|
52
|
+
}
|
|
53
|
+
|
|
54
|
+
export function CrudSystemActionSubjectToJSON(value?: CrudSystemActionSubject | null): any {
|
|
55
|
+
return value as any;
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
export function CrudSystemActionSubjectToJSONTyped(value: any, ignoreDiscriminator: boolean): CrudSystemActionSubject {
|
|
59
|
+
return value as CrudSystemActionSubject;
|
|
60
|
+
}
|
|
61
|
+
|
|
@@ -0,0 +1,55 @@
|
|
|
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
|
+
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
*/
|
|
20
|
+
export const CrudSystemActionType = {
|
|
21
|
+
Manage: 'manage',
|
|
22
|
+
Write: 'write',
|
|
23
|
+
Read: 'read',
|
|
24
|
+
Delete: 'delete'
|
|
25
|
+
} as const;
|
|
26
|
+
export type CrudSystemActionType = typeof CrudSystemActionType[keyof typeof CrudSystemActionType];
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
export function instanceOfCrudSystemActionType(value: any): boolean {
|
|
30
|
+
for (const key in CrudSystemActionType) {
|
|
31
|
+
if (Object.prototype.hasOwnProperty.call(CrudSystemActionType, key)) {
|
|
32
|
+
if (CrudSystemActionType[key as keyof typeof CrudSystemActionType] === value) {
|
|
33
|
+
return true;
|
|
34
|
+
}
|
|
35
|
+
}
|
|
36
|
+
}
|
|
37
|
+
return false;
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
export function CrudSystemActionTypeFromJSON(json: any): CrudSystemActionType {
|
|
41
|
+
return CrudSystemActionTypeFromJSONTyped(json, false);
|
|
42
|
+
}
|
|
43
|
+
|
|
44
|
+
export function CrudSystemActionTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): CrudSystemActionType {
|
|
45
|
+
return json as CrudSystemActionType;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
export function CrudSystemActionTypeToJSON(value?: CrudSystemActionType | null): any {
|
|
49
|
+
return value as any;
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export function CrudSystemActionTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): CrudSystemActionType {
|
|
53
|
+
return value as CrudSystemActionType;
|
|
54
|
+
}
|
|
55
|
+
|
|
@@ -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 CustomerPortalDto
|
|
20
|
+
*/
|
|
21
|
+
export interface CustomerPortalDto {
|
|
22
|
+
/**
|
|
23
|
+
*
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof CustomerPortalDto
|
|
26
|
+
*/
|
|
27
|
+
returnUrl: string;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
/**
|
|
31
|
+
* Check if a given object implements the CustomerPortalDto interface.
|
|
32
|
+
*/
|
|
33
|
+
export function instanceOfCustomerPortalDto(value: object): value is CustomerPortalDto {
|
|
34
|
+
if (!('returnUrl' in value) || value['returnUrl'] === undefined) return false;
|
|
35
|
+
return true;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export function CustomerPortalDtoFromJSON(json: any): CustomerPortalDto {
|
|
39
|
+
return CustomerPortalDtoFromJSONTyped(json, false);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export function CustomerPortalDtoFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomerPortalDto {
|
|
43
|
+
if (json == null) {
|
|
44
|
+
return json;
|
|
45
|
+
}
|
|
46
|
+
return {
|
|
47
|
+
|
|
48
|
+
'returnUrl': json['returnUrl'],
|
|
49
|
+
};
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
export function CustomerPortalDtoToJSON(json: any): CustomerPortalDto {
|
|
53
|
+
return CustomerPortalDtoToJSONTyped(json, false);
|
|
54
|
+
}
|
|
55
|
+
|
|
56
|
+
export function CustomerPortalDtoToJSONTyped(value?: CustomerPortalDto | null, ignoreDiscriminator: boolean = false): any {
|
|
57
|
+
if (value == null) {
|
|
58
|
+
return value;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
return {
|
|
62
|
+
|
|
63
|
+
'returnUrl': value['returnUrl'],
|
|
64
|
+
};
|
|
65
|
+
}
|
|
66
|
+
|
|
@@ -0,0 +1,53 @@
|
|
|
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
|
+
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
*/
|
|
20
|
+
export const ExecutionSystemActionSubject = {
|
|
21
|
+
Engine: 'Engine',
|
|
22
|
+
Ai: 'Ai'
|
|
23
|
+
} as const;
|
|
24
|
+
export type ExecutionSystemActionSubject = typeof ExecutionSystemActionSubject[keyof typeof ExecutionSystemActionSubject];
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
export function instanceOfExecutionSystemActionSubject(value: any): boolean {
|
|
28
|
+
for (const key in ExecutionSystemActionSubject) {
|
|
29
|
+
if (Object.prototype.hasOwnProperty.call(ExecutionSystemActionSubject, key)) {
|
|
30
|
+
if (ExecutionSystemActionSubject[key as keyof typeof ExecutionSystemActionSubject] === value) {
|
|
31
|
+
return true;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
return false;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export function ExecutionSystemActionSubjectFromJSON(json: any): ExecutionSystemActionSubject {
|
|
39
|
+
return ExecutionSystemActionSubjectFromJSONTyped(json, false);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export function ExecutionSystemActionSubjectFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecutionSystemActionSubject {
|
|
43
|
+
return json as ExecutionSystemActionSubject;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export function ExecutionSystemActionSubjectToJSON(value?: ExecutionSystemActionSubject | null): any {
|
|
47
|
+
return value as any;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export function ExecutionSystemActionSubjectToJSONTyped(value: any, ignoreDiscriminator: boolean): ExecutionSystemActionSubject {
|
|
51
|
+
return value as ExecutionSystemActionSubject;
|
|
52
|
+
}
|
|
53
|
+
|
|
@@ -0,0 +1,53 @@
|
|
|
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
|
+
|
|
16
|
+
/**
|
|
17
|
+
*
|
|
18
|
+
* @export
|
|
19
|
+
*/
|
|
20
|
+
export const ExecutionSystemActionType = {
|
|
21
|
+
Execute: 'execute',
|
|
22
|
+
Read: 'read'
|
|
23
|
+
} as const;
|
|
24
|
+
export type ExecutionSystemActionType = typeof ExecutionSystemActionType[keyof typeof ExecutionSystemActionType];
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
export function instanceOfExecutionSystemActionType(value: any): boolean {
|
|
28
|
+
for (const key in ExecutionSystemActionType) {
|
|
29
|
+
if (Object.prototype.hasOwnProperty.call(ExecutionSystemActionType, key)) {
|
|
30
|
+
if (ExecutionSystemActionType[key as keyof typeof ExecutionSystemActionType] === value) {
|
|
31
|
+
return true;
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
}
|
|
35
|
+
return false;
|
|
36
|
+
}
|
|
37
|
+
|
|
38
|
+
export function ExecutionSystemActionTypeFromJSON(json: any): ExecutionSystemActionType {
|
|
39
|
+
return ExecutionSystemActionTypeFromJSONTyped(json, false);
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
export function ExecutionSystemActionTypeFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExecutionSystemActionType {
|
|
43
|
+
return json as ExecutionSystemActionType;
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
export function ExecutionSystemActionTypeToJSON(value?: ExecutionSystemActionType | null): any {
|
|
47
|
+
return value as any;
|
|
48
|
+
}
|
|
49
|
+
|
|
50
|
+
export function ExecutionSystemActionTypeToJSONTyped(value: any, ignoreDiscriminator: boolean): ExecutionSystemActionType {
|
|
51
|
+
return value as ExecutionSystemActionType;
|
|
52
|
+
}
|
|
53
|
+
|
|
@@ -0,0 +1,138 @@
|
|
|
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 GroupEntity
|
|
28
|
+
*/
|
|
29
|
+
export interface GroupEntity {
|
|
30
|
+
/**
|
|
31
|
+
* グループID
|
|
32
|
+
* @type {string}
|
|
33
|
+
* @memberof GroupEntity
|
|
34
|
+
*/
|
|
35
|
+
id: string;
|
|
36
|
+
/**
|
|
37
|
+
* テナントID
|
|
38
|
+
* @type {string}
|
|
39
|
+
* @memberof GroupEntity
|
|
40
|
+
*/
|
|
41
|
+
tenantId: string;
|
|
42
|
+
/**
|
|
43
|
+
* グループ名
|
|
44
|
+
* @type {string}
|
|
45
|
+
* @memberof GroupEntity
|
|
46
|
+
*/
|
|
47
|
+
name: string;
|
|
48
|
+
/**
|
|
49
|
+
* 親グループID
|
|
50
|
+
* 親グループに null を指定した場合は、トップレベルグループとなる
|
|
51
|
+
* @type {string}
|
|
52
|
+
* @memberof GroupEntity
|
|
53
|
+
*/
|
|
54
|
+
parentId: string;
|
|
55
|
+
/**
|
|
56
|
+
* 作成日時
|
|
57
|
+
* @type {Date}
|
|
58
|
+
* @memberof GroupEntity
|
|
59
|
+
*/
|
|
60
|
+
createdAt: Date;
|
|
61
|
+
/**
|
|
62
|
+
* 最終更新日時
|
|
63
|
+
* @type {Date}
|
|
64
|
+
* @memberof GroupEntity
|
|
65
|
+
*/
|
|
66
|
+
updatedAt: Date;
|
|
67
|
+
/**
|
|
68
|
+
* 作成ユーザー
|
|
69
|
+
* @type {UserEntity}
|
|
70
|
+
* @memberof GroupEntity
|
|
71
|
+
*/
|
|
72
|
+
createdBy: UserEntity;
|
|
73
|
+
/**
|
|
74
|
+
* 最終更新ユーザー
|
|
75
|
+
* @type {UserEntity}
|
|
76
|
+
* @memberof GroupEntity
|
|
77
|
+
*/
|
|
78
|
+
updatedBy: UserEntity;
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
/**
|
|
82
|
+
* Check if a given object implements the GroupEntity interface.
|
|
83
|
+
*/
|
|
84
|
+
export function instanceOfGroupEntity(value: object): value is GroupEntity {
|
|
85
|
+
if (!('id' in value) || value['id'] === undefined) return false;
|
|
86
|
+
if (!('tenantId' in value) || value['tenantId'] === undefined) return false;
|
|
87
|
+
if (!('name' in value) || value['name'] === undefined) return false;
|
|
88
|
+
if (!('parentId' in value) || value['parentId'] === undefined) return false;
|
|
89
|
+
if (!('createdAt' in value) || value['createdAt'] === undefined) return false;
|
|
90
|
+
if (!('updatedAt' in value) || value['updatedAt'] === undefined) return false;
|
|
91
|
+
if (!('createdBy' in value) || value['createdBy'] === undefined) return false;
|
|
92
|
+
if (!('updatedBy' in value) || value['updatedBy'] === undefined) return false;
|
|
93
|
+
return true;
|
|
94
|
+
}
|
|
95
|
+
|
|
96
|
+
export function GroupEntityFromJSON(json: any): GroupEntity {
|
|
97
|
+
return GroupEntityFromJSONTyped(json, false);
|
|
98
|
+
}
|
|
99
|
+
|
|
100
|
+
export function GroupEntityFromJSONTyped(json: any, ignoreDiscriminator: boolean): GroupEntity {
|
|
101
|
+
if (json == null) {
|
|
102
|
+
return json;
|
|
103
|
+
}
|
|
104
|
+
return {
|
|
105
|
+
|
|
106
|
+
'id': json['id'],
|
|
107
|
+
'tenantId': json['tenantId'],
|
|
108
|
+
'name': json['name'],
|
|
109
|
+
'parentId': json['parentId'],
|
|
110
|
+
'createdAt': (new Date(json['createdAt'])),
|
|
111
|
+
'updatedAt': (new Date(json['updatedAt'])),
|
|
112
|
+
'createdBy': UserEntityFromJSON(json['createdBy']),
|
|
113
|
+
'updatedBy': UserEntityFromJSON(json['updatedBy']),
|
|
114
|
+
};
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
export function GroupEntityToJSON(json: any): GroupEntity {
|
|
118
|
+
return GroupEntityToJSONTyped(json, false);
|
|
119
|
+
}
|
|
120
|
+
|
|
121
|
+
export function GroupEntityToJSONTyped(value?: GroupEntity | null, ignoreDiscriminator: boolean = false): any {
|
|
122
|
+
if (value == null) {
|
|
123
|
+
return value;
|
|
124
|
+
}
|
|
125
|
+
|
|
126
|
+
return {
|
|
127
|
+
|
|
128
|
+
'id': value['id'],
|
|
129
|
+
'tenantId': value['tenantId'],
|
|
130
|
+
'name': value['name'],
|
|
131
|
+
'parentId': value['parentId'],
|
|
132
|
+
'createdAt': ((value['createdAt']).toISOString()),
|
|
133
|
+
'updatedAt': ((value['updatedAt']).toISOString()),
|
|
134
|
+
'createdBy': UserEntityToJSON(value['createdBy']),
|
|
135
|
+
'updatedBy': UserEntityToJSON(value['updatedBy']),
|
|
136
|
+
};
|
|
137
|
+
}
|
|
138
|
+
|
|
@@ -0,0 +1,127 @@
|
|
|
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 IdentityProviderEntity
|
|
20
|
+
*/
|
|
21
|
+
export interface IdentityProviderEntity {
|
|
22
|
+
/**
|
|
23
|
+
* 認証プロバイダーがデフォルトかカスタムか判別
|
|
24
|
+
* @type {string}
|
|
25
|
+
* @memberof IdentityProviderEntity
|
|
26
|
+
*/
|
|
27
|
+
type: IdentityProviderEntityTypeEnum;
|
|
28
|
+
/**
|
|
29
|
+
* サードパーティID
|
|
30
|
+
* @type {string}
|
|
31
|
+
* @memberof IdentityProviderEntity
|
|
32
|
+
*/
|
|
33
|
+
thirdPartyId: string;
|
|
34
|
+
/**
|
|
35
|
+
* 認証プロバイダー名
|
|
36
|
+
* @type {string}
|
|
37
|
+
* @memberof IdentityProviderEntity
|
|
38
|
+
*/
|
|
39
|
+
name: string;
|
|
40
|
+
/**
|
|
41
|
+
* クライアントID
|
|
42
|
+
* @type {string}
|
|
43
|
+
* @memberof IdentityProviderEntity
|
|
44
|
+
*/
|
|
45
|
+
clientId?: string;
|
|
46
|
+
/**
|
|
47
|
+
* クライアントシークレット
|
|
48
|
+
* @type {string}
|
|
49
|
+
* @memberof IdentityProviderEntity
|
|
50
|
+
*/
|
|
51
|
+
clientSecret?: string;
|
|
52
|
+
/**
|
|
53
|
+
* OIDCディスカバリーエンドポイント
|
|
54
|
+
* @type {string}
|
|
55
|
+
* @memberof IdentityProviderEntity
|
|
56
|
+
*/
|
|
57
|
+
oidcDiscoveryEndpoint?: string;
|
|
58
|
+
/**
|
|
59
|
+
* OAuth Scope
|
|
60
|
+
* @type {Array<string>}
|
|
61
|
+
* @memberof IdentityProviderEntity
|
|
62
|
+
*/
|
|
63
|
+
scope?: Array<string>;
|
|
64
|
+
}
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
/**
|
|
68
|
+
* @export
|
|
69
|
+
*/
|
|
70
|
+
export const IdentityProviderEntityTypeEnum = {
|
|
71
|
+
Default: 'default',
|
|
72
|
+
Custom: 'custom'
|
|
73
|
+
} as const;
|
|
74
|
+
export type IdentityProviderEntityTypeEnum = typeof IdentityProviderEntityTypeEnum[keyof typeof IdentityProviderEntityTypeEnum];
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
/**
|
|
78
|
+
* Check if a given object implements the IdentityProviderEntity interface.
|
|
79
|
+
*/
|
|
80
|
+
export function instanceOfIdentityProviderEntity(value: object): value is IdentityProviderEntity {
|
|
81
|
+
if (!('type' in value) || value['type'] === undefined) return false;
|
|
82
|
+
if (!('thirdPartyId' in value) || value['thirdPartyId'] === undefined) return false;
|
|
83
|
+
if (!('name' in value) || value['name'] === undefined) return false;
|
|
84
|
+
return true;
|
|
85
|
+
}
|
|
86
|
+
|
|
87
|
+
export function IdentityProviderEntityFromJSON(json: any): IdentityProviderEntity {
|
|
88
|
+
return IdentityProviderEntityFromJSONTyped(json, false);
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
export function IdentityProviderEntityFromJSONTyped(json: any, ignoreDiscriminator: boolean): IdentityProviderEntity {
|
|
92
|
+
if (json == null) {
|
|
93
|
+
return json;
|
|
94
|
+
}
|
|
95
|
+
return {
|
|
96
|
+
|
|
97
|
+
'type': json['type'],
|
|
98
|
+
'thirdPartyId': json['thirdPartyId'],
|
|
99
|
+
'name': json['name'],
|
|
100
|
+
'clientId': json['clientId'] == null ? undefined : json['clientId'],
|
|
101
|
+
'clientSecret': json['clientSecret'] == null ? undefined : json['clientSecret'],
|
|
102
|
+
'oidcDiscoveryEndpoint': json['oidcDiscoveryEndpoint'] == null ? undefined : json['oidcDiscoveryEndpoint'],
|
|
103
|
+
'scope': json['scope'] == null ? undefined : json['scope'],
|
|
104
|
+
};
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
export function IdentityProviderEntityToJSON(json: any): IdentityProviderEntity {
|
|
108
|
+
return IdentityProviderEntityToJSONTyped(json, false);
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
export function IdentityProviderEntityToJSONTyped(value?: IdentityProviderEntity | null, ignoreDiscriminator: boolean = false): any {
|
|
112
|
+
if (value == null) {
|
|
113
|
+
return value;
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
return {
|
|
117
|
+
|
|
118
|
+
'type': value['type'],
|
|
119
|
+
'thirdPartyId': value['thirdPartyId'],
|
|
120
|
+
'name': value['name'],
|
|
121
|
+
'clientId': value['clientId'],
|
|
122
|
+
'clientSecret': value['clientSecret'],
|
|
123
|
+
'oidcDiscoveryEndpoint': value['oidcDiscoveryEndpoint'],
|
|
124
|
+
'scope': value['scope'],
|
|
125
|
+
};
|
|
126
|
+
}
|
|
127
|
+
|