(meta: OpenApiMetaInfo)
| 1049 | }); |
| 1050 | |
| 1051 | function buildWebsiteOpenapi(meta: OpenApiMetaInfo): OpenApiMeta { |
| 1052 | return { |
| 1053 | openapi: { |
| 1054 | tags: [OPENAPI_TAG.WEBSITE], |
| 1055 | protect: true, |
| 1056 | ...meta, |
| 1057 | path: `/workspace/{workspaceId}/website/{websiteId}${meta.path}`, |
| 1058 | }, |
| 1059 | }; |
| 1060 | } |
| 1061 | |
| 1062 | function buildWebsitePublicOpenapi(meta: OpenApiMetaInfo): OpenApiMeta { |
| 1063 | return { |