@fivepixels-js/lite-api 0.2.1
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/LICENSE +93 -0
- package/README.md +537 -0
- package/dist/app.d.ts +10 -0
- package/dist/app.d.ts.map +1 -0
- package/dist/app.js +70 -0
- package/dist/app.js.map +1 -0
- package/dist/auth/identity.repository.d.ts +62 -0
- package/dist/auth/identity.repository.d.ts.map +1 -0
- package/dist/auth/identity.repository.js +202 -0
- package/dist/auth/identity.repository.js.map +1 -0
- package/dist/auth/identity.routes.d.ts +5 -0
- package/dist/auth/identity.routes.d.ts.map +1 -0
- package/dist/auth/identity.routes.js +56 -0
- package/dist/auth/identity.routes.js.map +1 -0
- package/dist/auth/identity.schemas.d.ts +2711 -0
- package/dist/auth/identity.schemas.d.ts.map +1 -0
- package/dist/auth/identity.schemas.js +117 -0
- package/dist/auth/identity.schemas.js.map +1 -0
- package/dist/auth/identity.service.d.ts +37 -0
- package/dist/auth/identity.service.d.ts.map +1 -0
- package/dist/auth/identity.service.js +131 -0
- package/dist/auth/identity.service.js.map +1 -0
- package/dist/auth/password.service.d.ts +15 -0
- package/dist/auth/password.service.d.ts.map +1 -0
- package/dist/auth/password.service.js +116 -0
- package/dist/auth/password.service.js.map +1 -0
- package/dist/auth/token.service.d.ts +38 -0
- package/dist/auth/token.service.d.ts.map +1 -0
- package/dist/auth/token.service.js +54 -0
- package/dist/auth/token.service.js.map +1 -0
- package/dist/cli/cli.d.ts +3 -0
- package/dist/cli/cli.d.ts.map +1 -0
- package/dist/cli/cli.js +132 -0
- package/dist/cli/cli.js.map +1 -0
- package/dist/cli/commands/backup.d.ts +4 -0
- package/dist/cli/commands/backup.d.ts.map +1 -0
- package/dist/cli/commands/backup.js +24 -0
- package/dist/cli/commands/backup.js.map +1 -0
- package/dist/cli/commands/init.d.ts +4 -0
- package/dist/cli/commands/init.d.ts.map +1 -0
- package/dist/cli/commands/init.js +23 -0
- package/dist/cli/commands/init.js.map +1 -0
- package/dist/cli/commands/migrate.d.ts +4 -0
- package/dist/cli/commands/migrate.d.ts.map +1 -0
- package/dist/cli/commands/migrate.js +20 -0
- package/dist/cli/commands/migrate.js.map +1 -0
- package/dist/cli/commands/start.d.ts +4 -0
- package/dist/cli/commands/start.d.ts.map +1 -0
- package/dist/cli/commands/start.js +13 -0
- package/dist/cli/commands/start.js.map +1 -0
- package/dist/cli/commands/status.d.ts +4 -0
- package/dist/cli/commands/status.d.ts.map +1 -0
- package/dist/cli/commands/status.js +48 -0
- package/dist/cli/commands/status.js.map +1 -0
- package/dist/cli/index.d.ts +3 -0
- package/dist/cli/index.d.ts.map +1 -0
- package/dist/cli/index.js +4 -0
- package/dist/cli/index.js.map +1 -0
- package/dist/cli/io.d.ts +6 -0
- package/dist/cli/io.d.ts.map +1 -0
- package/dist/cli/io.js +9 -0
- package/dist/cli/io.js.map +1 -0
- package/dist/community/contracts.d.ts +29 -0
- package/dist/community/contracts.d.ts.map +1 -0
- package/dist/community/contracts.js +41 -0
- package/dist/community/contracts.js.map +1 -0
- package/dist/community/error-handler.d.ts +3 -0
- package/dist/community/error-handler.d.ts.map +1 -0
- package/dist/community/error-handler.js +66 -0
- package/dist/community/error-handler.js.map +1 -0
- package/dist/community/errors.d.ts +10 -0
- package/dist/community/errors.d.ts.map +1 -0
- package/dist/community/errors.js +39 -0
- package/dist/community/errors.js.map +1 -0
- package/dist/community/etag.d.ts +5 -0
- package/dist/community/etag.d.ts.map +1 -0
- package/dist/community/etag.js +31 -0
- package/dist/community/etag.js.map +1 -0
- package/dist/community/input.d.ts +10 -0
- package/dist/community/input.d.ts.map +1 -0
- package/dist/community/input.js +48 -0
- package/dist/community/input.js.map +1 -0
- package/dist/community/mutation-route.d.ts +7 -0
- package/dist/community/mutation-route.d.ts.map +1 -0
- package/dist/community/mutation-route.js +47 -0
- package/dist/community/mutation-route.js.map +1 -0
- package/dist/community/schemas.d.ts +807 -0
- package/dist/community/schemas.d.ts.map +1 -0
- package/dist/community/schemas.js +100 -0
- package/dist/community/schemas.js.map +1 -0
- package/dist/community/system.schemas.d.ts +40 -0
- package/dist/community/system.schemas.d.ts.map +1 -0
- package/dist/community/system.schemas.js +30 -0
- package/dist/community/system.schemas.js.map +1 -0
- package/dist/config/config.d.ts +43 -0
- package/dist/config/config.d.ts.map +1 -0
- package/dist/config/config.js +208 -0
- package/dist/config/config.js.map +1 -0
- package/dist/config/data-path.d.ts +2 -0
- package/dist/config/data-path.d.ts.map +1 -0
- package/dist/config/data-path.js +16 -0
- package/dist/config/data-path.js.map +1 -0
- package/dist/config/jwt-secret.d.ts +3 -0
- package/dist/config/jwt-secret.d.ts.map +1 -0
- package/dist/config/jwt-secret.js +67 -0
- package/dist/config/jwt-secret.js.map +1 -0
- package/dist/db/backup.d.ts +10 -0
- package/dist/db/backup.d.ts.map +1 -0
- package/dist/db/backup.js +51 -0
- package/dist/db/backup.js.map +1 -0
- package/dist/db/connection.d.ts +15 -0
- package/dist/db/connection.d.ts.map +1 -0
- package/dist/db/connection.js +82 -0
- package/dist/db/connection.js.map +1 -0
- package/dist/db/guid-order.d.ts +2 -0
- package/dist/db/guid-order.d.ts.map +1 -0
- package/dist/db/guid-order.js +9 -0
- package/dist/db/guid-order.js.map +1 -0
- package/dist/db/migrate.d.ts +37 -0
- package/dist/db/migrate.d.ts.map +1 -0
- package/dist/db/migrate.js +145 -0
- package/dist/db/migrate.js.map +1 -0
- package/dist/db/migrations/001_schema_migrations.sql +6 -0
- package/dist/db/migrations/002_identity.sql +95 -0
- package/dist/db/migrations/003_projects.sql +62 -0
- package/dist/db/migrations/004_feedback_core.sql +236 -0
- package/dist/db/migrations/005_project_member_management.sql +55 -0
- package/dist/db/migrations/006_align_credentials.sql +33 -0
- package/dist/db/migrations/007_align_storage_values.sql +78 -0
- package/dist/db/storage-migration.d.ts +9 -0
- package/dist/db/storage-migration.d.ts.map +1 -0
- package/dist/db/storage-migration.js +79 -0
- package/dist/db/storage-migration.js.map +1 -0
- package/dist/db/transaction.d.ts +9 -0
- package/dist/db/transaction.d.ts.map +1 -0
- package/dist/db/transaction.js +14 -0
- package/dist/db/transaction.js.map +1 -0
- package/dist/errors/error-handler.d.ts +3 -0
- package/dist/errors/error-handler.d.ts.map +1 -0
- package/dist/errors/error-handler.js +50 -0
- package/dist/errors/error-handler.js.map +1 -0
- package/dist/feedbacks/feedback-workflow.service.d.ts +59 -0
- package/dist/feedbacks/feedback-workflow.service.d.ts.map +1 -0
- package/dist/feedbacks/feedback-workflow.service.js +89 -0
- package/dist/feedbacks/feedback-workflow.service.js.map +1 -0
- package/dist/feedbacks/feedback.input.d.ts +4 -0
- package/dist/feedbacks/feedback.input.d.ts.map +1 -0
- package/dist/feedbacks/feedback.input.js +25 -0
- package/dist/feedbacks/feedback.input.js.map +1 -0
- package/dist/feedbacks/feedback.repository.d.ts +48 -0
- package/dist/feedbacks/feedback.repository.d.ts.map +1 -0
- package/dist/feedbacks/feedback.repository.js +238 -0
- package/dist/feedbacks/feedback.repository.js.map +1 -0
- package/dist/feedbacks/feedback.routes.d.ts +4 -0
- package/dist/feedbacks/feedback.routes.d.ts.map +1 -0
- package/dist/feedbacks/feedback.routes.js +78 -0
- package/dist/feedbacks/feedback.routes.js.map +1 -0
- package/dist/feedbacks/feedback.schemas.d.ts +642 -0
- package/dist/feedbacks/feedback.schemas.d.ts.map +1 -0
- package/dist/feedbacks/feedback.schemas.js +131 -0
- package/dist/feedbacks/feedback.schemas.js.map +1 -0
- package/dist/feedbacks/feedback.service.d.ts +23 -0
- package/dist/feedbacks/feedback.service.d.ts.map +1 -0
- package/dist/feedbacks/feedback.service.js +74 -0
- package/dist/feedbacks/feedback.service.js.map +1 -0
- package/dist/feedbacks/feedback.types.d.ts +64 -0
- package/dist/feedbacks/feedback.types.d.ts.map +1 -0
- package/dist/feedbacks/feedback.types.js +2 -0
- package/dist/feedbacks/feedback.types.js.map +1 -0
- package/dist/page-elements/page-element.input.d.ts +7 -0
- package/dist/page-elements/page-element.input.d.ts.map +1 -0
- package/dist/page-elements/page-element.input.js +59 -0
- package/dist/page-elements/page-element.input.js.map +1 -0
- package/dist/page-elements/page-element.repository.d.ts +21 -0
- package/dist/page-elements/page-element.repository.d.ts.map +1 -0
- package/dist/page-elements/page-element.repository.js +123 -0
- package/dist/page-elements/page-element.repository.js.map +1 -0
- package/dist/page-elements/page-element.schemas.d.ts +97 -0
- package/dist/page-elements/page-element.schemas.d.ts.map +1 -0
- package/dist/page-elements/page-element.schemas.js +40 -0
- package/dist/page-elements/page-element.schemas.js.map +1 -0
- package/dist/page-elements/page-element.types.d.ts +24 -0
- package/dist/page-elements/page-element.types.d.ts.map +1 -0
- package/dist/page-elements/page-element.types.js +2 -0
- package/dist/page-elements/page-element.types.js.map +1 -0
- package/dist/plugins/auth.plugin.d.ts +3 -0
- package/dist/plugins/auth.plugin.d.ts.map +1 -0
- package/dist/plugins/auth.plugin.js +28 -0
- package/dist/plugins/auth.plugin.js.map +1 -0
- package/dist/plugins/community-api.plugin.d.ts +5 -0
- package/dist/plugins/community-api.plugin.d.ts.map +1 -0
- package/dist/plugins/community-api.plugin.js +25 -0
- package/dist/plugins/community-api.plugin.js.map +1 -0
- package/dist/plugins/cors.plugin.d.ts +3 -0
- package/dist/plugins/cors.plugin.d.ts.map +1 -0
- package/dist/plugins/cors.plugin.js +19 -0
- package/dist/plugins/cors.plugin.js.map +1 -0
- package/dist/plugins/swagger.plugin.d.ts +3 -0
- package/dist/plugins/swagger.plugin.d.ts.map +1 -0
- package/dist/plugins/swagger.plugin.js +59 -0
- package/dist/plugins/swagger.plugin.js.map +1 -0
- package/dist/plugins/user-auth.plugin.d.ts +33 -0
- package/dist/plugins/user-auth.plugin.d.ts.map +1 -0
- package/dist/plugins/user-auth.plugin.js +62 -0
- package/dist/plugins/user-auth.plugin.js.map +1 -0
- package/dist/projects/members/project-member.repository.d.ts +49 -0
- package/dist/projects/members/project-member.repository.d.ts.map +1 -0
- package/dist/projects/members/project-member.repository.js +215 -0
- package/dist/projects/members/project-member.repository.js.map +1 -0
- package/dist/projects/members/project-member.routes.d.ts +4 -0
- package/dist/projects/members/project-member.routes.d.ts.map +1 -0
- package/dist/projects/members/project-member.routes.js +82 -0
- package/dist/projects/members/project-member.routes.js.map +1 -0
- package/dist/projects/members/project-member.schemas.d.ts +2735 -0
- package/dist/projects/members/project-member.schemas.d.ts.map +1 -0
- package/dist/projects/members/project-member.schemas.js +138 -0
- package/dist/projects/members/project-member.schemas.js.map +1 -0
- package/dist/projects/members/project-member.service.d.ts +29 -0
- package/dist/projects/members/project-member.service.d.ts.map +1 -0
- package/dist/projects/members/project-member.service.js +92 -0
- package/dist/projects/members/project-member.service.js.map +1 -0
- package/dist/projects/project-access.policy.d.ts +11 -0
- package/dist/projects/project-access.policy.d.ts.map +1 -0
- package/dist/projects/project-access.policy.js +30 -0
- package/dist/projects/project-access.policy.js.map +1 -0
- package/dist/projects/project-access.repository.d.ts +12 -0
- package/dist/projects/project-access.repository.d.ts.map +1 -0
- package/dist/projects/project-access.repository.js +45 -0
- package/dist/projects/project-access.repository.js.map +1 -0
- package/dist/projects/project-access.types.d.ts +9 -0
- package/dist/projects/project-access.types.d.ts.map +1 -0
- package/dist/projects/project-access.types.js +2 -0
- package/dist/projects/project-access.types.js.map +1 -0
- package/dist/projects/project-mutation.service.d.ts +15 -0
- package/dist/projects/project-mutation.service.d.ts.map +1 -0
- package/dist/projects/project-mutation.service.js +39 -0
- package/dist/projects/project-mutation.service.js.map +1 -0
- package/dist/projects/project.repository.d.ts +49 -0
- package/dist/projects/project.repository.d.ts.map +1 -0
- package/dist/projects/project.repository.js +155 -0
- package/dist/projects/project.repository.js.map +1 -0
- package/dist/projects/project.routes.d.ts +4 -0
- package/dist/projects/project.routes.d.ts.map +1 -0
- package/dist/projects/project.routes.js +45 -0
- package/dist/projects/project.routes.js.map +1 -0
- package/dist/projects/project.schemas.d.ts +2044 -0
- package/dist/projects/project.schemas.d.ts.map +1 -0
- package/dist/projects/project.schemas.js +90 -0
- package/dist/projects/project.schemas.js.map +1 -0
- package/dist/projects/project.service.d.ts +40 -0
- package/dist/projects/project.service.d.ts.map +1 -0
- package/dist/projects/project.service.js +128 -0
- package/dist/projects/project.service.js.map +1 -0
- package/dist/replies/reply-mutation.service.d.ts +19 -0
- package/dist/replies/reply-mutation.service.d.ts.map +1 -0
- package/dist/replies/reply-mutation.service.js +51 -0
- package/dist/replies/reply-mutation.service.js.map +1 -0
- package/dist/replies/reply.input.d.ts +4 -0
- package/dist/replies/reply.input.d.ts.map +1 -0
- package/dist/replies/reply.input.js +33 -0
- package/dist/replies/reply.input.js.map +1 -0
- package/dist/replies/reply.repository.d.ts +40 -0
- package/dist/replies/reply.repository.d.ts.map +1 -0
- package/dist/replies/reply.repository.js +173 -0
- package/dist/replies/reply.repository.js.map +1 -0
- package/dist/replies/reply.routes.d.ts +4 -0
- package/dist/replies/reply.routes.d.ts.map +1 -0
- package/dist/replies/reply.routes.js +64 -0
- package/dist/replies/reply.routes.js.map +1 -0
- package/dist/replies/reply.schemas.d.ts +251 -0
- package/dist/replies/reply.schemas.d.ts.map +1 -0
- package/dist/replies/reply.schemas.js +51 -0
- package/dist/replies/reply.schemas.js.map +1 -0
- package/dist/replies/reply.service.d.ts +19 -0
- package/dist/replies/reply.service.d.ts.map +1 -0
- package/dist/replies/reply.service.js +50 -0
- package/dist/replies/reply.service.js.map +1 -0
- package/dist/replies/reply.types.d.ts +31 -0
- package/dist/replies/reply.types.d.ts.map +1 -0
- package/dist/replies/reply.types.js +2 -0
- package/dist/replies/reply.types.js.map +1 -0
- package/dist/report-cases/report-case-workflow.service.d.ts +39 -0
- package/dist/report-cases/report-case-workflow.service.d.ts.map +1 -0
- package/dist/report-cases/report-case-workflow.service.js +103 -0
- package/dist/report-cases/report-case-workflow.service.js.map +1 -0
- package/dist/report-cases/report-case.input.d.ts +4 -0
- package/dist/report-cases/report-case.input.d.ts.map +1 -0
- package/dist/report-cases/report-case.input.js +29 -0
- package/dist/report-cases/report-case.input.js.map +1 -0
- package/dist/report-cases/report-case.repository.d.ts +45 -0
- package/dist/report-cases/report-case.repository.d.ts.map +1 -0
- package/dist/report-cases/report-case.repository.js +185 -0
- package/dist/report-cases/report-case.repository.js.map +1 -0
- package/dist/report-cases/report-case.routes.d.ts +4 -0
- package/dist/report-cases/report-case.routes.d.ts.map +1 -0
- package/dist/report-cases/report-case.routes.js +94 -0
- package/dist/report-cases/report-case.routes.js.map +1 -0
- package/dist/report-cases/report-case.schemas.d.ts +294 -0
- package/dist/report-cases/report-case.schemas.d.ts.map +1 -0
- package/dist/report-cases/report-case.schemas.js +77 -0
- package/dist/report-cases/report-case.schemas.js.map +1 -0
- package/dist/report-cases/report-case.service.d.ts +21 -0
- package/dist/report-cases/report-case.service.d.ts.map +1 -0
- package/dist/report-cases/report-case.service.js +60 -0
- package/dist/report-cases/report-case.service.js.map +1 -0
- package/dist/report-cases/report-case.types.d.ts +39 -0
- package/dist/report-cases/report-case.types.d.ts.map +1 -0
- package/dist/report-cases/report-case.types.js +2 -0
- package/dist/report-cases/report-case.types.js.map +1 -0
- package/dist/routes/health.route.d.ts +4 -0
- package/dist/routes/health.route.d.ts.map +1 -0
- package/dist/routes/health.route.js +39 -0
- package/dist/routes/health.route.js.map +1 -0
- package/dist/routes/version.route.d.ts +3 -0
- package/dist/routes/version.route.d.ts.map +1 -0
- package/dist/routes/version.route.js +22 -0
- package/dist/routes/version.route.js.map +1 -0
- package/dist/runtime/index.d.ts +8 -0
- package/dist/runtime/index.d.ts.map +1 -0
- package/dist/runtime/index.js +11 -0
- package/dist/runtime/index.js.map +1 -0
- package/dist/server.d.ts +11 -0
- package/dist/server.d.ts.map +1 -0
- package/dist/server.js +66 -0
- package/dist/server.js.map +1 -0
- package/dist/storage/values.d.ts +3 -0
- package/dist/storage/values.d.ts.map +1 -0
- package/dist/storage/values.js +30 -0
- package/dist/storage/values.js.map +1 -0
- package/dist/users/current-user.routes.d.ts +3 -0
- package/dist/users/current-user.routes.d.ts.map +1 -0
- package/dist/users/current-user.routes.js +9 -0
- package/dist/users/current-user.routes.js.map +1 -0
- package/dist/users/current-user.schemas.d.ts +641 -0
- package/dist/users/current-user.schemas.d.ts.map +1 -0
- package/dist/users/current-user.schemas.js +21 -0
- package/dist/users/current-user.schemas.js.map +1 -0
- package/dist/users/user-search.repository.d.ts +19 -0
- package/dist/users/user-search.repository.d.ts.map +1 -0
- package/dist/users/user-search.repository.js +55 -0
- package/dist/users/user-search.repository.js.map +1 -0
- package/dist/users/user-search.routes.d.ts +4 -0
- package/dist/users/user-search.routes.d.ts.map +1 -0
- package/dist/users/user-search.routes.js +19 -0
- package/dist/users/user-search.routes.js.map +1 -0
- package/dist/users/user-search.schemas.d.ts +693 -0
- package/dist/users/user-search.schemas.d.ts.map +1 -0
- package/dist/users/user-search.schemas.js +41 -0
- package/dist/users/user-search.schemas.js.map +1 -0
- package/dist/users/user-search.service.d.ts +20 -0
- package/dist/users/user-search.service.d.ts.map +1 -0
- package/dist/users/user-search.service.js +41 -0
- package/dist/users/user-search.service.js.map +1 -0
- package/dist/users/user.schemas.d.ts +47 -0
- package/dist/users/user.schemas.d.ts.map +1 -0
- package/dist/users/user.schemas.js +13 -0
- package/dist/users/user.schemas.js.map +1 -0
- package/dist/users/user.types.d.ts +6 -0
- package/dist/users/user.types.d.ts.map +1 -0
- package/dist/users/user.types.js +2 -0
- package/dist/users/user.types.js.map +1 -0
- package/dist/version.d.ts +3 -0
- package/dist/version.d.ts.map +1 -0
- package/dist/version.js +5 -0
- package/dist/version.js.map +1 -0
- package/docs/guides/community-api-quickstart.md +171 -0
- package/docs/guides/feature-structure.md +138 -0
- package/docs/guides/independent-cli.md +73 -0
- package/docs/guides/non-attachment-api-contract.md +138 -0
- package/docs/plans/selfdev-schema-alignment.md +61 -0
- package/package.json +76 -0
- package/sql/fivepixels-lite-init.sql +518 -0
|
@@ -0,0 +1,2735 @@
|
|
|
1
|
+
export declare const projectMemberResponseResultSchema: {
|
|
2
|
+
readonly type: "object";
|
|
3
|
+
readonly additionalProperties: false;
|
|
4
|
+
readonly required: readonly ["userId", "userName", "profileImageUrl", "role", "version", "joinedAt", "updatedAt"];
|
|
5
|
+
readonly properties: {
|
|
6
|
+
readonly userId: {
|
|
7
|
+
readonly type: "string";
|
|
8
|
+
readonly format: "uuid";
|
|
9
|
+
};
|
|
10
|
+
readonly userName: {
|
|
11
|
+
readonly type: "string";
|
|
12
|
+
readonly minLength: 1;
|
|
13
|
+
readonly maxLength: 100;
|
|
14
|
+
};
|
|
15
|
+
readonly profileImageUrl: {
|
|
16
|
+
readonly anyOf: readonly [{
|
|
17
|
+
readonly type: "string";
|
|
18
|
+
}, {
|
|
19
|
+
readonly type: "null";
|
|
20
|
+
}];
|
|
21
|
+
};
|
|
22
|
+
readonly role: {
|
|
23
|
+
readonly type: "string";
|
|
24
|
+
readonly enum: readonly ["OWNER", "MEMBER"];
|
|
25
|
+
};
|
|
26
|
+
readonly version: {
|
|
27
|
+
readonly type: "integer";
|
|
28
|
+
readonly minimum: 0;
|
|
29
|
+
};
|
|
30
|
+
readonly joinedAt: {
|
|
31
|
+
readonly type: "string";
|
|
32
|
+
readonly format: "date-time";
|
|
33
|
+
};
|
|
34
|
+
readonly updatedAt: {
|
|
35
|
+
readonly type: "string";
|
|
36
|
+
readonly format: "date-time";
|
|
37
|
+
};
|
|
38
|
+
};
|
|
39
|
+
};
|
|
40
|
+
export declare const listProjectMembersSchema: {
|
|
41
|
+
readonly tags: readonly ["project-members"];
|
|
42
|
+
readonly summary: "프로젝트 멤버 목록 조회";
|
|
43
|
+
readonly security: readonly [{
|
|
44
|
+
readonly userJwt: readonly [];
|
|
45
|
+
}];
|
|
46
|
+
readonly params: {
|
|
47
|
+
readonly type: "object";
|
|
48
|
+
readonly additionalProperties: false;
|
|
49
|
+
readonly required: readonly ["projectId"];
|
|
50
|
+
readonly properties: {
|
|
51
|
+
readonly projectId: {
|
|
52
|
+
readonly type: "string";
|
|
53
|
+
readonly format: "uuid";
|
|
54
|
+
};
|
|
55
|
+
};
|
|
56
|
+
};
|
|
57
|
+
readonly querystring: {
|
|
58
|
+
readonly type: "object";
|
|
59
|
+
readonly additionalProperties: false;
|
|
60
|
+
readonly properties: {
|
|
61
|
+
readonly page: {
|
|
62
|
+
readonly type: "integer";
|
|
63
|
+
readonly default: 1;
|
|
64
|
+
};
|
|
65
|
+
readonly pageSize: {
|
|
66
|
+
readonly type: "integer";
|
|
67
|
+
readonly default: 20;
|
|
68
|
+
};
|
|
69
|
+
};
|
|
70
|
+
};
|
|
71
|
+
readonly response: {
|
|
72
|
+
readonly 400: {
|
|
73
|
+
readonly type: "object";
|
|
74
|
+
readonly additionalProperties: false;
|
|
75
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
76
|
+
readonly properties: {
|
|
77
|
+
readonly resultCode: {
|
|
78
|
+
readonly type: "string";
|
|
79
|
+
};
|
|
80
|
+
readonly resultMessage: {
|
|
81
|
+
readonly type: "string";
|
|
82
|
+
};
|
|
83
|
+
readonly result: {
|
|
84
|
+
readonly type: "null";
|
|
85
|
+
};
|
|
86
|
+
readonly pagination: {
|
|
87
|
+
readonly type: "object";
|
|
88
|
+
readonly additionalProperties: false;
|
|
89
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
90
|
+
readonly properties: {
|
|
91
|
+
readonly page: {
|
|
92
|
+
readonly type: "integer";
|
|
93
|
+
readonly minimum: 0;
|
|
94
|
+
};
|
|
95
|
+
readonly pageSize: {
|
|
96
|
+
readonly type: "integer";
|
|
97
|
+
readonly minimum: 0;
|
|
98
|
+
};
|
|
99
|
+
readonly totalCount: {
|
|
100
|
+
readonly type: "integer";
|
|
101
|
+
readonly minimum: 0;
|
|
102
|
+
};
|
|
103
|
+
readonly totalPages: {
|
|
104
|
+
readonly type: "integer";
|
|
105
|
+
readonly minimum: 0;
|
|
106
|
+
};
|
|
107
|
+
readonly hasNext: {
|
|
108
|
+
readonly type: "boolean";
|
|
109
|
+
};
|
|
110
|
+
readonly hasPrevious: {
|
|
111
|
+
readonly type: "boolean";
|
|
112
|
+
};
|
|
113
|
+
};
|
|
114
|
+
};
|
|
115
|
+
};
|
|
116
|
+
};
|
|
117
|
+
readonly 401: {
|
|
118
|
+
readonly type: "object";
|
|
119
|
+
readonly additionalProperties: false;
|
|
120
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
121
|
+
readonly properties: {
|
|
122
|
+
readonly resultCode: {
|
|
123
|
+
readonly type: "string";
|
|
124
|
+
};
|
|
125
|
+
readonly resultMessage: {
|
|
126
|
+
readonly type: "string";
|
|
127
|
+
};
|
|
128
|
+
readonly result: {
|
|
129
|
+
readonly type: "null";
|
|
130
|
+
};
|
|
131
|
+
readonly pagination: {
|
|
132
|
+
readonly type: "object";
|
|
133
|
+
readonly additionalProperties: false;
|
|
134
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
135
|
+
readonly properties: {
|
|
136
|
+
readonly page: {
|
|
137
|
+
readonly type: "integer";
|
|
138
|
+
readonly minimum: 0;
|
|
139
|
+
};
|
|
140
|
+
readonly pageSize: {
|
|
141
|
+
readonly type: "integer";
|
|
142
|
+
readonly minimum: 0;
|
|
143
|
+
};
|
|
144
|
+
readonly totalCount: {
|
|
145
|
+
readonly type: "integer";
|
|
146
|
+
readonly minimum: 0;
|
|
147
|
+
};
|
|
148
|
+
readonly totalPages: {
|
|
149
|
+
readonly type: "integer";
|
|
150
|
+
readonly minimum: 0;
|
|
151
|
+
};
|
|
152
|
+
readonly hasNext: {
|
|
153
|
+
readonly type: "boolean";
|
|
154
|
+
};
|
|
155
|
+
readonly hasPrevious: {
|
|
156
|
+
readonly type: "boolean";
|
|
157
|
+
};
|
|
158
|
+
};
|
|
159
|
+
};
|
|
160
|
+
};
|
|
161
|
+
};
|
|
162
|
+
readonly 403: {
|
|
163
|
+
readonly type: "object";
|
|
164
|
+
readonly additionalProperties: false;
|
|
165
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
166
|
+
readonly properties: {
|
|
167
|
+
readonly resultCode: {
|
|
168
|
+
readonly type: "string";
|
|
169
|
+
};
|
|
170
|
+
readonly resultMessage: {
|
|
171
|
+
readonly type: "string";
|
|
172
|
+
};
|
|
173
|
+
readonly result: {
|
|
174
|
+
readonly type: "null";
|
|
175
|
+
};
|
|
176
|
+
readonly pagination: {
|
|
177
|
+
readonly type: "object";
|
|
178
|
+
readonly additionalProperties: false;
|
|
179
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
180
|
+
readonly properties: {
|
|
181
|
+
readonly page: {
|
|
182
|
+
readonly type: "integer";
|
|
183
|
+
readonly minimum: 0;
|
|
184
|
+
};
|
|
185
|
+
readonly pageSize: {
|
|
186
|
+
readonly type: "integer";
|
|
187
|
+
readonly minimum: 0;
|
|
188
|
+
};
|
|
189
|
+
readonly totalCount: {
|
|
190
|
+
readonly type: "integer";
|
|
191
|
+
readonly minimum: 0;
|
|
192
|
+
};
|
|
193
|
+
readonly totalPages: {
|
|
194
|
+
readonly type: "integer";
|
|
195
|
+
readonly minimum: 0;
|
|
196
|
+
};
|
|
197
|
+
readonly hasNext: {
|
|
198
|
+
readonly type: "boolean";
|
|
199
|
+
};
|
|
200
|
+
readonly hasPrevious: {
|
|
201
|
+
readonly type: "boolean";
|
|
202
|
+
};
|
|
203
|
+
};
|
|
204
|
+
};
|
|
205
|
+
};
|
|
206
|
+
};
|
|
207
|
+
readonly 404: {
|
|
208
|
+
readonly type: "object";
|
|
209
|
+
readonly additionalProperties: false;
|
|
210
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
211
|
+
readonly properties: {
|
|
212
|
+
readonly resultCode: {
|
|
213
|
+
readonly type: "string";
|
|
214
|
+
};
|
|
215
|
+
readonly resultMessage: {
|
|
216
|
+
readonly type: "string";
|
|
217
|
+
};
|
|
218
|
+
readonly result: {
|
|
219
|
+
readonly type: "null";
|
|
220
|
+
};
|
|
221
|
+
readonly pagination: {
|
|
222
|
+
readonly type: "object";
|
|
223
|
+
readonly additionalProperties: false;
|
|
224
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
225
|
+
readonly properties: {
|
|
226
|
+
readonly page: {
|
|
227
|
+
readonly type: "integer";
|
|
228
|
+
readonly minimum: 0;
|
|
229
|
+
};
|
|
230
|
+
readonly pageSize: {
|
|
231
|
+
readonly type: "integer";
|
|
232
|
+
readonly minimum: 0;
|
|
233
|
+
};
|
|
234
|
+
readonly totalCount: {
|
|
235
|
+
readonly type: "integer";
|
|
236
|
+
readonly minimum: 0;
|
|
237
|
+
};
|
|
238
|
+
readonly totalPages: {
|
|
239
|
+
readonly type: "integer";
|
|
240
|
+
readonly minimum: 0;
|
|
241
|
+
};
|
|
242
|
+
readonly hasNext: {
|
|
243
|
+
readonly type: "boolean";
|
|
244
|
+
};
|
|
245
|
+
readonly hasPrevious: {
|
|
246
|
+
readonly type: "boolean";
|
|
247
|
+
};
|
|
248
|
+
};
|
|
249
|
+
};
|
|
250
|
+
};
|
|
251
|
+
};
|
|
252
|
+
readonly 409: {
|
|
253
|
+
readonly type: "object";
|
|
254
|
+
readonly additionalProperties: false;
|
|
255
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
256
|
+
readonly properties: {
|
|
257
|
+
readonly resultCode: {
|
|
258
|
+
readonly type: "string";
|
|
259
|
+
};
|
|
260
|
+
readonly resultMessage: {
|
|
261
|
+
readonly type: "string";
|
|
262
|
+
};
|
|
263
|
+
readonly result: {
|
|
264
|
+
readonly type: "null";
|
|
265
|
+
};
|
|
266
|
+
readonly pagination: {
|
|
267
|
+
readonly type: "object";
|
|
268
|
+
readonly additionalProperties: false;
|
|
269
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
270
|
+
readonly properties: {
|
|
271
|
+
readonly page: {
|
|
272
|
+
readonly type: "integer";
|
|
273
|
+
readonly minimum: 0;
|
|
274
|
+
};
|
|
275
|
+
readonly pageSize: {
|
|
276
|
+
readonly type: "integer";
|
|
277
|
+
readonly minimum: 0;
|
|
278
|
+
};
|
|
279
|
+
readonly totalCount: {
|
|
280
|
+
readonly type: "integer";
|
|
281
|
+
readonly minimum: 0;
|
|
282
|
+
};
|
|
283
|
+
readonly totalPages: {
|
|
284
|
+
readonly type: "integer";
|
|
285
|
+
readonly minimum: 0;
|
|
286
|
+
};
|
|
287
|
+
readonly hasNext: {
|
|
288
|
+
readonly type: "boolean";
|
|
289
|
+
};
|
|
290
|
+
readonly hasPrevious: {
|
|
291
|
+
readonly type: "boolean";
|
|
292
|
+
};
|
|
293
|
+
};
|
|
294
|
+
};
|
|
295
|
+
};
|
|
296
|
+
};
|
|
297
|
+
readonly 410: {
|
|
298
|
+
readonly type: "object";
|
|
299
|
+
readonly additionalProperties: false;
|
|
300
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
301
|
+
readonly properties: {
|
|
302
|
+
readonly resultCode: {
|
|
303
|
+
readonly type: "string";
|
|
304
|
+
};
|
|
305
|
+
readonly resultMessage: {
|
|
306
|
+
readonly type: "string";
|
|
307
|
+
};
|
|
308
|
+
readonly result: {
|
|
309
|
+
readonly type: "null";
|
|
310
|
+
};
|
|
311
|
+
readonly pagination: {
|
|
312
|
+
readonly type: "object";
|
|
313
|
+
readonly additionalProperties: false;
|
|
314
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
315
|
+
readonly properties: {
|
|
316
|
+
readonly page: {
|
|
317
|
+
readonly type: "integer";
|
|
318
|
+
readonly minimum: 0;
|
|
319
|
+
};
|
|
320
|
+
readonly pageSize: {
|
|
321
|
+
readonly type: "integer";
|
|
322
|
+
readonly minimum: 0;
|
|
323
|
+
};
|
|
324
|
+
readonly totalCount: {
|
|
325
|
+
readonly type: "integer";
|
|
326
|
+
readonly minimum: 0;
|
|
327
|
+
};
|
|
328
|
+
readonly totalPages: {
|
|
329
|
+
readonly type: "integer";
|
|
330
|
+
readonly minimum: 0;
|
|
331
|
+
};
|
|
332
|
+
readonly hasNext: {
|
|
333
|
+
readonly type: "boolean";
|
|
334
|
+
};
|
|
335
|
+
readonly hasPrevious: {
|
|
336
|
+
readonly type: "boolean";
|
|
337
|
+
};
|
|
338
|
+
};
|
|
339
|
+
};
|
|
340
|
+
};
|
|
341
|
+
};
|
|
342
|
+
readonly 412: {
|
|
343
|
+
readonly type: "object";
|
|
344
|
+
readonly additionalProperties: false;
|
|
345
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
346
|
+
readonly properties: {
|
|
347
|
+
readonly resultCode: {
|
|
348
|
+
readonly type: "string";
|
|
349
|
+
};
|
|
350
|
+
readonly resultMessage: {
|
|
351
|
+
readonly type: "string";
|
|
352
|
+
};
|
|
353
|
+
readonly result: {
|
|
354
|
+
readonly type: "null";
|
|
355
|
+
};
|
|
356
|
+
readonly pagination: {
|
|
357
|
+
readonly type: "object";
|
|
358
|
+
readonly additionalProperties: false;
|
|
359
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
360
|
+
readonly properties: {
|
|
361
|
+
readonly page: {
|
|
362
|
+
readonly type: "integer";
|
|
363
|
+
readonly minimum: 0;
|
|
364
|
+
};
|
|
365
|
+
readonly pageSize: {
|
|
366
|
+
readonly type: "integer";
|
|
367
|
+
readonly minimum: 0;
|
|
368
|
+
};
|
|
369
|
+
readonly totalCount: {
|
|
370
|
+
readonly type: "integer";
|
|
371
|
+
readonly minimum: 0;
|
|
372
|
+
};
|
|
373
|
+
readonly totalPages: {
|
|
374
|
+
readonly type: "integer";
|
|
375
|
+
readonly minimum: 0;
|
|
376
|
+
};
|
|
377
|
+
readonly hasNext: {
|
|
378
|
+
readonly type: "boolean";
|
|
379
|
+
};
|
|
380
|
+
readonly hasPrevious: {
|
|
381
|
+
readonly type: "boolean";
|
|
382
|
+
};
|
|
383
|
+
};
|
|
384
|
+
};
|
|
385
|
+
};
|
|
386
|
+
};
|
|
387
|
+
readonly 413: {
|
|
388
|
+
readonly type: "object";
|
|
389
|
+
readonly additionalProperties: false;
|
|
390
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
391
|
+
readonly properties: {
|
|
392
|
+
readonly resultCode: {
|
|
393
|
+
readonly type: "string";
|
|
394
|
+
};
|
|
395
|
+
readonly resultMessage: {
|
|
396
|
+
readonly type: "string";
|
|
397
|
+
};
|
|
398
|
+
readonly result: {
|
|
399
|
+
readonly type: "null";
|
|
400
|
+
};
|
|
401
|
+
readonly pagination: {
|
|
402
|
+
readonly type: "object";
|
|
403
|
+
readonly additionalProperties: false;
|
|
404
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
405
|
+
readonly properties: {
|
|
406
|
+
readonly page: {
|
|
407
|
+
readonly type: "integer";
|
|
408
|
+
readonly minimum: 0;
|
|
409
|
+
};
|
|
410
|
+
readonly pageSize: {
|
|
411
|
+
readonly type: "integer";
|
|
412
|
+
readonly minimum: 0;
|
|
413
|
+
};
|
|
414
|
+
readonly totalCount: {
|
|
415
|
+
readonly type: "integer";
|
|
416
|
+
readonly minimum: 0;
|
|
417
|
+
};
|
|
418
|
+
readonly totalPages: {
|
|
419
|
+
readonly type: "integer";
|
|
420
|
+
readonly minimum: 0;
|
|
421
|
+
};
|
|
422
|
+
readonly hasNext: {
|
|
423
|
+
readonly type: "boolean";
|
|
424
|
+
};
|
|
425
|
+
readonly hasPrevious: {
|
|
426
|
+
readonly type: "boolean";
|
|
427
|
+
};
|
|
428
|
+
};
|
|
429
|
+
};
|
|
430
|
+
};
|
|
431
|
+
};
|
|
432
|
+
readonly 422: {
|
|
433
|
+
readonly type: "object";
|
|
434
|
+
readonly additionalProperties: false;
|
|
435
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
436
|
+
readonly properties: {
|
|
437
|
+
readonly resultCode: {
|
|
438
|
+
readonly type: "string";
|
|
439
|
+
};
|
|
440
|
+
readonly resultMessage: {
|
|
441
|
+
readonly type: "string";
|
|
442
|
+
};
|
|
443
|
+
readonly result: {
|
|
444
|
+
readonly type: "null";
|
|
445
|
+
};
|
|
446
|
+
readonly pagination: {
|
|
447
|
+
readonly type: "object";
|
|
448
|
+
readonly additionalProperties: false;
|
|
449
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
450
|
+
readonly properties: {
|
|
451
|
+
readonly page: {
|
|
452
|
+
readonly type: "integer";
|
|
453
|
+
readonly minimum: 0;
|
|
454
|
+
};
|
|
455
|
+
readonly pageSize: {
|
|
456
|
+
readonly type: "integer";
|
|
457
|
+
readonly minimum: 0;
|
|
458
|
+
};
|
|
459
|
+
readonly totalCount: {
|
|
460
|
+
readonly type: "integer";
|
|
461
|
+
readonly minimum: 0;
|
|
462
|
+
};
|
|
463
|
+
readonly totalPages: {
|
|
464
|
+
readonly type: "integer";
|
|
465
|
+
readonly minimum: 0;
|
|
466
|
+
};
|
|
467
|
+
readonly hasNext: {
|
|
468
|
+
readonly type: "boolean";
|
|
469
|
+
};
|
|
470
|
+
readonly hasPrevious: {
|
|
471
|
+
readonly type: "boolean";
|
|
472
|
+
};
|
|
473
|
+
};
|
|
474
|
+
};
|
|
475
|
+
};
|
|
476
|
+
};
|
|
477
|
+
readonly 423: {
|
|
478
|
+
readonly type: "object";
|
|
479
|
+
readonly additionalProperties: false;
|
|
480
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
481
|
+
readonly properties: {
|
|
482
|
+
readonly resultCode: {
|
|
483
|
+
readonly type: "string";
|
|
484
|
+
};
|
|
485
|
+
readonly resultMessage: {
|
|
486
|
+
readonly type: "string";
|
|
487
|
+
};
|
|
488
|
+
readonly result: {
|
|
489
|
+
readonly type: "null";
|
|
490
|
+
};
|
|
491
|
+
readonly pagination: {
|
|
492
|
+
readonly type: "object";
|
|
493
|
+
readonly additionalProperties: false;
|
|
494
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
495
|
+
readonly properties: {
|
|
496
|
+
readonly page: {
|
|
497
|
+
readonly type: "integer";
|
|
498
|
+
readonly minimum: 0;
|
|
499
|
+
};
|
|
500
|
+
readonly pageSize: {
|
|
501
|
+
readonly type: "integer";
|
|
502
|
+
readonly minimum: 0;
|
|
503
|
+
};
|
|
504
|
+
readonly totalCount: {
|
|
505
|
+
readonly type: "integer";
|
|
506
|
+
readonly minimum: 0;
|
|
507
|
+
};
|
|
508
|
+
readonly totalPages: {
|
|
509
|
+
readonly type: "integer";
|
|
510
|
+
readonly minimum: 0;
|
|
511
|
+
};
|
|
512
|
+
readonly hasNext: {
|
|
513
|
+
readonly type: "boolean";
|
|
514
|
+
};
|
|
515
|
+
readonly hasPrevious: {
|
|
516
|
+
readonly type: "boolean";
|
|
517
|
+
};
|
|
518
|
+
};
|
|
519
|
+
};
|
|
520
|
+
};
|
|
521
|
+
};
|
|
522
|
+
readonly 428: {
|
|
523
|
+
readonly type: "object";
|
|
524
|
+
readonly additionalProperties: false;
|
|
525
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
526
|
+
readonly properties: {
|
|
527
|
+
readonly resultCode: {
|
|
528
|
+
readonly type: "string";
|
|
529
|
+
};
|
|
530
|
+
readonly resultMessage: {
|
|
531
|
+
readonly type: "string";
|
|
532
|
+
};
|
|
533
|
+
readonly result: {
|
|
534
|
+
readonly type: "null";
|
|
535
|
+
};
|
|
536
|
+
readonly pagination: {
|
|
537
|
+
readonly type: "object";
|
|
538
|
+
readonly additionalProperties: false;
|
|
539
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
540
|
+
readonly properties: {
|
|
541
|
+
readonly page: {
|
|
542
|
+
readonly type: "integer";
|
|
543
|
+
readonly minimum: 0;
|
|
544
|
+
};
|
|
545
|
+
readonly pageSize: {
|
|
546
|
+
readonly type: "integer";
|
|
547
|
+
readonly minimum: 0;
|
|
548
|
+
};
|
|
549
|
+
readonly totalCount: {
|
|
550
|
+
readonly type: "integer";
|
|
551
|
+
readonly minimum: 0;
|
|
552
|
+
};
|
|
553
|
+
readonly totalPages: {
|
|
554
|
+
readonly type: "integer";
|
|
555
|
+
readonly minimum: 0;
|
|
556
|
+
};
|
|
557
|
+
readonly hasNext: {
|
|
558
|
+
readonly type: "boolean";
|
|
559
|
+
};
|
|
560
|
+
readonly hasPrevious: {
|
|
561
|
+
readonly type: "boolean";
|
|
562
|
+
};
|
|
563
|
+
};
|
|
564
|
+
};
|
|
565
|
+
};
|
|
566
|
+
};
|
|
567
|
+
readonly 429: {
|
|
568
|
+
readonly type: "object";
|
|
569
|
+
readonly additionalProperties: false;
|
|
570
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
571
|
+
readonly properties: {
|
|
572
|
+
readonly resultCode: {
|
|
573
|
+
readonly type: "string";
|
|
574
|
+
};
|
|
575
|
+
readonly resultMessage: {
|
|
576
|
+
readonly type: "string";
|
|
577
|
+
};
|
|
578
|
+
readonly result: {
|
|
579
|
+
readonly type: "null";
|
|
580
|
+
};
|
|
581
|
+
readonly pagination: {
|
|
582
|
+
readonly type: "object";
|
|
583
|
+
readonly additionalProperties: false;
|
|
584
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
585
|
+
readonly properties: {
|
|
586
|
+
readonly page: {
|
|
587
|
+
readonly type: "integer";
|
|
588
|
+
readonly minimum: 0;
|
|
589
|
+
};
|
|
590
|
+
readonly pageSize: {
|
|
591
|
+
readonly type: "integer";
|
|
592
|
+
readonly minimum: 0;
|
|
593
|
+
};
|
|
594
|
+
readonly totalCount: {
|
|
595
|
+
readonly type: "integer";
|
|
596
|
+
readonly minimum: 0;
|
|
597
|
+
};
|
|
598
|
+
readonly totalPages: {
|
|
599
|
+
readonly type: "integer";
|
|
600
|
+
readonly minimum: 0;
|
|
601
|
+
};
|
|
602
|
+
readonly hasNext: {
|
|
603
|
+
readonly type: "boolean";
|
|
604
|
+
};
|
|
605
|
+
readonly hasPrevious: {
|
|
606
|
+
readonly type: "boolean";
|
|
607
|
+
};
|
|
608
|
+
};
|
|
609
|
+
};
|
|
610
|
+
};
|
|
611
|
+
};
|
|
612
|
+
readonly 500: {
|
|
613
|
+
readonly type: "object";
|
|
614
|
+
readonly additionalProperties: false;
|
|
615
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
616
|
+
readonly properties: {
|
|
617
|
+
readonly resultCode: {
|
|
618
|
+
readonly type: "string";
|
|
619
|
+
};
|
|
620
|
+
readonly resultMessage: {
|
|
621
|
+
readonly type: "string";
|
|
622
|
+
};
|
|
623
|
+
readonly result: {
|
|
624
|
+
readonly type: "null";
|
|
625
|
+
};
|
|
626
|
+
readonly pagination: {
|
|
627
|
+
readonly type: "object";
|
|
628
|
+
readonly additionalProperties: false;
|
|
629
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
630
|
+
readonly properties: {
|
|
631
|
+
readonly page: {
|
|
632
|
+
readonly type: "integer";
|
|
633
|
+
readonly minimum: 0;
|
|
634
|
+
};
|
|
635
|
+
readonly pageSize: {
|
|
636
|
+
readonly type: "integer";
|
|
637
|
+
readonly minimum: 0;
|
|
638
|
+
};
|
|
639
|
+
readonly totalCount: {
|
|
640
|
+
readonly type: "integer";
|
|
641
|
+
readonly minimum: 0;
|
|
642
|
+
};
|
|
643
|
+
readonly totalPages: {
|
|
644
|
+
readonly type: "integer";
|
|
645
|
+
readonly minimum: 0;
|
|
646
|
+
};
|
|
647
|
+
readonly hasNext: {
|
|
648
|
+
readonly type: "boolean";
|
|
649
|
+
};
|
|
650
|
+
readonly hasPrevious: {
|
|
651
|
+
readonly type: "boolean";
|
|
652
|
+
};
|
|
653
|
+
};
|
|
654
|
+
};
|
|
655
|
+
};
|
|
656
|
+
};
|
|
657
|
+
readonly 503: {
|
|
658
|
+
readonly type: "object";
|
|
659
|
+
readonly additionalProperties: false;
|
|
660
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
661
|
+
readonly properties: {
|
|
662
|
+
readonly resultCode: {
|
|
663
|
+
readonly type: "string";
|
|
664
|
+
};
|
|
665
|
+
readonly resultMessage: {
|
|
666
|
+
readonly type: "string";
|
|
667
|
+
};
|
|
668
|
+
readonly result: {
|
|
669
|
+
readonly type: "null";
|
|
670
|
+
};
|
|
671
|
+
readonly pagination: {
|
|
672
|
+
readonly type: "object";
|
|
673
|
+
readonly additionalProperties: false;
|
|
674
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
675
|
+
readonly properties: {
|
|
676
|
+
readonly page: {
|
|
677
|
+
readonly type: "integer";
|
|
678
|
+
readonly minimum: 0;
|
|
679
|
+
};
|
|
680
|
+
readonly pageSize: {
|
|
681
|
+
readonly type: "integer";
|
|
682
|
+
readonly minimum: 0;
|
|
683
|
+
};
|
|
684
|
+
readonly totalCount: {
|
|
685
|
+
readonly type: "integer";
|
|
686
|
+
readonly minimum: 0;
|
|
687
|
+
};
|
|
688
|
+
readonly totalPages: {
|
|
689
|
+
readonly type: "integer";
|
|
690
|
+
readonly minimum: 0;
|
|
691
|
+
};
|
|
692
|
+
readonly hasNext: {
|
|
693
|
+
readonly type: "boolean";
|
|
694
|
+
};
|
|
695
|
+
readonly hasPrevious: {
|
|
696
|
+
readonly type: "boolean";
|
|
697
|
+
};
|
|
698
|
+
};
|
|
699
|
+
};
|
|
700
|
+
};
|
|
701
|
+
};
|
|
702
|
+
readonly 200: Record<string, unknown>;
|
|
703
|
+
};
|
|
704
|
+
};
|
|
705
|
+
export declare const addProjectMemberSchema: {
|
|
706
|
+
readonly tags: readonly ["project-members"];
|
|
707
|
+
readonly summary: "프로젝트 멤버 추가";
|
|
708
|
+
readonly security: readonly [{
|
|
709
|
+
readonly userJwt: readonly [];
|
|
710
|
+
}];
|
|
711
|
+
readonly params: {
|
|
712
|
+
readonly type: "object";
|
|
713
|
+
readonly additionalProperties: false;
|
|
714
|
+
readonly required: readonly ["projectId"];
|
|
715
|
+
readonly properties: {
|
|
716
|
+
readonly projectId: {
|
|
717
|
+
readonly type: "string";
|
|
718
|
+
readonly format: "uuid";
|
|
719
|
+
};
|
|
720
|
+
};
|
|
721
|
+
};
|
|
722
|
+
readonly body: {
|
|
723
|
+
readonly type: "object";
|
|
724
|
+
readonly additionalProperties: false;
|
|
725
|
+
readonly required: readonly ["userId", "role"];
|
|
726
|
+
readonly properties: {
|
|
727
|
+
readonly userId: {
|
|
728
|
+
readonly type: "string";
|
|
729
|
+
readonly format: "uuid";
|
|
730
|
+
};
|
|
731
|
+
readonly role: {
|
|
732
|
+
readonly type: "string";
|
|
733
|
+
readonly minLength: 1;
|
|
734
|
+
readonly maxLength: 20;
|
|
735
|
+
};
|
|
736
|
+
};
|
|
737
|
+
};
|
|
738
|
+
readonly response: {
|
|
739
|
+
readonly 400: {
|
|
740
|
+
readonly type: "object";
|
|
741
|
+
readonly additionalProperties: false;
|
|
742
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
743
|
+
readonly properties: {
|
|
744
|
+
readonly resultCode: {
|
|
745
|
+
readonly type: "string";
|
|
746
|
+
};
|
|
747
|
+
readonly resultMessage: {
|
|
748
|
+
readonly type: "string";
|
|
749
|
+
};
|
|
750
|
+
readonly result: {
|
|
751
|
+
readonly type: "null";
|
|
752
|
+
};
|
|
753
|
+
readonly pagination: {
|
|
754
|
+
readonly type: "object";
|
|
755
|
+
readonly additionalProperties: false;
|
|
756
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
757
|
+
readonly properties: {
|
|
758
|
+
readonly page: {
|
|
759
|
+
readonly type: "integer";
|
|
760
|
+
readonly minimum: 0;
|
|
761
|
+
};
|
|
762
|
+
readonly pageSize: {
|
|
763
|
+
readonly type: "integer";
|
|
764
|
+
readonly minimum: 0;
|
|
765
|
+
};
|
|
766
|
+
readonly totalCount: {
|
|
767
|
+
readonly type: "integer";
|
|
768
|
+
readonly minimum: 0;
|
|
769
|
+
};
|
|
770
|
+
readonly totalPages: {
|
|
771
|
+
readonly type: "integer";
|
|
772
|
+
readonly minimum: 0;
|
|
773
|
+
};
|
|
774
|
+
readonly hasNext: {
|
|
775
|
+
readonly type: "boolean";
|
|
776
|
+
};
|
|
777
|
+
readonly hasPrevious: {
|
|
778
|
+
readonly type: "boolean";
|
|
779
|
+
};
|
|
780
|
+
};
|
|
781
|
+
};
|
|
782
|
+
};
|
|
783
|
+
};
|
|
784
|
+
readonly 401: {
|
|
785
|
+
readonly type: "object";
|
|
786
|
+
readonly additionalProperties: false;
|
|
787
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
788
|
+
readonly properties: {
|
|
789
|
+
readonly resultCode: {
|
|
790
|
+
readonly type: "string";
|
|
791
|
+
};
|
|
792
|
+
readonly resultMessage: {
|
|
793
|
+
readonly type: "string";
|
|
794
|
+
};
|
|
795
|
+
readonly result: {
|
|
796
|
+
readonly type: "null";
|
|
797
|
+
};
|
|
798
|
+
readonly pagination: {
|
|
799
|
+
readonly type: "object";
|
|
800
|
+
readonly additionalProperties: false;
|
|
801
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
802
|
+
readonly properties: {
|
|
803
|
+
readonly page: {
|
|
804
|
+
readonly type: "integer";
|
|
805
|
+
readonly minimum: 0;
|
|
806
|
+
};
|
|
807
|
+
readonly pageSize: {
|
|
808
|
+
readonly type: "integer";
|
|
809
|
+
readonly minimum: 0;
|
|
810
|
+
};
|
|
811
|
+
readonly totalCount: {
|
|
812
|
+
readonly type: "integer";
|
|
813
|
+
readonly minimum: 0;
|
|
814
|
+
};
|
|
815
|
+
readonly totalPages: {
|
|
816
|
+
readonly type: "integer";
|
|
817
|
+
readonly minimum: 0;
|
|
818
|
+
};
|
|
819
|
+
readonly hasNext: {
|
|
820
|
+
readonly type: "boolean";
|
|
821
|
+
};
|
|
822
|
+
readonly hasPrevious: {
|
|
823
|
+
readonly type: "boolean";
|
|
824
|
+
};
|
|
825
|
+
};
|
|
826
|
+
};
|
|
827
|
+
};
|
|
828
|
+
};
|
|
829
|
+
readonly 403: {
|
|
830
|
+
readonly type: "object";
|
|
831
|
+
readonly additionalProperties: false;
|
|
832
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
833
|
+
readonly properties: {
|
|
834
|
+
readonly resultCode: {
|
|
835
|
+
readonly type: "string";
|
|
836
|
+
};
|
|
837
|
+
readonly resultMessage: {
|
|
838
|
+
readonly type: "string";
|
|
839
|
+
};
|
|
840
|
+
readonly result: {
|
|
841
|
+
readonly type: "null";
|
|
842
|
+
};
|
|
843
|
+
readonly pagination: {
|
|
844
|
+
readonly type: "object";
|
|
845
|
+
readonly additionalProperties: false;
|
|
846
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
847
|
+
readonly properties: {
|
|
848
|
+
readonly page: {
|
|
849
|
+
readonly type: "integer";
|
|
850
|
+
readonly minimum: 0;
|
|
851
|
+
};
|
|
852
|
+
readonly pageSize: {
|
|
853
|
+
readonly type: "integer";
|
|
854
|
+
readonly minimum: 0;
|
|
855
|
+
};
|
|
856
|
+
readonly totalCount: {
|
|
857
|
+
readonly type: "integer";
|
|
858
|
+
readonly minimum: 0;
|
|
859
|
+
};
|
|
860
|
+
readonly totalPages: {
|
|
861
|
+
readonly type: "integer";
|
|
862
|
+
readonly minimum: 0;
|
|
863
|
+
};
|
|
864
|
+
readonly hasNext: {
|
|
865
|
+
readonly type: "boolean";
|
|
866
|
+
};
|
|
867
|
+
readonly hasPrevious: {
|
|
868
|
+
readonly type: "boolean";
|
|
869
|
+
};
|
|
870
|
+
};
|
|
871
|
+
};
|
|
872
|
+
};
|
|
873
|
+
};
|
|
874
|
+
readonly 404: {
|
|
875
|
+
readonly type: "object";
|
|
876
|
+
readonly additionalProperties: false;
|
|
877
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
878
|
+
readonly properties: {
|
|
879
|
+
readonly resultCode: {
|
|
880
|
+
readonly type: "string";
|
|
881
|
+
};
|
|
882
|
+
readonly resultMessage: {
|
|
883
|
+
readonly type: "string";
|
|
884
|
+
};
|
|
885
|
+
readonly result: {
|
|
886
|
+
readonly type: "null";
|
|
887
|
+
};
|
|
888
|
+
readonly pagination: {
|
|
889
|
+
readonly type: "object";
|
|
890
|
+
readonly additionalProperties: false;
|
|
891
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
892
|
+
readonly properties: {
|
|
893
|
+
readonly page: {
|
|
894
|
+
readonly type: "integer";
|
|
895
|
+
readonly minimum: 0;
|
|
896
|
+
};
|
|
897
|
+
readonly pageSize: {
|
|
898
|
+
readonly type: "integer";
|
|
899
|
+
readonly minimum: 0;
|
|
900
|
+
};
|
|
901
|
+
readonly totalCount: {
|
|
902
|
+
readonly type: "integer";
|
|
903
|
+
readonly minimum: 0;
|
|
904
|
+
};
|
|
905
|
+
readonly totalPages: {
|
|
906
|
+
readonly type: "integer";
|
|
907
|
+
readonly minimum: 0;
|
|
908
|
+
};
|
|
909
|
+
readonly hasNext: {
|
|
910
|
+
readonly type: "boolean";
|
|
911
|
+
};
|
|
912
|
+
readonly hasPrevious: {
|
|
913
|
+
readonly type: "boolean";
|
|
914
|
+
};
|
|
915
|
+
};
|
|
916
|
+
};
|
|
917
|
+
};
|
|
918
|
+
};
|
|
919
|
+
readonly 409: {
|
|
920
|
+
readonly type: "object";
|
|
921
|
+
readonly additionalProperties: false;
|
|
922
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
923
|
+
readonly properties: {
|
|
924
|
+
readonly resultCode: {
|
|
925
|
+
readonly type: "string";
|
|
926
|
+
};
|
|
927
|
+
readonly resultMessage: {
|
|
928
|
+
readonly type: "string";
|
|
929
|
+
};
|
|
930
|
+
readonly result: {
|
|
931
|
+
readonly type: "null";
|
|
932
|
+
};
|
|
933
|
+
readonly pagination: {
|
|
934
|
+
readonly type: "object";
|
|
935
|
+
readonly additionalProperties: false;
|
|
936
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
937
|
+
readonly properties: {
|
|
938
|
+
readonly page: {
|
|
939
|
+
readonly type: "integer";
|
|
940
|
+
readonly minimum: 0;
|
|
941
|
+
};
|
|
942
|
+
readonly pageSize: {
|
|
943
|
+
readonly type: "integer";
|
|
944
|
+
readonly minimum: 0;
|
|
945
|
+
};
|
|
946
|
+
readonly totalCount: {
|
|
947
|
+
readonly type: "integer";
|
|
948
|
+
readonly minimum: 0;
|
|
949
|
+
};
|
|
950
|
+
readonly totalPages: {
|
|
951
|
+
readonly type: "integer";
|
|
952
|
+
readonly minimum: 0;
|
|
953
|
+
};
|
|
954
|
+
readonly hasNext: {
|
|
955
|
+
readonly type: "boolean";
|
|
956
|
+
};
|
|
957
|
+
readonly hasPrevious: {
|
|
958
|
+
readonly type: "boolean";
|
|
959
|
+
};
|
|
960
|
+
};
|
|
961
|
+
};
|
|
962
|
+
};
|
|
963
|
+
};
|
|
964
|
+
readonly 410: {
|
|
965
|
+
readonly type: "object";
|
|
966
|
+
readonly additionalProperties: false;
|
|
967
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
968
|
+
readonly properties: {
|
|
969
|
+
readonly resultCode: {
|
|
970
|
+
readonly type: "string";
|
|
971
|
+
};
|
|
972
|
+
readonly resultMessage: {
|
|
973
|
+
readonly type: "string";
|
|
974
|
+
};
|
|
975
|
+
readonly result: {
|
|
976
|
+
readonly type: "null";
|
|
977
|
+
};
|
|
978
|
+
readonly pagination: {
|
|
979
|
+
readonly type: "object";
|
|
980
|
+
readonly additionalProperties: false;
|
|
981
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
982
|
+
readonly properties: {
|
|
983
|
+
readonly page: {
|
|
984
|
+
readonly type: "integer";
|
|
985
|
+
readonly minimum: 0;
|
|
986
|
+
};
|
|
987
|
+
readonly pageSize: {
|
|
988
|
+
readonly type: "integer";
|
|
989
|
+
readonly minimum: 0;
|
|
990
|
+
};
|
|
991
|
+
readonly totalCount: {
|
|
992
|
+
readonly type: "integer";
|
|
993
|
+
readonly minimum: 0;
|
|
994
|
+
};
|
|
995
|
+
readonly totalPages: {
|
|
996
|
+
readonly type: "integer";
|
|
997
|
+
readonly minimum: 0;
|
|
998
|
+
};
|
|
999
|
+
readonly hasNext: {
|
|
1000
|
+
readonly type: "boolean";
|
|
1001
|
+
};
|
|
1002
|
+
readonly hasPrevious: {
|
|
1003
|
+
readonly type: "boolean";
|
|
1004
|
+
};
|
|
1005
|
+
};
|
|
1006
|
+
};
|
|
1007
|
+
};
|
|
1008
|
+
};
|
|
1009
|
+
readonly 412: {
|
|
1010
|
+
readonly type: "object";
|
|
1011
|
+
readonly additionalProperties: false;
|
|
1012
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
1013
|
+
readonly properties: {
|
|
1014
|
+
readonly resultCode: {
|
|
1015
|
+
readonly type: "string";
|
|
1016
|
+
};
|
|
1017
|
+
readonly resultMessage: {
|
|
1018
|
+
readonly type: "string";
|
|
1019
|
+
};
|
|
1020
|
+
readonly result: {
|
|
1021
|
+
readonly type: "null";
|
|
1022
|
+
};
|
|
1023
|
+
readonly pagination: {
|
|
1024
|
+
readonly type: "object";
|
|
1025
|
+
readonly additionalProperties: false;
|
|
1026
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
1027
|
+
readonly properties: {
|
|
1028
|
+
readonly page: {
|
|
1029
|
+
readonly type: "integer";
|
|
1030
|
+
readonly minimum: 0;
|
|
1031
|
+
};
|
|
1032
|
+
readonly pageSize: {
|
|
1033
|
+
readonly type: "integer";
|
|
1034
|
+
readonly minimum: 0;
|
|
1035
|
+
};
|
|
1036
|
+
readonly totalCount: {
|
|
1037
|
+
readonly type: "integer";
|
|
1038
|
+
readonly minimum: 0;
|
|
1039
|
+
};
|
|
1040
|
+
readonly totalPages: {
|
|
1041
|
+
readonly type: "integer";
|
|
1042
|
+
readonly minimum: 0;
|
|
1043
|
+
};
|
|
1044
|
+
readonly hasNext: {
|
|
1045
|
+
readonly type: "boolean";
|
|
1046
|
+
};
|
|
1047
|
+
readonly hasPrevious: {
|
|
1048
|
+
readonly type: "boolean";
|
|
1049
|
+
};
|
|
1050
|
+
};
|
|
1051
|
+
};
|
|
1052
|
+
};
|
|
1053
|
+
};
|
|
1054
|
+
readonly 413: {
|
|
1055
|
+
readonly type: "object";
|
|
1056
|
+
readonly additionalProperties: false;
|
|
1057
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
1058
|
+
readonly properties: {
|
|
1059
|
+
readonly resultCode: {
|
|
1060
|
+
readonly type: "string";
|
|
1061
|
+
};
|
|
1062
|
+
readonly resultMessage: {
|
|
1063
|
+
readonly type: "string";
|
|
1064
|
+
};
|
|
1065
|
+
readonly result: {
|
|
1066
|
+
readonly type: "null";
|
|
1067
|
+
};
|
|
1068
|
+
readonly pagination: {
|
|
1069
|
+
readonly type: "object";
|
|
1070
|
+
readonly additionalProperties: false;
|
|
1071
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
1072
|
+
readonly properties: {
|
|
1073
|
+
readonly page: {
|
|
1074
|
+
readonly type: "integer";
|
|
1075
|
+
readonly minimum: 0;
|
|
1076
|
+
};
|
|
1077
|
+
readonly pageSize: {
|
|
1078
|
+
readonly type: "integer";
|
|
1079
|
+
readonly minimum: 0;
|
|
1080
|
+
};
|
|
1081
|
+
readonly totalCount: {
|
|
1082
|
+
readonly type: "integer";
|
|
1083
|
+
readonly minimum: 0;
|
|
1084
|
+
};
|
|
1085
|
+
readonly totalPages: {
|
|
1086
|
+
readonly type: "integer";
|
|
1087
|
+
readonly minimum: 0;
|
|
1088
|
+
};
|
|
1089
|
+
readonly hasNext: {
|
|
1090
|
+
readonly type: "boolean";
|
|
1091
|
+
};
|
|
1092
|
+
readonly hasPrevious: {
|
|
1093
|
+
readonly type: "boolean";
|
|
1094
|
+
};
|
|
1095
|
+
};
|
|
1096
|
+
};
|
|
1097
|
+
};
|
|
1098
|
+
};
|
|
1099
|
+
readonly 422: {
|
|
1100
|
+
readonly type: "object";
|
|
1101
|
+
readonly additionalProperties: false;
|
|
1102
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
1103
|
+
readonly properties: {
|
|
1104
|
+
readonly resultCode: {
|
|
1105
|
+
readonly type: "string";
|
|
1106
|
+
};
|
|
1107
|
+
readonly resultMessage: {
|
|
1108
|
+
readonly type: "string";
|
|
1109
|
+
};
|
|
1110
|
+
readonly result: {
|
|
1111
|
+
readonly type: "null";
|
|
1112
|
+
};
|
|
1113
|
+
readonly pagination: {
|
|
1114
|
+
readonly type: "object";
|
|
1115
|
+
readonly additionalProperties: false;
|
|
1116
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
1117
|
+
readonly properties: {
|
|
1118
|
+
readonly page: {
|
|
1119
|
+
readonly type: "integer";
|
|
1120
|
+
readonly minimum: 0;
|
|
1121
|
+
};
|
|
1122
|
+
readonly pageSize: {
|
|
1123
|
+
readonly type: "integer";
|
|
1124
|
+
readonly minimum: 0;
|
|
1125
|
+
};
|
|
1126
|
+
readonly totalCount: {
|
|
1127
|
+
readonly type: "integer";
|
|
1128
|
+
readonly minimum: 0;
|
|
1129
|
+
};
|
|
1130
|
+
readonly totalPages: {
|
|
1131
|
+
readonly type: "integer";
|
|
1132
|
+
readonly minimum: 0;
|
|
1133
|
+
};
|
|
1134
|
+
readonly hasNext: {
|
|
1135
|
+
readonly type: "boolean";
|
|
1136
|
+
};
|
|
1137
|
+
readonly hasPrevious: {
|
|
1138
|
+
readonly type: "boolean";
|
|
1139
|
+
};
|
|
1140
|
+
};
|
|
1141
|
+
};
|
|
1142
|
+
};
|
|
1143
|
+
};
|
|
1144
|
+
readonly 423: {
|
|
1145
|
+
readonly type: "object";
|
|
1146
|
+
readonly additionalProperties: false;
|
|
1147
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
1148
|
+
readonly properties: {
|
|
1149
|
+
readonly resultCode: {
|
|
1150
|
+
readonly type: "string";
|
|
1151
|
+
};
|
|
1152
|
+
readonly resultMessage: {
|
|
1153
|
+
readonly type: "string";
|
|
1154
|
+
};
|
|
1155
|
+
readonly result: {
|
|
1156
|
+
readonly type: "null";
|
|
1157
|
+
};
|
|
1158
|
+
readonly pagination: {
|
|
1159
|
+
readonly type: "object";
|
|
1160
|
+
readonly additionalProperties: false;
|
|
1161
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
1162
|
+
readonly properties: {
|
|
1163
|
+
readonly page: {
|
|
1164
|
+
readonly type: "integer";
|
|
1165
|
+
readonly minimum: 0;
|
|
1166
|
+
};
|
|
1167
|
+
readonly pageSize: {
|
|
1168
|
+
readonly type: "integer";
|
|
1169
|
+
readonly minimum: 0;
|
|
1170
|
+
};
|
|
1171
|
+
readonly totalCount: {
|
|
1172
|
+
readonly type: "integer";
|
|
1173
|
+
readonly minimum: 0;
|
|
1174
|
+
};
|
|
1175
|
+
readonly totalPages: {
|
|
1176
|
+
readonly type: "integer";
|
|
1177
|
+
readonly minimum: 0;
|
|
1178
|
+
};
|
|
1179
|
+
readonly hasNext: {
|
|
1180
|
+
readonly type: "boolean";
|
|
1181
|
+
};
|
|
1182
|
+
readonly hasPrevious: {
|
|
1183
|
+
readonly type: "boolean";
|
|
1184
|
+
};
|
|
1185
|
+
};
|
|
1186
|
+
};
|
|
1187
|
+
};
|
|
1188
|
+
};
|
|
1189
|
+
readonly 428: {
|
|
1190
|
+
readonly type: "object";
|
|
1191
|
+
readonly additionalProperties: false;
|
|
1192
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
1193
|
+
readonly properties: {
|
|
1194
|
+
readonly resultCode: {
|
|
1195
|
+
readonly type: "string";
|
|
1196
|
+
};
|
|
1197
|
+
readonly resultMessage: {
|
|
1198
|
+
readonly type: "string";
|
|
1199
|
+
};
|
|
1200
|
+
readonly result: {
|
|
1201
|
+
readonly type: "null";
|
|
1202
|
+
};
|
|
1203
|
+
readonly pagination: {
|
|
1204
|
+
readonly type: "object";
|
|
1205
|
+
readonly additionalProperties: false;
|
|
1206
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
1207
|
+
readonly properties: {
|
|
1208
|
+
readonly page: {
|
|
1209
|
+
readonly type: "integer";
|
|
1210
|
+
readonly minimum: 0;
|
|
1211
|
+
};
|
|
1212
|
+
readonly pageSize: {
|
|
1213
|
+
readonly type: "integer";
|
|
1214
|
+
readonly minimum: 0;
|
|
1215
|
+
};
|
|
1216
|
+
readonly totalCount: {
|
|
1217
|
+
readonly type: "integer";
|
|
1218
|
+
readonly minimum: 0;
|
|
1219
|
+
};
|
|
1220
|
+
readonly totalPages: {
|
|
1221
|
+
readonly type: "integer";
|
|
1222
|
+
readonly minimum: 0;
|
|
1223
|
+
};
|
|
1224
|
+
readonly hasNext: {
|
|
1225
|
+
readonly type: "boolean";
|
|
1226
|
+
};
|
|
1227
|
+
readonly hasPrevious: {
|
|
1228
|
+
readonly type: "boolean";
|
|
1229
|
+
};
|
|
1230
|
+
};
|
|
1231
|
+
};
|
|
1232
|
+
};
|
|
1233
|
+
};
|
|
1234
|
+
readonly 429: {
|
|
1235
|
+
readonly type: "object";
|
|
1236
|
+
readonly additionalProperties: false;
|
|
1237
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
1238
|
+
readonly properties: {
|
|
1239
|
+
readonly resultCode: {
|
|
1240
|
+
readonly type: "string";
|
|
1241
|
+
};
|
|
1242
|
+
readonly resultMessage: {
|
|
1243
|
+
readonly type: "string";
|
|
1244
|
+
};
|
|
1245
|
+
readonly result: {
|
|
1246
|
+
readonly type: "null";
|
|
1247
|
+
};
|
|
1248
|
+
readonly pagination: {
|
|
1249
|
+
readonly type: "object";
|
|
1250
|
+
readonly additionalProperties: false;
|
|
1251
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
1252
|
+
readonly properties: {
|
|
1253
|
+
readonly page: {
|
|
1254
|
+
readonly type: "integer";
|
|
1255
|
+
readonly minimum: 0;
|
|
1256
|
+
};
|
|
1257
|
+
readonly pageSize: {
|
|
1258
|
+
readonly type: "integer";
|
|
1259
|
+
readonly minimum: 0;
|
|
1260
|
+
};
|
|
1261
|
+
readonly totalCount: {
|
|
1262
|
+
readonly type: "integer";
|
|
1263
|
+
readonly minimum: 0;
|
|
1264
|
+
};
|
|
1265
|
+
readonly totalPages: {
|
|
1266
|
+
readonly type: "integer";
|
|
1267
|
+
readonly minimum: 0;
|
|
1268
|
+
};
|
|
1269
|
+
readonly hasNext: {
|
|
1270
|
+
readonly type: "boolean";
|
|
1271
|
+
};
|
|
1272
|
+
readonly hasPrevious: {
|
|
1273
|
+
readonly type: "boolean";
|
|
1274
|
+
};
|
|
1275
|
+
};
|
|
1276
|
+
};
|
|
1277
|
+
};
|
|
1278
|
+
};
|
|
1279
|
+
readonly 500: {
|
|
1280
|
+
readonly type: "object";
|
|
1281
|
+
readonly additionalProperties: false;
|
|
1282
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
1283
|
+
readonly properties: {
|
|
1284
|
+
readonly resultCode: {
|
|
1285
|
+
readonly type: "string";
|
|
1286
|
+
};
|
|
1287
|
+
readonly resultMessage: {
|
|
1288
|
+
readonly type: "string";
|
|
1289
|
+
};
|
|
1290
|
+
readonly result: {
|
|
1291
|
+
readonly type: "null";
|
|
1292
|
+
};
|
|
1293
|
+
readonly pagination: {
|
|
1294
|
+
readonly type: "object";
|
|
1295
|
+
readonly additionalProperties: false;
|
|
1296
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
1297
|
+
readonly properties: {
|
|
1298
|
+
readonly page: {
|
|
1299
|
+
readonly type: "integer";
|
|
1300
|
+
readonly minimum: 0;
|
|
1301
|
+
};
|
|
1302
|
+
readonly pageSize: {
|
|
1303
|
+
readonly type: "integer";
|
|
1304
|
+
readonly minimum: 0;
|
|
1305
|
+
};
|
|
1306
|
+
readonly totalCount: {
|
|
1307
|
+
readonly type: "integer";
|
|
1308
|
+
readonly minimum: 0;
|
|
1309
|
+
};
|
|
1310
|
+
readonly totalPages: {
|
|
1311
|
+
readonly type: "integer";
|
|
1312
|
+
readonly minimum: 0;
|
|
1313
|
+
};
|
|
1314
|
+
readonly hasNext: {
|
|
1315
|
+
readonly type: "boolean";
|
|
1316
|
+
};
|
|
1317
|
+
readonly hasPrevious: {
|
|
1318
|
+
readonly type: "boolean";
|
|
1319
|
+
};
|
|
1320
|
+
};
|
|
1321
|
+
};
|
|
1322
|
+
};
|
|
1323
|
+
};
|
|
1324
|
+
readonly 503: {
|
|
1325
|
+
readonly type: "object";
|
|
1326
|
+
readonly additionalProperties: false;
|
|
1327
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
1328
|
+
readonly properties: {
|
|
1329
|
+
readonly resultCode: {
|
|
1330
|
+
readonly type: "string";
|
|
1331
|
+
};
|
|
1332
|
+
readonly resultMessage: {
|
|
1333
|
+
readonly type: "string";
|
|
1334
|
+
};
|
|
1335
|
+
readonly result: {
|
|
1336
|
+
readonly type: "null";
|
|
1337
|
+
};
|
|
1338
|
+
readonly pagination: {
|
|
1339
|
+
readonly type: "object";
|
|
1340
|
+
readonly additionalProperties: false;
|
|
1341
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
1342
|
+
readonly properties: {
|
|
1343
|
+
readonly page: {
|
|
1344
|
+
readonly type: "integer";
|
|
1345
|
+
readonly minimum: 0;
|
|
1346
|
+
};
|
|
1347
|
+
readonly pageSize: {
|
|
1348
|
+
readonly type: "integer";
|
|
1349
|
+
readonly minimum: 0;
|
|
1350
|
+
};
|
|
1351
|
+
readonly totalCount: {
|
|
1352
|
+
readonly type: "integer";
|
|
1353
|
+
readonly minimum: 0;
|
|
1354
|
+
};
|
|
1355
|
+
readonly totalPages: {
|
|
1356
|
+
readonly type: "integer";
|
|
1357
|
+
readonly minimum: 0;
|
|
1358
|
+
};
|
|
1359
|
+
readonly hasNext: {
|
|
1360
|
+
readonly type: "boolean";
|
|
1361
|
+
};
|
|
1362
|
+
readonly hasPrevious: {
|
|
1363
|
+
readonly type: "boolean";
|
|
1364
|
+
};
|
|
1365
|
+
};
|
|
1366
|
+
};
|
|
1367
|
+
};
|
|
1368
|
+
};
|
|
1369
|
+
readonly 201: {
|
|
1370
|
+
readonly headers: {
|
|
1371
|
+
readonly Location: {
|
|
1372
|
+
readonly type: "string";
|
|
1373
|
+
readonly description: "생성된 프로젝트 멤버 경로입니다.";
|
|
1374
|
+
};
|
|
1375
|
+
readonly ETag: {
|
|
1376
|
+
readonly type: "string";
|
|
1377
|
+
readonly description: "멤버의 현재 lock version입니다.";
|
|
1378
|
+
};
|
|
1379
|
+
};
|
|
1380
|
+
};
|
|
1381
|
+
};
|
|
1382
|
+
};
|
|
1383
|
+
export declare const changeProjectMemberRoleSchema: {
|
|
1384
|
+
readonly tags: readonly ["project-members"];
|
|
1385
|
+
readonly summary: "프로젝트 멤버 역할 변경";
|
|
1386
|
+
readonly security: readonly [{
|
|
1387
|
+
readonly userJwt: readonly [];
|
|
1388
|
+
}];
|
|
1389
|
+
readonly params: {
|
|
1390
|
+
readonly type: "object";
|
|
1391
|
+
readonly additionalProperties: false;
|
|
1392
|
+
readonly required: readonly ["projectId", "userId"];
|
|
1393
|
+
readonly properties: {
|
|
1394
|
+
readonly projectId: {
|
|
1395
|
+
readonly type: "string";
|
|
1396
|
+
readonly format: "uuid";
|
|
1397
|
+
};
|
|
1398
|
+
readonly userId: {
|
|
1399
|
+
readonly type: "string";
|
|
1400
|
+
readonly format: "uuid";
|
|
1401
|
+
};
|
|
1402
|
+
};
|
|
1403
|
+
};
|
|
1404
|
+
readonly headers: {
|
|
1405
|
+
readonly type: "object";
|
|
1406
|
+
readonly required: readonly ["if-match"];
|
|
1407
|
+
readonly properties: {
|
|
1408
|
+
readonly 'if-match': {
|
|
1409
|
+
readonly type: "string";
|
|
1410
|
+
readonly description: "현재 멤버 버전 ETag 값입니다.";
|
|
1411
|
+
};
|
|
1412
|
+
};
|
|
1413
|
+
};
|
|
1414
|
+
readonly body: {
|
|
1415
|
+
readonly type: "object";
|
|
1416
|
+
readonly additionalProperties: false;
|
|
1417
|
+
readonly required: readonly ["role"];
|
|
1418
|
+
readonly properties: {
|
|
1419
|
+
readonly role: {
|
|
1420
|
+
readonly type: "string";
|
|
1421
|
+
readonly minLength: 1;
|
|
1422
|
+
readonly maxLength: 20;
|
|
1423
|
+
};
|
|
1424
|
+
};
|
|
1425
|
+
};
|
|
1426
|
+
readonly response: {
|
|
1427
|
+
readonly 400: {
|
|
1428
|
+
readonly type: "object";
|
|
1429
|
+
readonly additionalProperties: false;
|
|
1430
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
1431
|
+
readonly properties: {
|
|
1432
|
+
readonly resultCode: {
|
|
1433
|
+
readonly type: "string";
|
|
1434
|
+
};
|
|
1435
|
+
readonly resultMessage: {
|
|
1436
|
+
readonly type: "string";
|
|
1437
|
+
};
|
|
1438
|
+
readonly result: {
|
|
1439
|
+
readonly type: "null";
|
|
1440
|
+
};
|
|
1441
|
+
readonly pagination: {
|
|
1442
|
+
readonly type: "object";
|
|
1443
|
+
readonly additionalProperties: false;
|
|
1444
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
1445
|
+
readonly properties: {
|
|
1446
|
+
readonly page: {
|
|
1447
|
+
readonly type: "integer";
|
|
1448
|
+
readonly minimum: 0;
|
|
1449
|
+
};
|
|
1450
|
+
readonly pageSize: {
|
|
1451
|
+
readonly type: "integer";
|
|
1452
|
+
readonly minimum: 0;
|
|
1453
|
+
};
|
|
1454
|
+
readonly totalCount: {
|
|
1455
|
+
readonly type: "integer";
|
|
1456
|
+
readonly minimum: 0;
|
|
1457
|
+
};
|
|
1458
|
+
readonly totalPages: {
|
|
1459
|
+
readonly type: "integer";
|
|
1460
|
+
readonly minimum: 0;
|
|
1461
|
+
};
|
|
1462
|
+
readonly hasNext: {
|
|
1463
|
+
readonly type: "boolean";
|
|
1464
|
+
};
|
|
1465
|
+
readonly hasPrevious: {
|
|
1466
|
+
readonly type: "boolean";
|
|
1467
|
+
};
|
|
1468
|
+
};
|
|
1469
|
+
};
|
|
1470
|
+
};
|
|
1471
|
+
};
|
|
1472
|
+
readonly 401: {
|
|
1473
|
+
readonly type: "object";
|
|
1474
|
+
readonly additionalProperties: false;
|
|
1475
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
1476
|
+
readonly properties: {
|
|
1477
|
+
readonly resultCode: {
|
|
1478
|
+
readonly type: "string";
|
|
1479
|
+
};
|
|
1480
|
+
readonly resultMessage: {
|
|
1481
|
+
readonly type: "string";
|
|
1482
|
+
};
|
|
1483
|
+
readonly result: {
|
|
1484
|
+
readonly type: "null";
|
|
1485
|
+
};
|
|
1486
|
+
readonly pagination: {
|
|
1487
|
+
readonly type: "object";
|
|
1488
|
+
readonly additionalProperties: false;
|
|
1489
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
1490
|
+
readonly properties: {
|
|
1491
|
+
readonly page: {
|
|
1492
|
+
readonly type: "integer";
|
|
1493
|
+
readonly minimum: 0;
|
|
1494
|
+
};
|
|
1495
|
+
readonly pageSize: {
|
|
1496
|
+
readonly type: "integer";
|
|
1497
|
+
readonly minimum: 0;
|
|
1498
|
+
};
|
|
1499
|
+
readonly totalCount: {
|
|
1500
|
+
readonly type: "integer";
|
|
1501
|
+
readonly minimum: 0;
|
|
1502
|
+
};
|
|
1503
|
+
readonly totalPages: {
|
|
1504
|
+
readonly type: "integer";
|
|
1505
|
+
readonly minimum: 0;
|
|
1506
|
+
};
|
|
1507
|
+
readonly hasNext: {
|
|
1508
|
+
readonly type: "boolean";
|
|
1509
|
+
};
|
|
1510
|
+
readonly hasPrevious: {
|
|
1511
|
+
readonly type: "boolean";
|
|
1512
|
+
};
|
|
1513
|
+
};
|
|
1514
|
+
};
|
|
1515
|
+
};
|
|
1516
|
+
};
|
|
1517
|
+
readonly 403: {
|
|
1518
|
+
readonly type: "object";
|
|
1519
|
+
readonly additionalProperties: false;
|
|
1520
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
1521
|
+
readonly properties: {
|
|
1522
|
+
readonly resultCode: {
|
|
1523
|
+
readonly type: "string";
|
|
1524
|
+
};
|
|
1525
|
+
readonly resultMessage: {
|
|
1526
|
+
readonly type: "string";
|
|
1527
|
+
};
|
|
1528
|
+
readonly result: {
|
|
1529
|
+
readonly type: "null";
|
|
1530
|
+
};
|
|
1531
|
+
readonly pagination: {
|
|
1532
|
+
readonly type: "object";
|
|
1533
|
+
readonly additionalProperties: false;
|
|
1534
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
1535
|
+
readonly properties: {
|
|
1536
|
+
readonly page: {
|
|
1537
|
+
readonly type: "integer";
|
|
1538
|
+
readonly minimum: 0;
|
|
1539
|
+
};
|
|
1540
|
+
readonly pageSize: {
|
|
1541
|
+
readonly type: "integer";
|
|
1542
|
+
readonly minimum: 0;
|
|
1543
|
+
};
|
|
1544
|
+
readonly totalCount: {
|
|
1545
|
+
readonly type: "integer";
|
|
1546
|
+
readonly minimum: 0;
|
|
1547
|
+
};
|
|
1548
|
+
readonly totalPages: {
|
|
1549
|
+
readonly type: "integer";
|
|
1550
|
+
readonly minimum: 0;
|
|
1551
|
+
};
|
|
1552
|
+
readonly hasNext: {
|
|
1553
|
+
readonly type: "boolean";
|
|
1554
|
+
};
|
|
1555
|
+
readonly hasPrevious: {
|
|
1556
|
+
readonly type: "boolean";
|
|
1557
|
+
};
|
|
1558
|
+
};
|
|
1559
|
+
};
|
|
1560
|
+
};
|
|
1561
|
+
};
|
|
1562
|
+
readonly 404: {
|
|
1563
|
+
readonly type: "object";
|
|
1564
|
+
readonly additionalProperties: false;
|
|
1565
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
1566
|
+
readonly properties: {
|
|
1567
|
+
readonly resultCode: {
|
|
1568
|
+
readonly type: "string";
|
|
1569
|
+
};
|
|
1570
|
+
readonly resultMessage: {
|
|
1571
|
+
readonly type: "string";
|
|
1572
|
+
};
|
|
1573
|
+
readonly result: {
|
|
1574
|
+
readonly type: "null";
|
|
1575
|
+
};
|
|
1576
|
+
readonly pagination: {
|
|
1577
|
+
readonly type: "object";
|
|
1578
|
+
readonly additionalProperties: false;
|
|
1579
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
1580
|
+
readonly properties: {
|
|
1581
|
+
readonly page: {
|
|
1582
|
+
readonly type: "integer";
|
|
1583
|
+
readonly minimum: 0;
|
|
1584
|
+
};
|
|
1585
|
+
readonly pageSize: {
|
|
1586
|
+
readonly type: "integer";
|
|
1587
|
+
readonly minimum: 0;
|
|
1588
|
+
};
|
|
1589
|
+
readonly totalCount: {
|
|
1590
|
+
readonly type: "integer";
|
|
1591
|
+
readonly minimum: 0;
|
|
1592
|
+
};
|
|
1593
|
+
readonly totalPages: {
|
|
1594
|
+
readonly type: "integer";
|
|
1595
|
+
readonly minimum: 0;
|
|
1596
|
+
};
|
|
1597
|
+
readonly hasNext: {
|
|
1598
|
+
readonly type: "boolean";
|
|
1599
|
+
};
|
|
1600
|
+
readonly hasPrevious: {
|
|
1601
|
+
readonly type: "boolean";
|
|
1602
|
+
};
|
|
1603
|
+
};
|
|
1604
|
+
};
|
|
1605
|
+
};
|
|
1606
|
+
};
|
|
1607
|
+
readonly 409: {
|
|
1608
|
+
readonly type: "object";
|
|
1609
|
+
readonly additionalProperties: false;
|
|
1610
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
1611
|
+
readonly properties: {
|
|
1612
|
+
readonly resultCode: {
|
|
1613
|
+
readonly type: "string";
|
|
1614
|
+
};
|
|
1615
|
+
readonly resultMessage: {
|
|
1616
|
+
readonly type: "string";
|
|
1617
|
+
};
|
|
1618
|
+
readonly result: {
|
|
1619
|
+
readonly type: "null";
|
|
1620
|
+
};
|
|
1621
|
+
readonly pagination: {
|
|
1622
|
+
readonly type: "object";
|
|
1623
|
+
readonly additionalProperties: false;
|
|
1624
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
1625
|
+
readonly properties: {
|
|
1626
|
+
readonly page: {
|
|
1627
|
+
readonly type: "integer";
|
|
1628
|
+
readonly minimum: 0;
|
|
1629
|
+
};
|
|
1630
|
+
readonly pageSize: {
|
|
1631
|
+
readonly type: "integer";
|
|
1632
|
+
readonly minimum: 0;
|
|
1633
|
+
};
|
|
1634
|
+
readonly totalCount: {
|
|
1635
|
+
readonly type: "integer";
|
|
1636
|
+
readonly minimum: 0;
|
|
1637
|
+
};
|
|
1638
|
+
readonly totalPages: {
|
|
1639
|
+
readonly type: "integer";
|
|
1640
|
+
readonly minimum: 0;
|
|
1641
|
+
};
|
|
1642
|
+
readonly hasNext: {
|
|
1643
|
+
readonly type: "boolean";
|
|
1644
|
+
};
|
|
1645
|
+
readonly hasPrevious: {
|
|
1646
|
+
readonly type: "boolean";
|
|
1647
|
+
};
|
|
1648
|
+
};
|
|
1649
|
+
};
|
|
1650
|
+
};
|
|
1651
|
+
};
|
|
1652
|
+
readonly 410: {
|
|
1653
|
+
readonly type: "object";
|
|
1654
|
+
readonly additionalProperties: false;
|
|
1655
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
1656
|
+
readonly properties: {
|
|
1657
|
+
readonly resultCode: {
|
|
1658
|
+
readonly type: "string";
|
|
1659
|
+
};
|
|
1660
|
+
readonly resultMessage: {
|
|
1661
|
+
readonly type: "string";
|
|
1662
|
+
};
|
|
1663
|
+
readonly result: {
|
|
1664
|
+
readonly type: "null";
|
|
1665
|
+
};
|
|
1666
|
+
readonly pagination: {
|
|
1667
|
+
readonly type: "object";
|
|
1668
|
+
readonly additionalProperties: false;
|
|
1669
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
1670
|
+
readonly properties: {
|
|
1671
|
+
readonly page: {
|
|
1672
|
+
readonly type: "integer";
|
|
1673
|
+
readonly minimum: 0;
|
|
1674
|
+
};
|
|
1675
|
+
readonly pageSize: {
|
|
1676
|
+
readonly type: "integer";
|
|
1677
|
+
readonly minimum: 0;
|
|
1678
|
+
};
|
|
1679
|
+
readonly totalCount: {
|
|
1680
|
+
readonly type: "integer";
|
|
1681
|
+
readonly minimum: 0;
|
|
1682
|
+
};
|
|
1683
|
+
readonly totalPages: {
|
|
1684
|
+
readonly type: "integer";
|
|
1685
|
+
readonly minimum: 0;
|
|
1686
|
+
};
|
|
1687
|
+
readonly hasNext: {
|
|
1688
|
+
readonly type: "boolean";
|
|
1689
|
+
};
|
|
1690
|
+
readonly hasPrevious: {
|
|
1691
|
+
readonly type: "boolean";
|
|
1692
|
+
};
|
|
1693
|
+
};
|
|
1694
|
+
};
|
|
1695
|
+
};
|
|
1696
|
+
};
|
|
1697
|
+
readonly 412: {
|
|
1698
|
+
readonly type: "object";
|
|
1699
|
+
readonly additionalProperties: false;
|
|
1700
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
1701
|
+
readonly properties: {
|
|
1702
|
+
readonly resultCode: {
|
|
1703
|
+
readonly type: "string";
|
|
1704
|
+
};
|
|
1705
|
+
readonly resultMessage: {
|
|
1706
|
+
readonly type: "string";
|
|
1707
|
+
};
|
|
1708
|
+
readonly result: {
|
|
1709
|
+
readonly type: "null";
|
|
1710
|
+
};
|
|
1711
|
+
readonly pagination: {
|
|
1712
|
+
readonly type: "object";
|
|
1713
|
+
readonly additionalProperties: false;
|
|
1714
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
1715
|
+
readonly properties: {
|
|
1716
|
+
readonly page: {
|
|
1717
|
+
readonly type: "integer";
|
|
1718
|
+
readonly minimum: 0;
|
|
1719
|
+
};
|
|
1720
|
+
readonly pageSize: {
|
|
1721
|
+
readonly type: "integer";
|
|
1722
|
+
readonly minimum: 0;
|
|
1723
|
+
};
|
|
1724
|
+
readonly totalCount: {
|
|
1725
|
+
readonly type: "integer";
|
|
1726
|
+
readonly minimum: 0;
|
|
1727
|
+
};
|
|
1728
|
+
readonly totalPages: {
|
|
1729
|
+
readonly type: "integer";
|
|
1730
|
+
readonly minimum: 0;
|
|
1731
|
+
};
|
|
1732
|
+
readonly hasNext: {
|
|
1733
|
+
readonly type: "boolean";
|
|
1734
|
+
};
|
|
1735
|
+
readonly hasPrevious: {
|
|
1736
|
+
readonly type: "boolean";
|
|
1737
|
+
};
|
|
1738
|
+
};
|
|
1739
|
+
};
|
|
1740
|
+
};
|
|
1741
|
+
};
|
|
1742
|
+
readonly 413: {
|
|
1743
|
+
readonly type: "object";
|
|
1744
|
+
readonly additionalProperties: false;
|
|
1745
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
1746
|
+
readonly properties: {
|
|
1747
|
+
readonly resultCode: {
|
|
1748
|
+
readonly type: "string";
|
|
1749
|
+
};
|
|
1750
|
+
readonly resultMessage: {
|
|
1751
|
+
readonly type: "string";
|
|
1752
|
+
};
|
|
1753
|
+
readonly result: {
|
|
1754
|
+
readonly type: "null";
|
|
1755
|
+
};
|
|
1756
|
+
readonly pagination: {
|
|
1757
|
+
readonly type: "object";
|
|
1758
|
+
readonly additionalProperties: false;
|
|
1759
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
1760
|
+
readonly properties: {
|
|
1761
|
+
readonly page: {
|
|
1762
|
+
readonly type: "integer";
|
|
1763
|
+
readonly minimum: 0;
|
|
1764
|
+
};
|
|
1765
|
+
readonly pageSize: {
|
|
1766
|
+
readonly type: "integer";
|
|
1767
|
+
readonly minimum: 0;
|
|
1768
|
+
};
|
|
1769
|
+
readonly totalCount: {
|
|
1770
|
+
readonly type: "integer";
|
|
1771
|
+
readonly minimum: 0;
|
|
1772
|
+
};
|
|
1773
|
+
readonly totalPages: {
|
|
1774
|
+
readonly type: "integer";
|
|
1775
|
+
readonly minimum: 0;
|
|
1776
|
+
};
|
|
1777
|
+
readonly hasNext: {
|
|
1778
|
+
readonly type: "boolean";
|
|
1779
|
+
};
|
|
1780
|
+
readonly hasPrevious: {
|
|
1781
|
+
readonly type: "boolean";
|
|
1782
|
+
};
|
|
1783
|
+
};
|
|
1784
|
+
};
|
|
1785
|
+
};
|
|
1786
|
+
};
|
|
1787
|
+
readonly 422: {
|
|
1788
|
+
readonly type: "object";
|
|
1789
|
+
readonly additionalProperties: false;
|
|
1790
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
1791
|
+
readonly properties: {
|
|
1792
|
+
readonly resultCode: {
|
|
1793
|
+
readonly type: "string";
|
|
1794
|
+
};
|
|
1795
|
+
readonly resultMessage: {
|
|
1796
|
+
readonly type: "string";
|
|
1797
|
+
};
|
|
1798
|
+
readonly result: {
|
|
1799
|
+
readonly type: "null";
|
|
1800
|
+
};
|
|
1801
|
+
readonly pagination: {
|
|
1802
|
+
readonly type: "object";
|
|
1803
|
+
readonly additionalProperties: false;
|
|
1804
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
1805
|
+
readonly properties: {
|
|
1806
|
+
readonly page: {
|
|
1807
|
+
readonly type: "integer";
|
|
1808
|
+
readonly minimum: 0;
|
|
1809
|
+
};
|
|
1810
|
+
readonly pageSize: {
|
|
1811
|
+
readonly type: "integer";
|
|
1812
|
+
readonly minimum: 0;
|
|
1813
|
+
};
|
|
1814
|
+
readonly totalCount: {
|
|
1815
|
+
readonly type: "integer";
|
|
1816
|
+
readonly minimum: 0;
|
|
1817
|
+
};
|
|
1818
|
+
readonly totalPages: {
|
|
1819
|
+
readonly type: "integer";
|
|
1820
|
+
readonly minimum: 0;
|
|
1821
|
+
};
|
|
1822
|
+
readonly hasNext: {
|
|
1823
|
+
readonly type: "boolean";
|
|
1824
|
+
};
|
|
1825
|
+
readonly hasPrevious: {
|
|
1826
|
+
readonly type: "boolean";
|
|
1827
|
+
};
|
|
1828
|
+
};
|
|
1829
|
+
};
|
|
1830
|
+
};
|
|
1831
|
+
};
|
|
1832
|
+
readonly 423: {
|
|
1833
|
+
readonly type: "object";
|
|
1834
|
+
readonly additionalProperties: false;
|
|
1835
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
1836
|
+
readonly properties: {
|
|
1837
|
+
readonly resultCode: {
|
|
1838
|
+
readonly type: "string";
|
|
1839
|
+
};
|
|
1840
|
+
readonly resultMessage: {
|
|
1841
|
+
readonly type: "string";
|
|
1842
|
+
};
|
|
1843
|
+
readonly result: {
|
|
1844
|
+
readonly type: "null";
|
|
1845
|
+
};
|
|
1846
|
+
readonly pagination: {
|
|
1847
|
+
readonly type: "object";
|
|
1848
|
+
readonly additionalProperties: false;
|
|
1849
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
1850
|
+
readonly properties: {
|
|
1851
|
+
readonly page: {
|
|
1852
|
+
readonly type: "integer";
|
|
1853
|
+
readonly minimum: 0;
|
|
1854
|
+
};
|
|
1855
|
+
readonly pageSize: {
|
|
1856
|
+
readonly type: "integer";
|
|
1857
|
+
readonly minimum: 0;
|
|
1858
|
+
};
|
|
1859
|
+
readonly totalCount: {
|
|
1860
|
+
readonly type: "integer";
|
|
1861
|
+
readonly minimum: 0;
|
|
1862
|
+
};
|
|
1863
|
+
readonly totalPages: {
|
|
1864
|
+
readonly type: "integer";
|
|
1865
|
+
readonly minimum: 0;
|
|
1866
|
+
};
|
|
1867
|
+
readonly hasNext: {
|
|
1868
|
+
readonly type: "boolean";
|
|
1869
|
+
};
|
|
1870
|
+
readonly hasPrevious: {
|
|
1871
|
+
readonly type: "boolean";
|
|
1872
|
+
};
|
|
1873
|
+
};
|
|
1874
|
+
};
|
|
1875
|
+
};
|
|
1876
|
+
};
|
|
1877
|
+
readonly 428: {
|
|
1878
|
+
readonly type: "object";
|
|
1879
|
+
readonly additionalProperties: false;
|
|
1880
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
1881
|
+
readonly properties: {
|
|
1882
|
+
readonly resultCode: {
|
|
1883
|
+
readonly type: "string";
|
|
1884
|
+
};
|
|
1885
|
+
readonly resultMessage: {
|
|
1886
|
+
readonly type: "string";
|
|
1887
|
+
};
|
|
1888
|
+
readonly result: {
|
|
1889
|
+
readonly type: "null";
|
|
1890
|
+
};
|
|
1891
|
+
readonly pagination: {
|
|
1892
|
+
readonly type: "object";
|
|
1893
|
+
readonly additionalProperties: false;
|
|
1894
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
1895
|
+
readonly properties: {
|
|
1896
|
+
readonly page: {
|
|
1897
|
+
readonly type: "integer";
|
|
1898
|
+
readonly minimum: 0;
|
|
1899
|
+
};
|
|
1900
|
+
readonly pageSize: {
|
|
1901
|
+
readonly type: "integer";
|
|
1902
|
+
readonly minimum: 0;
|
|
1903
|
+
};
|
|
1904
|
+
readonly totalCount: {
|
|
1905
|
+
readonly type: "integer";
|
|
1906
|
+
readonly minimum: 0;
|
|
1907
|
+
};
|
|
1908
|
+
readonly totalPages: {
|
|
1909
|
+
readonly type: "integer";
|
|
1910
|
+
readonly minimum: 0;
|
|
1911
|
+
};
|
|
1912
|
+
readonly hasNext: {
|
|
1913
|
+
readonly type: "boolean";
|
|
1914
|
+
};
|
|
1915
|
+
readonly hasPrevious: {
|
|
1916
|
+
readonly type: "boolean";
|
|
1917
|
+
};
|
|
1918
|
+
};
|
|
1919
|
+
};
|
|
1920
|
+
};
|
|
1921
|
+
};
|
|
1922
|
+
readonly 429: {
|
|
1923
|
+
readonly type: "object";
|
|
1924
|
+
readonly additionalProperties: false;
|
|
1925
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
1926
|
+
readonly properties: {
|
|
1927
|
+
readonly resultCode: {
|
|
1928
|
+
readonly type: "string";
|
|
1929
|
+
};
|
|
1930
|
+
readonly resultMessage: {
|
|
1931
|
+
readonly type: "string";
|
|
1932
|
+
};
|
|
1933
|
+
readonly result: {
|
|
1934
|
+
readonly type: "null";
|
|
1935
|
+
};
|
|
1936
|
+
readonly pagination: {
|
|
1937
|
+
readonly type: "object";
|
|
1938
|
+
readonly additionalProperties: false;
|
|
1939
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
1940
|
+
readonly properties: {
|
|
1941
|
+
readonly page: {
|
|
1942
|
+
readonly type: "integer";
|
|
1943
|
+
readonly minimum: 0;
|
|
1944
|
+
};
|
|
1945
|
+
readonly pageSize: {
|
|
1946
|
+
readonly type: "integer";
|
|
1947
|
+
readonly minimum: 0;
|
|
1948
|
+
};
|
|
1949
|
+
readonly totalCount: {
|
|
1950
|
+
readonly type: "integer";
|
|
1951
|
+
readonly minimum: 0;
|
|
1952
|
+
};
|
|
1953
|
+
readonly totalPages: {
|
|
1954
|
+
readonly type: "integer";
|
|
1955
|
+
readonly minimum: 0;
|
|
1956
|
+
};
|
|
1957
|
+
readonly hasNext: {
|
|
1958
|
+
readonly type: "boolean";
|
|
1959
|
+
};
|
|
1960
|
+
readonly hasPrevious: {
|
|
1961
|
+
readonly type: "boolean";
|
|
1962
|
+
};
|
|
1963
|
+
};
|
|
1964
|
+
};
|
|
1965
|
+
};
|
|
1966
|
+
};
|
|
1967
|
+
readonly 500: {
|
|
1968
|
+
readonly type: "object";
|
|
1969
|
+
readonly additionalProperties: false;
|
|
1970
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
1971
|
+
readonly properties: {
|
|
1972
|
+
readonly resultCode: {
|
|
1973
|
+
readonly type: "string";
|
|
1974
|
+
};
|
|
1975
|
+
readonly resultMessage: {
|
|
1976
|
+
readonly type: "string";
|
|
1977
|
+
};
|
|
1978
|
+
readonly result: {
|
|
1979
|
+
readonly type: "null";
|
|
1980
|
+
};
|
|
1981
|
+
readonly pagination: {
|
|
1982
|
+
readonly type: "object";
|
|
1983
|
+
readonly additionalProperties: false;
|
|
1984
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
1985
|
+
readonly properties: {
|
|
1986
|
+
readonly page: {
|
|
1987
|
+
readonly type: "integer";
|
|
1988
|
+
readonly minimum: 0;
|
|
1989
|
+
};
|
|
1990
|
+
readonly pageSize: {
|
|
1991
|
+
readonly type: "integer";
|
|
1992
|
+
readonly minimum: 0;
|
|
1993
|
+
};
|
|
1994
|
+
readonly totalCount: {
|
|
1995
|
+
readonly type: "integer";
|
|
1996
|
+
readonly minimum: 0;
|
|
1997
|
+
};
|
|
1998
|
+
readonly totalPages: {
|
|
1999
|
+
readonly type: "integer";
|
|
2000
|
+
readonly minimum: 0;
|
|
2001
|
+
};
|
|
2002
|
+
readonly hasNext: {
|
|
2003
|
+
readonly type: "boolean";
|
|
2004
|
+
};
|
|
2005
|
+
readonly hasPrevious: {
|
|
2006
|
+
readonly type: "boolean";
|
|
2007
|
+
};
|
|
2008
|
+
};
|
|
2009
|
+
};
|
|
2010
|
+
};
|
|
2011
|
+
};
|
|
2012
|
+
readonly 503: {
|
|
2013
|
+
readonly type: "object";
|
|
2014
|
+
readonly additionalProperties: false;
|
|
2015
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
2016
|
+
readonly properties: {
|
|
2017
|
+
readonly resultCode: {
|
|
2018
|
+
readonly type: "string";
|
|
2019
|
+
};
|
|
2020
|
+
readonly resultMessage: {
|
|
2021
|
+
readonly type: "string";
|
|
2022
|
+
};
|
|
2023
|
+
readonly result: {
|
|
2024
|
+
readonly type: "null";
|
|
2025
|
+
};
|
|
2026
|
+
readonly pagination: {
|
|
2027
|
+
readonly type: "object";
|
|
2028
|
+
readonly additionalProperties: false;
|
|
2029
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
2030
|
+
readonly properties: {
|
|
2031
|
+
readonly page: {
|
|
2032
|
+
readonly type: "integer";
|
|
2033
|
+
readonly minimum: 0;
|
|
2034
|
+
};
|
|
2035
|
+
readonly pageSize: {
|
|
2036
|
+
readonly type: "integer";
|
|
2037
|
+
readonly minimum: 0;
|
|
2038
|
+
};
|
|
2039
|
+
readonly totalCount: {
|
|
2040
|
+
readonly type: "integer";
|
|
2041
|
+
readonly minimum: 0;
|
|
2042
|
+
};
|
|
2043
|
+
readonly totalPages: {
|
|
2044
|
+
readonly type: "integer";
|
|
2045
|
+
readonly minimum: 0;
|
|
2046
|
+
};
|
|
2047
|
+
readonly hasNext: {
|
|
2048
|
+
readonly type: "boolean";
|
|
2049
|
+
};
|
|
2050
|
+
readonly hasPrevious: {
|
|
2051
|
+
readonly type: "boolean";
|
|
2052
|
+
};
|
|
2053
|
+
};
|
|
2054
|
+
};
|
|
2055
|
+
};
|
|
2056
|
+
};
|
|
2057
|
+
readonly 200: {
|
|
2058
|
+
readonly headers: {
|
|
2059
|
+
readonly ETag: {
|
|
2060
|
+
readonly type: "string";
|
|
2061
|
+
readonly description: "멤버의 현재 lock version입니다.";
|
|
2062
|
+
};
|
|
2063
|
+
};
|
|
2064
|
+
};
|
|
2065
|
+
};
|
|
2066
|
+
};
|
|
2067
|
+
export declare const removeProjectMemberSchema: {
|
|
2068
|
+
readonly tags: readonly ["project-members"];
|
|
2069
|
+
readonly summary: "프로젝트 멤버 제거";
|
|
2070
|
+
readonly security: readonly [{
|
|
2071
|
+
readonly userJwt: readonly [];
|
|
2072
|
+
}];
|
|
2073
|
+
readonly params: {
|
|
2074
|
+
readonly type: "object";
|
|
2075
|
+
readonly additionalProperties: false;
|
|
2076
|
+
readonly required: readonly ["projectId", "userId"];
|
|
2077
|
+
readonly properties: {
|
|
2078
|
+
readonly projectId: {
|
|
2079
|
+
readonly type: "string";
|
|
2080
|
+
readonly format: "uuid";
|
|
2081
|
+
};
|
|
2082
|
+
readonly userId: {
|
|
2083
|
+
readonly type: "string";
|
|
2084
|
+
readonly format: "uuid";
|
|
2085
|
+
};
|
|
2086
|
+
};
|
|
2087
|
+
};
|
|
2088
|
+
readonly headers: {
|
|
2089
|
+
readonly type: "object";
|
|
2090
|
+
readonly required: readonly ["if-match"];
|
|
2091
|
+
readonly properties: {
|
|
2092
|
+
readonly 'if-match': {
|
|
2093
|
+
readonly type: "string";
|
|
2094
|
+
readonly description: "현재 멤버 버전 ETag 값입니다.";
|
|
2095
|
+
};
|
|
2096
|
+
};
|
|
2097
|
+
};
|
|
2098
|
+
readonly response: {
|
|
2099
|
+
readonly 400: {
|
|
2100
|
+
readonly type: "object";
|
|
2101
|
+
readonly additionalProperties: false;
|
|
2102
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
2103
|
+
readonly properties: {
|
|
2104
|
+
readonly resultCode: {
|
|
2105
|
+
readonly type: "string";
|
|
2106
|
+
};
|
|
2107
|
+
readonly resultMessage: {
|
|
2108
|
+
readonly type: "string";
|
|
2109
|
+
};
|
|
2110
|
+
readonly result: {
|
|
2111
|
+
readonly type: "null";
|
|
2112
|
+
};
|
|
2113
|
+
readonly pagination: {
|
|
2114
|
+
readonly type: "object";
|
|
2115
|
+
readonly additionalProperties: false;
|
|
2116
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
2117
|
+
readonly properties: {
|
|
2118
|
+
readonly page: {
|
|
2119
|
+
readonly type: "integer";
|
|
2120
|
+
readonly minimum: 0;
|
|
2121
|
+
};
|
|
2122
|
+
readonly pageSize: {
|
|
2123
|
+
readonly type: "integer";
|
|
2124
|
+
readonly minimum: 0;
|
|
2125
|
+
};
|
|
2126
|
+
readonly totalCount: {
|
|
2127
|
+
readonly type: "integer";
|
|
2128
|
+
readonly minimum: 0;
|
|
2129
|
+
};
|
|
2130
|
+
readonly totalPages: {
|
|
2131
|
+
readonly type: "integer";
|
|
2132
|
+
readonly minimum: 0;
|
|
2133
|
+
};
|
|
2134
|
+
readonly hasNext: {
|
|
2135
|
+
readonly type: "boolean";
|
|
2136
|
+
};
|
|
2137
|
+
readonly hasPrevious: {
|
|
2138
|
+
readonly type: "boolean";
|
|
2139
|
+
};
|
|
2140
|
+
};
|
|
2141
|
+
};
|
|
2142
|
+
};
|
|
2143
|
+
};
|
|
2144
|
+
readonly 401: {
|
|
2145
|
+
readonly type: "object";
|
|
2146
|
+
readonly additionalProperties: false;
|
|
2147
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
2148
|
+
readonly properties: {
|
|
2149
|
+
readonly resultCode: {
|
|
2150
|
+
readonly type: "string";
|
|
2151
|
+
};
|
|
2152
|
+
readonly resultMessage: {
|
|
2153
|
+
readonly type: "string";
|
|
2154
|
+
};
|
|
2155
|
+
readonly result: {
|
|
2156
|
+
readonly type: "null";
|
|
2157
|
+
};
|
|
2158
|
+
readonly pagination: {
|
|
2159
|
+
readonly type: "object";
|
|
2160
|
+
readonly additionalProperties: false;
|
|
2161
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
2162
|
+
readonly properties: {
|
|
2163
|
+
readonly page: {
|
|
2164
|
+
readonly type: "integer";
|
|
2165
|
+
readonly minimum: 0;
|
|
2166
|
+
};
|
|
2167
|
+
readonly pageSize: {
|
|
2168
|
+
readonly type: "integer";
|
|
2169
|
+
readonly minimum: 0;
|
|
2170
|
+
};
|
|
2171
|
+
readonly totalCount: {
|
|
2172
|
+
readonly type: "integer";
|
|
2173
|
+
readonly minimum: 0;
|
|
2174
|
+
};
|
|
2175
|
+
readonly totalPages: {
|
|
2176
|
+
readonly type: "integer";
|
|
2177
|
+
readonly minimum: 0;
|
|
2178
|
+
};
|
|
2179
|
+
readonly hasNext: {
|
|
2180
|
+
readonly type: "boolean";
|
|
2181
|
+
};
|
|
2182
|
+
readonly hasPrevious: {
|
|
2183
|
+
readonly type: "boolean";
|
|
2184
|
+
};
|
|
2185
|
+
};
|
|
2186
|
+
};
|
|
2187
|
+
};
|
|
2188
|
+
};
|
|
2189
|
+
readonly 403: {
|
|
2190
|
+
readonly type: "object";
|
|
2191
|
+
readonly additionalProperties: false;
|
|
2192
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
2193
|
+
readonly properties: {
|
|
2194
|
+
readonly resultCode: {
|
|
2195
|
+
readonly type: "string";
|
|
2196
|
+
};
|
|
2197
|
+
readonly resultMessage: {
|
|
2198
|
+
readonly type: "string";
|
|
2199
|
+
};
|
|
2200
|
+
readonly result: {
|
|
2201
|
+
readonly type: "null";
|
|
2202
|
+
};
|
|
2203
|
+
readonly pagination: {
|
|
2204
|
+
readonly type: "object";
|
|
2205
|
+
readonly additionalProperties: false;
|
|
2206
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
2207
|
+
readonly properties: {
|
|
2208
|
+
readonly page: {
|
|
2209
|
+
readonly type: "integer";
|
|
2210
|
+
readonly minimum: 0;
|
|
2211
|
+
};
|
|
2212
|
+
readonly pageSize: {
|
|
2213
|
+
readonly type: "integer";
|
|
2214
|
+
readonly minimum: 0;
|
|
2215
|
+
};
|
|
2216
|
+
readonly totalCount: {
|
|
2217
|
+
readonly type: "integer";
|
|
2218
|
+
readonly minimum: 0;
|
|
2219
|
+
};
|
|
2220
|
+
readonly totalPages: {
|
|
2221
|
+
readonly type: "integer";
|
|
2222
|
+
readonly minimum: 0;
|
|
2223
|
+
};
|
|
2224
|
+
readonly hasNext: {
|
|
2225
|
+
readonly type: "boolean";
|
|
2226
|
+
};
|
|
2227
|
+
readonly hasPrevious: {
|
|
2228
|
+
readonly type: "boolean";
|
|
2229
|
+
};
|
|
2230
|
+
};
|
|
2231
|
+
};
|
|
2232
|
+
};
|
|
2233
|
+
};
|
|
2234
|
+
readonly 404: {
|
|
2235
|
+
readonly type: "object";
|
|
2236
|
+
readonly additionalProperties: false;
|
|
2237
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
2238
|
+
readonly properties: {
|
|
2239
|
+
readonly resultCode: {
|
|
2240
|
+
readonly type: "string";
|
|
2241
|
+
};
|
|
2242
|
+
readonly resultMessage: {
|
|
2243
|
+
readonly type: "string";
|
|
2244
|
+
};
|
|
2245
|
+
readonly result: {
|
|
2246
|
+
readonly type: "null";
|
|
2247
|
+
};
|
|
2248
|
+
readonly pagination: {
|
|
2249
|
+
readonly type: "object";
|
|
2250
|
+
readonly additionalProperties: false;
|
|
2251
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
2252
|
+
readonly properties: {
|
|
2253
|
+
readonly page: {
|
|
2254
|
+
readonly type: "integer";
|
|
2255
|
+
readonly minimum: 0;
|
|
2256
|
+
};
|
|
2257
|
+
readonly pageSize: {
|
|
2258
|
+
readonly type: "integer";
|
|
2259
|
+
readonly minimum: 0;
|
|
2260
|
+
};
|
|
2261
|
+
readonly totalCount: {
|
|
2262
|
+
readonly type: "integer";
|
|
2263
|
+
readonly minimum: 0;
|
|
2264
|
+
};
|
|
2265
|
+
readonly totalPages: {
|
|
2266
|
+
readonly type: "integer";
|
|
2267
|
+
readonly minimum: 0;
|
|
2268
|
+
};
|
|
2269
|
+
readonly hasNext: {
|
|
2270
|
+
readonly type: "boolean";
|
|
2271
|
+
};
|
|
2272
|
+
readonly hasPrevious: {
|
|
2273
|
+
readonly type: "boolean";
|
|
2274
|
+
};
|
|
2275
|
+
};
|
|
2276
|
+
};
|
|
2277
|
+
};
|
|
2278
|
+
};
|
|
2279
|
+
readonly 409: {
|
|
2280
|
+
readonly type: "object";
|
|
2281
|
+
readonly additionalProperties: false;
|
|
2282
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
2283
|
+
readonly properties: {
|
|
2284
|
+
readonly resultCode: {
|
|
2285
|
+
readonly type: "string";
|
|
2286
|
+
};
|
|
2287
|
+
readonly resultMessage: {
|
|
2288
|
+
readonly type: "string";
|
|
2289
|
+
};
|
|
2290
|
+
readonly result: {
|
|
2291
|
+
readonly type: "null";
|
|
2292
|
+
};
|
|
2293
|
+
readonly pagination: {
|
|
2294
|
+
readonly type: "object";
|
|
2295
|
+
readonly additionalProperties: false;
|
|
2296
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
2297
|
+
readonly properties: {
|
|
2298
|
+
readonly page: {
|
|
2299
|
+
readonly type: "integer";
|
|
2300
|
+
readonly minimum: 0;
|
|
2301
|
+
};
|
|
2302
|
+
readonly pageSize: {
|
|
2303
|
+
readonly type: "integer";
|
|
2304
|
+
readonly minimum: 0;
|
|
2305
|
+
};
|
|
2306
|
+
readonly totalCount: {
|
|
2307
|
+
readonly type: "integer";
|
|
2308
|
+
readonly minimum: 0;
|
|
2309
|
+
};
|
|
2310
|
+
readonly totalPages: {
|
|
2311
|
+
readonly type: "integer";
|
|
2312
|
+
readonly minimum: 0;
|
|
2313
|
+
};
|
|
2314
|
+
readonly hasNext: {
|
|
2315
|
+
readonly type: "boolean";
|
|
2316
|
+
};
|
|
2317
|
+
readonly hasPrevious: {
|
|
2318
|
+
readonly type: "boolean";
|
|
2319
|
+
};
|
|
2320
|
+
};
|
|
2321
|
+
};
|
|
2322
|
+
};
|
|
2323
|
+
};
|
|
2324
|
+
readonly 410: {
|
|
2325
|
+
readonly type: "object";
|
|
2326
|
+
readonly additionalProperties: false;
|
|
2327
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
2328
|
+
readonly properties: {
|
|
2329
|
+
readonly resultCode: {
|
|
2330
|
+
readonly type: "string";
|
|
2331
|
+
};
|
|
2332
|
+
readonly resultMessage: {
|
|
2333
|
+
readonly type: "string";
|
|
2334
|
+
};
|
|
2335
|
+
readonly result: {
|
|
2336
|
+
readonly type: "null";
|
|
2337
|
+
};
|
|
2338
|
+
readonly pagination: {
|
|
2339
|
+
readonly type: "object";
|
|
2340
|
+
readonly additionalProperties: false;
|
|
2341
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
2342
|
+
readonly properties: {
|
|
2343
|
+
readonly page: {
|
|
2344
|
+
readonly type: "integer";
|
|
2345
|
+
readonly minimum: 0;
|
|
2346
|
+
};
|
|
2347
|
+
readonly pageSize: {
|
|
2348
|
+
readonly type: "integer";
|
|
2349
|
+
readonly minimum: 0;
|
|
2350
|
+
};
|
|
2351
|
+
readonly totalCount: {
|
|
2352
|
+
readonly type: "integer";
|
|
2353
|
+
readonly minimum: 0;
|
|
2354
|
+
};
|
|
2355
|
+
readonly totalPages: {
|
|
2356
|
+
readonly type: "integer";
|
|
2357
|
+
readonly minimum: 0;
|
|
2358
|
+
};
|
|
2359
|
+
readonly hasNext: {
|
|
2360
|
+
readonly type: "boolean";
|
|
2361
|
+
};
|
|
2362
|
+
readonly hasPrevious: {
|
|
2363
|
+
readonly type: "boolean";
|
|
2364
|
+
};
|
|
2365
|
+
};
|
|
2366
|
+
};
|
|
2367
|
+
};
|
|
2368
|
+
};
|
|
2369
|
+
readonly 412: {
|
|
2370
|
+
readonly type: "object";
|
|
2371
|
+
readonly additionalProperties: false;
|
|
2372
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
2373
|
+
readonly properties: {
|
|
2374
|
+
readonly resultCode: {
|
|
2375
|
+
readonly type: "string";
|
|
2376
|
+
};
|
|
2377
|
+
readonly resultMessage: {
|
|
2378
|
+
readonly type: "string";
|
|
2379
|
+
};
|
|
2380
|
+
readonly result: {
|
|
2381
|
+
readonly type: "null";
|
|
2382
|
+
};
|
|
2383
|
+
readonly pagination: {
|
|
2384
|
+
readonly type: "object";
|
|
2385
|
+
readonly additionalProperties: false;
|
|
2386
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
2387
|
+
readonly properties: {
|
|
2388
|
+
readonly page: {
|
|
2389
|
+
readonly type: "integer";
|
|
2390
|
+
readonly minimum: 0;
|
|
2391
|
+
};
|
|
2392
|
+
readonly pageSize: {
|
|
2393
|
+
readonly type: "integer";
|
|
2394
|
+
readonly minimum: 0;
|
|
2395
|
+
};
|
|
2396
|
+
readonly totalCount: {
|
|
2397
|
+
readonly type: "integer";
|
|
2398
|
+
readonly minimum: 0;
|
|
2399
|
+
};
|
|
2400
|
+
readonly totalPages: {
|
|
2401
|
+
readonly type: "integer";
|
|
2402
|
+
readonly minimum: 0;
|
|
2403
|
+
};
|
|
2404
|
+
readonly hasNext: {
|
|
2405
|
+
readonly type: "boolean";
|
|
2406
|
+
};
|
|
2407
|
+
readonly hasPrevious: {
|
|
2408
|
+
readonly type: "boolean";
|
|
2409
|
+
};
|
|
2410
|
+
};
|
|
2411
|
+
};
|
|
2412
|
+
};
|
|
2413
|
+
};
|
|
2414
|
+
readonly 413: {
|
|
2415
|
+
readonly type: "object";
|
|
2416
|
+
readonly additionalProperties: false;
|
|
2417
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
2418
|
+
readonly properties: {
|
|
2419
|
+
readonly resultCode: {
|
|
2420
|
+
readonly type: "string";
|
|
2421
|
+
};
|
|
2422
|
+
readonly resultMessage: {
|
|
2423
|
+
readonly type: "string";
|
|
2424
|
+
};
|
|
2425
|
+
readonly result: {
|
|
2426
|
+
readonly type: "null";
|
|
2427
|
+
};
|
|
2428
|
+
readonly pagination: {
|
|
2429
|
+
readonly type: "object";
|
|
2430
|
+
readonly additionalProperties: false;
|
|
2431
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
2432
|
+
readonly properties: {
|
|
2433
|
+
readonly page: {
|
|
2434
|
+
readonly type: "integer";
|
|
2435
|
+
readonly minimum: 0;
|
|
2436
|
+
};
|
|
2437
|
+
readonly pageSize: {
|
|
2438
|
+
readonly type: "integer";
|
|
2439
|
+
readonly minimum: 0;
|
|
2440
|
+
};
|
|
2441
|
+
readonly totalCount: {
|
|
2442
|
+
readonly type: "integer";
|
|
2443
|
+
readonly minimum: 0;
|
|
2444
|
+
};
|
|
2445
|
+
readonly totalPages: {
|
|
2446
|
+
readonly type: "integer";
|
|
2447
|
+
readonly minimum: 0;
|
|
2448
|
+
};
|
|
2449
|
+
readonly hasNext: {
|
|
2450
|
+
readonly type: "boolean";
|
|
2451
|
+
};
|
|
2452
|
+
readonly hasPrevious: {
|
|
2453
|
+
readonly type: "boolean";
|
|
2454
|
+
};
|
|
2455
|
+
};
|
|
2456
|
+
};
|
|
2457
|
+
};
|
|
2458
|
+
};
|
|
2459
|
+
readonly 422: {
|
|
2460
|
+
readonly type: "object";
|
|
2461
|
+
readonly additionalProperties: false;
|
|
2462
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
2463
|
+
readonly properties: {
|
|
2464
|
+
readonly resultCode: {
|
|
2465
|
+
readonly type: "string";
|
|
2466
|
+
};
|
|
2467
|
+
readonly resultMessage: {
|
|
2468
|
+
readonly type: "string";
|
|
2469
|
+
};
|
|
2470
|
+
readonly result: {
|
|
2471
|
+
readonly type: "null";
|
|
2472
|
+
};
|
|
2473
|
+
readonly pagination: {
|
|
2474
|
+
readonly type: "object";
|
|
2475
|
+
readonly additionalProperties: false;
|
|
2476
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
2477
|
+
readonly properties: {
|
|
2478
|
+
readonly page: {
|
|
2479
|
+
readonly type: "integer";
|
|
2480
|
+
readonly minimum: 0;
|
|
2481
|
+
};
|
|
2482
|
+
readonly pageSize: {
|
|
2483
|
+
readonly type: "integer";
|
|
2484
|
+
readonly minimum: 0;
|
|
2485
|
+
};
|
|
2486
|
+
readonly totalCount: {
|
|
2487
|
+
readonly type: "integer";
|
|
2488
|
+
readonly minimum: 0;
|
|
2489
|
+
};
|
|
2490
|
+
readonly totalPages: {
|
|
2491
|
+
readonly type: "integer";
|
|
2492
|
+
readonly minimum: 0;
|
|
2493
|
+
};
|
|
2494
|
+
readonly hasNext: {
|
|
2495
|
+
readonly type: "boolean";
|
|
2496
|
+
};
|
|
2497
|
+
readonly hasPrevious: {
|
|
2498
|
+
readonly type: "boolean";
|
|
2499
|
+
};
|
|
2500
|
+
};
|
|
2501
|
+
};
|
|
2502
|
+
};
|
|
2503
|
+
};
|
|
2504
|
+
readonly 423: {
|
|
2505
|
+
readonly type: "object";
|
|
2506
|
+
readonly additionalProperties: false;
|
|
2507
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
2508
|
+
readonly properties: {
|
|
2509
|
+
readonly resultCode: {
|
|
2510
|
+
readonly type: "string";
|
|
2511
|
+
};
|
|
2512
|
+
readonly resultMessage: {
|
|
2513
|
+
readonly type: "string";
|
|
2514
|
+
};
|
|
2515
|
+
readonly result: {
|
|
2516
|
+
readonly type: "null";
|
|
2517
|
+
};
|
|
2518
|
+
readonly pagination: {
|
|
2519
|
+
readonly type: "object";
|
|
2520
|
+
readonly additionalProperties: false;
|
|
2521
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
2522
|
+
readonly properties: {
|
|
2523
|
+
readonly page: {
|
|
2524
|
+
readonly type: "integer";
|
|
2525
|
+
readonly minimum: 0;
|
|
2526
|
+
};
|
|
2527
|
+
readonly pageSize: {
|
|
2528
|
+
readonly type: "integer";
|
|
2529
|
+
readonly minimum: 0;
|
|
2530
|
+
};
|
|
2531
|
+
readonly totalCount: {
|
|
2532
|
+
readonly type: "integer";
|
|
2533
|
+
readonly minimum: 0;
|
|
2534
|
+
};
|
|
2535
|
+
readonly totalPages: {
|
|
2536
|
+
readonly type: "integer";
|
|
2537
|
+
readonly minimum: 0;
|
|
2538
|
+
};
|
|
2539
|
+
readonly hasNext: {
|
|
2540
|
+
readonly type: "boolean";
|
|
2541
|
+
};
|
|
2542
|
+
readonly hasPrevious: {
|
|
2543
|
+
readonly type: "boolean";
|
|
2544
|
+
};
|
|
2545
|
+
};
|
|
2546
|
+
};
|
|
2547
|
+
};
|
|
2548
|
+
};
|
|
2549
|
+
readonly 428: {
|
|
2550
|
+
readonly type: "object";
|
|
2551
|
+
readonly additionalProperties: false;
|
|
2552
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
2553
|
+
readonly properties: {
|
|
2554
|
+
readonly resultCode: {
|
|
2555
|
+
readonly type: "string";
|
|
2556
|
+
};
|
|
2557
|
+
readonly resultMessage: {
|
|
2558
|
+
readonly type: "string";
|
|
2559
|
+
};
|
|
2560
|
+
readonly result: {
|
|
2561
|
+
readonly type: "null";
|
|
2562
|
+
};
|
|
2563
|
+
readonly pagination: {
|
|
2564
|
+
readonly type: "object";
|
|
2565
|
+
readonly additionalProperties: false;
|
|
2566
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
2567
|
+
readonly properties: {
|
|
2568
|
+
readonly page: {
|
|
2569
|
+
readonly type: "integer";
|
|
2570
|
+
readonly minimum: 0;
|
|
2571
|
+
};
|
|
2572
|
+
readonly pageSize: {
|
|
2573
|
+
readonly type: "integer";
|
|
2574
|
+
readonly minimum: 0;
|
|
2575
|
+
};
|
|
2576
|
+
readonly totalCount: {
|
|
2577
|
+
readonly type: "integer";
|
|
2578
|
+
readonly minimum: 0;
|
|
2579
|
+
};
|
|
2580
|
+
readonly totalPages: {
|
|
2581
|
+
readonly type: "integer";
|
|
2582
|
+
readonly minimum: 0;
|
|
2583
|
+
};
|
|
2584
|
+
readonly hasNext: {
|
|
2585
|
+
readonly type: "boolean";
|
|
2586
|
+
};
|
|
2587
|
+
readonly hasPrevious: {
|
|
2588
|
+
readonly type: "boolean";
|
|
2589
|
+
};
|
|
2590
|
+
};
|
|
2591
|
+
};
|
|
2592
|
+
};
|
|
2593
|
+
};
|
|
2594
|
+
readonly 429: {
|
|
2595
|
+
readonly type: "object";
|
|
2596
|
+
readonly additionalProperties: false;
|
|
2597
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
2598
|
+
readonly properties: {
|
|
2599
|
+
readonly resultCode: {
|
|
2600
|
+
readonly type: "string";
|
|
2601
|
+
};
|
|
2602
|
+
readonly resultMessage: {
|
|
2603
|
+
readonly type: "string";
|
|
2604
|
+
};
|
|
2605
|
+
readonly result: {
|
|
2606
|
+
readonly type: "null";
|
|
2607
|
+
};
|
|
2608
|
+
readonly pagination: {
|
|
2609
|
+
readonly type: "object";
|
|
2610
|
+
readonly additionalProperties: false;
|
|
2611
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
2612
|
+
readonly properties: {
|
|
2613
|
+
readonly page: {
|
|
2614
|
+
readonly type: "integer";
|
|
2615
|
+
readonly minimum: 0;
|
|
2616
|
+
};
|
|
2617
|
+
readonly pageSize: {
|
|
2618
|
+
readonly type: "integer";
|
|
2619
|
+
readonly minimum: 0;
|
|
2620
|
+
};
|
|
2621
|
+
readonly totalCount: {
|
|
2622
|
+
readonly type: "integer";
|
|
2623
|
+
readonly minimum: 0;
|
|
2624
|
+
};
|
|
2625
|
+
readonly totalPages: {
|
|
2626
|
+
readonly type: "integer";
|
|
2627
|
+
readonly minimum: 0;
|
|
2628
|
+
};
|
|
2629
|
+
readonly hasNext: {
|
|
2630
|
+
readonly type: "boolean";
|
|
2631
|
+
};
|
|
2632
|
+
readonly hasPrevious: {
|
|
2633
|
+
readonly type: "boolean";
|
|
2634
|
+
};
|
|
2635
|
+
};
|
|
2636
|
+
};
|
|
2637
|
+
};
|
|
2638
|
+
};
|
|
2639
|
+
readonly 500: {
|
|
2640
|
+
readonly type: "object";
|
|
2641
|
+
readonly additionalProperties: false;
|
|
2642
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
2643
|
+
readonly properties: {
|
|
2644
|
+
readonly resultCode: {
|
|
2645
|
+
readonly type: "string";
|
|
2646
|
+
};
|
|
2647
|
+
readonly resultMessage: {
|
|
2648
|
+
readonly type: "string";
|
|
2649
|
+
};
|
|
2650
|
+
readonly result: {
|
|
2651
|
+
readonly type: "null";
|
|
2652
|
+
};
|
|
2653
|
+
readonly pagination: {
|
|
2654
|
+
readonly type: "object";
|
|
2655
|
+
readonly additionalProperties: false;
|
|
2656
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
2657
|
+
readonly properties: {
|
|
2658
|
+
readonly page: {
|
|
2659
|
+
readonly type: "integer";
|
|
2660
|
+
readonly minimum: 0;
|
|
2661
|
+
};
|
|
2662
|
+
readonly pageSize: {
|
|
2663
|
+
readonly type: "integer";
|
|
2664
|
+
readonly minimum: 0;
|
|
2665
|
+
};
|
|
2666
|
+
readonly totalCount: {
|
|
2667
|
+
readonly type: "integer";
|
|
2668
|
+
readonly minimum: 0;
|
|
2669
|
+
};
|
|
2670
|
+
readonly totalPages: {
|
|
2671
|
+
readonly type: "integer";
|
|
2672
|
+
readonly minimum: 0;
|
|
2673
|
+
};
|
|
2674
|
+
readonly hasNext: {
|
|
2675
|
+
readonly type: "boolean";
|
|
2676
|
+
};
|
|
2677
|
+
readonly hasPrevious: {
|
|
2678
|
+
readonly type: "boolean";
|
|
2679
|
+
};
|
|
2680
|
+
};
|
|
2681
|
+
};
|
|
2682
|
+
};
|
|
2683
|
+
};
|
|
2684
|
+
readonly 503: {
|
|
2685
|
+
readonly type: "object";
|
|
2686
|
+
readonly additionalProperties: false;
|
|
2687
|
+
readonly required: readonly ["resultCode", "resultMessage", "result", "pagination"];
|
|
2688
|
+
readonly properties: {
|
|
2689
|
+
readonly resultCode: {
|
|
2690
|
+
readonly type: "string";
|
|
2691
|
+
};
|
|
2692
|
+
readonly resultMessage: {
|
|
2693
|
+
readonly type: "string";
|
|
2694
|
+
};
|
|
2695
|
+
readonly result: {
|
|
2696
|
+
readonly type: "null";
|
|
2697
|
+
};
|
|
2698
|
+
readonly pagination: {
|
|
2699
|
+
readonly type: "object";
|
|
2700
|
+
readonly additionalProperties: false;
|
|
2701
|
+
readonly required: readonly ["page", "pageSize", "totalCount", "totalPages", "hasNext", "hasPrevious"];
|
|
2702
|
+
readonly properties: {
|
|
2703
|
+
readonly page: {
|
|
2704
|
+
readonly type: "integer";
|
|
2705
|
+
readonly minimum: 0;
|
|
2706
|
+
};
|
|
2707
|
+
readonly pageSize: {
|
|
2708
|
+
readonly type: "integer";
|
|
2709
|
+
readonly minimum: 0;
|
|
2710
|
+
};
|
|
2711
|
+
readonly totalCount: {
|
|
2712
|
+
readonly type: "integer";
|
|
2713
|
+
readonly minimum: 0;
|
|
2714
|
+
};
|
|
2715
|
+
readonly totalPages: {
|
|
2716
|
+
readonly type: "integer";
|
|
2717
|
+
readonly minimum: 0;
|
|
2718
|
+
};
|
|
2719
|
+
readonly hasNext: {
|
|
2720
|
+
readonly type: "boolean";
|
|
2721
|
+
};
|
|
2722
|
+
readonly hasPrevious: {
|
|
2723
|
+
readonly type: "boolean";
|
|
2724
|
+
};
|
|
2725
|
+
};
|
|
2726
|
+
};
|
|
2727
|
+
};
|
|
2728
|
+
};
|
|
2729
|
+
readonly 204: {
|
|
2730
|
+
readonly type: "null";
|
|
2731
|
+
readonly description: "멤버 제거 완료";
|
|
2732
|
+
};
|
|
2733
|
+
};
|
|
2734
|
+
};
|
|
2735
|
+
//# sourceMappingURL=project-member.schemas.d.ts.map
|