index.ts 552 B

12345678910111213141516171819202122232425
  1. // @ts-ignore
  2. /* eslint-disable */
  3. // API 更新时间:
  4. // API 唯一标识:
  5. import * as audit from './audit'
  6. import * as credential from './credential'
  7. import * as execution from './execution'
  8. import * as tags from './tags'
  9. import * as workflow from './workflow'
  10. import * as user from './user'
  11. import * as sourceControl from './sourceControl'
  12. import * as variables from './variables'
  13. import * as projects from './projects'
  14. export default {
  15. audit,
  16. credential,
  17. execution,
  18. tags,
  19. workflow,
  20. user,
  21. sourceControl,
  22. variables,
  23. projects
  24. }