├── .circleci └── config.yml ├── .editorconfig ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── mocha.cover.opts ├── mocha.integration.opts ├── mocha.opts ├── package.json ├── src ├── main │ ├── bin │ │ ├── index.ts │ │ └── resolveOptions.ts │ ├── debugger │ │ └── index.ts │ ├── defaults.ts │ ├── errors.ts │ ├── generator │ │ ├── index.ts │ │ └── iterator.ts │ ├── index.ts │ ├── options.ts │ ├── parser │ │ └── index.ts │ ├── printer.ts │ ├── reader │ │ └── index.ts │ ├── render │ │ ├── apache │ │ │ ├── const.ts │ │ │ ├── enum.ts │ │ │ ├── exception.ts │ │ │ ├── identifiers.ts │ │ │ ├── includes.ts │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ ├── service │ │ │ │ ├── client.ts │ │ │ │ ├── index.ts │ │ │ │ ├── processor.ts │ │ │ │ ├── types.ts │ │ │ │ └── utils.ts │ │ │ ├── struct │ │ │ │ ├── create.ts │ │ │ │ ├── index.ts │ │ │ │ ├── methods.ts │ │ │ │ ├── read.ts │ │ │ │ └── write.ts │ │ │ ├── typedef.ts │ │ │ ├── types.ts │ │ │ ├── union.ts │ │ │ ├── utils.ts │ │ │ └── values.ts │ │ ├── index.ts │ │ ├── shared │ │ │ ├── identifiers.ts │ │ │ ├── includes.ts │ │ │ ├── index.ts │ │ │ ├── service │ │ │ │ └── index.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ └── thrift-server │ │ │ ├── annotations.ts │ │ │ ├── const.ts │ │ │ ├── enum.ts │ │ │ ├── exception │ │ │ └── index.ts │ │ │ ├── identifiers.ts │ │ │ ├── index.ts │ │ │ ├── initializers.ts │ │ │ ├── service │ │ │ ├── client.ts │ │ │ ├── index.ts │ │ │ ├── processor.ts │ │ │ ├── types.ts │ │ │ └── utils.ts │ │ │ ├── struct │ │ │ ├── class.ts │ │ │ ├── decode.ts │ │ │ ├── encode.ts │ │ │ ├── index.ts │ │ │ ├── interface.ts │ │ │ ├── methods.ts │ │ │ ├── reader.ts │ │ │ ├── toolkit.ts │ │ │ └── utils.ts │ │ │ ├── typedef.ts │ │ │ ├── types.ts │ │ │ ├── union │ │ │ ├── class.ts │ │ │ ├── create.ts │ │ │ ├── decode.ts │ │ │ ├── encode.ts │ │ │ ├── index.ts │ │ │ ├── toolkit.ts │ │ │ ├── union-fields.ts │ │ │ └── utils.ts │ │ │ └── utils.ts │ ├── resolver │ │ ├── exportsForFile.ts │ │ ├── identifiersForStatements.ts │ │ ├── includesForFile.ts │ │ ├── index.ts │ │ ├── namespaceForFile.ts │ │ ├── namespaceForInclude.ts │ │ ├── organizeByNamespace.ts │ │ ├── resolveConstValue.ts │ │ ├── resolveIdentifierDefinition.ts │ │ ├── resolveIdentifierName.ts │ │ └── resolveNamespace.ts │ ├── sys.ts │ ├── types.ts │ ├── utils.ts │ └── validator │ │ ├── index.ts │ │ └── utils.ts └── tests │ ├── integration │ ├── apache │ │ ├── add-service.ts │ │ ├── calculator-service.ts │ │ ├── config.ts │ │ └── index.spec.ts │ └── thrift │ │ ├── add-service.thrift │ │ ├── calculator.thrift │ │ ├── common │ │ └── common.thrift │ │ ├── exceptions.thrift │ │ ├── operation.thrift │ │ ├── shared.thrift │ │ └── user.thrift │ └── unit │ ├── fixtures │ ├── apache │ │ ├── basic_const.solution.ts │ │ ├── basic_enum.solution.ts │ │ ├── basic_exception.solution.ts │ │ ├── basic_service.solution.ts │ │ ├── basic_typedef.solution.ts │ │ ├── basic_union.solution.ts │ │ ├── complex_typedef.solution.ts │ │ ├── container_id_struct.solution.ts │ │ ├── enum_typedef.solution.ts │ │ ├── field_initialized_enum.solution.ts │ │ ├── generated │ │ │ ├── Code.ts │ │ │ ├── SharedEnum.ts │ │ │ ├── SharedService.ts │ │ │ ├── SharedServiceBase.ts │ │ │ ├── SharedStruct.ts │ │ │ ├── SharedUnion.ts │ │ │ ├── com │ │ │ │ └── test │ │ │ │ │ ├── calculator │ │ │ │ │ ├── Calculator.ts │ │ │ │ │ ├── Choice.ts │ │ │ │ │ ├── CommonStruct.ts │ │ │ │ │ ├── FirstName.ts │ │ │ │ │ ├── LastName.ts │ │ │ │ │ ├── MyInteger.ts │ │ │ │ │ ├── NotAGoodIdea.ts │ │ │ │ │ ├── Operation.ts │ │ │ │ │ ├── TypedMap.ts │ │ │ │ │ ├── Work.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ └── index.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── AuthException.ts │ │ │ │ │ ├── COMMON_INT.ts │ │ │ │ │ ├── CommonEnum.ts │ │ │ │ │ ├── CommonStruct.ts │ │ │ │ │ ├── CommonUnion.ts │ │ │ │ │ ├── MoreOptions.ts │ │ │ │ │ ├── NotAllowed.ts │ │ │ │ │ ├── OtherCommonUnion.ts │ │ │ │ │ └── index.ts │ │ │ │ │ ├── exceptions │ │ │ │ │ ├── InvalidOperation.ts │ │ │ │ │ ├── InvalidResult.ts │ │ │ │ │ └── index.ts │ │ │ │ │ └── operation │ │ │ │ │ ├── JankyOperation.ts │ │ │ │ │ ├── JankyResult.ts │ │ │ │ │ ├── Operation.ts │ │ │ │ │ ├── SomethingToDo.ts │ │ │ │ │ └── index.ts │ │ │ ├── constants.ts │ │ │ └── index.ts │ │ ├── i64_service.solution.ts │ │ ├── implicit_optional_struct.solution.ts │ │ ├── list_struct.solution.ts │ │ ├── map_struct.solution.ts │ │ ├── multi_field_struct.solution.ts │ │ ├── nested_list_struct.solution.ts │ │ ├── nested_list_union.solution.ts │ │ ├── nested_map_struct.solution.ts │ │ ├── nested_set_struct.solution.ts │ │ ├── return_id_struct.solution.ts │ │ ├── return_service.solution.ts │ │ ├── set_struct.solution.ts │ │ ├── throws_multi_service.solution.ts │ │ └── throws_service.solution.ts │ ├── thrift-server │ │ ├── annotations_exception.solution.ts │ │ ├── annotations_service.solution.ts │ │ ├── annotations_struct.solution.ts │ │ ├── annotations_union.solution.ts │ │ ├── basic_exception.solution.ts │ │ ├── basic_service.solution.ts │ │ ├── basic_service.strict_union.solution.ts │ │ ├── basic_struct.no_name.solution.ts │ │ ├── basic_struct.solution.ts │ │ ├── basic_typedef.solution.ts │ │ ├── basic_union.no_name.solution.ts │ │ ├── basic_union.solution.ts │ │ ├── basic_union.strict_union.solution.ts │ │ ├── complex_const.solution.ts │ │ ├── complex_nested_struct.solution.ts │ │ ├── complex_typedef.solution.ts │ │ ├── complex_typedef.strict_union.solution.ts │ │ ├── empty_struct.solution.ts │ │ ├── empty_union.solution.ts │ │ ├── generated-strict │ │ │ ├── Code.ts │ │ │ ├── SharedEnum.ts │ │ │ ├── SharedService.ts │ │ │ ├── SharedServiceBase.ts │ │ │ ├── SharedStruct.ts │ │ │ ├── SharedUnion.ts │ │ │ ├── com │ │ │ │ └── test │ │ │ │ │ ├── calculator │ │ │ │ │ ├── Calculator.ts │ │ │ │ │ ├── Choice.ts │ │ │ │ │ ├── CommonStruct.ts │ │ │ │ │ ├── FirstName.ts │ │ │ │ │ ├── LastName.ts │ │ │ │ │ ├── MyInteger.ts │ │ │ │ │ ├── NotAGoodIdea.ts │ │ │ │ │ ├── Operation.ts │ │ │ │ │ ├── TypedMap.ts │ │ │ │ │ ├── Work.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ └── index.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── AuthException.ts │ │ │ │ │ ├── COMMON_INT.ts │ │ │ │ │ ├── CommonEnum.ts │ │ │ │ │ ├── CommonStruct.ts │ │ │ │ │ ├── CommonUnion.ts │ │ │ │ │ ├── MoreOptions.ts │ │ │ │ │ ├── NotAllowed.ts │ │ │ │ │ ├── OtherCommonUnion.ts │ │ │ │ │ └── index.ts │ │ │ │ │ ├── exceptions │ │ │ │ │ ├── InvalidOperation.ts │ │ │ │ │ ├── InvalidResult.ts │ │ │ │ │ └── index.ts │ │ │ │ │ └── operation │ │ │ │ │ ├── JankyOperation.ts │ │ │ │ │ ├── JankyResult.ts │ │ │ │ │ ├── Operation.ts │ │ │ │ │ ├── SomethingToDo.ts │ │ │ │ │ └── index.ts │ │ │ ├── constants.ts │ │ │ └── index.ts │ │ ├── generated │ │ │ ├── Code.ts │ │ │ ├── SharedEnum.ts │ │ │ ├── SharedService.ts │ │ │ ├── SharedServiceBase.ts │ │ │ ├── SharedStruct.ts │ │ │ ├── SharedUnion.ts │ │ │ ├── com │ │ │ │ └── test │ │ │ │ │ ├── calculator │ │ │ │ │ ├── Calculator.ts │ │ │ │ │ ├── Choice.ts │ │ │ │ │ ├── CommonStruct.ts │ │ │ │ │ ├── FirstName.ts │ │ │ │ │ ├── LastName.ts │ │ │ │ │ ├── MyInteger.ts │ │ │ │ │ ├── NotAGoodIdea.ts │ │ │ │ │ ├── Operation.ts │ │ │ │ │ ├── TypedMap.ts │ │ │ │ │ ├── Work.ts │ │ │ │ │ ├── constants.ts │ │ │ │ │ └── index.ts │ │ │ │ │ ├── common │ │ │ │ │ ├── AuthException.ts │ │ │ │ │ ├── COMMON_INT.ts │ │ │ │ │ ├── CommonEnum.ts │ │ │ │ │ ├── CommonStruct.ts │ │ │ │ │ ├── CommonUnion.ts │ │ │ │ │ ├── MoreOptions.ts │ │ │ │ │ ├── NotAllowed.ts │ │ │ │ │ ├── OtherCommonUnion.ts │ │ │ │ │ └── index.ts │ │ │ │ │ ├── exceptions │ │ │ │ │ ├── InvalidOperation.ts │ │ │ │ │ ├── InvalidResult.ts │ │ │ │ │ └── index.ts │ │ │ │ │ └── operation │ │ │ │ │ ├── JankyOperation.ts │ │ │ │ │ ├── JankyResult.ts │ │ │ │ │ ├── Operation.ts │ │ │ │ │ ├── SomethingToDo.ts │ │ │ │ │ └── index.ts │ │ │ ├── constants.ts │ │ │ └── index.ts │ │ ├── i64_service.solution.ts │ │ ├── initialized_union.solution.ts │ │ ├── initialized_union.strict_union.solution.ts │ │ ├── multi_field_struct.solution.ts │ │ ├── nested_exception.solution.ts │ │ ├── nested_struct.solution.ts │ │ ├── nested_union.solution.ts │ │ ├── nested_union.strict_union.solution.ts │ │ ├── required_field_exception.solution.ts │ │ ├── resolved_field_service.solution.ts │ │ ├── throws_multi_service.solution.ts │ │ └── throws_service.solution.ts │ └── thrift │ │ ├── calculator.thrift │ │ ├── common.thrift │ │ ├── exceptions.thrift │ │ ├── operation.thrift │ │ └── shared.thrift │ ├── index.spec.ts │ └── utils.spec.ts ├── tsconfig.json ├── tsconfig.test.json └── tslint.json /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | src/tests/unit/fixtures/**/*.ts 2 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/.prettierrc -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/README.md -------------------------------------------------------------------------------- /mocha.cover.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/mocha.cover.opts -------------------------------------------------------------------------------- /mocha.integration.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/mocha.integration.opts -------------------------------------------------------------------------------- /mocha.opts: -------------------------------------------------------------------------------- 1 | --reporter spec 2 | --full-trace 3 | dist/tests/unit/**/*.spec.js 4 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/package.json -------------------------------------------------------------------------------- /src/main/bin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/bin/index.ts -------------------------------------------------------------------------------- /src/main/bin/resolveOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/bin/resolveOptions.ts -------------------------------------------------------------------------------- /src/main/debugger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/debugger/index.ts -------------------------------------------------------------------------------- /src/main/defaults.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/defaults.ts -------------------------------------------------------------------------------- /src/main/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/errors.ts -------------------------------------------------------------------------------- /src/main/generator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/generator/index.ts -------------------------------------------------------------------------------- /src/main/generator/iterator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/generator/iterator.ts -------------------------------------------------------------------------------- /src/main/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/index.ts -------------------------------------------------------------------------------- /src/main/options.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/options.ts -------------------------------------------------------------------------------- /src/main/parser/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/parser/index.ts -------------------------------------------------------------------------------- /src/main/printer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/printer.ts -------------------------------------------------------------------------------- /src/main/reader/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/reader/index.ts -------------------------------------------------------------------------------- /src/main/render/apache/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/apache/const.ts -------------------------------------------------------------------------------- /src/main/render/apache/enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/apache/enum.ts -------------------------------------------------------------------------------- /src/main/render/apache/exception.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/apache/exception.ts -------------------------------------------------------------------------------- /src/main/render/apache/identifiers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/apache/identifiers.ts -------------------------------------------------------------------------------- /src/main/render/apache/includes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/apache/includes.ts -------------------------------------------------------------------------------- /src/main/render/apache/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/apache/index.ts -------------------------------------------------------------------------------- /src/main/render/apache/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/apache/interface.ts -------------------------------------------------------------------------------- /src/main/render/apache/service/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/apache/service/client.ts -------------------------------------------------------------------------------- /src/main/render/apache/service/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/apache/service/index.ts -------------------------------------------------------------------------------- /src/main/render/apache/service/processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/apache/service/processor.ts -------------------------------------------------------------------------------- /src/main/render/apache/service/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/apache/service/types.ts -------------------------------------------------------------------------------- /src/main/render/apache/service/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/apache/service/utils.ts -------------------------------------------------------------------------------- /src/main/render/apache/struct/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/apache/struct/create.ts -------------------------------------------------------------------------------- /src/main/render/apache/struct/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/apache/struct/index.ts -------------------------------------------------------------------------------- /src/main/render/apache/struct/methods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/apache/struct/methods.ts -------------------------------------------------------------------------------- /src/main/render/apache/struct/read.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/apache/struct/read.ts -------------------------------------------------------------------------------- /src/main/render/apache/struct/write.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/apache/struct/write.ts -------------------------------------------------------------------------------- /src/main/render/apache/typedef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/apache/typedef.ts -------------------------------------------------------------------------------- /src/main/render/apache/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/apache/types.ts -------------------------------------------------------------------------------- /src/main/render/apache/union.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/apache/union.ts -------------------------------------------------------------------------------- /src/main/render/apache/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/apache/utils.ts -------------------------------------------------------------------------------- /src/main/render/apache/values.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/apache/values.ts -------------------------------------------------------------------------------- /src/main/render/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/index.ts -------------------------------------------------------------------------------- /src/main/render/shared/identifiers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/shared/identifiers.ts -------------------------------------------------------------------------------- /src/main/render/shared/includes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/shared/includes.ts -------------------------------------------------------------------------------- /src/main/render/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/shared/index.ts -------------------------------------------------------------------------------- /src/main/render/shared/service/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/shared/service/index.ts -------------------------------------------------------------------------------- /src/main/render/shared/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/shared/types.ts -------------------------------------------------------------------------------- /src/main/render/shared/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/shared/utils.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/annotations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/annotations.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/const.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/const.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/enum.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/exception/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/exception/index.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/identifiers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/identifiers.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/index.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/initializers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/initializers.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/service/client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/service/client.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/service/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/service/index.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/service/processor.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/service/processor.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/service/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/service/types.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/service/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/service/utils.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/struct/class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/struct/class.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/struct/decode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/struct/decode.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/struct/encode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/struct/encode.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/struct/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/struct/index.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/struct/interface.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/struct/interface.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/struct/methods.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/struct/methods.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/struct/reader.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/struct/reader.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/struct/toolkit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/struct/toolkit.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/struct/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/struct/utils.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/typedef.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/typedef.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/types.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/union/class.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/union/class.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/union/create.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/union/create.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/union/decode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/union/decode.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/union/encode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/union/encode.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/union/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/union/index.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/union/toolkit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/union/toolkit.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/union/union-fields.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/union/union-fields.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/union/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/union/utils.ts -------------------------------------------------------------------------------- /src/main/render/thrift-server/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/render/thrift-server/utils.ts -------------------------------------------------------------------------------- /src/main/resolver/exportsForFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/resolver/exportsForFile.ts -------------------------------------------------------------------------------- /src/main/resolver/identifiersForStatements.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/resolver/identifiersForStatements.ts -------------------------------------------------------------------------------- /src/main/resolver/includesForFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/resolver/includesForFile.ts -------------------------------------------------------------------------------- /src/main/resolver/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/resolver/index.ts -------------------------------------------------------------------------------- /src/main/resolver/namespaceForFile.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/resolver/namespaceForFile.ts -------------------------------------------------------------------------------- /src/main/resolver/namespaceForInclude.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/resolver/namespaceForInclude.ts -------------------------------------------------------------------------------- /src/main/resolver/organizeByNamespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/resolver/organizeByNamespace.ts -------------------------------------------------------------------------------- /src/main/resolver/resolveConstValue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/resolver/resolveConstValue.ts -------------------------------------------------------------------------------- /src/main/resolver/resolveIdentifierDefinition.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/resolver/resolveIdentifierDefinition.ts -------------------------------------------------------------------------------- /src/main/resolver/resolveIdentifierName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/resolver/resolveIdentifierName.ts -------------------------------------------------------------------------------- /src/main/resolver/resolveNamespace.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/resolver/resolveNamespace.ts -------------------------------------------------------------------------------- /src/main/sys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/sys.ts -------------------------------------------------------------------------------- /src/main/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/types.ts -------------------------------------------------------------------------------- /src/main/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/utils.ts -------------------------------------------------------------------------------- /src/main/validator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/validator/index.ts -------------------------------------------------------------------------------- /src/main/validator/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/main/validator/utils.ts -------------------------------------------------------------------------------- /src/tests/integration/apache/add-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/integration/apache/add-service.ts -------------------------------------------------------------------------------- /src/tests/integration/apache/calculator-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/integration/apache/calculator-service.ts -------------------------------------------------------------------------------- /src/tests/integration/apache/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/integration/apache/config.ts -------------------------------------------------------------------------------- /src/tests/integration/apache/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/integration/apache/index.spec.ts -------------------------------------------------------------------------------- /src/tests/integration/thrift/add-service.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/integration/thrift/add-service.thrift -------------------------------------------------------------------------------- /src/tests/integration/thrift/calculator.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/integration/thrift/calculator.thrift -------------------------------------------------------------------------------- /src/tests/integration/thrift/common/common.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/integration/thrift/common/common.thrift -------------------------------------------------------------------------------- /src/tests/integration/thrift/exceptions.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/integration/thrift/exceptions.thrift -------------------------------------------------------------------------------- /src/tests/integration/thrift/operation.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/integration/thrift/operation.thrift -------------------------------------------------------------------------------- /src/tests/integration/thrift/shared.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/integration/thrift/shared.thrift -------------------------------------------------------------------------------- /src/tests/integration/thrift/user.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/integration/thrift/user.thrift -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/basic_const.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/basic_const.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/basic_enum.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/basic_enum.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/basic_exception.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/basic_exception.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/basic_service.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/basic_service.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/basic_typedef.solution.ts: -------------------------------------------------------------------------------- 1 | export type name = string; 2 | -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/basic_union.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/basic_union.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/complex_typedef.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/complex_typedef.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/container_id_struct.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/container_id_struct.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/enum_typedef.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/enum_typedef.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/field_initialized_enum.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/field_initialized_enum.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/Code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/Code.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/SharedEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/SharedEnum.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/SharedService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/SharedService.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/SharedServiceBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/SharedServiceBase.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/SharedStruct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/SharedStruct.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/SharedUnion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/SharedUnion.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/calculator/Calculator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/calculator/Calculator.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/calculator/Choice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/calculator/Choice.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/calculator/CommonStruct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/calculator/CommonStruct.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/calculator/FirstName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/calculator/FirstName.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/calculator/LastName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/calculator/LastName.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/calculator/MyInteger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/calculator/MyInteger.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/calculator/NotAGoodIdea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/calculator/NotAGoodIdea.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/calculator/Operation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/calculator/Operation.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/calculator/TypedMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/calculator/TypedMap.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/calculator/Work.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/calculator/Work.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/calculator/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/calculator/constants.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/calculator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/calculator/index.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/common/AuthException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/common/AuthException.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/common/COMMON_INT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/common/COMMON_INT.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/common/CommonEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/common/CommonEnum.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/common/CommonStruct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/common/CommonStruct.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/common/CommonUnion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/common/CommonUnion.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/common/MoreOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/common/MoreOptions.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/common/NotAllowed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/common/NotAllowed.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/common/OtherCommonUnion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/common/OtherCommonUnion.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/common/index.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/exceptions/InvalidOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/exceptions/InvalidOperation.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/exceptions/InvalidResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/exceptions/InvalidResult.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/exceptions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/exceptions/index.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/operation/JankyOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/operation/JankyOperation.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/operation/JankyResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/operation/JankyResult.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/operation/Operation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/operation/Operation.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/operation/SomethingToDo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/operation/SomethingToDo.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/com/test/operation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/com/test/operation/index.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/constants.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/generated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/generated/index.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/i64_service.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/i64_service.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/implicit_optional_struct.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/implicit_optional_struct.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/list_struct.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/list_struct.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/map_struct.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/map_struct.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/multi_field_struct.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/multi_field_struct.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/nested_list_struct.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/nested_list_struct.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/nested_list_union.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/nested_list_union.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/nested_map_struct.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/nested_map_struct.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/nested_set_struct.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/nested_set_struct.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/return_id_struct.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/return_id_struct.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/return_service.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/return_service.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/set_struct.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/set_struct.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/throws_multi_service.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/throws_multi_service.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/apache/throws_service.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/apache/throws_service.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/annotations_exception.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/annotations_exception.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/annotations_service.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/annotations_service.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/annotations_struct.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/annotations_struct.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/annotations_union.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/annotations_union.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/basic_exception.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/basic_exception.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/basic_service.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/basic_service.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/basic_service.strict_union.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/basic_service.strict_union.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/basic_struct.no_name.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/basic_struct.no_name.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/basic_struct.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/basic_struct.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/basic_typedef.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/basic_typedef.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/basic_union.no_name.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/basic_union.no_name.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/basic_union.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/basic_union.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/basic_union.strict_union.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/basic_union.strict_union.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/complex_const.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/complex_const.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/complex_nested_struct.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/complex_nested_struct.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/complex_typedef.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/complex_typedef.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/complex_typedef.strict_union.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/complex_typedef.strict_union.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/empty_struct.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/empty_struct.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/empty_union.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/empty_union.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/Code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/Code.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/SharedEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/SharedEnum.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/SharedService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/SharedService.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/SharedServiceBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/SharedServiceBase.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/SharedStruct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/SharedStruct.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/SharedUnion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/SharedUnion.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/Calculator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/Calculator.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/Choice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/Choice.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/CommonStruct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/CommonStruct.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/FirstName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/FirstName.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/LastName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/LastName.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/MyInteger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/MyInteger.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/NotAGoodIdea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/NotAGoodIdea.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/Operation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/Operation.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/TypedMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/TypedMap.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/Work.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/Work.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/constants.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/calculator/index.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/AuthException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/AuthException.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/COMMON_INT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/COMMON_INT.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/CommonEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/CommonEnum.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/CommonStruct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/CommonStruct.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/CommonUnion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/CommonUnion.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/MoreOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/MoreOptions.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/NotAllowed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/NotAllowed.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/OtherCommonUnion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/OtherCommonUnion.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/common/index.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/exceptions/InvalidOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/exceptions/InvalidOperation.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/exceptions/InvalidResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/exceptions/InvalidResult.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/exceptions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/exceptions/index.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/JankyOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/JankyOperation.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/JankyResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/JankyResult.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/Operation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/Operation.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/SomethingToDo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/SomethingToDo.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/com/test/operation/index.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/constants.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated-strict/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated-strict/index.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/Code.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/Code.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/SharedEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/SharedEnum.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/SharedService.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/SharedService.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/SharedServiceBase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/SharedServiceBase.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/SharedStruct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/SharedStruct.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/SharedUnion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/SharedUnion.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/Calculator.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/Calculator.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/Choice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/Choice.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/CommonStruct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/CommonStruct.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/FirstName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/FirstName.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/LastName.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/LastName.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/MyInteger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/MyInteger.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/NotAGoodIdea.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/NotAGoodIdea.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/Operation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/Operation.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/TypedMap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/TypedMap.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/Work.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/Work.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/constants.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/calculator/index.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/common/AuthException.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/common/AuthException.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/common/COMMON_INT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/common/COMMON_INT.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/common/CommonEnum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/common/CommonEnum.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/common/CommonStruct.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/common/CommonStruct.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/common/CommonUnion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/common/CommonUnion.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/common/MoreOptions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/common/MoreOptions.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/common/NotAllowed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/common/NotAllowed.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/common/OtherCommonUnion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/common/OtherCommonUnion.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/common/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/common/index.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/exceptions/InvalidOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/exceptions/InvalidOperation.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/exceptions/InvalidResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/exceptions/InvalidResult.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/exceptions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/exceptions/index.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/operation/JankyOperation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/operation/JankyOperation.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/operation/JankyResult.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/operation/JankyResult.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/operation/Operation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/operation/Operation.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/operation/SomethingToDo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/operation/SomethingToDo.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/com/test/operation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/com/test/operation/index.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/constants.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/generated/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/generated/index.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/i64_service.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/i64_service.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/initialized_union.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/initialized_union.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/initialized_union.strict_union.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/initialized_union.strict_union.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/multi_field_struct.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/multi_field_struct.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/nested_exception.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/nested_exception.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/nested_struct.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/nested_struct.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/nested_union.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/nested_union.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/nested_union.strict_union.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/nested_union.strict_union.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/required_field_exception.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/required_field_exception.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/resolved_field_service.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/resolved_field_service.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/throws_multi_service.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/throws_multi_service.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift-server/throws_service.solution.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift-server/throws_service.solution.ts -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift/calculator.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift/calculator.thrift -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift/common.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift/common.thrift -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift/exceptions.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift/exceptions.thrift -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift/operation.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift/operation.thrift -------------------------------------------------------------------------------- /src/tests/unit/fixtures/thrift/shared.thrift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/fixtures/thrift/shared.thrift -------------------------------------------------------------------------------- /src/tests/unit/index.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/index.spec.ts -------------------------------------------------------------------------------- /src/tests/unit/utils.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/src/tests/unit/utils.spec.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/creditkarma/thrift-typescript/HEAD/tslint.json --------------------------------------------------------------------------------