├── .gitattributes ├── .gitignore ├── .npmignore ├── .prettierignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── README.md ├── api-client-generator-logo.png ├── cloudbuild.yml ├── package.json ├── prettier.config.js ├── setupJest.ts ├── src ├── diff-tests.tests.ts ├── generator.ts ├── git.ts ├── helper.ts ├── helpers.tests.ts ├── main.ts ├── parser.ts ├── tsconfig.json ├── types.ts └── typings.d.ts ├── templates ├── header.handlebars ├── ngx-helper-types.handlebars ├── ngx-model.handlebars ├── ngx-models-export.handlebars ├── ngx-models-guards-export.handlebars ├── ngx-module-export.handlebars └── ngx-service.handlebars ├── tests ├── custom-without-guards │ └── api │ │ ├── api-client.interface.ts │ │ ├── api-client.service.ts │ │ ├── index.ts │ │ ├── models │ │ ├── blob.model.ts │ │ ├── cat.model.ts │ │ ├── corner-test-cases-model.model.ts │ │ ├── customer.model.ts │ │ ├── data-model.model.ts │ │ ├── data.model.ts │ │ ├── dictionary-item.model.ts │ │ ├── dictionary.model.ts │ │ ├── dog.model.ts │ │ ├── index.ts │ │ ├── interface-with-array-of-dictionaries-of-array-of-rights.model.ts │ │ ├── interface-with-array-of-dictionaries-of-numbers.model.ts │ │ ├── interface-with-array-of-dictionaries-of-rights.model.ts │ │ ├── interface-with-dictionary-of-arrays-of-numbers.model.ts │ │ ├── interface-with-dictionary.model.ts │ │ ├── interface-with-simple-dictionary.model.ts │ │ ├── item-list.model.ts │ │ ├── item-model-list.model.ts │ │ ├── model-param.model.ts │ │ ├── model.model.ts │ │ ├── mouse.model.ts │ │ ├── my-interface.model.ts │ │ ├── number-enum-param.enum.ts │ │ ├── page-data-rules.model.ts │ │ ├── page-data.model.ts │ │ ├── pet.model.ts │ │ ├── position.enum.ts │ │ ├── right.enum.ts │ │ ├── string-enum-param.enum.ts │ │ ├── table.model.ts │ │ ├── test-model.model.ts │ │ ├── v1-content-model-array.model.ts │ │ ├── v1-content-model-bool.model.ts │ │ ├── v1-content-model-double.model.ts │ │ ├── v1-content-model-element.model.ts │ │ ├── v1-content-model-field.model.ts │ │ ├── v1-content-model-integer.model.ts │ │ ├── v1-content-model-meta-info.model.ts │ │ ├── v1-content-model-object.model.ts │ │ ├── v1-content-model-string.model.ts │ │ ├── v1-content-model-version-list.model.ts │ │ └── v1-content-model-version.model.ts │ │ └── types.ts ├── custom │ ├── api │ │ ├── api-client.interface.ts │ │ ├── api-client.service.ts │ │ ├── guarded-api-client.service.ts │ │ ├── guards │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── models │ │ │ ├── blob.model.ts │ │ │ ├── cat.model.ts │ │ │ ├── corner-test-cases-model.model.ts │ │ │ ├── customer.model.ts │ │ │ ├── data-model.model.ts │ │ │ ├── data.model.ts │ │ │ ├── dictionary-item.model.ts │ │ │ ├── dictionary.model.ts │ │ │ ├── dog.model.ts │ │ │ ├── index.ts │ │ │ ├── interface-with-array-of-dictionaries-of-array-of-rights.model.ts │ │ │ ├── interface-with-array-of-dictionaries-of-numbers.model.ts │ │ │ ├── interface-with-array-of-dictionaries-of-rights.model.ts │ │ │ ├── interface-with-dictionary-of-arrays-of-numbers.model.ts │ │ │ ├── interface-with-dictionary.model.ts │ │ │ ├── interface-with-simple-dictionary.model.ts │ │ │ ├── item-list.model.ts │ │ │ ├── item-model-list.model.ts │ │ │ ├── model-param.model.ts │ │ │ ├── model.model.ts │ │ │ ├── mouse.model.ts │ │ │ ├── my-interface.model.ts │ │ │ ├── number-enum-param.enum.ts │ │ │ ├── page-data-rules.model.ts │ │ │ ├── page-data.model.ts │ │ │ ├── pet.model.ts │ │ │ ├── position.enum.ts │ │ │ ├── right.enum.ts │ │ │ ├── string-enum-param.enum.ts │ │ │ ├── table.model.ts │ │ │ ├── test-model.model.ts │ │ │ ├── v1-content-model-array.model.ts │ │ │ ├── v1-content-model-bool.model.ts │ │ │ ├── v1-content-model-double.model.ts │ │ │ ├── v1-content-model-element.model.ts │ │ │ ├── v1-content-model-field.model.ts │ │ │ ├── v1-content-model-integer.model.ts │ │ │ ├── v1-content-model-meta-info.model.ts │ │ │ ├── v1-content-model-object.model.ts │ │ │ ├── v1-content-model-string.model.ts │ │ │ ├── v1-content-model-version-list.model.ts │ │ │ └── v1-content-model-version.model.ts │ │ └── types.ts │ └── swagger.yaml ├── esquare │ ├── api │ │ ├── api-client.interface.ts │ │ ├── api-client.service.ts │ │ ├── guarded-api-client.service.ts │ │ ├── guards │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── models │ │ │ ├── acl-item.model.ts │ │ │ ├── acl.model.ts │ │ │ ├── auth-form.model.ts │ │ │ ├── column-mapping.model.ts │ │ │ ├── column.model.ts │ │ │ ├── criticality.enum.ts │ │ │ ├── frequency.enum.ts │ │ │ ├── import-history-item.model.ts │ │ │ ├── import-response.model.ts │ │ │ ├── import-stats-group.model.ts │ │ │ ├── import-stats.model.ts │ │ │ ├── import-status-details-item.model.ts │ │ │ ├── import-status-item.model.ts │ │ │ ├── import-status.enum.ts │ │ │ ├── import-type.enum.ts │ │ │ ├── index.ts │ │ │ ├── issue-alert-type.enum.ts │ │ │ ├── issue-status.enum.ts │ │ │ ├── issue.model.ts │ │ │ ├── notification-editable-list-item.model.ts │ │ │ ├── notification-editable.model.ts │ │ │ ├── notification-list-item.model.ts │ │ │ ├── notification-module.model.ts │ │ │ ├── notification-trigger.model.ts │ │ │ ├── order.enum.ts │ │ │ ├── orderable-table.model.ts │ │ │ ├── other-security-settings.model.ts │ │ │ ├── paged-table.model.ts │ │ │ ├── password-creation-policies.model.ts │ │ │ ├── password-verification-policies.model.ts │ │ │ ├── period.enum.ts │ │ │ ├── privilege-tree-item.model.ts │ │ │ ├── report-item.model.ts │ │ │ ├── report-list-item.model.ts │ │ │ ├── report-template-group.model.ts │ │ │ ├── report-template.model.ts │ │ │ ├── restore-form.model.ts │ │ │ ├── restore-request-form.model.ts │ │ │ ├── role-details-item.model.ts │ │ │ ├── role-list-item.model.ts │ │ │ ├── role-status.model.ts │ │ │ ├── role-update-details.model.ts │ │ │ ├── school-import-stats.model.ts │ │ │ ├── status.enum.ts │ │ │ ├── structure-add-parameters.model.ts │ │ │ ├── structure-form.model.ts │ │ │ ├── structure.model.ts │ │ │ ├── table-cell.model.ts │ │ │ ├── table.model.ts │ │ │ ├── total-import-stats.model.ts │ │ │ ├── user-details.model.ts │ │ │ ├── user-list-item.model.ts │ │ │ ├── user-status.enum.ts │ │ │ ├── validated-table-cell.model.ts │ │ │ └── validated-table.model.ts │ │ └── types.ts │ └── swagger.yaml ├── filtered-api │ ├── api │ │ ├── guards │ │ │ └── index.ts │ │ ├── models │ │ │ ├── dummy-selector-settings.model.ts │ │ │ ├── dummy-selector-view-model.model.ts │ │ │ ├── dummy-view-model.model.ts │ │ │ ├── index.ts │ │ │ └── project-type-view-model.model.ts │ │ ├── services │ │ │ ├── dummy-selector │ │ │ │ ├── dummy-selector-api-client.interface.ts │ │ │ │ ├── dummy-selector-api-client.service.ts │ │ │ │ └── guarded-dummy-selector-api-client.service.ts │ │ │ └── project │ │ │ │ ├── guarded-project-api-client.service.ts │ │ │ │ ├── project-api-client.interface.ts │ │ │ │ └── project-api-client.service.ts │ │ └── types.ts │ └── swagger.json ├── gcloud-firestore │ ├── api │ │ ├── api-client.interface.ts │ │ ├── api-client.service.ts │ │ ├── guarded-api-client.service.ts │ │ ├── guards │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── models │ │ │ ├── $-xgafv.enum.ts │ │ │ ├── alt.enum.ts │ │ │ ├── array-value.model.ts │ │ │ ├── batch-get-documents-request.model.ts │ │ │ ├── batch-get-documents-response.model.ts │ │ │ ├── begin-transaction-request.model.ts │ │ │ ├── begin-transaction-response.model.ts │ │ │ ├── collection-selector.model.ts │ │ │ ├── commit-request.model.ts │ │ │ ├── commit-response.model.ts │ │ │ ├── composite-filter.model.ts │ │ │ ├── cursor.model.ts │ │ │ ├── document-change.model.ts │ │ │ ├── document-delete.model.ts │ │ │ ├── document-mask.model.ts │ │ │ ├── document-remove.model.ts │ │ │ ├── document-transform.model.ts │ │ │ ├── document.model.ts │ │ │ ├── documents-target.model.ts │ │ │ ├── empty.model.ts │ │ │ ├── existence-filter.model.ts │ │ │ ├── field-filter.model.ts │ │ │ ├── field-reference.model.ts │ │ │ ├── field-transform.model.ts │ │ │ ├── filter.model.ts │ │ │ ├── index-field.model.ts │ │ │ ├── index.model.ts │ │ │ ├── index.ts │ │ │ ├── lat-lng.model.ts │ │ │ ├── list-collection-ids-request.model.ts │ │ │ ├── list-collection-ids-response.model.ts │ │ │ ├── list-documents-response.model.ts │ │ │ ├── list-indexes-response.model.ts │ │ │ ├── listen-request.model.ts │ │ │ ├── listen-response.model.ts │ │ │ ├── map-value.model.ts │ │ │ ├── operation.model.ts │ │ │ ├── order.model.ts │ │ │ ├── precondition.model.ts │ │ │ ├── projection.model.ts │ │ │ ├── query-target.model.ts │ │ │ ├── read-only.model.ts │ │ │ ├── read-write.model.ts │ │ │ ├── rollback-request.model.ts │ │ │ ├── run-query-request.model.ts │ │ │ ├── run-query-response.model.ts │ │ │ ├── status.model.ts │ │ │ ├── structured-query.model.ts │ │ │ ├── target-change.model.ts │ │ │ ├── target.model.ts │ │ │ ├── transaction-options.model.ts │ │ │ ├── unary-filter.model.ts │ │ │ ├── value.model.ts │ │ │ ├── write-request.model.ts │ │ │ ├── write-response.model.ts │ │ │ ├── write-result.model.ts │ │ │ └── write.model.ts │ │ └── types.ts │ └── swagger.yaml ├── github │ ├── api │ │ ├── guards │ │ │ └── index.ts │ │ ├── models │ │ │ ├── asset-patch.model.ts │ │ │ ├── asset.model.ts │ │ │ ├── assets.model.ts │ │ │ ├── assignees.model.ts │ │ │ ├── blob.model.ts │ │ │ ├── blobs.model.ts │ │ │ ├── branch.model.ts │ │ │ ├── branches.model.ts │ │ │ ├── code-frequency-stats.model.ts │ │ │ ├── comment-body.model.ts │ │ │ ├── comment.model.ts │ │ │ ├── comments.model.ts │ │ │ ├── commit-activity-stats.model.ts │ │ │ ├── commit-body.model.ts │ │ │ ├── commit-comments.model.ts │ │ │ ├── commit.model.ts │ │ │ ├── commits.model.ts │ │ │ ├── compare-commits.model.ts │ │ │ ├── contents-path.model.ts │ │ │ ├── contributors-stats.model.ts │ │ │ ├── contributors.model.ts │ │ │ ├── create-file-body.model.ts │ │ │ ├── create-file.model.ts │ │ │ ├── delete-file-body.model.ts │ │ │ ├── delete-file.model.ts │ │ │ ├── deployment-resp.model.ts │ │ │ ├── deployment-statuses-create.model.ts │ │ │ ├── deployment-statuses.model.ts │ │ │ ├── deployment.model.ts │ │ │ ├── downloads.model.ts │ │ │ ├── edit-team.model.ts │ │ │ ├── emails-post.model.ts │ │ │ ├── emojis.model.ts │ │ │ ├── event.model.ts │ │ │ ├── events.model.ts │ │ │ ├── feeds.model.ts │ │ │ ├── fork-body.model.ts │ │ │ ├── fork.model.ts │ │ │ ├── forks.model.ts │ │ │ ├── gist.model.ts │ │ │ ├── gists.model.ts │ │ │ ├── git-commit.model.ts │ │ │ ├── git-ref-patch.model.ts │ │ │ ├── gitignore-lang.model.ts │ │ │ ├── gitignore.model.ts │ │ │ ├── head-branch.model.ts │ │ │ ├── hook-body.model.ts │ │ │ ├── hook.model.ts │ │ │ ├── index.ts │ │ │ ├── issue.model.ts │ │ │ ├── issues-comment.model.ts │ │ │ ├── issues-comments.model.ts │ │ │ ├── issues.model.ts │ │ │ ├── keys.model.ts │ │ │ ├── label.model.ts │ │ │ ├── labels.model.ts │ │ │ ├── languages.model.ts │ │ │ ├── markdown.model.ts │ │ │ ├── merge-pull-body.model.ts │ │ │ ├── merge.model.ts │ │ │ ├── merges-body.model.ts │ │ │ ├── merges-successful.model.ts │ │ │ ├── meta.model.ts │ │ │ ├── milestone-update.model.ts │ │ │ ├── milestone.model.ts │ │ │ ├── notification-mark-read.model.ts │ │ │ ├── notifications.model.ts │ │ │ ├── org-teams-post.model.ts │ │ │ ├── organization.model.ts │ │ │ ├── participation-stats.model.ts │ │ │ ├── patch-gist.model.ts │ │ │ ├── patch-org.model.ts │ │ │ ├── post-gist.model.ts │ │ │ ├── post-repo.model.ts │ │ │ ├── pull-request.model.ts │ │ │ ├── pull-update.model.ts │ │ │ ├── pulls-comment-post.model.ts │ │ │ ├── pulls-comment.model.ts │ │ │ ├── pulls-post.model.ts │ │ │ ├── pulls.model.ts │ │ │ ├── put-subscription.model.ts │ │ │ ├── rate-limit.model.ts │ │ │ ├── ref-status.model.ts │ │ │ ├── ref.model.ts │ │ │ ├── refs-body.model.ts │ │ │ ├── refs.model.ts │ │ │ ├── release-create.model.ts │ │ │ ├── release.model.ts │ │ │ ├── releases.model.ts │ │ │ ├── repo-comments.model.ts │ │ │ ├── repo-commit-body.model.ts │ │ │ ├── repo-commit.model.ts │ │ │ ├── repo-deployments.model.ts │ │ │ ├── repo-edit.model.ts │ │ │ ├── repo.model.ts │ │ │ ├── repos.model.ts │ │ │ ├── repositories.model.ts │ │ │ ├── search-code.model.ts │ │ │ ├── search-issues-by-keyword.model.ts │ │ │ ├── search-issues.model.ts │ │ │ ├── search-repositories-by-keyword.model.ts │ │ │ ├── search-repositories.model.ts │ │ │ ├── search-user-by-email.model.ts │ │ │ ├── search-users-by-keyword.model.ts │ │ │ ├── search-users.model.ts │ │ │ ├── subscribition-body.model.ts │ │ │ ├── subscribition.model.ts │ │ │ ├── subscription.model.ts │ │ │ ├── tag.model.ts │ │ │ ├── tags.model.ts │ │ │ ├── team-membership.model.ts │ │ │ ├── team-repos.model.ts │ │ │ ├── team.model.ts │ │ │ ├── teams-list.model.ts │ │ │ ├── teams.model.ts │ │ │ ├── tree.model.ts │ │ │ ├── trees.model.ts │ │ │ ├── user-emails.model.ts │ │ │ ├── user-id-subscribitions.model.ts │ │ │ ├── user-keys-key-id.model.ts │ │ │ ├── user-keys-post.model.ts │ │ │ ├── user-update.model.ts │ │ │ ├── user.model.ts │ │ │ └── users.model.ts │ │ ├── services │ │ │ ├── emojis │ │ │ │ ├── emojis-api-client.interface.ts │ │ │ │ ├── emojis-api-client.service.ts │ │ │ │ ├── guarded-emojis-api-client.service.ts │ │ │ │ └── index.ts │ │ │ ├── events │ │ │ │ ├── events-api-client.interface.ts │ │ │ │ ├── events-api-client.service.ts │ │ │ │ ├── guarded-events-api-client.service.ts │ │ │ │ └── index.ts │ │ │ ├── feeds │ │ │ │ ├── feeds-api-client.interface.ts │ │ │ │ ├── feeds-api-client.service.ts │ │ │ │ ├── guarded-feeds-api-client.service.ts │ │ │ │ └── index.ts │ │ │ ├── gists │ │ │ │ ├── gists-api-client.interface.ts │ │ │ │ ├── gists-api-client.service.ts │ │ │ │ ├── guarded-gists-api-client.service.ts │ │ │ │ └── index.ts │ │ │ ├── gitignore │ │ │ │ ├── gitignore-api-client.interface.ts │ │ │ │ ├── gitignore-api-client.service.ts │ │ │ │ ├── guarded-gitignore-api-client.service.ts │ │ │ │ └── index.ts │ │ │ ├── issues │ │ │ │ ├── guarded-issues-api-client.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── issues-api-client.interface.ts │ │ │ │ └── issues-api-client.service.ts │ │ │ ├── legacy │ │ │ │ ├── guarded-legacy-api-client.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── legacy-api-client.interface.ts │ │ │ │ └── legacy-api-client.service.ts │ │ │ ├── markdown │ │ │ │ ├── guarded-markdown-api-client.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── markdown-api-client.interface.ts │ │ │ │ └── markdown-api-client.service.ts │ │ │ ├── meta │ │ │ │ ├── guarded-meta-api-client.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── meta-api-client.interface.ts │ │ │ │ └── meta-api-client.service.ts │ │ │ ├── networks │ │ │ │ ├── guarded-networks-api-client.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── networks-api-client.interface.ts │ │ │ │ └── networks-api-client.service.ts │ │ │ ├── notifications │ │ │ │ ├── guarded-notifications-api-client.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── notifications-api-client.interface.ts │ │ │ │ └── notifications-api-client.service.ts │ │ │ ├── orgs │ │ │ │ ├── guarded-orgs-api-client.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── orgs-api-client.interface.ts │ │ │ │ └── orgs-api-client.service.ts │ │ │ ├── rate_limit │ │ │ │ ├── guarded-rate-limit-api-client.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── rate-limit-api-client.interface.ts │ │ │ │ └── rate-limit-api-client.service.ts │ │ │ ├── repos │ │ │ │ ├── guarded-repos-api-client.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── repos-api-client.interface.ts │ │ │ │ └── repos-api-client.service.ts │ │ │ ├── repositories │ │ │ │ ├── guarded-repositories-api-client.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── repositories-api-client.interface.ts │ │ │ │ └── repositories-api-client.service.ts │ │ │ ├── search │ │ │ │ ├── guarded-search-api-client.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── search-api-client.interface.ts │ │ │ │ └── search-api-client.service.ts │ │ │ ├── teams │ │ │ │ ├── guarded-teams-api-client.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── teams-api-client.interface.ts │ │ │ │ └── teams-api-client.service.ts │ │ │ ├── user │ │ │ │ ├── guarded-user-api-client.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── user-api-client.interface.ts │ │ │ │ └── user-api-client.service.ts │ │ │ └── users │ │ │ │ ├── guarded-users-api-client.service.ts │ │ │ │ ├── index.ts │ │ │ │ ├── users-api-client.interface.ts │ │ │ │ └── users-api-client.service.ts │ │ └── types.ts │ └── swagger.yaml ├── pet-store │ ├── api │ │ ├── api-client.interface.ts │ │ ├── api-client.service.ts │ │ ├── guarded-api-client.service.ts │ │ ├── guards │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── models │ │ │ ├── api-response.model.ts │ │ │ ├── category.model.ts │ │ │ ├── index.ts │ │ │ ├── order.model.ts │ │ │ ├── pet.model.ts │ │ │ ├── tag.model.ts │ │ │ └── user.model.ts │ │ └── types.ts │ └── swagger.yaml ├── test-angular-project │ ├── .gitignore │ ├── angular.json │ ├── package-lock.json │ ├── package.json │ ├── src │ │ ├── api-tests │ │ │ ├── api-client.module.spec.ts │ │ │ ├── guards.spec.ts │ │ │ ├── pet.service.spec.ts │ │ │ ├── tests-constants.ts │ │ │ └── user.service.spec.ts │ │ ├── app │ │ │ ├── app.component.spec.ts │ │ │ ├── app.component.ts │ │ │ └── app.module.ts │ │ ├── environments │ │ │ ├── environment.prod.ts │ │ │ └── environment.ts │ │ ├── index.html │ │ ├── main.ts │ │ ├── polyfills.ts │ │ ├── setupJest.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.spec.json │ │ └── tslint.json │ ├── swagger.yaml │ └── tsconfig.json └── with-all-tags │ ├── api │ ├── guards │ │ └── index.ts │ ├── models │ │ ├── column-model.model.ts │ │ ├── dashboard-view-model.model.ts │ │ ├── dummy-selector-settings.model.ts │ │ ├── dummy-selector-view-model.model.ts │ │ ├── dummy-view-model.model.ts │ │ ├── index.ts │ │ ├── project-type-view-model.model.ts │ │ ├── row-model.model.ts │ │ ├── status-severity.enum.ts │ │ ├── widget-model.model.ts │ │ └── widget-type-view-model.model.ts │ ├── services │ │ ├── dashboard │ │ │ ├── dashboard-api-client.interface.ts │ │ │ ├── dashboard-api-client.service.ts │ │ │ ├── guarded-dashboard-api-client.service.ts │ │ │ └── index.ts │ │ ├── dummy-selector │ │ │ ├── dummy-selector-api-client.interface.ts │ │ │ ├── dummy-selector-api-client.service.ts │ │ │ ├── guarded-dummy-selector-api-client.service.ts │ │ │ └── index.ts │ │ └── project │ │ │ ├── guarded-project-api-client.service.ts │ │ │ ├── index.ts │ │ │ ├── project-api-client.interface.ts │ │ │ └── project-api-client.service.ts │ └── types.ts │ └── swagger.json ├── tsconfig.json └── tslint.json /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto eol=lf 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/.prettierignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | closes #issue 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/README.md -------------------------------------------------------------------------------- /api-client-generator-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/api-client-generator-logo.png -------------------------------------------------------------------------------- /cloudbuild.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/cloudbuild.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/prettier.config.js -------------------------------------------------------------------------------- /setupJest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/setupJest.ts -------------------------------------------------------------------------------- /src/diff-tests.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/src/diff-tests.tests.ts -------------------------------------------------------------------------------- /src/generator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/src/generator.ts -------------------------------------------------------------------------------- /src/git.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/src/git.ts -------------------------------------------------------------------------------- /src/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/src/helper.ts -------------------------------------------------------------------------------- /src/helpers.tests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/src/helpers.tests.ts -------------------------------------------------------------------------------- /src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/src/main.ts -------------------------------------------------------------------------------- /src/parser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/src/parser.ts -------------------------------------------------------------------------------- /src/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/src/tsconfig.json -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/src/types.ts -------------------------------------------------------------------------------- /src/typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/src/typings.d.ts -------------------------------------------------------------------------------- /templates/header.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/templates/header.handlebars -------------------------------------------------------------------------------- /templates/ngx-helper-types.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/templates/ngx-helper-types.handlebars -------------------------------------------------------------------------------- /templates/ngx-model.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/templates/ngx-model.handlebars -------------------------------------------------------------------------------- /templates/ngx-models-export.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/templates/ngx-models-export.handlebars -------------------------------------------------------------------------------- /templates/ngx-models-guards-export.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/templates/ngx-models-guards-export.handlebars -------------------------------------------------------------------------------- /templates/ngx-module-export.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/templates/ngx-module-export.handlebars -------------------------------------------------------------------------------- /templates/ngx-service.handlebars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/templates/ngx-service.handlebars -------------------------------------------------------------------------------- /tests/custom-without-guards/api/api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/api-client.interface.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/api-client.service.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/index.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/blob.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/blob.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/cat.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/cat.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/corner-test-cases-model.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/corner-test-cases-model.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/customer.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/customer.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/data-model.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/data-model.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/data.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/data.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/dictionary-item.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/dictionary-item.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/dictionary.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/dictionary.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/dog.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/dog.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/index.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/interface-with-array-of-dictionaries-of-array-of-rights.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/interface-with-array-of-dictionaries-of-array-of-rights.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/interface-with-array-of-dictionaries-of-numbers.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/interface-with-array-of-dictionaries-of-numbers.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/interface-with-array-of-dictionaries-of-rights.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/interface-with-array-of-dictionaries-of-rights.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/interface-with-dictionary-of-arrays-of-numbers.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/interface-with-dictionary-of-arrays-of-numbers.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/interface-with-dictionary.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/interface-with-dictionary.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/interface-with-simple-dictionary.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/interface-with-simple-dictionary.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/item-list.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/item-list.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/item-model-list.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/item-model-list.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/model-param.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/model-param.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/model.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/model.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/mouse.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/mouse.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/my-interface.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/my-interface.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/number-enum-param.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/number-enum-param.enum.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/page-data-rules.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/page-data-rules.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/page-data.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/page-data.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/pet.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/pet.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/position.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/position.enum.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/right.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/right.enum.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/string-enum-param.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/string-enum-param.enum.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/table.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/table.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/test-model.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/test-model.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/v1-content-model-array.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/v1-content-model-array.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/v1-content-model-bool.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/v1-content-model-bool.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/v1-content-model-double.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/v1-content-model-double.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/v1-content-model-element.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/v1-content-model-element.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/v1-content-model-field.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/v1-content-model-field.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/v1-content-model-integer.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/v1-content-model-integer.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/v1-content-model-meta-info.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/v1-content-model-meta-info.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/v1-content-model-object.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/v1-content-model-object.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/v1-content-model-string.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/v1-content-model-string.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/v1-content-model-version-list.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/v1-content-model-version-list.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/models/v1-content-model-version.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/models/v1-content-model-version.model.ts -------------------------------------------------------------------------------- /tests/custom-without-guards/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom-without-guards/api/types.ts -------------------------------------------------------------------------------- /tests/custom/api/api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/api-client.interface.ts -------------------------------------------------------------------------------- /tests/custom/api/api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/api-client.service.ts -------------------------------------------------------------------------------- /tests/custom/api/guarded-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/guarded-api-client.service.ts -------------------------------------------------------------------------------- /tests/custom/api/guards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/guards/index.ts -------------------------------------------------------------------------------- /tests/custom/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/index.ts -------------------------------------------------------------------------------- /tests/custom/api/models/blob.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/blob.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/cat.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/cat.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/corner-test-cases-model.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/corner-test-cases-model.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/customer.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/customer.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/data-model.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/data-model.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/data.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/data.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/dictionary-item.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/dictionary-item.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/dictionary.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/dictionary.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/dog.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/dog.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/index.ts -------------------------------------------------------------------------------- /tests/custom/api/models/interface-with-array-of-dictionaries-of-array-of-rights.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/interface-with-array-of-dictionaries-of-array-of-rights.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/interface-with-array-of-dictionaries-of-numbers.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/interface-with-array-of-dictionaries-of-numbers.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/interface-with-array-of-dictionaries-of-rights.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/interface-with-array-of-dictionaries-of-rights.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/interface-with-dictionary-of-arrays-of-numbers.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/interface-with-dictionary-of-arrays-of-numbers.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/interface-with-dictionary.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/interface-with-dictionary.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/interface-with-simple-dictionary.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/interface-with-simple-dictionary.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/item-list.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/item-list.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/item-model-list.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/item-model-list.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/model-param.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/model-param.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/model.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/model.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/mouse.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/mouse.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/my-interface.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/my-interface.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/number-enum-param.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/number-enum-param.enum.ts -------------------------------------------------------------------------------- /tests/custom/api/models/page-data-rules.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/page-data-rules.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/page-data.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/page-data.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/pet.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/pet.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/position.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/position.enum.ts -------------------------------------------------------------------------------- /tests/custom/api/models/right.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/right.enum.ts -------------------------------------------------------------------------------- /tests/custom/api/models/string-enum-param.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/string-enum-param.enum.ts -------------------------------------------------------------------------------- /tests/custom/api/models/table.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/table.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/test-model.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/test-model.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/v1-content-model-array.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/v1-content-model-array.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/v1-content-model-bool.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/v1-content-model-bool.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/v1-content-model-double.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/v1-content-model-double.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/v1-content-model-element.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/v1-content-model-element.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/v1-content-model-field.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/v1-content-model-field.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/v1-content-model-integer.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/v1-content-model-integer.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/v1-content-model-meta-info.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/v1-content-model-meta-info.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/v1-content-model-object.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/v1-content-model-object.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/v1-content-model-string.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/v1-content-model-string.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/v1-content-model-version-list.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/v1-content-model-version-list.model.ts -------------------------------------------------------------------------------- /tests/custom/api/models/v1-content-model-version.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/models/v1-content-model-version.model.ts -------------------------------------------------------------------------------- /tests/custom/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/api/types.ts -------------------------------------------------------------------------------- /tests/custom/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/custom/swagger.yaml -------------------------------------------------------------------------------- /tests/esquare/api/api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/api-client.interface.ts -------------------------------------------------------------------------------- /tests/esquare/api/api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/api-client.service.ts -------------------------------------------------------------------------------- /tests/esquare/api/guarded-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/guarded-api-client.service.ts -------------------------------------------------------------------------------- /tests/esquare/api/guards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/guards/index.ts -------------------------------------------------------------------------------- /tests/esquare/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/index.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/acl-item.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/acl-item.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/acl.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/acl.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/auth-form.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/auth-form.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/column-mapping.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/column-mapping.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/column.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/column.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/criticality.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/criticality.enum.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/frequency.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/frequency.enum.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/import-history-item.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/import-history-item.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/import-response.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/import-response.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/import-stats-group.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/import-stats-group.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/import-stats.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/import-stats.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/import-status-details-item.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/import-status-details-item.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/import-status-item.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/import-status-item.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/import-status.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/import-status.enum.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/import-type.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/import-type.enum.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/index.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/issue-alert-type.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/issue-alert-type.enum.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/issue-status.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/issue-status.enum.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/issue.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/issue.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/notification-editable-list-item.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/notification-editable-list-item.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/notification-editable.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/notification-editable.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/notification-list-item.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/notification-list-item.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/notification-module.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/notification-module.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/notification-trigger.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/notification-trigger.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/order.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/order.enum.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/orderable-table.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/orderable-table.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/other-security-settings.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/other-security-settings.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/paged-table.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/paged-table.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/password-creation-policies.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/password-creation-policies.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/password-verification-policies.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/password-verification-policies.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/period.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/period.enum.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/privilege-tree-item.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/privilege-tree-item.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/report-item.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/report-item.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/report-list-item.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/report-list-item.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/report-template-group.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/report-template-group.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/report-template.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/report-template.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/restore-form.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/restore-form.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/restore-request-form.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/restore-request-form.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/role-details-item.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/role-details-item.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/role-list-item.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/role-list-item.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/role-status.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/role-status.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/role-update-details.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/role-update-details.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/school-import-stats.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/school-import-stats.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/status.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/status.enum.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/structure-add-parameters.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/structure-add-parameters.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/structure-form.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/structure-form.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/structure.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/structure.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/table-cell.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/table-cell.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/table.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/table.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/total-import-stats.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/total-import-stats.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/user-details.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/user-details.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/user-list-item.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/user-list-item.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/user-status.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/user-status.enum.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/validated-table-cell.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/validated-table-cell.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/models/validated-table.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/models/validated-table.model.ts -------------------------------------------------------------------------------- /tests/esquare/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/api/types.ts -------------------------------------------------------------------------------- /tests/esquare/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/esquare/swagger.yaml -------------------------------------------------------------------------------- /tests/filtered-api/api/guards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/filtered-api/api/guards/index.ts -------------------------------------------------------------------------------- /tests/filtered-api/api/models/dummy-selector-settings.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/filtered-api/api/models/dummy-selector-settings.model.ts -------------------------------------------------------------------------------- /tests/filtered-api/api/models/dummy-selector-view-model.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/filtered-api/api/models/dummy-selector-view-model.model.ts -------------------------------------------------------------------------------- /tests/filtered-api/api/models/dummy-view-model.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/filtered-api/api/models/dummy-view-model.model.ts -------------------------------------------------------------------------------- /tests/filtered-api/api/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/filtered-api/api/models/index.ts -------------------------------------------------------------------------------- /tests/filtered-api/api/models/project-type-view-model.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/filtered-api/api/models/project-type-view-model.model.ts -------------------------------------------------------------------------------- /tests/filtered-api/api/services/dummy-selector/dummy-selector-api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/filtered-api/api/services/dummy-selector/dummy-selector-api-client.interface.ts -------------------------------------------------------------------------------- /tests/filtered-api/api/services/dummy-selector/dummy-selector-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/filtered-api/api/services/dummy-selector/dummy-selector-api-client.service.ts -------------------------------------------------------------------------------- /tests/filtered-api/api/services/dummy-selector/guarded-dummy-selector-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/filtered-api/api/services/dummy-selector/guarded-dummy-selector-api-client.service.ts -------------------------------------------------------------------------------- /tests/filtered-api/api/services/project/guarded-project-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/filtered-api/api/services/project/guarded-project-api-client.service.ts -------------------------------------------------------------------------------- /tests/filtered-api/api/services/project/project-api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/filtered-api/api/services/project/project-api-client.interface.ts -------------------------------------------------------------------------------- /tests/filtered-api/api/services/project/project-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/filtered-api/api/services/project/project-api-client.service.ts -------------------------------------------------------------------------------- /tests/filtered-api/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/filtered-api/api/types.ts -------------------------------------------------------------------------------- /tests/filtered-api/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/filtered-api/swagger.json -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/api-client.interface.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/api-client.service.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/guarded-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/guarded-api-client.service.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/guards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/guards/index.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/index.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/$-xgafv.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/$-xgafv.enum.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/alt.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/alt.enum.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/array-value.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/array-value.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/batch-get-documents-request.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/batch-get-documents-request.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/batch-get-documents-response.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/batch-get-documents-response.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/begin-transaction-request.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/begin-transaction-request.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/begin-transaction-response.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/begin-transaction-response.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/collection-selector.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/collection-selector.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/commit-request.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/commit-request.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/commit-response.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/commit-response.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/composite-filter.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/composite-filter.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/cursor.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/cursor.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/document-change.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/document-change.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/document-delete.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/document-delete.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/document-mask.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/document-mask.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/document-remove.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/document-remove.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/document-transform.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/document-transform.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/document.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/document.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/documents-target.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/documents-target.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/empty.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/empty.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/existence-filter.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/existence-filter.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/field-filter.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/field-filter.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/field-reference.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/field-reference.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/field-transform.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/field-transform.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/filter.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/filter.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/index-field.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/index-field.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/index.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/index.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/index.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/lat-lng.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/lat-lng.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/list-collection-ids-request.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/list-collection-ids-request.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/list-collection-ids-response.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/list-collection-ids-response.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/list-documents-response.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/list-documents-response.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/list-indexes-response.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/list-indexes-response.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/listen-request.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/listen-request.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/listen-response.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/listen-response.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/map-value.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/map-value.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/operation.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/operation.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/order.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/order.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/precondition.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/precondition.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/projection.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/projection.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/query-target.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/query-target.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/read-only.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/read-only.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/read-write.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/read-write.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/rollback-request.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/rollback-request.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/run-query-request.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/run-query-request.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/run-query-response.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/run-query-response.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/status.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/status.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/structured-query.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/structured-query.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/target-change.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/target-change.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/target.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/target.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/transaction-options.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/transaction-options.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/unary-filter.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/unary-filter.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/value.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/value.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/write-request.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/write-request.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/write-response.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/write-response.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/write-result.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/write-result.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/models/write.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/models/write.model.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/api/types.ts -------------------------------------------------------------------------------- /tests/gcloud-firestore/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/gcloud-firestore/swagger.yaml -------------------------------------------------------------------------------- /tests/github/api/guards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/guards/index.ts -------------------------------------------------------------------------------- /tests/github/api/models/asset-patch.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/asset-patch.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/asset.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/asset.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/assets.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/assets.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/assignees.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/assignees.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/blob.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/blob.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/blobs.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/blobs.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/branch.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/branch.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/branches.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/branches.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/code-frequency-stats.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/code-frequency-stats.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/comment-body.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/comment-body.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/comment.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/comment.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/comments.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/comments.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/commit-activity-stats.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/commit-activity-stats.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/commit-body.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/commit-body.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/commit-comments.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/commit-comments.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/commit.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/commit.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/commits.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/commits.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/compare-commits.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/compare-commits.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/contents-path.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/contents-path.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/contributors-stats.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/contributors-stats.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/contributors.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/contributors.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/create-file-body.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/create-file-body.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/create-file.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/create-file.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/delete-file-body.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/delete-file-body.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/delete-file.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/delete-file.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/deployment-resp.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/deployment-resp.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/deployment-statuses-create.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/deployment-statuses-create.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/deployment-statuses.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/deployment-statuses.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/deployment.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/deployment.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/downloads.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/downloads.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/edit-team.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/edit-team.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/emails-post.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/emails-post.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/emojis.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/emojis.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/event.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/event.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/events.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/events.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/feeds.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/feeds.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/fork-body.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/fork-body.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/fork.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/fork.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/forks.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/forks.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/gist.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/gist.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/gists.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/gists.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/git-commit.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/git-commit.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/git-ref-patch.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/git-ref-patch.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/gitignore-lang.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/gitignore-lang.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/gitignore.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/gitignore.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/head-branch.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/head-branch.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/hook-body.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/hook-body.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/hook.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/hook.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/index.ts -------------------------------------------------------------------------------- /tests/github/api/models/issue.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/issue.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/issues-comment.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/issues-comment.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/issues-comments.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/issues-comments.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/issues.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/issues.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/keys.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/keys.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/label.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/label.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/labels.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/labels.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/languages.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/languages.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/markdown.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/markdown.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/merge-pull-body.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/merge-pull-body.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/merge.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/merge.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/merges-body.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/merges-body.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/merges-successful.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/merges-successful.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/meta.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/meta.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/milestone-update.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/milestone-update.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/milestone.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/milestone.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/notification-mark-read.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/notification-mark-read.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/notifications.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/notifications.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/org-teams-post.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/org-teams-post.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/organization.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/organization.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/participation-stats.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/participation-stats.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/patch-gist.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/patch-gist.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/patch-org.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/patch-org.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/post-gist.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/post-gist.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/post-repo.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/post-repo.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/pull-request.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/pull-request.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/pull-update.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/pull-update.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/pulls-comment-post.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/pulls-comment-post.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/pulls-comment.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/pulls-comment.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/pulls-post.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/pulls-post.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/pulls.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/pulls.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/put-subscription.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/put-subscription.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/rate-limit.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/rate-limit.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/ref-status.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/ref-status.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/ref.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/ref.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/refs-body.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/refs-body.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/refs.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/refs.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/release-create.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/release-create.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/release.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/release.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/releases.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/releases.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/repo-comments.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/repo-comments.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/repo-commit-body.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/repo-commit-body.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/repo-commit.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/repo-commit.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/repo-deployments.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/repo-deployments.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/repo-edit.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/repo-edit.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/repo.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/repo.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/repos.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/repos.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/repositories.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/repositories.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/search-code.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/search-code.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/search-issues-by-keyword.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/search-issues-by-keyword.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/search-issues.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/search-issues.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/search-repositories-by-keyword.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/search-repositories-by-keyword.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/search-repositories.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/search-repositories.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/search-user-by-email.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/search-user-by-email.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/search-users-by-keyword.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/search-users-by-keyword.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/search-users.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/search-users.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/subscribition-body.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/subscribition-body.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/subscribition.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/subscribition.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/subscription.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/subscription.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/tag.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/tag.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/tags.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/tags.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/team-membership.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/team-membership.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/team-repos.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/team-repos.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/team.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/team.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/teams-list.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/teams-list.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/teams.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/teams.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/tree.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/tree.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/trees.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/trees.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/user-emails.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/user-emails.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/user-id-subscribitions.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/user-id-subscribitions.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/user-keys-key-id.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/user-keys-key-id.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/user-keys-post.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/user-keys-post.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/user-update.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/user-update.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/user.model.ts -------------------------------------------------------------------------------- /tests/github/api/models/users.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/models/users.model.ts -------------------------------------------------------------------------------- /tests/github/api/services/emojis/emojis-api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/emojis/emojis-api-client.interface.ts -------------------------------------------------------------------------------- /tests/github/api/services/emojis/emojis-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/emojis/emojis-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/emojis/guarded-emojis-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/emojis/guarded-emojis-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/emojis/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/emojis/index.ts -------------------------------------------------------------------------------- /tests/github/api/services/events/events-api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/events/events-api-client.interface.ts -------------------------------------------------------------------------------- /tests/github/api/services/events/events-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/events/events-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/events/guarded-events-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/events/guarded-events-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/events/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/events/index.ts -------------------------------------------------------------------------------- /tests/github/api/services/feeds/feeds-api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/feeds/feeds-api-client.interface.ts -------------------------------------------------------------------------------- /tests/github/api/services/feeds/feeds-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/feeds/feeds-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/feeds/guarded-feeds-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/feeds/guarded-feeds-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/feeds/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/feeds/index.ts -------------------------------------------------------------------------------- /tests/github/api/services/gists/gists-api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/gists/gists-api-client.interface.ts -------------------------------------------------------------------------------- /tests/github/api/services/gists/gists-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/gists/gists-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/gists/guarded-gists-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/gists/guarded-gists-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/gists/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/gists/index.ts -------------------------------------------------------------------------------- /tests/github/api/services/gitignore/gitignore-api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/gitignore/gitignore-api-client.interface.ts -------------------------------------------------------------------------------- /tests/github/api/services/gitignore/gitignore-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/gitignore/gitignore-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/gitignore/guarded-gitignore-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/gitignore/guarded-gitignore-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/gitignore/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/gitignore/index.ts -------------------------------------------------------------------------------- /tests/github/api/services/issues/guarded-issues-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/issues/guarded-issues-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/issues/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/issues/index.ts -------------------------------------------------------------------------------- /tests/github/api/services/issues/issues-api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/issues/issues-api-client.interface.ts -------------------------------------------------------------------------------- /tests/github/api/services/issues/issues-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/issues/issues-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/legacy/guarded-legacy-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/legacy/guarded-legacy-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/legacy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/legacy/index.ts -------------------------------------------------------------------------------- /tests/github/api/services/legacy/legacy-api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/legacy/legacy-api-client.interface.ts -------------------------------------------------------------------------------- /tests/github/api/services/legacy/legacy-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/legacy/legacy-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/markdown/guarded-markdown-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/markdown/guarded-markdown-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/markdown/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/markdown/index.ts -------------------------------------------------------------------------------- /tests/github/api/services/markdown/markdown-api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/markdown/markdown-api-client.interface.ts -------------------------------------------------------------------------------- /tests/github/api/services/markdown/markdown-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/markdown/markdown-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/meta/guarded-meta-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/meta/guarded-meta-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/meta/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/meta/index.ts -------------------------------------------------------------------------------- /tests/github/api/services/meta/meta-api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/meta/meta-api-client.interface.ts -------------------------------------------------------------------------------- /tests/github/api/services/meta/meta-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/meta/meta-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/networks/guarded-networks-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/networks/guarded-networks-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/networks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/networks/index.ts -------------------------------------------------------------------------------- /tests/github/api/services/networks/networks-api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/networks/networks-api-client.interface.ts -------------------------------------------------------------------------------- /tests/github/api/services/networks/networks-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/networks/networks-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/notifications/guarded-notifications-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/notifications/guarded-notifications-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/notifications/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/notifications/index.ts -------------------------------------------------------------------------------- /tests/github/api/services/notifications/notifications-api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/notifications/notifications-api-client.interface.ts -------------------------------------------------------------------------------- /tests/github/api/services/notifications/notifications-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/notifications/notifications-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/orgs/guarded-orgs-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/orgs/guarded-orgs-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/orgs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/orgs/index.ts -------------------------------------------------------------------------------- /tests/github/api/services/orgs/orgs-api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/orgs/orgs-api-client.interface.ts -------------------------------------------------------------------------------- /tests/github/api/services/orgs/orgs-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/orgs/orgs-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/rate_limit/guarded-rate-limit-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/rate_limit/guarded-rate-limit-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/rate_limit/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/rate_limit/index.ts -------------------------------------------------------------------------------- /tests/github/api/services/rate_limit/rate-limit-api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/rate_limit/rate-limit-api-client.interface.ts -------------------------------------------------------------------------------- /tests/github/api/services/rate_limit/rate-limit-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/rate_limit/rate-limit-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/repos/guarded-repos-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/repos/guarded-repos-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/repos/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/repos/index.ts -------------------------------------------------------------------------------- /tests/github/api/services/repos/repos-api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/repos/repos-api-client.interface.ts -------------------------------------------------------------------------------- /tests/github/api/services/repos/repos-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/repos/repos-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/repositories/guarded-repositories-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/repositories/guarded-repositories-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/repositories/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/repositories/index.ts -------------------------------------------------------------------------------- /tests/github/api/services/repositories/repositories-api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/repositories/repositories-api-client.interface.ts -------------------------------------------------------------------------------- /tests/github/api/services/repositories/repositories-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/repositories/repositories-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/search/guarded-search-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/search/guarded-search-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/search/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/search/index.ts -------------------------------------------------------------------------------- /tests/github/api/services/search/search-api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/search/search-api-client.interface.ts -------------------------------------------------------------------------------- /tests/github/api/services/search/search-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/search/search-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/teams/guarded-teams-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/teams/guarded-teams-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/teams/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/teams/index.ts -------------------------------------------------------------------------------- /tests/github/api/services/teams/teams-api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/teams/teams-api-client.interface.ts -------------------------------------------------------------------------------- /tests/github/api/services/teams/teams-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/teams/teams-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/user/guarded-user-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/user/guarded-user-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/user/index.ts -------------------------------------------------------------------------------- /tests/github/api/services/user/user-api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/user/user-api-client.interface.ts -------------------------------------------------------------------------------- /tests/github/api/services/user/user-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/user/user-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/users/guarded-users-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/users/guarded-users-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/services/users/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/users/index.ts -------------------------------------------------------------------------------- /tests/github/api/services/users/users-api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/users/users-api-client.interface.ts -------------------------------------------------------------------------------- /tests/github/api/services/users/users-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/services/users/users-api-client.service.ts -------------------------------------------------------------------------------- /tests/github/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/api/types.ts -------------------------------------------------------------------------------- /tests/github/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/github/swagger.yaml -------------------------------------------------------------------------------- /tests/pet-store/api/api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/pet-store/api/api-client.interface.ts -------------------------------------------------------------------------------- /tests/pet-store/api/api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/pet-store/api/api-client.service.ts -------------------------------------------------------------------------------- /tests/pet-store/api/guarded-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/pet-store/api/guarded-api-client.service.ts -------------------------------------------------------------------------------- /tests/pet-store/api/guards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/pet-store/api/guards/index.ts -------------------------------------------------------------------------------- /tests/pet-store/api/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/pet-store/api/index.ts -------------------------------------------------------------------------------- /tests/pet-store/api/models/api-response.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/pet-store/api/models/api-response.model.ts -------------------------------------------------------------------------------- /tests/pet-store/api/models/category.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/pet-store/api/models/category.model.ts -------------------------------------------------------------------------------- /tests/pet-store/api/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/pet-store/api/models/index.ts -------------------------------------------------------------------------------- /tests/pet-store/api/models/order.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/pet-store/api/models/order.model.ts -------------------------------------------------------------------------------- /tests/pet-store/api/models/pet.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/pet-store/api/models/pet.model.ts -------------------------------------------------------------------------------- /tests/pet-store/api/models/tag.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/pet-store/api/models/tag.model.ts -------------------------------------------------------------------------------- /tests/pet-store/api/models/user.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/pet-store/api/models/user.model.ts -------------------------------------------------------------------------------- /tests/pet-store/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/pet-store/api/types.ts -------------------------------------------------------------------------------- /tests/pet-store/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/pet-store/swagger.yaml -------------------------------------------------------------------------------- /tests/test-angular-project/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/test-angular-project/.gitignore -------------------------------------------------------------------------------- /tests/test-angular-project/angular.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/test-angular-project/angular.json -------------------------------------------------------------------------------- /tests/test-angular-project/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/test-angular-project/package-lock.json -------------------------------------------------------------------------------- /tests/test-angular-project/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/test-angular-project/package.json -------------------------------------------------------------------------------- /tests/test-angular-project/src/api-tests/api-client.module.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/test-angular-project/src/api-tests/api-client.module.spec.ts -------------------------------------------------------------------------------- /tests/test-angular-project/src/api-tests/guards.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/test-angular-project/src/api-tests/guards.spec.ts -------------------------------------------------------------------------------- /tests/test-angular-project/src/api-tests/pet.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/test-angular-project/src/api-tests/pet.service.spec.ts -------------------------------------------------------------------------------- /tests/test-angular-project/src/api-tests/tests-constants.ts: -------------------------------------------------------------------------------- 1 | export const DUMMY_DOMAIN = ''; 2 | -------------------------------------------------------------------------------- /tests/test-angular-project/src/api-tests/user.service.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/test-angular-project/src/api-tests/user.service.spec.ts -------------------------------------------------------------------------------- /tests/test-angular-project/src/app/app.component.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/test-angular-project/src/app/app.component.spec.ts -------------------------------------------------------------------------------- /tests/test-angular-project/src/app/app.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/test-angular-project/src/app/app.component.ts -------------------------------------------------------------------------------- /tests/test-angular-project/src/app/app.module.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/test-angular-project/src/app/app.module.ts -------------------------------------------------------------------------------- /tests/test-angular-project/src/environments/environment.prod.ts: -------------------------------------------------------------------------------- 1 | export const environment = { 2 | production: true, 3 | }; 4 | -------------------------------------------------------------------------------- /tests/test-angular-project/src/environments/environment.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/test-angular-project/src/environments/environment.ts -------------------------------------------------------------------------------- /tests/test-angular-project/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/test-angular-project/src/index.html -------------------------------------------------------------------------------- /tests/test-angular-project/src/main.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/test-angular-project/src/main.ts -------------------------------------------------------------------------------- /tests/test-angular-project/src/polyfills.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/test-angular-project/src/polyfills.ts -------------------------------------------------------------------------------- /tests/test-angular-project/src/setupJest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/test-angular-project/src/setupJest.ts -------------------------------------------------------------------------------- /tests/test-angular-project/src/tsconfig.app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/test-angular-project/src/tsconfig.app.json -------------------------------------------------------------------------------- /tests/test-angular-project/src/tsconfig.spec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/test-angular-project/src/tsconfig.spec.json -------------------------------------------------------------------------------- /tests/test-angular-project/src/tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/test-angular-project/src/tslint.json -------------------------------------------------------------------------------- /tests/test-angular-project/swagger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/test-angular-project/swagger.yaml -------------------------------------------------------------------------------- /tests/test-angular-project/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/test-angular-project/tsconfig.json -------------------------------------------------------------------------------- /tests/with-all-tags/api/guards/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/with-all-tags/api/guards/index.ts -------------------------------------------------------------------------------- /tests/with-all-tags/api/models/column-model.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/with-all-tags/api/models/column-model.model.ts -------------------------------------------------------------------------------- /tests/with-all-tags/api/models/dashboard-view-model.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/with-all-tags/api/models/dashboard-view-model.model.ts -------------------------------------------------------------------------------- /tests/with-all-tags/api/models/dummy-selector-settings.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/with-all-tags/api/models/dummy-selector-settings.model.ts -------------------------------------------------------------------------------- /tests/with-all-tags/api/models/dummy-selector-view-model.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/with-all-tags/api/models/dummy-selector-view-model.model.ts -------------------------------------------------------------------------------- /tests/with-all-tags/api/models/dummy-view-model.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/with-all-tags/api/models/dummy-view-model.model.ts -------------------------------------------------------------------------------- /tests/with-all-tags/api/models/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/with-all-tags/api/models/index.ts -------------------------------------------------------------------------------- /tests/with-all-tags/api/models/project-type-view-model.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/with-all-tags/api/models/project-type-view-model.model.ts -------------------------------------------------------------------------------- /tests/with-all-tags/api/models/row-model.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/with-all-tags/api/models/row-model.model.ts -------------------------------------------------------------------------------- /tests/with-all-tags/api/models/status-severity.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/with-all-tags/api/models/status-severity.enum.ts -------------------------------------------------------------------------------- /tests/with-all-tags/api/models/widget-model.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/with-all-tags/api/models/widget-model.model.ts -------------------------------------------------------------------------------- /tests/with-all-tags/api/models/widget-type-view-model.model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/with-all-tags/api/models/widget-type-view-model.model.ts -------------------------------------------------------------------------------- /tests/with-all-tags/api/services/dashboard/dashboard-api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/with-all-tags/api/services/dashboard/dashboard-api-client.interface.ts -------------------------------------------------------------------------------- /tests/with-all-tags/api/services/dashboard/dashboard-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/with-all-tags/api/services/dashboard/dashboard-api-client.service.ts -------------------------------------------------------------------------------- /tests/with-all-tags/api/services/dashboard/guarded-dashboard-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/with-all-tags/api/services/dashboard/guarded-dashboard-api-client.service.ts -------------------------------------------------------------------------------- /tests/with-all-tags/api/services/dashboard/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/with-all-tags/api/services/dashboard/index.ts -------------------------------------------------------------------------------- /tests/with-all-tags/api/services/dummy-selector/dummy-selector-api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/with-all-tags/api/services/dummy-selector/dummy-selector-api-client.interface.ts -------------------------------------------------------------------------------- /tests/with-all-tags/api/services/dummy-selector/dummy-selector-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/with-all-tags/api/services/dummy-selector/dummy-selector-api-client.service.ts -------------------------------------------------------------------------------- /tests/with-all-tags/api/services/dummy-selector/guarded-dummy-selector-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/with-all-tags/api/services/dummy-selector/guarded-dummy-selector-api-client.service.ts -------------------------------------------------------------------------------- /tests/with-all-tags/api/services/dummy-selector/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/with-all-tags/api/services/dummy-selector/index.ts -------------------------------------------------------------------------------- /tests/with-all-tags/api/services/project/guarded-project-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/with-all-tags/api/services/project/guarded-project-api-client.service.ts -------------------------------------------------------------------------------- /tests/with-all-tags/api/services/project/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/with-all-tags/api/services/project/index.ts -------------------------------------------------------------------------------- /tests/with-all-tags/api/services/project/project-api-client.interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/with-all-tags/api/services/project/project-api-client.interface.ts -------------------------------------------------------------------------------- /tests/with-all-tags/api/services/project/project-api-client.service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/with-all-tags/api/services/project/project-api-client.service.ts -------------------------------------------------------------------------------- /tests/with-all-tags/api/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/with-all-tags/api/types.ts -------------------------------------------------------------------------------- /tests/with-all-tags/swagger.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tests/with-all-tags/swagger.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flowup/api-client-generator/HEAD/tslint.json --------------------------------------------------------------------------------